@wordpress/block-editor 14.17.0 → 14.19.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.
Files changed (95) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/build/components/background-image-control/index.js +21 -11
  3. package/build/components/background-image-control/index.js.map +1 -1
  4. package/build/components/block-canvas/index.js +6 -3
  5. package/build/components/block-canvas/index.js.map +1 -1
  6. package/build/components/block-settings-menu/block-mode-toggle.js +3 -3
  7. package/build/components/block-settings-menu/block-mode-toggle.js.map +1 -1
  8. package/build/components/block-toolbar/use-has-block-toolbar.js +3 -12
  9. package/build/components/block-toolbar/use-has-block-toolbar.js.map +1 -1
  10. package/build/components/child-layout-control/index.js +1 -0
  11. package/build/components/child-layout-control/index.js.map +1 -1
  12. package/build/components/html-element-control/index.js +107 -0
  13. package/build/components/html-element-control/index.js.map +1 -0
  14. package/build/components/html-element-control/messages.js +25 -0
  15. package/build/components/html-element-control/messages.js.map +1 -0
  16. package/build/components/keyboard-shortcuts/index.js +2 -2
  17. package/build/components/keyboard-shortcuts/index.js.map +1 -1
  18. package/build/components/media-placeholder/index.js +5 -5
  19. package/build/components/media-placeholder/index.js.map +1 -1
  20. package/build/components/rich-text/event-listeners/delete.js +1 -9
  21. package/build/components/rich-text/event-listeners/delete.js.map +1 -1
  22. package/build/components/use-resize-canvas/index.js +1 -1
  23. package/build/components/use-resize-canvas/index.js.map +1 -1
  24. package/build/hooks/duotone.js +1 -1
  25. package/build/hooks/duotone.js.map +1 -1
  26. package/build/hooks/typography.js +1 -1
  27. package/build/hooks/typography.js.map +1 -1
  28. package/build/private-apis.js +2 -0
  29. package/build/private-apis.js.map +1 -1
  30. package/build/private-apis.native.js +4 -1
  31. package/build/private-apis.native.js.map +1 -1
  32. package/build/store/actions.js +1 -1
  33. package/build/store/actions.js.map +1 -1
  34. package/build-module/components/background-image-control/index.js +21 -11
  35. package/build-module/components/background-image-control/index.js.map +1 -1
  36. package/build-module/components/block-canvas/index.js +6 -3
  37. package/build-module/components/block-canvas/index.js.map +1 -1
  38. package/build-module/components/block-settings-menu/block-mode-toggle.js +3 -3
  39. package/build-module/components/block-settings-menu/block-mode-toggle.js.map +1 -1
  40. package/build-module/components/block-toolbar/use-has-block-toolbar.js +3 -12
  41. package/build-module/components/block-toolbar/use-has-block-toolbar.js.map +1 -1
  42. package/build-module/components/child-layout-control/index.js +1 -0
  43. package/build-module/components/child-layout-control/index.js.map +1 -1
  44. package/build-module/components/html-element-control/index.js +102 -0
  45. package/build-module/components/html-element-control/index.js.map +1 -0
  46. package/build-module/components/html-element-control/messages.js +19 -0
  47. package/build-module/components/html-element-control/messages.js.map +1 -0
  48. package/build-module/components/keyboard-shortcuts/index.js +2 -2
  49. package/build-module/components/keyboard-shortcuts/index.js.map +1 -1
  50. package/build-module/components/media-placeholder/index.js +5 -5
  51. package/build-module/components/media-placeholder/index.js.map +1 -1
  52. package/build-module/components/rich-text/event-listeners/delete.js +1 -9
  53. package/build-module/components/rich-text/event-listeners/delete.js.map +1 -1
  54. package/build-module/components/use-resize-canvas/index.js +1 -1
  55. package/build-module/components/use-resize-canvas/index.js.map +1 -1
  56. package/build-module/hooks/duotone.js +1 -1
  57. package/build-module/hooks/duotone.js.map +1 -1
  58. package/build-module/hooks/typography.js +1 -1
  59. package/build-module/hooks/typography.js.map +1 -1
  60. package/build-module/private-apis.js +2 -0
  61. package/build-module/private-apis.js.map +1 -1
  62. package/build-module/private-apis.native.js +3 -1
  63. package/build-module/private-apis.native.js.map +1 -1
  64. package/build-module/store/actions.js +1 -1
  65. package/build-module/store/actions.js.map +1 -1
  66. package/build-style/content-rtl.css +131 -9
  67. package/build-style/content.css +131 -9
  68. package/build-style/default-editor-styles-rtl.css +130 -9
  69. package/build-style/default-editor-styles.css +130 -9
  70. package/build-style/style-rtl.css +137 -11
  71. package/build-style/style.css +138 -11
  72. package/package.json +34 -34
  73. package/src/components/background-image-control/index.js +21 -13
  74. package/src/components/block-canvas/index.js +5 -3
  75. package/src/components/block-inspector/style.scss +4 -2
  76. package/src/components/block-list/content.scss +1 -0
  77. package/src/components/block-settings-menu/block-mode-toggle.js +3 -3
  78. package/src/components/block-settings-menu/test/block-mode-toggle.js +1 -1
  79. package/src/components/block-toolbar/use-has-block-toolbar.js +7 -13
  80. package/src/components/child-layout-control/index.js +1 -0
  81. package/src/components/html-element-control/index.js +109 -0
  82. package/src/components/html-element-control/messages.js +34 -0
  83. package/src/components/keyboard-shortcuts/index.js +2 -2
  84. package/src/components/media-placeholder/index.js +5 -5
  85. package/src/components/media-placeholder/style.scss +6 -0
  86. package/src/components/rich-text/README.md +1 -1
  87. package/src/components/rich-text/event-listeners/delete.js +1 -6
  88. package/src/components/url-popover/stories/index.story.js +9 -1
  89. package/src/components/use-resize-canvas/index.js +1 -1
  90. package/src/hooks/duotone.js +4 -3
  91. package/src/hooks/typography.js +5 -3
  92. package/src/private-apis.js +2 -0
  93. package/src/private-apis.native.js +2 -0
  94. package/src/store/actions.js +5 -1
  95. package/src/store/test/actions.js +122 -0
@@ -1,15 +1,57 @@
1
- /**
2
- * Converts a hex value into the rgb equivalent.
3
- *
4
- * @param {string} hex - the hexadecimal value to convert
5
- * @return {string} comma separated rgb values
6
- */
7
1
  /**
8
2
  * Colors
9
3
  */
10
4
  /**
11
5
  * Breakpoints & Media Queries
12
6
  */
7
+ /**
8
+ * Colors
9
+ */
10
+ /**
11
+ * SCSS Variables.
12
+ *
13
+ * Please use variables from this sheet to ensure consistency across the UI.
14
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
15
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
16
+ */
17
+ /**
18
+ * Fonts & basic variables.
19
+ */
20
+ /**
21
+ * Typography
22
+ */
23
+ /**
24
+ * Grid System.
25
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
26
+ */
27
+ /**
28
+ * Radius scale.
29
+ */
30
+ /**
31
+ * Elevation scale.
32
+ */
33
+ /**
34
+ * Dimensions.
35
+ */
36
+ /**
37
+ * Mobile specific styles
38
+ */
39
+ /**
40
+ * Editor styles.
41
+ */
42
+ /**
43
+ * Block & Editor UI.
44
+ */
45
+ /**
46
+ * Block paddings.
47
+ */
48
+ /**
49
+ * React Native specific.
50
+ * These variables do not appear to be used anywhere else.
51
+ */
52
+ /**
53
+ * Colors
54
+ */
13
55
  /**
14
56
  * SCSS Variables.
15
57
  *
@@ -17,15 +59,91 @@
17
59
  * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
18
60
  * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
19
61
  */
62
+ /**
63
+ * Fonts & basic variables.
64
+ */
65
+ /**
66
+ * Typography
67
+ */
68
+ /**
69
+ * Grid System.
70
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
71
+ */
72
+ /**
73
+ * Radius scale.
74
+ */
75
+ /**
76
+ * Elevation scale.
77
+ */
78
+ /**
79
+ * Dimensions.
80
+ */
81
+ /**
82
+ * Mobile specific styles
83
+ */
84
+ /**
85
+ * Editor styles.
86
+ */
87
+ /**
88
+ * Block & Editor UI.
89
+ */
90
+ /**
91
+ * Block paddings.
92
+ */
93
+ /**
94
+ * React Native specific.
95
+ * These variables do not appear to be used anywhere else.
96
+ */
97
+ /**
98
+ * Breakpoints & Media Queries
99
+ */
20
100
  /**
21
101
  * Converts a hex value into the rgb equivalent.
22
102
  *
23
103
  * @param {string} hex - the hexadecimal value to convert
24
104
  * @return {string} comma separated rgb values
25
105
  */
106
+ /**
107
+ * Long content fade mixin
108
+ *
109
+ * Creates a fading overlay to signify that the content is longer
110
+ * than the space allows.
111
+ */
112
+ /**
113
+ * Typography
114
+ */
115
+ /**
116
+ * Breakpoint mixins
117
+ */
118
+ /**
119
+ * Focus styles.
120
+ */
121
+ /**
122
+ * Applies editor left position to the selector passed as argument
123
+ */
124
+ /**
125
+ * Styles that are reused verbatim in a few places
126
+ */
127
+ /**
128
+ * Allows users to opt-out of animations via OS-level preferences.
129
+ */
130
+ /**
131
+ * Reset default styles for JavaScript UI based pages.
132
+ * This is a WP-admin agnostic reset
133
+ */
134
+ /**
135
+ * Reset the WP Admin page styles for Gutenberg-like pages.
136
+ */
26
137
  /**
27
138
  * Colors
28
139
  */
140
+ /**
141
+ * SCSS Variables.
142
+ *
143
+ * Please use variables from this sheet to ensure consistency across the UI.
144
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
145
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
146
+ */
29
147
  /**
30
148
  * Fonts & basic variables.
31
149
  */
@@ -61,6 +179,9 @@
61
179
  * React Native specific.
62
180
  * These variables do not appear to be used anywhere else.
63
181
  */
182
+ /**
183
+ * Breakpoints & Media Queries
184
+ */
64
185
  /**
65
186
  * Converts a hex value into the rgb equivalent.
66
187
  *
@@ -99,6 +220,9 @@
99
220
  * Reset the WP Admin page styles for Gutenberg-like pages.
100
221
  */
101
222
  :root {
223
+ --wp-block-synced-color: #7a00df;
224
+ --wp-block-synced-color--rgb: 122, 0, 223;
225
+ --wp-bound-block-color: var(--wp-block-synced-color);
102
226
  --wp-admin-theme-color: #007cba;
103
227
  --wp-admin-theme-color--rgb: 0, 124, 186;
104
228
  --wp-admin-theme-color-darker-10: #006ba1;
@@ -106,9 +230,6 @@
106
230
  --wp-admin-theme-color-darker-20: #005a87;
107
231
  --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
108
232
  --wp-admin-border-width-focus: 2px;
109
- --wp-block-synced-color: #7a00df;
110
- --wp-block-synced-color--rgb: 122, 0, 223;
111
- --wp-bound-block-color: var(--wp-block-synced-color);
112
233
  }
113
234
  @media (min-resolution: 192dpi) {
114
235
  :root {
@@ -1,15 +1,12 @@
1
- /**
2
- * Converts a hex value into the rgb equivalent.
3
- *
4
- * @param {string} hex - the hexadecimal value to convert
5
- * @return {string} comma separated rgb values
6
- */
7
1
  /**
8
2
  * Colors
9
3
  */
10
4
  /**
11
5
  * Breakpoints & Media Queries
12
6
  */
7
+ /**
8
+ * Colors
9
+ */
13
10
  /**
14
11
  * SCSS Variables.
15
12
  *
@@ -17,15 +14,136 @@
17
14
  * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
18
15
  * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
19
16
  */
17
+ /**
18
+ * Fonts & basic variables.
19
+ */
20
+ /**
21
+ * Typography
22
+ */
23
+ /**
24
+ * Grid System.
25
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
26
+ */
27
+ /**
28
+ * Radius scale.
29
+ */
30
+ /**
31
+ * Elevation scale.
32
+ */
33
+ /**
34
+ * Dimensions.
35
+ */
36
+ /**
37
+ * Mobile specific styles
38
+ */
39
+ /**
40
+ * Editor styles.
41
+ */
42
+ /**
43
+ * Block & Editor UI.
44
+ */
45
+ /**
46
+ * Block paddings.
47
+ */
48
+ /**
49
+ * React Native specific.
50
+ * These variables do not appear to be used anywhere else.
51
+ */
52
+ /**
53
+ * Colors
54
+ */
55
+ /**
56
+ * SCSS Variables.
57
+ *
58
+ * Please use variables from this sheet to ensure consistency across the UI.
59
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
60
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
61
+ */
62
+ /**
63
+ * Fonts & basic variables.
64
+ */
65
+ /**
66
+ * Typography
67
+ */
68
+ /**
69
+ * Grid System.
70
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
71
+ */
72
+ /**
73
+ * Radius scale.
74
+ */
75
+ /**
76
+ * Elevation scale.
77
+ */
78
+ /**
79
+ * Dimensions.
80
+ */
81
+ /**
82
+ * Mobile specific styles
83
+ */
84
+ /**
85
+ * Editor styles.
86
+ */
87
+ /**
88
+ * Block & Editor UI.
89
+ */
90
+ /**
91
+ * Block paddings.
92
+ */
93
+ /**
94
+ * React Native specific.
95
+ * These variables do not appear to be used anywhere else.
96
+ */
97
+ /**
98
+ * Breakpoints & Media Queries
99
+ */
20
100
  /**
21
101
  * Converts a hex value into the rgb equivalent.
22
102
  *
23
103
  * @param {string} hex - the hexadecimal value to convert
24
104
  * @return {string} comma separated rgb values
25
105
  */
106
+ /**
107
+ * Long content fade mixin
108
+ *
109
+ * Creates a fading overlay to signify that the content is longer
110
+ * than the space allows.
111
+ */
112
+ /**
113
+ * Typography
114
+ */
115
+ /**
116
+ * Breakpoint mixins
117
+ */
118
+ /**
119
+ * Focus styles.
120
+ */
121
+ /**
122
+ * Applies editor left position to the selector passed as argument
123
+ */
124
+ /**
125
+ * Styles that are reused verbatim in a few places
126
+ */
127
+ /**
128
+ * Allows users to opt-out of animations via OS-level preferences.
129
+ */
130
+ /**
131
+ * Reset default styles for JavaScript UI based pages.
132
+ * This is a WP-admin agnostic reset
133
+ */
134
+ /**
135
+ * Reset the WP Admin page styles for Gutenberg-like pages.
136
+ */
26
137
  /**
27
138
  * Colors
28
139
  */
140
+ /**
141
+ * SCSS Variables.
142
+ *
143
+ * Please use variables from this sheet to ensure consistency across the UI.
144
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
145
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
146
+ */
29
147
  /**
30
148
  * Fonts & basic variables.
31
149
  */
@@ -61,6 +179,9 @@
61
179
  * React Native specific.
62
180
  * These variables do not appear to be used anywhere else.
63
181
  */
182
+ /**
183
+ * Breakpoints & Media Queries
184
+ */
64
185
  /**
65
186
  * Converts a hex value into the rgb equivalent.
66
187
  *
@@ -99,6 +220,9 @@
99
220
  * Reset the WP Admin page styles for Gutenberg-like pages.
100
221
  */
101
222
  :root {
223
+ --wp-block-synced-color: #7a00df;
224
+ --wp-block-synced-color--rgb: 122, 0, 223;
225
+ --wp-bound-block-color: var(--wp-block-synced-color);
102
226
  --wp-admin-theme-color: #007cba;
103
227
  --wp-admin-theme-color--rgb: 0, 124, 186;
104
228
  --wp-admin-theme-color-darker-10: #006ba1;
@@ -106,9 +230,6 @@
106
230
  --wp-admin-theme-color-darker-20: #005a87;
107
231
  --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
108
232
  --wp-admin-border-width-focus: 2px;
109
- --wp-block-synced-color: #7a00df;
110
- --wp-block-synced-color--rgb: 122, 0, 223;
111
- --wp-bound-block-color: var(--wp-block-synced-color);
112
233
  }
113
234
  @media (min-resolution: 192dpi) {
114
235
  :root {
@@ -319,12 +440,14 @@ iframe[name=editor-canvas] {
319
440
  margin-bottom: 1.5em;
320
441
  }
321
442
  .block-editor-block-inspector .components-base-control:where(:not(:last-child)),
322
- .block-editor-block-inspector .components-radio-control:where(:not(:last-child)) {
443
+ .block-editor-block-inspector .components-radio-control:where(:not(:last-child)),
444
+ .block-editor-block-inspector .block-editor-html-element-control:where(:not(:last-child)) {
323
445
  margin-bottom: 16px;
324
446
  }
325
447
  .block-editor-block-inspector .components-focal-point-picker-control .components-base-control,
326
448
  .block-editor-block-inspector .components-query-controls .components-base-control,
327
- .block-editor-block-inspector .components-range-control .components-base-control {
449
+ .block-editor-block-inspector .components-range-control .components-base-control,
450
+ .block-editor-block-inspector .block-editor-html-element-control .components-base-control {
328
451
  margin-bottom: 0;
329
452
  }
330
453
  .block-editor-block-inspector .components-panel__body {
@@ -3029,6 +3152,9 @@ iframe[name=editor-canvas] {
3029
3152
  width: 300px;
3030
3153
  }
3031
3154
  }
3155
+ .block-editor-media-placeholder__url-input-form input {
3156
+ direction: ltr;
3157
+ }
3032
3158
 
3033
3159
  .modal-open .block-editor-media-replace-flow__options {
3034
3160
  display: none;
@@ -1,15 +1,12 @@
1
- /**
2
- * Converts a hex value into the rgb equivalent.
3
- *
4
- * @param {string} hex - the hexadecimal value to convert
5
- * @return {string} comma separated rgb values
6
- */
7
1
  /**
8
2
  * Colors
9
3
  */
10
4
  /**
11
5
  * Breakpoints & Media Queries
12
6
  */
7
+ /**
8
+ * Colors
9
+ */
13
10
  /**
14
11
  * SCSS Variables.
15
12
  *
@@ -17,15 +14,136 @@
17
14
  * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
18
15
  * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
19
16
  */
17
+ /**
18
+ * Fonts & basic variables.
19
+ */
20
+ /**
21
+ * Typography
22
+ */
23
+ /**
24
+ * Grid System.
25
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
26
+ */
27
+ /**
28
+ * Radius scale.
29
+ */
30
+ /**
31
+ * Elevation scale.
32
+ */
33
+ /**
34
+ * Dimensions.
35
+ */
36
+ /**
37
+ * Mobile specific styles
38
+ */
39
+ /**
40
+ * Editor styles.
41
+ */
42
+ /**
43
+ * Block & Editor UI.
44
+ */
45
+ /**
46
+ * Block paddings.
47
+ */
48
+ /**
49
+ * React Native specific.
50
+ * These variables do not appear to be used anywhere else.
51
+ */
52
+ /**
53
+ * Colors
54
+ */
55
+ /**
56
+ * SCSS Variables.
57
+ *
58
+ * Please use variables from this sheet to ensure consistency across the UI.
59
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
60
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
61
+ */
62
+ /**
63
+ * Fonts & basic variables.
64
+ */
65
+ /**
66
+ * Typography
67
+ */
68
+ /**
69
+ * Grid System.
70
+ * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
71
+ */
72
+ /**
73
+ * Radius scale.
74
+ */
75
+ /**
76
+ * Elevation scale.
77
+ */
78
+ /**
79
+ * Dimensions.
80
+ */
81
+ /**
82
+ * Mobile specific styles
83
+ */
84
+ /**
85
+ * Editor styles.
86
+ */
87
+ /**
88
+ * Block & Editor UI.
89
+ */
90
+ /**
91
+ * Block paddings.
92
+ */
93
+ /**
94
+ * React Native specific.
95
+ * These variables do not appear to be used anywhere else.
96
+ */
97
+ /**
98
+ * Breakpoints & Media Queries
99
+ */
20
100
  /**
21
101
  * Converts a hex value into the rgb equivalent.
22
102
  *
23
103
  * @param {string} hex - the hexadecimal value to convert
24
104
  * @return {string} comma separated rgb values
25
105
  */
106
+ /**
107
+ * Long content fade mixin
108
+ *
109
+ * Creates a fading overlay to signify that the content is longer
110
+ * than the space allows.
111
+ */
112
+ /**
113
+ * Typography
114
+ */
115
+ /**
116
+ * Breakpoint mixins
117
+ */
118
+ /**
119
+ * Focus styles.
120
+ */
121
+ /**
122
+ * Applies editor left position to the selector passed as argument
123
+ */
124
+ /**
125
+ * Styles that are reused verbatim in a few places
126
+ */
127
+ /**
128
+ * Allows users to opt-out of animations via OS-level preferences.
129
+ */
130
+ /**
131
+ * Reset default styles for JavaScript UI based pages.
132
+ * This is a WP-admin agnostic reset
133
+ */
134
+ /**
135
+ * Reset the WP Admin page styles for Gutenberg-like pages.
136
+ */
26
137
  /**
27
138
  * Colors
28
139
  */
140
+ /**
141
+ * SCSS Variables.
142
+ *
143
+ * Please use variables from this sheet to ensure consistency across the UI.
144
+ * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
145
+ * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
146
+ */
29
147
  /**
30
148
  * Fonts & basic variables.
31
149
  */
@@ -61,6 +179,9 @@
61
179
  * React Native specific.
62
180
  * These variables do not appear to be used anywhere else.
63
181
  */
182
+ /**
183
+ * Breakpoints & Media Queries
184
+ */
64
185
  /**
65
186
  * Converts a hex value into the rgb equivalent.
66
187
  *
@@ -99,6 +220,9 @@
99
220
  * Reset the WP Admin page styles for Gutenberg-like pages.
100
221
  */
101
222
  :root {
223
+ --wp-block-synced-color: #7a00df;
224
+ --wp-block-synced-color--rgb: 122, 0, 223;
225
+ --wp-bound-block-color: var(--wp-block-synced-color);
102
226
  --wp-admin-theme-color: #007cba;
103
227
  --wp-admin-theme-color--rgb: 0, 124, 186;
104
228
  --wp-admin-theme-color-darker-10: #006ba1;
@@ -106,9 +230,6 @@
106
230
  --wp-admin-theme-color-darker-20: #005a87;
107
231
  --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
108
232
  --wp-admin-border-width-focus: 2px;
109
- --wp-block-synced-color: #7a00df;
110
- --wp-block-synced-color--rgb: 122, 0, 223;
111
- --wp-bound-block-color: var(--wp-block-synced-color);
112
233
  }
113
234
  @media (min-resolution: 192dpi) {
114
235
  :root {
@@ -319,12 +440,14 @@ iframe[name=editor-canvas] {
319
440
  margin-bottom: 1.5em;
320
441
  }
321
442
  .block-editor-block-inspector .components-base-control:where(:not(:last-child)),
322
- .block-editor-block-inspector .components-radio-control:where(:not(:last-child)) {
443
+ .block-editor-block-inspector .components-radio-control:where(:not(:last-child)),
444
+ .block-editor-block-inspector .block-editor-html-element-control:where(:not(:last-child)) {
323
445
  margin-bottom: 16px;
324
446
  }
325
447
  .block-editor-block-inspector .components-focal-point-picker-control .components-base-control,
326
448
  .block-editor-block-inspector .components-query-controls .components-base-control,
327
- .block-editor-block-inspector .components-range-control .components-base-control {
449
+ .block-editor-block-inspector .components-range-control .components-base-control,
450
+ .block-editor-block-inspector .block-editor-html-element-control .components-base-control {
328
451
  margin-bottom: 0;
329
452
  }
330
453
  .block-editor-block-inspector .components-panel__body {
@@ -3030,6 +3153,10 @@ iframe[name=editor-canvas] {
3030
3153
  width: 300px;
3031
3154
  }
3032
3155
  }
3156
+ .block-editor-media-placeholder__url-input-form input {
3157
+ /* rtl:ignore */
3158
+ direction: ltr;
3159
+ }
3033
3160
 
3034
3161
  .modal-open .block-editor-media-replace-flow__options {
3035
3162
  display: none;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/block-editor",
3
- "version": "14.17.0",
3
+ "version": "14.19.0",
4
4
  "description": "Generic block editor.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -37,38 +37,38 @@
37
37
  "@emotion/react": "^11.7.1",
38
38
  "@emotion/styled": "^11.6.0",
39
39
  "@react-spring/web": "^9.4.5",
40
- "@wordpress/a11y": "^4.22.0",
41
- "@wordpress/api-fetch": "^7.22.0",
42
- "@wordpress/blob": "^4.22.0",
43
- "@wordpress/block-serialization-default-parser": "^5.22.0",
44
- "@wordpress/blocks": "^14.11.0",
45
- "@wordpress/commands": "^1.22.0",
46
- "@wordpress/components": "^29.8.0",
47
- "@wordpress/compose": "^7.22.0",
48
- "@wordpress/data": "^10.22.0",
49
- "@wordpress/date": "^5.22.0",
50
- "@wordpress/deprecated": "^4.22.0",
51
- "@wordpress/dom": "^4.22.0",
52
- "@wordpress/element": "^6.22.0",
53
- "@wordpress/escape-html": "^3.22.0",
54
- "@wordpress/hooks": "^4.22.0",
55
- "@wordpress/html-entities": "^4.22.0",
56
- "@wordpress/i18n": "^5.22.0",
57
- "@wordpress/icons": "^10.22.0",
58
- "@wordpress/is-shallow-equal": "^5.22.0",
59
- "@wordpress/keyboard-shortcuts": "^5.22.0",
60
- "@wordpress/keycodes": "^4.22.0",
61
- "@wordpress/notices": "^5.22.0",
62
- "@wordpress/preferences": "^4.22.0",
63
- "@wordpress/priority-queue": "^3.22.0",
64
- "@wordpress/private-apis": "^1.22.0",
65
- "@wordpress/rich-text": "^7.22.0",
66
- "@wordpress/style-engine": "^2.22.0",
67
- "@wordpress/token-list": "^3.22.0",
68
- "@wordpress/upload-media": "^0.7.0",
69
- "@wordpress/url": "^4.22.0",
70
- "@wordpress/warning": "^3.22.0",
71
- "@wordpress/wordcount": "^4.22.0",
40
+ "@wordpress/a11y": "^4.24.0",
41
+ "@wordpress/api-fetch": "^7.24.0",
42
+ "@wordpress/blob": "^4.24.0",
43
+ "@wordpress/block-serialization-default-parser": "^5.24.0",
44
+ "@wordpress/blocks": "^14.13.0",
45
+ "@wordpress/commands": "^1.24.0",
46
+ "@wordpress/components": "^29.10.0",
47
+ "@wordpress/compose": "^7.24.0",
48
+ "@wordpress/data": "^10.24.0",
49
+ "@wordpress/date": "^5.24.0",
50
+ "@wordpress/deprecated": "^4.24.0",
51
+ "@wordpress/dom": "^4.24.0",
52
+ "@wordpress/element": "^6.24.0",
53
+ "@wordpress/escape-html": "^3.24.0",
54
+ "@wordpress/hooks": "^4.24.0",
55
+ "@wordpress/html-entities": "^4.24.0",
56
+ "@wordpress/i18n": "^5.24.0",
57
+ "@wordpress/icons": "^10.24.0",
58
+ "@wordpress/is-shallow-equal": "^5.24.0",
59
+ "@wordpress/keyboard-shortcuts": "^5.24.0",
60
+ "@wordpress/keycodes": "^4.24.0",
61
+ "@wordpress/notices": "^5.24.0",
62
+ "@wordpress/preferences": "^4.24.0",
63
+ "@wordpress/priority-queue": "^3.24.0",
64
+ "@wordpress/private-apis": "^1.24.0",
65
+ "@wordpress/rich-text": "^7.24.0",
66
+ "@wordpress/style-engine": "^2.24.0",
67
+ "@wordpress/token-list": "^3.24.0",
68
+ "@wordpress/upload-media": "^0.9.0",
69
+ "@wordpress/url": "^4.24.0",
70
+ "@wordpress/warning": "^3.24.0",
71
+ "@wordpress/wordcount": "^4.24.0",
72
72
  "change-case": "^4.1.2",
73
73
  "clsx": "^2.1.1",
74
74
  "colord": "^2.7.0",
@@ -91,5 +91,5 @@
91
91
  "publishConfig": {
92
92
  "access": "public"
93
93
  },
94
- "gitHead": "01a314d7e46a50101e328fdb11959c441e49372d"
94
+ "gitHead": "9c03d1458cae76792ae15e67b421205836bf4393"
95
95
  }