@wordpress/base-styles 4.15.0 → 4.17.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,10 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 4.17.0 (2023-02-01)
6
+
7
+ ## 4.16.0 (2023-01-11)
8
+
5
9
  ## 4.15.0 (2023-01-02)
6
10
 
7
11
  ## 4.14.0 (2022-12-14)
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ## Gutenberg
2
2
 
3
- Copyright 2016-2022 by the contributors
3
+ Copyright 2016-2023 by the contributors
4
4
 
5
5
  **License for Contributions (on and after April 15, 2021)**
6
6
 
package/_z-index.scss CHANGED
@@ -14,6 +14,7 @@ $z-layers: (
14
14
 
15
15
  // These next three share a stacking context
16
16
  ".block-library-template-part__selection-search": 2, // higher sticky element
17
+ ".block-library-query-pattern__selection-search": 2, // higher sticky element
17
18
 
18
19
  // These next two share a stacking context
19
20
  ".interface-complementary-area .components-panel" : 0, // lower scrolling content
@@ -135,7 +136,6 @@ $z-layers: (
135
136
  ".components-popover.interface-more-menu__content": 99998,
136
137
  ".components-popover.block-editor-rich-text__inline-format-toolbar": 99998,
137
138
  ".components-popover.block-editor-warning__dropdown": 99998,
138
- ".components-popover.edit-navigation-menu-actions__switcher-dropdown": 99998,
139
139
 
140
140
  ".components-autocomplete__results": 1000000,
141
141
 
@@ -170,7 +170,6 @@ $z-layers: (
170
170
  ".components-circular-option-picker__option.is-pressed": 1,
171
171
  // Needs to be higher than .components-circular-option-picker__option.is-pressed.
172
172
  ".components-circular-option-picker__option.is-pressed + svg": 2,
173
- ".edit-navigation-layout__overlay": 999,
174
173
 
175
174
  // Appear under the customizer heading UI, but over anything else.
176
175
  ".customize-widgets__topbar": 8,
@@ -183,6 +182,7 @@ $z-layers: (
183
182
  ".edit-site-layout__header": 2,
184
183
  ".edit-site-layout__canvas-container": 2,
185
184
  ".edit-site-layout__sidebar": 1,
185
+ ".edit-site-layout__canvas-container.is-resizing::after": 100,
186
186
  );
187
187
 
188
188
  @function z-index( $key ) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/base-styles",
3
- "version": "4.15.0",
3
+ "version": "4.17.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": "200bee7b06b15f6fa655e25b6ab69cbd6b49a357"
26
+ "gitHead": "cab6ebe2b4c5dbacfd753dcae4a2406559c4813c"
27
27
  }