@wordpress/editor 13.12.13 → 13.12.15

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.
@@ -631,14 +631,17 @@
631
631
  width: 100%;
632
632
  position: relative;
633
633
  justify-content: flex-start;
634
+ align-items: flex-start;
634
635
  }
635
636
  .edit-post-sync-status > span {
636
637
  display: block;
637
638
  width: 45%;
638
639
  flex-shrink: 0;
640
+ padding: 6px 0;
641
+ word-break: break-word;
639
642
  }
640
643
  .edit-post-sync-status > div {
641
- padding-right: 12px;
644
+ padding: 6px 12px 6px 0;
642
645
  }
643
646
 
644
647
  .editor-post-taxonomies__hierarchical-terms-list {
@@ -631,14 +631,17 @@
631
631
  width: 100%;
632
632
  position: relative;
633
633
  justify-content: flex-start;
634
+ align-items: flex-start;
634
635
  }
635
636
  .edit-post-sync-status > span {
636
637
  display: block;
637
638
  width: 45%;
638
639
  flex-shrink: 0;
640
+ padding: 6px 0;
641
+ word-break: break-word;
639
642
  }
640
643
  .edit-post-sync-status > div {
641
- padding-left: 12px;
644
+ padding: 6px 0 6px 12px;
642
645
  }
643
646
 
644
647
  .editor-post-taxonomies__hierarchical-terms-list {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/editor",
3
- "version": "13.12.13",
3
+ "version": "13.12.15",
4
4
  "description": "Enhanced block editor for WordPress posts.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -34,11 +34,11 @@
34
34
  "@wordpress/a11y": "^3.35.1",
35
35
  "@wordpress/api-fetch": "^6.32.1",
36
36
  "@wordpress/blob": "^3.35.1",
37
- "@wordpress/block-editor": "^12.3.12",
37
+ "@wordpress/block-editor": "^12.3.14",
38
38
  "@wordpress/blocks": "^12.12.7",
39
- "@wordpress/components": "^25.1.10",
39
+ "@wordpress/components": "^25.1.11",
40
40
  "@wordpress/compose": "^6.12.2",
41
- "@wordpress/core-data": "^6.12.13",
41
+ "@wordpress/core-data": "^6.12.15",
42
42
  "@wordpress/data": "^9.5.5",
43
43
  "@wordpress/date": "^4.35.1",
44
44
  "@wordpress/deprecated": "^3.35.1",
@@ -52,11 +52,11 @@
52
52
  "@wordpress/keycodes": "^3.35.1",
53
53
  "@wordpress/media-utils": "^4.26.1",
54
54
  "@wordpress/notices": "^4.3.5",
55
- "@wordpress/preferences": "^3.12.10",
55
+ "@wordpress/preferences": "^3.12.11",
56
56
  "@wordpress/private-apis": "^0.17.2",
57
- "@wordpress/reusable-blocks": "^4.12.13",
58
- "@wordpress/rich-text": "^6.12.7",
59
- "@wordpress/server-side-render": "^4.12.12",
57
+ "@wordpress/reusable-blocks": "^4.12.15",
58
+ "@wordpress/rich-text": "^6.12.8",
59
+ "@wordpress/server-side-render": "^4.12.13",
60
60
  "@wordpress/url": "^3.36.1",
61
61
  "@wordpress/wordcount": "^3.35.1",
62
62
  "classnames": "^2.3.1",
@@ -73,5 +73,5 @@
73
73
  "publishConfig": {
74
74
  "access": "public"
75
75
  },
76
- "gitHead": "cfdd2a100c5301e4b37123b21e3499f48a6fcbaf"
76
+ "gitHead": "a5a32c1da19589a60d48ae793a3d0a5a48223db6"
77
77
  }
@@ -2,15 +2,18 @@
2
2
  width: 100%;
3
3
  position: relative;
4
4
  justify-content: flex-start;
5
+ align-items: flex-start;
5
6
 
6
7
  > span {
7
8
  display: block;
8
9
  width: 45%;
9
10
  flex-shrink: 0;
11
+ padding: $grid-unit-15 * 0.5 0;
12
+ word-break: break-word;
10
13
  }
11
14
 
12
15
  > div {
13
16
  // Match padding on tertiary buttons for alignment.
14
- padding-left: $grid-unit-15;
17
+ padding: $grid-unit-15 * 0.5 0 $grid-unit-15 * 0.5 $grid-unit-15;
15
18
  }
16
19
  }