reflex 0.3.9a2__py3-none-any.whl → 0.3.10__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of reflex might be problematic. Click here for more details.
- reflex/__init__.py +3 -1
- reflex/__init__.pyi +3 -1
- reflex/app.py +13 -5
- reflex/compiler/utils.py +13 -12
- reflex/components/base/app_wrap.pyi +1 -0
- reflex/components/base/body.pyi +2 -0
- reflex/components/base/document.pyi +10 -0
- reflex/components/base/fragment.pyi +2 -0
- reflex/components/base/head.pyi +4 -0
- reflex/components/base/link.pyi +4 -0
- reflex/components/base/meta.pyi +8 -0
- reflex/components/base/script.pyi +2 -0
- reflex/components/chakra/base.pyi +7 -0
- reflex/components/chakra/datadisplay/badge.pyi +2 -0
- reflex/components/chakra/datadisplay/code.pyi +4 -0
- reflex/components/chakra/datadisplay/divider.pyi +2 -0
- reflex/components/chakra/datadisplay/keyboard_key.pyi +2 -0
- reflex/components/chakra/datadisplay/list.pyi +8 -0
- reflex/components/chakra/datadisplay/stat.pyi +12 -0
- reflex/components/chakra/datadisplay/table.pyi +18 -0
- reflex/components/chakra/datadisplay/tag.pyi +9 -0
- reflex/components/chakra/disclosure/accordion.pyi +10 -0
- reflex/components/chakra/disclosure/tabs.py +8 -0
- reflex/components/chakra/disclosure/tabs.pyi +10 -0
- reflex/components/chakra/disclosure/transition.pyi +12 -0
- reflex/components/chakra/disclosure/visuallyhidden.pyi +2 -0
- reflex/components/chakra/feedback/alert.pyi +8 -0
- reflex/components/chakra/feedback/circularprogress.pyi +4 -0
- reflex/components/chakra/feedback/progress.pyi +2 -0
- reflex/components/chakra/feedback/skeleton.pyi +6 -0
- reflex/components/chakra/feedback/spinner.pyi +2 -0
- reflex/components/chakra/forms/button.pyi +4 -0
- reflex/components/chakra/forms/checkbox.pyi +4 -0
- reflex/components/chakra/forms/colormodeswitch.pyi +7 -0
- reflex/components/chakra/forms/date_picker.pyi +2 -0
- reflex/components/chakra/forms/date_time_picker.pyi +2 -0
- reflex/components/chakra/forms/editable.pyi +8 -0
- reflex/components/chakra/forms/email.pyi +2 -0
- reflex/components/chakra/forms/form.pyi +10 -0
- reflex/components/chakra/forms/iconbutton.py +1 -0
- reflex/components/chakra/forms/iconbutton.pyi +2 -0
- reflex/components/chakra/forms/input.pyi +12 -0
- reflex/components/chakra/forms/numberinput.pyi +10 -0
- reflex/components/chakra/forms/password.pyi +2 -0
- reflex/components/chakra/forms/pininput.pyi +4 -0
- reflex/components/chakra/forms/radio.pyi +4 -0
- reflex/components/chakra/forms/rangeslider.pyi +8 -0
- reflex/components/chakra/forms/select.pyi +4 -0
- reflex/components/chakra/forms/slider.pyi +10 -0
- reflex/components/chakra/forms/switch.pyi +2 -0
- reflex/components/chakra/forms/textarea.pyi +2 -0
- reflex/components/chakra/forms/time_picker.pyi +2 -0
- reflex/components/chakra/layout/aspect_ratio.pyi +2 -0
- reflex/components/chakra/layout/box.pyi +2 -0
- reflex/components/chakra/layout/card.pyi +7 -0
- reflex/components/chakra/layout/center.pyi +6 -0
- reflex/components/chakra/layout/container.pyi +2 -0
- reflex/components/chakra/layout/flex.pyi +2 -0
- reflex/components/chakra/layout/grid.pyi +6 -0
- reflex/components/chakra/layout/html.pyi +2 -0
- reflex/components/chakra/layout/spacer.pyi +2 -0
- reflex/components/chakra/layout/stack.pyi +6 -0
- reflex/components/chakra/layout/wrap.pyi +4 -0
- reflex/components/chakra/media/avatar.pyi +6 -0
- reflex/components/chakra/media/icon.pyi +4 -0
- reflex/components/chakra/media/image.pyi +2 -0
- reflex/components/chakra/navigation/breadcrumb.pyi +8 -0
- reflex/components/chakra/navigation/link.pyi +2 -0
- reflex/components/chakra/navigation/linkoverlay.pyi +4 -0
- reflex/components/chakra/navigation/stepper.pyi +18 -0
- reflex/components/chakra/overlay/alertdialog.pyi +14 -0
- reflex/components/chakra/overlay/drawer.pyi +14 -0
- reflex/components/chakra/overlay/menu.pyi +16 -0
- reflex/components/chakra/overlay/modal.pyi +14 -0
- reflex/components/chakra/overlay/popover.pyi +18 -0
- reflex/components/chakra/overlay/tooltip.pyi +2 -0
- reflex/components/chakra/typography/heading.pyi +2 -0
- reflex/components/chakra/typography/highlight.pyi +2 -0
- reflex/components/chakra/typography/span.pyi +2 -0
- reflex/components/chakra/typography/text.pyi +2 -0
- reflex/components/component.py +41 -3
- reflex/components/core/__init__.py +2 -0
- reflex/components/core/banner.pyi +3 -0
- reflex/components/core/client_side_routing.pyi +4 -0
- reflex/components/core/colors.py +21 -0
- reflex/components/core/cond.py +11 -2
- reflex/components/core/debounce.pyi +1 -0
- reflex/components/core/layout/__init__.py +1 -0
- reflex/components/core/match.py +44 -18
- reflex/components/core/upload.py +8 -2
- reflex/components/core/upload.pyi +7 -1
- reflex/components/datadisplay/dataeditor.pyi +2 -0
- reflex/components/el/element.pyi +2 -0
- reflex/components/el/elements/base.pyi +2 -0
- reflex/components/el/elements/forms.py +3 -0
- reflex/components/el/elements/forms.pyi +32 -0
- reflex/components/el/elements/inline.pyi +56 -0
- reflex/components/el/elements/media.pyi +28 -0
- reflex/components/el/elements/metadata.pyi +10 -0
- reflex/components/el/elements/other.pyi +14 -0
- reflex/components/el/elements/scripts.pyi +6 -0
- reflex/components/el/elements/sectioning.pyi +30 -0
- reflex/components/el/elements/tables.pyi +20 -0
- reflex/components/el/elements/typography.pyi +30 -0
- reflex/components/gridjs/datatable.pyi +4 -0
- reflex/components/lucide/__init__.py +5 -0
- reflex/components/lucide/icon.py +1484 -0
- reflex/components/lucide/icon.pyi +1594 -0
- reflex/components/markdown/markdown.pyi +2 -0
- reflex/components/moment/moment.pyi +2 -0
- reflex/components/next/base.pyi +2 -0
- reflex/components/next/image.pyi +2 -0
- reflex/components/next/link.pyi +2 -0
- reflex/components/next/video.pyi +2 -0
- reflex/components/plotly/plotly.pyi +4 -0
- reflex/components/radix/primitives/__init__.py +10 -0
- reflex/components/radix/primitives/accordion.py +51 -32
- reflex/components/radix/primitives/accordion.pyi +16 -3
- reflex/components/radix/primitives/base.pyi +4 -0
- reflex/components/radix/primitives/drawer.py +240 -0
- reflex/components/radix/primitives/drawer.pyi +814 -0
- reflex/components/radix/primitives/form.py +40 -7
- reflex/components/radix/primitives/form.pyi +32 -10
- reflex/components/radix/primitives/progress.py +2 -2
- reflex/components/radix/primitives/progress.pyi +6 -0
- reflex/components/radix/primitives/slider.pyi +10 -0
- reflex/components/radix/themes/base.py +46 -12
- reflex/components/radix/themes/base.pyi +23 -9
- reflex/components/radix/themes/components/__init__.py +4 -2
- reflex/components/radix/themes/components/alertdialog.py +13 -12
- reflex/components/radix/themes/components/alertdialog.pyi +23 -351
- reflex/components/radix/themes/components/aspectratio.py +2 -5
- reflex/components/radix/themes/components/aspectratio.pyi +4 -51
- reflex/components/radix/themes/components/avatar.py +3 -4
- reflex/components/radix/themes/components/avatar.pyi +4 -57
- reflex/components/radix/themes/components/badge.py +3 -4
- reflex/components/radix/themes/components/badge.pyi +4 -56
- reflex/components/radix/themes/components/button.py +2 -3
- reflex/components/radix/themes/components/button.pyi +3 -51
- reflex/components/radix/themes/components/callout.py +9 -12
- reflex/components/radix/themes/components/callout.pyi +24 -217
- reflex/components/radix/themes/components/card.py +1 -2
- reflex/components/radix/themes/components/card.pyi +4 -51
- reflex/components/radix/themes/components/checkbox.py +11 -5
- reflex/components/radix/themes/components/checkbox.pyi +13 -112
- reflex/components/radix/themes/components/contextmenu.py +21 -21
- reflex/components/radix/themes/components/contextmenu.pyi +26 -401
- reflex/components/radix/themes/components/dialog.py +13 -16
- reflex/components/radix/themes/components/dialog.pyi +20 -303
- reflex/components/radix/themes/components/dropdownmenu.py +196 -32
- reflex/components/radix/themes/components/dropdownmenu.pyi +147 -389
- reflex/components/radix/themes/components/hovercard.py +5 -5
- reflex/components/radix/themes/components/hovercard.pyi +11 -151
- reflex/components/radix/themes/components/iconbutton.py +56 -4
- reflex/components/radix/themes/components/iconbutton.pyi +25 -71
- reflex/components/radix/themes/components/icons.pyi +4 -0
- reflex/components/radix/themes/components/inset.py +1 -2
- reflex/components/radix/themes/components/inset.pyi +4 -51
- reflex/components/radix/themes/components/popover.py +12 -12
- reflex/components/radix/themes/components/popover.pyi +14 -201
- reflex/components/radix/themes/components/radiogroup.py +47 -20
- reflex/components/radix/themes/components/radiogroup.pyi +26 -171
- reflex/components/radix/themes/components/scrollarea.py +2 -3
- reflex/components/radix/themes/components/scrollarea.pyi +4 -51
- reflex/components/radix/themes/components/select.py +28 -25
- reflex/components/radix/themes/components/select.pyi +43 -419
- reflex/components/radix/themes/components/separator.py +4 -5
- reflex/components/radix/themes/components/separator.pyi +5 -52
- reflex/components/radix/themes/components/slider.py +8 -5
- reflex/components/radix/themes/components/slider.pyi +9 -60
- reflex/components/radix/themes/components/switch.py +6 -4
- reflex/components/radix/themes/components/switch.pyi +5 -53
- reflex/components/radix/themes/components/table.py +14 -15
- reflex/components/radix/themes/components/table.pyi +22 -351
- reflex/components/radix/themes/components/tabs.py +9 -6
- reflex/components/radix/themes/components/tabs.pyi +18 -205
- reflex/components/radix/themes/components/textarea.py +2 -3
- reflex/components/radix/themes/components/textarea.pyi +10 -53
- reflex/components/radix/themes/components/textfield.py +105 -4
- reflex/components/radix/themes/components/textfield.pyi +200 -108
- reflex/components/radix/themes/components/tooltip.py +102 -2
- reflex/components/radix/themes/components/tooltip.pyi +66 -110
- reflex/components/radix/themes/layout/__init__.py +7 -0
- reflex/components/radix/themes/layout/base.pyi +2 -0
- reflex/components/radix/themes/layout/box.py +2 -2
- reflex/components/radix/themes/layout/box.pyi +4 -104
- reflex/components/radix/themes/layout/center.py +19 -0
- reflex/components/radix/themes/layout/center.pyi +261 -0
- reflex/components/radix/themes/layout/container.py +2 -2
- reflex/components/radix/themes/layout/container.pyi +4 -104
- reflex/components/radix/themes/layout/flex.py +2 -2
- reflex/components/radix/themes/layout/flex.pyi +4 -105
- reflex/components/radix/themes/layout/grid.pyi +2 -0
- reflex/components/radix/themes/layout/section.py +2 -2
- reflex/components/radix/themes/layout/section.pyi +4 -104
- reflex/components/radix/themes/layout/spacer.py +19 -0
- reflex/components/radix/themes/layout/spacer.pyi +261 -0
- reflex/components/radix/themes/layout/stack.py +60 -0
- reflex/components/radix/themes/layout/stack.pyi +537 -0
- reflex/components/radix/themes/typography/blockquote.py +2 -3
- reflex/components/radix/themes/typography/blockquote.pyi +4 -51
- reflex/components/radix/themes/typography/code.py +2 -3
- reflex/components/radix/themes/typography/code.pyi +4 -56
- reflex/components/radix/themes/typography/em.py +1 -2
- reflex/components/radix/themes/typography/em.pyi +4 -51
- reflex/components/radix/themes/typography/heading.py +2 -3
- reflex/components/radix/themes/typography/heading.pyi +4 -51
- reflex/components/radix/themes/typography/kbd.py +1 -2
- reflex/components/radix/themes/typography/kbd.pyi +4 -51
- reflex/components/radix/themes/typography/link.py +34 -3
- reflex/components/radix/themes/typography/link.pyi +41 -86
- reflex/components/radix/themes/typography/quote.py +1 -2
- reflex/components/radix/themes/typography/quote.pyi +4 -51
- reflex/components/radix/themes/typography/strong.py +1 -2
- reflex/components/radix/themes/typography/strong.pyi +4 -51
- reflex/components/radix/themes/typography/text.py +2 -3
- reflex/components/radix/themes/typography/text.pyi +4 -51
- reflex/components/radix/themes/typography.py +10 -11
- reflex/components/react_player/audio.pyi +2 -0
- reflex/components/react_player/react_player.pyi +2 -0
- reflex/components/react_player/video.pyi +2 -0
- reflex/components/recharts/cartesian.pyi +38 -0
- reflex/components/recharts/charts.pyi +22 -0
- reflex/components/recharts/general.pyi +10 -0
- reflex/components/recharts/polar.pyi +12 -0
- reflex/components/recharts/recharts.pyi +4 -0
- reflex/components/suneditor/editor.pyi +2 -0
- reflex/components/tags/tag.py +1 -1
- reflex/constants/base.py +5 -1
- reflex/constants/colors.py +80 -0
- reflex/constants/event.py +10 -1
- reflex/page.py +1 -1
- reflex/reflex.py +4 -0
- reflex/style.py +8 -3
- reflex/testing.py +21 -10
- reflex/utils/format.py +13 -9
- reflex/utils/prerequisites.py +41 -3
- reflex/utils/serializers.py +14 -0
- reflex/utils/telemetry.py +8 -2
- reflex/utils/types.py +36 -2
- reflex/vars.py +53 -18
- {reflex-0.3.9a2.dist-info → reflex-0.3.10.dist-info}/METADATA +1 -2
- {reflex-0.3.9a2.dist-info → reflex-0.3.10.dist-info}/RECORD +246 -232
- {reflex-0.3.9a2.dist-info → reflex-0.3.10.dist-info}/WHEEL +1 -1
- {reflex-0.3.9a2.dist-info → reflex-0.3.10.dist-info}/LICENSE +0 -0
- {reflex-0.3.9a2.dist-info → reflex-0.3.10.dist-info}/entry_points.txt +0 -0
|
@@ -34,6 +34,7 @@ class CircularProgress(ChakraComponent):
|
|
|
34
34
|
id: Optional[Any] = None,
|
|
35
35
|
class_name: Optional[Any] = None,
|
|
36
36
|
autofocus: Optional[bool] = None,
|
|
37
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
37
38
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
38
39
|
on_blur: Optional[
|
|
39
40
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -102,6 +103,7 @@ class CircularProgress(ChakraComponent):
|
|
|
102
103
|
id: The id for the component.
|
|
103
104
|
class_name: The class name for the component.
|
|
104
105
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
106
|
+
_rename_props: props to change the name of
|
|
105
107
|
custom_attrs: custom attribute
|
|
106
108
|
**props: the props of the component.
|
|
107
109
|
|
|
@@ -121,6 +123,7 @@ class CircularProgressLabel(ChakraComponent):
|
|
|
121
123
|
id: Optional[Any] = None,
|
|
122
124
|
class_name: Optional[Any] = None,
|
|
123
125
|
autofocus: Optional[bool] = None,
|
|
126
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
124
127
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
125
128
|
on_blur: Optional[
|
|
126
129
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -178,6 +181,7 @@ class CircularProgressLabel(ChakraComponent):
|
|
|
178
181
|
id: The id for the component.
|
|
179
182
|
class_name: The class name for the component.
|
|
180
183
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
184
|
+
_rename_props: props to change the name of
|
|
181
185
|
custom_attrs: custom attribute
|
|
182
186
|
**props: The props of the component.
|
|
183
187
|
|
|
@@ -29,6 +29,7 @@ class Progress(ChakraComponent):
|
|
|
29
29
|
id: Optional[Any] = None,
|
|
30
30
|
class_name: Optional[Any] = None,
|
|
31
31
|
autofocus: Optional[bool] = None,
|
|
32
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
32
33
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
33
34
|
on_blur: Optional[
|
|
34
35
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -93,6 +94,7 @@ class Progress(ChakraComponent):
|
|
|
93
94
|
id: The id for the component.
|
|
94
95
|
class_name: The class name for the component.
|
|
95
96
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
97
|
+
_rename_props: props to change the name of
|
|
96
98
|
custom_attrs: custom attribute
|
|
97
99
|
**props: The props of the component.
|
|
98
100
|
|
|
@@ -26,6 +26,7 @@ class Skeleton(ChakraComponent):
|
|
|
26
26
|
id: Optional[Any] = None,
|
|
27
27
|
class_name: Optional[Any] = None,
|
|
28
28
|
autofocus: Optional[bool] = None,
|
|
29
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
29
30
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
30
31
|
on_blur: Optional[
|
|
31
32
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -88,6 +89,7 @@ class Skeleton(ChakraComponent):
|
|
|
88
89
|
id: The id for the component.
|
|
89
90
|
class_name: The class name for the component.
|
|
90
91
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
92
|
+
_rename_props: props to change the name of
|
|
91
93
|
custom_attrs: custom attribute
|
|
92
94
|
**props: The props of the component.
|
|
93
95
|
|
|
@@ -115,6 +117,7 @@ class SkeletonCircle(ChakraComponent):
|
|
|
115
117
|
id: Optional[Any] = None,
|
|
116
118
|
class_name: Optional[Any] = None,
|
|
117
119
|
autofocus: Optional[bool] = None,
|
|
120
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
118
121
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
119
122
|
on_blur: Optional[
|
|
120
123
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -177,6 +180,7 @@ class SkeletonCircle(ChakraComponent):
|
|
|
177
180
|
id: The id for the component.
|
|
178
181
|
class_name: The class name for the component.
|
|
179
182
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
183
|
+
_rename_props: props to change the name of
|
|
180
184
|
custom_attrs: custom attribute
|
|
181
185
|
**props: The props of the component.
|
|
182
186
|
|
|
@@ -205,6 +209,7 @@ class SkeletonText(ChakraComponent):
|
|
|
205
209
|
id: Optional[Any] = None,
|
|
206
210
|
class_name: Optional[Any] = None,
|
|
207
211
|
autofocus: Optional[bool] = None,
|
|
212
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
208
213
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
209
214
|
on_blur: Optional[
|
|
210
215
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -268,6 +273,7 @@ class SkeletonText(ChakraComponent):
|
|
|
268
273
|
id: The id for the component.
|
|
269
274
|
class_name: The class name for the component.
|
|
270
275
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
276
|
+
_rename_props: props to change the name of
|
|
271
277
|
custom_attrs: custom attribute
|
|
272
278
|
**props: The props of the component.
|
|
273
279
|
|
|
@@ -31,6 +31,7 @@ class Spinner(ChakraComponent):
|
|
|
31
31
|
id: Optional[Any] = None,
|
|
32
32
|
class_name: Optional[Any] = None,
|
|
33
33
|
autofocus: Optional[bool] = None,
|
|
34
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
34
35
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
35
36
|
on_blur: Optional[
|
|
36
37
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -93,6 +94,7 @@ class Spinner(ChakraComponent):
|
|
|
93
94
|
id: The id for the component.
|
|
94
95
|
class_name: The class name for the component.
|
|
95
96
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
97
|
+
_rename_props: props to change the name of
|
|
96
98
|
custom_attrs: custom attribute
|
|
97
99
|
**props: The props of the component.
|
|
98
100
|
|
|
@@ -96,6 +96,7 @@ class Button(ChakraComponent):
|
|
|
96
96
|
id: Optional[Any] = None,
|
|
97
97
|
class_name: Optional[Any] = None,
|
|
98
98
|
autofocus: Optional[bool] = None,
|
|
99
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
99
100
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
100
101
|
on_blur: Optional[
|
|
101
102
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -165,6 +166,7 @@ class Button(ChakraComponent):
|
|
|
165
166
|
id: The id for the component.
|
|
166
167
|
class_name: The class name for the component.
|
|
167
168
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
169
|
+
_rename_props: props to change the name of
|
|
168
170
|
custom_attrs: custom attribute
|
|
169
171
|
**props: The props of the component.
|
|
170
172
|
|
|
@@ -199,6 +201,7 @@ class ButtonGroup(ChakraComponent):
|
|
|
199
201
|
id: Optional[Any] = None,
|
|
200
202
|
class_name: Optional[Any] = None,
|
|
201
203
|
autofocus: Optional[bool] = None,
|
|
204
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
202
205
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
203
206
|
on_blur: Optional[
|
|
204
207
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -261,6 +264,7 @@ class ButtonGroup(ChakraComponent):
|
|
|
261
264
|
id: The id for the component.
|
|
262
265
|
class_name: The class name for the component.
|
|
263
266
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
267
|
+
_rename_props: props to change the name of
|
|
264
268
|
custom_attrs: custom attribute
|
|
265
269
|
**props: The props of the component.
|
|
266
270
|
|
|
@@ -85,6 +85,7 @@ class Checkbox(ChakraComponent):
|
|
|
85
85
|
id: Optional[Any] = None,
|
|
86
86
|
class_name: Optional[Any] = None,
|
|
87
87
|
autofocus: Optional[bool] = None,
|
|
88
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
88
89
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
89
90
|
on_blur: Optional[
|
|
90
91
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -157,6 +158,7 @@ class Checkbox(ChakraComponent):
|
|
|
157
158
|
id: The id for the component.
|
|
158
159
|
class_name: The class name for the component.
|
|
159
160
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
161
|
+
_rename_props: props to change the name of
|
|
160
162
|
custom_attrs: custom attribute
|
|
161
163
|
**props: The props of the component.
|
|
162
164
|
|
|
@@ -183,6 +185,7 @@ class CheckboxGroup(ChakraComponent):
|
|
|
183
185
|
id: Optional[Any] = None,
|
|
184
186
|
class_name: Optional[Any] = None,
|
|
185
187
|
autofocus: Optional[bool] = None,
|
|
188
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
186
189
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
187
190
|
on_blur: Optional[
|
|
188
191
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -244,6 +247,7 @@ class CheckboxGroup(ChakraComponent):
|
|
|
244
247
|
id: The id for the component.
|
|
245
248
|
class_name: The class name for the component.
|
|
246
249
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
250
|
+
_rename_props: props to change the name of
|
|
247
251
|
custom_attrs: custom attribute
|
|
248
252
|
**props: The props of the component.
|
|
249
253
|
|
|
@@ -37,6 +37,7 @@ class ColorModeIcon(Cond):
|
|
|
37
37
|
id: Optional[Any] = None,
|
|
38
38
|
class_name: Optional[Any] = None,
|
|
39
39
|
autofocus: Optional[bool] = None,
|
|
40
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
40
41
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
41
42
|
on_blur: Optional[
|
|
42
43
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -165,6 +166,7 @@ class ColorModeSwitch(Switch):
|
|
|
165
166
|
id: Optional[Any] = None,
|
|
166
167
|
class_name: Optional[Any] = None,
|
|
167
168
|
autofocus: Optional[bool] = None,
|
|
169
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
168
170
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
169
171
|
on_blur: Optional[
|
|
170
172
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -236,6 +238,7 @@ class ColorModeSwitch(Switch):
|
|
|
236
238
|
id: The id for the component.
|
|
237
239
|
class_name: The class name for the component.
|
|
238
240
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
241
|
+
_rename_props: props to change the name of
|
|
239
242
|
custom_attrs: custom attribute
|
|
240
243
|
**props: The props to pass to the component.
|
|
241
244
|
|
|
@@ -323,6 +326,7 @@ class ColorModeButton(Button):
|
|
|
323
326
|
id: Optional[Any] = None,
|
|
324
327
|
class_name: Optional[Any] = None,
|
|
325
328
|
autofocus: Optional[bool] = None,
|
|
329
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
326
330
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
327
331
|
on_blur: Optional[
|
|
328
332
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -392,6 +396,7 @@ class ColorModeButton(Button):
|
|
|
392
396
|
id: The id for the component.
|
|
393
397
|
class_name: The class name for the component.
|
|
394
398
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
399
|
+
_rename_props: props to change the name of
|
|
395
400
|
custom_attrs: custom attribute
|
|
396
401
|
**props: The props to pass to the component.
|
|
397
402
|
|
|
@@ -411,6 +416,7 @@ class ColorModeScript(ChakraComponent):
|
|
|
411
416
|
id: Optional[Any] = None,
|
|
412
417
|
class_name: Optional[Any] = None,
|
|
413
418
|
autofocus: Optional[bool] = None,
|
|
419
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
414
420
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
415
421
|
on_blur: Optional[
|
|
416
422
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -468,6 +474,7 @@ class ColorModeScript(ChakraComponent):
|
|
|
468
474
|
id: The id for the component.
|
|
469
475
|
class_name: The class name for the component.
|
|
470
476
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
477
|
+
_rename_props: props to change the name of
|
|
471
478
|
custom_attrs: custom attribute
|
|
472
479
|
**props: The props of the component.
|
|
473
480
|
|
|
@@ -41,6 +41,7 @@ class DatePicker(Input):
|
|
|
41
41
|
id: Optional[Any] = None,
|
|
42
42
|
class_name: Optional[Any] = None,
|
|
43
43
|
autofocus: Optional[bool] = None,
|
|
44
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
44
45
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
45
46
|
on_blur: Optional[
|
|
46
47
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -120,6 +121,7 @@ class DatePicker(Input):
|
|
|
120
121
|
id: The id for the component.
|
|
121
122
|
class_name: The class name for the component.
|
|
122
123
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
124
|
+
_rename_props: props to change the name of
|
|
123
125
|
custom_attrs: custom attribute
|
|
124
126
|
**props: The properties of the component.
|
|
125
127
|
|
|
@@ -41,6 +41,7 @@ class DateTimePicker(Input):
|
|
|
41
41
|
id: Optional[Any] = None,
|
|
42
42
|
class_name: Optional[Any] = None,
|
|
43
43
|
autofocus: Optional[bool] = None,
|
|
44
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
44
45
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
45
46
|
on_blur: Optional[
|
|
46
47
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -120,6 +121,7 @@ class DateTimePicker(Input):
|
|
|
120
121
|
id: The id for the component.
|
|
121
122
|
class_name: The class name for the component.
|
|
122
123
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
124
|
+
_rename_props: props to change the name of
|
|
123
125
|
custom_attrs: custom attribute
|
|
124
126
|
**props: The properties of the component.
|
|
125
127
|
|
|
@@ -32,6 +32,7 @@ class Editable(ChakraComponent):
|
|
|
32
32
|
id: Optional[Any] = None,
|
|
33
33
|
class_name: Optional[Any] = None,
|
|
34
34
|
autofocus: Optional[bool] = None,
|
|
35
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
35
36
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
36
37
|
on_blur: Optional[
|
|
37
38
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -109,6 +110,7 @@ class Editable(ChakraComponent):
|
|
|
109
110
|
id: The id for the component.
|
|
110
111
|
class_name: The class name for the component.
|
|
111
112
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
113
|
+
_rename_props: props to change the name of
|
|
112
114
|
custom_attrs: custom attribute
|
|
113
115
|
**props: The props of the component.
|
|
114
116
|
|
|
@@ -131,6 +133,7 @@ class EditableInput(ChakraComponent):
|
|
|
131
133
|
id: Optional[Any] = None,
|
|
132
134
|
class_name: Optional[Any] = None,
|
|
133
135
|
autofocus: Optional[bool] = None,
|
|
136
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
134
137
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
135
138
|
on_blur: Optional[
|
|
136
139
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -188,6 +191,7 @@ class EditableInput(ChakraComponent):
|
|
|
188
191
|
id: The id for the component.
|
|
189
192
|
class_name: The class name for the component.
|
|
190
193
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
194
|
+
_rename_props: props to change the name of
|
|
191
195
|
custom_attrs: custom attribute
|
|
192
196
|
**props: The props of the component.
|
|
193
197
|
|
|
@@ -210,6 +214,7 @@ class EditableTextarea(ChakraComponent):
|
|
|
210
214
|
id: Optional[Any] = None,
|
|
211
215
|
class_name: Optional[Any] = None,
|
|
212
216
|
autofocus: Optional[bool] = None,
|
|
217
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
213
218
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
214
219
|
on_blur: Optional[
|
|
215
220
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -267,6 +272,7 @@ class EditableTextarea(ChakraComponent):
|
|
|
267
272
|
id: The id for the component.
|
|
268
273
|
class_name: The class name for the component.
|
|
269
274
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
275
|
+
_rename_props: props to change the name of
|
|
270
276
|
custom_attrs: custom attribute
|
|
271
277
|
**props: The props of the component.
|
|
272
278
|
|
|
@@ -289,6 +295,7 @@ class EditablePreview(ChakraComponent):
|
|
|
289
295
|
id: Optional[Any] = None,
|
|
290
296
|
class_name: Optional[Any] = None,
|
|
291
297
|
autofocus: Optional[bool] = None,
|
|
298
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
292
299
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
293
300
|
on_blur: Optional[
|
|
294
301
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -346,6 +353,7 @@ class EditablePreview(ChakraComponent):
|
|
|
346
353
|
id: The id for the component.
|
|
347
354
|
class_name: The class name for the component.
|
|
348
355
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
356
|
+
_rename_props: props to change the name of
|
|
349
357
|
custom_attrs: custom attribute
|
|
350
358
|
**props: The props of the component.
|
|
351
359
|
|
|
@@ -41,6 +41,7 @@ class Email(Input):
|
|
|
41
41
|
id: Optional[Any] = None,
|
|
42
42
|
class_name: Optional[Any] = None,
|
|
43
43
|
autofocus: Optional[bool] = None,
|
|
44
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
44
45
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
45
46
|
on_blur: Optional[
|
|
46
47
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -120,6 +121,7 @@ class Email(Input):
|
|
|
120
121
|
id: The id for the component.
|
|
121
122
|
class_name: The class name for the component.
|
|
122
123
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
124
|
+
_rename_props: props to change the name of
|
|
123
125
|
custom_attrs: custom attribute
|
|
124
126
|
**props: The properties of the component.
|
|
125
127
|
|
|
@@ -38,6 +38,7 @@ class Form(ChakraComponent):
|
|
|
38
38
|
id: Optional[Any] = None,
|
|
39
39
|
class_name: Optional[Any] = None,
|
|
40
40
|
autofocus: Optional[bool] = None,
|
|
41
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
41
42
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
42
43
|
on_blur: Optional[
|
|
43
44
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -101,6 +102,7 @@ class Form(ChakraComponent):
|
|
|
101
102
|
id: The id for the component.
|
|
102
103
|
class_name: The class name for the component.
|
|
103
104
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
105
|
+
_rename_props: props to change the name of
|
|
104
106
|
custom_attrs: custom attribute
|
|
105
107
|
**props: The properties of the form.
|
|
106
108
|
|
|
@@ -129,6 +131,7 @@ class FormControl(ChakraComponent):
|
|
|
129
131
|
id: Optional[Any] = None,
|
|
130
132
|
class_name: Optional[Any] = None,
|
|
131
133
|
autofocus: Optional[bool] = None,
|
|
134
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
132
135
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
133
136
|
on_blur: Optional[
|
|
134
137
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -194,6 +197,7 @@ class FormControl(ChakraComponent):
|
|
|
194
197
|
id: The id for the component.
|
|
195
198
|
class_name: The class name for the component.
|
|
196
199
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
200
|
+
_rename_props: props to change the name of
|
|
197
201
|
custom_attrs: custom attribute
|
|
198
202
|
**props: The properties of the form control.
|
|
199
203
|
|
|
@@ -216,6 +220,7 @@ class FormHelperText(ChakraComponent):
|
|
|
216
220
|
id: Optional[Any] = None,
|
|
217
221
|
class_name: Optional[Any] = None,
|
|
218
222
|
autofocus: Optional[bool] = None,
|
|
223
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
219
224
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
220
225
|
on_blur: Optional[
|
|
221
226
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -273,6 +278,7 @@ class FormHelperText(ChakraComponent):
|
|
|
273
278
|
id: The id for the component.
|
|
274
279
|
class_name: The class name for the component.
|
|
275
280
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
281
|
+
_rename_props: props to change the name of
|
|
276
282
|
custom_attrs: custom attribute
|
|
277
283
|
**props: The props of the component.
|
|
278
284
|
|
|
@@ -296,6 +302,7 @@ class FormLabel(ChakraComponent):
|
|
|
296
302
|
id: Optional[Any] = None,
|
|
297
303
|
class_name: Optional[Any] = None,
|
|
298
304
|
autofocus: Optional[bool] = None,
|
|
305
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
299
306
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
300
307
|
on_blur: Optional[
|
|
301
308
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -354,6 +361,7 @@ class FormLabel(ChakraComponent):
|
|
|
354
361
|
id: The id for the component.
|
|
355
362
|
class_name: The class name for the component.
|
|
356
363
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
364
|
+
_rename_props: props to change the name of
|
|
357
365
|
custom_attrs: custom attribute
|
|
358
366
|
**props: The props of the component.
|
|
359
367
|
|
|
@@ -376,6 +384,7 @@ class FormErrorMessage(ChakraComponent):
|
|
|
376
384
|
id: Optional[Any] = None,
|
|
377
385
|
class_name: Optional[Any] = None,
|
|
378
386
|
autofocus: Optional[bool] = None,
|
|
387
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
379
388
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
380
389
|
on_blur: Optional[
|
|
381
390
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -433,6 +442,7 @@ class FormErrorMessage(ChakraComponent):
|
|
|
433
442
|
id: The id for the component.
|
|
434
443
|
class_name: The class name for the component.
|
|
435
444
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
445
|
+
_rename_props: props to change the name of
|
|
436
446
|
custom_attrs: custom attribute
|
|
437
447
|
**props: The props of the component.
|
|
438
448
|
|
|
@@ -33,6 +33,7 @@ class IconButton(Text):
|
|
|
33
33
|
id: Optional[Any] = None,
|
|
34
34
|
class_name: Optional[Any] = None,
|
|
35
35
|
autofocus: Optional[bool] = None,
|
|
36
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
36
37
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
37
38
|
on_blur: Optional[
|
|
38
39
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -100,6 +101,7 @@ class IconButton(Text):
|
|
|
100
101
|
id: The id for the component.
|
|
101
102
|
class_name: The class name for the component.
|
|
102
103
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
104
|
+
_rename_props: props to change the name of
|
|
103
105
|
custom_attrs: custom attribute
|
|
104
106
|
**props: The props of the component.
|
|
105
107
|
|
|
@@ -105,6 +105,7 @@ class Input(ChakraComponent):
|
|
|
105
105
|
id: Optional[Any] = None,
|
|
106
106
|
class_name: Optional[Any] = None,
|
|
107
107
|
autofocus: Optional[bool] = None,
|
|
108
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
108
109
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
109
110
|
on_blur: Optional[
|
|
110
111
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -184,6 +185,7 @@ class Input(ChakraComponent):
|
|
|
184
185
|
id: The id for the component.
|
|
185
186
|
class_name: The class name for the component.
|
|
186
187
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
188
|
+
_rename_props: props to change the name of
|
|
187
189
|
custom_attrs: custom attribute
|
|
188
190
|
**props: The properties of the component.
|
|
189
191
|
|
|
@@ -203,6 +205,7 @@ class InputGroup(ChakraComponent):
|
|
|
203
205
|
id: Optional[Any] = None,
|
|
204
206
|
class_name: Optional[Any] = None,
|
|
205
207
|
autofocus: Optional[bool] = None,
|
|
208
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
206
209
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
207
210
|
on_blur: Optional[
|
|
208
211
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -260,6 +263,7 @@ class InputGroup(ChakraComponent):
|
|
|
260
263
|
id: The id for the component.
|
|
261
264
|
class_name: The class name for the component.
|
|
262
265
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
266
|
+
_rename_props: props to change the name of
|
|
263
267
|
custom_attrs: custom attribute
|
|
264
268
|
**props: The props of the component.
|
|
265
269
|
|
|
@@ -282,6 +286,7 @@ class InputLeftAddon(ChakraComponent):
|
|
|
282
286
|
id: Optional[Any] = None,
|
|
283
287
|
class_name: Optional[Any] = None,
|
|
284
288
|
autofocus: Optional[bool] = None,
|
|
289
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
285
290
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
286
291
|
on_blur: Optional[
|
|
287
292
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -339,6 +344,7 @@ class InputLeftAddon(ChakraComponent):
|
|
|
339
344
|
id: The id for the component.
|
|
340
345
|
class_name: The class name for the component.
|
|
341
346
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
347
|
+
_rename_props: props to change the name of
|
|
342
348
|
custom_attrs: custom attribute
|
|
343
349
|
**props: The props of the component.
|
|
344
350
|
|
|
@@ -361,6 +367,7 @@ class InputRightAddon(ChakraComponent):
|
|
|
361
367
|
id: Optional[Any] = None,
|
|
362
368
|
class_name: Optional[Any] = None,
|
|
363
369
|
autofocus: Optional[bool] = None,
|
|
370
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
364
371
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
365
372
|
on_blur: Optional[
|
|
366
373
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -418,6 +425,7 @@ class InputRightAddon(ChakraComponent):
|
|
|
418
425
|
id: The id for the component.
|
|
419
426
|
class_name: The class name for the component.
|
|
420
427
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
428
|
+
_rename_props: props to change the name of
|
|
421
429
|
custom_attrs: custom attribute
|
|
422
430
|
**props: The props of the component.
|
|
423
431
|
|
|
@@ -440,6 +448,7 @@ class InputLeftElement(ChakraComponent):
|
|
|
440
448
|
id: Optional[Any] = None,
|
|
441
449
|
class_name: Optional[Any] = None,
|
|
442
450
|
autofocus: Optional[bool] = None,
|
|
451
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
443
452
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
444
453
|
on_blur: Optional[
|
|
445
454
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -497,6 +506,7 @@ class InputLeftElement(ChakraComponent):
|
|
|
497
506
|
id: The id for the component.
|
|
498
507
|
class_name: The class name for the component.
|
|
499
508
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
509
|
+
_rename_props: props to change the name of
|
|
500
510
|
custom_attrs: custom attribute
|
|
501
511
|
**props: The props of the component.
|
|
502
512
|
|
|
@@ -519,6 +529,7 @@ class InputRightElement(ChakraComponent):
|
|
|
519
529
|
id: Optional[Any] = None,
|
|
520
530
|
class_name: Optional[Any] = None,
|
|
521
531
|
autofocus: Optional[bool] = None,
|
|
532
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
522
533
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
523
534
|
on_blur: Optional[
|
|
524
535
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -576,6 +587,7 @@ class InputRightElement(ChakraComponent):
|
|
|
576
587
|
id: The id for the component.
|
|
577
588
|
class_name: The class name for the component.
|
|
578
589
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
590
|
+
_rename_props: props to change the name of
|
|
579
591
|
custom_attrs: custom attribute
|
|
580
592
|
**props: The props of the component.
|
|
581
593
|
|
|
@@ -55,6 +55,7 @@ class NumberInput(ChakraComponent):
|
|
|
55
55
|
id: Optional[Any] = None,
|
|
56
56
|
class_name: Optional[Any] = None,
|
|
57
57
|
autofocus: Optional[bool] = None,
|
|
58
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
58
59
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
59
60
|
on_blur: Optional[
|
|
60
61
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -135,6 +136,7 @@ class NumberInput(ChakraComponent):
|
|
|
135
136
|
id: The id for the component.
|
|
136
137
|
class_name: The class name for the component.
|
|
137
138
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
139
|
+
_rename_props: props to change the name of
|
|
138
140
|
custom_attrs: custom attribute
|
|
139
141
|
**props: The props of the component.
|
|
140
142
|
|
|
@@ -154,6 +156,7 @@ class NumberInputField(ChakraComponent):
|
|
|
154
156
|
id: Optional[Any] = None,
|
|
155
157
|
class_name: Optional[Any] = None,
|
|
156
158
|
autofocus: Optional[bool] = None,
|
|
159
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
157
160
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
158
161
|
on_blur: Optional[
|
|
159
162
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -211,6 +214,7 @@ class NumberInputField(ChakraComponent):
|
|
|
211
214
|
id: The id for the component.
|
|
212
215
|
class_name: The class name for the component.
|
|
213
216
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
217
|
+
_rename_props: props to change the name of
|
|
214
218
|
custom_attrs: custom attribute
|
|
215
219
|
**props: The props of the component.
|
|
216
220
|
|
|
@@ -233,6 +237,7 @@ class NumberInputStepper(ChakraComponent):
|
|
|
233
237
|
id: Optional[Any] = None,
|
|
234
238
|
class_name: Optional[Any] = None,
|
|
235
239
|
autofocus: Optional[bool] = None,
|
|
240
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
236
241
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
237
242
|
on_blur: Optional[
|
|
238
243
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -290,6 +295,7 @@ class NumberInputStepper(ChakraComponent):
|
|
|
290
295
|
id: The id for the component.
|
|
291
296
|
class_name: The class name for the component.
|
|
292
297
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
298
|
+
_rename_props: props to change the name of
|
|
293
299
|
custom_attrs: custom attribute
|
|
294
300
|
**props: The props of the component.
|
|
295
301
|
|
|
@@ -312,6 +318,7 @@ class NumberIncrementStepper(ChakraComponent):
|
|
|
312
318
|
id: Optional[Any] = None,
|
|
313
319
|
class_name: Optional[Any] = None,
|
|
314
320
|
autofocus: Optional[bool] = None,
|
|
321
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
315
322
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
316
323
|
on_blur: Optional[
|
|
317
324
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -369,6 +376,7 @@ class NumberIncrementStepper(ChakraComponent):
|
|
|
369
376
|
id: The id for the component.
|
|
370
377
|
class_name: The class name for the component.
|
|
371
378
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
379
|
+
_rename_props: props to change the name of
|
|
372
380
|
custom_attrs: custom attribute
|
|
373
381
|
**props: The props of the component.
|
|
374
382
|
|
|
@@ -391,6 +399,7 @@ class NumberDecrementStepper(ChakraComponent):
|
|
|
391
399
|
id: Optional[Any] = None,
|
|
392
400
|
class_name: Optional[Any] = None,
|
|
393
401
|
autofocus: Optional[bool] = None,
|
|
402
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
394
403
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
395
404
|
on_blur: Optional[
|
|
396
405
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -448,6 +457,7 @@ class NumberDecrementStepper(ChakraComponent):
|
|
|
448
457
|
id: The id for the component.
|
|
449
458
|
class_name: The class name for the component.
|
|
450
459
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
460
|
+
_rename_props: props to change the name of
|
|
451
461
|
custom_attrs: custom attribute
|
|
452
462
|
**props: The props of the component.
|
|
453
463
|
|
|
@@ -41,6 +41,7 @@ class Password(Input):
|
|
|
41
41
|
id: Optional[Any] = None,
|
|
42
42
|
class_name: Optional[Any] = None,
|
|
43
43
|
autofocus: Optional[bool] = None,
|
|
44
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
44
45
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
45
46
|
on_blur: Optional[
|
|
46
47
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -120,6 +121,7 @@ class Password(Input):
|
|
|
120
121
|
id: The id for the component.
|
|
121
122
|
class_name: The class name for the component.
|
|
122
123
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
124
|
+
_rename_props: props to change the name of
|
|
123
125
|
custom_attrs: custom attribute
|
|
124
126
|
**props: The properties of the component.
|
|
125
127
|
|
|
@@ -49,6 +49,7 @@ class PinInput(ChakraComponent):
|
|
|
49
49
|
id: Optional[Any] = None,
|
|
50
50
|
class_name: Optional[Any] = None,
|
|
51
51
|
autofocus: Optional[bool] = None,
|
|
52
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
52
53
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
53
54
|
on_blur: Optional[
|
|
54
55
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -130,6 +131,7 @@ class PinInput(ChakraComponent):
|
|
|
130
131
|
id: The id for the component.
|
|
131
132
|
class_name: The class name for the component.
|
|
132
133
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
134
|
+
_rename_props: props to change the name of
|
|
133
135
|
custom_attrs: custom attribute
|
|
134
136
|
**props: The props of the component.
|
|
135
137
|
|
|
@@ -154,6 +156,7 @@ class PinInputField(ChakraComponent):
|
|
|
154
156
|
id: Optional[Any] = None,
|
|
155
157
|
class_name: Optional[Any] = None,
|
|
156
158
|
autofocus: Optional[bool] = None,
|
|
159
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
157
160
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
158
161
|
on_blur: Optional[
|
|
159
162
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -213,6 +216,7 @@ class PinInputField(ChakraComponent):
|
|
|
213
216
|
id: The id for the component.
|
|
214
217
|
class_name: The class name for the component.
|
|
215
218
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
219
|
+
_rename_props: props to change the name of
|
|
216
220
|
custom_attrs: custom attribute
|
|
217
221
|
**props: The props of the component.
|
|
218
222
|
|