@wordpress/interface 5.1.0 → 5.2.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
package/LICENSE.md
CHANGED
|
@@ -501,6 +501,9 @@ body.is-fullscreen-mode .interface-interface-skeleton {
|
|
|
501
501
|
box-shadow: none;
|
|
502
502
|
font-weight: 500;
|
|
503
503
|
}
|
|
504
|
+
.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item.is-active::after {
|
|
505
|
+
content: none;
|
|
506
|
+
}
|
|
504
507
|
.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item:focus:not(:disabled) {
|
|
505
508
|
box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
|
506
509
|
}
|
package/build-style/style.css
CHANGED
|
@@ -501,6 +501,9 @@ body.is-fullscreen-mode .interface-interface-skeleton {
|
|
|
501
501
|
box-shadow: none;
|
|
502
502
|
font-weight: 500;
|
|
503
503
|
}
|
|
504
|
+
.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item.is-active::after {
|
|
505
|
+
content: none;
|
|
506
|
+
}
|
|
504
507
|
.interface-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item:focus:not(:disabled) {
|
|
505
508
|
box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
|
506
509
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/interface",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.2.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",
|
|
@@ -32,17 +32,17 @@
|
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@babel/runtime": "^7.16.0",
|
|
35
|
-
"@wordpress/a11y": "^3.
|
|
36
|
-
"@wordpress/components": "^23.
|
|
37
|
-
"@wordpress/compose": "^6.
|
|
38
|
-
"@wordpress/data": "^8.
|
|
39
|
-
"@wordpress/deprecated": "^3.
|
|
40
|
-
"@wordpress/element": "^5.
|
|
41
|
-
"@wordpress/i18n": "^4.
|
|
42
|
-
"@wordpress/icons": "^9.
|
|
43
|
-
"@wordpress/plugins": "^5.
|
|
44
|
-
"@wordpress/preferences": "^3.
|
|
45
|
-
"@wordpress/viewport": "^5.
|
|
35
|
+
"@wordpress/a11y": "^3.25.0",
|
|
36
|
+
"@wordpress/components": "^23.2.0",
|
|
37
|
+
"@wordpress/compose": "^6.2.0",
|
|
38
|
+
"@wordpress/data": "^8.2.0",
|
|
39
|
+
"@wordpress/deprecated": "^3.25.0",
|
|
40
|
+
"@wordpress/element": "^5.2.0",
|
|
41
|
+
"@wordpress/i18n": "^4.25.0",
|
|
42
|
+
"@wordpress/icons": "^9.16.0",
|
|
43
|
+
"@wordpress/plugins": "^5.2.0",
|
|
44
|
+
"@wordpress/preferences": "^3.2.0",
|
|
45
|
+
"@wordpress/viewport": "^5.2.0",
|
|
46
46
|
"classnames": "^2.3.1"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"access": "public"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "204c880ff65295768e9695dfee6c7a9fee1fdd05"
|
|
56
56
|
}
|
|
@@ -7,19 +7,27 @@ $vertical-tabs-width: 160px;
|
|
|
7
7
|
// Aligns button text instead of button box.
|
|
8
8
|
left: $grid-unit-20;
|
|
9
9
|
width: $vertical-tabs-width;
|
|
10
|
+
|
|
10
11
|
.components-tab-panel__tabs-item {
|
|
11
12
|
border-radius: $radius-block-ui;
|
|
12
13
|
font-weight: 400;
|
|
14
|
+
|
|
13
15
|
&.is-active {
|
|
14
16
|
background: $gray-100;
|
|
15
17
|
box-shadow: none;
|
|
16
18
|
font-weight: 500;
|
|
17
19
|
}
|
|
20
|
+
|
|
21
|
+
&.is-active::after {
|
|
22
|
+
content: none;
|
|
23
|
+
}
|
|
24
|
+
|
|
18
25
|
&:focus:not(:disabled) {
|
|
19
26
|
box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
|
20
27
|
}
|
|
21
28
|
}
|
|
22
29
|
}
|
|
30
|
+
|
|
23
31
|
.components-tab-panel__tab-content {
|
|
24
32
|
padding-left: $grid-unit-30;
|
|
25
33
|
margin-left: $vertical-tabs-width;
|