Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/release/v1.53.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnacioBecerra committed Nov 15, 2023
2 parents d1a3a27 + 8bf1cd2 commit 16780fe
Show file tree
Hide file tree
Showing 27 changed files with 1,972 additions and 1,903 deletions.
29 changes: 29 additions & 0 deletions packages/carbon-web-components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,35 @@
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/[email protected]...@carbon/[email protected]) (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/[email protected]...@carbon/[email protected]) (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/[email protected]...@carbon/[email protected]) (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/[email protected]...@carbon/[email protected]) (2023-10-30)


Expand Down
2 changes: 1 addition & 1 deletion packages/carbon-web-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@carbon/web-components",
"version": "1.34.0-rc.0",
"version": "1.34.0",
"publishConfig": {
"access": "public"
},
Expand Down
24 changes: 8 additions & 16 deletions packages/carbon-web-components/src/components/link/link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
24 changes: 24 additions & 0 deletions packages/eslint-config-ibmdotcom/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,30 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.44.0](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-11-15)

**Note:** Version bump only for package @carbon/eslint-config-ibmdotcom





# [1.44.0-rc.2](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-11-06)

**Note:** Version bump only for package @carbon/eslint-config-ibmdotcom





# [1.44.0-rc.1](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-11-02)

**Note:** Version bump only for package @carbon/eslint-config-ibmdotcom





# [1.44.0-rc.0](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-10-30)

**Note:** Version bump only for package @carbon/eslint-config-ibmdotcom
Expand Down
4 changes: 2 additions & 2 deletions packages/eslint-config-ibmdotcom/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@carbon/eslint-config-ibmdotcom",
"private": true,
"version": "1.44.0-rc.0",
"version": "1.44.0",
"description": "ESLint configuration for Carbon for IBM.com",
"license": "Apache-2.0",
"main": "index.js",
Expand All @@ -18,7 +18,7 @@
"eslint": "^6.8.0"
},
"dependencies": {
"@carbon/eslint-plugin-react-prop-type-comments": "1.43.0-rc.0",
"@carbon/eslint-plugin-react-prop-type-comments": "1.43.0",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"babel-eslint": "^10.1.0",
Expand Down
24 changes: 24 additions & 0 deletions packages/eslint-plugin-ibmdotcom-import-rules/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,30 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.43.0](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-11-15)

**Note:** Version bump only for package @carbon/eslint-plugin-ibmdotcom-import-rules





# [1.43.0-rc.2](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-11-06)

**Note:** Version bump only for package @carbon/eslint-plugin-ibmdotcom-import-rules





# [1.43.0-rc.1](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-11-02)

**Note:** Version bump only for package @carbon/eslint-plugin-ibmdotcom-import-rules





# [1.43.0-rc.0](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-10-30)

**Note:** Version bump only for package @carbon/eslint-plugin-ibmdotcom-import-rules
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-ibmdotcom-import-rules/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@carbon/eslint-plugin-ibmdotcom-import-rules",
"private": true,
"version": "1.43.0-rc.0",
"version": "1.43.0",
"description": "ESLint plugin for Carbon for IBM.com checking imports",
"license": "Apache-2.0",
"main": "lib/index.js",
Expand Down
24 changes: 24 additions & 0 deletions packages/eslint-plugin-react-prop-type-comments/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,30 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.43.0](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-11-15)

**Note:** Version bump only for package @carbon/eslint-plugin-react-prop-type-comments





# [1.43.0-rc.2](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-11-06)

**Note:** Version bump only for package @carbon/eslint-plugin-react-prop-type-comments





# [1.43.0-rc.1](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-11-02)

**Note:** Version bump only for package @carbon/eslint-plugin-react-prop-type-comments





# [1.43.0-rc.0](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-10-30)

**Note:** Version bump only for package @carbon/eslint-plugin-react-prop-type-comments
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@carbon/eslint-plugin-react-prop-type-comments",
"private": true,
"version": "1.43.0-rc.0",
"version": "1.43.0",
"description": "ESLint plugin for Carbon for IBM.com checking React prop type comments",
"license": "Apache-2.0",
"main": "lib/index.js",
Expand Down
27 changes: 27 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,33 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.53.0](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-11-15)

**Note:** Version bump only for package @carbon/ibmdotcom-react





# [1.53.0-rc.2](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-11-06)

**Note:** Version bump only for package @carbon/ibmdotcom-react





# [1.53.0-rc.1](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-11-02)


### Bug Fixes

* **masthead-a11y:** navigation role do not have unique labels ([#10881](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues/10881)) ([2c9d0ab](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/commit/2c9d0ab2ea97e6cdce58c41a677714077196b480))





# [1.53.0-rc.0](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-10-30)


Expand Down
12 changes: 6 additions & 6 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@carbon/ibmdotcom-react",
"description": "Carbon for IBM.com React Components",
"version": "1.53.0-rc.0",
"version": "1.53.0",
"license": "Apache-2.0",
"main": "lib/index.js",
"module": "es/index.js",
Expand Down Expand Up @@ -63,9 +63,9 @@
},
"dependencies": {
"@babel/runtime": "^7.16.3",
"@carbon/ibmdotcom-services": "1.53.0-rc.0",
"@carbon/ibmdotcom-styles": "1.53.0-rc.0",
"@carbon/ibmdotcom-utilities": "1.53.0-rc.0",
"@carbon/ibmdotcom-services": "1.53.0",
"@carbon/ibmdotcom-styles": "1.53.0",
"@carbon/ibmdotcom-utilities": "1.53.0",
"@carbon/telemetry": "^0.1.0",
"autosuggest-highlight": "^3.1.1",
"carbon-components": "10.58.12",
Expand All @@ -87,8 +87,8 @@
"@babel/preset-env": "~7.23.2",
"@babel/preset-react": "~7.12.1",
"@carbon/icons-react": "10.49.2",
"@carbon/pictograms-react": "11.52.0",
"@carbon/storybook-addon-theme": "1.44.0-rc.0",
"@carbon/pictograms-react": "11.50.0",
"@carbon/storybook-addon-theme": "1.44.0",
"@percy-io/in-percy": "^0.1.11",
"@percy/cli": "^1.8.1",
"@percy/cypress": "^3.1.1",
Expand Down
24 changes: 24 additions & 0 deletions packages/services-store/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,30 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.53.0](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-11-15)

**Note:** Version bump only for package @carbon/ibmdotcom-services-store





# [1.53.0-rc.2](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-11-06)

**Note:** Version bump only for package @carbon/ibmdotcom-services-store





# [1.53.0-rc.1](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-11-02)

**Note:** Version bump only for package @carbon/ibmdotcom-services-store





# [1.53.0-rc.0](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-10-30)

**Note:** Version bump only for package @carbon/ibmdotcom-services-store
Expand Down
6 changes: 3 additions & 3 deletions packages/services-store/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@carbon/ibmdotcom-services-store",
"private": true,
"version": "1.53.0-rc.0",
"version": "1.53.0",
"description": "Redux store for Carbon for IBM.com Services",
"license": "Apache-2.0",
"main": "lib/store.js",
Expand Down Expand Up @@ -30,8 +30,8 @@
"test:unit": "yarn jest"
},
"dependencies": {
"@carbon/ibmdotcom-services": "1.53.0-rc.0",
"@carbon/ibmdotcom-utilities": "1.53.0-rc.0",
"@carbon/ibmdotcom-services": "1.53.0",
"@carbon/ibmdotcom-utilities": "1.53.0",
"carbon-components": "10.58.3",
"redux": "^4.0.0",
"redux-logger": "^3.0.0",
Expand Down
24 changes: 24 additions & 0 deletions packages/services/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,30 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.53.0](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-11-15)

**Note:** Version bump only for package @carbon/ibmdotcom-services





# [1.53.0-rc.2](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-11-06)

**Note:** Version bump only for package @carbon/ibmdotcom-services





# [1.53.0-rc.1](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-11-02)

**Note:** Version bump only for package @carbon/ibmdotcom-services





# [1.53.0-rc.0](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-10-30)

**Note:** Version bump only for package @carbon/ibmdotcom-services
Expand Down
4 changes: 2 additions & 2 deletions packages/services/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@carbon/ibmdotcom-services",
"description": "Carbon for IBM.com Services",
"version": "1.53.0-rc.0",
"version": "1.53.0",
"license": "Apache-2.0",
"main": "lib/index.js",
"module": "es/index.js",
Expand Down Expand Up @@ -48,7 +48,7 @@
},
"dependencies": {
"@babel/runtime": "^7.16.3",
"@carbon/ibmdotcom-utilities": "1.53.0-rc.0",
"@carbon/ibmdotcom-utilities": "1.53.0",
"@carbon/telemetry": "0.1.0",
"axios": "^1.6.0",
"marked": "^4.0.10",
Expand Down
Loading

0 comments on commit 16780fe

Please sign in to comment.