123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- """Stub file for reflex/components/radix/themes/components/checkbox_group.py"""
- # ------------------- DO NOT EDIT ----------------------
- # This file was generated by `reflex/utils/pyi_generator.py`!
- # ------------------------------------------------------
- from types import SimpleNamespace
- from typing import Any, Callable, Dict, List, Literal, Optional, Union, overload
- from reflex.components.core.breakpoints import Breakpoints
- from reflex.event import EventHandler, EventSpec
- from reflex.ivars.base import ImmutableVar
- from reflex.style import Style
- from reflex.vars import Var
- from ..base import RadixThemesComponent
- class CheckboxGroupRoot(RadixThemesComponent):
- @overload
- @classmethod
- def create( # type: ignore
- cls,
- *children,
- size: Optional[
- Union[
- Var[
- Union[
- Breakpoints[str, Literal["1", "2", "3"]], Literal["1", "2", "3"]
- ]
- ],
- Literal["1", "2", "3"],
- Breakpoints[str, Literal["1", "2", "3"]],
- ]
- ] = None,
- variant: Optional[
- Union[
- Var[Literal["classic", "surface", "soft"]],
- Literal["classic", "surface", "soft"],
- ]
- ] = None,
- color_scheme: Optional[
- Union[
- Var[
- Literal[
- "tomato",
- "red",
- "ruby",
- "crimson",
- "pink",
- "plum",
- "purple",
- "violet",
- "iris",
- "indigo",
- "blue",
- "cyan",
- "teal",
- "jade",
- "green",
- "grass",
- "brown",
- "orange",
- "sky",
- "mint",
- "lime",
- "yellow",
- "amber",
- "gold",
- "bronze",
- "gray",
- ]
- ],
- Literal[
- "tomato",
- "red",
- "ruby",
- "crimson",
- "pink",
- "plum",
- "purple",
- "violet",
- "iris",
- "indigo",
- "blue",
- "cyan",
- "teal",
- "jade",
- "green",
- "grass",
- "brown",
- "orange",
- "sky",
- "mint",
- "lime",
- "yellow",
- "amber",
- "gold",
- "bronze",
- "gray",
- ],
- ]
- ] = None,
- high_contrast: Optional[Union[Var[bool], bool]] = None,
- default_value: Optional[Union[Var[List[str]], List[str]]] = None,
- name: Optional[Union[Var[str], str]] = 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[ImmutableVar, str]]] = None,
- on_blur: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_click: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_context_menu: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_double_click: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_focus: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_mount: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_mouse_down: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_mouse_enter: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_mouse_leave: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_mouse_move: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_mouse_out: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_mouse_over: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_mouse_up: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_scroll: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_unmount: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- **props,
- ) -> "CheckboxGroupRoot":
- """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: Use the size prop to control the checkbox size.
- variant: Variant of button: "classic" | "surface" | "soft"
- color_scheme: Override theme color for button
- high_contrast: Uses a higher contrast color for the component.
- default_value: determines which checkboxes, if any, are checked by default.
- name: used to assign a name to the entire group of checkboxes
- 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 CheckboxGroupItem(RadixThemesComponent):
- @overload
- @classmethod
- def create( # type: ignore
- cls,
- *children,
- value: Optional[Union[Var[str], str]] = None,
- disabled: 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[ImmutableVar, str]]] = None,
- on_blur: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_click: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_context_menu: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_double_click: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_focus: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_mount: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_mouse_down: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_mouse_enter: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_mouse_leave: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_mouse_move: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_mouse_out: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_mouse_over: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_mouse_up: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_scroll: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- on_unmount: Optional[
- Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
- ] = None,
- **props,
- ) -> "CheckboxGroupItem":
- """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: specifies the value associated with a particular checkbox option.
- disabled: Use the native disabled attribute to create a disabled checkbox.
- 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 CheckboxGroup(SimpleNamespace):
- root = staticmethod(CheckboxGroupRoot.create)
- item = staticmethod(CheckboxGroupItem.create)
- checkbox_group = CheckboxGroup()
|