@wordpress/base-styles 4.20.0 → 4.21.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
@@ -2,6 +2,8 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 4.21.0 (2023-03-29)
6
+
5
7
  ## 4.20.0 (2023-03-15)
6
8
 
7
9
  ## 4.19.0 (2023-03-01)
package/_z-index.scss CHANGED
@@ -170,6 +170,11 @@ $z-layers: (
170
170
  // Needs to be higher than .components-circular-option-picker__option.is-pressed.
171
171
  ".components-circular-option-picker__option.is-pressed + svg": 2,
172
172
 
173
+ // The following two indexes are needed so that the swatches (and their tooltips)
174
+ // always render on top of the rest of the component's UI.
175
+ ".components-circular-option-picker__swatches": 1,
176
+ "> *:not(.components-circular-option-picker__swatches)": 0,
177
+
173
178
  // Appear under the customizer heading UI, but over anything else.
174
179
  ".customize-widgets__topbar": 8,
175
180
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/base-styles",
3
- "version": "4.20.0",
3
+ "version": "4.21.0",
4
4
  "description": "Base SCSS utilities and variables for WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -23,5 +23,5 @@
23
23
  "publishConfig": {
24
24
  "access": "public"
25
25
  },
26
- "gitHead": "9534a7b3bbf07c1d40b94fdb7a3d091f297bfb06"
26
+ "gitHead": "d5c28a67b11e91e3e4b8e90346bfcb90909364d6"
27
27
  }