@wordpress/edit-widgets 5.14.0 → 5.15.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 +18 -22
- package/build-style/style.css +18 -22
- package/package.json +27 -27
- package/src/style.scss +2 -8
package/CHANGELOG.md
CHANGED
|
@@ -1026,45 +1026,41 @@ body.is-fullscreen-mode .edit-widgets-notices__snackbar {
|
|
|
1026
1026
|
padding-left: 4px;
|
|
1027
1027
|
}
|
|
1028
1028
|
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
}
|
|
1032
|
-
|
|
1033
|
-
body.appearance_page_gutenberg-widgets,
|
|
1034
|
-
body.widgets-php {
|
|
1029
|
+
body.js.appearance_page_gutenberg-widgets,
|
|
1030
|
+
body.js.widgets-php {
|
|
1035
1031
|
background: #fff;
|
|
1036
1032
|
/* We hide legacy notices in Gutenberg Based Pages, because they were not designed in a way that scaled well.
|
|
1037
1033
|
Plugins can use Gutenberg notices if they need to pass on information to the user when they are editing. */
|
|
1038
1034
|
}
|
|
1039
|
-
body.appearance_page_gutenberg-widgets #wpcontent,
|
|
1040
|
-
body.widgets-php #wpcontent {
|
|
1035
|
+
body.js.appearance_page_gutenberg-widgets #wpcontent,
|
|
1036
|
+
body.js.widgets-php #wpcontent {
|
|
1041
1037
|
padding-right: 0;
|
|
1042
1038
|
}
|
|
1043
|
-
body.appearance_page_gutenberg-widgets #wpbody-content,
|
|
1044
|
-
body.widgets-php #wpbody-content {
|
|
1039
|
+
body.js.appearance_page_gutenberg-widgets #wpbody-content,
|
|
1040
|
+
body.js.widgets-php #wpbody-content {
|
|
1045
1041
|
padding-bottom: 0;
|
|
1046
1042
|
}
|
|
1047
|
-
body.appearance_page_gutenberg-widgets #wpbody-content > div:not(.blocks-widgets-container):not(#screen-meta),
|
|
1048
|
-
body.widgets-php #wpbody-content > div:not(.blocks-widgets-container):not(#screen-meta) {
|
|
1043
|
+
body.js.appearance_page_gutenberg-widgets #wpbody-content > div:not(.blocks-widgets-container):not(#screen-meta),
|
|
1044
|
+
body.js.widgets-php #wpbody-content > div:not(.blocks-widgets-container):not(#screen-meta) {
|
|
1049
1045
|
display: none;
|
|
1050
1046
|
}
|
|
1051
|
-
body.appearance_page_gutenberg-widgets #wpfooter,
|
|
1052
|
-
body.widgets-php #wpfooter {
|
|
1047
|
+
body.js.appearance_page_gutenberg-widgets #wpfooter,
|
|
1048
|
+
body.js.widgets-php #wpfooter {
|
|
1053
1049
|
display: none;
|
|
1054
1050
|
}
|
|
1055
|
-
body.appearance_page_gutenberg-widgets .a11y-speak-region,
|
|
1056
|
-
body.widgets-php .a11y-speak-region {
|
|
1051
|
+
body.js.appearance_page_gutenberg-widgets .a11y-speak-region,
|
|
1052
|
+
body.js.widgets-php .a11y-speak-region {
|
|
1057
1053
|
right: -1px;
|
|
1058
1054
|
top: -1px;
|
|
1059
1055
|
}
|
|
1060
|
-
body.appearance_page_gutenberg-widgets ul#adminmenu a.wp-has-current-submenu::after,
|
|
1061
|
-
body.appearance_page_gutenberg-widgets ul#adminmenu > li.current > a.current::after,
|
|
1062
|
-
body.widgets-php ul#adminmenu a.wp-has-current-submenu::after,
|
|
1063
|
-
body.widgets-php ul#adminmenu > li.current > a.current::after {
|
|
1056
|
+
body.js.appearance_page_gutenberg-widgets ul#adminmenu a.wp-has-current-submenu::after,
|
|
1057
|
+
body.js.appearance_page_gutenberg-widgets ul#adminmenu > li.current > a.current::after,
|
|
1058
|
+
body.js.widgets-php ul#adminmenu a.wp-has-current-submenu::after,
|
|
1059
|
+
body.js.widgets-php ul#adminmenu > li.current > a.current::after {
|
|
1064
1060
|
border-left-color: #fff;
|
|
1065
1061
|
}
|
|
1066
|
-
body.appearance_page_gutenberg-widgets .media-frame select.attachment-filters:last-of-type,
|
|
1067
|
-
body.widgets-php .media-frame select.attachment-filters:last-of-type {
|
|
1062
|
+
body.js.appearance_page_gutenberg-widgets .media-frame select.attachment-filters:last-of-type,
|
|
1063
|
+
body.js.widgets-php .media-frame select.attachment-filters:last-of-type {
|
|
1068
1064
|
width: auto;
|
|
1069
1065
|
max-width: 100%;
|
|
1070
1066
|
}
|
package/build-style/style.css
CHANGED
|
@@ -1026,45 +1026,41 @@ body.is-fullscreen-mode .edit-widgets-notices__snackbar {
|
|
|
1026
1026
|
padding-right: 4px;
|
|
1027
1027
|
}
|
|
1028
1028
|
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
}
|
|
1032
|
-
|
|
1033
|
-
body.appearance_page_gutenberg-widgets,
|
|
1034
|
-
body.widgets-php {
|
|
1029
|
+
body.js.appearance_page_gutenberg-widgets,
|
|
1030
|
+
body.js.widgets-php {
|
|
1035
1031
|
background: #fff;
|
|
1036
1032
|
/* We hide legacy notices in Gutenberg Based Pages, because they were not designed in a way that scaled well.
|
|
1037
1033
|
Plugins can use Gutenberg notices if they need to pass on information to the user when they are editing. */
|
|
1038
1034
|
}
|
|
1039
|
-
body.appearance_page_gutenberg-widgets #wpcontent,
|
|
1040
|
-
body.widgets-php #wpcontent {
|
|
1035
|
+
body.js.appearance_page_gutenberg-widgets #wpcontent,
|
|
1036
|
+
body.js.widgets-php #wpcontent {
|
|
1041
1037
|
padding-left: 0;
|
|
1042
1038
|
}
|
|
1043
|
-
body.appearance_page_gutenberg-widgets #wpbody-content,
|
|
1044
|
-
body.widgets-php #wpbody-content {
|
|
1039
|
+
body.js.appearance_page_gutenberg-widgets #wpbody-content,
|
|
1040
|
+
body.js.widgets-php #wpbody-content {
|
|
1045
1041
|
padding-bottom: 0;
|
|
1046
1042
|
}
|
|
1047
|
-
body.appearance_page_gutenberg-widgets #wpbody-content > div:not(.blocks-widgets-container):not(#screen-meta),
|
|
1048
|
-
body.widgets-php #wpbody-content > div:not(.blocks-widgets-container):not(#screen-meta) {
|
|
1043
|
+
body.js.appearance_page_gutenberg-widgets #wpbody-content > div:not(.blocks-widgets-container):not(#screen-meta),
|
|
1044
|
+
body.js.widgets-php #wpbody-content > div:not(.blocks-widgets-container):not(#screen-meta) {
|
|
1049
1045
|
display: none;
|
|
1050
1046
|
}
|
|
1051
|
-
body.appearance_page_gutenberg-widgets #wpfooter,
|
|
1052
|
-
body.widgets-php #wpfooter {
|
|
1047
|
+
body.js.appearance_page_gutenberg-widgets #wpfooter,
|
|
1048
|
+
body.js.widgets-php #wpfooter {
|
|
1053
1049
|
display: none;
|
|
1054
1050
|
}
|
|
1055
|
-
body.appearance_page_gutenberg-widgets .a11y-speak-region,
|
|
1056
|
-
body.widgets-php .a11y-speak-region {
|
|
1051
|
+
body.js.appearance_page_gutenberg-widgets .a11y-speak-region,
|
|
1052
|
+
body.js.widgets-php .a11y-speak-region {
|
|
1057
1053
|
left: -1px;
|
|
1058
1054
|
top: -1px;
|
|
1059
1055
|
}
|
|
1060
|
-
body.appearance_page_gutenberg-widgets ul#adminmenu a.wp-has-current-submenu::after,
|
|
1061
|
-
body.appearance_page_gutenberg-widgets ul#adminmenu > li.current > a.current::after,
|
|
1062
|
-
body.widgets-php ul#adminmenu a.wp-has-current-submenu::after,
|
|
1063
|
-
body.widgets-php ul#adminmenu > li.current > a.current::after {
|
|
1056
|
+
body.js.appearance_page_gutenberg-widgets ul#adminmenu a.wp-has-current-submenu::after,
|
|
1057
|
+
body.js.appearance_page_gutenberg-widgets ul#adminmenu > li.current > a.current::after,
|
|
1058
|
+
body.js.widgets-php ul#adminmenu a.wp-has-current-submenu::after,
|
|
1059
|
+
body.js.widgets-php ul#adminmenu > li.current > a.current::after {
|
|
1064
1060
|
border-right-color: #fff;
|
|
1065
1061
|
}
|
|
1066
|
-
body.appearance_page_gutenberg-widgets .media-frame select.attachment-filters:last-of-type,
|
|
1067
|
-
body.widgets-php .media-frame select.attachment-filters:last-of-type {
|
|
1062
|
+
body.js.appearance_page_gutenberg-widgets .media-frame select.attachment-filters:last-of-type,
|
|
1063
|
+
body.js.widgets-php .media-frame select.attachment-filters:last-of-type {
|
|
1068
1064
|
width: auto;
|
|
1069
1065
|
max-width: 100%;
|
|
1070
1066
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/edit-widgets",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.15.0",
|
|
4
4
|
"description": "Widgets Page module for WordPress..",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -27,31 +27,31 @@
|
|
|
27
27
|
"react-native": "src/index",
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@babel/runtime": "^7.16.0",
|
|
30
|
-
"@wordpress/api-fetch": "^6.
|
|
31
|
-
"@wordpress/block-editor": "^12.
|
|
32
|
-
"@wordpress/block-library": "^8.
|
|
33
|
-
"@wordpress/blocks": "^12.
|
|
34
|
-
"@wordpress/components": "^25.
|
|
35
|
-
"@wordpress/compose": "^6.
|
|
36
|
-
"@wordpress/core-data": "^6.
|
|
37
|
-
"@wordpress/data": "^9.
|
|
38
|
-
"@wordpress/deprecated": "^3.
|
|
39
|
-
"@wordpress/dom": "^3.
|
|
40
|
-
"@wordpress/element": "^5.
|
|
41
|
-
"@wordpress/hooks": "^3.
|
|
42
|
-
"@wordpress/i18n": "^4.
|
|
43
|
-
"@wordpress/icons": "^9.
|
|
44
|
-
"@wordpress/interface": "^5.
|
|
45
|
-
"@wordpress/keyboard-shortcuts": "^4.
|
|
46
|
-
"@wordpress/keycodes": "^3.
|
|
47
|
-
"@wordpress/media-utils": "^4.
|
|
48
|
-
"@wordpress/notices": "^4.
|
|
49
|
-
"@wordpress/plugins": "^6.
|
|
50
|
-
"@wordpress/preferences": "^3.
|
|
51
|
-
"@wordpress/private-apis": "^0.
|
|
52
|
-
"@wordpress/reusable-blocks": "^4.
|
|
53
|
-
"@wordpress/url": "^3.
|
|
54
|
-
"@wordpress/widgets": "^3.
|
|
30
|
+
"@wordpress/api-fetch": "^6.35.0",
|
|
31
|
+
"@wordpress/block-editor": "^12.6.0",
|
|
32
|
+
"@wordpress/block-library": "^8.15.0",
|
|
33
|
+
"@wordpress/blocks": "^12.15.0",
|
|
34
|
+
"@wordpress/components": "^25.4.0",
|
|
35
|
+
"@wordpress/compose": "^6.15.0",
|
|
36
|
+
"@wordpress/core-data": "^6.15.0",
|
|
37
|
+
"@wordpress/data": "^9.8.0",
|
|
38
|
+
"@wordpress/deprecated": "^3.38.0",
|
|
39
|
+
"@wordpress/dom": "^3.38.0",
|
|
40
|
+
"@wordpress/element": "^5.15.0",
|
|
41
|
+
"@wordpress/hooks": "^3.38.0",
|
|
42
|
+
"@wordpress/i18n": "^4.38.0",
|
|
43
|
+
"@wordpress/icons": "^9.29.0",
|
|
44
|
+
"@wordpress/interface": "^5.15.0",
|
|
45
|
+
"@wordpress/keyboard-shortcuts": "^4.15.0",
|
|
46
|
+
"@wordpress/keycodes": "^3.38.0",
|
|
47
|
+
"@wordpress/media-utils": "^4.29.0",
|
|
48
|
+
"@wordpress/notices": "^4.6.0",
|
|
49
|
+
"@wordpress/plugins": "^6.6.0",
|
|
50
|
+
"@wordpress/preferences": "^3.15.0",
|
|
51
|
+
"@wordpress/private-apis": "^0.20.0",
|
|
52
|
+
"@wordpress/reusable-blocks": "^4.15.0",
|
|
53
|
+
"@wordpress/url": "^3.39.0",
|
|
54
|
+
"@wordpress/widgets": "^3.15.0",
|
|
55
55
|
"classnames": "^2.3.1"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"publishConfig": {
|
|
62
62
|
"access": "public"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "6f14d11ed4cb59df110a28ebaa23ecba95eb673a"
|
|
65
65
|
}
|
package/src/style.scss
CHANGED
|
@@ -11,14 +11,8 @@
|
|
|
11
11
|
@import "./components/widget-areas-block-editor-content/style.scss";
|
|
12
12
|
@import "./components/secondary-sidebar/style.scss";
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
html.wp-toolbar {
|
|
17
|
-
background: $white;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
body.appearance_page_gutenberg-widgets,
|
|
21
|
-
body.widgets-php {
|
|
14
|
+
body.js.appearance_page_gutenberg-widgets,
|
|
15
|
+
body.js.widgets-php {
|
|
22
16
|
@include wp-admin-reset( ".blocks-widgets-container" );
|
|
23
17
|
}
|
|
24
18
|
|