Skip to content

Commit 3630af8

Browse files
committed
Update changelog
1 parent 0819a6b commit 3630af8

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

packages/components/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
- Expose `ValidatedTextareaControl` via Private APIs ([#71495](https://github.com/WordPress/gutenberg/pull/71495))
1313
- Add support for ValidatedFormTokenField [#71350](https://github.com/WordPress/gutenberg/pull/71350).
1414
- Expose `ValidatedSelectControl` via Private APIs ([#71665](https://github.com/WordPress/gutenberg/pull/71665))
15+
- Expose `ValidatedToggleGroupControl` via private APIs. ([#71666](https://github.com/WordPress/gutenberg/pull/71666))
1516

1617
## 30.3.0 (2025-09-03)
1718

packages/dataviews/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
- DataForm: Add a textarea control for use with the `text` field type ([#71495](https://github.com/WordPress/gutenberg/pull/71495))
1818
- DataViews: support groupBy in the list layout. [#71548](https://github.com/WordPress/gutenberg/pull/71548)
1919
- DataForm: support validation in select control [#71665](https://github.com/WordPress/gutenberg/pull/71665)
20+
- DataForm: support validation in toggleGroup control. ([#71666](https://github.com/WordPress/gutenberg/pull/71666))
2021

2122
### Bug Fixes
2223

packages/dataviews/src/components/dataform/stories/index.story.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ const ValidationComponent = ( {
498498
};
499499
const customToggleGroupRule = ( value: ValidatedItem ) => {
500500
if ( value.toggleGroup !== 'option1' ) {
501-
return 'Toggle must be Option 1.';
501+
return 'Value must be Option 1.';
502502
}
503503

504504
return null;

0 commit comments

Comments
 (0)