@pexip/components 18.0.1 → 18.1.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,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 18.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 7ee3659: Adds `stateAfterTransition` optional prop to `withTransition`.
8
+ - `unmount` makes the HoC return null (default)
9
+ - `hide` gives the HoC `display:none` style
10
+
11
+ ### Patch Changes
12
+
13
+ - ff51205: fix Video and Draggable component focus border
14
+ - b678653: Allow CollapsableContainer to set a data-testid
15
+
3
16
  ## 18.0.1
4
17
 
5
18
  ### Patch Changes
@@ -1,7 +1,8 @@
1
1
  @use 'sass:map';
2
2
  @import '../variables.scss';
3
3
 
4
- .light {
4
+ .light,
5
+ :global(.light) {
5
6
  @include create-token(
6
7
  light-box-shadow-focus,
7
8
  var(--surface-toggle-on-disabled)
@@ -12,7 +13,8 @@
12
13
  );
13
14
  }
14
15
 
15
- .dark {
16
+ .dark,
17
+ :global(.dark) {
16
18
  @include create-token(
17
19
  dark-box-shadow-focus,
18
20
  var(--surface-toggle-on-disabled)
@@ -91,6 +91,7 @@
91
91
  'box-shadow-hover': color('deep-blue-90'),
92
92
  'indicator-hover': color('deep-blue-50'),
93
93
  'background-focus': color('deep-blue-90'),
94
+ 'background-checked-focus': color('deep-blue-90'),
94
95
  'box-shadow-focus': color('green-100'),
95
96
  'background-checked': color('deep-blue-80'),
96
97
  'box-shadow-checked': color('deep-blue-50'),
@@ -109,6 +110,7 @@
109
110
  'box-shadow-hover': color('deep-blue-40'),
110
111
  'indicator-hover': color('deep-blue-50'),
111
112
  'background-focus': color('deep-blue-20'),
113
+ 'background-checked-focus': color('deep-blue-20'),
112
114
  'box-shadow-focus': color('green-100'),
113
115
  'background-checked': color('deep-blue-40'),
114
116
  'box-shadow-checked': color('deep-blue-50'),