@automattic/jetpack-components 0.53.1 → 0.53.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
@@ -2,6 +2,13 @@
2
2
 
3
3
  ### This is a list detailing changes for the Jetpack RNA Components package releases.
4
4
 
5
+ ## [0.53.2] - 2024-05-13
6
+ ### Added
7
+ - Added --jp-gray-5 as an alias of --jp-gray to the theme [#37327]
8
+
9
+ ### Fixed
10
+ - Fixed notices z-index for global notices when modal is open [#37196]
11
+
5
12
  ## [0.53.1] - 2024-05-09
6
13
  ### Added
7
14
  - Added GlobalNotices component and useGlobalNotices hook [#37286]
@@ -1023,6 +1030,7 @@
1023
1030
  ### Changed
1024
1031
  - Update node version requirement to 14.16.1
1025
1032
 
1033
+ [0.53.2]: https://github.com/Automattic/jetpack-components/compare/0.53.1...0.53.2
1026
1034
  [0.53.1]: https://github.com/Automattic/jetpack-components/compare/0.53.0...0.53.1
1027
1035
  [0.53.0]: https://github.com/Automattic/jetpack-components/compare/0.52.1...0.53.0
1028
1036
  [0.52.1]: https://github.com/Automattic/jetpack-components/compare/0.52.0...0.52.1
@@ -6,6 +6,8 @@
6
6
  inset-block-start: auto; // top
7
7
  inset-block-end: 0; // bottom
8
8
  inset-inline: 0; // left and right
9
+ // Modals have 100000, so this needs to be above them
10
+ z-index: 100001;
9
11
 
10
12
  @include break-small {
11
13
  width: auto;
@@ -25,6 +25,7 @@ export const colors = {
25
25
  // Gray
26
26
  '--jp-gray': '#dcdcde',
27
27
  '--jp-gray-0': '#F6F7F7',
28
+ '--jp-gray-5': 'var(--jp-gray)',
28
29
  '--jp-gray-10': '#C3C4C7',
29
30
  '--jp-gray-20': '#A7AAAD',
30
31
  '--jp-gray-40': '#787C82',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/jetpack-components",
3
- "version": "0.53.1",
3
+ "version": "0.53.2",
4
4
  "description": "Jetpack Components Package",
5
5
  "author": "Automattic",
6
6
  "license": "GPL-2.0-or-later",