@wordpress/base-styles 7.0.0 → 8.0.1-next.v.202605131006.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,30 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 8.0.0-next.0 (2026-05-13)
6
+
7
+ ### Breaking Changes
8
+
9
+ - Remove the following entries from the `z-index()` helper ([#77753](https://github.com/WordPress/gutenberg/pull/77753), [#77759](https://github.com/WordPress/gutenberg/pull/77759), [#77772](https://github.com/WordPress/gutenberg/pull/77772), [#77806](https://github.com/WordPress/gutenberg/pull/77806), [#77807](https://github.com/WordPress/gutenberg/pull/77807), [#77808](https://github.com/WordPress/gutenberg/pull/77808), [#78180](https://github.com/WordPress/gutenberg/pull/78180)):
10
+ - `.block-editor-block-manager__category-title`
11
+ - `.block-editor-block-manager__disabled-blocks-count`
12
+ - `.block-library-query-pattern__selection-search`
13
+ - `.block-library-template-part__selection-search`
14
+ - `.components-popover__close`
15
+ - `.edit-site-layout__canvas-container.is-resizing::after`
16
+ - `.edit-site-layout__canvas-container`
17
+ - `.edit-site-layout__sidebar`
18
+ - `.edit-site-sidebar-navigation-screen__title-icon`
19
+ - `.edit-site-templates__dataviews-list-pagination`
20
+ - `.editor-post-template__swap-template-search`
21
+ - `.editor-start-page-options__modal__actions`
22
+ - `.editor-start-template-options__modal__actions`
23
+ - `.wp-block-cover__image-background`
24
+ - `.wp-block-cover__inner-container`
25
+ - `.wp-block-cover__video-background`
26
+ - `.wp-block-cover.has-background-dim::before`
27
+ - `.wp-block-cover.is-placeholder .components-placeholder.is-large`
28
+
5
29
  ## 7.0.0 (2026-04-29)
6
30
 
7
31
  ### Breaking Changes
package/_z-index.scss CHANGED
@@ -8,26 +8,13 @@ $z-layers: (
8
8
  ".block-editor-block-list__block.is-selected": 20,
9
9
  ".editor-text-editor__toolbar": 1,
10
10
 
11
- // These next three share a stacking context
12
- ".block-library-template-part__selection-search": 2, // higher sticky element
13
- ".block-library-query-pattern__selection-search": 2, // higher sticky element
14
- ".editor-post-template__swap-template-search": 2, // higher sticky element
15
-
16
11
  ".components-modal__header": 10,
17
12
  ".edit-post-meta-boxes-area.is-loading::before": 1,
18
13
  ".edit-post-meta-boxes-area .spinner": 5,
19
- ".components-popover__close": 5,
20
14
  ".edit-post-layout__footer": 30,
21
15
  ".interface-interface-skeleton__header": 30,
22
16
  ".interface-interface-skeleton__content": 20,
23
17
 
24
- ".wp-block-cover.is-placeholder .components-placeholder.is-large": 1, // Cover block resizer component inside a large placeholder.
25
- // These z-index are now used only for a deprecated version of the cover block.
26
- ".wp-block-cover__inner-container": 1, // InnerBlocks area inside cover image block.
27
- ".wp-block-cover.has-background-dim::before": 1, // Overlay area inside block cover need to be higher than the video background.
28
- ".wp-block-cover__image-background": 0, // Image background inside cover block.
29
- ".wp-block-cover__video-background": 0, // Video background inside cover block.
30
-
31
18
  // Fixed position appender:
32
19
  ".block-editor-block-list__block .block-list-appender": 2,
33
20
 
@@ -135,29 +122,12 @@ $z-layers: (
135
122
  // Show tooltips above NUX tips, wp-admin menus, submenus, and sidebar:
136
123
  ".components-tooltip": 1000002,
137
124
 
138
- // Make sure block manager sticky category titles appear above the options
139
- ".block-editor-block-manager__category-title": 1,
140
- // And block manager sticky disabled block count is higher still
141
- ".block-editor-block-manager__disabled-blocks-count": 2,
142
-
143
125
  // Appear under the customizer heading UI, but over anything else.
144
126
  ".customize-widgets__topbar": 8,
145
127
 
146
128
  // Appear under the topbar.
147
129
  ".customize-widgets__block-toolbar": 7,
148
130
 
149
- // Site editor layout
150
- ".edit-site-templates__dataviews-list-pagination": 2,
151
- ".edit-site-layout__canvas-container": 2,
152
- ".edit-site-layout__sidebar": 1,
153
- ".edit-site-layout__canvas-container.is-resizing::after": 100,
154
- // Title needs to appear above other UI the section content.
155
- ".edit-site-sidebar-navigation-screen__title-icon": 1,
156
-
157
- // Ensure modal footer actions appear above modal contents
158
- ".editor-start-template-options__modal__actions": 1,
159
- ".editor-start-page-options__modal__actions": 1,
160
-
161
131
  // Ensure checkbox + actions don't overlap table header
162
132
  ".dataviews-view-table thead": 1,
163
133
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/base-styles",
3
- "version": "7.0.0",
3
+ "version": "8.0.1-next.v.202605131006.0+2a3d07cab",
4
4
  "description": "Base SCSS utilities and variables for WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -45,5 +45,5 @@
45
45
  "publishConfig": {
46
46
  "access": "public"
47
47
  },
48
- "gitHead": "8c229eaed0e88c9827e2da3d73a78f9ddd77714b"
48
+ "gitHead": "8804fa29bc78a1d98e5a4d40c3e180ddd907016c"
49
49
  }