diff --git a/.changeset/hot-timers-complain.md b/.changeset/hot-timers-complain.md deleted file mode 100644 index 0111c9c8c1..0000000000 --- a/.changeset/hot-timers-complain.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@hashicorp/design-system-components": patch ---- - -`DialogPrimitive` - Fixed issue with `box-sizing` inheritance - -`Modal`/`Flyout` - Updated `box-sizing` inheritance via `DialogPrimitive` fix diff --git a/.changeset/tricky-trains-ring.md b/.changeset/tricky-trains-ring.md deleted file mode 100644 index ba04f852f3..0000000000 --- a/.changeset/tricky-trains-ring.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@hashicorp/design-system-components": patch ---- - -`Hds::SideNav` - Fixed a couple of bugs where SideNav would remain inert when no longer minimized (or would not be inert when minimized) diff --git a/.changeset/warm-needles-boil.md b/.changeset/warm-needles-boil.md deleted file mode 100644 index c6ee1d2895..0000000000 --- a/.changeset/warm-needles-boil.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@hashicorp/design-system-components": patch ---- - -Fixed issue with icon sprite not initiated diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md index dc7b9dea67..02c89b8980 100644 --- a/packages/components/CHANGELOG.md +++ b/packages/components/CHANGELOG.md @@ -1,5 +1,29 @@ # @hashicorp/design-system-components +## 4.11.1 + +### Patch Changes + +`DialogPrimitive` - Fixed issue with `box-sizing` inheritance + +`Modal`/`Flyout` - Updated `box-sizing` inheritance via `DialogPrimitive` fix + +[#2442](https://github.com/hashicorp/design-system/pull/2442) + +
+ +`Hds::SideNav` - Fixed a couple of bugs where SideNav would remain inert when no longer minimized (or would not be inert when minimized) + +[#2431](https://github.com/hashicorp/design-system/pull/2431) - Thanks [@DingoEatingFuzz](https://github.com/DingoEatingFuzz) for the contribution! 🙏 + +
+ +Fixed issue with icon sprite not initiated + +[#2433](https://github.com/hashicorp/design-system/pull/2433) - Thanks [@aklkv](https://github.com/aklkv) for the contribution! 🙏 + +
+ ## 4.11.0 [4.11.0 documentation](https://hds-website-4-11-0.vercel.app/) @@ -937,7 +961,7 @@ Alternatively, you can import the CSS by adding this configuration in `ember-cli ```js app.import( - 'node_modules/@hashicorp/design-system-components/dist/styles/@hashicorp/design-system-components.css' + "node_modules/@hashicorp/design-system-components/dist/styles/@hashicorp/design-system-components.css", ); ``` diff --git a/packages/components/package.json b/packages/components/package.json index 5e64e1ff9d..700910a207 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -1,6 +1,6 @@ { "name": "@hashicorp/design-system-components", - "version": "4.11.0", + "version": "4.11.1", "description": "Helios Design System Components", "keywords": [ "hashicorp", diff --git a/website/docs/whats-new/release-notes/partials/components.md b/website/docs/whats-new/release-notes/partials/components.md index e4a380f503..398e00f9ff 100644 --- a/website/docs/whats-new/release-notes/partials/components.md +++ b/website/docs/whats-new/release-notes/partials/components.md @@ -12,6 +12,30 @@

+## 4.11.1 + +**Patch changes** + +`DialogPrimitive` - Fixed issue with `box-sizing` inheritance + +`Modal`/`Flyout` - Updated `box-sizing` inheritance via `DialogPrimitive` fix + +[#2442](https://github.com/hashicorp/design-system/pull/2442) + +
+ +`Hds::SideNav` - Fixed a couple of bugs where SideNav would remain inert when no longer minimized (or would not be inert when minimized) + +[#2431](https://github.com/hashicorp/design-system/pull/2431) - Thanks [@DingoEatingFuzz](https://github.com/DingoEatingFuzz) for the contribution! 🙏 + +
+ +Fixed issue with icon sprite not initiated + +[#2433](https://github.com/hashicorp/design-system/pull/2433) - Thanks [@aklkv](https://github.com/aklkv) for the contribution! 🙏 + +
+ ## 4.11.0 [4.11.0 documentation](https://hds-website-4-11-0.vercel.app/) @@ -949,7 +973,7 @@ Alternatively, you can import the CSS by adding this configuration in `ember-cli ```js app.import( - 'node_modules/@hashicorp/design-system-components/dist/styles/@hashicorp/design-system-components.css' + "node_modules/@hashicorp/design-system-components/dist/styles/@hashicorp/design-system-components.css", ); ``` @@ -1079,49 +1103,6 @@ _Since this is an update brand colors and product icons, we consider this a `min - @hashicorp/design-system-tokens@1.11.0 - @hashicorp/ember-flight-icons@4.1.0 -## 3.5.0 - -[3.5.0 documentation](https://hds-website-3-5-0.vercel.app/) - -**Minor changes** - -`IconTile` - updated component adding support for `vault-radar` product - -[#1904](https://github.com/hashicorp/design-system/pull/1904) - -
- -**Patch changes** - -`SideNav::List::Title`, `SideNav::List::BackLink`, `SideNav::List::Link`: fixed issue with long text strings without spaces not wrapping - -[#1899](https://github.com/hashicorp/design-system/pull/1899) - -
- -Added `hds-` prefix to Sass variables for component styles (where missing). - -[#1903](https://github.com/hashicorp/design-system/pull/1903) - -
- -`Tabs` - removed `@cached` decorator and the associated `ember-cached-decorator-polyfill` - -[#1905](https://github.com/hashicorp/design-system/pull/1905) - -
- -`CodeBlock` - Fixed the default token color in the syntax highlighting theme. - -[#1893](https://github.com/hashicorp/design-system/pull/1893) - -
- -**🔄 Updated dependencies:** - -- @hashicorp/design-system-tokens@1.10.0 -- @hashicorp/ember-flight-icons@4.0.6 - ---