@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 +2 -0
- package/build-style/style-rtl.css +6 -17
- package/build-style/style.css +6 -17
- package/package.json +20 -15
package/CHANGELOG.md
CHANGED
|
@@ -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
|
|
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
|
-
|
|
111
|
-
|
|
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
|
|
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/build-style/style.css
CHANGED
|
@@ -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
|
|
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
|
-
|
|
111
|
-
|
|
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
|
|
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.
|
|
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
|
-
"
|
|
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.
|
|
44
|
-
"@wordpress/admin-ui": "^1.
|
|
45
|
-
"@wordpress/components": "^
|
|
46
|
-
"@wordpress/compose": "^7.
|
|
47
|
-
"@wordpress/data": "^10.
|
|
48
|
-
"@wordpress/deprecated": "^4.
|
|
49
|
-
"@wordpress/element": "^6.
|
|
50
|
-
"@wordpress/i18n": "^6.
|
|
51
|
-
"@wordpress/icons": "^11.
|
|
52
|
-
"@wordpress/plugins": "^7.
|
|
53
|
-
"@wordpress/preferences": "^4.
|
|
54
|
-
"@wordpress/viewport": "^6.
|
|
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": "
|
|
69
|
+
"gitHead": "2cf13ec6cf86153c9b3cf369bf5c59046f5cd950"
|
|
65
70
|
}
|