123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- """Stub file for reflex/components/radix/themes/components/avatar.py"""
- # ------------------- DO NOT EDIT ----------------------
- # This file was generated by `reflex/utils/pyi_generator.py`!
- # ------------------------------------------------------
- from typing import Any, Dict, Literal, Optional, Union, overload
- 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
- LiteralSize = Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]
- class Avatar(RadixThemesComponent):
- @overload
- @classmethod
- def create( # type: ignore
- cls,
- *children,
- variant: Optional[
- Union[Literal["soft", "solid"], Var[Literal["soft", "solid"]]]
- ] = None,
- size: Optional[
- Union[
- Breakpoints[str, Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]],
- Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"],
- Var[
- Union[
- Breakpoints[
- str, Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]
- ],
- Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"],
- ]
- ],
- ]
- ] = 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,
- radius: Optional[
- Union[
- Literal["full", "large", "medium", "none", "small"],
- Var[Literal["full", "large", "medium", "none", "small"]],
- ]
- ] = None,
- src: Optional[Union[Var[str], str]] = None,
- fallback: 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[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,
- ) -> "Avatar":
- """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.
- variant: The variant of the avatar
- size: The size of the avatar: "1" - "9"
- color_scheme: Color theme of the avatar
- high_contrast: Whether to render the avatar with higher contrast color against background
- radius: Override theme radius for avatar: "none" | "small" | "medium" | "large" | "full"
- src: The src of the avatar image
- fallback: The rendered fallback text
- 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.
- """
- ...
- avatar = Avatar.create
|