@hashicorp/design-system-components 2.3.2 → 2.3.3
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,13 @@
|
|
|
1
1
|
# @hashicorp/design-system-components
|
|
2
2
|
|
|
3
|
+
## 2.3.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1350](https://github.com/hashicorp/design-system/pull/1350) [`be5c5aad8`](https://github.com/hashicorp/design-system/commit/be5c5aad8fb9d59ecc57be5f78a45619bf18ce10) Thanks [@KristinLBradley](https://github.com/KristinLBradley)! - `RadioCard` - Update CSS to enable wrapping of long strings in label which were overflowing the container
|
|
8
|
+
|
|
9
|
+
- [#1353](https://github.com/hashicorp/design-system/pull/1353) [`0ed127294`](https://github.com/hashicorp/design-system/commit/0ed127294e66fa7d7412f40eb82ed4c3a89e3763) Thanks [@didoo](https://github.com/didoo)! - removed `z-index` value from `AppFrame::Footer`
|
|
10
|
+
|
|
3
11
|
## 2.3.2
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -30,7 +30,7 @@ export default class HdsDisclosureComponent extends Component {
|
|
|
30
30
|
|
|
31
31
|
@action
|
|
32
32
|
onFocusOut(event) {
|
|
33
|
-
// due to
|
|
33
|
+
// due to inconsistent implementation of relatedTarget across browsers we use the activeElement as a fallback
|
|
34
34
|
// if the related target is not part of the disclosed content we close the disclosed container
|
|
35
35
|
if (!this.element.contains(event.relatedTarget || document.activeElement)) {
|
|
36
36
|
this.close();
|