General:
- Added
theme.toggleGroup.container.extend
to allow passing custom styles to the ToggleGroup container. (#7487) - Added
theme.dataTable.body.row.extend
to enable passing custom styles to DataTablerows
. (#7489) - Added ability for a compound focus indicator approach. Opt in to this approach with
theme.global.focus.twoColor
. (#7479) - Added
theme.select.listbox.extend
andtheme.selectMultiple.listbox.extend
to allow styling of the listbox container around theoptions
in Select and SelectMultiple. (#7496) - Added
theme.notification.message.fill
to allow opt-in of the notification message filling the container instead of having amax-width
whendirection: column
. (#7488) - Added
theme.anchor.size[size].gap
to enable defining agap
for anchor based on the anchorsize
. (#7491) - Added
theme.menu.container
to enable passing any Box props to the container around the Menuoptions
. (#7494) - Added
theme.global.radius and theme.global.breakpoint[size].radius
to allow forradius
values to be styled independently fromedgeSize
. (#7499) - Fixed an issue with Select hover styles still being applied after
mouseOut
event. (#7469)
FormField:
- Added
theme.formField.disabled.help.color
andtheme.formField.disabled.info.color
to the theme to allow styling the text color of thehelp
andinfo
sections in FormField. (#7484) - Added
theme.formField[inputName].container.extend
to allow passing custom styles to the formField container based on the input type. (#7498) - Added
theme.formField.focus.containerFocus
to enable an opt-in where in some cases based on if it makes sense for the input type thefocus
is managed by the child component instead of the FormField. (#7490)