|
@@ -34,8 +34,10 @@ class SegmentedControlRoot(RadixThemesComponent):
|
|
# The default value of the segmented control.
|
|
# The default value of the segmented control.
|
|
default_value: Var[Union[str, List[str]]]
|
|
default_value: Var[Union[str, List[str]]]
|
|
|
|
|
|
|
|
+ # The current value of the segmented control.
|
|
value: Var[Union[str, List[str]]]
|
|
value: Var[Union[str, List[str]]]
|
|
|
|
|
|
|
|
+ # Handles the `onChange` event for the SegmentedControl component.
|
|
on_change: EventHandler[lambda e0: [e0]]
|
|
on_change: EventHandler[lambda e0: [e0]]
|
|
|
|
|
|
_rename_props = {"onChange": "onValueChange"}
|
|
_rename_props = {"onChange": "onValueChange"}
|