@hashicorp/design-system-components 2.4.1 → 2.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @hashicorp/design-system-components
|
|
2
2
|
|
|
3
|
+
## 2.4.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1380](https://github.com/hashicorp/design-system/pull/1380) [`cd16ccc19`](https://github.com/hashicorp/design-system/commit/cd16ccc19e0992be2bed5d567880d2d0d36f1880) Thanks [@MelSumner](https://github.com/MelSumner)! - A11y Fix: removes `aria-label` from stepper/indicator and from task/indicator, which was causing an accessibility test error.
|
|
8
|
+
|
|
3
9
|
## 2.4.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -10,7 +10,6 @@ Compatibility
|
|
|
10
10
|
------------------------------------------------------------------------------
|
|
11
11
|
|
|
12
12
|
* Ember.js v3.28 or above
|
|
13
|
-
* Note: The library _should_ work with earlier versions of Ember, but we only test with Ember 3.28 and newer
|
|
14
13
|
* Ember CLI v3.28 or above
|
|
15
14
|
* Node.js v12 or above
|
|
16
15
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Copyright (c) HashiCorp, Inc.
|
|
3
3
|
SPDX-License-Identifier: MPL-2.0
|
|
4
4
|
}}
|
|
5
|
-
<div class={{this.classNames}} ...attributes
|
|
5
|
+
<div class={{this.classNames}} ...attributes>
|
|
6
6
|
<div class="hds-stepper-indicator-step__svg-hexagon">
|
|
7
7
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
|
8
8
|
<path
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
Copyright (c) HashiCorp, Inc.
|
|
3
3
|
SPDX-License-Identifier: MPL-2.0
|
|
4
4
|
}}
|
|
5
|
-
<div class={{this.classNames}} ...attributes
|
|
5
|
+
<div class={{this.classNames}} ...attributes>
|
|
6
6
|
<FlightIcon class="hds-stepper-indicator-task__icon" @name={{this.iconName}} @size="16" />
|
|
7
7
|
</div>
|