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
|
@@ -26,6 +26,7 @@ class Stat(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]
|
|
@@ -87,6 +88,7 @@ class Stat(ChakraComponent):
|
|
|
87
88
|
id: The id for the component.
|
|
88
89
|
class_name: The class name for the component.
|
|
89
90
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
91
|
+
_rename_props: props to change the name of
|
|
90
92
|
custom_attrs: custom attribute
|
|
91
93
|
**props: The properties of the component.
|
|
92
94
|
|
|
@@ -106,6 +108,7 @@ class StatLabel(ChakraComponent):
|
|
|
106
108
|
id: Optional[Any] = None,
|
|
107
109
|
class_name: Optional[Any] = None,
|
|
108
110
|
autofocus: Optional[bool] = None,
|
|
111
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
109
112
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
110
113
|
on_blur: Optional[
|
|
111
114
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -163,6 +166,7 @@ class StatLabel(ChakraComponent):
|
|
|
163
166
|
id: The id for the component.
|
|
164
167
|
class_name: The class name for the component.
|
|
165
168
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
169
|
+
_rename_props: props to change the name of
|
|
166
170
|
custom_attrs: custom attribute
|
|
167
171
|
**props: The props of the component.
|
|
168
172
|
|
|
@@ -185,6 +189,7 @@ class StatNumber(ChakraComponent):
|
|
|
185
189
|
id: Optional[Any] = None,
|
|
186
190
|
class_name: Optional[Any] = None,
|
|
187
191
|
autofocus: Optional[bool] = None,
|
|
192
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
188
193
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
189
194
|
on_blur: Optional[
|
|
190
195
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -242,6 +247,7 @@ class StatNumber(ChakraComponent):
|
|
|
242
247
|
id: The id for the component.
|
|
243
248
|
class_name: The class name for the component.
|
|
244
249
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
250
|
+
_rename_props: props to change the name of
|
|
245
251
|
custom_attrs: custom attribute
|
|
246
252
|
**props: The props of the component.
|
|
247
253
|
|
|
@@ -264,6 +270,7 @@ class StatHelpText(ChakraComponent):
|
|
|
264
270
|
id: Optional[Any] = None,
|
|
265
271
|
class_name: Optional[Any] = None,
|
|
266
272
|
autofocus: Optional[bool] = None,
|
|
273
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
267
274
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
268
275
|
on_blur: Optional[
|
|
269
276
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -321,6 +328,7 @@ class StatHelpText(ChakraComponent):
|
|
|
321
328
|
id: The id for the component.
|
|
322
329
|
class_name: The class name for the component.
|
|
323
330
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
331
|
+
_rename_props: props to change the name of
|
|
324
332
|
custom_attrs: custom attribute
|
|
325
333
|
**props: The props of the component.
|
|
326
334
|
|
|
@@ -344,6 +352,7 @@ class StatArrow(ChakraComponent):
|
|
|
344
352
|
id: Optional[Any] = None,
|
|
345
353
|
class_name: Optional[Any] = None,
|
|
346
354
|
autofocus: Optional[bool] = None,
|
|
355
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
347
356
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
348
357
|
on_blur: Optional[
|
|
349
358
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -402,6 +411,7 @@ class StatArrow(ChakraComponent):
|
|
|
402
411
|
id: The id for the component.
|
|
403
412
|
class_name: The class name for the component.
|
|
404
413
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
414
|
+
_rename_props: props to change the name of
|
|
405
415
|
custom_attrs: custom attribute
|
|
406
416
|
**props: The props of the component.
|
|
407
417
|
|
|
@@ -424,6 +434,7 @@ class StatGroup(ChakraComponent):
|
|
|
424
434
|
id: Optional[Any] = None,
|
|
425
435
|
class_name: Optional[Any] = None,
|
|
426
436
|
autofocus: Optional[bool] = None,
|
|
437
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
427
438
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
428
439
|
on_blur: Optional[
|
|
429
440
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -481,6 +492,7 @@ class StatGroup(ChakraComponent):
|
|
|
481
492
|
id: The id for the component.
|
|
482
493
|
class_name: The class name for the component.
|
|
483
494
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
495
|
+
_rename_props: props to change the name of
|
|
484
496
|
custom_attrs: custom attribute
|
|
485
497
|
**props: The props of the component.
|
|
486
498
|
|
|
@@ -33,6 +33,7 @@ class Table(ChakraComponent):
|
|
|
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]
|
|
@@ -98,6 +99,7 @@ class Table(ChakraComponent):
|
|
|
98
99
|
id: The id for the component.
|
|
99
100
|
class_name: The class name for the component.
|
|
100
101
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
102
|
+
_rename_props: props to change the name of
|
|
101
103
|
custom_attrs: custom attribute
|
|
102
104
|
**props: The properties of the component.
|
|
103
105
|
|
|
@@ -118,6 +120,7 @@ class Thead(ChakraComponent):
|
|
|
118
120
|
id: Optional[Any] = None,
|
|
119
121
|
class_name: Optional[Any] = None,
|
|
120
122
|
autofocus: Optional[bool] = None,
|
|
123
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
121
124
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
122
125
|
on_blur: Optional[
|
|
123
126
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -176,6 +179,7 @@ class Thead(ChakraComponent):
|
|
|
176
179
|
id: The id for the component.
|
|
177
180
|
class_name: The class name for the component.
|
|
178
181
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
182
|
+
_rename_props: props to change the name of
|
|
179
183
|
custom_attrs: custom attribute
|
|
180
184
|
**props: The properties of the component.
|
|
181
185
|
|
|
@@ -199,6 +203,7 @@ class Tbody(ChakraComponent):
|
|
|
199
203
|
id: Optional[Any] = None,
|
|
200
204
|
class_name: Optional[Any] = None,
|
|
201
205
|
autofocus: Optional[bool] = None,
|
|
206
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
202
207
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
203
208
|
on_blur: Optional[
|
|
204
209
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -257,6 +262,7 @@ class Tbody(ChakraComponent):
|
|
|
257
262
|
id: The id for the component.
|
|
258
263
|
class_name: The class name for the component.
|
|
259
264
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
265
|
+
_rename_props: props to change the name of
|
|
260
266
|
custom_attrs: custom attribute
|
|
261
267
|
**props: The properties of the component.
|
|
262
268
|
|
|
@@ -279,6 +285,7 @@ class Tfoot(ChakraComponent):
|
|
|
279
285
|
id: Optional[Any] = None,
|
|
280
286
|
class_name: Optional[Any] = None,
|
|
281
287
|
autofocus: Optional[bool] = None,
|
|
288
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
282
289
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
283
290
|
on_blur: Optional[
|
|
284
291
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -337,6 +344,7 @@ class Tfoot(ChakraComponent):
|
|
|
337
344
|
id: The id for the component.
|
|
338
345
|
class_name: The class name for the component.
|
|
339
346
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
347
|
+
_rename_props: props to change the name of
|
|
340
348
|
custom_attrs: custom attribute
|
|
341
349
|
**props: The properties of the component.
|
|
342
350
|
|
|
@@ -360,6 +368,7 @@ class Tr(ChakraComponent):
|
|
|
360
368
|
id: Optional[Any] = None,
|
|
361
369
|
class_name: Optional[Any] = None,
|
|
362
370
|
autofocus: Optional[bool] = None,
|
|
371
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
363
372
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
364
373
|
on_blur: Optional[
|
|
365
374
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -419,6 +428,7 @@ class Tr(ChakraComponent):
|
|
|
419
428
|
id: The id for the component.
|
|
420
429
|
class_name: The class name for the component.
|
|
421
430
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
431
|
+
_rename_props: props to change the name of
|
|
422
432
|
custom_attrs: custom attribute
|
|
423
433
|
**props: The properties of the component.
|
|
424
434
|
|
|
@@ -439,6 +449,7 @@ class Th(ChakraComponent):
|
|
|
439
449
|
id: Optional[Any] = None,
|
|
440
450
|
class_name: Optional[Any] = None,
|
|
441
451
|
autofocus: Optional[bool] = None,
|
|
452
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
442
453
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
443
454
|
on_blur: Optional[
|
|
444
455
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -497,6 +508,7 @@ class Th(ChakraComponent):
|
|
|
497
508
|
id: The id for the component.
|
|
498
509
|
class_name: The class name for the component.
|
|
499
510
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
511
|
+
_rename_props: props to change the name of
|
|
500
512
|
custom_attrs: custom attribute
|
|
501
513
|
**props: The props of the component.
|
|
502
514
|
|
|
@@ -520,6 +532,7 @@ class Td(ChakraComponent):
|
|
|
520
532
|
id: Optional[Any] = None,
|
|
521
533
|
class_name: Optional[Any] = None,
|
|
522
534
|
autofocus: Optional[bool] = None,
|
|
535
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
523
536
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
524
537
|
on_blur: Optional[
|
|
525
538
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -578,6 +591,7 @@ class Td(ChakraComponent):
|
|
|
578
591
|
id: The id for the component.
|
|
579
592
|
class_name: The class name for the component.
|
|
580
593
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
594
|
+
_rename_props: props to change the name of
|
|
581
595
|
custom_attrs: custom attribute
|
|
582
596
|
**props: The props of the component.
|
|
583
597
|
|
|
@@ -601,6 +615,7 @@ class TableCaption(ChakraComponent):
|
|
|
601
615
|
id: Optional[Any] = None,
|
|
602
616
|
class_name: Optional[Any] = None,
|
|
603
617
|
autofocus: Optional[bool] = None,
|
|
618
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
604
619
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
605
620
|
on_blur: Optional[
|
|
606
621
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -659,6 +674,7 @@ class TableCaption(ChakraComponent):
|
|
|
659
674
|
id: The id for the component.
|
|
660
675
|
class_name: The class name for the component.
|
|
661
676
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
677
|
+
_rename_props: props to change the name of
|
|
662
678
|
custom_attrs: custom attribute
|
|
663
679
|
**props: The props of the component.
|
|
664
680
|
|
|
@@ -681,6 +697,7 @@ class TableContainer(ChakraComponent):
|
|
|
681
697
|
id: Optional[Any] = None,
|
|
682
698
|
class_name: Optional[Any] = None,
|
|
683
699
|
autofocus: Optional[bool] = None,
|
|
700
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
684
701
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
685
702
|
on_blur: Optional[
|
|
686
703
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -738,6 +755,7 @@ class TableContainer(ChakraComponent):
|
|
|
738
755
|
id: The id for the component.
|
|
739
756
|
class_name: The class name for the component.
|
|
740
757
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
758
|
+
_rename_props: props to change the name of
|
|
741
759
|
custom_attrs: custom attribute
|
|
742
760
|
**props: The props of the component.
|
|
743
761
|
|
|
@@ -28,6 +28,7 @@ class TagLabel(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 TagLabel(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 TagLeftIcon(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 TagLeftIcon(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 TagRightIcon(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 TagRightIcon(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
|
|
|
@@ -265,6 +271,7 @@ class TagCloseButton(ChakraComponent):
|
|
|
265
271
|
id: Optional[Any] = None,
|
|
266
272
|
class_name: Optional[Any] = None,
|
|
267
273
|
autofocus: Optional[bool] = None,
|
|
274
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
268
275
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
269
276
|
on_blur: Optional[
|
|
270
277
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -322,6 +329,7 @@ class TagCloseButton(ChakraComponent):
|
|
|
322
329
|
id: The id for the component.
|
|
323
330
|
class_name: The class name for the component.
|
|
324
331
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
332
|
+
_rename_props: props to change the name of
|
|
325
333
|
custom_attrs: custom attribute
|
|
326
334
|
**props: The props of the component.
|
|
327
335
|
|
|
@@ -386,6 +394,7 @@ class Tag(ChakraComponent):
|
|
|
386
394
|
id: Optional[Any] = None,
|
|
387
395
|
class_name: Optional[Any] = None,
|
|
388
396
|
autofocus: Optional[bool] = None,
|
|
397
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
389
398
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
390
399
|
on_blur: Optional[
|
|
391
400
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -34,6 +34,7 @@ class Accordion(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]
|
|
@@ -98,6 +99,7 @@ class Accordion(ChakraComponent):
|
|
|
98
99
|
id: The id for the component.
|
|
99
100
|
class_name: The class name for the component.
|
|
100
101
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
102
|
+
_rename_props: props to change the name of
|
|
101
103
|
custom_attrs: custom attribute
|
|
102
104
|
**props: The properties of the component.
|
|
103
105
|
|
|
@@ -120,6 +122,7 @@ class AccordionItem(ChakraComponent):
|
|
|
120
122
|
id: Optional[Any] = None,
|
|
121
123
|
class_name: Optional[Any] = None,
|
|
122
124
|
autofocus: Optional[bool] = None,
|
|
125
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
123
126
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
124
127
|
on_blur: Optional[
|
|
125
128
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -180,6 +183,7 @@ class AccordionItem(ChakraComponent):
|
|
|
180
183
|
id: The id for the component.
|
|
181
184
|
class_name: The class name for the component.
|
|
182
185
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
186
|
+
_rename_props: props to change the name of
|
|
183
187
|
custom_attrs: custom attribute
|
|
184
188
|
**props: The props of the component.
|
|
185
189
|
|
|
@@ -202,6 +206,7 @@ class AccordionButton(ChakraComponent):
|
|
|
202
206
|
id: Optional[Any] = None,
|
|
203
207
|
class_name: Optional[Any] = None,
|
|
204
208
|
autofocus: Optional[bool] = None,
|
|
209
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
205
210
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
206
211
|
on_blur: Optional[
|
|
207
212
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -259,6 +264,7 @@ class AccordionButton(ChakraComponent):
|
|
|
259
264
|
id: The id for the component.
|
|
260
265
|
class_name: The class name for the component.
|
|
261
266
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
267
|
+
_rename_props: props to change the name of
|
|
262
268
|
custom_attrs: custom attribute
|
|
263
269
|
**props: The props of the component.
|
|
264
270
|
|
|
@@ -281,6 +287,7 @@ class AccordionPanel(ChakraComponent):
|
|
|
281
287
|
id: Optional[Any] = None,
|
|
282
288
|
class_name: Optional[Any] = None,
|
|
283
289
|
autofocus: Optional[bool] = None,
|
|
290
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
284
291
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
285
292
|
on_blur: Optional[
|
|
286
293
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -338,6 +345,7 @@ class AccordionPanel(ChakraComponent):
|
|
|
338
345
|
id: The id for the component.
|
|
339
346
|
class_name: The class name for the component.
|
|
340
347
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
348
|
+
_rename_props: props to change the name of
|
|
341
349
|
custom_attrs: custom attribute
|
|
342
350
|
**props: The props of the component.
|
|
343
351
|
|
|
@@ -360,6 +368,7 @@ class AccordionIcon(ChakraComponent):
|
|
|
360
368
|
id: Optional[Any] = None,
|
|
361
369
|
class_name: Optional[Any] = None,
|
|
362
370
|
autofocus: Optional[bool] = None,
|
|
371
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
363
372
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
364
373
|
on_blur: Optional[
|
|
365
374
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -417,6 +426,7 @@ class AccordionIcon(ChakraComponent):
|
|
|
417
426
|
id: The id for the component.
|
|
418
427
|
class_name: The class name for the component.
|
|
419
428
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
429
|
+
_rename_props: props to change the name of
|
|
420
430
|
custom_attrs: custom attribute
|
|
421
431
|
**props: The props of the component.
|
|
422
432
|
|
|
@@ -90,20 +90,28 @@ class Tab(ChakraComponent):
|
|
|
90
90
|
# The id of the panel.
|
|
91
91
|
panel_id: Var[str]
|
|
92
92
|
|
|
93
|
+
_valid_parents: List[str] = ["TabList"]
|
|
94
|
+
|
|
93
95
|
|
|
94
96
|
class TabList(ChakraComponent):
|
|
95
97
|
"""Wrapper for the Tab components."""
|
|
96
98
|
|
|
97
99
|
tag = "TabList"
|
|
98
100
|
|
|
101
|
+
_valid_parents: List[str] = ["Tabs"]
|
|
102
|
+
|
|
99
103
|
|
|
100
104
|
class TabPanels(ChakraComponent):
|
|
101
105
|
"""Wrapper for the Tab components."""
|
|
102
106
|
|
|
103
107
|
tag = "TabPanels"
|
|
104
108
|
|
|
109
|
+
_valid_parents: List[str] = ["Tabs"]
|
|
110
|
+
|
|
105
111
|
|
|
106
112
|
class TabPanel(ChakraComponent):
|
|
107
113
|
"""An element that contains the content associated with a tab."""
|
|
108
114
|
|
|
109
115
|
tag = "TabPanel"
|
|
116
|
+
|
|
117
|
+
_valid_parents: List[str] = ["TabPanels"]
|
|
@@ -112,6 +112,7 @@ class Tabs(ChakraComponent):
|
|
|
112
112
|
id: Optional[Any] = None,
|
|
113
113
|
class_name: Optional[Any] = None,
|
|
114
114
|
autofocus: Optional[bool] = None,
|
|
115
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
115
116
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
116
117
|
on_blur: Optional[
|
|
117
118
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -180,6 +181,7 @@ class Tabs(ChakraComponent):
|
|
|
180
181
|
id: The id for the component.
|
|
181
182
|
class_name: The class name for the component.
|
|
182
183
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
184
|
+
_rename_props: props to change the name of
|
|
183
185
|
custom_attrs: custom attribute
|
|
184
186
|
**props: The properties of the component.
|
|
185
187
|
|
|
@@ -203,6 +205,7 @@ class Tab(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]
|
|
@@ -264,6 +267,7 @@ class Tab(ChakraComponent):
|
|
|
264
267
|
id: The id for the component.
|
|
265
268
|
class_name: The class name for the component.
|
|
266
269
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
270
|
+
_rename_props: props to change the name of
|
|
267
271
|
custom_attrs: custom attribute
|
|
268
272
|
**props: The props of the component.
|
|
269
273
|
|
|
@@ -286,6 +290,7 @@ class TabList(ChakraComponent):
|
|
|
286
290
|
id: Optional[Any] = None,
|
|
287
291
|
class_name: Optional[Any] = None,
|
|
288
292
|
autofocus: Optional[bool] = None,
|
|
293
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
289
294
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
290
295
|
on_blur: Optional[
|
|
291
296
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -343,6 +348,7 @@ class TabList(ChakraComponent):
|
|
|
343
348
|
id: The id for the component.
|
|
344
349
|
class_name: The class name for the component.
|
|
345
350
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
351
|
+
_rename_props: props to change the name of
|
|
346
352
|
custom_attrs: custom attribute
|
|
347
353
|
**props: The props of the component.
|
|
348
354
|
|
|
@@ -365,6 +371,7 @@ class TabPanels(ChakraComponent):
|
|
|
365
371
|
id: Optional[Any] = None,
|
|
366
372
|
class_name: Optional[Any] = None,
|
|
367
373
|
autofocus: Optional[bool] = None,
|
|
374
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
368
375
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
369
376
|
on_blur: Optional[
|
|
370
377
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -422,6 +429,7 @@ class TabPanels(ChakraComponent):
|
|
|
422
429
|
id: The id for the component.
|
|
423
430
|
class_name: The class name for the component.
|
|
424
431
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
432
|
+
_rename_props: props to change the name of
|
|
425
433
|
custom_attrs: custom attribute
|
|
426
434
|
**props: The props of the component.
|
|
427
435
|
|
|
@@ -444,6 +452,7 @@ class TabPanel(ChakraComponent):
|
|
|
444
452
|
id: Optional[Any] = None,
|
|
445
453
|
class_name: Optional[Any] = None,
|
|
446
454
|
autofocus: Optional[bool] = None,
|
|
455
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
447
456
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
448
457
|
on_blur: Optional[
|
|
449
458
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -501,6 +510,7 @@ class TabPanel(ChakraComponent):
|
|
|
501
510
|
id: The id for the component.
|
|
502
511
|
class_name: The class name for the component.
|
|
503
512
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
513
|
+
_rename_props: props to change the name of
|
|
504
514
|
custom_attrs: custom attribute
|
|
505
515
|
**props: The props of the component.
|
|
506
516
|
|
|
@@ -24,6 +24,7 @@ class Transition(ChakraComponent):
|
|
|
24
24
|
id: Optional[Any] = None,
|
|
25
25
|
class_name: Optional[Any] = None,
|
|
26
26
|
autofocus: Optional[bool] = None,
|
|
27
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
27
28
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
28
29
|
on_blur: Optional[
|
|
29
30
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -83,6 +84,7 @@ class Transition(ChakraComponent):
|
|
|
83
84
|
id: The id for the component.
|
|
84
85
|
class_name: The class name for the component.
|
|
85
86
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
87
|
+
_rename_props: props to change the name of
|
|
86
88
|
custom_attrs: custom attribute
|
|
87
89
|
**props: The props of the component.
|
|
88
90
|
|
|
@@ -107,6 +109,7 @@ class Fade(Transition):
|
|
|
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]
|
|
@@ -166,6 +169,7 @@ class Fade(Transition):
|
|
|
166
169
|
id: The id for the component.
|
|
167
170
|
class_name: The class name for the component.
|
|
168
171
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
172
|
+
_rename_props: props to change the name of
|
|
169
173
|
custom_attrs: custom attribute
|
|
170
174
|
**props: The props of the component.
|
|
171
175
|
|
|
@@ -192,6 +196,7 @@ class ScaleFade(Transition):
|
|
|
192
196
|
id: Optional[Any] = None,
|
|
193
197
|
class_name: Optional[Any] = None,
|
|
194
198
|
autofocus: Optional[bool] = None,
|
|
199
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
195
200
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
196
201
|
on_blur: Optional[
|
|
197
202
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -253,6 +258,7 @@ class ScaleFade(Transition):
|
|
|
253
258
|
id: The id for the component.
|
|
254
259
|
class_name: The class name for the component.
|
|
255
260
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
261
|
+
_rename_props: props to change the name of
|
|
256
262
|
custom_attrs: custom attribute
|
|
257
263
|
**props: The props of the component.
|
|
258
264
|
|
|
@@ -278,6 +284,7 @@ class Slide(Transition):
|
|
|
278
284
|
id: Optional[Any] = None,
|
|
279
285
|
class_name: Optional[Any] = None,
|
|
280
286
|
autofocus: Optional[bool] = None,
|
|
287
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
281
288
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
282
289
|
on_blur: Optional[
|
|
283
290
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -338,6 +345,7 @@ class Slide(Transition):
|
|
|
338
345
|
id: The id for the component.
|
|
339
346
|
class_name: The class name for the component.
|
|
340
347
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
348
|
+
_rename_props: props to change the name of
|
|
341
349
|
custom_attrs: custom attribute
|
|
342
350
|
**props: The props of the component.
|
|
343
351
|
|
|
@@ -365,6 +373,7 @@ class SlideFade(Transition):
|
|
|
365
373
|
id: Optional[Any] = None,
|
|
366
374
|
class_name: Optional[Any] = None,
|
|
367
375
|
autofocus: Optional[bool] = None,
|
|
376
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
368
377
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
369
378
|
on_blur: Optional[
|
|
370
379
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -427,6 +436,7 @@ class SlideFade(Transition):
|
|
|
427
436
|
id: The id for the component.
|
|
428
437
|
class_name: The class name for the component.
|
|
429
438
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
439
|
+
_rename_props: props to change the name of
|
|
430
440
|
custom_attrs: custom attribute
|
|
431
441
|
**props: The props of the component.
|
|
432
442
|
|
|
@@ -454,6 +464,7 @@ class Collapse(Transition):
|
|
|
454
464
|
id: Optional[Any] = None,
|
|
455
465
|
class_name: Optional[Any] = None,
|
|
456
466
|
autofocus: Optional[bool] = None,
|
|
467
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
457
468
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
458
469
|
on_blur: Optional[
|
|
459
470
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -516,6 +527,7 @@ class Collapse(Transition):
|
|
|
516
527
|
id: The id for the component.
|
|
517
528
|
class_name: The class name for the component.
|
|
518
529
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
530
|
+
_rename_props: props to change the name of
|
|
519
531
|
custom_attrs: custom attribute
|
|
520
532
|
**props: The props of the component.
|
|
521
533
|
|
|
@@ -20,6 +20,7 @@ class VisuallyHidden(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 VisuallyHidden(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
|
|
|
@@ -37,6 +37,7 @@ class Alert(ChakraComponent):
|
|
|
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]
|
|
@@ -99,6 +100,7 @@ class Alert(ChakraComponent):
|
|
|
99
100
|
id: The id for the component.
|
|
100
101
|
class_name: The class name for the component.
|
|
101
102
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
103
|
+
_rename_props: props to change the name of
|
|
102
104
|
custom_attrs: custom attribute
|
|
103
105
|
**props: The properties of the component.
|
|
104
106
|
|
|
@@ -118,6 +120,7 @@ class AlertIcon(ChakraComponent):
|
|
|
118
120
|
id: Optional[Any] = None,
|
|
119
121
|
class_name: Optional[Any] = None,
|
|
120
122
|
autofocus: Optional[bool] = None,
|
|
123
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
121
124
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
122
125
|
on_blur: Optional[
|
|
123
126
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -175,6 +178,7 @@ class AlertIcon(ChakraComponent):
|
|
|
175
178
|
id: The id for the component.
|
|
176
179
|
class_name: The class name for the component.
|
|
177
180
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
181
|
+
_rename_props: props to change the name of
|
|
178
182
|
custom_attrs: custom attribute
|
|
179
183
|
**props: The props of the component.
|
|
180
184
|
|
|
@@ -197,6 +201,7 @@ class AlertTitle(ChakraComponent):
|
|
|
197
201
|
id: Optional[Any] = None,
|
|
198
202
|
class_name: Optional[Any] = None,
|
|
199
203
|
autofocus: Optional[bool] = None,
|
|
204
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
200
205
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
201
206
|
on_blur: Optional[
|
|
202
207
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -254,6 +259,7 @@ class AlertTitle(ChakraComponent):
|
|
|
254
259
|
id: The id for the component.
|
|
255
260
|
class_name: The class name for the component.
|
|
256
261
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
262
|
+
_rename_props: props to change the name of
|
|
257
263
|
custom_attrs: custom attribute
|
|
258
264
|
**props: The props of the component.
|
|
259
265
|
|
|
@@ -276,6 +282,7 @@ class AlertDescription(ChakraComponent):
|
|
|
276
282
|
id: Optional[Any] = None,
|
|
277
283
|
class_name: Optional[Any] = None,
|
|
278
284
|
autofocus: Optional[bool] = None,
|
|
285
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
279
286
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
280
287
|
on_blur: Optional[
|
|
281
288
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -333,6 +340,7 @@ class AlertDescription(ChakraComponent):
|
|
|
333
340
|
id: The id for the component.
|
|
334
341
|
class_name: The class name for the component.
|
|
335
342
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
343
|
+
_rename_props: props to change the name of
|
|
336
344
|
custom_attrs: custom attribute
|
|
337
345
|
**props: The props of the component.
|
|
338
346
|
|