chore: fix some typos in comments (#3071)
This commit is contained in:
parent
a3cb475247
commit
713ee06ab7
@ -18,7 +18,7 @@ class PinInput(ChakraComponent):
|
|||||||
|
|
||||||
tag = "PinInput"
|
tag = "PinInput"
|
||||||
|
|
||||||
# State var to bind the the input.
|
# State var to bind the input.
|
||||||
value: Var[str]
|
value: Var[str]
|
||||||
|
|
||||||
# If true, the pin input receives focus on mount
|
# If true, the pin input receives focus on mount
|
||||||
|
@ -110,7 +110,7 @@ class PinInput(ChakraComponent):
|
|||||||
|
|
||||||
Args:
|
Args:
|
||||||
*children: The children of the component.
|
*children: The children of the component.
|
||||||
value: State var to bind the the input.
|
value: State var to bind the input.
|
||||||
auto_focus: If true, the pin input receives focus on mount
|
auto_focus: If true, the pin input receives focus on mount
|
||||||
default_value: The default value of the pin input
|
default_value: The default value of the pin input
|
||||||
error_border_color: The border color when the input is invalid.
|
error_border_color: The border color when the input is invalid.
|
||||||
|
@ -17,7 +17,7 @@ class RadioGroup(ChakraComponent):
|
|||||||
|
|
||||||
tag = "RadioGroup"
|
tag = "RadioGroup"
|
||||||
|
|
||||||
# State var to bind the the input.
|
# State var to bind the input.
|
||||||
value: Var[Any]
|
value: Var[Any]
|
||||||
|
|
||||||
# The default value.
|
# The default value.
|
||||||
|
@ -86,7 +86,7 @@ class RadioGroup(ChakraComponent):
|
|||||||
|
|
||||||
Args:
|
Args:
|
||||||
*children: The children of the component.
|
*children: The children of the component.
|
||||||
value: State var to bind the the input.
|
value: State var to bind the input.
|
||||||
default_value: The default value.
|
default_value: The default value.
|
||||||
name: The name of the form field
|
name: The name of the form field
|
||||||
style: The style of the component.
|
style: The style of the component.
|
||||||
|
@ -15,7 +15,7 @@ class RangeSlider(ChakraComponent):
|
|||||||
|
|
||||||
tag = "RangeSlider"
|
tag = "RangeSlider"
|
||||||
|
|
||||||
# State var to bind the the input.
|
# State var to bind the input.
|
||||||
value: Var[List[int]]
|
value: Var[List[int]]
|
||||||
|
|
||||||
# The default values.
|
# The default values.
|
||||||
|
@ -103,7 +103,7 @@ class RangeSlider(ChakraComponent):
|
|||||||
|
|
||||||
Args:
|
Args:
|
||||||
*children: The children of the component.
|
*children: The children of the component.
|
||||||
value: State var to bind the the input.
|
value: State var to bind the input.
|
||||||
default_value: The default values.
|
default_value: The default values.
|
||||||
direction: The writing mode ("ltr" | "rtl")
|
direction: The writing mode ("ltr" | "rtl")
|
||||||
focus_thumb_on_change: If false, the slider handle will not capture focus when value changes.
|
focus_thumb_on_change: If false, the slider handle will not capture focus when value changes.
|
||||||
|
@ -371,7 +371,7 @@ class Component(BaseComponent, ABC):
|
|||||||
"""Create an event chain from a variety of input types.
|
"""Create an event chain from a variety of input types.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
args_spec: The args_spec of the the event trigger being bound.
|
args_spec: The args_spec of the event trigger being bound.
|
||||||
value: The value to create the event chain from.
|
value: The value to create the event chain from.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
|
Loading…
Reference in New Issue
Block a user