@hashicorp/design-system-components 0.3.2 → 0.4.0
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
|
+
## 0.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#117](https://github.com/hashicorp/design-system/pull/117) [`e78f6df8`](https://github.com/hashicorp/design-system/commit/e78f6df8f7488f9f97e8de2a5dc3464b2a390725) Thanks [@didoo](https://github.com/didoo)! - added a stacking context for the “Button” component so that the focus z-index is isolated in the button
|
|
8
|
+
|
|
3
9
|
## 0.3.2
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -21,6 +21,7 @@ $hds-button-focus-border-width: 3px;
|
|
|
21
21
|
box-sizing: border-box; // TODO https://github.com/hashicorp/design-system-components/issues/46
|
|
22
22
|
display: flex;
|
|
23
23
|
font-family: var(--token-typography-font-stack-text);
|
|
24
|
+
isolation: isolate;
|
|
24
25
|
justify-content: center;
|
|
25
26
|
outline-style: solid; // used to avoid double outline+focus-ring in Safari (see https://github.com/hashicorp/design-system-components/issues/161#issuecomment-1031548656)
|
|
26
27
|
outline-color: transparent; // We need this to be transparent for a11y
|