File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed
src/components/dataform/stories Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments