@wordpress/components 23.3.2 → 23.3.4
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.
|
@@ -1664,6 +1664,7 @@ body.is-dragging-components-draggable {
|
|
|
1664
1664
|
.is-focusing-regions.is-distraction-free .interface-interface-skeleton__header .edit-post-header,
|
|
1665
1665
|
.is-focusing-regions .interface-interface-skeleton__sidebar .edit-post-layout__toggle-sidebar-panel,
|
|
1666
1666
|
.is-focusing-regions .interface-interface-skeleton__actions .edit-post-layout__toggle-publish-panel,
|
|
1667
|
+
.is-focusing-regions .interface-interface-skeleton__actions .edit-post-layout__toggle-entities-saved-states-panel,
|
|
1667
1668
|
.is-focusing-regions .editor-post-publish-panel {
|
|
1668
1669
|
outline: 4px solid var(--wp-components-color-accent, var(--wp-admin-theme-color, #007cba));
|
|
1669
1670
|
outline-offset: -4px;
|
package/build-style/style.css
CHANGED
|
@@ -1667,6 +1667,7 @@ body.is-dragging-components-draggable {
|
|
|
1667
1667
|
.is-focusing-regions.is-distraction-free .interface-interface-skeleton__header .edit-post-header,
|
|
1668
1668
|
.is-focusing-regions .interface-interface-skeleton__sidebar .edit-post-layout__toggle-sidebar-panel,
|
|
1669
1669
|
.is-focusing-regions .interface-interface-skeleton__actions .edit-post-layout__toggle-publish-panel,
|
|
1670
|
+
.is-focusing-regions .interface-interface-skeleton__actions .edit-post-layout__toggle-entities-saved-states-panel,
|
|
1670
1671
|
.is-focusing-regions .editor-post-publish-panel {
|
|
1671
1672
|
outline: 4px solid var(--wp-components-color-accent, var(--wp-admin-theme-color, #007cba));
|
|
1672
1673
|
outline-offset: -4px;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/components",
|
|
3
|
-
"version": "23.3.
|
|
3
|
+
"version": "23.3.4",
|
|
4
4
|
"description": "UI components for WordPress.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -39,21 +39,21 @@
|
|
|
39
39
|
"@floating-ui/react-dom": "^1.0.0",
|
|
40
40
|
"@use-gesture/react": "^10.2.6",
|
|
41
41
|
"@wordpress/a11y": "^3.26.1",
|
|
42
|
-
"@wordpress/compose": "^6.3.
|
|
42
|
+
"@wordpress/compose": "^6.3.3",
|
|
43
43
|
"@wordpress/date": "^4.26.2",
|
|
44
44
|
"@wordpress/deprecated": "^3.26.1",
|
|
45
45
|
"@wordpress/dom": "^3.26.1",
|
|
46
|
-
"@wordpress/element": "^5.3.
|
|
46
|
+
"@wordpress/element": "^5.3.2",
|
|
47
47
|
"@wordpress/escape-html": "^2.26.1",
|
|
48
48
|
"@wordpress/hooks": "^3.26.1",
|
|
49
49
|
"@wordpress/html-entities": "^3.26.1",
|
|
50
50
|
"@wordpress/i18n": "^4.26.1",
|
|
51
|
-
"@wordpress/icons": "^9.17.
|
|
51
|
+
"@wordpress/icons": "^9.17.2",
|
|
52
52
|
"@wordpress/is-shallow-equal": "^4.26.1",
|
|
53
53
|
"@wordpress/keycodes": "^3.26.2",
|
|
54
|
-
"@wordpress/primitives": "^3.24.
|
|
54
|
+
"@wordpress/primitives": "^3.24.2",
|
|
55
55
|
"@wordpress/private-apis": "^0.8.1",
|
|
56
|
-
"@wordpress/rich-text": "^6.3.
|
|
56
|
+
"@wordpress/rich-text": "^6.3.3",
|
|
57
57
|
"@wordpress/warning": "^2.26.1",
|
|
58
58
|
"change-case": "^4.1.2",
|
|
59
59
|
"classnames": "^2.3.1",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"remove-accents": "^0.4.2",
|
|
75
75
|
"use-lilius": "^2.0.1",
|
|
76
76
|
"uuid": "^8.3.0",
|
|
77
|
-
"valtio": "
|
|
77
|
+
"valtio": "1.7.0"
|
|
78
78
|
},
|
|
79
79
|
"peerDependencies": {
|
|
80
80
|
"react": "^18.0.0",
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
"publishConfig": {
|
|
84
84
|
"access": "public"
|
|
85
85
|
},
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "1e2b2f680c6378f789d6660bc04b30e35e3a33a3"
|
|
87
87
|
}
|
|
@@ -24,13 +24,14 @@
|
|
|
24
24
|
// visible. For the future, it's important to take into consideration that
|
|
25
25
|
// the navigable regions should always have a computed size. For now, we can
|
|
26
26
|
// fix some edge cases but these CSS rules should be later removed in favor of
|
|
27
|
-
// a more abstracted approach to make the
|
|
27
|
+
// a more abstracted approach to make the navigable regions focus style work
|
|
28
28
|
// regardles of the CSS used on other components.
|
|
29
29
|
|
|
30
30
|
// Header top bar when Distraction free mode is on.
|
|
31
31
|
&.is-distraction-free .interface-interface-skeleton__header .edit-post-header,
|
|
32
32
|
.interface-interface-skeleton__sidebar .edit-post-layout__toggle-sidebar-panel,
|
|
33
33
|
.interface-interface-skeleton__actions .edit-post-layout__toggle-publish-panel,
|
|
34
|
+
.interface-interface-skeleton__actions .edit-post-layout__toggle-entities-saved-states-panel,
|
|
34
35
|
.editor-post-publish-panel {
|
|
35
36
|
outline: 4px solid $components-color-accent;
|
|
36
37
|
outline-offset: -4px;
|