21 lines
1.2 KiB
Python
21 lines
1.2 KiB
Python
"""Stub file for circularprogress.py"""
|
|
# ------------------- DO NOT EDIT ----------------------
|
|
# This file was generated by `scripts/pyi_generator.py`!
|
|
# ------------------------------------------------------
|
|
|
|
from typing import Union, overload, Optional
|
|
from reflex.components.libs.chakra import ChakraComponent
|
|
from reflex.components.component import Component
|
|
from reflex.vars import Var, BaseVar, ComputedVar
|
|
from reflex.event import EventChain
|
|
|
|
class CircularProgress(ChakraComponent):
|
|
@overload
|
|
@classmethod
|
|
def create(cls, *children, label, cap_is_round: Optional[Union[Var[bool], bool]] = None, is_indeterminate: Optional[Union[Var[bool], bool]] = None, max_: Optional[Union[Var[int], int]] = None, min_: Optional[Union[Var[int], int]] = None, thickness: Optional[Union[Var[int], int]] = None, track_color: Optional[Union[Var[str], str]] = None, value: Optional[Union[Var[int], int]] = None, value_text: Optional[Union[Var[str], str]] = None, color: Optional[Union[Var[str], str]] = None, **props) -> "CircularProgress": ... # type: ignore
|
|
|
|
class CircularProgressLabel(ChakraComponent):
|
|
@overload
|
|
@classmethod
|
|
def create(cls, *children, **props) -> "CircularProgressLabel": ... # type: ignore
|