From 6b5e099d12428a943046153e57c66aadd2e34cd5 Mon Sep 17 00:00:00 2001 From: Andy Blum Date: Wed, 1 Nov 2023 14:15:24 -0400 Subject: [PATCH 1/5] fix(link-with-icon): refactor LINK_SIZE enum (#11071) * fix(link-with-icon): refactor LINK_SIZE enum * fix(link-with-icon): export LINK_SIZE * fix(link-with-icon): change union to object-to-type * fix(link-with-icon): revert LINK_SIZE reference removals * chore(release): publish - @carbon/web-components@1.34.0-rc.0 - @carbon/eslint-config-ibmdotcom@1.44.0-rc.0 - @carbon/eslint-plugin-ibmdotcom-import-rules@1.43.0-rc.0 - @carbon/eslint-plugin-react-prop-type-comments@1.43.0-rc.0 - @carbon/ibmdotcom-react@1.53.0-rc.0 - @carbon/ibmdotcom-services-store@1.53.0-rc.0 - @carbon/ibmdotcom-services@1.53.0-rc.0 - @carbon/storybook-addon-theme@1.44.0-rc.0 - @carbon/stylelint-config-ibmdotcom@1.43.0-rc.0 - @carbon/ibmdotcom-styles@1.53.0-rc.0 - @carbon/ibmdotcom-utilities@1.53.0-rc.0 - @carbon/ibmdotcom-web-components@1.38.0-rc.0 * Revert "chore(release): publish" This reverts commit af5f295a1f32b119db9fe196a876d92d34a0eb3f. --------- Co-authored-by: ibmdotcom-bot --- .../src/components/link/link.ts | 24 +++++++------------ 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/web-components/packages/carbon-web-components/src/components/link/link.ts b/web-components/packages/carbon-web-components/src/components/link/link.ts index eb1c32b23331..bac86923f100 100644 --- a/web-components/packages/carbon-web-components/src/components/link/link.ts +++ b/web-components/packages/carbon-web-components/src/components/link/link.ts @@ -20,22 +20,14 @@ const { prefix } = settings; /** * Link size. */ -export enum LINK_SIZE { - /** - * Regular size - */ - REGULAR = '', - - /** - * Small size. - */ - SMALL = 'sm', +export const LINK_SIZE = { + REGULAR: '', + SMALL: 'sm', + LARGE: 'lg', +}; - /** - * Large size. - */ - LARGE = 'lg', -} +// Convert object key in a type +type LINK_SIZE_TYPE = (typeof LINK_SIZE)[keyof typeof LINK_SIZE]; /** * Link. @@ -190,7 +182,7 @@ class BXLink extends FocusMixin(LitElement) { * Link size. */ @property({ reflect: true }) - size = LINK_SIZE.REGULAR; + size: LINK_SIZE_TYPE = LINK_SIZE.REGULAR; /** * The link target. From 13fab627b46c98a71619b484c156c41140fcf523 Mon Sep 17 00:00:00 2001 From: ibmdotcom-bot Date: Mon, 30 Oct 2023 21:22:08 +0000 Subject: [PATCH 2/5] chore(release): publish - @carbon/web-components@1.34.0-rc.0 - @carbon/eslint-config-ibmdotcom@1.44.0-rc.0 - @carbon/eslint-plugin-ibmdotcom-import-rules@1.43.0-rc.0 - @carbon/eslint-plugin-react-prop-type-comments@1.43.0-rc.0 - @carbon/ibmdotcom-react@1.53.0-rc.0 - @carbon/ibmdotcom-services-store@1.53.0-rc.0 - @carbon/ibmdotcom-services@1.53.0-rc.0 - @carbon/storybook-addon-theme@1.44.0-rc.0 - @carbon/stylelint-config-ibmdotcom@1.43.0-rc.0 - @carbon/ibmdotcom-styles@1.53.0-rc.0 - @carbon/ibmdotcom-utilities@1.53.0-rc.0 - @carbon/ibmdotcom-web-components@1.38.0-rc.0 --- .../packages/carbon-web-components/CHANGELOG.md | 12 ++++++++++++ .../packages/carbon-web-components/package.json | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/web-components/packages/carbon-web-components/CHANGELOG.md b/web-components/packages/carbon-web-components/CHANGELOG.md index ac8301846026..ff043c73eca6 100644 --- a/web-components/packages/carbon-web-components/CHANGELOG.md +++ b/web-components/packages/carbon-web-components/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.34.0-rc.0](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/web-components@1.33.0-rc.1...@carbon/web-components@1.34.0-rc.0) (2023-10-30) + + +### Bug Fixes + +* **language-selector:** remove internal decorator ([#11069](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues/11069)) ([d61199d](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/commit/d61199d5c9e03671aa08f9a0b774f470900dfd0c)), closes [#10885](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues/10885) +* **ui-shell:** a11y issue with side nav item ([#11044](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues/11044)) ([9eb94ea](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/commit/9eb94ea097dcf9610a72900468008373cfec3bbe)), closes [#10918](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues/10918) + + + + + # [1.33.0-rc.1](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/web-components@1.33.0-rc.0...@carbon/web-components@1.33.0-rc.1) (2023-10-12) **Note:** Version bump only for package @carbon/web-components diff --git a/web-components/packages/carbon-web-components/package.json b/web-components/packages/carbon-web-components/package.json index f06369cdd2ba..849ef6915e9c 100644 --- a/web-components/packages/carbon-web-components/package.json +++ b/web-components/packages/carbon-web-components/package.json @@ -1,6 +1,6 @@ { "name": "@carbon/web-components", - "version": "1.33.0-rc.1", + "version": "1.34.0-rc.0", "publishConfig": { "access": "public" }, From 9c09e504cb77682ff111c7193bc572ed82031434 Mon Sep 17 00:00:00 2001 From: ibmdotcom-bot Date: Thu, 2 Nov 2023 08:18:57 +0000 Subject: [PATCH 3/5] chore(release): publish - @carbon/web-components@1.34.0-rc.1 - @carbon/eslint-config-ibmdotcom@1.44.0-rc.1 - @carbon/eslint-plugin-ibmdotcom-import-rules@1.43.0-rc.1 - @carbon/eslint-plugin-react-prop-type-comments@1.43.0-rc.1 - @carbon/ibmdotcom-react@1.53.0-rc.1 - @carbon/ibmdotcom-services-store@1.53.0-rc.1 - @carbon/ibmdotcom-services@1.53.0-rc.1 - @carbon/storybook-addon-theme@1.44.0-rc.1 - @carbon/stylelint-config-ibmdotcom@1.43.0-rc.1 - @carbon/ibmdotcom-styles@1.53.0-rc.1 - @carbon/ibmdotcom-utilities@1.53.0-rc.1 - @carbon/ibmdotcom-web-components@1.38.0-rc.1 --- .../packages/carbon-web-components/CHANGELOG.md | 13 +++++++++++++ .../packages/carbon-web-components/package.json | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/web-components/packages/carbon-web-components/CHANGELOG.md b/web-components/packages/carbon-web-components/CHANGELOG.md index ff043c73eca6..6c3f7b1abd34 100644 --- a/web-components/packages/carbon-web-components/CHANGELOG.md +++ b/web-components/packages/carbon-web-components/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.34.0-rc.1](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/web-components@1.33.0-rc.1...@carbon/web-components@1.34.0-rc.1) (2023-11-02) + + +### Bug Fixes + +* **language-selector:** remove internal decorator ([#11069](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues/11069)) ([d61199d](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/commit/d61199d5c9e03671aa08f9a0b774f470900dfd0c)), closes [#10885](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues/10885) +* **link-with-icon:** refactor LINK_SIZE enum ([#11071](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues/11071)) ([cf570e1](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/commit/cf570e15079f8fc58c8b2600848d0c1a87e9b065)) +* **ui-shell:** a11y issue with side nav item ([#11044](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues/11044)) ([9eb94ea](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/commit/9eb94ea097dcf9610a72900468008373cfec3bbe)), closes [#10918](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues/10918) + + + + + # [1.34.0-rc.0](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/web-components@1.33.0-rc.1...@carbon/web-components@1.34.0-rc.0) (2023-10-30) diff --git a/web-components/packages/carbon-web-components/package.json b/web-components/packages/carbon-web-components/package.json index 849ef6915e9c..db71fb68d7e9 100644 --- a/web-components/packages/carbon-web-components/package.json +++ b/web-components/packages/carbon-web-components/package.json @@ -1,6 +1,6 @@ { "name": "@carbon/web-components", - "version": "1.34.0-rc.0", + "version": "1.34.0-rc.1", "publishConfig": { "access": "public" }, From b04420cc7d4ec26bbc9d1bd6e4ac2383f95e60b2 Mon Sep 17 00:00:00 2001 From: ibmdotcom-bot Date: Mon, 6 Nov 2023 16:36:11 +0000 Subject: [PATCH 4/5] chore(release): publish - @carbon/web-components@1.34.0-rc.2 - @carbon/eslint-config-ibmdotcom@1.44.0-rc.2 - @carbon/eslint-plugin-ibmdotcom-import-rules@1.43.0-rc.2 - @carbon/eslint-plugin-react-prop-type-comments@1.43.0-rc.2 - @carbon/ibmdotcom-react@1.53.0-rc.2 - @carbon/ibmdotcom-services-store@1.53.0-rc.2 - @carbon/ibmdotcom-services@1.53.0-rc.2 - @carbon/storybook-addon-theme@1.44.0-rc.2 - @carbon/stylelint-config-ibmdotcom@1.43.0-rc.2 - @carbon/ibmdotcom-styles@1.53.0-rc.2 - @carbon/ibmdotcom-utilities@1.53.0-rc.2 - @carbon/ibmdotcom-web-components@1.38.0-rc.2 --- .../packages/carbon-web-components/CHANGELOG.md | 8 ++++++++ .../packages/carbon-web-components/package.json | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/web-components/packages/carbon-web-components/CHANGELOG.md b/web-components/packages/carbon-web-components/CHANGELOG.md index 6c3f7b1abd34..17769a0b02ca 100644 --- a/web-components/packages/carbon-web-components/CHANGELOG.md +++ b/web-components/packages/carbon-web-components/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.34.0-rc.2](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/web-components@1.34.0-rc.1...@carbon/web-components@1.34.0-rc.2) (2023-11-06) + +**Note:** Version bump only for package @carbon/web-components + + + + + # [1.34.0-rc.1](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/web-components@1.33.0-rc.1...@carbon/web-components@1.34.0-rc.1) (2023-11-02) diff --git a/web-components/packages/carbon-web-components/package.json b/web-components/packages/carbon-web-components/package.json index db71fb68d7e9..35a387736ab3 100644 --- a/web-components/packages/carbon-web-components/package.json +++ b/web-components/packages/carbon-web-components/package.json @@ -1,6 +1,6 @@ { "name": "@carbon/web-components", - "version": "1.34.0-rc.1", + "version": "1.34.0-rc.2", "publishConfig": { "access": "public" }, From 44142f3b795b557f3d228a9ee5f759756a9ec220 Mon Sep 17 00:00:00 2001 From: ibmdotcom-bot Date: Wed, 15 Nov 2023 03:04:35 +0000 Subject: [PATCH 5/5] chore(release): publish - @carbon/web-components@1.34.0 - @carbon/eslint-config-ibmdotcom@1.44.0 - @carbon/eslint-plugin-ibmdotcom-import-rules@1.43.0 - @carbon/eslint-plugin-react-prop-type-comments@1.43.0 - @carbon/ibmdotcom-react@1.53.0 - @carbon/ibmdotcom-services-store@1.53.0 - @carbon/ibmdotcom-services@1.53.0 - @carbon/storybook-addon-theme@1.44.0 - @carbon/stylelint-config-ibmdotcom@1.43.0 - @carbon/ibmdotcom-styles@1.53.0 - @carbon/ibmdotcom-utilities@1.53.0 - @carbon/ibmdotcom-web-components@1.38.0 --- .../packages/carbon-web-components/CHANGELOG.md | 8 ++++++++ .../packages/carbon-web-components/package.json | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/web-components/packages/carbon-web-components/CHANGELOG.md b/web-components/packages/carbon-web-components/CHANGELOG.md index 17769a0b02ca..5384fad74225 100644 --- a/web-components/packages/carbon-web-components/CHANGELOG.md +++ b/web-components/packages/carbon-web-components/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.34.0](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/web-components@1.34.0-rc.2...@carbon/web-components@1.34.0) (2023-11-15) + +**Note:** Version bump only for package @carbon/web-components + + + + + # [1.34.0-rc.2](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/web-components@1.34.0-rc.1...@carbon/web-components@1.34.0-rc.2) (2023-11-06) **Note:** Version bump only for package @carbon/web-components diff --git a/web-components/packages/carbon-web-components/package.json b/web-components/packages/carbon-web-components/package.json index 35a387736ab3..99bdc91ab2de 100644 --- a/web-components/packages/carbon-web-components/package.json +++ b/web-components/packages/carbon-web-components/package.json @@ -1,6 +1,6 @@ { "name": "@carbon/web-components", - "version": "1.34.0-rc.2", + "version": "1.34.0", "publishConfig": { "access": "public" },