@wordpress/block-directory 5.0.7 → 5.0.9

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.
@@ -158,6 +158,7 @@
158
158
  text-align: right;
159
159
  display: grid;
160
160
  grid-template-columns: auto 1fr;
161
+ position: relative;
161
162
  }
162
163
  .block-directory-downloadable-block-list-item:hover {
163
164
  box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
@@ -158,6 +158,7 @@
158
158
  text-align: left;
159
159
  display: grid;
160
160
  grid-template-columns: auto 1fr;
161
+ position: relative;
161
162
  }
162
163
  .block-directory-downloadable-block-list-item:hover {
163
164
  box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/block-directory",
3
- "version": "5.0.7",
3
+ "version": "5.0.9",
4
4
  "description": "Extend editor with block directory features to search, download and install blocks.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -29,14 +29,14 @@
29
29
  "@babel/runtime": "^7.16.0",
30
30
  "@wordpress/a11y": "^4.0.1",
31
31
  "@wordpress/api-fetch": "^7.0.1",
32
- "@wordpress/block-editor": "^13.0.5",
32
+ "@wordpress/block-editor": "^13.0.7",
33
33
  "@wordpress/blocks": "^13.0.3",
34
34
  "@wordpress/components": "^28.0.3",
35
35
  "@wordpress/compose": "^7.0.1",
36
- "@wordpress/core-data": "^7.0.5",
36
+ "@wordpress/core-data": "^7.0.7",
37
37
  "@wordpress/data": "^10.0.2",
38
- "@wordpress/edit-post": "^8.0.7",
39
- "@wordpress/editor": "^14.0.6",
38
+ "@wordpress/edit-post": "^8.0.9",
39
+ "@wordpress/editor": "^14.0.8",
40
40
  "@wordpress/element": "^6.0.1",
41
41
  "@wordpress/hooks": "^4.0.1",
42
42
  "@wordpress/html-entities": "^4.0.1",
@@ -55,5 +55,5 @@
55
55
  "publishConfig": {
56
56
  "access": "public"
57
57
  },
58
- "gitHead": "0b9a9459519b0e1a023109bab307ed1448405480"
58
+ "gitHead": "a74a70ed203bbcbb5f3d34335df9631178647acb"
59
59
  }
@@ -6,6 +6,12 @@
6
6
  display: grid;
7
7
  grid-template-columns: auto 1fr;
8
8
 
9
+ // The item contains absolutely positioned items.
10
+ // Set `position: relative` on the parent to prevent overflow issues
11
+ // in scroll containers.
12
+ // See: https://github.com/WordPress/gutenberg/issues/63384
13
+ position: relative;
14
+
9
15
  &:hover {
10
16
  @include button-style__focus();
11
17
  }