@wordpress/interface 6.0.0 → 6.0.2

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.
@@ -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 {
@@ -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/lock-unlock.js CHANGED
@@ -5,6 +5,6 @@ import { __dangerousOptInToUnstableAPIsOnlyForCoreModules } from '@wordpress/pri
5
5
 
6
6
  export const { lock, unlock } =
7
7
  __dangerousOptInToUnstableAPIsOnlyForCoreModules(
8
- 'I know using unstable features means my theme or plugin will inevitably break in the next version of WordPress.',
8
+ 'I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.',
9
9
  '@wordpress/interface'
10
10
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/interface",
3
- "version": "6.0.0",
3
+ "version": "6.0.2",
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.0.0",
37
- "@wordpress/components": "^28.0.0",
38
- "@wordpress/compose": "^7.0.0",
39
- "@wordpress/data": "^10.0.0",
40
- "@wordpress/deprecated": "^4.0.0",
41
- "@wordpress/element": "^6.0.0",
42
- "@wordpress/i18n": "^5.0.0",
43
- "@wordpress/icons": "^10.0.0",
44
- "@wordpress/plugins": "^7.0.0",
45
- "@wordpress/preferences": "^4.0.0",
46
- "@wordpress/private-apis": "^1.0.0",
47
- "@wordpress/viewport": "^6.0.0",
36
+ "@wordpress/a11y": "^4.0.1",
37
+ "@wordpress/components": "^28.0.2",
38
+ "@wordpress/compose": "^7.0.1",
39
+ "@wordpress/data": "^10.0.2",
40
+ "@wordpress/deprecated": "^4.0.1",
41
+ "@wordpress/element": "^6.0.1",
42
+ "@wordpress/i18n": "^5.0.1",
43
+ "@wordpress/icons": "^10.0.1",
44
+ "@wordpress/plugins": "^7.0.2",
45
+ "@wordpress/preferences": "^4.0.2",
46
+ "@wordpress/private-apis": "^1.0.2",
47
+ "@wordpress/viewport": "^6.0.2",
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": "2f30cddff15723ac7017fd009fc5913b7b419400"
57
+ "gitHead": "a68c6b5ef53956cccf4961d53d79b6af7e00ae60"
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