Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Apply suggestions from André
Co-authored-by: André <583546+oandregal@users.noreply.github.com>
  • Loading branch information
elazzabi and oandregal authored Aug 13, 2025
commit 4be7db646dbdda9b62d735a6beb8a9204c98250f
2 changes: 1 addition & 1 deletion packages/dataviews/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

### Features

- Introduce new `array` type in DataForm fields. [#71136](https://github.com/WordPress/gutenberg/pull/71136)
- Introduce a new `array` DataForm Edit control that supports multi-selection. [#71136](https://github.com/WordPress/gutenberg/pull/71136)
- Add `enableMoving` option to the `table` layout to allow or disallow column moving left and right. [#71120](https://github.com/WordPress/gutenberg/pull/71120)

## 6.0.0 (2025-08-07)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ type SamplePost = {
filesize?: number;
dimensions?: string;
tags?: string[];
select?: string;
};

const meta = {
Expand Down Expand Up @@ -145,18 +144,6 @@ const fields = [
type: 'text' as const,
readOnly: true,
},
{
id: 'select',
label: 'Select',
type: 'select' as const,
elements: [
{ value: 'astronomy', label: 'Astronomy' },
{ value: 'book-review', label: 'Book review' },
{ value: 'event', label: 'Event' },
{ value: 'photography', label: 'Photography' },
{ value: 'travel', label: 'Travel' },
],
},
{
id: 'tags',
label: 'Tags',
Expand Down Expand Up @@ -214,7 +201,6 @@ export const Default = ( {
'can_comment',
'filesize',
'dimensions',
'select',
'tags',
],
} ),
Expand Down Expand Up @@ -254,7 +240,6 @@ const CombinedFieldsComponent = ( {
filesize: 1024,
dimensions: '1920x1080',
tags: [ 'photography' ],
select: 'event',
} );

const form = useMemo(
Expand Down
Loading