@wordpress/dataviews 10.1.5 → 10.1.6

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 CHANGED
@@ -10,6 +10,7 @@
10
10
 
11
11
  - Fix: DataViews modal actions in list layout. [#72793](https://github.com/WordPress/gutenberg/pull/72793)
12
12
  - Fix: Table layout column spacing. [#72969](https://github.com/WordPress/gutenberg/pull/72969)
13
+ - Fix: ensure primary actions are not wrapped in the list layout. [#73333](https://github.com/WordPress/gutenberg/pull/73333)
13
14
 
14
15
  ## 10.2.0 (2025-10-29)
15
16
 
@@ -1153,6 +1153,7 @@ div.dataviews-view-list {
1153
1153
  width: max-content;
1154
1154
  flex: 0 0 auto;
1155
1155
  gap: 4px;
1156
+ white-space: nowrap;
1156
1157
  }
1157
1158
  .dataviews-view-list div[role=row] .dataviews-view-list__item-actions .components-button,
1158
1159
  .dataviews-view-list div[role=article] .dataviews-view-list__item-actions .components-button {
@@ -1153,6 +1153,7 @@ div.dataviews-view-list {
1153
1153
  width: max-content;
1154
1154
  flex: 0 0 auto;
1155
1155
  gap: 4px;
1156
+ white-space: nowrap;
1156
1157
  }
1157
1158
  .dataviews-view-list div[role=row] .dataviews-view-list__item-actions .components-button,
1158
1159
  .dataviews-view-list div[role=article] .dataviews-view-list__item-actions .components-button {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/dataviews",
3
- "version": "10.1.5",
3
+ "version": "10.1.6",
4
4
  "description": "DataViews is a component that provides an API to render datasets using different types of layouts (table, grid, list, etc.).",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -74,5 +74,5 @@
74
74
  "scripts": {
75
75
  "build:wp": "node build"
76
76
  },
77
- "gitHead": "e821b2ec0a90d60aa7cafc248ba049f13b4265b7"
77
+ "gitHead": "1c473d047a0b8f529f07cc1e23324a6be723bbc9"
78
78
  }
@@ -24,6 +24,7 @@ div.dataviews-view-list {
24
24
  width: max-content;
25
25
  flex: 0 0 auto;
26
26
  gap: $grid-unit-05;
27
+ white-space: nowrap;
27
28
 
28
29
  .components-button {
29
30
  position: relative;