File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 55### Bug Fixes
66
77- ` TextareaControl ` : Add missing component CSS classname ([ #70930 ] ( https://github.com/WordPress/gutenberg/pull/70930 ) ).
8+ - ` PaletteEdit ` : Fill available space with input field ([ #70935 ] ( https://github.com/WordPress/gutenberg/pull/70935 ) ).
89
910## 30.0.0 (2025-07-23)
1011
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import { useDebounce } from '@wordpress/compose';
2222 */
2323import Button from '../button' ;
2424import { ColorPicker } from '../color-picker' ;
25- import { FlexItem } from '../flex' ;
25+ import { FlexBlock , FlexItem } from '../flex' ;
2626import { HStack } from '../h-stack' ;
2727import { Item , ItemGroup } from '../item-group' ;
2828import { VStack } from '../v-stack' ;
@@ -229,7 +229,7 @@ function Option< T extends PaletteElement >( {
229229 >
230230 < IndicatorStyled colorValue = { value } />
231231 </ Button >
232- < FlexItem >
232+ < FlexBlock >
233233 { ! canOnlyChangeValues ? (
234234 < NameInput
235235 label = {
@@ -256,7 +256,7 @@ function Option< T extends PaletteElement >( {
256256 '\u00A0' }
257257 </ NameContainer >
258258 ) }
259- </ FlexItem >
259+ </ FlexBlock >
260260 { ! canOnlyChangeValues && (
261261 < FlexItem >
262262 < RemoveButton
You can’t perform that action at this time.
0 commit comments