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
|
@@ -37,6 +37,7 @@ class Image(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]
|
|
@@ -111,6 +112,7 @@ class Image(ChakraComponent):
|
|
|
111
112
|
id: The id for the component.
|
|
112
113
|
class_name: The class name for the component.
|
|
113
114
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
115
|
+
_rename_props: props to change the name of
|
|
114
116
|
custom_attrs: custom attribute
|
|
115
117
|
**props: The props of the image.
|
|
116
118
|
|
|
@@ -27,6 +27,7 @@ class Breadcrumb(ChakraComponent):
|
|
|
27
27
|
id: Optional[Any] = None,
|
|
28
28
|
class_name: Optional[Any] = None,
|
|
29
29
|
autofocus: Optional[bool] = None,
|
|
30
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
30
31
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
31
32
|
on_blur: Optional[
|
|
32
33
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -89,6 +90,7 @@ class Breadcrumb(ChakraComponent):
|
|
|
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 properties of the component.
|
|
94
96
|
|
|
@@ -114,6 +116,7 @@ class BreadcrumbItem(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]
|
|
@@ -177,6 +180,7 @@ class BreadcrumbItem(ChakraComponent):
|
|
|
177
180
|
id: The id for the component.
|
|
178
181
|
class_name: The class name for the component.
|
|
179
182
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
183
|
+
_rename_props: props to change the name of
|
|
180
184
|
custom_attrs: custom attribute
|
|
181
185
|
**props: The properties of the component.
|
|
182
186
|
|
|
@@ -196,6 +200,7 @@ class BreadcrumbSeparator(ChakraComponent):
|
|
|
196
200
|
id: Optional[Any] = None,
|
|
197
201
|
class_name: Optional[Any] = None,
|
|
198
202
|
autofocus: Optional[bool] = None,
|
|
203
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
199
204
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
200
205
|
on_blur: Optional[
|
|
201
206
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -253,6 +258,7 @@ class BreadcrumbSeparator(ChakraComponent):
|
|
|
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
|
|
|
@@ -281,6 +287,7 @@ class BreadcrumbLink(Link):
|
|
|
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]
|
|
@@ -344,6 +351,7 @@ class BreadcrumbLink(Link):
|
|
|
344
351
|
id: The id for the component.
|
|
345
352
|
class_name: The class name for the component.
|
|
346
353
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
354
|
+
_rename_props: props to change the name of
|
|
347
355
|
custom_attrs: custom attribute
|
|
348
356
|
**props: The props of the component.
|
|
349
357
|
|
|
@@ -31,6 +31,7 @@ class Link(ChakraComponent):
|
|
|
31
31
|
id: Optional[Any] = None,
|
|
32
32
|
class_name: Optional[Any] = None,
|
|
33
33
|
autofocus: Optional[bool] = None,
|
|
34
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
34
35
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
35
36
|
on_blur: Optional[
|
|
36
37
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -93,6 +94,7 @@ class Link(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
|
|
|
@@ -23,6 +23,7 @@ class LinkOverlay(ChakraComponent):
|
|
|
23
23
|
id: Optional[Any] = None,
|
|
24
24
|
class_name: Optional[Any] = None,
|
|
25
25
|
autofocus: Optional[bool] = None,
|
|
26
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
26
27
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
27
28
|
on_blur: Optional[
|
|
28
29
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -82,6 +83,7 @@ class LinkOverlay(ChakraComponent):
|
|
|
82
83
|
id: The id for the component.
|
|
83
84
|
class_name: The class name for the component.
|
|
84
85
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
86
|
+
_rename_props: props to change the name of
|
|
85
87
|
custom_attrs: custom attribute
|
|
86
88
|
**props: The props of the component.
|
|
87
89
|
|
|
@@ -104,6 +106,7 @@ class LinkBox(ChakraComponent):
|
|
|
104
106
|
id: Optional[Any] = None,
|
|
105
107
|
class_name: Optional[Any] = None,
|
|
106
108
|
autofocus: Optional[bool] = None,
|
|
109
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
107
110
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
108
111
|
on_blur: Optional[
|
|
109
112
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -161,6 +164,7 @@ class LinkBox(ChakraComponent):
|
|
|
161
164
|
id: The id for the component.
|
|
162
165
|
class_name: The class name for the component.
|
|
163
166
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
167
|
+
_rename_props: props to change the name of
|
|
164
168
|
custom_attrs: custom attribute
|
|
165
169
|
**props: The props of the component.
|
|
166
170
|
|
|
@@ -80,6 +80,7 @@ class Stepper(ChakraComponent):
|
|
|
80
80
|
id: Optional[Any] = None,
|
|
81
81
|
class_name: Optional[Any] = None,
|
|
82
82
|
autofocus: Optional[bool] = None,
|
|
83
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
83
84
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
84
85
|
on_blur: Optional[
|
|
85
86
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -143,6 +144,7 @@ class Stepper(ChakraComponent):
|
|
|
143
144
|
id: The id for the component.
|
|
144
145
|
class_name: The class name for the component.
|
|
145
146
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
147
|
+
_rename_props: props to change the name of
|
|
146
148
|
custom_attrs: custom attribute
|
|
147
149
|
**props: The properties of the component.
|
|
148
150
|
|
|
@@ -162,6 +164,7 @@ class Step(ChakraComponent):
|
|
|
162
164
|
id: Optional[Any] = None,
|
|
163
165
|
class_name: Optional[Any] = None,
|
|
164
166
|
autofocus: Optional[bool] = None,
|
|
167
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
165
168
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
166
169
|
on_blur: Optional[
|
|
167
170
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -219,6 +222,7 @@ class Step(ChakraComponent):
|
|
|
219
222
|
id: The id for the component.
|
|
220
223
|
class_name: The class name for the component.
|
|
221
224
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
225
|
+
_rename_props: props to change the name of
|
|
222
226
|
custom_attrs: custom attribute
|
|
223
227
|
**props: The props of the component.
|
|
224
228
|
|
|
@@ -241,6 +245,7 @@ class StepDescription(ChakraComponent):
|
|
|
241
245
|
id: Optional[Any] = None,
|
|
242
246
|
class_name: Optional[Any] = None,
|
|
243
247
|
autofocus: Optional[bool] = None,
|
|
248
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
244
249
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
245
250
|
on_blur: Optional[
|
|
246
251
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -298,6 +303,7 @@ class StepDescription(ChakraComponent):
|
|
|
298
303
|
id: The id for the component.
|
|
299
304
|
class_name: The class name for the component.
|
|
300
305
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
306
|
+
_rename_props: props to change the name of
|
|
301
307
|
custom_attrs: custom attribute
|
|
302
308
|
**props: The props of the component.
|
|
303
309
|
|
|
@@ -320,6 +326,7 @@ class StepIcon(ChakraComponent):
|
|
|
320
326
|
id: Optional[Any] = None,
|
|
321
327
|
class_name: Optional[Any] = None,
|
|
322
328
|
autofocus: Optional[bool] = None,
|
|
329
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
323
330
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
324
331
|
on_blur: Optional[
|
|
325
332
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -377,6 +384,7 @@ class StepIcon(ChakraComponent):
|
|
|
377
384
|
id: The id for the component.
|
|
378
385
|
class_name: The class name for the component.
|
|
379
386
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
387
|
+
_rename_props: props to change the name of
|
|
380
388
|
custom_attrs: custom attribute
|
|
381
389
|
**props: The props of the component.
|
|
382
390
|
|
|
@@ -399,6 +407,7 @@ class StepIndicator(ChakraComponent):
|
|
|
399
407
|
id: Optional[Any] = None,
|
|
400
408
|
class_name: Optional[Any] = None,
|
|
401
409
|
autofocus: Optional[bool] = None,
|
|
410
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
402
411
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
403
412
|
on_blur: Optional[
|
|
404
413
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -456,6 +465,7 @@ class StepIndicator(ChakraComponent):
|
|
|
456
465
|
id: The id for the component.
|
|
457
466
|
class_name: The class name for the component.
|
|
458
467
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
468
|
+
_rename_props: props to change the name of
|
|
459
469
|
custom_attrs: custom attribute
|
|
460
470
|
**props: The props of the component.
|
|
461
471
|
|
|
@@ -478,6 +488,7 @@ class StepNumber(ChakraComponent):
|
|
|
478
488
|
id: Optional[Any] = None,
|
|
479
489
|
class_name: Optional[Any] = None,
|
|
480
490
|
autofocus: Optional[bool] = None,
|
|
491
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
481
492
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
482
493
|
on_blur: Optional[
|
|
483
494
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -535,6 +546,7 @@ class StepNumber(ChakraComponent):
|
|
|
535
546
|
id: The id for the component.
|
|
536
547
|
class_name: The class name for the component.
|
|
537
548
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
549
|
+
_rename_props: props to change the name of
|
|
538
550
|
custom_attrs: custom attribute
|
|
539
551
|
**props: The props of the component.
|
|
540
552
|
|
|
@@ -557,6 +569,7 @@ class StepSeparator(ChakraComponent):
|
|
|
557
569
|
id: Optional[Any] = None,
|
|
558
570
|
class_name: Optional[Any] = None,
|
|
559
571
|
autofocus: Optional[bool] = None,
|
|
572
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
560
573
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
561
574
|
on_blur: Optional[
|
|
562
575
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -614,6 +627,7 @@ class StepSeparator(ChakraComponent):
|
|
|
614
627
|
id: The id for the component.
|
|
615
628
|
class_name: The class name for the component.
|
|
616
629
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
630
|
+
_rename_props: props to change the name of
|
|
617
631
|
custom_attrs: custom attribute
|
|
618
632
|
**props: The props of the component.
|
|
619
633
|
|
|
@@ -639,6 +653,7 @@ class StepStatus(ChakraComponent):
|
|
|
639
653
|
id: Optional[Any] = None,
|
|
640
654
|
class_name: Optional[Any] = None,
|
|
641
655
|
autofocus: Optional[bool] = None,
|
|
656
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
642
657
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
643
658
|
on_blur: Optional[
|
|
644
659
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -697,6 +712,7 @@ class StepStatus(ChakraComponent):
|
|
|
697
712
|
id: The id for the component.
|
|
698
713
|
class_name: The class name for the component.
|
|
699
714
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
715
|
+
_rename_props: props to change the name of
|
|
700
716
|
custom_attrs: custom attribute
|
|
701
717
|
**props: The props of the component.
|
|
702
718
|
|
|
@@ -719,6 +735,7 @@ class StepTitle(ChakraComponent):
|
|
|
719
735
|
id: Optional[Any] = None,
|
|
720
736
|
class_name: Optional[Any] = None,
|
|
721
737
|
autofocus: Optional[bool] = None,
|
|
738
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
722
739
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
723
740
|
on_blur: Optional[
|
|
724
741
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -776,6 +793,7 @@ class StepTitle(ChakraComponent):
|
|
|
776
793
|
id: The id for the component.
|
|
777
794
|
class_name: The class name for the component.
|
|
778
795
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
796
|
+
_rename_props: props to change the name of
|
|
779
797
|
custom_attrs: custom attribute
|
|
780
798
|
**props: The props of the component.
|
|
781
799
|
|
|
@@ -62,6 +62,7 @@ class AlertDialog(ChakraComponent):
|
|
|
62
62
|
id: Optional[Any] = None,
|
|
63
63
|
class_name: Optional[Any] = None,
|
|
64
64
|
autofocus: Optional[bool] = None,
|
|
65
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
65
66
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
66
67
|
on_blur: Optional[
|
|
67
68
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -148,6 +149,7 @@ class AlertDialog(ChakraComponent):
|
|
|
148
149
|
id: The id for the component.
|
|
149
150
|
class_name: The class name for the component.
|
|
150
151
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
152
|
+
_rename_props: props to change the name of
|
|
151
153
|
custom_attrs: custom attribute
|
|
152
154
|
**props: The properties of the alert dialog component.
|
|
153
155
|
|
|
@@ -170,6 +172,7 @@ class AlertDialogBody(ChakraComponent):
|
|
|
170
172
|
id: Optional[Any] = None,
|
|
171
173
|
class_name: Optional[Any] = None,
|
|
172
174
|
autofocus: Optional[bool] = None,
|
|
175
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
173
176
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
174
177
|
on_blur: Optional[
|
|
175
178
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -227,6 +230,7 @@ class AlertDialogBody(ChakraComponent):
|
|
|
227
230
|
id: The id for the component.
|
|
228
231
|
class_name: The class name for the component.
|
|
229
232
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
233
|
+
_rename_props: props to change the name of
|
|
230
234
|
custom_attrs: custom attribute
|
|
231
235
|
**props: The props of the component.
|
|
232
236
|
|
|
@@ -249,6 +253,7 @@ class AlertDialogHeader(ChakraComponent):
|
|
|
249
253
|
id: Optional[Any] = None,
|
|
250
254
|
class_name: Optional[Any] = None,
|
|
251
255
|
autofocus: Optional[bool] = None,
|
|
256
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
252
257
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
253
258
|
on_blur: Optional[
|
|
254
259
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -306,6 +311,7 @@ class AlertDialogHeader(ChakraComponent):
|
|
|
306
311
|
id: The id for the component.
|
|
307
312
|
class_name: The class name for the component.
|
|
308
313
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
314
|
+
_rename_props: props to change the name of
|
|
309
315
|
custom_attrs: custom attribute
|
|
310
316
|
**props: The props of the component.
|
|
311
317
|
|
|
@@ -328,6 +334,7 @@ class AlertDialogFooter(ChakraComponent):
|
|
|
328
334
|
id: Optional[Any] = None,
|
|
329
335
|
class_name: Optional[Any] = None,
|
|
330
336
|
autofocus: Optional[bool] = None,
|
|
337
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
331
338
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
332
339
|
on_blur: Optional[
|
|
333
340
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -385,6 +392,7 @@ class AlertDialogFooter(ChakraComponent):
|
|
|
385
392
|
id: The id for the component.
|
|
386
393
|
class_name: The class name for the component.
|
|
387
394
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
395
|
+
_rename_props: props to change the name of
|
|
388
396
|
custom_attrs: custom attribute
|
|
389
397
|
**props: The props of the component.
|
|
390
398
|
|
|
@@ -407,6 +415,7 @@ class AlertDialogContent(ChakraComponent):
|
|
|
407
415
|
id: Optional[Any] = None,
|
|
408
416
|
class_name: Optional[Any] = None,
|
|
409
417
|
autofocus: Optional[bool] = None,
|
|
418
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
410
419
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
411
420
|
on_blur: Optional[
|
|
412
421
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -464,6 +473,7 @@ class AlertDialogContent(ChakraComponent):
|
|
|
464
473
|
id: The id for the component.
|
|
465
474
|
class_name: The class name for the component.
|
|
466
475
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
476
|
+
_rename_props: props to change the name of
|
|
467
477
|
custom_attrs: custom attribute
|
|
468
478
|
**props: The props of the component.
|
|
469
479
|
|
|
@@ -486,6 +496,7 @@ class AlertDialogOverlay(ChakraComponent):
|
|
|
486
496
|
id: Optional[Any] = None,
|
|
487
497
|
class_name: Optional[Any] = None,
|
|
488
498
|
autofocus: Optional[bool] = None,
|
|
499
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
489
500
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
490
501
|
on_blur: Optional[
|
|
491
502
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -543,6 +554,7 @@ class AlertDialogOverlay(ChakraComponent):
|
|
|
543
554
|
id: The id for the component.
|
|
544
555
|
class_name: The class name for the component.
|
|
545
556
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
557
|
+
_rename_props: props to change the name of
|
|
546
558
|
custom_attrs: custom attribute
|
|
547
559
|
**props: The props of the component.
|
|
548
560
|
|
|
@@ -565,6 +577,7 @@ class AlertDialogCloseButton(ChakraComponent):
|
|
|
565
577
|
id: Optional[Any] = None,
|
|
566
578
|
class_name: Optional[Any] = None,
|
|
567
579
|
autofocus: Optional[bool] = None,
|
|
580
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
568
581
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
569
582
|
on_blur: Optional[
|
|
570
583
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -622,6 +635,7 @@ class AlertDialogCloseButton(ChakraComponent):
|
|
|
622
635
|
id: The id for the component.
|
|
623
636
|
class_name: The class name for the component.
|
|
624
637
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
638
|
+
_rename_props: props to change the name of
|
|
625
639
|
custom_attrs: custom attribute
|
|
626
640
|
**props: The props of the component.
|
|
627
641
|
|
|
@@ -101,6 +101,7 @@ class Drawer(ChakraComponent):
|
|
|
101
101
|
id: Optional[Any] = None,
|
|
102
102
|
class_name: Optional[Any] = None,
|
|
103
103
|
autofocus: Optional[bool] = None,
|
|
104
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
104
105
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
105
106
|
on_blur: Optional[
|
|
106
107
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -190,6 +191,7 @@ class Drawer(ChakraComponent):
|
|
|
190
191
|
id: The id for the component.
|
|
191
192
|
class_name: The class name for the component.
|
|
192
193
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
194
|
+
_rename_props: props to change the name of
|
|
193
195
|
custom_attrs: custom attribute
|
|
194
196
|
**props: The properties of the drawer component.
|
|
195
197
|
|
|
@@ -212,6 +214,7 @@ class DrawerBody(ChakraComponent):
|
|
|
212
214
|
id: Optional[Any] = None,
|
|
213
215
|
class_name: Optional[Any] = None,
|
|
214
216
|
autofocus: Optional[bool] = None,
|
|
217
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
215
218
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
216
219
|
on_blur: Optional[
|
|
217
220
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -269,6 +272,7 @@ class DrawerBody(ChakraComponent):
|
|
|
269
272
|
id: The id for the component.
|
|
270
273
|
class_name: The class name for the component.
|
|
271
274
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
275
|
+
_rename_props: props to change the name of
|
|
272
276
|
custom_attrs: custom attribute
|
|
273
277
|
**props: The props of the component.
|
|
274
278
|
|
|
@@ -291,6 +295,7 @@ class DrawerHeader(ChakraComponent):
|
|
|
291
295
|
id: Optional[Any] = None,
|
|
292
296
|
class_name: Optional[Any] = None,
|
|
293
297
|
autofocus: Optional[bool] = None,
|
|
298
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
294
299
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
295
300
|
on_blur: Optional[
|
|
296
301
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -348,6 +353,7 @@ class DrawerHeader(ChakraComponent):
|
|
|
348
353
|
id: The id for the component.
|
|
349
354
|
class_name: The class name for the component.
|
|
350
355
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
356
|
+
_rename_props: props to change the name of
|
|
351
357
|
custom_attrs: custom attribute
|
|
352
358
|
**props: The props of the component.
|
|
353
359
|
|
|
@@ -370,6 +376,7 @@ class DrawerFooter(ChakraComponent):
|
|
|
370
376
|
id: Optional[Any] = None,
|
|
371
377
|
class_name: Optional[Any] = None,
|
|
372
378
|
autofocus: Optional[bool] = None,
|
|
379
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
373
380
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
374
381
|
on_blur: Optional[
|
|
375
382
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -427,6 +434,7 @@ class DrawerFooter(ChakraComponent):
|
|
|
427
434
|
id: The id for the component.
|
|
428
435
|
class_name: The class name for the component.
|
|
429
436
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
437
|
+
_rename_props: props to change the name of
|
|
430
438
|
custom_attrs: custom attribute
|
|
431
439
|
**props: The props of the component.
|
|
432
440
|
|
|
@@ -449,6 +457,7 @@ class DrawerOverlay(ChakraComponent):
|
|
|
449
457
|
id: Optional[Any] = None,
|
|
450
458
|
class_name: Optional[Any] = None,
|
|
451
459
|
autofocus: Optional[bool] = None,
|
|
460
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
452
461
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
453
462
|
on_blur: Optional[
|
|
454
463
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -506,6 +515,7 @@ class DrawerOverlay(ChakraComponent):
|
|
|
506
515
|
id: The id for the component.
|
|
507
516
|
class_name: The class name for the component.
|
|
508
517
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
518
|
+
_rename_props: props to change the name of
|
|
509
519
|
custom_attrs: custom attribute
|
|
510
520
|
**props: The props of the component.
|
|
511
521
|
|
|
@@ -528,6 +538,7 @@ class DrawerContent(ChakraComponent):
|
|
|
528
538
|
id: Optional[Any] = None,
|
|
529
539
|
class_name: Optional[Any] = None,
|
|
530
540
|
autofocus: Optional[bool] = None,
|
|
541
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
531
542
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
532
543
|
on_blur: Optional[
|
|
533
544
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -585,6 +596,7 @@ class DrawerContent(ChakraComponent):
|
|
|
585
596
|
id: The id for the component.
|
|
586
597
|
class_name: The class name for the component.
|
|
587
598
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
599
|
+
_rename_props: props to change the name of
|
|
588
600
|
custom_attrs: custom attribute
|
|
589
601
|
**props: The props of the component.
|
|
590
602
|
|
|
@@ -607,6 +619,7 @@ class DrawerCloseButton(ChakraComponent):
|
|
|
607
619
|
id: Optional[Any] = None,
|
|
608
620
|
class_name: Optional[Any] = None,
|
|
609
621
|
autofocus: Optional[bool] = None,
|
|
622
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
610
623
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
611
624
|
on_blur: Optional[
|
|
612
625
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -664,6 +677,7 @@ class DrawerCloseButton(ChakraComponent):
|
|
|
664
677
|
id: The id for the component.
|
|
665
678
|
class_name: The class name for the component.
|
|
666
679
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
680
|
+
_rename_props: props to change the name of
|
|
667
681
|
custom_attrs: custom attribute
|
|
668
682
|
**props: The props of the component.
|
|
669
683
|
|
|
@@ -52,6 +52,7 @@ class Menu(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]
|
|
@@ -133,6 +134,7 @@ class Menu(ChakraComponent):
|
|
|
133
134
|
id: The id for the component.
|
|
134
135
|
class_name: The class name for the component.
|
|
135
136
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
137
|
+
_rename_props: props to change the name of
|
|
136
138
|
custom_attrs: custom attribute
|
|
137
139
|
**props: The properties of the component.
|
|
138
140
|
|
|
@@ -154,6 +156,7 @@ class MenuButton(ChakraComponent):
|
|
|
154
156
|
id: Optional[Any] = None,
|
|
155
157
|
class_name: Optional[Any] = None,
|
|
156
158
|
autofocus: Optional[bool] = None,
|
|
159
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
157
160
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
158
161
|
on_blur: Optional[
|
|
159
162
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -213,6 +216,7 @@ class MenuButton(ChakraComponent):
|
|
|
213
216
|
id: The id for the component.
|
|
214
217
|
class_name: The class name for the component.
|
|
215
218
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
219
|
+
_rename_props: props to change the name of
|
|
216
220
|
custom_attrs: custom attribute
|
|
217
221
|
**props: The props of the component.
|
|
218
222
|
|
|
@@ -236,6 +240,7 @@ class MenuList(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]
|
|
@@ -294,6 +299,7 @@ class MenuList(ChakraComponent):
|
|
|
294
299
|
id: The id for the component.
|
|
295
300
|
class_name: The class name for the component.
|
|
296
301
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
302
|
+
_rename_props: props to change the name of
|
|
297
303
|
custom_attrs: custom attribute
|
|
298
304
|
**props: The properties of the component.
|
|
299
305
|
|
|
@@ -318,6 +324,7 @@ class MenuItem(ChakraComponent):
|
|
|
318
324
|
id: Optional[Any] = None,
|
|
319
325
|
class_name: Optional[Any] = None,
|
|
320
326
|
autofocus: Optional[bool] = None,
|
|
327
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
321
328
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
322
329
|
on_blur: Optional[
|
|
323
330
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -380,6 +387,7 @@ class MenuItem(ChakraComponent):
|
|
|
380
387
|
id: The id for the component.
|
|
381
388
|
class_name: The class name for the component.
|
|
382
389
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
390
|
+
_rename_props: props to change the name of
|
|
383
391
|
custom_attrs: custom attribute
|
|
384
392
|
**props: The props of the component.
|
|
385
393
|
|
|
@@ -412,6 +420,7 @@ class MenuItemOption(ChakraComponent):
|
|
|
412
420
|
id: Optional[Any] = None,
|
|
413
421
|
class_name: Optional[Any] = None,
|
|
414
422
|
autofocus: Optional[bool] = None,
|
|
423
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
415
424
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
416
425
|
on_blur: Optional[
|
|
417
426
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -477,6 +486,7 @@ class MenuItemOption(ChakraComponent):
|
|
|
477
486
|
id: The id for the component.
|
|
478
487
|
class_name: The class name for the component.
|
|
479
488
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
489
|
+
_rename_props: props to change the name of
|
|
480
490
|
custom_attrs: custom attribute
|
|
481
491
|
**props: The props of the component.
|
|
482
492
|
|
|
@@ -499,6 +509,7 @@ class MenuGroup(ChakraComponent):
|
|
|
499
509
|
id: Optional[Any] = None,
|
|
500
510
|
class_name: Optional[Any] = None,
|
|
501
511
|
autofocus: Optional[bool] = None,
|
|
512
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
502
513
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
503
514
|
on_blur: Optional[
|
|
504
515
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -556,6 +567,7 @@ class MenuGroup(ChakraComponent):
|
|
|
556
567
|
id: The id for the component.
|
|
557
568
|
class_name: The class name for the component.
|
|
558
569
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
570
|
+
_rename_props: props to change the name of
|
|
559
571
|
custom_attrs: custom attribute
|
|
560
572
|
**props: The props of the component.
|
|
561
573
|
|
|
@@ -582,6 +594,7 @@ class MenuOptionGroup(ChakraComponent):
|
|
|
582
594
|
id: Optional[Any] = None,
|
|
583
595
|
class_name: Optional[Any] = None,
|
|
584
596
|
autofocus: Optional[bool] = None,
|
|
597
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
585
598
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
586
599
|
on_blur: Optional[
|
|
587
600
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -641,6 +654,7 @@ class MenuOptionGroup(ChakraComponent):
|
|
|
641
654
|
id: The id for the component.
|
|
642
655
|
class_name: The class name for the component.
|
|
643
656
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
657
|
+
_rename_props: props to change the name of
|
|
644
658
|
custom_attrs: custom attribute
|
|
645
659
|
**props: The props of the component.
|
|
646
660
|
|
|
@@ -663,6 +677,7 @@ class MenuDivider(ChakraComponent):
|
|
|
663
677
|
id: Optional[Any] = None,
|
|
664
678
|
class_name: Optional[Any] = None,
|
|
665
679
|
autofocus: Optional[bool] = None,
|
|
680
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
666
681
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
667
682
|
on_blur: Optional[
|
|
668
683
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -720,6 +735,7 @@ class MenuDivider(ChakraComponent):
|
|
|
720
735
|
id: The id for the component.
|
|
721
736
|
class_name: The class name for the component.
|
|
722
737
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
738
|
+
_rename_props: props to change the name of
|
|
723
739
|
custom_attrs: custom attribute
|
|
724
740
|
**props: The props of the component.
|
|
725
741
|
|