Skip to content

Commit 595a03c

Browse files
authored
Version Packages (#3166)
1 parent 0854cac commit 595a03c

File tree

11 files changed

+63
-261
lines changed

11 files changed

+63
-261
lines changed

.changeset/few-nails-kneel.md

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

.changeset/shaggy-books-rescue.md

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

packages/components/CHANGELOG.md

Lines changed: 16 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,29 @@
11
# @hashicorp/design-system-components
22

3+
## 4.23.1
4+
5+
### Patch Changes
6+
7+
8+
`Stepper::Nav` - Fixed bug with stacking context styles causing step content's z-index to not work as expected
9+
10+
11+
<small class="doc-whats-new-changelog-metadata">[#3176](https://github.com/hashicorp/design-system/pull/3176)</small>
12+
13+
<div class="doc-whats-new-changelog-separator"></div>
14+
15+
**🔄 Updated dependencies:**
16+
17+
- @hashicorp/design-system-tokens@2.3.1
18+
319
## 4.23.0
420

521
[4.23.0 documentation](https://hds-website-4-23-0.vercel.app/)
622

723
### Minor Changes
824

9-
1025
`CodeEditor` - Added a `cspNonce` argument which passes a value of the same name to the `hds-code-editor` modifier. `cspNonce` is used to add a nonce value to the style tag
1126

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

1529
<div class="doc-whats-new-changelog-separator"></div>
@@ -20,19 +34,14 @@
2034

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

23-
2437
`Card` - Updated all exported types to use template literals instead of enum values.
2538

26-
27-
2839
`IconTile` - Updated exported `HdsIconTileColors` type to use template literals instead of enum values.
2940

30-
3141
<small class="doc-whats-new-changelog-metadata">[#3106](https://github.com/hashicorp/design-system/pull/3106)</small>
3242

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

35-
3645
`AdvancedTable` - Added features and fixed issues for column pinning including:
3746

3847
- Added support for pinning first column in context menu
@@ -43,68 +52,48 @@
4352

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

46-
4755
`AdvancedTable` - Fixed bug with automatic column resizing and scroll-shadow placement.
4856

49-
5057
<small class="doc-whats-new-changelog-metadata">[#3081](https://github.com/hashicorp/design-system/pull/3081)</small>
5158

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

54-
5561
`AppHeader` - return `close` callback to the `:logo` named block so the menu actions can be hidden programmatically when the component is in a mobile view.
5662

57-
5863
<small class="doc-whats-new-changelog-metadata">[#3121](https://github.com/hashicorp/design-system/pull/3121)</small>
5964

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

6267
### Patch Changes
6368

64-
6569
`AdvancedTable` - simplified `AdvancedTable::Tr` type signature so the `@selectionKey` argument is not incorrectly marked as required.
6670

67-
6871
<small class="doc-whats-new-changelog-metadata">[#3108](https://github.com/hashicorp/design-system/pull/3108)</small>
6972

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

72-
7375
`PopoverPrimitive` - Updated the type of the `hidePopover` callback to allow an optional event to be passed.
7476

75-
76-
7777
`RichTooltip` - Updated the type of the `close` callback to allow an optional event to be passed.
7878

79-
80-
8179
`Dropdown` - Updated the type of the `close` callback to allow an optional event to be passed and to make it always returned.
8280

83-
8481
<small class="doc-whats-new-changelog-metadata">[#3118](https://github.com/hashicorp/design-system/pull/3118)</small>
8582

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

88-
8985
`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
9086

91-
9287
<small class="doc-whats-new-changelog-metadata">[#3116](https://github.com/hashicorp/design-system/pull/3116)</small>
9388

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

96-
9791
`Button` - Removed CSS declaration for pseudo element in disabled state
9892

99-
100-
10193
`Dropdown` - Removed CSS declaration for pseudo element in disabled state
10294

103-
104-
10595
`FileInput` - Removed CSS declaration for pseudo element in disabled state that led to invalid CSS (ignored by browsers)
10696

107-
10897
<small class="doc-whats-new-changelog-metadata">[#3131](https://github.com/hashicorp/design-system/pull/3131)</small>
10998

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

packages/components/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hashicorp/design-system-components",
3-
"version": "4.23.0",
3+
"version": "4.23.1",
44
"description": "Helios Design System Components",
55
"keywords": [
66
"hashicorp",
@@ -51,7 +51,7 @@
5151
"@embroider/macros": "^1.18.1",
5252
"@embroider/util": "^1.13.4",
5353
"@floating-ui/dom": "^1.6.12",
54-
"@hashicorp/design-system-tokens": "workspace:^2.3.0",
54+
"@hashicorp/design-system-tokens": "workspace:^2.3.1",
5555
"@hashicorp/flight-icons": "workspace:^3.13.0",
5656
"@lezer/highlight": "^1.2.1",
5757
"@nullvoxpopuli/ember-composable-helpers": "^5.2.11",

packages/tokens/CHANGELOG.md

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

3+
## 2.3.1
4+
5+
### Patch Changes
6+
7+
`cloud-ui/email` - Fixed CSS helpers for "elevation" styles
8+
9+
<small class="doc-whats-new-changelog-metadata">[#3158](https://github.com/hashicorp/design-system/pull/3158)</small>
10+
11+
<div class="doc-whats-new-changelog-separator"></div>
12+
313
## 2.3.0
414

515
### Minor Changes
@@ -224,7 +234,6 @@ This release signifies the first major release of the HashiCorp Design System. M
224234
### Minor Changes
225235

226236
- [#136](https://github.com/hashicorp/design-system/pull/136) [`c17f142c`](https://github.com/hashicorp/design-system/commit/c17f142c0c938b471b696820d1fa440f62f7315b) Thanks [@didoo](https://github.com/didoo)! - Updated the font-stack design tokens in “typography”
227-
228237
- removed `SF Pro Display/Text` in `Display/Text` (we can rely on `-apple-system + BlinkMacSystemFont`)
229238
- replaced `Segoe UI Display/Text` with `Segoe UI` in `Display/Text`
230239
- added `Helvetica, Arial` to the `sans` block in `Display/Text`

packages/tokens/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-tokens",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"description": "Helios Design Tokens",
55
"keywords": [
66
"hashicorp",

pnpm-lock.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/docs/components/stepper/nav/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ navigation:
2222
- tracker
2323
- list
2424
- indicator
25+
status:
26+
updated: 4.23.1
2527
---
2628

2729
<section data-tab="Guidelines">

website/docs/components/stepper/nav/partials/version-history/version-history.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 4.23.1
2+
3+
Fixed bug with stacking context styles causing step content's z-index to not work as expected
4+
5+
16
## 4.20.1
27

38
Updated signature to use `WithBoundArgs` instead of `ComponentLike` for contextual components to resolve linting issues

0 commit comments

Comments
 (0)