Skip to content

Commit 79811ae

Browse files
Version Packages
1 parent 501efd5 commit 79811ae

File tree

7 files changed

+112
-74
lines changed

7 files changed

+112
-74
lines changed

.changeset/chatty-bobcats-hide.md

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

.changeset/light-facts-fall.md

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

.changeset/rich-worlds-taste.md

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

.changeset/tangy-bushes-matter.md

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

packages/components/CHANGELOG.md

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

3-
## 4.22.1
3+
## 4.23.0
4+
5+
### Minor Changes
6+
7+
<!-- START components/card -->
8+
9+
`Card` - Updated all exported types to use template literals instead of enum values.
10+
11+
<!-- END -->
12+
13+
<!-- START components/icon-tile -->
14+
15+
`IconTile` - Updated exported `HdsIconTileColors` type to use template literals instead of enum values.
16+
17+
<!-- END -->
18+
19+
<small class="doc-whats-new-changelog-metadata">[#3106](https://github.com/hashicorp/design-system/pull/3106)</small>
20+
21+
<div class="doc-whats-new-changelog-separator"></div>
22+
23+
<!-- START components/table/advanced-table -->
24+
25+
`AdvancedTable` - Added features and fixed issues for column pinning including:
26+
27+
- Added support for pinning first column in context menu
28+
- Translated template strings in context menu
29+
- Fixed style for scroll indicator when first column is sticky and has a px width
30+
<!-- END -->
31+
32+
<small class="doc-whats-new-changelog-metadata">[#3104](https://github.com/hashicorp/design-system/pull/3104)</small>
33+
34+
<div class="doc-whats-new-changelog-separator"></div>
435

536
### Patch Changes
637

38+
<!-- START components/table/advanced-table -->
739

8-
`AdvancedTable` - Fixed styles for right and center aligned cells.
40+
`AdvancedTable` - simplified `AdvancedTable::Tr` type signature so the `@selectionKey` argument is not incorrectly marked as required.
941

42+
<!-- END -->
1043

11-
<small class="doc-whats-new-changelog-metadata">[#3093](https://github.com/hashicorp/design-system/pull/3093)</small>
44+
<small class="doc-whats-new-changelog-metadata">[#3108](https://github.com/hashicorp/design-system/pull/3108)</small>
1245

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

48+
<!-- START components/app-header -->
1549

16-
`AppFrame` - Changed media query styles for frame header and sidebar containers to use level 3 vs level 4 CSS syntax
50+
`AppHeader` - Fixed classname so that non-active controls in the `AppHeader` will be styled as disabled when the `AppSideNav` is expanded and in overlay mode
51+
52+
<!-- END -->
53+
54+
<small class="doc-whats-new-changelog-metadata">[#3116](https://github.com/hashicorp/design-system/pull/3116)</small>
55+
56+
<div class="doc-whats-new-changelog-separator"></div>
57+
58+
## 4.22.1
1759

60+
### Patch Changes
61+
62+
`AdvancedTable` - Fixed styles for right and center aligned cells.
63+
64+
<small class="doc-whats-new-changelog-metadata">[#3093](https://github.com/hashicorp/design-system/pull/3093)</small>
65+
66+
<div class="doc-whats-new-changelog-separator"></div>
67+
68+
`AppFrame` - Changed media query styles for frame header and sidebar containers to use level 3 vs level 4 CSS syntax
1869

1970
<small class="doc-whats-new-changelog-metadata">[#3110](https://github.com/hashicorp/design-system/pull/3110)</small>
2071

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.22.1",
3+
"version": "4.23.0",
44
"description": "Helios Design System Components",
55
"keywords": [
66
"hashicorp",

website/docs/whats-new/release-notes/partials/components.md

Lines changed: 56 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,72 @@
1212
</a>
1313
</p>
1414

15-
## 4.22.1
15+
## 4.23.0
16+
17+
**Minor changes**
18+
19+
<!-- START components/card -->
20+
21+
`Card` - Updated all exported types to use template literals instead of enum values.
22+
23+
<!-- END -->
24+
25+
<!-- START components/icon-tile -->
26+
27+
`IconTile` - Updated exported `HdsIconTileColors` type to use template literals instead of enum values.
28+
29+
<!-- END -->
30+
31+
<small class="doc-whats-new-changelog-metadata">[#3106](https://github.com/hashicorp/design-system/pull/3106)</small>
32+
33+
<div class="doc-whats-new-changelog-separator"></div>
34+
35+
<!-- START components/table/advanced-table -->
36+
37+
`AdvancedTable` - Added features and fixed issues for column pinning including:
38+
39+
- Added support for pinning first column in context menu
40+
- Translated template strings in context menu
41+
- Fixed style for scroll indicator when first column is sticky and has a px width
42+
<!-- END -->
43+
44+
<small class="doc-whats-new-changelog-metadata">[#3104](https://github.com/hashicorp/design-system/pull/3104)</small>
45+
46+
<div class="doc-whats-new-changelog-separator"></div>
1647

1748
**Patch changes**
1849

50+
<!-- START components/table/advanced-table -->
1951

20-
`AdvancedTable` - Fixed styles for right and center aligned cells.
52+
`AdvancedTable` - simplified `AdvancedTable::Tr` type signature so the `@selectionKey` argument is not incorrectly marked as required.
2153

54+
<!-- END -->
2255

23-
<small class="doc-whats-new-changelog-metadata">[#3093](https://github.com/hashicorp/design-system/pull/3093)</small>
56+
<small class="doc-whats-new-changelog-metadata">[#3108](https://github.com/hashicorp/design-system/pull/3108)</small>
2457

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

60+
<!-- START components/app-header -->
2761

28-
`AppFrame` - Changed media query styles for frame header and sidebar containers to use level 3 vs level 4 CSS syntax
62+
`AppHeader` - Fixed classname so that non-active controls in the `AppHeader` will be styled as disabled when the `AppSideNav` is expanded and in overlay mode
63+
64+
<!-- END -->
65+
66+
<small class="doc-whats-new-changelog-metadata">[#3116](https://github.com/hashicorp/design-system/pull/3116)</small>
67+
68+
<div class="doc-whats-new-changelog-separator"></div>
69+
70+
## 4.22.1
2971

72+
**Patch changes**
73+
74+
`AdvancedTable` - Fixed styles for right and center aligned cells.
75+
76+
<small class="doc-whats-new-changelog-metadata">[#3093](https://github.com/hashicorp/design-system/pull/3093)</small>
77+
78+
<div class="doc-whats-new-changelog-separator"></div>
79+
80+
`AppFrame` - Changed media query styles for frame header and sidebar containers to use level 3 vs level 4 CSS syntax
3081

3182
<small class="doc-whats-new-changelog-metadata">[#3110](https://github.com/hashicorp/design-system/pull/3110)</small>
3283

@@ -1580,36 +1631,7 @@ Migrated all internal instances of `FlightIcon` to `Hds::Icon`
15801631

15811632
- @hashicorp/design-system-tokens@2.2.1
15821633

1583-
## 4.9.0
1584-
1585-
[4.9.0 documentation](https://hds-website-4-9-0.vercel.app/)
1586-
1587-
**Minor changes**
1588-
1589-
`Icon` - Added component:
1590-
1591-
`Hds::Icon` is meant to replace usage of the `FlightIcon` component from `ember-flight-icons`.
1592-
1593-
- Displays `block` by default. (`FlightIcon` displays `inline-block` by default)
1594-
- Exposes a set of predefined "foreground" colors via the `@color` argument
1595-
1596-
<small class="doc-whats-new-changelog-metadata">[#2207](https://github.com/hashicorp/design-system/pull/2207)</small>
1597-
1598-
<div class="doc-whats-new-changelog-separator"></div>
1599-
1600-
`CodeBlock`: Converted component to TypeScript
1601-
1602-
<small class="doc-whats-new-changelog-metadata">[#2313](https://github.com/hashicorp/design-system/pull/2313)</small>
1603-
1604-
<div class="doc-whats-new-changelog-separator"></div>
1605-
1606-
`TooltipButton`: Converted component to TypeScript
1607-
1608-
<small class="doc-whats-new-changelog-metadata">[#2317](https://github.com/hashicorp/design-system/pull/2317)</small>
1609-
1610-
<div class="doc-whats-new-changelog-separator"></div>
1611-
16121634

16131635
---
16141636

1615-
_[Read the full changelog](https://github.com/hashicorp/design-system/blob/main/packages/components/CHANGELOG.md)_
1637+
_[Read the full changelog](https://github.com/hashicorp/design-system/blob/main/packages/components/CHANGELOG.md)_

0 commit comments

Comments
 (0)