File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
packages/lib/src/plugins/mui Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 33* Implemented dynamic resizing for Vega Charts when the side panel's
44 width changes.
55 See https://github.com/xcube-dev/xcube/issues/1134
6+
7+ * Styles are now correctly applied to ` RadioGroup ` component.
68
79## Version 0.1.5 (from 2025/03/21)
810
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import MuiFormControlLabel from "@mui/material/FormControlLabel";
66import MuiFormLabel from "@mui/material/FormLabel" ;
77import { Tooltip } from "./Tooltip" ;
88
9- import type { ComponentState , ComponentProps } from "@/index" ;
9+ import type { ComponentProps , ComponentState } from "@/index" ;
1010
1111interface RadioState extends ComponentState {
1212 type : "Radio" ;
@@ -54,13 +54,14 @@ export function RadioGroup({
5454 } ;
5555 return (
5656 < Tooltip title = { tooltip } >
57- < MuiFormControl style = { style } disabled = { disabled } >
57+ < MuiFormControl disabled = { disabled } >
5858 < MuiFormLabel > { label } </ MuiFormLabel >
5959 < MuiRadioGroup
6060 id = { id }
6161 name = { name }
6262 row = { row }
6363 value = { value }
64+ style = { style }
6465 onChange = { handleChange }
6566 >
6667 { radioButtons &&
You can’t perform that action at this time.
0 commit comments