From 9a361dca5d22700bfb757286eca0970840aa82d0 Mon Sep 17 00:00:00 2001 From: Dogus Atasoy Date: Fri, 15 Nov 2024 15:05:21 +0100 Subject: [PATCH 1/3] hotfix chatwrapper exceeds the width on compactMode --- src/styles/components/chat/_chat-wrapper.scss | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/styles/components/chat/_chat-wrapper.scss b/src/styles/components/chat/_chat-wrapper.scss index bc668a8f..1bd53c85 100644 --- a/src/styles/components/chat/_chat-wrapper.scss +++ b/src/styles/components/chat/_chat-wrapper.scss @@ -12,7 +12,6 @@ position: relative; width: inherit; - min-width: inherit; max-width: inherit; height: 100%; flex: 1 0 100%; @@ -25,7 +24,6 @@ box-sizing: border-box; > div[class^='mynah-chat'] { width: inherit; - min-width: inherit; max-width: inherit; box-sizing: border-box; padding-left: var(--mynah-sizing-4); From a5bb033e0c7016510688581c5e59407bdec127c1 Mon Sep 17 00:00:00 2001 From: Dogus Atasoy Date: Fri, 15 Nov 2024 15:06:09 +0100 Subject: [PATCH 2/3] updated version to v4.18.1 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index c6ced758..e61c8520 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@aws/mynah-ui", - "version": "4.18.0", + "version": "4.18.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@aws/mynah-ui", - "version": "4.18.0", + "version": "4.18.1", "hasInstallScript": true, "license": "Apache License 2.0", "dependencies": { diff --git a/package.json b/package.json index 8a060194..ab35a2c5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@aws/mynah-ui", "displayName": "AWS Mynah UI", - "version": "4.18.0", + "version": "4.18.1", "description": "AWS Toolkit VSCode and Intellij IDE Extension Mynah UI", "publisher": "Amazon Web Services", "license": "Apache License 2.0", From 5c756d4567dc1eddaa69f01592798423a42e2e78 Mon Sep 17 00:00:00 2001 From: Dogus Atasoy Date: Fri, 15 Nov 2024 15:09:27 +0100 Subject: [PATCH 3/3] updated remaining github actions to use macos latest too --- .github/workflows/beta.yml | 2 +- .github/workflows/deploy.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index c79ba051..920e5e7e 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -5,7 +5,7 @@ on: tags: ['beta*.*'] jobs: build: - runs-on: ubuntu-latest + runs-on: macos-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b8fa1c63..5ba329db 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -21,7 +21,7 @@ concurrency: jobs: # Build job build: - runs-on: ubuntu-latest + runs-on: macos-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 @@ -52,7 +52,7 @@ jobs: environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest + runs-on: macos-latest needs: build steps: - name: Deploy to GitHub Pages