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

Upgrade Storybook, enable Lazy Compilation #11315

Closed
wants to merge 8 commits into from

Conversation

IanVS
Copy link
Contributor

@IanVS IanVS commented Apr 29, 2022

As mentioned in #11314, I'm in the process of writing a blog post comparing the performance of various storybook features. I don't want to spoil anything, but I think this is the change which makes the most sense for this particular project, because it is not as invasive or disruptive as swapping over to Vite, and it still has significant startup performance improvements.

Changelog

New

Changed

  • Updated Storybook from 6.4.9 to 6.5.0-beta.1

Testing / Reviewing

Start the storybook, compare startup time to previous, browse around to verify nothing is broken. Build the production storybook, and also investigate. I did not see any changes, but am not as experienced in this project as the maintainers, obviously.

You should see that initial startup time is much faster, at a slight cost of increased time to download additional code-split packages while navigating to different stories.

@IanVS IanVS requested a review from a team as a code owner April 29, 2022 02:39
@netlify
Copy link

netlify bot commented Apr 29, 2022

Deploy Preview for carbon-elements ready!

Name Link
🔨 Latest commit 88458b2
🔍 Latest deploy log https://app.netlify.com/sites/carbon-elements/deploys/627423aefd6eee000896cc60
😎 Deploy Preview https://deploy-preview-11315--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.

@netlify
Copy link

netlify bot commented Apr 29, 2022

Deploy Preview for carbon-components-react ready!

Built without sensitive environment variables

Name Link
🔨 Latest commit aba9c98
🔍 Latest deploy log https://app.netlify.com/sites/carbon-components-react/deploys/626b4ff51d550b000917a923
😎 Deploy Preview https://deploy-preview-11315--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 Apr 29, 2022

Deploy Preview for carbon-components-react ready!

Name Link
🔨 Latest commit 88458b2
🔍 Latest deploy log https://app.netlify.com/sites/carbon-components-react/deploys/627423ae9bb3df0008930067
😎 Deploy Preview https://deploy-preview-11315--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.

@joshblack
Copy link
Contributor

Thanks for doing this @IanVS! 🙏 Just pushed up a small commit after running yarn dedupe, will definitely check this out!

@joshblack
Copy link
Contributor

One thing I noticed when trying this PR out and comparing it to what is in main is that the startup time seems to be approximately the same (~40-45s). The only difference I noticed when viewing stories is that lazy compilation will compile those pages on-the-fly whereas on main it will have already built them so there is no loading.

Based on your experience, is there a better way we should be splitting up our storybook to take advantage of these new features? Or am I misunderstanding where the benefits come from for these updates? 👀

Thanks again for putting this together! Really appreciate it 🙏

@IanVS
Copy link
Contributor Author

IanVS commented Apr 29, 2022

Hi @joshblack, here are the results I got on my 2019 Intel MBP:

image

But I'm realizing now that I need to re-run the Lazy numbers taking into account a change made in the other pr, here:

bf24128 (#11316)

Without that change, code-splitting is less effective. I just ran one more test including that commit, and I got a cold startup time-to-first-render of 33 seconds (half of current webpack 5 baseline), and a warm startup of 11 seconds (~ 1/3 of baseline).

So, my suggestion would be to merge #11316 first (I can clean it up if you need), and then rebase this PR on top.

@IanVS
Copy link
Contributor Author

IanVS commented May 4, 2022

I can clean up the conflicts. Here are the final results in the Storybook blog post, by the way. https://storybook.js.org/blog/storybook-performance-from-webpack-to-vite/

@IanVS
Copy link
Contributor Author

IanVS commented May 5, 2022

I'm not sure why there were failing prettier and eslint issues, but I fixed them in a few separate commits, in case they need to be taken back out. I think this should be ready for review / consideration.

@joshblack
Copy link
Contributor

Thanks @IanVS! When looking at VRT, it seems like we're hitting some loading states in this mode. Would you happen to know of a way we could wait for storybook to resolve before we snapshot the story? Totally understand if not, just wanted to check to see 👀

@IanVS
Copy link
Contributor Author

IanVS commented May 5, 2022

Storybook adds .sb-preparing-story to the body (or a direct child of the body, can't remember) of the iframe while it's loading. I've used waitForSelector with percy configs before, but I haven't looked to see how exactly you're configuring percy right now and whether or not you'd be able to use that. But, those are the pieces I'd start with exploring, at least.

@IanVS
Copy link
Contributor Author

IanVS commented May 5, 2022

@joshblack are you seeing better performance on this branch now?

@joshblack
Copy link
Contributor

@IanVS yes! Much faster start-up time on my machine (around 25s) 🚀

@jnm2377
Copy link
Contributor

jnm2377 commented May 9, 2022

@joshblack @IanVS my start-up time is also faster testing this PR, roughly about 9 seconds faster. However, I did notice that quite a few of the stories take a little longer to load when switching stories, versus the way it is now, it may take a few seconds longer to start up but I don't have to deal with the stories still loading when switching content.

@IanVS
Copy link
Contributor Author

IanVS commented May 9, 2022

That is a tradeoff, for sure. What I do on my own site is enable code splitting in dev, since I'm most likely to be working on a single component and want the faster startup an HMR Time, but disable it in production so that folks browsing stories don't have the increased swtching time. Happy to set it up that way here if you'd prefer.

@joshblack
Copy link
Contributor

Hey @IanVS! 👋 Just wanted to say thanks again for all the PRs that you put up for Storybook. They were incredibly appreciated 🙏

When circling back with the team on this, it seems like the preference would be to keep the existing setup with storybook but without lazy compilation. Just wanted to give you a heads up and thank you again for all the time and effort that went into this. It absolutely ruled 🔥

@joshblack joshblack removed their request for review May 24, 2022 20:03
@IanVS
Copy link
Contributor Author

IanVS commented May 25, 2022

OK, thanks for the update, @joshblack. Feel free to close out this PR, since I think you'll want to update to 6.5 stable in a separate PR, most likely.

@joshblack
Copy link
Contributor

Sounds good, thanks again!

@joshblack joshblack closed this May 25, 2022
@IanVS IanVS deleted the webpack-lazy branch May 25, 2022 21:06
kennylam added a commit to kennylam/carbon that referenced this pull request Jul 30, 2024
…ystem#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>
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
None yet
Development

Successfully merging this pull request may close these issues.

3 participants