Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(Downshift): update dependency to latest #11331

Closed
wants to merge 4 commits into from

Conversation

dakahn
Copy link
Contributor

@dakahn dakahn commented May 2, 2022

Updates our Downshift dependency to latest (v6.1.7)

from downshift

BREAKING CHANGES

Update TS typings for selectedItem to accept null in both useSelect and useCombobox.

To migrate to the new change, update your types or code if necessary. selectedItem, defaultSelectedItem and initialSelectedItem now have Item | null instead of Item type. PR with the changes: downshift-js/downshift#1090

Update TS typings for itemToString to accept null for the item parameter, in useSelect and useCombobox + in Downshift where this was missing. useMultipleSelection type for itemToString stays the same as it can't receive null as item.

To migrate to the new change, update your types or code if necessary. itemToString: (item: Item) => string -> itemToString: (item: Item | null) => string}. PR with the changes: downshift-js/downshift#1075 downshift-js/downshift#1105

Pass type to the onChange (onInputValueChange, onHighlightedIndexChange, onSelectedItemChange, onIsOpenChange) handler parameters, as specified in the documentation. Also updated the TS typings to reflect this + onStateChange - the type parameter was passed but it was not reflected in the TS types.

To migrate to the new change, update your types or code if necessary, better to view the changes in the PR: downshift-js/downshift#985. Important: please update to the 6.0.2 version since it contains a couple of fixes for the changes in this Breaking Change. Final changes:

stateReducer?: (
state: UseComboboxState,
actionAndChanges: UseComboboxStateChangeOptions, // UseComboboxStateChangeOptions has the correct typings
) => Partial<UseComboboxState> // this now reflects the correct return, which is the partial state.
onSelectedItemChange?: (changes: UseComboboxStateChange) => void // changes have partial state + type
onIsOpenChange?: (changes: UseComboboxStateChange) => void
onHighlightedIndexChange?: (changes: UseComboboxStateChange) => void
onStateChange?: (changes: UseComboboxStateChange) => void
onInputValueChange?: (changes: UseComboboxStateChange) => void

where

export interface UseComboboxStateChangeOptions
extends UseComboboxDispatchAction { // type and optional parameters needed to compute the next state
changes: Partial<UseComboboxState> // partial state changes proposed by the hook
}

export interface UseComboboxDispatchAction {
type: UseComboboxStateChangeTypes
shiftKey?: boolean
getItemNodeFromIndex?: (index: number) => HTMLElement
inputValue?: string
index?: number
highlightedIndex?: number
selectedItem?: Item | null
selectItem?: boolean
}

export interface UseComboboxStateChange
extends Partial<UseComboboxState> {
type: UseComboboxStateChangeTypes
}

BREAKING BEHAVIOURS

[useCombobox]: When an item is highlighted by keyboard and user closes the menu using mouse/touch, the item is not selected anymore. The only selection on Blur happens using either Tab / Shift+Tab. PR with the changes: https://github.com/downshift-js/downshift/pull/1109

[useCombobox & downshift]: When pressing Escape and the menu is open, only close the menu. When the menu is closed and there is an item selected and/or text in the input, clear the selectedItem and the inputValue. PR with the changes: https://github.com/downshift-js/downshift/issues/719

closes #11331

@dakahn dakahn requested a review from a team as a code owner May 2, 2022 22:49
@dakahn dakahn requested review from aledavila and jnm2377 May 2, 2022 22:49
@netlify
Copy link

netlify bot commented May 2, 2022

Deploy Preview for carbon-components-react ready!

Name Link
🔨 Latest commit 2433e9e
🔍 Latest deploy log https://app.netlify.com/sites/carbon-components-react/deploys/63075edd2568a8000788361e
😎 Deploy Preview https://deploy-preview-11331--carbon-components-react.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site settings.

@netlify
Copy link

netlify bot commented May 2, 2022

Deploy Preview for carbon-elements ready!

Name Link
🔨 Latest commit 2433e9e
🔍 Latest deploy log https://app.netlify.com/sites/carbon-elements/deploys/63075edd2568a80007883623
😎 Deploy Preview https://deploy-preview-11331--carbon-elements.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site settings.

@@ -50,7 +50,7 @@
"@carbon/telemetry": "0.1.0",
"classnames": "2.3.1",
"copy-to-clipboard": "^3.3.1",
"downshift": "5.2.1",
"downshift": "6.1.7",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are there any user-facing breaking changes from doing a major update of downshift?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated the PR description with their changelog 👀

@jnm2377
Copy link
Contributor

jnm2377 commented May 3, 2022

How should we review this?

@dakahn
Copy link
Contributor Author

dakahn commented May 4, 2022

@jnm2377 sorry, for the lack of clarity there. Basically, we're updating a dependency for Dropdown, Combobox and Multiselect. So running through basically functionality, testing, and keyboard/screen reader functionality is preferable

Copy link
Contributor Author

@dakahn dakahn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like updating breaks tooltips for truncated menu items in Chrome/Chromium browsers like we're currently seeing in Firefox, which is interesting.

Could be related to the ref weirdness we're seeing in our useIsTruncated hook

@jnm2377
Copy link
Contributor

jnm2377 commented May 9, 2022

Looks like updating breaks tooltips for truncated menu items in Chrome/Chromium browsers like we're currently seeing in Firefox, which is interesting.

Could be related to the ref weirdness we're seeing in our useIsTruncated hook

@dakahn is this blocked until we figure that out, then? not being able to read truncated text fully seems like an important issue, even though I think essential functionality (selecting items) still works. Idk. thoughts?

@jnm2377
Copy link
Contributor

jnm2377 commented May 12, 2022

@dakahn just wanted to follow up on this. Do we think we should defer updating since it breaks truncated tooltips?

@dakahn
Copy link
Contributor Author

dakahn commented May 12, 2022

yeah, until we get a handle on the existing bug we're aware of this is officially blocked id say

@dakahn dakahn marked this pull request as draft May 12, 2022 22:36
@jnm2377 jnm2377 removed their request for review May 18, 2022 18:41
@dakahn dakahn removed the request for review from aledavila July 15, 2022 00:07
@dakahn dakahn marked this pull request as ready for review August 24, 2022 20:45
@tw15egan
Copy link
Member

tw15egan commented Aug 25, 2022

Did a quick run-through of all the downshift components, and the only issue I saw was that I was able to keyboard navigate to and select a disabled item in Multiselect. All other elements seemed like they behaved correctly. Also noticed an issue with the With Initial Selected Items story, with a disabled initially selected. Not sure if that is intended.

Tabbing / selecting disabled item
Screen Shot 2022-08-25 at 1 34 57 PM

Initially selected item is disabled
Screen Shot 2022-08-25 at 1 35 38 PM

Looks great otherwise! 🎉 👍🏻

@dakahn dakahn marked this pull request as draft September 8, 2022 20:48
@abbeyhrt abbeyhrt closed this Oct 4, 2022
@tay1orjones tay1orjones mentioned this pull request May 5, 2023
kennylam added a commit to kennylam/carbon that referenced this pull request Jul 30, 2024
…m#11331)

* chore(notification): rename story files for sb v7

* chore(notification): update notification stories to sb v7

* chore(storybook): update spacing on CDN JS markdown docs

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>
github-merge-queue bot pushed a commit that referenced this pull request Sep 20, 2024
* feat(storybook): updated 2 component stories to v7 (#11362)

* chore(search): update search stories to sb v7

* chore(select): update select stories to sb v7

* chore(select): trim back select imports

* fix(select): use optional chaining on a @query property inside getter

* chore(select): fix case on readOnly

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* feat(tag/tooltip): cwc storybook controls (#11381)

* feat(storybook): updated 7 component stories to v7 (#11344)

* fix(loading): update story to v7

* fix(modal): update to v7

* fix(checkbox): update to v7

* fix(list): update to v7

* fix(inline-loading): updated to v7

* fix(data-table): update to v7

* chore(prettier): ran formatter

* fix(list): remove double mdxs

* fix(markdown): replaced description

* Update packages/carbon-web-components/src/components/list/ordered-list.stories.ts

* Update packages/carbon-web-components/src/components/list/ordered-list.stories.ts

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* feat(layer/dropdown/combo-box): update stories to Storybook v7 (#11318)

* feat(layer): updated to v7

* feat(dropdown): update story

* feat(combo-box): update to v7

* fix(stories): addressed feedback

* fix(markdown): replaced description

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* feat(notification): update story to Storybook v7 (#11331)

* chore(notification): rename story files for sb v7

* chore(notification): update notification stories to sb v7

* chore(storybook): update spacing on CDN JS markdown docs

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* feat(multi-select): update story to Storybook v7 (#11327)

* chore(multi-select): rename story files for sb v7

* chore(multi-select): update file-uploader to sb v7

* chore(multi-select): include sb layer components, remove unused import

* fix(multi-select): controls for disabled, readOnly and invalid

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* feat(content-switcher): update story to Storybook v7 (#11315)

* chore(content-switcher): update content-switcher to sb v7

* fix(content-switcher): add imports for content-switcher dependencies

* fix(content-switcher): fix css selector for icon only styles

* fix(content-switcher): restore the size options

* chore(content-switcher): include storybook layers components

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* chore(breadcrumb): finish updating breadcrumb to sb v7 (#11310)

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* feat(accordion): update story to Storybook v7 (#11306)

* chore(accordion): first pass at updating accordion for sb v7

* chore(accordion): finish updating accordion to sb v7

* chore(accordion): tidy up excess import

---------

Co-authored-by: Ignacio Becerra <i1becerr@ucsd.edu>

* feat(date-picker): update story to Storybook v7 (#11276)

* chore(date-picker): rename for sb v7

* chore(date-picker): convert from knobs to controls

* chore(date-picker): remove storyDocs parameter, causing local failures

* chore(date-picker): add date picker descriptions from React storybook

* chore(date-picker): include storybook layers components

* chore(date-picker): add back actions in sb v7 format

---------

Co-authored-by: Ignacio Becerra <i1becerr@ucsd.edu>

* feat(code-snippet): update story to Storybook v7 (#11312)

* chore(code-snippet): update code-snippet to sb v7

* chore(code-snippet): include storybook layers components

* chore(code-snippet): include storybook layers components

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>
Co-authored-by: Ignacio Becerra <i1becerr@ucsd.edu>

* feat(number-input): update story to Storybook v7 (#11336)

* chore(number-input): update number-input stories to sb v7

* chore(number-input): fix case on readOnly

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* fix(tooltip): tooltip persists issue (#11324)

* fix(tooltip): tooltip persists issue

* chore(prettier): format code

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* chore(icon-button): update form-group stories to sb v7 (#11388)

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* feat(icon-button): update story to Storybook v7 (#11387)

* chore(icon-button): update icon-button stories to sb v7

* fix(icon-button): missing default label

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* fix(date-picker): range plugin on import (#11410)

### Related Ticket(s)

Closes #none

### Description

fixes old `on` import and changes it local import


<!-- React and Web Component deploy previews are enabled by default. -->
<!-- To enable additional available deploy previews, apply the following -->
<!-- labels for the corresponding package: -->
<!-- *** "test: e2e": Codesandbox examples and e2e integration tests -->
<!-- *** "package: services": Services -->
<!-- *** "package: utilities": Utilities -->
<!-- *** "RTL": React / Web Components (RTL) -->
<!-- *** "feature flag": React / Web Components (experimental) -->

* chore(version): patch 2.1.2

* Update packages/carbon-web-components/src/components/slider/slider.scss

Co-authored-by: Ariella Gilmore <ariellalgilmore@gmail.com>

* feat(slug): update story to Storybook v7 (#11384)

* chore(slug): update slug stories to sb v7

* chore(slug): update slug example stories to sb v7

* chore(slug): update slug data table stories to sb v7

* chore(slug): update slug form stories to sb v7

* feat(toggle/toggletip): cwc controls (#11395)

* feat(toggle/toggletip): cwc controls

* fix(toggletip): open prop

* fix(toggletip): body text font

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* feat(storybook): updated 5 components to v7 (#11397)

* feat(structured-list): update to v7

* feat(tabs): update to v7

* feat(ui-shell): update to v7

* feat(text-input): update to v7

* feat(textarea): update to v7

* fix(prettier): ran prettier

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* feat(pagination): update story to Storybook v7 (#11401)

* chore(pagination): update pagination stories to sb v7

* fix(pagination): fix backward-text control

* fix(pagination): specify page-input-disabled property as boolean

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* chore(radio-button): update radio-button stories to sb v7 (#11361)

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* fix(number-input): fix incorrect controls border for readonly mode (#11402)

### Related Ticket(s)

Closes #11390 

### Description

Fixed incorrect controls styles for readonly number input

### Changelog

**New**

- added some styles

* chore(deps): update dependency @carbon/icons to v11.33.0 (#11406)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@carbon/icons](https://github.com/carbon-design-system/carbon) ([source](https://github.com/carbon-design-system/carbon/tree/HEAD/packages/icons)) | [`11.31.0` -> `11.33.0`](https://renovatebot.com/diffs/npm/@carbon%2ficons/11.31.0/11.33.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@carbon%2ficons/11.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@carbon%2ficons/11.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@carbon%2ficons/11.31.0/11.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@carbon%2ficons/11.31.0/11.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>carbon-design-system/carbon (@&#8203;carbon/icons)</summary>

### [`v11.33.0`](https://github.com/carbon-design-system/carbon/releases/tag/v11.33.0)

[Compare Source](https://github.com/carbon-design-system/carbon/compare/v11.32.0...v11.33.0)

##### `carbon-components@11.33.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `carbon-components-react@8.33.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/cli@11.12.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/cli-reporter@10.7.0`

##### Bug fixes :bug:

-   fix(cli-reporter): fix undefined \_style ([#&#8203;14018](https://github.com/carbon-design-system/carbon/issues/14018)) ([`86eb04892`](https://github.com/carbon-design-system/carbon/commit/86eb04892))

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/colors@11.17.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/elements@11.25.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/grid@11.16.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(deps): bump semver in /packages/grid/examples/css-grid ([#&#8203;14142](https://github.com/carbon-design-system/carbon/issues/14142)) ([`e416444cf`](https://github.com/carbon-design-system/carbon/commit/e416444cf))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/icon-helpers@10.42.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/icons@11.22.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))
-   chore(deps): bump semver in /packages/icons/examples/preview ([#&#8203;14079](https://github.com/carbon-design-system/carbon/issues/14079)) ([`395522939`](https://github.com/carbon-design-system/carbon/commit/395522939))

##### `@carbon/icons-react@11.22.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/icons-vue@10.71.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/layout@11.16.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(deps): bump semver in /packages/layout/examples/preview ([#&#8203;14074](https://github.com/carbon-design-system/carbon/issues/14074)) ([`e11af98b5`](https://github.com/carbon-design-system/carbon/commit/e11af98b5))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/motion@11.13.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/pictograms@12.19.0`

##### New features :rocket:

-   feat(Pictograms): pictogram-master-file-june ([#&#8203;14094](https://github.com/carbon-design-system/carbon/issues/14094)) ([`c1ffb84fd`](https://github.com/carbon-design-system/carbon/commit/c1ffb84fd))
-   feat(Pictograms): june pictogram additions ([#&#8203;14067](https://github.com/carbon-design-system/carbon/issues/14067)) ([`2ee33d79a`](https://github.com/carbon-design-system/carbon/commit/2ee33d79a))

##### Bug fixes :bug:

-   fix(pictograms): remove extra category for app--modernization ([#&#8203;14113](https://github.com/carbon-design-system/carbon/issues/14113)) ([`34c358495`](https://github.com/carbon-design-system/carbon/commit/34c358495))

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))
-   chore(deps): bump semver in /packages/pictograms/examples/preview ([#&#8203;14071](https://github.com/carbon-design-system/carbon/issues/14071)) ([`524aba517`](https://github.com/carbon-design-system/carbon/commit/524aba517))

##### `@carbon/pictograms-react@11.45.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/react@1.33.0`

##### New features :rocket:

-   feat(Tag): add as prop to Tag to specify wrapping element ([#&#8203;13959](https://github.com/carbon-design-system/carbon/issues/13959)) ([#&#8203;14112](https://github.com/carbon-design-system/carbon/issues/14112)) ([`fcdecdb53`](https://github.com/carbon-design-system/carbon/commit/fcdecdb53))
-   feat(Toggle): adds typescript typings to Toggle ([#&#8203;14128](https://github.com/carbon-design-system/carbon/issues/14128)) ([`90a6610e0`](https://github.com/carbon-design-system/carbon/commit/90a6610e0))
-   feat: convert HeaderName to tsx and update snapshot ([#&#8203;14087](https://github.com/carbon-design-system/carbon/issues/14087)) ([`82d837b83`](https://github.com/carbon-design-system/carbon/commit/82d837b83))
-   feat: added new react useid hook and tests ([#&#8203;14044](https://github.com/carbon-design-system/carbon/issues/14044)) ([`af94b4fbc`](https://github.com/carbon-design-system/carbon/commit/af94b4fbc))

##### Bug fixes :bug:

-   fix(DataTableSkeleton): adjust TypeScript types to match behavior ([#&#8203;14114](https://github.com/carbon-design-system/carbon/issues/14114)) ([`84cdca4e9`](https://github.com/carbon-design-system/carbon/commit/84cdca4e9))
-   fix(UIShell): various fixes to avoid null pointer assertions ([#&#8203;14144](https://github.com/carbon-design-system/carbon/issues/14144)) ([`330b4bf21`](https://github.com/carbon-design-system/carbon/commit/330b4bf21))
-   fix: update contained list search placeholder ([#&#8203;14105](https://github.com/carbon-design-system/carbon/issues/14105)) ([`f7b7b4d97`](https://github.com/carbon-design-system/carbon/commit/f7b7b4d97))
-   fix: storybook sort function ([#&#8203;14125](https://github.com/carbon-design-system/carbon/issues/14125)) ([`4b88b7f9c`](https://github.com/carbon-design-system/carbon/commit/4b88b7f9c))
-   fix(DataTable): check for undefined document obj ([#&#8203;14115](https://github.com/carbon-design-system/carbon/issues/14115)) ([`04add82e0`](https://github.com/carbon-design-system/carbon/commit/04add82e0))
-   fix: dropdown contrast focus styles ([#&#8203;14017](https://github.com/carbon-design-system/carbon/issues/14017)) ([`a460b2878`](https://github.com/carbon-design-system/carbon/commit/a460b2878))
-   fix(UIShell): refactor displayName check ([#&#8203;14097](https://github.com/carbon-design-system/carbon/issues/14097)) ([`0a317bfa2`](https://github.com/carbon-design-system/carbon/commit/0a317bfa2))
-   fix(InlineCheckbox): guard from setting indeterminate on null ref ([#&#8203;14070](https://github.com/carbon-design-system/carbon/issues/14070)) ([`9ed61f7e3`](https://github.com/carbon-design-system/carbon/commit/9ed61f7e3))
-   fix(Datepicker): fix types ([#&#8203;14080](https://github.com/carbon-design-system/carbon/issues/14080)) ([`e921ee1d2`](https://github.com/carbon-design-system/carbon/commit/e921ee1d2))
-   fix: make ActionableNotification `subtitle` proptypes node to allow objects ([#&#8203;13821](https://github.com/carbon-design-system/carbon/issues/13821)) ([`c3ea7c86a`](https://github.com/carbon-design-system/carbon/commit/c3ea7c86a))

##### Documentation :memo:

-   docs(readme): include link to sass FAQ ([#&#8203;14123](https://github.com/carbon-design-system/carbon/issues/14123)) ([`d94e75359`](https://github.com/carbon-design-system/carbon/commit/d94e75359))
-   docs(notification): clarify ActionableNotification usage ([#&#8203;14077](https://github.com/carbon-design-system/carbon/issues/14077)) ([`4ec58e7b2`](https://github.com/carbon-design-system/carbon/commit/4ec58e7b2))

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))
-   chore: Types for FileUploader, FileUploaderButton, FileUploaderDropContainer, FileUploaderItem, FileUploaderSkeleton, Filename, Upload and ButtonSkeleton ([#&#8203;13992](https://github.com/carbon-design-system/carbon/issues/13992)) ([`033ecc706`](https://github.com/carbon-design-system/carbon/commit/033ecc706))

##### `@carbon/styles@1.33.0`

##### Bug fixes :bug:

-   fix(peerDependencies): make sass optional for styles - Solves [@&#8203;carbon/charts](https://github.com/carbon/charts) example issue ([#&#8203;14131](https://github.com/carbon-design-system/carbon/issues/14131)) ([`7330045c6`](https://github.com/carbon-design-system/carbon/commit/7330045c6))
-   fix: dropdown contrast focus styles ([#&#8203;14017](https://github.com/carbon-design-system/carbon/issues/14017)) ([`a460b2878`](https://github.com/carbon-design-system/carbon/commit/a460b2878))

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/themes@11.21.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))
-   chore(deps): bump semver in /packages/themes/examples/preview-v10 ([#&#8203;14073](https://github.com/carbon-design-system/carbon/issues/14073)) ([`eb689371e`](https://github.com/carbon-design-system/carbon/commit/eb689371e))
-   chore(deps): bump semver in /packages/themes/examples/preview ([#&#8203;14068](https://github.com/carbon-design-system/carbon/issues/14068)) ([`1c25d282f`](https://github.com/carbon-design-system/carbon/commit/1c25d282f))

##### `@carbon/type@11.20.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))
-   chore(deps): bump semver in /packages/type/examples/preview ([#&#8203;14072](https://github.com/carbon-design-system/carbon/issues/14072)) ([`c950ddfba`](https://github.com/carbon-design-system/carbon/commit/c950ddfba))

##### `@carbon/upgrade@11.9.0`

##### Bug fixes :bug:

-   fix(upgrade): add size prop codemods to upgrade package ([#&#8203;14089](https://github.com/carbon-design-system/carbon/issues/14089)) ([`90da4b9da`](https://github.com/carbon-design-system/carbon/commit/90da4b9da))

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

### [`v11.32.0`](https://github.com/carbon-design-system/carbon/releases/tag/v11.32.0)

[Compare Source](https://github.com/carbon-design-system/carbon/compare/v11.31.0...v11.32.0)

##### `eslint-config-carbon@3.6.0`

##### Housekeeping :house:

-   chore(release): v11.32.0 ([#&#8203;14066](https://github.com/carbon-design-system/carbon/issues/14066)) ([`507ddae30`](https://github.com/carbon-design-system/carbon/commit/507ddae30))
-   chore(release): v11.32.0-rc.0 ([#&#8203;14038](https://github.com/carbon-design-system/carbon/issues/14038)) ([`fe40fbf42`](https://github.com/carbon-design-system/carbon/commit/fe40fbf42))

##### `stylelint-config-carbon@1.14.0`

##### Housekeeping :house:

-   chore(deps): update dependency stylelint to v15 ([#&#8203;13966](https://github.com/carbon-design-system/carbon/issues/13966)) ([`b28d9b792`](https://github.com/carbon-design-system/carbon/commit/b28d9b792))

##### `carbon-components@11.32.0`

##### Bug fixes :bug:

-   fix(contextual-layout-tokens): support individual component style imports ([#&#8203;13984](https://github.com/carbon-design-system/carbon/issues/13984)) ([`009bb31a5`](https://github.com/carbon-design-system/carbon/commit/009bb31a5))

##### Housekeeping :house:

-   chore(release): v11.32.0 ([#&#8203;14066](https://github.com/carbon-design-system/carbon/issues/14066)) ([`507ddae30`](https://github.com/carbon-design-system/carbon/commit/507ddae30))
-   chore(release): v11.32.0-rc.0 ([#&#8203;14038](https://github.com/carbon-design-system/carbon/issues/14038)) ([`fe40fbf42`](https://github.com/carbon-design-system/carbon/commit/fe40fbf42))

##### `carbon-components-react@8.32.0`

##### Bug fixes :bug:

-   fix(contextual-layout-tokens): support individual component style imports ([#&#8203;13984](https://github.com/carbon-design-system/carbon/issues/13984)) ([`009bb31a5`](https://github.com/carbon-design-system/carbon/commit/009bb31a5))

##### Housekeeping :house:

-   chore(release): v11.32.0 ([#&#8203;14066](https://github.com/carbon-design-system/carbon/issues/14066)) ([`507ddae30`](https://github.com/carbon-design-system/carbon/commit/507ddae30))
-   chore(release): v11.32.0-rc.0 ([#&#8203;14038](https://github.com/carbon-design-system/carbon/issues/14038)) ([`fe40fbf42`](https://github.com/carbon-design-system/carbon/commit/fe40fbf42))

##### `@carbon/cli@11.11.0`

##### Housekeeping :house:

-   chore(package): remove sketch ([#&#8203;14010](https://github.com/carbon-design-system/carbon/issues/14010)) ([`fd00277f8`](https://github.com/carbon-design-system/carbon/commit/fd00277f8))

##### `@carbon/react@1.32.0`

##### New features :rocket:

-   feat(Tabs): Contained tabs on the grid ([#&#8203;13927](https://github.com/carbon-design-system/carbon/issues/13927)) ([`11c70f3dc`](https://github.com/carbon-design-system/carbon/commit/11c70f3dc))
-   feat(toggle): fixes disabled issue and adds test ([#&#8203;13958](https://github.com/carbon-design-system/carbon/issues/13958)) ([`5a76564f1`](https://github.com/carbon-design-system/carbon/commit/5a76564f1))
-   feat: added types for Accordion, AccordionItem, AccordionSkeleton, SkeletonText ([#&#8203;13875](https://github.com/carbon-design-system/carbon/issues/13875)) ([`8bc7bfce4`](https://github.com/carbon-design-system/carbon/commit/8bc7bfce4))

##### Bug fixes :bug:

-   fix(Link): ensure target is passed down to anchor element ([#&#8203;14041](https://github.com/carbon-design-system/carbon/issues/14041)) ([`f40998c0b`](https://github.com/carbon-design-system/carbon/commit/f40998c0b))
-   fix(Datepicker): fix calendar cannot close issue ([#&#8203;14028](https://github.com/carbon-design-system/carbon/issues/14028)) ([`5f04156d5`](https://github.com/carbon-design-system/carbon/commit/5f04156d5))
-   fix(ToggleSkeleton): fix issue with ToggleSkeleton style ([#&#8203;13963](https://github.com/carbon-design-system/carbon/issues/13963)) ([`7de2ef39f`](https://github.com/carbon-design-system/carbon/commit/7de2ef39f))
-   fix(sass): remove colons from classnames ([#&#8203;14022](https://github.com/carbon-design-system/carbon/issues/14022)) ([`b8422a1d4`](https://github.com/carbon-design-system/carbon/commit/b8422a1d4))
-   fix(contained-list): explicitly set "list" role ([#&#8203;14019](https://github.com/carbon-design-system/carbon/issues/14019)) ([`b440e5fb9`](https://github.com/carbon-design-system/carbon/commit/b440e5fb9))
-   fix(UIShell): fix hover issue, reasonable default for enter/exit delay ([#&#8203;13961](https://github.com/carbon-design-system/carbon/issues/13961)) ([`7efc2f3c4`](https://github.com/carbon-design-system/carbon/commit/7efc2f3c4))
-   fix: dropdown-firefox-voice-over ([#&#8203;13994](https://github.com/carbon-design-system/carbon/issues/13994)) ([`d6701c0b4`](https://github.com/carbon-design-system/carbon/commit/d6701c0b4))
-   fix(contextual-layout-tokens): support individual component style imports ([#&#8203;13984](https://github.com/carbon-design-system/carbon/issues/13984)) ([`009bb31a5`](https://github.com/carbon-design-system/carbon/commit/009bb31a5))
-   fix(DataTable): mock Canvas and remove dependency ([#&#8203;13972](https://github.com/carbon-design-system/carbon/issues/13972)) ([`67c7aa7b6`](https://github.com/carbon-design-system/carbon/commit/67c7aa7b6))

##### Housekeeping :house:

-   chore(release): v11.32.0 ([#&#8203;14066](https://github.com/carbon-design-system/carbon/issues/14066)) ([`507ddae30`](https://github.com/carbon-design-system/carbon/commit/507ddae30))
-   chore(release): v11.32.0-rc.0 ([#&#8203;14038](https://github.com/carbon-design-system/carbon/issues/14038)) ([`fe40fbf42`](https://github.com/carbon-design-system/carbon/commit/fe40fbf42))
-   chore: added types to ControlledPasswordInput ([#&#8203;13995](https://github.com/carbon-design-system/carbon/issues/13995)) ([`8f283a42f`](https://github.com/carbon-design-system/carbon/commit/8f283a42f))
-   refactor(Button): convert Button component family to TypeScript ([#&#8203;13811](https://github.com/carbon-design-system/carbon/issues/13811)) ([`04644a9ca`](https://github.com/carbon-design-system/carbon/commit/04644a9ca))
-   chore: typescript type for TableContainer props ([#&#8203;13983](https://github.com/carbon-design-system/carbon/issues/13983)) ([`47fc5c8c0`](https://github.com/carbon-design-system/carbon/commit/47fc5c8c0))
-   chore: added types for formgroup component ([#&#8203;13988](https://github.com/carbon-design-system/carbon/issues/13988)) ([`99189c69d`](https://github.com/carbon-design-system/carbon/commit/99189c69d))
-   chore: typescript types for props in TableBody ([#&#8203;13982](https://github.com/carbon-design-system/carbon/issues/13982)) ([`e7800e71a`](https://github.com/carbon-design-system/carbon/commit/e7800e71a))
-   chore: types for TableExpandHeader props ([#&#8203;13985](https://github.com/carbon-design-system/carbon/issues/13985)) ([`81e2fb9d6`](https://github.com/carbon-design-system/carbon/commit/81e2fb9d6))

##### `@carbon/styles@1.32.0`

##### New features :rocket:

-   feat(Tabs): Contained tabs on the grid ([#&#8203;13927](https://github.com/carbon-design-system/carbon/issues/13927)) ([`11c70f3dc`](https://github.com/carbon-design-system/carbon/commit/11c70f3dc))
-   feat(toggle): fixes disabled issue and adds test ([#&#8203;13958](https://github.com/carbon-design-system/carbon/issues/13958)) ([`5a76564f1`](https://github.com/carbon-design-system/carbon/commit/5a76564f1))
-   feat(tile): support contextual layout tokens (density) ([#&#8203;13937](https://github.com/carbon-design-system/carbon/issues/13937)) ([`b6f1a88a8`](https://github.com/carbon-design-system/carbon/commit/b6f1a88a8))

##### Bug fixes :bug:

-   fix(ListBoxMenuItem): ensure border-subtle renders correct value ([#&#8203;13879](https://github.com/carbon-design-system/carbon/issues/13879)) ([`99ffdd1e1`](https://github.com/carbon-design-system/carbon/commit/99ffdd1e1))
-   fix(ToggleSkeleton): fix issue with ToggleSkeleton style ([#&#8203;13963](https://github.com/carbon-design-system/carbon/issues/13963)) ([`7de2ef39f`](https://github.com/carbon-design-system/carbon/commit/7de2ef39f))
-   fix(sass): remove colons from classnames ([#&#8203;14022](https://github.com/carbon-design-system/carbon/issues/14022)) ([`b8422a1d4`](https://github.com/carbon-design-system/carbon/commit/b8422a1d4))
-   fix(DataTable): fix padding issue with batch actions ([#&#8203;14024](https://github.com/carbon-design-system/carbon/issues/14024)) ([`1234cfd10`](https://github.com/carbon-design-system/carbon/commit/1234cfd10))
-   fix(UIShell): fix hover issue, reasonable default for enter/exit delay ([#&#8203;13961](https://github.com/carbon-design-system/carbon/issues/13961)) ([`7efc2f3c4`](https://github.com/carbon-design-system/carbon/commit/7efc2f3c4))
-   fix(contextual-layout-tokens): support individual component style imports ([#&#8203;13984](https://github.com/carbon-design-system/carbon/issues/13984)) ([`009bb31a5`](https://github.com/carbon-design-system/carbon/commit/009bb31a5))
-   fix(ActionableNotification): fix padding issue with button ([#&#8203;13971](https://github.com/carbon-design-system/carbon/issues/13971)) ([`dab66af98`](https://github.com/carbon-design-system/carbon/commit/dab66af98))

##### Housekeeping :house:

-   chore(release): v11.32.0 ([#&#8203;14066](https://github.com/carbon-design-system/carbon/issues/14066)) ([`507ddae30`](https://github.com/carbon-design-system/carbon/commit/507ddae30))
-   chore(release): v11.32.0-rc.0 ([#&#8203;14038](https://github.com/carbon-design-system/carbon/issues/14038)) ([`fe40fbf42`](https://github.com/carbon-design-system/carbon/commit/fe40fbf42))
-   chore(deps): update dependency stylelint to v15 ([#&#8203;13966](https://github.com/carbon-design-system/carbon/issues/13966)) ([`b28d9b792`](https://github.com/carbon-design-system/carbon/commit/b28d9b792))

##### `@carbon/upgrade@11.8.0`

##### Housekeeping :house:

-   chore(release): v11.32.0 ([#&#8203;14066](https://github.com/carbon-design-system/carbon/issues/14066)) ([`507ddae30`](https://github.com/carbon-design-system/carbon/commit/507ddae30))
-   chore(release): v11.32.0-rc.0 ([#&#8203;14038](https://github.com/carbon-design-system/carbon/issues/14038)) ([`fe40fbf42`](https://github.com/carbon-design-system/carbon/commit/fe40fbf42))
-   chore(deps): update dependency esbuild to ^0.18.0 ([#&#8203;14029](https://github.com/carbon-design-system/carbon/issues/14029)) ([`40b964809`](https://github.com/carbon-design-system/carbon/commit/40b964809))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/carbon-design-system/carbon-for-ibm-dotcom).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

* fix(select): selected item is not showing for ios/ipados (#11214)

### Related Ticket(s)

Closes https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues/10052
[Jira ticket](https://jsw.ibm.com/browse/ADCMS-4083)

### Description

Fix for Labeles not appearing on Safari / IOS

### Changelog

**Changed**

 - How labels on the select component are handled

---
Opened to replace https://github.com/carbon-design-system/carbon-for-ibm-dotcom/pull/11080

* chore(package): remove openssl-legacy flag from package.json (#11417)

### Description

Removes `openssl-legacy-provider` flag from `package.json` commands. Since `yarn.lock` has been cleaned this is no longer necessary.

### Changelog

**New**

- {{new thing}}

**Changed**

- {{changed thing}}

**Removed**

- `openssl-legacy-provider` flag from `package.json` commands

<!-- React and Web Component deploy previews are enabled by default. -->
<!-- To enable additional available deploy previews, apply the following -->
<!-- labels for the corresponding package: -->
<!-- *** "test: e2e": Codesandbox examples and e2e integration tests -->
<!-- *** "package: services": Services -->
<!-- *** "package: utilities": Utilities -->
<!-- *** "RTL": React / Web Components (RTL) -->
<!-- *** "feature flag": React / Web Components (experimental) -->

* deps(babel): update `@babel-traverse` to latest (#11419)

### Description

This updates `@babel/traverse` to resolve a critical vulnerability: https://github.com/carbon-design-system/carbon-for-ibm-dotcom/security/dependabot/224.

### Changelog

**Changed**

- update `@babel/traverse` to latest version

<!-- React and Web Component deploy previews are enabled by default. -->
<!-- To enable additional available deploy previews, apply the following -->
<!-- labels for the corresponding package: -->
<!-- *** "test: e2e": Codesandbox examples and e2e integration tests -->
<!-- *** "package: services": Services -->
<!-- *** "package: utilities": Utilities -->
<!-- *** "RTL": React / Web Components (RTL) -->
<!-- *** "feature flag": React / Web Components (experimental) -->

* chore(release): publish

 - @carbon/web-components@2.2.0-rc.0
 - @carbon/ibmdotcom-services@2.2.0-rc.0
 - @carbon/ibmdotcom-styles@2.2.0-rc.0
 - @carbon/ibmdotcom-utilities@2.2.0-rc.0
 - @carbon/ibmdotcom-web-components@2.2.0-rc.0

* chore(deps): update dependency @carbon/icons to v11.34.0 (#11422)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@carbon/icons](https://github.com/carbon-design-system/carbon) ([source](https://github.com/carbon-design-system/carbon/tree/HEAD/packages/icons)) | [`11.33.0` -> `11.34.0`](https://renovatebot.com/diffs/npm/@carbon%2ficons/11.33.0/11.34.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@carbon%2ficons/11.34.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@carbon%2ficons/11.34.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@carbon%2ficons/11.33.0/11.34.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@carbon%2ficons/11.33.0/11.34.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>carbon-design-system/carbon (@&#8203;carbon/icons)</summary>

### [`v11.34.0`](https://github.com/carbon-design-system/carbon/releases/tag/v11.34.0)

[Compare Source](https://github.com/carbon-design-system/carbon/compare/v11.33.0...v11.34.0)

##### `eslint-config-carbon@3.7.0`

##### Bug fixes :bug:

-   fix(deps): update dependency eslint-plugin-jsdoc to v46 ([#&#8203;14228](https://github.com/carbon-design-system/carbon/issues/14228)) ([`f1fa642bd`](https://github.com/carbon-design-system/carbon/commit/f1fa642bd))
-   fix(deps): update dependency eslint-plugin-jest to v27 ([#&#8203;14167](https://github.com/carbon-design-system/carbon/issues/14167)) ([`d5209d1c2`](https://github.com/carbon-design-system/carbon/commit/d5209d1c2))
-   fix(deps): update dependency eslint-plugin-jest-dom to v5 ([#&#8203;14227](https://github.com/carbon-design-system/carbon/issues/14227)) ([`410931a62`](https://github.com/carbon-design-system/carbon/commit/410931a62))

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `carbon-components@11.34.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `carbon-components-react@8.34.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/cli@11.13.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps-dev): bump stylelint from 15.7.0 to 15.10.1 ([#&#8203;14162](https://github.com/carbon-design-system/carbon/issues/14162)) ([`f8a0c3450`](https://github.com/carbon-design-system/carbon/commit/f8a0c3450))
-   chore(deps): update dependency replace-in-file to v7 ([#&#8203;13922](https://github.com/carbon-design-system/carbon/issues/13922)) ([`1bf2d4f6c`](https://github.com/carbon-design-system/carbon/commit/1bf2d4f6c))

##### `@carbon/colors@11.18.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): bump semver in /packages/colors/examples/sass-modules ([#&#8203;14180](https://github.com/carbon-design-system/carbon/issues/14180)) ([`3ab83bbb9`](https://github.com/carbon-design-system/carbon/commit/3ab83bbb9))
-   chore(deps): bump semver in /packages/colors/examples/preview ([#&#8203;14182](https://github.com/carbon-design-system/carbon/issues/14182)) ([`443900bfe`](https://github.com/carbon-design-system/carbon/commit/443900bfe))

##### `@carbon/elements@11.26.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): update dependency replace-in-file to v7 ([#&#8203;13922](https://github.com/carbon-design-system/carbon/issues/13922)) ([`1bf2d4f6c`](https://github.com/carbon-design-system/carbon/commit/1bf2d4f6c))

##### `@carbon/grid@11.17.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/icon-helpers@10.43.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/icons@11.23.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/icons-react@11.23.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): bump semver in /packages/icons-react/examples/storybook ([#&#8203;14177](https://github.com/carbon-design-system/carbon/issues/14177)) ([`59f997f28`](https://github.com/carbon-design-system/carbon/commit/59f997f28))

##### `@carbon/icons-vue@10.72.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): bump semver in /packages/icons-vue/examples/storybook ([#&#8203;14189](https://github.com/carbon-design-system/carbon/issues/14189)) ([`fdcf2da32`](https://github.com/carbon-design-system/carbon/commit/fdcf2da32))
-   chore(deps): bump semver in /packages/icons-vue/examples/vue-cli ([#&#8203;14187](https://github.com/carbon-design-system/carbon/issues/14187)) ([`0dbc85413`](https://github.com/carbon-design-system/carbon/commit/0dbc85413))

##### `@carbon/layout@11.17.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/motion@11.14.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/pictograms@12.20.0`

##### New features :rocket:

-   feat(Pictograms): new pictograms and new category ([#&#8203;14246](https://github.com/carbon-design-system/carbon/issues/14246)) ([`9e8605ac3`](https://github.com/carbon-design-system/carbon/commit/9e8605ac3))
-   feat(Pictograms): updated yaml for watsonx ([#&#8203;14204](https://github.com/carbon-design-system/carbon/issues/14204)) ([`3a350eb58`](https://github.com/carbon-design-system/carbon/commit/3a350eb58))

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/pictograms-react@11.46.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): bump semver ([#&#8203;14178](https://github.com/carbon-design-system/carbon/issues/14178)) ([`5beb2b95b`](https://github.com/carbon-design-system/carbon/commit/5beb2b95b))

##### `@carbon/react@1.34.0`

##### New features :rocket:

-   feat(tabs): support contextual layout tokens (size & density) ([#&#8203;13951](https://github.com/carbon-design-system/carbon/issues/13951)) ([`149d34df3`](https://github.com/carbon-design-system/carbon/commit/149d34df3))

##### Bug fixes :bug:

-   fix(textarea): persist onChange for React 16 ([#&#8203;14249](https://github.com/carbon-design-system/carbon/issues/14249)) ([`eac9de1b1`](https://github.com/carbon-design-system/carbon/commit/eac9de1b1))
-   fix(deps): update dependency eslint-plugin-jsdoc to v46 ([#&#8203;14228](https://github.com/carbon-design-system/carbon/issues/14228)) ([`f1fa642bd`](https://github.com/carbon-design-system/carbon/commit/f1fa642bd))
-   fix(Toggle): make onClick optional in TypeScript interface ([#&#8203;14226](https://github.com/carbon-design-system/carbon/issues/14226)) ([`77157e24a`](https://github.com/carbon-design-system/carbon/commit/77157e24a))
-   fix(storybook): fix issue with text rendering in storybook props table ([#&#8203;14207](https://github.com/carbon-design-system/carbon/issues/14207)) ([`f2aa20811`](https://github.com/carbon-design-system/carbon/commit/f2aa20811))
-   fix(DataTable): fix a11y issues with selection variant ([#&#8203;14206](https://github.com/carbon-design-system/carbon/issues/14206)) ([`a41006915`](https://github.com/carbon-design-system/carbon/commit/a41006915))
-   fix(button): add min-height and bottom padding for wrapping ([#&#8203;14193](https://github.com/carbon-design-system/carbon/issues/14193)) ([`5391d96f2`](https://github.com/carbon-design-system/carbon/commit/5391d96f2))
-   fix(ContainedList): fix a11y error in story ([#&#8203;14192](https://github.com/carbon-design-system/carbon/issues/14192)) ([`a6962034f`](https://github.com/carbon-design-system/carbon/commit/a6962034f))
-   fix: fixed VO and JAWS problem in FF and Safari ([#&#8203;14156](https://github.com/carbon-design-system/carbon/issues/14156)) ([`ef1336aba`](https://github.com/carbon-design-system/carbon/commit/ef1336aba))
-   fix(Search): close expandable search on escape key ([#&#8203;14076](https://github.com/carbon-design-system/carbon/issues/14076)) ([`dd3698c00`](https://github.com/carbon-design-system/carbon/commit/dd3698c00))
-   fix(docs): use name export for Button ([#&#8203;14194](https://github.com/carbon-design-system/carbon/issues/14194)) ([`bd8136dbe`](https://github.com/carbon-design-system/carbon/commit/bd8136dbe))
-   fix(storybook): update devtools toolbar for storybook 7 ([#&#8203;14179](https://github.com/carbon-design-system/carbon/issues/14179)) ([`a72388eb8`](https://github.com/carbon-design-system/carbon/commit/a72388eb8))
-   fix(ComboButton): import IconButton before Button ([#&#8203;14155](https://github.com/carbon-design-system/carbon/issues/14155)) ([`f63a688df`](https://github.com/carbon-design-system/carbon/commit/f63a688df))
-   fix(useid): guard against useId not being exported ([#&#8203;14153](https://github.com/carbon-design-system/carbon/issues/14153)) ([`d594e9bf3`](https://github.com/carbon-design-system/carbon/commit/d594e9bf3))

##### Documentation :memo:

-   docs(datatable): add a disabled button to the batch action example story ([#&#8203;14218](https://github.com/carbon-design-system/carbon/issues/14218)) ([`3be26a735`](https://github.com/carbon-design-system/carbon/commit/3be26a735))

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(deps): bump word-wrap ([#&#8203;14247](https://github.com/carbon-design-system/carbon/issues/14247)) ([`ca2098e55`](https://github.com/carbon-design-system/carbon/commit/ca2098e55))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(a11y): update to latest ruleset ([#&#8203;14171](https://github.com/carbon-design-system/carbon/issues/14171)) ([`1ccdb5c88`](https://github.com/carbon-design-system/carbon/commit/1ccdb5c88))
-   chore(deps): bump semver in /packages/react/examples/codesandbox ([#&#8203;14175](https://github.com/carbon-design-system/carbon/issues/14175)) ([`c0aa65a61`](https://github.com/carbon-design-system/carbon/commit/c0aa65a61))
-   chore(deps): bump semver in /packages/react/examples/custom-css-prefix ([#&#8203;14188](https://github.com/carbon-design-system/carbon/issues/14188)) ([`84be67264`](https://github.com/carbon-design-system/carbon/commit/84be67264))
-   chore(deps): bump semver ([#&#8203;14176](https://github.com/carbon-design-system/carbon/issues/14176)) ([`35ebd7ca9`](https://github.com/carbon-design-system/carbon/commit/35ebd7ca9))

##### `@carbon/styles@1.34.0`

##### New features :rocket:

-   feat(tabs): support contextual layout tokens (size & density) ([#&#8203;13951](https://github.com/carbon-design-system/carbon/issues/13951)) ([`149d34df3`](https://github.com/carbon-design-system/carbon/commit/149d34df3))

##### Bug fixes :bug:

-   fix(Popover): fix safari styling bug with Popover ([#&#8203;14221](https://github.com/carbon-design-system/carbon/issues/14221)) ([`cdff026ee`](https://github.com/carbon-design-system/carbon/commit/cdff026ee))
-   fix(Toggletip): update type token ([#&#8203;14202](https://github.com/carbon-design-system/carbon/issues/14202)) ([`2e55184cf`](https://github.com/carbon-design-system/carbon/commit/2e55184cf))
-   fix(button): add min-height and bottom padding for wrapping ([#&#8203;14193](https://github.com/carbon-design-system/carbon/issues/14193)) ([`5391d96f2`](https://github.com/carbon-design-system/carbon/commit/5391d96f2))
-   fix(tile): prevent padding change on hover when disabled ([#&#8203;14196](https://github.com/carbon-design-system/carbon/issues/14196)) ([`f20a3a4cc`](https://github.com/carbon-design-system/carbon/commit/f20a3a4cc))
-   fix(Search): close expandable search on escape key ([#&#8203;14076](https://github.com/carbon-design-system/carbon/issues/14076)) ([`dd3698c00`](https://github.com/carbon-design-system/carbon/commit/dd3698c00))
-   fix(treeview): xs size variant ([#&#8203;14157](https://github.com/carbon-design-system/carbon/issues/14157)) ([`d6b9b7c3b`](https://github.com/carbon-design-system/carbon/commit/d6b9b7c3b))

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/themes@11.22.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): bump semver in /packages/themes/examples/sass-modules ([#&#8203;14181](https://github.com/carbon-design-system/carbon/issues/14181)) ([`bc03553f8`](https://github.com/carbon-design-system/carbon/commit/bc03553f8))

##### `@carbon/type@11.21.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/upgrade@11.10.0`

##### New features :rocket:

-   feat(upgrade): `update-carbon-icons-react-import-to-carbon-react` codemod ([#&#8203;14217](https://github.com/carbon-design-system/carbon/issues/14217)) ([`e0382e6d0`](https://github.com/carbon-design-system/carbon/commit/e0382e6d0))

##### Bug fixes :bug:

-   fix(deps): update dependency eslint-plugin-jsdoc to v46 ([#&#8203;14228](https://github.com/carbon-design-system/carbon/issues/14228)) ([`f1fa642bd`](https://github.com/carbon-design-system/carbon/commit/f1fa642bd))

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): update dependency memfs to v4 ([#&#8203;14129](https://github.com/carbon-design-system/carbon/issues/14129)) ([`221277016`](https://github.com/carbon-design-system/carbon/commit/221277016))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/carbon-design-system/carbon-for-ibm-dotcom).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMzUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEzNS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

* chore(deps): update dependency sass to ~1.70.0 (#11427)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [sass](https://github.com/sass/dart-sass) | [`~1.69.5` -> `~1.70.0`](https://renovatebot.com/diffs/npm/sass/1.69.5/1.70.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/sass/1.70.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/sass/1.70.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/sass/1.69.5/1.70.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/sass/1.69.5/1.70.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>sass/dart-sass (sass)</summary>

### [`v1.70.0`](https://github.com/sass/dart-sa…
kennylam added a commit that referenced this pull request Sep 20, 2024
* feat(storybook): updated 2 component stories to v7 (#11362)

* chore(search): update search stories to sb v7

* chore(select): update select stories to sb v7

* chore(select): trim back select imports

* fix(select): use optional chaining on a @query property inside getter

* chore(select): fix case on readOnly

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* feat(tag/tooltip): cwc storybook controls (#11381)

* feat(storybook): updated 7 component stories to v7 (#11344)

* fix(loading): update story to v7

* fix(modal): update to v7

* fix(checkbox): update to v7

* fix(list): update to v7

* fix(inline-loading): updated to v7

* fix(data-table): update to v7

* chore(prettier): ran formatter

* fix(list): remove double mdxs

* fix(markdown): replaced description

* Update packages/carbon-web-components/src/components/list/ordered-list.stories.ts

* Update packages/carbon-web-components/src/components/list/ordered-list.stories.ts

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* feat(layer/dropdown/combo-box): update stories to Storybook v7 (#11318)

* feat(layer): updated to v7

* feat(dropdown): update story

* feat(combo-box): update to v7

* fix(stories): addressed feedback

* fix(markdown): replaced description

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* feat(notification): update story to Storybook v7 (#11331)

* chore(notification): rename story files for sb v7

* chore(notification): update notification stories to sb v7

* chore(storybook): update spacing on CDN JS markdown docs

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* feat(multi-select): update story to Storybook v7 (#11327)

* chore(multi-select): rename story files for sb v7

* chore(multi-select): update file-uploader to sb v7

* chore(multi-select): include sb layer components, remove unused import

* fix(multi-select): controls for disabled, readOnly and invalid

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* feat(content-switcher): update story to Storybook v7 (#11315)

* chore(content-switcher): update content-switcher to sb v7

* fix(content-switcher): add imports for content-switcher dependencies

* fix(content-switcher): fix css selector for icon only styles

* fix(content-switcher): restore the size options

* chore(content-switcher): include storybook layers components

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* chore(breadcrumb): finish updating breadcrumb to sb v7 (#11310)

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* feat(accordion): update story to Storybook v7 (#11306)

* chore(accordion): first pass at updating accordion for sb v7

* chore(accordion): finish updating accordion to sb v7

* chore(accordion): tidy up excess import

---------

Co-authored-by: Ignacio Becerra <i1becerr@ucsd.edu>

* feat(date-picker): update story to Storybook v7 (#11276)

* chore(date-picker): rename for sb v7

* chore(date-picker): convert from knobs to controls

* chore(date-picker): remove storyDocs parameter, causing local failures

* chore(date-picker): add date picker descriptions from React storybook

* chore(date-picker): include storybook layers components

* chore(date-picker): add back actions in sb v7 format

---------

Co-authored-by: Ignacio Becerra <i1becerr@ucsd.edu>

* feat(code-snippet): update story to Storybook v7 (#11312)

* chore(code-snippet): update code-snippet to sb v7

* chore(code-snippet): include storybook layers components

* chore(code-snippet): include storybook layers components

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>
Co-authored-by: Ignacio Becerra <i1becerr@ucsd.edu>

* feat(number-input): update story to Storybook v7 (#11336)

* chore(number-input): update number-input stories to sb v7

* chore(number-input): fix case on readOnly

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* fix(tooltip): tooltip persists issue (#11324)

* fix(tooltip): tooltip persists issue

* chore(prettier): format code

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* chore(icon-button): update form-group stories to sb v7 (#11388)

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* feat(icon-button): update story to Storybook v7 (#11387)

* chore(icon-button): update icon-button stories to sb v7

* fix(icon-button): missing default label

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* fix(date-picker): range plugin on import (#11410)

### Related Ticket(s)

Closes #none

### Description

fixes old `on` import and changes it local import


<!-- React and Web Component deploy previews are enabled by default. -->
<!-- To enable additional available deploy previews, apply the following -->
<!-- labels for the corresponding package: -->
<!-- *** "test: e2e": Codesandbox examples and e2e integration tests -->
<!-- *** "package: services": Services -->
<!-- *** "package: utilities": Utilities -->
<!-- *** "RTL": React / Web Components (RTL) -->
<!-- *** "feature flag": React / Web Components (experimental) -->

* chore(version): patch 2.1.2

* Update packages/carbon-web-components/src/components/slider/slider.scss

Co-authored-by: Ariella Gilmore <ariellalgilmore@gmail.com>

* feat(slug): update story to Storybook v7 (#11384)

* chore(slug): update slug stories to sb v7

* chore(slug): update slug example stories to sb v7

* chore(slug): update slug data table stories to sb v7

* chore(slug): update slug form stories to sb v7

* feat(toggle/toggletip): cwc controls (#11395)

* feat(toggle/toggletip): cwc controls

* fix(toggletip): open prop

* fix(toggletip): body text font

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* feat(storybook): updated 5 components to v7 (#11397)

* feat(structured-list): update to v7

* feat(tabs): update to v7

* feat(ui-shell): update to v7

* feat(text-input): update to v7

* feat(textarea): update to v7

* fix(prettier): ran prettier

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* feat(pagination): update story to Storybook v7 (#11401)

* chore(pagination): update pagination stories to sb v7

* fix(pagination): fix backward-text control

* fix(pagination): specify page-input-disabled property as boolean

---------

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* chore(radio-button): update radio-button stories to sb v7 (#11361)

Co-authored-by: kennylam <909118+kennylam@users.noreply.github.com>

* fix(number-input): fix incorrect controls border for readonly mode (#11402)

### Related Ticket(s)

Closes #11390 

### Description

Fixed incorrect controls styles for readonly number input

### Changelog

**New**

- added some styles

* chore(deps): update dependency @carbon/icons to v11.33.0 (#11406)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@carbon/icons](https://github.com/carbon-design-system/carbon) ([source](https://github.com/carbon-design-system/carbon/tree/HEAD/packages/icons)) | [`11.31.0` -> `11.33.0`](https://renovatebot.com/diffs/npm/@carbon%2ficons/11.31.0/11.33.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@carbon%2ficons/11.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@carbon%2ficons/11.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@carbon%2ficons/11.31.0/11.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@carbon%2ficons/11.31.0/11.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>carbon-design-system/carbon (@&#8203;carbon/icons)</summary>

### [`v11.33.0`](https://github.com/carbon-design-system/carbon/releases/tag/v11.33.0)

[Compare Source](https://github.com/carbon-design-system/carbon/compare/v11.32.0...v11.33.0)

##### `carbon-components@11.33.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `carbon-components-react@8.33.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/cli@11.12.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/cli-reporter@10.7.0`

##### Bug fixes :bug:

-   fix(cli-reporter): fix undefined \_style ([#&#8203;14018](https://github.com/carbon-design-system/carbon/issues/14018)) ([`86eb04892`](https://github.com/carbon-design-system/carbon/commit/86eb04892))

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/colors@11.17.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/elements@11.25.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/grid@11.16.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(deps): bump semver in /packages/grid/examples/css-grid ([#&#8203;14142](https://github.com/carbon-design-system/carbon/issues/14142)) ([`e416444cf`](https://github.com/carbon-design-system/carbon/commit/e416444cf))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/icon-helpers@10.42.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/icons@11.22.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))
-   chore(deps): bump semver in /packages/icons/examples/preview ([#&#8203;14079](https://github.com/carbon-design-system/carbon/issues/14079)) ([`395522939`](https://github.com/carbon-design-system/carbon/commit/395522939))

##### `@carbon/icons-react@11.22.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/icons-vue@10.71.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/layout@11.16.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(deps): bump semver in /packages/layout/examples/preview ([#&#8203;14074](https://github.com/carbon-design-system/carbon/issues/14074)) ([`e11af98b5`](https://github.com/carbon-design-system/carbon/commit/e11af98b5))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/motion@11.13.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/pictograms@12.19.0`

##### New features :rocket:

-   feat(Pictograms): pictogram-master-file-june ([#&#8203;14094](https://github.com/carbon-design-system/carbon/issues/14094)) ([`c1ffb84fd`](https://github.com/carbon-design-system/carbon/commit/c1ffb84fd))
-   feat(Pictograms): june pictogram additions ([#&#8203;14067](https://github.com/carbon-design-system/carbon/issues/14067)) ([`2ee33d79a`](https://github.com/carbon-design-system/carbon/commit/2ee33d79a))

##### Bug fixes :bug:

-   fix(pictograms): remove extra category for app--modernization ([#&#8203;14113](https://github.com/carbon-design-system/carbon/issues/14113)) ([`34c358495`](https://github.com/carbon-design-system/carbon/commit/34c358495))

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))
-   chore(deps): bump semver in /packages/pictograms/examples/preview ([#&#8203;14071](https://github.com/carbon-design-system/carbon/issues/14071)) ([`524aba517`](https://github.com/carbon-design-system/carbon/commit/524aba517))

##### `@carbon/pictograms-react@11.45.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/react@1.33.0`

##### New features :rocket:

-   feat(Tag): add as prop to Tag to specify wrapping element ([#&#8203;13959](https://github.com/carbon-design-system/carbon/issues/13959)) ([#&#8203;14112](https://github.com/carbon-design-system/carbon/issues/14112)) ([`fcdecdb53`](https://github.com/carbon-design-system/carbon/commit/fcdecdb53))
-   feat(Toggle): adds typescript typings to Toggle ([#&#8203;14128](https://github.com/carbon-design-system/carbon/issues/14128)) ([`90a6610e0`](https://github.com/carbon-design-system/carbon/commit/90a6610e0))
-   feat: convert HeaderName to tsx and update snapshot ([#&#8203;14087](https://github.com/carbon-design-system/carbon/issues/14087)) ([`82d837b83`](https://github.com/carbon-design-system/carbon/commit/82d837b83))
-   feat: added new react useid hook and tests ([#&#8203;14044](https://github.com/carbon-design-system/carbon/issues/14044)) ([`af94b4fbc`](https://github.com/carbon-design-system/carbon/commit/af94b4fbc))

##### Bug fixes :bug:

-   fix(DataTableSkeleton): adjust TypeScript types to match behavior ([#&#8203;14114](https://github.com/carbon-design-system/carbon/issues/14114)) ([`84cdca4e9`](https://github.com/carbon-design-system/carbon/commit/84cdca4e9))
-   fix(UIShell): various fixes to avoid null pointer assertions ([#&#8203;14144](https://github.com/carbon-design-system/carbon/issues/14144)) ([`330b4bf21`](https://github.com/carbon-design-system/carbon/commit/330b4bf21))
-   fix: update contained list search placeholder ([#&#8203;14105](https://github.com/carbon-design-system/carbon/issues/14105)) ([`f7b7b4d97`](https://github.com/carbon-design-system/carbon/commit/f7b7b4d97))
-   fix: storybook sort function ([#&#8203;14125](https://github.com/carbon-design-system/carbon/issues/14125)) ([`4b88b7f9c`](https://github.com/carbon-design-system/carbon/commit/4b88b7f9c))
-   fix(DataTable): check for undefined document obj ([#&#8203;14115](https://github.com/carbon-design-system/carbon/issues/14115)) ([`04add82e0`](https://github.com/carbon-design-system/carbon/commit/04add82e0))
-   fix: dropdown contrast focus styles ([#&#8203;14017](https://github.com/carbon-design-system/carbon/issues/14017)) ([`a460b2878`](https://github.com/carbon-design-system/carbon/commit/a460b2878))
-   fix(UIShell): refactor displayName check ([#&#8203;14097](https://github.com/carbon-design-system/carbon/issues/14097)) ([`0a317bfa2`](https://github.com/carbon-design-system/carbon/commit/0a317bfa2))
-   fix(InlineCheckbox): guard from setting indeterminate on null ref ([#&#8203;14070](https://github.com/carbon-design-system/carbon/issues/14070)) ([`9ed61f7e3`](https://github.com/carbon-design-system/carbon/commit/9ed61f7e3))
-   fix(Datepicker): fix types ([#&#8203;14080](https://github.com/carbon-design-system/carbon/issues/14080)) ([`e921ee1d2`](https://github.com/carbon-design-system/carbon/commit/e921ee1d2))
-   fix: make ActionableNotification `subtitle` proptypes node to allow objects ([#&#8203;13821](https://github.com/carbon-design-system/carbon/issues/13821)) ([`c3ea7c86a`](https://github.com/carbon-design-system/carbon/commit/c3ea7c86a))

##### Documentation :memo:

-   docs(readme): include link to sass FAQ ([#&#8203;14123](https://github.com/carbon-design-system/carbon/issues/14123)) ([`d94e75359`](https://github.com/carbon-design-system/carbon/commit/d94e75359))
-   docs(notification): clarify ActionableNotification usage ([#&#8203;14077](https://github.com/carbon-design-system/carbon/issues/14077)) ([`4ec58e7b2`](https://github.com/carbon-design-system/carbon/commit/4ec58e7b2))

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))
-   chore: Types for FileUploader, FileUploaderButton, FileUploaderDropContainer, FileUploaderItem, FileUploaderSkeleton, Filename, Upload and ButtonSkeleton ([#&#8203;13992](https://github.com/carbon-design-system/carbon/issues/13992)) ([`033ecc706`](https://github.com/carbon-design-system/carbon/commit/033ecc706))

##### `@carbon/styles@1.33.0`

##### Bug fixes :bug:

-   fix(peerDependencies): make sass optional for styles - Solves [@&#8203;carbon/charts](https://github.com/carbon/charts) example issue ([#&#8203;14131](https://github.com/carbon-design-system/carbon/issues/14131)) ([`7330045c6`](https://github.com/carbon-design-system/carbon/commit/7330045c6))
-   fix: dropdown contrast focus styles ([#&#8203;14017](https://github.com/carbon-design-system/carbon/issues/14017)) ([`a460b2878`](https://github.com/carbon-design-system/carbon/commit/a460b2878))

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/themes@11.21.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))
-   chore(deps): bump semver in /packages/themes/examples/preview-v10 ([#&#8203;14073](https://github.com/carbon-design-system/carbon/issues/14073)) ([`eb689371e`](https://github.com/carbon-design-system/carbon/commit/eb689371e))
-   chore(deps): bump semver in /packages/themes/examples/preview ([#&#8203;14068](https://github.com/carbon-design-system/carbon/issues/14068)) ([`1c25d282f`](https://github.com/carbon-design-system/carbon/commit/1c25d282f))

##### `@carbon/type@11.20.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))
-   chore(deps): bump semver in /packages/type/examples/preview ([#&#8203;14072](https://github.com/carbon-design-system/carbon/issues/14072)) ([`c950ddfba`](https://github.com/carbon-design-system/carbon/commit/c950ddfba))

##### `@carbon/upgrade@11.9.0`

##### Bug fixes :bug:

-   fix(upgrade): add size prop codemods to upgrade package ([#&#8203;14089](https://github.com/carbon-design-system/carbon/issues/14089)) ([`90da4b9da`](https://github.com/carbon-design-system/carbon/commit/90da4b9da))

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

### [`v11.32.0`](https://github.com/carbon-design-system/carbon/releases/tag/v11.32.0)

[Compare Source](https://github.com/carbon-design-system/carbon/compare/v11.31.0...v11.32.0)

##### `eslint-config-carbon@3.6.0`

##### Housekeeping :house:

-   chore(release): v11.32.0 ([#&#8203;14066](https://github.com/carbon-design-system/carbon/issues/14066)) ([`507ddae30`](https://github.com/carbon-design-system/carbon/commit/507ddae30))
-   chore(release): v11.32.0-rc.0 ([#&#8203;14038](https://github.com/carbon-design-system/carbon/issues/14038)) ([`fe40fbf42`](https://github.com/carbon-design-system/carbon/commit/fe40fbf42))

##### `stylelint-config-carbon@1.14.0`

##### Housekeeping :house:

-   chore(deps): update dependency stylelint to v15 ([#&#8203;13966](https://github.com/carbon-design-system/carbon/issues/13966)) ([`b28d9b792`](https://github.com/carbon-design-system/carbon/commit/b28d9b792))

##### `carbon-components@11.32.0`

##### Bug fixes :bug:

-   fix(contextual-layout-tokens): support individual component style imports ([#&#8203;13984](https://github.com/carbon-design-system/carbon/issues/13984)) ([`009bb31a5`](https://github.com/carbon-design-system/carbon/commit/009bb31a5))

##### Housekeeping :house:

-   chore(release): v11.32.0 ([#&#8203;14066](https://github.com/carbon-design-system/carbon/issues/14066)) ([`507ddae30`](https://github.com/carbon-design-system/carbon/commit/507ddae30))
-   chore(release): v11.32.0-rc.0 ([#&#8203;14038](https://github.com/carbon-design-system/carbon/issues/14038)) ([`fe40fbf42`](https://github.com/carbon-design-system/carbon/commit/fe40fbf42))

##### `carbon-components-react@8.32.0`

##### Bug fixes :bug:

-   fix(contextual-layout-tokens): support individual component style imports ([#&#8203;13984](https://github.com/carbon-design-system/carbon/issues/13984)) ([`009bb31a5`](https://github.com/carbon-design-system/carbon/commit/009bb31a5))

##### Housekeeping :house:

-   chore(release): v11.32.0 ([#&#8203;14066](https://github.com/carbon-design-system/carbon/issues/14066)) ([`507ddae30`](https://github.com/carbon-design-system/carbon/commit/507ddae30))
-   chore(release): v11.32.0-rc.0 ([#&#8203;14038](https://github.com/carbon-design-system/carbon/issues/14038)) ([`fe40fbf42`](https://github.com/carbon-design-system/carbon/commit/fe40fbf42))

##### `@carbon/cli@11.11.0`

##### Housekeeping :house:

-   chore(package): remove sketch ([#&#8203;14010](https://github.com/carbon-design-system/carbon/issues/14010)) ([`fd00277f8`](https://github.com/carbon-design-system/carbon/commit/fd00277f8))

##### `@carbon/react@1.32.0`

##### New features :rocket:

-   feat(Tabs): Contained tabs on the grid ([#&#8203;13927](https://github.com/carbon-design-system/carbon/issues/13927)) ([`11c70f3dc`](https://github.com/carbon-design-system/carbon/commit/11c70f3dc))
-   feat(toggle): fixes disabled issue and adds test ([#&#8203;13958](https://github.com/carbon-design-system/carbon/issues/13958)) ([`5a76564f1`](https://github.com/carbon-design-system/carbon/commit/5a76564f1))
-   feat: added types for Accordion, AccordionItem, AccordionSkeleton, SkeletonText ([#&#8203;13875](https://github.com/carbon-design-system/carbon/issues/13875)) ([`8bc7bfce4`](https://github.com/carbon-design-system/carbon/commit/8bc7bfce4))

##### Bug fixes :bug:

-   fix(Link): ensure target is passed down to anchor element ([#&#8203;14041](https://github.com/carbon-design-system/carbon/issues/14041)) ([`f40998c0b`](https://github.com/carbon-design-system/carbon/commit/f40998c0b))
-   fix(Datepicker): fix calendar cannot close issue ([#&#8203;14028](https://github.com/carbon-design-system/carbon/issues/14028)) ([`5f04156d5`](https://github.com/carbon-design-system/carbon/commit/5f04156d5))
-   fix(ToggleSkeleton): fix issue with ToggleSkeleton style ([#&#8203;13963](https://github.com/carbon-design-system/carbon/issues/13963)) ([`7de2ef39f`](https://github.com/carbon-design-system/carbon/commit/7de2ef39f))
-   fix(sass): remove colons from classnames ([#&#8203;14022](https://github.com/carbon-design-system/carbon/issues/14022)) ([`b8422a1d4`](https://github.com/carbon-design-system/carbon/commit/b8422a1d4))
-   fix(contained-list): explicitly set "list" role ([#&#8203;14019](https://github.com/carbon-design-system/carbon/issues/14019)) ([`b440e5fb9`](https://github.com/carbon-design-system/carbon/commit/b440e5fb9))
-   fix(UIShell): fix hover issue, reasonable default for enter/exit delay ([#&#8203;13961](https://github.com/carbon-design-system/carbon/issues/13961)) ([`7efc2f3c4`](https://github.com/carbon-design-system/carbon/commit/7efc2f3c4))
-   fix: dropdown-firefox-voice-over ([#&#8203;13994](https://github.com/carbon-design-system/carbon/issues/13994)) ([`d6701c0b4`](https://github.com/carbon-design-system/carbon/commit/d6701c0b4))
-   fix(contextual-layout-tokens): support individual component style imports ([#&#8203;13984](https://github.com/carbon-design-system/carbon/issues/13984)) ([`009bb31a5`](https://github.com/carbon-design-system/carbon/commit/009bb31a5))
-   fix(DataTable): mock Canvas and remove dependency ([#&#8203;13972](https://github.com/carbon-design-system/carbon/issues/13972)) ([`67c7aa7b6`](https://github.com/carbon-design-system/carbon/commit/67c7aa7b6))

##### Housekeeping :house:

-   chore(release): v11.32.0 ([#&#8203;14066](https://github.com/carbon-design-system/carbon/issues/14066)) ([`507ddae30`](https://github.com/carbon-design-system/carbon/commit/507ddae30))
-   chore(release): v11.32.0-rc.0 ([#&#8203;14038](https://github.com/carbon-design-system/carbon/issues/14038)) ([`fe40fbf42`](https://github.com/carbon-design-system/carbon/commit/fe40fbf42))
-   chore: added types to ControlledPasswordInput ([#&#8203;13995](https://github.com/carbon-design-system/carbon/issues/13995)) ([`8f283a42f`](https://github.com/carbon-design-system/carbon/commit/8f283a42f))
-   refactor(Button): convert Button component family to TypeScript ([#&#8203;13811](https://github.com/carbon-design-system/carbon/issues/13811)) ([`04644a9ca`](https://github.com/carbon-design-system/carbon/commit/04644a9ca))
-   chore: typescript type for TableContainer props ([#&#8203;13983](https://github.com/carbon-design-system/carbon/issues/13983)) ([`47fc5c8c0`](https://github.com/carbon-design-system/carbon/commit/47fc5c8c0))
-   chore: added types for formgroup component ([#&#8203;13988](https://github.com/carbon-design-system/carbon/issues/13988)) ([`99189c69d`](https://github.com/carbon-design-system/carbon/commit/99189c69d))
-   chore: typescript types for props in TableBody ([#&#8203;13982](https://github.com/carbon-design-system/carbon/issues/13982)) ([`e7800e71a`](https://github.com/carbon-design-system/carbon/commit/e7800e71a))
-   chore: types for TableExpandHeader props ([#&#8203;13985](https://github.com/carbon-design-system/carbon/issues/13985)) ([`81e2fb9d6`](https://github.com/carbon-design-system/carbon/commit/81e2fb9d6))

##### `@carbon/styles@1.32.0`

##### New features :rocket:

-   feat(Tabs): Contained tabs on the grid ([#&#8203;13927](https://github.com/carbon-design-system/carbon/issues/13927)) ([`11c70f3dc`](https://github.com/carbon-design-system/carbon/commit/11c70f3dc))
-   feat(toggle): fixes disabled issue and adds test ([#&#8203;13958](https://github.com/carbon-design-system/carbon/issues/13958)) ([`5a76564f1`](https://github.com/carbon-design-system/carbon/commit/5a76564f1))
-   feat(tile): support contextual layout tokens (density) ([#&#8203;13937](https://github.com/carbon-design-system/carbon/issues/13937)) ([`b6f1a88a8`](https://github.com/carbon-design-system/carbon/commit/b6f1a88a8))

##### Bug fixes :bug:

-   fix(ListBoxMenuItem): ensure border-subtle renders correct value ([#&#8203;13879](https://github.com/carbon-design-system/carbon/issues/13879)) ([`99ffdd1e1`](https://github.com/carbon-design-system/carbon/commit/99ffdd1e1))
-   fix(ToggleSkeleton): fix issue with ToggleSkeleton style ([#&#8203;13963](https://github.com/carbon-design-system/carbon/issues/13963)) ([`7de2ef39f`](https://github.com/carbon-design-system/carbon/commit/7de2ef39f))
-   fix(sass): remove colons from classnames ([#&#8203;14022](https://github.com/carbon-design-system/carbon/issues/14022)) ([`b8422a1d4`](https://github.com/carbon-design-system/carbon/commit/b8422a1d4))
-   fix(DataTable): fix padding issue with batch actions ([#&#8203;14024](https://github.com/carbon-design-system/carbon/issues/14024)) ([`1234cfd10`](https://github.com/carbon-design-system/carbon/commit/1234cfd10))
-   fix(UIShell): fix hover issue, reasonable default for enter/exit delay ([#&#8203;13961](https://github.com/carbon-design-system/carbon/issues/13961)) ([`7efc2f3c4`](https://github.com/carbon-design-system/carbon/commit/7efc2f3c4))
-   fix(contextual-layout-tokens): support individual component style imports ([#&#8203;13984](https://github.com/carbon-design-system/carbon/issues/13984)) ([`009bb31a5`](https://github.com/carbon-design-system/carbon/commit/009bb31a5))
-   fix(ActionableNotification): fix padding issue with button ([#&#8203;13971](https://github.com/carbon-design-system/carbon/issues/13971)) ([`dab66af98`](https://github.com/carbon-design-system/carbon/commit/dab66af98))

##### Housekeeping :house:

-   chore(release): v11.32.0 ([#&#8203;14066](https://github.com/carbon-design-system/carbon/issues/14066)) ([`507ddae30`](https://github.com/carbon-design-system/carbon/commit/507ddae30))
-   chore(release): v11.32.0-rc.0 ([#&#8203;14038](https://github.com/carbon-design-system/carbon/issues/14038)) ([`fe40fbf42`](https://github.com/carbon-design-system/carbon/commit/fe40fbf42))
-   chore(deps): update dependency stylelint to v15 ([#&#8203;13966](https://github.com/carbon-design-system/carbon/issues/13966)) ([`b28d9b792`](https://github.com/carbon-design-system/carbon/commit/b28d9b792))

##### `@carbon/upgrade@11.8.0`

##### Housekeeping :house:

-   chore(release): v11.32.0 ([#&#8203;14066](https://github.com/carbon-design-system/carbon/issues/14066)) ([`507ddae30`](https://github.com/carbon-design-system/carbon/commit/507ddae30))
-   chore(release): v11.32.0-rc.0 ([#&#8203;14038](https://github.com/carbon-design-system/carbon/issues/14038)) ([`fe40fbf42`](https://github.com/carbon-design-system/carbon/commit/fe40fbf42))
-   chore(deps): update dependency esbuild to ^0.18.0 ([#&#8203;14029](https://github.com/carbon-design-system/carbon/issues/14029)) ([`40b964809`](https://github.com/carbon-design-system/carbon/commit/40b964809))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/carbon-design-system/carbon-for-ibm-dotcom).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

* fix(select): selected item is not showing for ios/ipados (#11214)

### Related Ticket(s)

Closes https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues/10052
[Jira ticket](https://jsw.ibm.com/browse/ADCMS-4083)

### Description

Fix for Labeles not appearing on Safari / IOS

### Changelog

**Changed**

 - How labels on the select component are handled

---
Opened to replace https://github.com/carbon-design-system/carbon-for-ibm-dotcom/pull/11080

* chore(package): remove openssl-legacy flag from package.json (#11417)

### Description

Removes `openssl-legacy-provider` flag from `package.json` commands. Since `yarn.lock` has been cleaned this is no longer necessary.

### Changelog

**New**

- {{new thing}}

**Changed**

- {{changed thing}}

**Removed**

- `openssl-legacy-provider` flag from `package.json` commands

<!-- React and Web Component deploy previews are enabled by default. -->
<!-- To enable additional available deploy previews, apply the following -->
<!-- labels for the corresponding package: -->
<!-- *** "test: e2e": Codesandbox examples and e2e integration tests -->
<!-- *** "package: services": Services -->
<!-- *** "package: utilities": Utilities -->
<!-- *** "RTL": React / Web Components (RTL) -->
<!-- *** "feature flag": React / Web Components (experimental) -->

* deps(babel): update `@babel-traverse` to latest (#11419)

### Description

This updates `@babel/traverse` to resolve a critical vulnerability: https://github.com/carbon-design-system/carbon-for-ibm-dotcom/security/dependabot/224.

### Changelog

**Changed**

- update `@babel/traverse` to latest version

<!-- React and Web Component deploy previews are enabled by default. -->
<!-- To enable additional available deploy previews, apply the following -->
<!-- labels for the corresponding package: -->
<!-- *** "test: e2e": Codesandbox examples and e2e integration tests -->
<!-- *** "package: services": Services -->
<!-- *** "package: utilities": Utilities -->
<!-- *** "RTL": React / Web Components (RTL) -->
<!-- *** "feature flag": React / Web Components (experimental) -->

* chore(release): publish

 - @carbon/web-components@2.2.0-rc.0
 - @carbon/ibmdotcom-services@2.2.0-rc.0
 - @carbon/ibmdotcom-styles@2.2.0-rc.0
 - @carbon/ibmdotcom-utilities@2.2.0-rc.0
 - @carbon/ibmdotcom-web-components@2.2.0-rc.0

* chore(deps): update dependency @carbon/icons to v11.34.0 (#11422)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@carbon/icons](https://github.com/carbon-design-system/carbon) ([source](https://github.com/carbon-design-system/carbon/tree/HEAD/packages/icons)) | [`11.33.0` -> `11.34.0`](https://renovatebot.com/diffs/npm/@carbon%2ficons/11.33.0/11.34.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@carbon%2ficons/11.34.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@carbon%2ficons/11.34.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@carbon%2ficons/11.33.0/11.34.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@carbon%2ficons/11.33.0/11.34.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>carbon-design-system/carbon (@&#8203;carbon/icons)</summary>

### [`v11.34.0`](https://github.com/carbon-design-system/carbon/releases/tag/v11.34.0)

[Compare Source](https://github.com/carbon-design-system/carbon/compare/v11.33.0...v11.34.0)

##### `eslint-config-carbon@3.7.0`

##### Bug fixes :bug:

-   fix(deps): update dependency eslint-plugin-jsdoc to v46 ([#&#8203;14228](https://github.com/carbon-design-system/carbon/issues/14228)) ([`f1fa642bd`](https://github.com/carbon-design-system/carbon/commit/f1fa642bd))
-   fix(deps): update dependency eslint-plugin-jest to v27 ([#&#8203;14167](https://github.com/carbon-design-system/carbon/issues/14167)) ([`d5209d1c2`](https://github.com/carbon-design-system/carbon/commit/d5209d1c2))
-   fix(deps): update dependency eslint-plugin-jest-dom to v5 ([#&#8203;14227](https://github.com/carbon-design-system/carbon/issues/14227)) ([`410931a62`](https://github.com/carbon-design-system/carbon/commit/410931a62))

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `carbon-components@11.34.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `carbon-components-react@8.34.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/cli@11.13.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps-dev): bump stylelint from 15.7.0 to 15.10.1 ([#&#8203;14162](https://github.com/carbon-design-system/carbon/issues/14162)) ([`f8a0c3450`](https://github.com/carbon-design-system/carbon/commit/f8a0c3450))
-   chore(deps): update dependency replace-in-file to v7 ([#&#8203;13922](https://github.com/carbon-design-system/carbon/issues/13922)) ([`1bf2d4f6c`](https://github.com/carbon-design-system/carbon/commit/1bf2d4f6c))

##### `@carbon/colors@11.18.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): bump semver in /packages/colors/examples/sass-modules ([#&#8203;14180](https://github.com/carbon-design-system/carbon/issues/14180)) ([`3ab83bbb9`](https://github.com/carbon-design-system/carbon/commit/3ab83bbb9))
-   chore(deps): bump semver in /packages/colors/examples/preview ([#&#8203;14182](https://github.com/carbon-design-system/carbon/issues/14182)) ([`443900bfe`](https://github.com/carbon-design-system/carbon/commit/443900bfe))

##### `@carbon/elements@11.26.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): update dependency replace-in-file to v7 ([#&#8203;13922](https://github.com/carbon-design-system/carbon/issues/13922)) ([`1bf2d4f6c`](https://github.com/carbon-design-system/carbon/commit/1bf2d4f6c))

##### `@carbon/grid@11.17.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/icon-helpers@10.43.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/icons@11.23.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/icons-react@11.23.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): bump semver in /packages/icons-react/examples/storybook ([#&#8203;14177](https://github.com/carbon-design-system/carbon/issues/14177)) ([`59f997f28`](https://github.com/carbon-design-system/carbon/commit/59f997f28))

##### `@carbon/icons-vue@10.72.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): bump semver in /packages/icons-vue/examples/storybook ([#&#8203;14189](https://github.com/carbon-design-system/carbon/issues/14189)) ([`fdcf2da32`](https://github.com/carbon-design-system/carbon/commit/fdcf2da32))
-   chore(deps): bump semver in /packages/icons-vue/examples/vue-cli ([#&#8203;14187](https://github.com/carbon-design-system/carbon/issues/14187)) ([`0dbc85413`](https://github.com/carbon-design-system/carbon/commit/0dbc85413))

##### `@carbon/layout@11.17.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/motion@11.14.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/pictograms@12.20.0`

##### New features :rocket:

-   feat(Pictograms): new pictograms and new category ([#&#8203;14246](https://github.com/carbon-design-system/carbon/issues/14246)) ([`9e8605ac3`](https://github.com/carbon-design-system/carbon/commit/9e8605ac3))
-   feat(Pictograms): updated yaml for watsonx ([#&#8203;14204](https://github.com/carbon-design-system/carbon/issues/14204)) ([`3a350eb58`](https://github.com/carbon-design-system/carbon/commit/3a350eb58))

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/pictograms-react@11.46.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): bump semver ([#&#8203;14178](https://github.com/carbon-design-system/carbon/issues/14178)) ([`5beb2b95b`](https://github.com/carbon-design-system/carbon/commit/5beb2b95b))

##### `@carbon/react@1.34.0`

##### New features :rocket:

-   feat(tabs): support contextual layout tokens (size & density) ([#&#8203;13951](https://github.com/carbon-design-system/carbon/issues/13951)) ([`149d34df3`](https://github.com/carbon-design-system/carbon/commit/149d34df3))

##### Bug fixes :bug:

-   fix(textarea): persist onChange for React 16 ([#&#8203;14249](https://github.com/carbon-design-system/carbon/issues/14249)) ([`eac9de1b1`](https://github.com/carbon-design-system/carbon/commit/eac9de1b1))
-   fix(deps): update dependency eslint-plugin-jsdoc to v46 ([#&#8203;14228](https://github.com/carbon-design-system/carbon/issues/14228)) ([`f1fa642bd`](https://github.com/carbon-design-system/carbon/commit/f1fa642bd))
-   fix(Toggle): make onClick optional in TypeScript interface ([#&#8203;14226](https://github.com/carbon-design-system/carbon/issues/14226)) ([`77157e24a`](https://github.com/carbon-design-system/carbon/commit/77157e24a))
-   fix(storybook): fix issue with text rendering in storybook props table ([#&#8203;14207](https://github.com/carbon-design-system/carbon/issues/14207)) ([`f2aa20811`](https://github.com/carbon-design-system/carbon/commit/f2aa20811))
-   fix(DataTable): fix a11y issues with selection variant ([#&#8203;14206](https://github.com/carbon-design-system/carbon/issues/14206)) ([`a41006915`](https://github.com/carbon-design-system/carbon/commit/a41006915))
-   fix(button): add min-height and bottom padding for wrapping ([#&#8203;14193](https://github.com/carbon-design-system/carbon/issues/14193)) ([`5391d96f2`](https://github.com/carbon-design-system/carbon/commit/5391d96f2))
-   fix(ContainedList): fix a11y error in story ([#&#8203;14192](https://github.com/carbon-design-system/carbon/issues/14192)) ([`a6962034f`](https://github.com/carbon-design-system/carbon/commit/a6962034f))
-   fix: fixed VO and JAWS problem in FF and Safari ([#&#8203;14156](https://github.com/carbon-design-system/carbon/issues/14156)) ([`ef1336aba`](https://github.com/carbon-design-system/carbon/commit/ef1336aba))
-   fix(Search): close expandable search on escape key ([#&#8203;14076](https://github.com/carbon-design-system/carbon/issues/14076)) ([`dd3698c00`](https://github.com/carbon-design-system/carbon/commit/dd3698c00))
-   fix(docs): use name export for Button ([#&#8203;14194](https://github.com/carbon-design-system/carbon/issues/14194)) ([`bd8136dbe`](https://github.com/carbon-design-system/carbon/commit/bd8136dbe))
-   fix(storybook): update devtools toolbar for storybook 7 ([#&#8203;14179](https://github.com/carbon-design-system/carbon/issues/14179)) ([`a72388eb8`](https://github.com/carbon-design-system/carbon/commit/a72388eb8))
-   fix(ComboButton): import IconButton before Button ([#&#8203;14155](https://github.com/carbon-design-system/carbon/issues/14155)) ([`f63a688df`](https://github.com/carbon-design-system/carbon/commit/f63a688df))
-   fix(useid): guard against useId not being exported ([#&#8203;14153](https://github.com/carbon-design-system/carbon/issues/14153)) ([`d594e9bf3`](https://github.com/carbon-design-system/carbon/commit/d594e9bf3))

##### Documentation :memo:

-   docs(datatable): add a disabled button to the batch action example story ([#&#8203;14218](https://github.com/carbon-design-system/carbon/issues/14218)) ([`3be26a735`](https://github.com/carbon-design-system/carbon/commit/3be26a735))

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(deps): bump word-wrap ([#&#8203;14247](https://github.com/carbon-design-system/carbon/issues/14247)) ([`ca2098e55`](https://github.com/carbon-design-system/carbon/commit/ca2098e55))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(a11y): update to latest ruleset ([#&#8203;14171](https://github.com/carbon-design-system/carbon/issues/14171)) ([`1ccdb5c88`](https://github.com/carbon-design-system/carbon/commit/1ccdb5c88))
-   chore(deps): bump semver in /packages/react/examples/codesandbox ([#&#8203;14175](https://github.com/carbon-design-system/carbon/issues/14175)) ([`c0aa65a61`](https://github.com/carbon-design-system/carbon/commit/c0aa65a61))
-   chore(deps): bump semver in /packages/react/examples/custom-css-prefix ([#&#8203;14188](https://github.com/carbon-design-system/carbon/issues/14188)) ([`84be67264`](https://github.com/carbon-design-system/carbon/commit/84be67264))
-   chore(deps): bump semver ([#&#8203;14176](https://github.com/carbon-design-system/carbon/issues/14176)) ([`35ebd7ca9`](https://github.com/carbon-design-system/carbon/commit/35ebd7ca9))

##### `@carbon/styles@1.34.0`

##### New features :rocket:

-   feat(tabs): support contextual layout tokens (size & density) ([#&#8203;13951](https://github.com/carbon-design-system/carbon/issues/13951)) ([`149d34df3`](https://github.com/carbon-design-system/carbon/commit/149d34df3))

##### Bug fixes :bug:

-   fix(Popover): fix safari styling bug with Popover ([#&#8203;14221](https://github.com/carbon-design-system/carbon/issues/14221)) ([`cdff026ee`](https://github.com/carbon-design-system/carbon/commit/cdff026ee))
-   fix(Toggletip): update type token ([#&#8203;14202](https://github.com/carbon-design-system/carbon/issues/14202)) ([`2e55184cf`](https://github.com/carbon-design-system/carbon/commit/2e55184cf))
-   fix(button): add min-height and bottom padding for wrapping ([#&#8203;14193](https://github.com/carbon-design-system/carbon/issues/14193)) ([`5391d96f2`](https://github.com/carbon-design-system/carbon/commit/5391d96f2))
-   fix(tile): prevent padding change on hover when disabled ([#&#8203;14196](https://github.com/carbon-design-system/carbon/issues/14196)) ([`f20a3a4cc`](https://github.com/carbon-design-system/carbon/commit/f20a3a4cc))
-   fix(Search): close expandable search on escape key ([#&#8203;14076](https://github.com/carbon-design-system/carbon/issues/14076)) ([`dd3698c00`](https://github.com/carbon-design-system/carbon/commit/dd3698c00))
-   fix(treeview): xs size variant ([#&#8203;14157](https://github.com/carbon-design-system/carbon/issues/14157)) ([`d6b9b7c3b`](https://github.com/carbon-design-system/carbon/commit/d6b9b7c3b))

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/themes@11.22.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): bump semver in /packages/themes/examples/sass-modules ([#&#8203;14181](https://github.com/carbon-design-system/carbon/issues/14181)) ([`bc03553f8`](https://github.com/carbon-design-system/carbon/commit/bc03553f8))

##### `@carbon/type@11.21.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/upgrade@11.10.0`

##### New features :rocket:

-   feat(upgrade): `update-carbon-icons-react-import-to-carbon-react` codemod ([#&#8203;14217](https://github.com/carbon-design-system/carbon/issues/14217)) ([`e0382e6d0`](https://github.com/carbon-design-system/carbon/commit/e0382e6d0))

##### Bug fixes :bug:

-   fix(deps): update dependency eslint-plugin-jsdoc to v46 ([#&#8203;14228](https://github.com/carbon-design-system/carbon/issues/14228)) ([`f1fa642bd`](https://github.com/carbon-design-system/carbon/commit/f1fa642bd))

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): update dependency memfs to v4 ([#&#8203;14129](https://github.com/carbon-design-system/carbon/issues/14129)) ([`221277016`](https://github.com/carbon-design-system/carbon/commit/221277016))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/carbon-design-system/carbon-for-ibm-dotcom).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMzUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEzNS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

* chore(deps): update dependency sass to ~1.70.0 (#11427)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [sass](https://github.com/sass/dart-sass) | [`~1.69.5` -> `~1.70.0`](https://renovatebot.com/diffs/npm/sass/1.69.5/1.70.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/sass/1.70.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/sass/1.70.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/sass/1.69.5/1.70.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/sass/1.69.5/1.70.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>sass/dart-sass (sass)</summary>

### [`v1.70.0`](https://github.com/sass/dart-sa…
github-merge-queue bot pushed a commit that referenced this pull request Sep 21, 2024
…#17545)

* feat(storybook): updated 2 component stories to v7 (#11362)

* chore(search): update search stories to sb v7

* chore(select): update select stories to sb v7

* chore(select): trim back select imports

* fix(select): use optional chaining on a @query property inside getter

* chore(select): fix case on readOnly

---------



* feat(tag/tooltip): cwc storybook controls (#11381)

* feat(storybook): updated 7 component stories to v7 (#11344)

* fix(loading): update story to v7

* fix(modal): update to v7

* fix(checkbox): update to v7

* fix(list): update to v7

* fix(inline-loading): updated to v7

* fix(data-table): update to v7

* chore(prettier): ran formatter

* fix(list): remove double mdxs

* fix(markdown): replaced description

* Update packages/carbon-web-components/src/components/list/ordered-list.stories.ts

* Update packages/carbon-web-components/src/components/list/ordered-list.stories.ts

---------



* feat(layer/dropdown/combo-box): update stories to Storybook v7 (#11318)

* feat(layer): updated to v7

* feat(dropdown): update story

* feat(combo-box): update to v7

* fix(stories): addressed feedback

* fix(markdown): replaced description

---------



* feat(notification): update story to Storybook v7 (#11331)

* chore(notification): rename story files for sb v7

* chore(notification): update notification stories to sb v7

* chore(storybook): update spacing on CDN JS markdown docs

---------



* feat(multi-select): update story to Storybook v7 (#11327)

* chore(multi-select): rename story files for sb v7

* chore(multi-select): update file-uploader to sb v7

* chore(multi-select): include sb layer components, remove unused import

* fix(multi-select): controls for disabled, readOnly and invalid

---------



* feat(content-switcher): update story to Storybook v7 (#11315)

* chore(content-switcher): update content-switcher to sb v7

* fix(content-switcher): add imports for content-switcher dependencies

* fix(content-switcher): fix css selector for icon only styles

* fix(content-switcher): restore the size options

* chore(content-switcher): include storybook layers components

---------



* chore(breadcrumb): finish updating breadcrumb to sb v7 (#11310)



* feat(accordion): update story to Storybook v7 (#11306)

* chore(accordion): first pass at updating accordion for sb v7

* chore(accordion): finish updating accordion to sb v7

* chore(accordion): tidy up excess import

---------



* feat(date-picker): update story to Storybook v7 (#11276)

* chore(date-picker): rename for sb v7

* chore(date-picker): convert from knobs to controls

* chore(date-picker): remove storyDocs parameter, causing local failures

* chore(date-picker): add date picker descriptions from React storybook

* chore(date-picker): include storybook layers components

* chore(date-picker): add back actions in sb v7 format

---------



* feat(code-snippet): update story to Storybook v7 (#11312)

* chore(code-snippet): update code-snippet to sb v7

* chore(code-snippet): include storybook layers components

* chore(code-snippet): include storybook layers components

---------




* feat(number-input): update story to Storybook v7 (#11336)

* chore(number-input): update number-input stories to sb v7

* chore(number-input): fix case on readOnly

---------



* fix(tooltip): tooltip persists issue (#11324)

* fix(tooltip): tooltip persists issue

* chore(prettier): format code

---------



* chore(icon-button): update form-group stories to sb v7 (#11388)



* feat(icon-button): update story to Storybook v7 (#11387)

* chore(icon-button): update icon-button stories to sb v7

* fix(icon-button): missing default label



---------



* fix(date-picker): range plugin on import (#11410)

### Related Ticket(s)

Closes #none

### Description

fixes old `on` import and changes it local import


<!-- React and Web Component deploy previews are enabled by default. -->
<!-- To enable additional available deploy previews, apply the following -->
<!-- labels for the corresponding package: -->
<!-- *** "test: e2e": Codesandbox examples and e2e integration tests -->
<!-- *** "package: services": Services -->
<!-- *** "package: utilities": Utilities -->
<!-- *** "RTL": React / Web Components (RTL) -->
<!-- *** "feature flag": React / Web Components (experimental) -->

* chore(version): patch 2.1.2

* Update packages/carbon-web-components/src/components/slider/slider.scss



* feat(slug): update story to Storybook v7 (#11384)

* chore(slug): update slug stories to sb v7

* chore(slug): update slug example stories to sb v7

* chore(slug): update slug data table stories to sb v7

* chore(slug): update slug form stories to sb v7

* feat(toggle/toggletip): cwc controls (#11395)

* feat(toggle/toggletip): cwc controls

* fix(toggletip): open prop

* fix(toggletip): body text font

---------



* feat(storybook): updated 5 components to v7 (#11397)

* feat(structured-list): update to v7

* feat(tabs): update to v7

* feat(ui-shell): update to v7

* feat(text-input): update to v7

* feat(textarea): update to v7

* fix(prettier): ran prettier

---------



* feat(pagination): update story to Storybook v7 (#11401)

* chore(pagination): update pagination stories to sb v7

* fix(pagination): fix backward-text control

* fix(pagination): specify page-input-disabled property as boolean

---------



* chore(radio-button): update radio-button stories to sb v7 (#11361)



* fix(number-input): fix incorrect controls border for readonly mode (#11402)

### Related Ticket(s)

Closes #11390 

### Description

Fixed incorrect controls styles for readonly number input

### Changelog

**New**

- added some styles

* chore(deps): update dependency @carbon/icons to v11.33.0 (#11406)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@carbon/icons](https://github.com/carbon-design-system/carbon) ([source](https://github.com/carbon-design-system/carbon/tree/HEAD/packages/icons)) | [`11.31.0` -> `11.33.0`](https://renovatebot.com/diffs/npm/@carbon%2ficons/11.31.0/11.33.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@carbon%2ficons/11.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@carbon%2ficons/11.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@carbon%2ficons/11.31.0/11.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@carbon%2ficons/11.31.0/11.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>carbon-design-system/carbon (@&#8203;carbon/icons)</summary>

### [`v11.33.0`](https://github.com/carbon-design-system/carbon/releases/tag/v11.33.0)

[Compare Source](https://github.com/carbon-design-system/carbon/compare/v11.32.0...v11.33.0)

##### `carbon-components@11.33.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `carbon-components-react@8.33.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/cli@11.12.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/cli-reporter@10.7.0`

##### Bug fixes :bug:

-   fix(cli-reporter): fix undefined \_style ([#&#8203;14018](https://github.com/carbon-design-system/carbon/issues/14018)) ([`86eb04892`](https://github.com/carbon-design-system/carbon/commit/86eb04892))

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/colors@11.17.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/elements@11.25.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/grid@11.16.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(deps): bump semver in /packages/grid/examples/css-grid ([#&#8203;14142](https://github.com/carbon-design-system/carbon/issues/14142)) ([`e416444cf`](https://github.com/carbon-design-system/carbon/commit/e416444cf))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/icon-helpers@10.42.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/icons@11.22.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))
-   chore(deps): bump semver in /packages/icons/examples/preview ([#&#8203;14079](https://github.com/carbon-design-system/carbon/issues/14079)) ([`395522939`](https://github.com/carbon-design-system/carbon/commit/395522939))

##### `@carbon/icons-react@11.22.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/icons-vue@10.71.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/layout@11.16.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(deps): bump semver in /packages/layout/examples/preview ([#&#8203;14074](https://github.com/carbon-design-system/carbon/issues/14074)) ([`e11af98b5`](https://github.com/carbon-design-system/carbon/commit/e11af98b5))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/motion@11.13.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/pictograms@12.19.0`

##### New features :rocket:

-   feat(Pictograms): pictogram-master-file-june ([#&#8203;14094](https://github.com/carbon-design-system/carbon/issues/14094)) ([`c1ffb84fd`](https://github.com/carbon-design-system/carbon/commit/c1ffb84fd))
-   feat(Pictograms): june pictogram additions ([#&#8203;14067](https://github.com/carbon-design-system/carbon/issues/14067)) ([`2ee33d79a`](https://github.com/carbon-design-system/carbon/commit/2ee33d79a))

##### Bug fixes :bug:

-   fix(pictograms): remove extra category for app--modernization ([#&#8203;14113](https://github.com/carbon-design-system/carbon/issues/14113)) ([`34c358495`](https://github.com/carbon-design-system/carbon/commit/34c358495))

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))
-   chore(deps): bump semver in /packages/pictograms/examples/preview ([#&#8203;14071](https://github.com/carbon-design-system/carbon/issues/14071)) ([`524aba517`](https://github.com/carbon-design-system/carbon/commit/524aba517))

##### `@carbon/pictograms-react@11.45.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/react@1.33.0`

##### New features :rocket:

-   feat(Tag): add as prop to Tag to specify wrapping element ([#&#8203;13959](https://github.com/carbon-design-system/carbon/issues/13959)) ([#&#8203;14112](https://github.com/carbon-design-system/carbon/issues/14112)) ([`fcdecdb53`](https://github.com/carbon-design-system/carbon/commit/fcdecdb53))
-   feat(Toggle): adds typescript typings to Toggle ([#&#8203;14128](https://github.com/carbon-design-system/carbon/issues/14128)) ([`90a6610e0`](https://github.com/carbon-design-system/carbon/commit/90a6610e0))
-   feat: convert HeaderName to tsx and update snapshot ([#&#8203;14087](https://github.com/carbon-design-system/carbon/issues/14087)) ([`82d837b83`](https://github.com/carbon-design-system/carbon/commit/82d837b83))
-   feat: added new react useid hook and tests ([#&#8203;14044](https://github.com/carbon-design-system/carbon/issues/14044)) ([`af94b4fbc`](https://github.com/carbon-design-system/carbon/commit/af94b4fbc))

##### Bug fixes :bug:

-   fix(DataTableSkeleton): adjust TypeScript types to match behavior ([#&#8203;14114](https://github.com/carbon-design-system/carbon/issues/14114)) ([`84cdca4e9`](https://github.com/carbon-design-system/carbon/commit/84cdca4e9))
-   fix(UIShell): various fixes to avoid null pointer assertions ([#&#8203;14144](https://github.com/carbon-design-system/carbon/issues/14144)) ([`330b4bf21`](https://github.com/carbon-design-system/carbon/commit/330b4bf21))
-   fix: update contained list search placeholder ([#&#8203;14105](https://github.com/carbon-design-system/carbon/issues/14105)) ([`f7b7b4d97`](https://github.com/carbon-design-system/carbon/commit/f7b7b4d97))
-   fix: storybook sort function ([#&#8203;14125](https://github.com/carbon-design-system/carbon/issues/14125)) ([`4b88b7f9c`](https://github.com/carbon-design-system/carbon/commit/4b88b7f9c))
-   fix(DataTable): check for undefined document obj ([#&#8203;14115](https://github.com/carbon-design-system/carbon/issues/14115)) ([`04add82e0`](https://github.com/carbon-design-system/carbon/commit/04add82e0))
-   fix: dropdown contrast focus styles ([#&#8203;14017](https://github.com/carbon-design-system/carbon/issues/14017)) ([`a460b2878`](https://github.com/carbon-design-system/carbon/commit/a460b2878))
-   fix(UIShell): refactor displayName check ([#&#8203;14097](https://github.com/carbon-design-system/carbon/issues/14097)) ([`0a317bfa2`](https://github.com/carbon-design-system/carbon/commit/0a317bfa2))
-   fix(InlineCheckbox): guard from setting indeterminate on null ref ([#&#8203;14070](https://github.com/carbon-design-system/carbon/issues/14070)) ([`9ed61f7e3`](https://github.com/carbon-design-system/carbon/commit/9ed61f7e3))
-   fix(Datepicker): fix types ([#&#8203;14080](https://github.com/carbon-design-system/carbon/issues/14080)) ([`e921ee1d2`](https://github.com/carbon-design-system/carbon/commit/e921ee1d2))
-   fix: make ActionableNotification `subtitle` proptypes node to allow objects ([#&#8203;13821](https://github.com/carbon-design-system/carbon/issues/13821)) ([`c3ea7c86a`](https://github.com/carbon-design-system/carbon/commit/c3ea7c86a))

##### Documentation :memo:

-   docs(readme): include link to sass FAQ ([#&#8203;14123](https://github.com/carbon-design-system/carbon/issues/14123)) ([`d94e75359`](https://github.com/carbon-design-system/carbon/commit/d94e75359))
-   docs(notification): clarify ActionableNotification usage ([#&#8203;14077](https://github.com/carbon-design-system/carbon/issues/14077)) ([`4ec58e7b2`](https://github.com/carbon-design-system/carbon/commit/4ec58e7b2))

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))
-   chore: Types for FileUploader, FileUploaderButton, FileUploaderDropContainer, FileUploaderItem, FileUploaderSkeleton, Filename, Upload and ButtonSkeleton ([#&#8203;13992](https://github.com/carbon-design-system/carbon/issues/13992)) ([`033ecc706`](https://github.com/carbon-design-system/carbon/commit/033ecc706))

##### `@carbon/styles@1.33.0`

##### Bug fixes :bug:

-   fix(peerDependencies): make sass optional for styles - Solves [@&#8203;carbon/charts](https://github.com/carbon/charts) example issue ([#&#8203;14131](https://github.com/carbon-design-system/carbon/issues/14131)) ([`7330045c6`](https://github.com/carbon-design-system/carbon/commit/7330045c6))
-   fix: dropdown contrast focus styles ([#&#8203;14017](https://github.com/carbon-design-system/carbon/issues/14017)) ([`a460b2878`](https://github.com/carbon-design-system/carbon/commit/a460b2878))

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

##### `@carbon/themes@11.21.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))
-   chore(deps): bump semver in /packages/themes/examples/preview-v10 ([#&#8203;14073](https://github.com/carbon-design-system/carbon/issues/14073)) ([`eb689371e`](https://github.com/carbon-design-system/carbon/commit/eb689371e))
-   chore(deps): bump semver in /packages/themes/examples/preview ([#&#8203;14068](https://github.com/carbon-design-system/carbon/issues/14068)) ([`1c25d282f`](https://github.com/carbon-design-system/carbon/commit/1c25d282f))

##### `@carbon/type@11.20.0`

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))
-   chore(deps): bump semver in /packages/type/examples/preview ([#&#8203;14072](https://github.com/carbon-design-system/carbon/issues/14072)) ([`c950ddfba`](https://github.com/carbon-design-system/carbon/commit/c950ddfba))

##### `@carbon/upgrade@11.9.0`

##### Bug fixes :bug:

-   fix(upgrade): add size prop codemods to upgrade package ([#&#8203;14089](https://github.com/carbon-design-system/carbon/issues/14089)) ([`90da4b9da`](https://github.com/carbon-design-system/carbon/commit/90da4b9da))

##### Housekeeping :house:

-   chore(release): v11.33.0 ([#&#8203;14141](https://github.com/carbon-design-system/carbon/issues/14141)) ([`3a58934ee`](https://github.com/carbon-design-system/carbon/commit/3a58934ee))
-   chore(release): v11.33.0-rc.0 ([#&#8203;14133](https://github.com/carbon-design-system/carbon/issues/14133)) ([`b9e28c4e3`](https://github.com/carbon-design-system/carbon/commit/b9e28c4e3))

### [`v11.32.0`](https://github.com/carbon-design-system/carbon/releases/tag/v11.32.0)

[Compare Source](https://github.com/carbon-design-system/carbon/compare/v11.31.0...v11.32.0)

##### `eslint-config-carbon@3.6.0`

##### Housekeeping :house:

-   chore(release): v11.32.0 ([#&#8203;14066](https://github.com/carbon-design-system/carbon/issues/14066)) ([`507ddae30`](https://github.com/carbon-design-system/carbon/commit/507ddae30))
-   chore(release): v11.32.0-rc.0 ([#&#8203;14038](https://github.com/carbon-design-system/carbon/issues/14038)) ([`fe40fbf42`](https://github.com/carbon-design-system/carbon/commit/fe40fbf42))

##### `stylelint-config-carbon@1.14.0`

##### Housekeeping :house:

-   chore(deps): update dependency stylelint to v15 ([#&#8203;13966](https://github.com/carbon-design-system/carbon/issues/13966)) ([`b28d9b792`](https://github.com/carbon-design-system/carbon/commit/b28d9b792))

##### `carbon-components@11.32.0`

##### Bug fixes :bug:

-   fix(contextual-layout-tokens): support individual component style imports ([#&#8203;13984](https://github.com/carbon-design-system/carbon/issues/13984)) ([`009bb31a5`](https://github.com/carbon-design-system/carbon/commit/009bb31a5))

##### Housekeeping :house:

-   chore(release): v11.32.0 ([#&#8203;14066](https://github.com/carbon-design-system/carbon/issues/14066)) ([`507ddae30`](https://github.com/carbon-design-system/carbon/commit/507ddae30))
-   chore(release): v11.32.0-rc.0 ([#&#8203;14038](https://github.com/carbon-design-system/carbon/issues/14038)) ([`fe40fbf42`](https://github.com/carbon-design-system/carbon/commit/fe40fbf42))

##### `carbon-components-react@8.32.0`

##### Bug fixes :bug:

-   fix(contextual-layout-tokens): support individual component style imports ([#&#8203;13984](https://github.com/carbon-design-system/carbon/issues/13984)) ([`009bb31a5`](https://github.com/carbon-design-system/carbon/commit/009bb31a5))

##### Housekeeping :house:

-   chore(release): v11.32.0 ([#&#8203;14066](https://github.com/carbon-design-system/carbon/issues/14066)) ([`507ddae30`](https://github.com/carbon-design-system/carbon/commit/507ddae30))
-   chore(release): v11.32.0-rc.0 ([#&#8203;14038](https://github.com/carbon-design-system/carbon/issues/14038)) ([`fe40fbf42`](https://github.com/carbon-design-system/carbon/commit/fe40fbf42))

##### `@carbon/cli@11.11.0`

##### Housekeeping :house:

-   chore(package): remove sketch ([#&#8203;14010](https://github.com/carbon-design-system/carbon/issues/14010)) ([`fd00277f8`](https://github.com/carbon-design-system/carbon/commit/fd00277f8))

##### `@carbon/react@1.32.0`

##### New features :rocket:

-   feat(Tabs): Contained tabs on the grid ([#&#8203;13927](https://github.com/carbon-design-system/carbon/issues/13927)) ([`11c70f3dc`](https://github.com/carbon-design-system/carbon/commit/11c70f3dc))
-   feat(toggle): fixes disabled issue and adds test ([#&#8203;13958](https://github.com/carbon-design-system/carbon/issues/13958)) ([`5a76564f1`](https://github.com/carbon-design-system/carbon/commit/5a76564f1))
-   feat: added types for Accordion, AccordionItem, AccordionSkeleton, SkeletonText ([#&#8203;13875](https://github.com/carbon-design-system/carbon/issues/13875)) ([`8bc7bfce4`](https://github.com/carbon-design-system/carbon/commit/8bc7bfce4))

##### Bug fixes :bug:

-   fix(Link): ensure target is passed down to anchor element ([#&#8203;14041](https://github.com/carbon-design-system/carbon/issues/14041)) ([`f40998c0b`](https://github.com/carbon-design-system/carbon/commit/f40998c0b))
-   fix(Datepicker): fix calendar cannot close issue ([#&#8203;14028](https://github.com/carbon-design-system/carbon/issues/14028)) ([`5f04156d5`](https://github.com/carbon-design-system/carbon/commit/5f04156d5))
-   fix(ToggleSkeleton): fix issue with ToggleSkeleton style ([#&#8203;13963](https://github.com/carbon-design-system/carbon/issues/13963)) ([`7de2ef39f`](https://github.com/carbon-design-system/carbon/commit/7de2ef39f))
-   fix(sass): remove colons from classnames ([#&#8203;14022](https://github.com/carbon-design-system/carbon/issues/14022)) ([`b8422a1d4`](https://github.com/carbon-design-system/carbon/commit/b8422a1d4))
-   fix(contained-list): explicitly set "list" role ([#&#8203;14019](https://github.com/carbon-design-system/carbon/issues/14019)) ([`b440e5fb9`](https://github.com/carbon-design-system/carbon/commit/b440e5fb9))
-   fix(UIShell): fix hover issue, reasonable default for enter/exit delay ([#&#8203;13961](https://github.com/carbon-design-system/carbon/issues/13961)) ([`7efc2f3c4`](https://github.com/carbon-design-system/carbon/commit/7efc2f3c4))
-   fix: dropdown-firefox-voice-over ([#&#8203;13994](https://github.com/carbon-design-system/carbon/issues/13994)) ([`d6701c0b4`](https://github.com/carbon-design-system/carbon/commit/d6701c0b4))
-   fix(contextual-layout-tokens): support individual component style imports ([#&#8203;13984](https://github.com/carbon-design-system/carbon/issues/13984)) ([`009bb31a5`](https://github.com/carbon-design-system/carbon/commit/009bb31a5))
-   fix(DataTable): mock Canvas and remove dependency ([#&#8203;13972](https://github.com/carbon-design-system/carbon/issues/13972)) ([`67c7aa7b6`](https://github.com/carbon-design-system/carbon/commit/67c7aa7b6))

##### Housekeeping :house:

-   chore(release): v11.32.0 ([#&#8203;14066](https://github.com/carbon-design-system/carbon/issues/14066)) ([`507ddae30`](https://github.com/carbon-design-system/carbon/commit/507ddae30))
-   chore(release): v11.32.0-rc.0 ([#&#8203;14038](https://github.com/carbon-design-system/carbon/issues/14038)) ([`fe40fbf42`](https://github.com/carbon-design-system/carbon/commit/fe40fbf42))
-   chore: added types to ControlledPasswordInput ([#&#8203;13995](https://github.com/carbon-design-system/carbon/issues/13995)) ([`8f283a42f`](https://github.com/carbon-design-system/carbon/commit/8f283a42f))
-   refactor(Button): convert Button component family to TypeScript ([#&#8203;13811](https://github.com/carbon-design-system/carbon/issues/13811)) ([`04644a9ca`](https://github.com/carbon-design-system/carbon/commit/04644a9ca))
-   chore: typescript type for TableContainer props ([#&#8203;13983](https://github.com/carbon-design-system/carbon/issues/13983)) ([`47fc5c8c0`](https://github.com/carbon-design-system/carbon/commit/47fc5c8c0))
-   chore: added types for formgroup component ([#&#8203;13988](https://github.com/carbon-design-system/carbon/issues/13988)) ([`99189c69d`](https://github.com/carbon-design-system/carbon/commit/99189c69d))
-   chore: typescript types for props in TableBody ([#&#8203;13982](https://github.com/carbon-design-system/carbon/issues/13982)) ([`e7800e71a`](https://github.com/carbon-design-system/carbon/commit/e7800e71a))
-   chore: types for TableExpandHeader props ([#&#8203;13985](https://github.com/carbon-design-system/carbon/issues/13985)) ([`81e2fb9d6`](https://github.com/carbon-design-system/carbon/commit/81e2fb9d6))

##### `@carbon/styles@1.32.0`

##### New features :rocket:

-   feat(Tabs): Contained tabs on the grid ([#&#8203;13927](https://github.com/carbon-design-system/carbon/issues/13927)) ([`11c70f3dc`](https://github.com/carbon-design-system/carbon/commit/11c70f3dc))
-   feat(toggle): fixes disabled issue and adds test ([#&#8203;13958](https://github.com/carbon-design-system/carbon/issues/13958)) ([`5a76564f1`](https://github.com/carbon-design-system/carbon/commit/5a76564f1))
-   feat(tile): support contextual layout tokens (density) ([#&#8203;13937](https://github.com/carbon-design-system/carbon/issues/13937)) ([`b6f1a88a8`](https://github.com/carbon-design-system/carbon/commit/b6f1a88a8))

##### Bug fixes :bug:

-   fix(ListBoxMenuItem): ensure border-subtle renders correct value ([#&#8203;13879](https://github.com/carbon-design-system/carbon/issues/13879)) ([`99ffdd1e1`](https://github.com/carbon-design-system/carbon/commit/99ffdd1e1))
-   fix(ToggleSkeleton): fix issue with ToggleSkeleton style ([#&#8203;13963](https://github.com/carbon-design-system/carbon/issues/13963)) ([`7de2ef39f`](https://github.com/carbon-design-system/carbon/commit/7de2ef39f))
-   fix(sass): remove colons from classnames ([#&#8203;14022](https://github.com/carbon-design-system/carbon/issues/14022)) ([`b8422a1d4`](https://github.com/carbon-design-system/carbon/commit/b8422a1d4))
-   fix(DataTable): fix padding issue with batch actions ([#&#8203;14024](https://github.com/carbon-design-system/carbon/issues/14024)) ([`1234cfd10`](https://github.com/carbon-design-system/carbon/commit/1234cfd10))
-   fix(UIShell): fix hover issue, reasonable default for enter/exit delay ([#&#8203;13961](https://github.com/carbon-design-system/carbon/issues/13961)) ([`7efc2f3c4`](https://github.com/carbon-design-system/carbon/commit/7efc2f3c4))
-   fix(contextual-layout-tokens): support individual component style imports ([#&#8203;13984](https://github.com/carbon-design-system/carbon/issues/13984)) ([`009bb31a5`](https://github.com/carbon-design-system/carbon/commit/009bb31a5))
-   fix(ActionableNotification): fix padding issue with button ([#&#8203;13971](https://github.com/carbon-design-system/carbon/issues/13971)) ([`dab66af98`](https://github.com/carbon-design-system/carbon/commit/dab66af98))

##### Housekeeping :house:

-   chore(release): v11.32.0 ([#&#8203;14066](https://github.com/carbon-design-system/carbon/issues/14066)) ([`507ddae30`](https://github.com/carbon-design-system/carbon/commit/507ddae30))
-   chore(release): v11.32.0-rc.0 ([#&#8203;14038](https://github.com/carbon-design-system/carbon/issues/14038)) ([`fe40fbf42`](https://github.com/carbon-design-system/carbon/commit/fe40fbf42))
-   chore(deps): update dependency stylelint to v15 ([#&#8203;13966](https://github.com/carbon-design-system/carbon/issues/13966)) ([`b28d9b792`](https://github.com/carbon-design-system/carbon/commit/b28d9b792))

##### `@carbon/upgrade@11.8.0`

##### Housekeeping :house:

-   chore(release): v11.32.0 ([#&#8203;14066](https://github.com/carbon-design-system/carbon/issues/14066)) ([`507ddae30`](https://github.com/carbon-design-system/carbon/commit/507ddae30))
-   chore(release): v11.32.0-rc.0 ([#&#8203;14038](https://github.com/carbon-design-system/carbon/issues/14038)) ([`fe40fbf42`](https://github.com/carbon-design-system/carbon/commit/fe40fbf42))
-   chore(deps): update dependency esbuild to ^0.18.0 ([#&#8203;14029](https://github.com/carbon-design-system/carbon/issues/14029)) ([`40b964809`](https://github.com/carbon-design-system/carbon/commit/40b964809))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/carbon-design-system/carbon-for-ibm-dotcom).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

* fix(select): selected item is not showing for ios/ipados (#11214)

### Related Ticket(s)

Closes https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues/10052
[Jira ticket](https://jsw.ibm.com/browse/ADCMS-4083)

### Description

Fix for Labeles not appearing on Safari / IOS

### Changelog

**Changed**

 - How labels on the select component are handled

---
Opened to replace https://github.com/carbon-design-system/carbon-for-ibm-dotcom/pull/11080

* chore(package): remove openssl-legacy flag from package.json (#11417)

### Description

Removes `openssl-legacy-provider` flag from `package.json` commands. Since `yarn.lock` has been cleaned this is no longer necessary.

### Changelog

**New**

- {{new thing}}

**Changed**

- {{changed thing}}

**Removed**

- `openssl-legacy-provider` flag from `package.json` commands

<!-- React and Web Component deploy previews are enabled by default. -->
<!-- To enable additional available deploy previews, apply the following -->
<!-- labels for the corresponding package: -->
<!-- *** "test: e2e": Codesandbox examples and e2e integration tests -->
<!-- *** "package: services": Services -->
<!-- *** "package: utilities": Utilities -->
<!-- *** "RTL": React / Web Components (RTL) -->
<!-- *** "feature flag": React / Web Components (experimental) -->

* deps(babel): update `@babel-traverse` to latest (#11419)

### Description

This updates `@babel/traverse` to resolve a critical vulnerability: https://github.com/carbon-design-system/carbon-for-ibm-dotcom/security/dependabot/224.

### Changelog

**Changed**

- update `@babel/traverse` to latest version

<!-- React and Web Component deploy previews are enabled by default. -->
<!-- To enable additional available deploy previews, apply the following -->
<!-- labels for the corresponding package: -->
<!-- *** "test: e2e": Codesandbox examples and e2e integration tests -->
<!-- *** "package: services": Services -->
<!-- *** "package: utilities": Utilities -->
<!-- *** "RTL": React / Web Components (RTL) -->
<!-- *** "feature flag": React / Web Components (experimental) -->

* chore(release): publish

 - @carbon/web-components@2.2.0-rc.0
 - @carbon/ibmdotcom-services@2.2.0-rc.0
 - @carbon/ibmdotcom-styles@2.2.0-rc.0
 - @carbon/ibmdotcom-utilities@2.2.0-rc.0
 - @carbon/ibmdotcom-web-components@2.2.0-rc.0

* chore(deps): update dependency @carbon/icons to v11.34.0 (#11422)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@carbon/icons](https://github.com/carbon-design-system/carbon) ([source](https://github.com/carbon-design-system/carbon/tree/HEAD/packages/icons)) | [`11.33.0` -> `11.34.0`](https://renovatebot.com/diffs/npm/@carbon%2ficons/11.33.0/11.34.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@carbon%2ficons/11.34.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@carbon%2ficons/11.34.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@carbon%2ficons/11.33.0/11.34.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@carbon%2ficons/11.33.0/11.34.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>carbon-design-system/carbon (@&#8203;carbon/icons)</summary>

### [`v11.34.0`](https://github.com/carbon-design-system/carbon/releases/tag/v11.34.0)

[Compare Source](https://github.com/carbon-design-system/carbon/compare/v11.33.0...v11.34.0)

##### `eslint-config-carbon@3.7.0`

##### Bug fixes :bug:

-   fix(deps): update dependency eslint-plugin-jsdoc to v46 ([#&#8203;14228](https://github.com/carbon-design-system/carbon/issues/14228)) ([`f1fa642bd`](https://github.com/carbon-design-system/carbon/commit/f1fa642bd))
-   fix(deps): update dependency eslint-plugin-jest to v27 ([#&#8203;14167](https://github.com/carbon-design-system/carbon/issues/14167)) ([`d5209d1c2`](https://github.com/carbon-design-system/carbon/commit/d5209d1c2))
-   fix(deps): update dependency eslint-plugin-jest-dom to v5 ([#&#8203;14227](https://github.com/carbon-design-system/carbon/issues/14227)) ([`410931a62`](https://github.com/carbon-design-system/carbon/commit/410931a62))

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `carbon-components@11.34.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `carbon-components-react@8.34.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/cli@11.13.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps-dev): bump stylelint from 15.7.0 to 15.10.1 ([#&#8203;14162](https://github.com/carbon-design-system/carbon/issues/14162)) ([`f8a0c3450`](https://github.com/carbon-design-system/carbon/commit/f8a0c3450))
-   chore(deps): update dependency replace-in-file to v7 ([#&#8203;13922](https://github.com/carbon-design-system/carbon/issues/13922)) ([`1bf2d4f6c`](https://github.com/carbon-design-system/carbon/commit/1bf2d4f6c))

##### `@carbon/colors@11.18.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): bump semver in /packages/colors/examples/sass-modules ([#&#8203;14180](https://github.com/carbon-design-system/carbon/issues/14180)) ([`3ab83bbb9`](https://github.com/carbon-design-system/carbon/commit/3ab83bbb9))
-   chore(deps): bump semver in /packages/colors/examples/preview ([#&#8203;14182](https://github.com/carbon-design-system/carbon/issues/14182)) ([`443900bfe`](https://github.com/carbon-design-system/carbon/commit/443900bfe))

##### `@carbon/elements@11.26.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): update dependency replace-in-file to v7 ([#&#8203;13922](https://github.com/carbon-design-system/carbon/issues/13922)) ([`1bf2d4f6c`](https://github.com/carbon-design-system/carbon/commit/1bf2d4f6c))

##### `@carbon/grid@11.17.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/icon-helpers@10.43.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/icons@11.23.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/icons-react@11.23.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): bump semver in /packages/icons-react/examples/storybook ([#&#8203;14177](https://github.com/carbon-design-system/carbon/issues/14177)) ([`59f997f28`](https://github.com/carbon-design-system/carbon/commit/59f997f28))

##### `@carbon/icons-vue@10.72.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): bump semver in /packages/icons-vue/examples/storybook ([#&#8203;14189](https://github.com/carbon-design-system/carbon/issues/14189)) ([`fdcf2da32`](https://github.com/carbon-design-system/carbon/commit/fdcf2da32))
-   chore(deps): bump semver in /packages/icons-vue/examples/vue-cli ([#&#8203;14187](https://github.com/carbon-design-system/carbon/issues/14187)) ([`0dbc85413`](https://github.com/carbon-design-system/carbon/commit/0dbc85413))

##### `@carbon/layout@11.17.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/motion@11.14.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/pictograms@12.20.0`

##### New features :rocket:

-   feat(Pictograms): new pictograms and new category ([#&#8203;14246](https://github.com/carbon-design-system/carbon/issues/14246)) ([`9e8605ac3`](https://github.com/carbon-design-system/carbon/commit/9e8605ac3))
-   feat(Pictograms): updated yaml for watsonx ([#&#8203;14204](https://github.com/carbon-design-system/carbon/issues/14204)) ([`3a350eb58`](https://github.com/carbon-design-system/carbon/commit/3a350eb58))

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/pictograms-react@11.46.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): bump semver ([#&#8203;14178](https://github.com/carbon-design-system/carbon/issues/14178)) ([`5beb2b95b`](https://github.com/carbon-design-system/carbon/commit/5beb2b95b))

##### `@carbon/react@1.34.0`

##### New features :rocket:

-   feat(tabs): support contextual layout tokens (size & density) ([#&#8203;13951](https://github.com/carbon-design-system/carbon/issues/13951)) ([`149d34df3`](https://github.com/carbon-design-system/carbon/commit/149d34df3))

##### Bug fixes :bug:

-   fix(textarea): persist onChange for React 16 ([#&#8203;14249](https://github.com/carbon-design-system/carbon/issues/14249)) ([`eac9de1b1`](https://github.com/carbon-design-system/carbon/commit/eac9de1b1))
-   fix(deps): update dependency eslint-plugin-jsdoc to v46 ([#&#8203;14228](https://github.com/carbon-design-system/carbon/issues/14228)) ([`f1fa642bd`](https://github.com/carbon-design-system/carbon/commit/f1fa642bd))
-   fix(Toggle): make onClick optional in TypeScript interface ([#&#8203;14226](https://github.com/carbon-design-system/carbon/issues/14226)) ([`77157e24a`](https://github.com/carbon-design-system/carbon/commit/77157e24a))
-   fix(storybook): fix issue with text rendering in storybook props table ([#&#8203;14207](https://github.com/carbon-design-system/carbon/issues/14207)) ([`f2aa20811`](https://github.com/carbon-design-system/carbon/commit/f2aa20811))
-   fix(DataTable): fix a11y issues with selection variant ([#&#8203;14206](https://github.com/carbon-design-system/carbon/issues/14206)) ([`a41006915`](https://github.com/carbon-design-system/carbon/commit/a41006915))
-   fix(button): add min-height and bottom padding for wrapping ([#&#8203;14193](https://github.com/carbon-design-system/carbon/issues/14193)) ([`5391d96f2`](https://github.com/carbon-design-system/carbon/commit/5391d96f2))
-   fix(ContainedList): fix a11y error in story ([#&#8203;14192](https://github.com/carbon-design-system/carbon/issues/14192)) ([`a6962034f`](https://github.com/carbon-design-system/carbon/commit/a6962034f))
-   fix: fixed VO and JAWS problem in FF and Safari ([#&#8203;14156](https://github.com/carbon-design-system/carbon/issues/14156)) ([`ef1336aba`](https://github.com/carbon-design-system/carbon/commit/ef1336aba))
-   fix(Search): close expandable search on escape key ([#&#8203;14076](https://github.com/carbon-design-system/carbon/issues/14076)) ([`dd3698c00`](https://github.com/carbon-design-system/carbon/commit/dd3698c00))
-   fix(docs): use name export for Button ([#&#8203;14194](https://github.com/carbon-design-system/carbon/issues/14194)) ([`bd8136dbe`](https://github.com/carbon-design-system/carbon/commit/bd8136dbe))
-   fix(storybook): update devtools toolbar for storybook 7 ([#&#8203;14179](https://github.com/carbon-design-system/carbon/issues/14179)) ([`a72388eb8`](https://github.com/carbon-design-system/carbon/commit/a72388eb8))
-   fix(ComboButton): import IconButton before Button ([#&#8203;14155](https://github.com/carbon-design-system/carbon/issues/14155)) ([`f63a688df`](https://github.com/carbon-design-system/carbon/commit/f63a688df))
-   fix(useid): guard against useId not being exported ([#&#8203;14153](https://github.com/carbon-design-system/carbon/issues/14153)) ([`d594e9bf3`](https://github.com/carbon-design-system/carbon/commit/d594e9bf3))

##### Documentation :memo:

-   docs(datatable): add a disabled button to the batch action example story ([#&#8203;14218](https://github.com/carbon-design-system/carbon/issues/14218)) ([`3be26a735`](https://github.com/carbon-design-system/carbon/commit/3be26a735))

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(deps): bump word-wrap ([#&#8203;14247](https://github.com/carbon-design-system/carbon/issues/14247)) ([`ca2098e55`](https://github.com/carbon-design-system/carbon/commit/ca2098e55))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(a11y): update to latest ruleset ([#&#8203;14171](https://github.com/carbon-design-system/carbon/issues/14171)) ([`1ccdb5c88`](https://github.com/carbon-design-system/carbon/commit/1ccdb5c88))
-   chore(deps): bump semver in /packages/react/examples/codesandbox ([#&#8203;14175](https://github.com/carbon-design-system/carbon/issues/14175)) ([`c0aa65a61`](https://github.com/carbon-design-system/carbon/commit/c0aa65a61))
-   chore(deps): bump semver in /packages/react/examples/custom-css-prefix ([#&#8203;14188](https://github.com/carbon-design-system/carbon/issues/14188)) ([`84be67264`](https://github.com/carbon-design-system/carbon/commit/84be67264))
-   chore(deps): bump semver ([#&#8203;14176](https://github.com/carbon-design-system/carbon/issues/14176)) ([`35ebd7ca9`](https://github.com/carbon-design-system/carbon/commit/35ebd7ca9))

##### `@carbon/styles@1.34.0`

##### New features :rocket:

-   feat(tabs): support contextual layout tokens (size & density) ([#&#8203;13951](https://github.com/carbon-design-system/carbon/issues/13951)) ([`149d34df3`](https://github.com/carbon-design-system/carbon/commit/149d34df3))

##### Bug fixes :bug:

-   fix(Popover): fix safari styling bug with Popover ([#&#8203;14221](https://github.com/carbon-design-system/carbon/issues/14221)) ([`cdff026ee`](https://github.com/carbon-design-system/carbon/commit/cdff026ee))
-   fix(Toggletip): update type token ([#&#8203;14202](https://github.com/carbon-design-system/carbon/issues/14202)) ([`2e55184cf`](https://github.com/carbon-design-system/carbon/commit/2e55184cf))
-   fix(button): add min-height and bottom padding for wrapping ([#&#8203;14193](https://github.com/carbon-design-system/carbon/issues/14193)) ([`5391d96f2`](https://github.com/carbon-design-system/carbon/commit/5391d96f2))
-   fix(tile): prevent padding change on hover when disabled ([#&#8203;14196](https://github.com/carbon-design-system/carbon/issues/14196)) ([`f20a3a4cc`](https://github.com/carbon-design-system/carbon/commit/f20a3a4cc))
-   fix(Search): close expandable search on escape key ([#&#8203;14076](https://github.com/carbon-design-system/carbon/issues/14076)) ([`dd3698c00`](https://github.com/carbon-design-system/carbon/commit/dd3698c00))
-   fix(treeview): xs size variant ([#&#8203;14157](https://github.com/carbon-design-system/carbon/issues/14157)) ([`d6b9b7c3b`](https://github.com/carbon-design-system/carbon/commit/d6b9b7c3b))

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/themes@11.22.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): bump semver in /packages/themes/examples/sass-modules ([#&#8203;14181](https://github.com/carbon-design-system/carbon/issues/14181)) ([`bc03553f8`](https://github.com/carbon-design-system/carbon/commit/bc03553f8))

##### `@carbon/type@11.21.0`

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))

##### `@carbon/upgrade@11.10.0`

##### New features :rocket:

-   feat(upgrade): `update-carbon-icons-react-import-to-carbon-react` codemod ([#&#8203;14217](https://github.com/carbon-design-system/carbon/issues/14217)) ([`e0382e6d0`](https://github.com/carbon-design-system/carbon/commit/e0382e6d0))

##### Bug fixes :bug:

-   fix(deps): update dependency eslint-plugin-jsdoc to v46 ([#&#8203;14228](https://github.com/carbon-design-system/carbon/issues/14228)) ([`f1fa642bd`](https://github.com/carbon-design-system/carbon/commit/f1fa642bd))

##### Housekeeping :house:

-   chore(release): v11.34.0 ([#&#8203;14282](https://github.com/carbon-design-system/carbon/issues/14282)) ([`42cf1b925`](https://github.com/carbon-design-system/carbon/commit/42cf1b925))
-   chore(release): v11.34.0 ([#&#8203;14272](https://github.com/carbon-design-system/carbon/issues/14272)) ([`61c4ecb46`](https://github.com/carbon-design-system/carbon/commit/61c4ecb46))
-   chore(release): v11.34.0-rc.0 ([#&#8203;14243](https://github.com/carbon-design-system/carbon/issues/14243)) ([`52fd3db75`](https://github.com/carbon-design-system/carbon/commit/52fd3db75))
-   chore(deps): update dependency memfs to v4 ([#&#8203;14129](https://github.com/carbon-design-system/carbon/issues/14129)) ([`221277016`](https://github.com/carbon-design-system/carbon/commit/221277016))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/carbon-design-system/carbon-for-ibm-dotcom).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMzUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEzNS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

* chore(deps): update dependency sass to ~1.70.0 (#11427)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [sass](https://github.com/sass/dart-sass) | [`~1.69.5` -> `~1.70.0`](https://renovatebot.com/diffs/npm/sass/1.69.5/1.70.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/sass/1.70.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/sass/1.70.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/sass/1.69.5/1.70.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/sass/1.69.5/1.70.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>sass/dart-sass (sass)</summary>

### [`v1.70.0`](https://github.com/sass/dart-sa…

Co-authored-by: Matthew Oliveira <m4olivei@gmail.com>
Co-authored-by: Ariella Gilmore <ariellalgilmore@gmail.com>
Co-authored-by: Ignacio Becerra <i1becerr@ucsd.edu>
Co-authored-by: Sangeetha Babu <sangeetha9223@gmail.com>
Co-authored-by: ko1ebayev <ko1ebayev.worx@gmail.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Marcelo JCS <marcelojcs@outlook.com>
Co-authored-by: ibmdotcom-bot <digdes@us.ibm.com>
Co-authored-by: John Kaeser <jakaeser44@gmail.com>
Co-authored-by: siaikin <abc1310054026@outlook.com>
Co-authored-by: Lee Chase <leechase@live.com>
Co-authored-by: Carbon for IBM.com Bot <53266321+ibmdotcom-bot@users.noreply.github.com>
Co-authored-by: Lee Chase <lee.chase@uk.ibm.com>
Co-authored-by: Anna Wen <54281166+annawen1@users.noreply.github.com>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
Co-authored-by: Francine Lucca <40550942+francinelucca@users.noreply.github.com>
Co-authored-by: David Gyalog <33487866+gyalogmixi@users.noreply.github.com>
Co-authored-by: andrew <emyarod@users.noreply.github.com>
Co-authored-by: Jeff Chew <jeff.chew@gmail.com>
Co-authored-by: Andy Blum <andy.blum.01@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

5 participants