@wordpress/base-styles 4.49.0 → 5.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 +6 -0
- package/_z-index.scss +2 -4
- 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
|
|
@@ -126,7 +125,7 @@ $z-layers: (
|
|
|
126
125
|
// Should be above the popover (dropdown)
|
|
127
126
|
".reusable-blocks-menu-items__convert-modal": 1000001,
|
|
128
127
|
".patterns-menu-items__convert-modal": 1000001,
|
|
129
|
-
".
|
|
128
|
+
".editor-create-template-part-modal": 1000001,
|
|
130
129
|
".block-editor-block-lock-modal": 1000001,
|
|
131
130
|
".block-editor-template-part__selection-modal": 1000001,
|
|
132
131
|
".block-editor-block-rename-modal": 1000001,
|
|
@@ -195,7 +194,6 @@ $z-layers: (
|
|
|
195
194
|
".edit-site-layout__hub": 3,
|
|
196
195
|
".edit-site-page-header": 2,
|
|
197
196
|
".edit-site-page-content": 1,
|
|
198
|
-
".edit-site-patterns__header": 2,
|
|
199
197
|
".edit-site-patterns__dataviews-list-pagination": 2,
|
|
200
198
|
".edit-site-templates__dataviews-list-pagination": 2,
|
|
201
199
|
".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.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",
|
|
@@ -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": "2f30cddff15723ac7017fd009fc5913b7b419400"
|
|
27
31
|
}
|