@wordpress/interface 9.20.0 → 9.20.1-next.dc3f6d3c1.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/README.md CHANGED
@@ -1,4 +1,8 @@
1
- # (Experimental) Interface
1
+ # Interface
2
+
3
+ <div class="callout callout-alert">
4
+ This package is still experimental. “Experimental” means this is an early implementation subject to drastic and breaking changes.
5
+ </div>
2
6
 
3
7
  The Interface Package contains the basis to start a new WordPress screen as Edit Post or Edit Site. The package offers a data store and a set of components. The store is useful to contain common data required by a screen (e.g., active areas). The information is persisted across screen reloads. The components allow one to implement functionality like a sidebar or menu items. Third-party plugins can extend them by default.
4
8
 
@@ -152,6 +152,26 @@
152
152
  font-size: 12px;
153
153
  }
154
154
 
155
+ .admin-ui-breadcrumbs__list {
156
+ list-style: none;
157
+ padding: 0;
158
+ margin: 0;
159
+ gap: 0;
160
+ font-size: 15px;
161
+ min-height: 32px;
162
+ font-weight: 500;
163
+ }
164
+
165
+ .admin-ui-breadcrumbs__list li:not(:last-child)::after {
166
+ content: "/";
167
+ margin: 0 8px;
168
+ }
169
+
170
+ .admin-ui-breadcrumbs__list h1 {
171
+ font-size: inherit;
172
+ line-height: inherit;
173
+ }
174
+
155
175
  /**
156
176
  * Colors
157
177
  */
@@ -152,6 +152,26 @@
152
152
  font-size: 12px;
153
153
  }
154
154
 
155
+ .admin-ui-breadcrumbs__list {
156
+ list-style: none;
157
+ padding: 0;
158
+ margin: 0;
159
+ gap: 0;
160
+ font-size: 15px;
161
+ min-height: 32px;
162
+ font-weight: 500;
163
+ }
164
+
165
+ .admin-ui-breadcrumbs__list li:not(:last-child)::after {
166
+ content: "/";
167
+ margin: 0 8px;
168
+ }
169
+
170
+ .admin-ui-breadcrumbs__list h1 {
171
+ font-size: inherit;
172
+ line-height: inherit;
173
+ }
174
+
155
175
  /**
156
176
  * Colors
157
177
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/interface",
3
- "version": "9.20.0",
3
+ "version": "9.20.1-next.dc3f6d3c1.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",
@@ -40,18 +40,18 @@
40
40
  "{src,build,build-module}/{index.js,store/index.js}"
41
41
  ],
42
42
  "dependencies": {
43
- "@wordpress/a11y": "^4.35.0",
44
- "@wordpress/admin-ui": "^1.3.0",
45
- "@wordpress/components": "^30.8.0",
46
- "@wordpress/compose": "^7.35.0",
47
- "@wordpress/data": "^10.35.0",
48
- "@wordpress/deprecated": "^4.35.0",
49
- "@wordpress/element": "^6.35.0",
50
- "@wordpress/i18n": "^6.8.0",
51
- "@wordpress/icons": "^11.2.0",
52
- "@wordpress/plugins": "^7.35.0",
53
- "@wordpress/preferences": "^4.35.0",
54
- "@wordpress/viewport": "^6.35.0",
43
+ "@wordpress/a11y": "^4.35.1-next.dc3f6d3c1.0",
44
+ "@wordpress/admin-ui": "^1.3.1-next.dc3f6d3c1.0",
45
+ "@wordpress/components": "^30.8.2-next.dc3f6d3c1.0",
46
+ "@wordpress/compose": "^7.35.1-next.dc3f6d3c1.0",
47
+ "@wordpress/data": "^10.35.1-next.dc3f6d3c1.0",
48
+ "@wordpress/deprecated": "^4.35.1-next.dc3f6d3c1.0",
49
+ "@wordpress/element": "^6.35.1-next.dc3f6d3c1.0",
50
+ "@wordpress/i18n": "^6.8.1-next.dc3f6d3c1.0",
51
+ "@wordpress/icons": "^11.2.1-next.dc3f6d3c1.0",
52
+ "@wordpress/plugins": "^7.35.1-next.dc3f6d3c1.0",
53
+ "@wordpress/preferences": "^4.35.1-next.dc3f6d3c1.0",
54
+ "@wordpress/viewport": "^6.35.1-next.dc3f6d3c1.0",
55
55
  "clsx": "^2.1.1"
56
56
  },
57
57
  "peerDependencies": {
@@ -61,5 +61,5 @@
61
61
  "publishConfig": {
62
62
  "access": "public"
63
63
  },
64
- "gitHead": "77aa1f194edceafe8ac2a1b9438bf84b557e76e3"
64
+ "gitHead": "f73b5e69b34fbaccfb8c47783f4f993059ff1a41"
65
65
  }