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
|
@@ -31,6 +31,7 @@ class RadioGroup(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]
|
|
@@ -94,6 +95,7 @@ class RadioGroup(ChakraComponent):
|
|
|
94
95
|
id: The id for the component.
|
|
95
96
|
class_name: The class name for the component.
|
|
96
97
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
98
|
+
_rename_props: props to change the name of
|
|
97
99
|
custom_attrs: custom attribute
|
|
98
100
|
**props: The props of the component.
|
|
99
101
|
|
|
@@ -124,6 +126,7 @@ class Radio(Text):
|
|
|
124
126
|
id: Optional[Any] = None,
|
|
125
127
|
class_name: Optional[Any] = None,
|
|
126
128
|
autofocus: Optional[bool] = None,
|
|
129
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
127
130
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
128
131
|
on_blur: Optional[
|
|
129
132
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -194,6 +197,7 @@ class Radio(Text):
|
|
|
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 props of the component.
|
|
199
203
|
|
|
@@ -40,6 +40,7 @@ class RangeSlider(ChakraComponent):
|
|
|
40
40
|
id: Optional[Any] = None,
|
|
41
41
|
class_name: Optional[Any] = None,
|
|
42
42
|
autofocus: Optional[bool] = None,
|
|
43
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
43
44
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
44
45
|
on_blur: Optional[
|
|
45
46
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -119,6 +120,7 @@ class RangeSlider(ChakraComponent):
|
|
|
119
120
|
id: The id for the component.
|
|
120
121
|
class_name: The class name for the component.
|
|
121
122
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
123
|
+
_rename_props: props to change the name of
|
|
122
124
|
custom_attrs: custom attribute
|
|
123
125
|
**props: The properties of the component.
|
|
124
126
|
|
|
@@ -138,6 +140,7 @@ class RangeSliderTrack(ChakraComponent):
|
|
|
138
140
|
id: Optional[Any] = None,
|
|
139
141
|
class_name: Optional[Any] = None,
|
|
140
142
|
autofocus: Optional[bool] = None,
|
|
143
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
141
144
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
142
145
|
on_blur: Optional[
|
|
143
146
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -195,6 +198,7 @@ class RangeSliderTrack(ChakraComponent):
|
|
|
195
198
|
id: The id for the component.
|
|
196
199
|
class_name: The class name for the component.
|
|
197
200
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
201
|
+
_rename_props: props to change the name of
|
|
198
202
|
custom_attrs: custom attribute
|
|
199
203
|
**props: The props of the component.
|
|
200
204
|
|
|
@@ -217,6 +221,7 @@ class RangeSliderFilledTrack(ChakraComponent):
|
|
|
217
221
|
id: Optional[Any] = None,
|
|
218
222
|
class_name: Optional[Any] = None,
|
|
219
223
|
autofocus: Optional[bool] = None,
|
|
224
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
220
225
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
221
226
|
on_blur: Optional[
|
|
222
227
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -274,6 +279,7 @@ class RangeSliderFilledTrack(ChakraComponent):
|
|
|
274
279
|
id: The id for the component.
|
|
275
280
|
class_name: The class name for the component.
|
|
276
281
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
282
|
+
_rename_props: props to change the name of
|
|
277
283
|
custom_attrs: custom attribute
|
|
278
284
|
**props: The props of the component.
|
|
279
285
|
|
|
@@ -298,6 +304,7 @@ class RangeSliderThumb(ChakraComponent):
|
|
|
298
304
|
id: Optional[Any] = None,
|
|
299
305
|
class_name: Optional[Any] = None,
|
|
300
306
|
autofocus: Optional[bool] = None,
|
|
307
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
301
308
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
302
309
|
on_blur: Optional[
|
|
303
310
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -356,6 +363,7 @@ class RangeSliderThumb(ChakraComponent):
|
|
|
356
363
|
id: The id for the component.
|
|
357
364
|
class_name: The class name for the component.
|
|
358
365
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
366
|
+
_rename_props: props to change the name of
|
|
359
367
|
custom_attrs: custom attribute
|
|
360
368
|
**props: The props of the component.
|
|
361
369
|
|
|
@@ -44,6 +44,7 @@ class Select(ChakraComponent):
|
|
|
44
44
|
id: Optional[Any] = None,
|
|
45
45
|
class_name: Optional[Any] = None,
|
|
46
46
|
autofocus: Optional[bool] = None,
|
|
47
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
47
48
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
48
49
|
on_blur: Optional[
|
|
49
50
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -118,6 +119,7 @@ class Select(ChakraComponent):
|
|
|
118
119
|
id: The id for the component.
|
|
119
120
|
class_name: The class name for the component.
|
|
120
121
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
122
|
+
_rename_props: props to change the name of
|
|
121
123
|
custom_attrs: custom attribute
|
|
122
124
|
**props: The props of the component.
|
|
123
125
|
|
|
@@ -140,6 +142,7 @@ class Option(Text):
|
|
|
140
142
|
id: Optional[Any] = None,
|
|
141
143
|
class_name: Optional[Any] = None,
|
|
142
144
|
autofocus: Optional[bool] = None,
|
|
145
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
143
146
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
144
147
|
on_blur: Optional[
|
|
145
148
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -201,6 +204,7 @@ class Option(Text):
|
|
|
201
204
|
id: The id for the component.
|
|
202
205
|
class_name: The class name for the component.
|
|
203
206
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
207
|
+
_rename_props: props to change the name of
|
|
204
208
|
custom_attrs: custom attribute
|
|
205
209
|
**props: The props of the component.
|
|
206
210
|
|
|
@@ -52,6 +52,7 @@ class Slider(ChakraComponent):
|
|
|
52
52
|
id: Optional[Any] = None,
|
|
53
53
|
class_name: Optional[Any] = None,
|
|
54
54
|
autofocus: Optional[bool] = None,
|
|
55
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
55
56
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
56
57
|
on_blur: Optional[
|
|
57
58
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -138,6 +139,7 @@ class Slider(ChakraComponent):
|
|
|
138
139
|
id: The id for the component.
|
|
139
140
|
class_name: The class name for the component.
|
|
140
141
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
142
|
+
_rename_props: props to change the name of
|
|
141
143
|
custom_attrs: custom attribute
|
|
142
144
|
**props: The properties of the component.
|
|
143
145
|
|
|
@@ -157,6 +159,7 @@ class SliderTrack(ChakraComponent):
|
|
|
157
159
|
id: Optional[Any] = None,
|
|
158
160
|
class_name: Optional[Any] = None,
|
|
159
161
|
autofocus: Optional[bool] = None,
|
|
162
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
160
163
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
161
164
|
on_blur: Optional[
|
|
162
165
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -214,6 +217,7 @@ class SliderTrack(ChakraComponent):
|
|
|
214
217
|
id: The id for the component.
|
|
215
218
|
class_name: The class name for the component.
|
|
216
219
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
220
|
+
_rename_props: props to change the name of
|
|
217
221
|
custom_attrs: custom attribute
|
|
218
222
|
**props: The props of the component.
|
|
219
223
|
|
|
@@ -236,6 +240,7 @@ class SliderFilledTrack(ChakraComponent):
|
|
|
236
240
|
id: Optional[Any] = None,
|
|
237
241
|
class_name: Optional[Any] = None,
|
|
238
242
|
autofocus: Optional[bool] = None,
|
|
243
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
239
244
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
240
245
|
on_blur: Optional[
|
|
241
246
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -293,6 +298,7 @@ class SliderFilledTrack(ChakraComponent):
|
|
|
293
298
|
id: The id for the component.
|
|
294
299
|
class_name: The class name for the component.
|
|
295
300
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
301
|
+
_rename_props: props to change the name of
|
|
296
302
|
custom_attrs: custom attribute
|
|
297
303
|
**props: The props of the component.
|
|
298
304
|
|
|
@@ -316,6 +322,7 @@ class SliderThumb(ChakraComponent):
|
|
|
316
322
|
id: Optional[Any] = None,
|
|
317
323
|
class_name: Optional[Any] = None,
|
|
318
324
|
autofocus: Optional[bool] = None,
|
|
325
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
319
326
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
320
327
|
on_blur: Optional[
|
|
321
328
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -374,6 +381,7 @@ class SliderThumb(ChakraComponent):
|
|
|
374
381
|
id: The id for the component.
|
|
375
382
|
class_name: The class name for the component.
|
|
376
383
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
384
|
+
_rename_props: props to change the name of
|
|
377
385
|
custom_attrs: custom attribute
|
|
378
386
|
**props: The props of the component.
|
|
379
387
|
|
|
@@ -396,6 +404,7 @@ class SliderMark(ChakraComponent):
|
|
|
396
404
|
id: Optional[Any] = None,
|
|
397
405
|
class_name: Optional[Any] = None,
|
|
398
406
|
autofocus: Optional[bool] = None,
|
|
407
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
399
408
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
400
409
|
on_blur: Optional[
|
|
401
410
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -453,6 +462,7 @@ class SliderMark(ChakraComponent):
|
|
|
453
462
|
id: The id for the component.
|
|
454
463
|
class_name: The class name for the component.
|
|
455
464
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
465
|
+
_rename_props: props to change the name of
|
|
456
466
|
custom_attrs: custom attribute
|
|
457
467
|
**props: The props of the component.
|
|
458
468
|
|
|
@@ -82,6 +82,7 @@ class Switch(ChakraComponent):
|
|
|
82
82
|
id: Optional[Any] = None,
|
|
83
83
|
class_name: Optional[Any] = None,
|
|
84
84
|
autofocus: Optional[bool] = None,
|
|
85
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
85
86
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
86
87
|
on_blur: Optional[
|
|
87
88
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -153,6 +154,7 @@ class Switch(ChakraComponent):
|
|
|
153
154
|
id: The id for the component.
|
|
154
155
|
class_name: The class name for the component.
|
|
155
156
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
157
|
+
_rename_props: props to change the name of
|
|
156
158
|
custom_attrs: custom attribute
|
|
157
159
|
**props: The props of the component.
|
|
158
160
|
|
|
@@ -42,6 +42,7 @@ class TextArea(ChakraComponent):
|
|
|
42
42
|
id: Optional[Any] = None,
|
|
43
43
|
class_name: Optional[Any] = None,
|
|
44
44
|
autofocus: Optional[bool] = None,
|
|
45
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
45
46
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
46
47
|
on_blur: Optional[
|
|
47
48
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -119,6 +120,7 @@ class TextArea(ChakraComponent):
|
|
|
119
120
|
id: The id for the component.
|
|
120
121
|
class_name: The class name for the component.
|
|
121
122
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
123
|
+
_rename_props: props to change the name of
|
|
122
124
|
custom_attrs: custom attribute
|
|
123
125
|
**props: The properties of the component.
|
|
124
126
|
|
|
@@ -41,6 +41,7 @@ class TimePicker(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 TimePicker(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
|
|
|
@@ -22,6 +22,7 @@ class AspectRatio(ChakraComponent):
|
|
|
22
22
|
id: Optional[Any] = None,
|
|
23
23
|
class_name: Optional[Any] = None,
|
|
24
24
|
autofocus: Optional[bool] = None,
|
|
25
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
25
26
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
26
27
|
on_blur: Optional[
|
|
27
28
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -80,6 +81,7 @@ class AspectRatio(ChakraComponent):
|
|
|
80
81
|
id: The id for the component.
|
|
81
82
|
class_name: The class name for the component.
|
|
82
83
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
84
|
+
_rename_props: props to change the name of
|
|
83
85
|
custom_attrs: custom attribute
|
|
84
86
|
**props: The props of the component.
|
|
85
87
|
|
|
@@ -25,6 +25,7 @@ class Box(ChakraComponent):
|
|
|
25
25
|
id: Optional[Any] = None,
|
|
26
26
|
class_name: Optional[Any] = None,
|
|
27
27
|
autofocus: Optional[bool] = None,
|
|
28
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
28
29
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
29
30
|
on_blur: Optional[
|
|
30
31
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -85,6 +86,7 @@ class Box(ChakraComponent):
|
|
|
85
86
|
id: The id for the component.
|
|
86
87
|
class_name: The class name for the component.
|
|
87
88
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
89
|
+
_rename_props: props to change the name of
|
|
88
90
|
custom_attrs: custom attribute
|
|
89
91
|
**props: The props of the component.
|
|
90
92
|
|
|
@@ -28,6 +28,7 @@ class CardHeader(ChakraComponent):
|
|
|
28
28
|
id: Optional[Any] = None,
|
|
29
29
|
class_name: Optional[Any] = None,
|
|
30
30
|
autofocus: Optional[bool] = None,
|
|
31
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
31
32
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
32
33
|
on_blur: Optional[
|
|
33
34
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -85,6 +86,7 @@ class CardHeader(ChakraComponent):
|
|
|
85
86
|
id: The id for the component.
|
|
86
87
|
class_name: The class name for the component.
|
|
87
88
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
89
|
+
_rename_props: props to change the name of
|
|
88
90
|
custom_attrs: custom attribute
|
|
89
91
|
**props: The props of the component.
|
|
90
92
|
|
|
@@ -107,6 +109,7 @@ class CardBody(ChakraComponent):
|
|
|
107
109
|
id: Optional[Any] = None,
|
|
108
110
|
class_name: Optional[Any] = None,
|
|
109
111
|
autofocus: Optional[bool] = None,
|
|
112
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
110
113
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
111
114
|
on_blur: Optional[
|
|
112
115
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -164,6 +167,7 @@ class CardBody(ChakraComponent):
|
|
|
164
167
|
id: The id for the component.
|
|
165
168
|
class_name: The class name for the component.
|
|
166
169
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
170
|
+
_rename_props: props to change the name of
|
|
167
171
|
custom_attrs: custom attribute
|
|
168
172
|
**props: The props of the component.
|
|
169
173
|
|
|
@@ -186,6 +190,7 @@ class CardFooter(ChakraComponent):
|
|
|
186
190
|
id: Optional[Any] = None,
|
|
187
191
|
class_name: Optional[Any] = None,
|
|
188
192
|
autofocus: Optional[bool] = None,
|
|
193
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
189
194
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
190
195
|
on_blur: Optional[
|
|
191
196
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -243,6 +248,7 @@ class CardFooter(ChakraComponent):
|
|
|
243
248
|
id: The id for the component.
|
|
244
249
|
class_name: The class name for the component.
|
|
245
250
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
251
|
+
_rename_props: props to change the name of
|
|
246
252
|
custom_attrs: custom attribute
|
|
247
253
|
**props: The props of the component.
|
|
248
254
|
|
|
@@ -327,6 +333,7 @@ class Card(ChakraComponent):
|
|
|
327
333
|
id: Optional[Any] = None,
|
|
328
334
|
class_name: Optional[Any] = None,
|
|
329
335
|
autofocus: Optional[bool] = None,
|
|
336
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
330
337
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
331
338
|
on_blur: Optional[
|
|
332
339
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -20,6 +20,7 @@ class Center(ChakraComponent):
|
|
|
20
20
|
id: Optional[Any] = None,
|
|
21
21
|
class_name: Optional[Any] = None,
|
|
22
22
|
autofocus: Optional[bool] = None,
|
|
23
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
23
24
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
24
25
|
on_blur: Optional[
|
|
25
26
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -77,6 +78,7 @@ class Center(ChakraComponent):
|
|
|
77
78
|
id: The id for the component.
|
|
78
79
|
class_name: The class name for the component.
|
|
79
80
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
81
|
+
_rename_props: props to change the name of
|
|
80
82
|
custom_attrs: custom attribute
|
|
81
83
|
**props: The props of the component.
|
|
82
84
|
|
|
@@ -99,6 +101,7 @@ class Square(ChakraComponent):
|
|
|
99
101
|
id: Optional[Any] = None,
|
|
100
102
|
class_name: Optional[Any] = None,
|
|
101
103
|
autofocus: Optional[bool] = None,
|
|
104
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
102
105
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
103
106
|
on_blur: Optional[
|
|
104
107
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -156,6 +159,7 @@ class Square(ChakraComponent):
|
|
|
156
159
|
id: The id for the component.
|
|
157
160
|
class_name: The class name for the component.
|
|
158
161
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
162
|
+
_rename_props: props to change the name of
|
|
159
163
|
custom_attrs: custom attribute
|
|
160
164
|
**props: The props of the component.
|
|
161
165
|
|
|
@@ -178,6 +182,7 @@ class Circle(ChakraComponent):
|
|
|
178
182
|
id: Optional[Any] = None,
|
|
179
183
|
class_name: Optional[Any] = None,
|
|
180
184
|
autofocus: Optional[bool] = None,
|
|
185
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
181
186
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
182
187
|
on_blur: Optional[
|
|
183
188
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -235,6 +240,7 @@ class Circle(ChakraComponent):
|
|
|
235
240
|
id: The id for the component.
|
|
236
241
|
class_name: The class name for the component.
|
|
237
242
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
243
|
+
_rename_props: props to change the name of
|
|
238
244
|
custom_attrs: custom attribute
|
|
239
245
|
**props: The props of the component.
|
|
240
246
|
|
|
@@ -22,6 +22,7 @@ class Container(ChakraComponent):
|
|
|
22
22
|
id: Optional[Any] = None,
|
|
23
23
|
class_name: Optional[Any] = None,
|
|
24
24
|
autofocus: Optional[bool] = None,
|
|
25
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
25
26
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
26
27
|
on_blur: Optional[
|
|
27
28
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -80,6 +81,7 @@ class Container(ChakraComponent):
|
|
|
80
81
|
id: The id for the component.
|
|
81
82
|
class_name: The class name for the component.
|
|
82
83
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
84
|
+
_rename_props: props to change the name of
|
|
83
85
|
custom_attrs: custom attribute
|
|
84
86
|
**props: The props of the component.
|
|
85
87
|
|
|
@@ -31,6 +31,7 @@ class Flex(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]
|
|
@@ -95,6 +96,7 @@ class Flex(ChakraComponent):
|
|
|
95
96
|
id: The id for the component.
|
|
96
97
|
class_name: The class name for the component.
|
|
97
98
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
99
|
+
_rename_props: props to change the name of
|
|
98
100
|
custom_attrs: custom attribute
|
|
99
101
|
**props: The props of the component.
|
|
100
102
|
|
|
@@ -29,6 +29,7 @@ class Grid(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 Grid(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
|
|
|
@@ -122,6 +124,7 @@ class GridItem(ChakraComponent):
|
|
|
122
124
|
id: Optional[Any] = None,
|
|
123
125
|
class_name: Optional[Any] = None,
|
|
124
126
|
autofocus: Optional[bool] = None,
|
|
127
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
125
128
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
126
129
|
on_blur: Optional[
|
|
127
130
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -186,6 +189,7 @@ class GridItem(ChakraComponent):
|
|
|
186
189
|
id: The id for the component.
|
|
187
190
|
class_name: The class name for the component.
|
|
188
191
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
192
|
+
_rename_props: props to change the name of
|
|
189
193
|
custom_attrs: custom attribute
|
|
190
194
|
**props: The props of the component.
|
|
191
195
|
|
|
@@ -221,6 +225,7 @@ class ResponsiveGrid(ChakraComponent):
|
|
|
221
225
|
id: Optional[Any] = None,
|
|
222
226
|
class_name: Optional[Any] = None,
|
|
223
227
|
autofocus: Optional[bool] = None,
|
|
228
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
224
229
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
225
230
|
on_blur: Optional[
|
|
226
231
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -291,6 +296,7 @@ class ResponsiveGrid(ChakraComponent):
|
|
|
291
296
|
id: The id for the component.
|
|
292
297
|
class_name: The class name for the component.
|
|
293
298
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
299
|
+
_rename_props: props to change the name of
|
|
294
300
|
custom_attrs: custom attribute
|
|
295
301
|
**props: The props of the component.
|
|
296
302
|
|
|
@@ -28,6 +28,7 @@ class Html(Box):
|
|
|
28
28
|
id: Optional[Any] = None,
|
|
29
29
|
class_name: Optional[Any] = None,
|
|
30
30
|
autofocus: Optional[bool] = None,
|
|
31
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
31
32
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
32
33
|
on_blur: Optional[
|
|
33
34
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -89,6 +90,7 @@ class Html(Box):
|
|
|
89
90
|
id: The id for the component.
|
|
90
91
|
class_name: The class name for the component.
|
|
91
92
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
93
|
+
_rename_props: props to change the name of
|
|
92
94
|
custom_attrs: custom attribute
|
|
93
95
|
**props: The props to pass to the component.
|
|
94
96
|
|
|
@@ -20,6 +20,7 @@ class Spacer(ChakraComponent):
|
|
|
20
20
|
id: Optional[Any] = None,
|
|
21
21
|
class_name: Optional[Any] = None,
|
|
22
22
|
autofocus: Optional[bool] = None,
|
|
23
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
23
24
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
24
25
|
on_blur: Optional[
|
|
25
26
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -77,6 +78,7 @@ class Spacer(ChakraComponent):
|
|
|
77
78
|
id: The id for the component.
|
|
78
79
|
class_name: The class name for the component.
|
|
79
80
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
81
|
+
_rename_props: props to change the name of
|
|
80
82
|
custom_attrs: custom attribute
|
|
81
83
|
**props: The props of the component.
|
|
82
84
|
|
|
@@ -35,6 +35,7 @@ class Stack(ChakraComponent):
|
|
|
35
35
|
id: Optional[Any] = None,
|
|
36
36
|
class_name: Optional[Any] = None,
|
|
37
37
|
autofocus: Optional[bool] = None,
|
|
38
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
38
39
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
39
40
|
on_blur: Optional[
|
|
40
41
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -100,6 +101,7 @@ class Stack(ChakraComponent):
|
|
|
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
|
|
|
@@ -135,6 +137,7 @@ class Hstack(Stack):
|
|
|
135
137
|
id: Optional[Any] = None,
|
|
136
138
|
class_name: Optional[Any] = None,
|
|
137
139
|
autofocus: Optional[bool] = None,
|
|
140
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
138
141
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
139
142
|
on_blur: Optional[
|
|
140
143
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -200,6 +203,7 @@ class Hstack(Stack):
|
|
|
200
203
|
id: The id for the component.
|
|
201
204
|
class_name: The class name for the component.
|
|
202
205
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
206
|
+
_rename_props: props to change the name of
|
|
203
207
|
custom_attrs: custom attribute
|
|
204
208
|
**props: The props of the component.
|
|
205
209
|
|
|
@@ -235,6 +239,7 @@ class Vstack(Stack):
|
|
|
235
239
|
id: Optional[Any] = None,
|
|
236
240
|
class_name: Optional[Any] = None,
|
|
237
241
|
autofocus: Optional[bool] = None,
|
|
242
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
238
243
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
239
244
|
on_blur: Optional[
|
|
240
245
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -300,6 +305,7 @@ class Vstack(Stack):
|
|
|
300
305
|
id: The id for the component.
|
|
301
306
|
class_name: The class name for the component.
|
|
302
307
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
308
|
+
_rename_props: props to change the name of
|
|
303
309
|
custom_attrs: custom attribute
|
|
304
310
|
**props: The props of the component.
|
|
305
311
|
|
|
@@ -30,6 +30,7 @@ class Wrap(ChakraComponent):
|
|
|
30
30
|
id: Optional[Any] = None,
|
|
31
31
|
class_name: Optional[Any] = None,
|
|
32
32
|
autofocus: Optional[bool] = None,
|
|
33
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
33
34
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
34
35
|
on_blur: Optional[
|
|
35
36
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -95,6 +96,7 @@ class Wrap(ChakraComponent):
|
|
|
95
96
|
id: The id for the component.
|
|
96
97
|
class_name: The class name for the component.
|
|
97
98
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
99
|
+
_rename_props: props to change the name of
|
|
98
100
|
custom_attrs: custom attribute
|
|
99
101
|
**props: The properties of the component.
|
|
100
102
|
|
|
@@ -114,6 +116,7 @@ class WrapItem(ChakraComponent):
|
|
|
114
116
|
id: Optional[Any] = None,
|
|
115
117
|
class_name: Optional[Any] = None,
|
|
116
118
|
autofocus: Optional[bool] = None,
|
|
119
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
117
120
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
118
121
|
on_blur: Optional[
|
|
119
122
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -171,6 +174,7 @@ class WrapItem(ChakraComponent):
|
|
|
171
174
|
id: The id for the component.
|
|
172
175
|
class_name: The class name for the component.
|
|
173
176
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
177
|
+
_rename_props: props to change the name of
|
|
174
178
|
custom_attrs: custom attribute
|
|
175
179
|
**props: The props of the component.
|
|
176
180
|
|
|
@@ -36,6 +36,7 @@ class Avatar(ChakraComponent):
|
|
|
36
36
|
id: Optional[Any] = None,
|
|
37
37
|
class_name: Optional[Any] = None,
|
|
38
38
|
autofocus: Optional[bool] = None,
|
|
39
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
39
40
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
40
41
|
on_blur: Optional[
|
|
41
42
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -104,6 +105,7 @@ class Avatar(ChakraComponent):
|
|
|
104
105
|
id: The id for the component.
|
|
105
106
|
class_name: The class name for the component.
|
|
106
107
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
108
|
+
_rename_props: props to change the name of
|
|
107
109
|
custom_attrs: custom attribute
|
|
108
110
|
**props: The props of the component.
|
|
109
111
|
|
|
@@ -126,6 +128,7 @@ class AvatarBadge(ChakraComponent):
|
|
|
126
128
|
id: Optional[Any] = None,
|
|
127
129
|
class_name: Optional[Any] = None,
|
|
128
130
|
autofocus: Optional[bool] = None,
|
|
131
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
129
132
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
130
133
|
on_blur: Optional[
|
|
131
134
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -183,6 +186,7 @@ class AvatarBadge(ChakraComponent):
|
|
|
183
186
|
id: The id for the component.
|
|
184
187
|
class_name: The class name for the component.
|
|
185
188
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
189
|
+
_rename_props: props to change the name of
|
|
186
190
|
custom_attrs: custom attribute
|
|
187
191
|
**props: The props of the component.
|
|
188
192
|
|
|
@@ -207,6 +211,7 @@ class AvatarGroup(ChakraComponent):
|
|
|
207
211
|
id: Optional[Any] = None,
|
|
208
212
|
class_name: Optional[Any] = None,
|
|
209
213
|
autofocus: Optional[bool] = None,
|
|
214
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
210
215
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
211
216
|
on_blur: Optional[
|
|
212
217
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -266,6 +271,7 @@ class AvatarGroup(ChakraComponent):
|
|
|
266
271
|
id: The id for the component.
|
|
267
272
|
class_name: The class name for the component.
|
|
268
273
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
274
|
+
_rename_props: props to change the name of
|
|
269
275
|
custom_attrs: custom attribute
|
|
270
276
|
**props: The props of the component.
|
|
271
277
|
|
|
@@ -22,6 +22,7 @@ class ChakraIconComponent(ChakraComponent):
|
|
|
22
22
|
id: Optional[Any] = None,
|
|
23
23
|
class_name: Optional[Any] = None,
|
|
24
24
|
autofocus: Optional[bool] = None,
|
|
25
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
25
26
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
26
27
|
on_blur: Optional[
|
|
27
28
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -79,6 +80,7 @@ class ChakraIconComponent(ChakraComponent):
|
|
|
79
80
|
id: The id for the component.
|
|
80
81
|
class_name: The class name for the component.
|
|
81
82
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
83
|
+
_rename_props: props to change the name of
|
|
82
84
|
custom_attrs: custom attribute
|
|
83
85
|
**props: The props of the component.
|
|
84
86
|
|
|
@@ -101,6 +103,7 @@ class Icon(ChakraIconComponent):
|
|
|
101
103
|
id: Optional[Any] = None,
|
|
102
104
|
class_name: Optional[Any] = None,
|
|
103
105
|
autofocus: Optional[bool] = None,
|
|
106
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
104
107
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
105
108
|
on_blur: Optional[
|
|
106
109
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -160,6 +163,7 @@ class Icon(ChakraIconComponent):
|
|
|
160
163
|
id: The id for the component.
|
|
161
164
|
class_name: The class name for the component.
|
|
162
165
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
166
|
+
_rename_props: props to change the name of
|
|
163
167
|
custom_attrs: custom attribute
|
|
164
168
|
**props: The keyword arguments
|
|
165
169
|
|