@wordpress/interface 6.0.0 → 6.1.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
|
@@ -351,10 +351,6 @@ body.is-fullscreen-mode .interface-interface-skeleton {
|
|
|
351
351
|
.interface-interface-skeleton__sidebar {
|
|
352
352
|
position: relative !important;
|
|
353
353
|
}
|
|
354
|
-
.is-sidebar-opened .interface-interface-skeleton__secondary-sidebar,
|
|
355
|
-
.is-sidebar-opened .interface-interface-skeleton__sidebar {
|
|
356
|
-
z-index: 90;
|
|
357
|
-
}
|
|
358
354
|
}
|
|
359
355
|
|
|
360
356
|
.interface-interface-skeleton__sidebar {
|
package/build-style/style.css
CHANGED
|
@@ -351,10 +351,6 @@ body.is-fullscreen-mode .interface-interface-skeleton {
|
|
|
351
351
|
.interface-interface-skeleton__sidebar {
|
|
352
352
|
position: relative !important;
|
|
353
353
|
}
|
|
354
|
-
.is-sidebar-opened .interface-interface-skeleton__secondary-sidebar,
|
|
355
|
-
.is-sidebar-opened .interface-interface-skeleton__sidebar {
|
|
356
|
-
z-index: 90;
|
|
357
|
-
}
|
|
358
354
|
}
|
|
359
355
|
|
|
360
356
|
.interface-interface-skeleton__sidebar {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/interface",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.1.0",
|
|
4
4
|
"description": "Interface module for WordPress. The package contains shared functionality across the modern JavaScript-based WordPress screens.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -33,18 +33,18 @@
|
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@babel/runtime": "^7.16.0",
|
|
36
|
-
"@wordpress/a11y": "^4.
|
|
37
|
-
"@wordpress/components": "^28.
|
|
38
|
-
"@wordpress/compose": "^7.
|
|
39
|
-
"@wordpress/data": "^10.
|
|
40
|
-
"@wordpress/deprecated": "^4.
|
|
41
|
-
"@wordpress/element": "^6.
|
|
42
|
-
"@wordpress/i18n": "^5.
|
|
43
|
-
"@wordpress/icons": "^10.
|
|
44
|
-
"@wordpress/plugins": "^7.
|
|
45
|
-
"@wordpress/preferences": "^4.
|
|
46
|
-
"@wordpress/private-apis": "^1.
|
|
47
|
-
"@wordpress/viewport": "^6.
|
|
36
|
+
"@wordpress/a11y": "^4.1.0",
|
|
37
|
+
"@wordpress/components": "^28.1.0",
|
|
38
|
+
"@wordpress/compose": "^7.1.0",
|
|
39
|
+
"@wordpress/data": "^10.1.0",
|
|
40
|
+
"@wordpress/deprecated": "^4.1.0",
|
|
41
|
+
"@wordpress/element": "^6.1.0",
|
|
42
|
+
"@wordpress/i18n": "^5.1.0",
|
|
43
|
+
"@wordpress/icons": "^10.1.0",
|
|
44
|
+
"@wordpress/plugins": "^7.1.0",
|
|
45
|
+
"@wordpress/preferences": "^4.1.0",
|
|
46
|
+
"@wordpress/private-apis": "^1.1.0",
|
|
47
|
+
"@wordpress/viewport": "^6.1.0",
|
|
48
48
|
"clsx": "^2.1.1"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"publishConfig": {
|
|
55
55
|
"access": "public"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "66d3bf12e67d16deddc4b4a9ec42e1d0bed3479a"
|
|
58
58
|
}
|
|
@@ -114,13 +114,6 @@ html.interface-interface-skeleton__html-container {
|
|
|
114
114
|
// On Mobile the header is fixed to keep HTML as scrollable.
|
|
115
115
|
@include break-medium() {
|
|
116
116
|
position: relative !important;
|
|
117
|
-
|
|
118
|
-
// Set this z-index only when the sidebar is opened. When it's closed, the
|
|
119
|
-
// button to open the sidebar that is shown when navigating regions needs to
|
|
120
|
-
// be above the footer. See `editor-layout__toggle-sidebar-panel`.
|
|
121
|
-
.is-sidebar-opened & {
|
|
122
|
-
z-index: z-index(".interface-interface-skeleton__sidebar {greater than small}");
|
|
123
|
-
}
|
|
124
117
|
}
|
|
125
118
|
}
|
|
126
119
|
|