@wordpress/interface 9.21.1-next.8b30e05b0.0 → 9.22.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,8 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 9.22.0 (2025-12-23)
6
+
5
7
  ## 9.21.0 (2025-11-26)
6
8
 
7
9
  ## 9.20.0 (2025-11-12)
@@ -91,27 +91,21 @@
91
91
  position: relative;
92
92
  z-index: 1;
93
93
  flex-flow: column;
94
- container: admin-ui-page/inline-size;
95
94
  }
96
95
 
97
- @media not (prefers-reduced-motion) {
98
- .admin-ui-page {
99
- transition: width ease-out 0.2s;
100
- }
101
- }
102
96
  .admin-ui-page__header {
103
- padding: 16px 48px;
97
+ padding: 16px 24px;
104
98
  border-bottom: 1px solid #f0f0f0;
105
99
  background: #fff;
106
100
  position: sticky;
107
101
  top: 0;
102
+ z-index: 1;
108
103
  }
109
104
 
110
- @container (max-width: 430px) {
111
- .admin-ui-page__header {
112
- padding: 16px 24px;
113
- }
105
+ .admin-ui-page__sidebar-toggle-slot:empty {
106
+ display: none;
114
107
  }
108
+
115
109
  .admin-ui-page__header-subtitle {
116
110
  padding-block-end: 8px;
117
111
  color: #757575;
@@ -130,14 +124,9 @@
130
124
  }
131
125
 
132
126
  .admin-ui-page__content.has-padding {
133
- padding: 16px 20px;
127
+ padding: 16px 24px;
134
128
  }
135
129
 
136
- @container (max-width: 430px) {
137
- .admin-ui-page__content.has-padding {
138
- padding: 16px 24px;
139
- }
140
- }
141
130
  .show-icon-labels .admin-ui-page__header-actions .components-button.has-icon {
142
131
  width: auto;
143
132
  padding: 0 8px;
@@ -91,27 +91,21 @@
91
91
  position: relative;
92
92
  z-index: 1;
93
93
  flex-flow: column;
94
- container: admin-ui-page/inline-size;
95
94
  }
96
95
 
97
- @media not (prefers-reduced-motion) {
98
- .admin-ui-page {
99
- transition: width ease-out 0.2s;
100
- }
101
- }
102
96
  .admin-ui-page__header {
103
- padding: 16px 48px;
97
+ padding: 16px 24px;
104
98
  border-bottom: 1px solid #f0f0f0;
105
99
  background: #fff;
106
100
  position: sticky;
107
101
  top: 0;
102
+ z-index: 1;
108
103
  }
109
104
 
110
- @container (max-width: 430px) {
111
- .admin-ui-page__header {
112
- padding: 16px 24px;
113
- }
105
+ .admin-ui-page__sidebar-toggle-slot:empty {
106
+ display: none;
114
107
  }
108
+
115
109
  .admin-ui-page__header-subtitle {
116
110
  padding-block-end: 8px;
117
111
  color: #757575;
@@ -130,14 +124,9 @@
130
124
  }
131
125
 
132
126
  .admin-ui-page__content.has-padding {
133
- padding: 16px 20px;
127
+ padding: 16px 24px;
134
128
  }
135
129
 
136
- @container (max-width: 430px) {
137
- .admin-ui-page__content.has-padding {
138
- padding: 16px 24px;
139
- }
140
- }
141
130
  .show-icon-labels .admin-ui-page__header-actions .components-button.has-icon {
142
131
  width: auto;
143
132
  padding: 0 8px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/interface",
3
- "version": "9.21.1-next.8b30e05b0.0",
3
+ "version": "9.22.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",
@@ -37,21 +37,26 @@
37
37
  "sideEffects": [
38
38
  "build-style/**",
39
39
  "src/**/*.scss",
40
- "{src,build,build-module}/{index.js,store/index.js}"
40
+ "src/index.js",
41
+ "src/store/index.js",
42
+ "build/index.js",
43
+ "build/store/index.js",
44
+ "build-module/index.js",
45
+ "build-module/store/index.js"
41
46
  ],
42
47
  "dependencies": {
43
- "@wordpress/a11y": "^4.36.1-next.8b30e05b0.0",
44
- "@wordpress/admin-ui": "^1.4.1-next.8b30e05b0.0",
45
- "@wordpress/components": "^30.9.1-next.8b30e05b0.0",
46
- "@wordpress/compose": "^7.36.1-next.8b30e05b0.0",
47
- "@wordpress/data": "^10.36.1-next.8b30e05b0.0",
48
- "@wordpress/deprecated": "^4.36.1-next.8b30e05b0.0",
49
- "@wordpress/element": "^6.36.1-next.8b30e05b0.0",
50
- "@wordpress/i18n": "^6.9.1-next.8b30e05b0.0",
51
- "@wordpress/icons": "^11.3.1-next.8b30e05b0.0",
52
- "@wordpress/plugins": "^7.36.1-next.8b30e05b0.0",
53
- "@wordpress/preferences": "^4.36.1-next.8b30e05b0.0",
54
- "@wordpress/viewport": "^6.36.1-next.8b30e05b0.0",
48
+ "@wordpress/a11y": "^4.37.0",
49
+ "@wordpress/admin-ui": "^1.5.0",
50
+ "@wordpress/components": "^31.0.0",
51
+ "@wordpress/compose": "^7.37.0",
52
+ "@wordpress/data": "^10.37.0",
53
+ "@wordpress/deprecated": "^4.37.0",
54
+ "@wordpress/element": "^6.37.0",
55
+ "@wordpress/i18n": "^6.10.0",
56
+ "@wordpress/icons": "^11.4.0",
57
+ "@wordpress/plugins": "^7.37.0",
58
+ "@wordpress/preferences": "^4.37.0",
59
+ "@wordpress/viewport": "^6.37.0",
55
60
  "clsx": "^2.1.1"
56
61
  },
57
62
  "peerDependencies": {
@@ -61,5 +66,5 @@
61
66
  "publishConfig": {
62
67
  "access": "public"
63
68
  },
64
- "gitHead": "2466f6bc223f8be98c55e1ac7270e8c3e413eaaf"
69
+ "gitHead": "2cf13ec6cf86153c9b3cf369bf5c59046f5cd950"
65
70
  }