Skip to content

Commit 45b1b66

Browse files
Version Packages
1 parent 7c8221e commit 45b1b66

File tree

11 files changed

+144
-176
lines changed

11 files changed

+144
-176
lines changed

.changeset/chilly-cities-stare.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

.changeset/dark-pandas-buy.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/heavy-impalas-call.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/hungry-windows-jog.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/kind-rooms-cry.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/rich-zoos-type.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

packages/codemods/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @hashicorp/design-system-codemods
22

3+
## 0.5.2
4+
5+
### Patch Changes
6+
7+
`dropdown-list-item-interactive` - Reworked codemod to support usage in complex conditionals, and values with concatenated handlebars values.
8+
9+
<small class="doc-whats-new-changelog-metadata">[#3303](https://github.com/hashicorp/design-system/pull/3303)</small>
10+
11+
<div class="doc-whats-new-changelog-separator"></div>
12+
313
## 0.5.1
414

515
### Patch Changes

packages/codemods/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@hashicorp/design-system-codemods",
33
"description": "Helios Design System codemods",
4-
"version": "0.5.1",
4+
"version": "0.5.2",
55
"scripts": {
66
"lint": "eslint --cache .",
77
"lint:fix": "eslint . --fix",

packages/components/CHANGELOG.md

Lines changed: 66 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,83 @@
11
# @hashicorp/design-system-components
22

3+
## 4.24.1
4+
5+
### Patch Changes
6+
7+
<!-- START components/code-block -->
8+
9+
`CodeBlock` - Fixed a11y issue with its `CopyButton` by adding `copySuccessMessageText` parameter to an aria-live region to announce to screen readers when content has been copied
10+
11+
<!-- END -->
12+
13+
<!-- START components/copy/button -->
14+
15+
`CopyButton` - Fixed a11y issue by adding `ariaMessageText` parameter to an aria-live region to announce to screen readers when content has been copied
16+
17+
<!-- END -->
18+
19+
<small class="doc-whats-new-changelog-metadata">[#3304](https://github.com/hashicorp/design-system/pull/3304)</small>
20+
21+
<div class="doc-whats-new-changelog-separator"></div>
22+
23+
<!-- START components/form/file-input -->
24+
25+
`FileInput` - Added width of 100% to prevent the component from overflowing its container and making it consistent with other Input components
26+
27+
<!-- END -->
28+
29+
<small class="doc-whats-new-changelog-metadata">[#3318](https://github.com/hashicorp/design-system/pull/3318)</small>
30+
31+
<div class="doc-whats-new-changelog-separator"></div>
32+
33+
<!-- START components/dialog-primitive -->
34+
35+
`DialogPrimitive` - changed `DialogPrimitiveBody` z-index from 0 to -1 to keep it focusable without showing visible focus styles.
36+
37+
<!-- END -->
38+
39+
<small class="doc-whats-new-changelog-metadata">[#3316](https://github.com/hashicorp/design-system/pull/3316)</small>
40+
41+
<div class="doc-whats-new-changelog-separator"></div>
42+
43+
<!-- START components/app-footer -->
44+
45+
`AppFooter` - Updated company name in copyright text
46+
47+
<!-- END -->
48+
49+
<small class="doc-whats-new-changelog-metadata">[#3314](https://github.com/hashicorp/design-system/pull/3314)</small>
50+
51+
<div class="doc-whats-new-changelog-separator"></div>
52+
53+
<!-- START components/modal -->
54+
55+
`Modal` - Refactored the component to not use `ember-render-modifiers` which fixes issues where the DOM may not be cleaned up when the Modal is closed.
56+
57+
<!-- END -->
58+
59+
<!-- START components/flyout -->
60+
61+
`Flyout` - Refactored the component to not use `ember-render-modifiers` which fixes issues where the DOM may not be cleaned up when the Flyout is closed.
62+
63+
<!-- END -->
64+
65+
<small class="doc-whats-new-changelog-metadata">[#3215](https://github.com/hashicorp/design-system/pull/3215)</small>
66+
67+
<div class="doc-whats-new-changelog-separator"></div>
68+
369
## 4.24.0
470

571
[4.24.0 documentation](https://hds-website-4-24-0.vercel.app/)
672

773
### Minor Changes
874

9-
1075
`PopoverPrimitive` - Added support for dynamic swap/injection of the toggle element.
1176

12-
1377
<small class="doc-whats-new-changelog-metadata">[#3189](https://github.com/hashicorp/design-system/pull/3189)</small>
1478

1579
<div class="doc-whats-new-changelog-separator"></div>
1680

17-
1881
`AdvancedTable` - Added support for column reordering.
1982

2083
- Added `@hasReorderableColumns` argument. When set to `true`, enables column reordering.
@@ -28,14 +91,10 @@
2891

2992
### Patch Changes
3093

31-
3294
`Table` - Update the model and returned `B.data` to use generic types, so the type of the data is retained.
3395

34-
35-
3696
`KeyValueInputs` - Update the data and returned `R.rowData` to use generic types, so the type of the data is retained.
3797

38-
3998
<small class="doc-whats-new-changelog-metadata">[#3150](https://github.com/hashicorp/design-system/pull/3150) - Thanks [@aklkv](https://github.com/aklkv) for the contribution! 🙏</small>
4099

41100
<div class="doc-whats-new-changelog-separator"></div>

packages/components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hashicorp/design-system-components",
3-
"version": "4.24.0",
3+
"version": "4.24.1",
44
"description": "Helios Design System Components",
55
"keywords": [
66
"hashicorp",

0 commit comments

Comments
 (0)