@wordpress/base-styles 7.0.0 → 8.0.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,32 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 8.0.0 (2026-05-14)
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), [#78181](https://github.com/WordPress/gutenberg/pull/78181)):
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-post-meta-boxes-area .spinner`
16
+ - `.edit-post-meta-boxes-area.is-loading::before`
17
+ - `.edit-site-layout__canvas-container.is-resizing::after`
18
+ - `.edit-site-layout__canvas-container`
19
+ - `.edit-site-layout__sidebar`
20
+ - `.edit-site-sidebar-navigation-screen__title-icon`
21
+ - `.edit-site-templates__dataviews-list-pagination`
22
+ - `.editor-post-template__swap-template-search`
23
+ - `.editor-start-page-options__modal__actions`
24
+ - `.editor-start-template-options__modal__actions`
25
+ - `.wp-block-cover__image-background`
26
+ - `.wp-block-cover__inner-container`
27
+ - `.wp-block-cover__video-background`
28
+ - `.wp-block-cover.has-background-dim::before`
29
+ - `.wp-block-cover.is-placeholder .components-placeholder.is-large`
30
+
5
31
  ## 7.0.0 (2026-04-29)
6
32
 
7
33
  ### Breaking Changes
package/_z-index.scss CHANGED
@@ -8,26 +8,11 @@ $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
- ".edit-post-meta-boxes-area.is-loading::before": 1,
18
- ".edit-post-meta-boxes-area .spinner": 5,
19
- ".components-popover__close": 5,
20
12
  ".edit-post-layout__footer": 30,
21
13
  ".interface-interface-skeleton__header": 30,
22
14
  ".interface-interface-skeleton__content": 20,
23
15
 
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
16
  // Fixed position appender:
32
17
  ".block-editor-block-list__block .block-list-appender": 2,
33
18
 
@@ -135,29 +120,12 @@ $z-layers: (
135
120
  // Show tooltips above NUX tips, wp-admin menus, submenus, and sidebar:
136
121
  ".components-tooltip": 1000002,
137
122
 
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
123
  // Appear under the customizer heading UI, but over anything else.
144
124
  ".customize-widgets__topbar": 8,
145
125
 
146
126
  // Appear under the topbar.
147
127
  ".customize-widgets__block-toolbar": 7,
148
128
 
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
129
  // Ensure checkbox + actions don't overlap table header
162
130
  ".dataviews-view-table thead": 1,
163
131
 
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.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",
@@ -45,5 +45,5 @@
45
45
  "publishConfig": {
46
46
  "access": "public"
47
47
  },
48
- "gitHead": "8c229eaed0e88c9827e2da3d73a78f9ddd77714b"
48
+ "gitHead": "51264e33b95fadff9a06b68141e674ce9cde9675"
49
49
  }