@wordpress/base-styles 4.49.0 → 5.0.1
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 +6 -0
- package/_z-index.scss +4 -9
- package/package.json +6 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 5.0.0 (2024-05-31)
|
|
6
|
+
|
|
7
|
+
### Breaking Changes
|
|
8
|
+
|
|
9
|
+
- Increase the minimum required Node.js version to v18.12.0 matching long-term support releases ([#31270](https://github.com/WordPress/gutenberg/pull/61930)). Learn more about [Node.js releases](https://nodejs.org/en/about/previous-releases).
|
|
10
|
+
|
|
5
11
|
## 4.49.0 (2024-05-16)
|
|
6
12
|
|
|
7
13
|
## 4.48.0 (2024-05-02)
|
package/_z-index.scss
CHANGED
|
@@ -10,8 +10,7 @@ $z-layers: (
|
|
|
10
10
|
".block-library-classic__toolbar": 31, // When scrolled to top this toolbar needs to sit over block-editor-block-toolbar
|
|
11
11
|
".block-editor-block-list__block-selection-button": 22,
|
|
12
12
|
".components-form-toggle__input": 1,
|
|
13
|
-
".
|
|
14
|
-
".edit-site-code-editor__toolbar": 1,
|
|
13
|
+
".editor-text-editor__toolbar": 1,
|
|
15
14
|
|
|
16
15
|
// These next three share a stacking context
|
|
17
16
|
".block-library-template-part__selection-search": 2, // higher sticky element
|
|
@@ -87,13 +86,12 @@ $z-layers: (
|
|
|
87
86
|
// Show sidebar above wp-admin navigation bar for mobile viewports:
|
|
88
87
|
// #wpadminbar { z-index: 99999 }
|
|
89
88
|
".interface-interface-skeleton__sidebar": 100000,
|
|
90
|
-
".edit-post-layout__toggle-sidebar-panel": 100000,
|
|
91
89
|
".editor-layout__toggle-sidebar-panel": 100000,
|
|
92
90
|
".edit-widgets-sidebar": 100000,
|
|
93
|
-
".
|
|
91
|
+
".editor-post-publish-panel": 100001,
|
|
94
92
|
// For larger views, the wp-admin navbar dropdown should be at top of
|
|
95
93
|
// the Publish Post sidebar.
|
|
96
|
-
".
|
|
94
|
+
".editor-post-publish-panel {greater than small}": 99998,
|
|
97
95
|
|
|
98
96
|
// For larger views, the wp-admin navbar dropdown should be on top of
|
|
99
97
|
// the multi-entity saving sidebar.
|
|
@@ -126,7 +124,7 @@ $z-layers: (
|
|
|
126
124
|
// Should be above the popover (dropdown)
|
|
127
125
|
".reusable-blocks-menu-items__convert-modal": 1000001,
|
|
128
126
|
".patterns-menu-items__convert-modal": 1000001,
|
|
129
|
-
".
|
|
127
|
+
".editor-create-template-part-modal": 1000001,
|
|
130
128
|
".block-editor-block-lock-modal": 1000001,
|
|
131
129
|
".block-editor-template-part__selection-modal": 1000001,
|
|
132
130
|
".block-editor-block-rename-modal": 1000001,
|
|
@@ -191,11 +189,8 @@ $z-layers: (
|
|
|
191
189
|
".customize-widgets__block-toolbar": 7,
|
|
192
190
|
|
|
193
191
|
// Site editor layout
|
|
194
|
-
".edit-site-layout__header-container": 4,
|
|
195
|
-
".edit-site-layout__hub": 3,
|
|
196
192
|
".edit-site-page-header": 2,
|
|
197
193
|
".edit-site-page-content": 1,
|
|
198
|
-
".edit-site-patterns__header": 2,
|
|
199
194
|
".edit-site-patterns__dataviews-list-pagination": 2,
|
|
200
195
|
".edit-site-templates__dataviews-list-pagination": 2,
|
|
201
196
|
".edit-site-layout__canvas-container": 2,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/base-styles",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"description": "Base SCSS utilities and variables for WordPress.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -20,8 +20,12 @@
|
|
|
20
20
|
"bugs": {
|
|
21
21
|
"url": "https://github.com/WordPress/gutenberg/issues"
|
|
22
22
|
},
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=18.12.0",
|
|
25
|
+
"npm": ">=8.19.2"
|
|
26
|
+
},
|
|
23
27
|
"publishConfig": {
|
|
24
28
|
"access": "public"
|
|
25
29
|
},
|
|
26
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "0e973525f7787401b5a544e0727774d52a78639f"
|
|
27
31
|
}
|