34 lines
879 B
Python
34 lines
879 B
Python
"""Container to stack elements with spacing."""
|
|
|
|
from typing import Union
|
|
|
|
from pynecone.components.libs.chakra import ChakraComponent
|
|
from pynecone.vars import Var
|
|
|
|
|
|
class Progress(ChakraComponent):
|
|
"""A bar to display progress."""
|
|
|
|
tag = "Progress"
|
|
|
|
# If true, the progress bar will show stripe
|
|
has_stripe: Var[bool]
|
|
|
|
# If true, and hasStripe is true, the stripes will be animated
|
|
is_animated: Var[bool]
|
|
|
|
# If true, the progress will be indeterminate and the value prop will be ignored
|
|
is_indeterminate: Var[bool]
|
|
|
|
# The maximum value of the progress
|
|
max_: Var[int]
|
|
|
|
# The minimum value of the progress
|
|
min_: Var[int]
|
|
|
|
# The value of the progress indicator. If undefined the progress bar will be in indeterminate state
|
|
value: Var[Union[int, float]]
|
|
|
|
# The color scheme of the progress bar.
|
|
color_scheme: Var[str]
|