
* add eradicate rules for commented out code * remove output change * fix pyi messed up indent * fix pyi again * fix layout docstring * fix pyi_generator to remove commented out props from docs * fix pyi_generator and regenerate some pyi * fix double strip * update all pyi * try to fix stuff in pyi_gen * whatever * remove that maybe? i don't know * fix that shit? * fix more shit, idk * better not see you ever again, extra line
524 lines
21 KiB
Python
524 lines
21 KiB
Python
"""Stub file for reflex/components/radix/themes/components/radio_group.py"""
|
|
|
|
# ------------------- DO NOT EDIT ----------------------
|
|
# This file was generated by `reflex/utils/pyi_generator.py`!
|
|
# ------------------------------------------------------
|
|
from typing import Any, Dict, List, Literal, Optional, Union, overload
|
|
|
|
from reflex.components.component import ComponentNamespace
|
|
from reflex.components.core.breakpoints import Breakpoints
|
|
from reflex.event import BASE_STATE, EventType
|
|
from reflex.style import Style
|
|
from reflex.vars.base import Var
|
|
|
|
from ..base import RadixThemesComponent
|
|
|
|
LiteralFlexDirection = Literal["row", "column", "row-reverse", "column-reverse"]
|
|
|
|
class RadioGroupRoot(RadixThemesComponent):
|
|
@overload
|
|
@classmethod
|
|
def create( # type: ignore
|
|
cls,
|
|
*children,
|
|
size: Optional[
|
|
Union[
|
|
Breakpoints[str, Literal["1", "2", "3"]],
|
|
Literal["1", "2", "3"],
|
|
Var[
|
|
Union[
|
|
Breakpoints[str, Literal["1", "2", "3"]], Literal["1", "2", "3"]
|
|
]
|
|
],
|
|
]
|
|
] = None,
|
|
variant: Optional[
|
|
Union[
|
|
Literal["classic", "soft", "surface"],
|
|
Var[Literal["classic", "soft", "surface"]],
|
|
]
|
|
] = None,
|
|
color_scheme: Optional[
|
|
Union[
|
|
Literal[
|
|
"amber",
|
|
"blue",
|
|
"bronze",
|
|
"brown",
|
|
"crimson",
|
|
"cyan",
|
|
"gold",
|
|
"grass",
|
|
"gray",
|
|
"green",
|
|
"indigo",
|
|
"iris",
|
|
"jade",
|
|
"lime",
|
|
"mint",
|
|
"orange",
|
|
"pink",
|
|
"plum",
|
|
"purple",
|
|
"red",
|
|
"ruby",
|
|
"sky",
|
|
"teal",
|
|
"tomato",
|
|
"violet",
|
|
"yellow",
|
|
],
|
|
Var[
|
|
Literal[
|
|
"amber",
|
|
"blue",
|
|
"bronze",
|
|
"brown",
|
|
"crimson",
|
|
"cyan",
|
|
"gold",
|
|
"grass",
|
|
"gray",
|
|
"green",
|
|
"indigo",
|
|
"iris",
|
|
"jade",
|
|
"lime",
|
|
"mint",
|
|
"orange",
|
|
"pink",
|
|
"plum",
|
|
"purple",
|
|
"red",
|
|
"ruby",
|
|
"sky",
|
|
"teal",
|
|
"tomato",
|
|
"violet",
|
|
"yellow",
|
|
]
|
|
],
|
|
]
|
|
] = None,
|
|
high_contrast: Optional[Union[Var[bool], bool]] = None,
|
|
value: Optional[Union[Var[str], str]] = None,
|
|
default_value: Optional[Union[Var[str], str]] = None,
|
|
disabled: Optional[Union[Var[bool], bool]] = None,
|
|
name: Optional[Union[Var[str], str]] = None,
|
|
required: Optional[Union[Var[bool], bool]] = None,
|
|
style: Optional[Style] = None,
|
|
key: Optional[Any] = None,
|
|
id: Optional[Any] = None,
|
|
class_name: Optional[Any] = None,
|
|
autofocus: Optional[bool] = None,
|
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
on_blur: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_change: Optional[
|
|
Union[EventType[[], BASE_STATE], EventType[[str], BASE_STATE]]
|
|
] = None,
|
|
on_click: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_context_menu: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_double_click: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_focus: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mount: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_down: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_enter: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_leave: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_move: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_out: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_over: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_up: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_scroll: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_unmount: Optional[EventType[[], BASE_STATE]] = None,
|
|
**props,
|
|
) -> "RadioGroupRoot":
|
|
"""Create a new component instance.
|
|
|
|
Will prepend "RadixThemes" to the component tag to avoid conflicts with
|
|
other UI libraries for common names, like Text and Button.
|
|
|
|
Args:
|
|
*children: Child components.
|
|
size: The size of the radio group: "1" | "2" | "3"
|
|
variant: The variant of the radio group
|
|
color_scheme: The color of the radio group
|
|
high_contrast: Whether to render the radio group with higher contrast color against background
|
|
value: The controlled value of the radio item to check. Should be used in conjunction with on_change.
|
|
default_value: The initial value of checked radio item. Should be used in conjunction with on_change.
|
|
disabled: Whether the radio group is disabled
|
|
name: The name of the group. Submitted with its owning form as part of a name/value pair.
|
|
required: Whether the radio group is required
|
|
on_change: Fired when the value of the radio group changes.
|
|
style: The style of the component.
|
|
key: A unique key for the component.
|
|
id: The id for the component.
|
|
class_name: The class name for the component.
|
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
custom_attrs: custom attribute
|
|
**props: Component properties.
|
|
|
|
Returns:
|
|
A new component instance.
|
|
"""
|
|
...
|
|
|
|
class RadioGroupItem(RadixThemesComponent):
|
|
@overload
|
|
@classmethod
|
|
def create( # type: ignore
|
|
cls,
|
|
*children,
|
|
value: Optional[Union[Var[str], str]] = None,
|
|
disabled: Optional[Union[Var[bool], bool]] = None,
|
|
required: Optional[Union[Var[bool], bool]] = None,
|
|
style: Optional[Style] = None,
|
|
key: Optional[Any] = None,
|
|
id: Optional[Any] = None,
|
|
class_name: Optional[Any] = None,
|
|
autofocus: Optional[bool] = None,
|
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
on_blur: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_click: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_context_menu: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_double_click: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_focus: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mount: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_down: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_enter: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_leave: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_move: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_out: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_over: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_up: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_scroll: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_unmount: Optional[EventType[[], BASE_STATE]] = None,
|
|
**props,
|
|
) -> "RadioGroupItem":
|
|
"""Create a new component instance.
|
|
|
|
Will prepend "RadixThemes" to the component tag to avoid conflicts with
|
|
other UI libraries for common names, like Text and Button.
|
|
|
|
Args:
|
|
*children: Child components.
|
|
value: The value of the radio item to check. Should be used in conjunction with on_change.
|
|
disabled: When true, prevents the user from interacting with the radio item.
|
|
required: When true, indicates that the user must check the radio item before the owning form can be submitted.
|
|
style: The style of the component.
|
|
key: A unique key for the component.
|
|
id: The id for the component.
|
|
class_name: The class name for the component.
|
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
custom_attrs: custom attribute
|
|
**props: Component properties.
|
|
|
|
Returns:
|
|
A new component instance.
|
|
"""
|
|
...
|
|
|
|
class HighLevelRadioGroup(RadixThemesComponent):
|
|
@overload
|
|
@classmethod
|
|
def create( # type: ignore
|
|
cls,
|
|
*children,
|
|
items: Optional[Union[List[str], Var[List[str]]]] = None,
|
|
direction: Optional[
|
|
Union[
|
|
Literal["column", "column-reverse", "row", "row-reverse"],
|
|
Var[Literal["column", "column-reverse", "row", "row-reverse"]],
|
|
]
|
|
] = None,
|
|
spacing: Optional[
|
|
Union[
|
|
Literal["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"],
|
|
Var[Literal["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"]],
|
|
]
|
|
] = None,
|
|
size: Optional[
|
|
Union[Literal["1", "2", "3"], Var[Literal["1", "2", "3"]]]
|
|
] = None,
|
|
variant: Optional[
|
|
Union[
|
|
Literal["classic", "soft", "surface"],
|
|
Var[Literal["classic", "soft", "surface"]],
|
|
]
|
|
] = None,
|
|
color_scheme: Optional[
|
|
Union[
|
|
Literal[
|
|
"amber",
|
|
"blue",
|
|
"bronze",
|
|
"brown",
|
|
"crimson",
|
|
"cyan",
|
|
"gold",
|
|
"grass",
|
|
"gray",
|
|
"green",
|
|
"indigo",
|
|
"iris",
|
|
"jade",
|
|
"lime",
|
|
"mint",
|
|
"orange",
|
|
"pink",
|
|
"plum",
|
|
"purple",
|
|
"red",
|
|
"ruby",
|
|
"sky",
|
|
"teal",
|
|
"tomato",
|
|
"violet",
|
|
"yellow",
|
|
],
|
|
Var[
|
|
Literal[
|
|
"amber",
|
|
"blue",
|
|
"bronze",
|
|
"brown",
|
|
"crimson",
|
|
"cyan",
|
|
"gold",
|
|
"grass",
|
|
"gray",
|
|
"green",
|
|
"indigo",
|
|
"iris",
|
|
"jade",
|
|
"lime",
|
|
"mint",
|
|
"orange",
|
|
"pink",
|
|
"plum",
|
|
"purple",
|
|
"red",
|
|
"ruby",
|
|
"sky",
|
|
"teal",
|
|
"tomato",
|
|
"violet",
|
|
"yellow",
|
|
]
|
|
],
|
|
]
|
|
] = None,
|
|
high_contrast: Optional[Union[Var[bool], bool]] = None,
|
|
value: Optional[Union[Var[str], str]] = None,
|
|
default_value: Optional[Union[Var[str], str]] = None,
|
|
disabled: Optional[Union[Var[bool], bool]] = None,
|
|
name: Optional[Union[Var[str], str]] = None,
|
|
required: Optional[Union[Var[bool], bool]] = None,
|
|
style: Optional[Style] = None,
|
|
key: Optional[Any] = None,
|
|
id: Optional[Any] = None,
|
|
class_name: Optional[Any] = None,
|
|
autofocus: Optional[bool] = None,
|
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
on_blur: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_click: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_context_menu: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_double_click: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_focus: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mount: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_down: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_enter: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_leave: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_move: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_out: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_over: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_up: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_scroll: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_unmount: Optional[EventType[[], BASE_STATE]] = None,
|
|
**props,
|
|
) -> "HighLevelRadioGroup":
|
|
"""Create a radio group component.
|
|
|
|
Args:
|
|
items: The items of the radio group.
|
|
items: The items of the radio group.
|
|
direction: The direction of the radio group.
|
|
spacing: The gap between the items of the radio group.
|
|
size: The size of the radio group.
|
|
variant: The variant of the radio group
|
|
color_scheme: The color of the radio group
|
|
high_contrast: Whether to render the radio group with higher contrast color against background
|
|
value: The controlled value of the radio item to check. Should be used in conjunction with on_change.
|
|
default_value: The initial value of checked radio item. Should be used in conjunction with on_change.
|
|
disabled: Whether the radio group is disabled
|
|
name: The name of the group. Submitted with its owning form as part of a name/value pair.
|
|
required: Whether the radio group is required
|
|
style: The style of the component.
|
|
key: A unique key for the component.
|
|
id: The id for the component.
|
|
class_name: The class name for the component.
|
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
custom_attrs: custom attribute
|
|
**props: Additional properties to apply to the accordion item.
|
|
|
|
Returns:
|
|
The created radio group component.
|
|
|
|
Raises:
|
|
TypeError: If the type of items is invalid.
|
|
"""
|
|
...
|
|
|
|
class RadioGroup(ComponentNamespace):
|
|
root = staticmethod(RadioGroupRoot.create)
|
|
item = staticmethod(RadioGroupItem.create)
|
|
|
|
@staticmethod
|
|
def __call__(
|
|
*children,
|
|
items: Optional[Union[List[str], Var[List[str]]]] = None,
|
|
direction: Optional[
|
|
Union[
|
|
Literal["column", "column-reverse", "row", "row-reverse"],
|
|
Var[Literal["column", "column-reverse", "row", "row-reverse"]],
|
|
]
|
|
] = None,
|
|
spacing: Optional[
|
|
Union[
|
|
Literal["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"],
|
|
Var[Literal["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"]],
|
|
]
|
|
] = None,
|
|
size: Optional[
|
|
Union[Literal["1", "2", "3"], Var[Literal["1", "2", "3"]]]
|
|
] = None,
|
|
variant: Optional[
|
|
Union[
|
|
Literal["classic", "soft", "surface"],
|
|
Var[Literal["classic", "soft", "surface"]],
|
|
]
|
|
] = None,
|
|
color_scheme: Optional[
|
|
Union[
|
|
Literal[
|
|
"amber",
|
|
"blue",
|
|
"bronze",
|
|
"brown",
|
|
"crimson",
|
|
"cyan",
|
|
"gold",
|
|
"grass",
|
|
"gray",
|
|
"green",
|
|
"indigo",
|
|
"iris",
|
|
"jade",
|
|
"lime",
|
|
"mint",
|
|
"orange",
|
|
"pink",
|
|
"plum",
|
|
"purple",
|
|
"red",
|
|
"ruby",
|
|
"sky",
|
|
"teal",
|
|
"tomato",
|
|
"violet",
|
|
"yellow",
|
|
],
|
|
Var[
|
|
Literal[
|
|
"amber",
|
|
"blue",
|
|
"bronze",
|
|
"brown",
|
|
"crimson",
|
|
"cyan",
|
|
"gold",
|
|
"grass",
|
|
"gray",
|
|
"green",
|
|
"indigo",
|
|
"iris",
|
|
"jade",
|
|
"lime",
|
|
"mint",
|
|
"orange",
|
|
"pink",
|
|
"plum",
|
|
"purple",
|
|
"red",
|
|
"ruby",
|
|
"sky",
|
|
"teal",
|
|
"tomato",
|
|
"violet",
|
|
"yellow",
|
|
]
|
|
],
|
|
]
|
|
] = None,
|
|
high_contrast: Optional[Union[Var[bool], bool]] = None,
|
|
value: Optional[Union[Var[str], str]] = None,
|
|
default_value: Optional[Union[Var[str], str]] = None,
|
|
disabled: Optional[Union[Var[bool], bool]] = None,
|
|
name: Optional[Union[Var[str], str]] = None,
|
|
required: Optional[Union[Var[bool], bool]] = None,
|
|
style: Optional[Style] = None,
|
|
key: Optional[Any] = None,
|
|
id: Optional[Any] = None,
|
|
class_name: Optional[Any] = None,
|
|
autofocus: Optional[bool] = None,
|
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
on_blur: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_click: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_context_menu: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_double_click: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_focus: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mount: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_down: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_enter: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_leave: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_move: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_out: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_over: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_mouse_up: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_scroll: Optional[EventType[[], BASE_STATE]] = None,
|
|
on_unmount: Optional[EventType[[], BASE_STATE]] = None,
|
|
**props,
|
|
) -> "HighLevelRadioGroup":
|
|
"""Create a radio group component.
|
|
|
|
Args:
|
|
items: The items of the radio group.
|
|
items: The items of the radio group.
|
|
direction: The direction of the radio group.
|
|
spacing: The gap between the items of the radio group.
|
|
size: The size of the radio group.
|
|
variant: The variant of the radio group
|
|
color_scheme: The color of the radio group
|
|
high_contrast: Whether to render the radio group with higher contrast color against background
|
|
value: The controlled value of the radio item to check. Should be used in conjunction with on_change.
|
|
default_value: The initial value of checked radio item. Should be used in conjunction with on_change.
|
|
disabled: Whether the radio group is disabled
|
|
name: The name of the group. Submitted with its owning form as part of a name/value pair.
|
|
required: Whether the radio group is required
|
|
style: The style of the component.
|
|
key: A unique key for the component.
|
|
id: The id for the component.
|
|
class_name: The class name for the component.
|
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
custom_attrs: custom attribute
|
|
**props: Additional properties to apply to the accordion item.
|
|
|
|
Returns:
|
|
The created radio group component.
|
|
|
|
Raises:
|
|
TypeError: If the type of items is invalid.
|
|
"""
|
|
...
|
|
|
|
radio = radio_group = RadioGroup()
|