reflex 0.3.9a3__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.

Files changed (247) hide show
  1. reflex/__init__.py +3 -1
  2. reflex/__init__.pyi +3 -1
  3. reflex/app.py +116 -86
  4. reflex/compiler/compiler.py +110 -0
  5. reflex/compiler/utils.py +13 -12
  6. reflex/components/base/app_wrap.pyi +1 -0
  7. reflex/components/base/body.pyi +2 -0
  8. reflex/components/base/document.pyi +10 -0
  9. reflex/components/base/fragment.pyi +2 -0
  10. reflex/components/base/head.pyi +4 -0
  11. reflex/components/base/link.pyi +4 -0
  12. reflex/components/base/meta.pyi +8 -0
  13. reflex/components/base/script.pyi +2 -0
  14. reflex/components/chakra/base.pyi +7 -0
  15. reflex/components/chakra/datadisplay/badge.pyi +2 -0
  16. reflex/components/chakra/datadisplay/code.pyi +4 -0
  17. reflex/components/chakra/datadisplay/divider.pyi +2 -0
  18. reflex/components/chakra/datadisplay/keyboard_key.pyi +2 -0
  19. reflex/components/chakra/datadisplay/list.pyi +8 -0
  20. reflex/components/chakra/datadisplay/stat.pyi +12 -0
  21. reflex/components/chakra/datadisplay/table.pyi +18 -0
  22. reflex/components/chakra/datadisplay/tag.pyi +9 -0
  23. reflex/components/chakra/disclosure/accordion.pyi +10 -0
  24. reflex/components/chakra/disclosure/tabs.py +8 -0
  25. reflex/components/chakra/disclosure/tabs.pyi +10 -0
  26. reflex/components/chakra/disclosure/transition.pyi +12 -0
  27. reflex/components/chakra/disclosure/visuallyhidden.pyi +2 -0
  28. reflex/components/chakra/feedback/alert.pyi +8 -0
  29. reflex/components/chakra/feedback/circularprogress.pyi +4 -0
  30. reflex/components/chakra/feedback/progress.pyi +2 -0
  31. reflex/components/chakra/feedback/skeleton.pyi +6 -0
  32. reflex/components/chakra/feedback/spinner.pyi +2 -0
  33. reflex/components/chakra/forms/button.pyi +4 -0
  34. reflex/components/chakra/forms/checkbox.pyi +4 -0
  35. reflex/components/chakra/forms/colormodeswitch.pyi +7 -0
  36. reflex/components/chakra/forms/date_picker.pyi +2 -0
  37. reflex/components/chakra/forms/date_time_picker.pyi +2 -0
  38. reflex/components/chakra/forms/editable.pyi +8 -0
  39. reflex/components/chakra/forms/email.pyi +2 -0
  40. reflex/components/chakra/forms/form.pyi +10 -0
  41. reflex/components/chakra/forms/iconbutton.py +1 -0
  42. reflex/components/chakra/forms/iconbutton.pyi +2 -0
  43. reflex/components/chakra/forms/input.pyi +12 -0
  44. reflex/components/chakra/forms/numberinput.pyi +10 -0
  45. reflex/components/chakra/forms/password.pyi +2 -0
  46. reflex/components/chakra/forms/pininput.pyi +4 -0
  47. reflex/components/chakra/forms/radio.pyi +4 -0
  48. reflex/components/chakra/forms/rangeslider.pyi +8 -0
  49. reflex/components/chakra/forms/select.pyi +4 -0
  50. reflex/components/chakra/forms/slider.pyi +10 -0
  51. reflex/components/chakra/forms/switch.pyi +2 -0
  52. reflex/components/chakra/forms/textarea.pyi +2 -0
  53. reflex/components/chakra/forms/time_picker.pyi +2 -0
  54. reflex/components/chakra/layout/aspect_ratio.pyi +2 -0
  55. reflex/components/chakra/layout/box.pyi +2 -0
  56. reflex/components/chakra/layout/card.pyi +7 -0
  57. reflex/components/chakra/layout/center.pyi +6 -0
  58. reflex/components/chakra/layout/container.pyi +2 -0
  59. reflex/components/chakra/layout/flex.pyi +2 -0
  60. reflex/components/chakra/layout/grid.pyi +6 -0
  61. reflex/components/chakra/layout/html.pyi +2 -0
  62. reflex/components/chakra/layout/spacer.pyi +2 -0
  63. reflex/components/chakra/layout/stack.pyi +6 -0
  64. reflex/components/chakra/layout/wrap.pyi +4 -0
  65. reflex/components/chakra/media/avatar.pyi +6 -0
  66. reflex/components/chakra/media/icon.pyi +4 -0
  67. reflex/components/chakra/media/image.pyi +2 -0
  68. reflex/components/chakra/navigation/breadcrumb.pyi +8 -0
  69. reflex/components/chakra/navigation/link.pyi +2 -0
  70. reflex/components/chakra/navigation/linkoverlay.pyi +4 -0
  71. reflex/components/chakra/navigation/stepper.pyi +18 -0
  72. reflex/components/chakra/overlay/alertdialog.pyi +14 -0
  73. reflex/components/chakra/overlay/drawer.pyi +14 -0
  74. reflex/components/chakra/overlay/menu.pyi +16 -0
  75. reflex/components/chakra/overlay/modal.pyi +14 -0
  76. reflex/components/chakra/overlay/popover.pyi +18 -0
  77. reflex/components/chakra/overlay/tooltip.pyi +2 -0
  78. reflex/components/chakra/typography/heading.pyi +2 -0
  79. reflex/components/chakra/typography/highlight.pyi +2 -0
  80. reflex/components/chakra/typography/span.pyi +2 -0
  81. reflex/components/chakra/typography/text.pyi +2 -0
  82. reflex/components/component.py +41 -3
  83. reflex/components/core/__init__.py +2 -0
  84. reflex/components/core/banner.pyi +3 -0
  85. reflex/components/core/client_side_routing.pyi +4 -0
  86. reflex/components/core/colors.py +21 -0
  87. reflex/components/core/cond.py +11 -2
  88. reflex/components/core/debounce.pyi +1 -0
  89. reflex/components/core/layout/__init__.py +1 -0
  90. reflex/components/core/match.py +44 -18
  91. reflex/components/core/upload.py +8 -2
  92. reflex/components/core/upload.pyi +7 -1
  93. reflex/components/datadisplay/dataeditor.pyi +2 -0
  94. reflex/components/el/element.pyi +2 -0
  95. reflex/components/el/elements/base.pyi +2 -0
  96. reflex/components/el/elements/forms.py +3 -0
  97. reflex/components/el/elements/forms.pyi +32 -0
  98. reflex/components/el/elements/inline.pyi +56 -0
  99. reflex/components/el/elements/media.pyi +28 -0
  100. reflex/components/el/elements/metadata.pyi +10 -0
  101. reflex/components/el/elements/other.pyi +14 -0
  102. reflex/components/el/elements/scripts.pyi +6 -0
  103. reflex/components/el/elements/sectioning.pyi +30 -0
  104. reflex/components/el/elements/tables.pyi +20 -0
  105. reflex/components/el/elements/typography.pyi +30 -0
  106. reflex/components/gridjs/datatable.pyi +4 -0
  107. reflex/components/lucide/__init__.py +5 -0
  108. reflex/components/lucide/icon.py +1484 -0
  109. reflex/components/lucide/icon.pyi +1594 -0
  110. reflex/components/markdown/markdown.pyi +2 -0
  111. reflex/components/moment/moment.pyi +2 -0
  112. reflex/components/next/base.pyi +2 -0
  113. reflex/components/next/image.pyi +2 -0
  114. reflex/components/next/link.pyi +2 -0
  115. reflex/components/next/video.pyi +2 -0
  116. reflex/components/plotly/plotly.pyi +4 -0
  117. reflex/components/radix/primitives/__init__.py +10 -0
  118. reflex/components/radix/primitives/accordion.py +51 -32
  119. reflex/components/radix/primitives/accordion.pyi +16 -3
  120. reflex/components/radix/primitives/base.pyi +4 -0
  121. reflex/components/radix/primitives/drawer.py +240 -0
  122. reflex/components/radix/primitives/drawer.pyi +814 -0
  123. reflex/components/radix/primitives/form.py +40 -7
  124. reflex/components/radix/primitives/form.pyi +32 -10
  125. reflex/components/radix/primitives/progress.py +2 -2
  126. reflex/components/radix/primitives/progress.pyi +6 -0
  127. reflex/components/radix/primitives/slider.pyi +10 -0
  128. reflex/components/radix/themes/base.py +46 -12
  129. reflex/components/radix/themes/base.pyi +23 -9
  130. reflex/components/radix/themes/components/__init__.py +4 -2
  131. reflex/components/radix/themes/components/alertdialog.py +13 -12
  132. reflex/components/radix/themes/components/alertdialog.pyi +23 -351
  133. reflex/components/radix/themes/components/aspectratio.py +2 -5
  134. reflex/components/radix/themes/components/aspectratio.pyi +4 -51
  135. reflex/components/radix/themes/components/avatar.py +3 -4
  136. reflex/components/radix/themes/components/avatar.pyi +4 -57
  137. reflex/components/radix/themes/components/badge.py +3 -4
  138. reflex/components/radix/themes/components/badge.pyi +4 -56
  139. reflex/components/radix/themes/components/button.py +2 -3
  140. reflex/components/radix/themes/components/button.pyi +3 -51
  141. reflex/components/radix/themes/components/callout.py +9 -12
  142. reflex/components/radix/themes/components/callout.pyi +24 -217
  143. reflex/components/radix/themes/components/card.py +1 -2
  144. reflex/components/radix/themes/components/card.pyi +4 -51
  145. reflex/components/radix/themes/components/checkbox.py +11 -5
  146. reflex/components/radix/themes/components/checkbox.pyi +13 -112
  147. reflex/components/radix/themes/components/contextmenu.py +21 -21
  148. reflex/components/radix/themes/components/contextmenu.pyi +26 -401
  149. reflex/components/radix/themes/components/dialog.py +13 -16
  150. reflex/components/radix/themes/components/dialog.pyi +20 -303
  151. reflex/components/radix/themes/components/dropdownmenu.py +196 -32
  152. reflex/components/radix/themes/components/dropdownmenu.pyi +147 -389
  153. reflex/components/radix/themes/components/hovercard.py +5 -5
  154. reflex/components/radix/themes/components/hovercard.pyi +11 -151
  155. reflex/components/radix/themes/components/iconbutton.py +56 -4
  156. reflex/components/radix/themes/components/iconbutton.pyi +25 -71
  157. reflex/components/radix/themes/components/icons.pyi +4 -0
  158. reflex/components/radix/themes/components/inset.py +1 -2
  159. reflex/components/radix/themes/components/inset.pyi +4 -51
  160. reflex/components/radix/themes/components/popover.py +12 -12
  161. reflex/components/radix/themes/components/popover.pyi +14 -201
  162. reflex/components/radix/themes/components/radiogroup.py +47 -20
  163. reflex/components/radix/themes/components/radiogroup.pyi +26 -171
  164. reflex/components/radix/themes/components/scrollarea.py +2 -3
  165. reflex/components/radix/themes/components/scrollarea.pyi +4 -51
  166. reflex/components/radix/themes/components/select.py +28 -25
  167. reflex/components/radix/themes/components/select.pyi +43 -419
  168. reflex/components/radix/themes/components/separator.py +4 -5
  169. reflex/components/radix/themes/components/separator.pyi +5 -52
  170. reflex/components/radix/themes/components/slider.py +8 -5
  171. reflex/components/radix/themes/components/slider.pyi +9 -60
  172. reflex/components/radix/themes/components/switch.py +6 -4
  173. reflex/components/radix/themes/components/switch.pyi +5 -53
  174. reflex/components/radix/themes/components/table.py +14 -15
  175. reflex/components/radix/themes/components/table.pyi +22 -351
  176. reflex/components/radix/themes/components/tabs.py +9 -6
  177. reflex/components/radix/themes/components/tabs.pyi +18 -205
  178. reflex/components/radix/themes/components/textarea.py +2 -3
  179. reflex/components/radix/themes/components/textarea.pyi +10 -53
  180. reflex/components/radix/themes/components/textfield.py +105 -4
  181. reflex/components/radix/themes/components/textfield.pyi +200 -108
  182. reflex/components/radix/themes/components/tooltip.py +102 -2
  183. reflex/components/radix/themes/components/tooltip.pyi +66 -110
  184. reflex/components/radix/themes/layout/__init__.py +7 -0
  185. reflex/components/radix/themes/layout/base.pyi +2 -0
  186. reflex/components/radix/themes/layout/box.py +2 -2
  187. reflex/components/radix/themes/layout/box.pyi +4 -104
  188. reflex/components/radix/themes/layout/center.py +19 -0
  189. reflex/components/radix/themes/layout/center.pyi +261 -0
  190. reflex/components/radix/themes/layout/container.py +2 -2
  191. reflex/components/radix/themes/layout/container.pyi +4 -104
  192. reflex/components/radix/themes/layout/flex.py +2 -2
  193. reflex/components/radix/themes/layout/flex.pyi +4 -105
  194. reflex/components/radix/themes/layout/grid.pyi +2 -0
  195. reflex/components/radix/themes/layout/section.py +2 -2
  196. reflex/components/radix/themes/layout/section.pyi +4 -104
  197. reflex/components/radix/themes/layout/spacer.py +19 -0
  198. reflex/components/radix/themes/layout/spacer.pyi +261 -0
  199. reflex/components/radix/themes/layout/stack.py +60 -0
  200. reflex/components/radix/themes/layout/stack.pyi +537 -0
  201. reflex/components/radix/themes/typography/blockquote.py +2 -3
  202. reflex/components/radix/themes/typography/blockquote.pyi +4 -51
  203. reflex/components/radix/themes/typography/code.py +2 -3
  204. reflex/components/radix/themes/typography/code.pyi +4 -56
  205. reflex/components/radix/themes/typography/em.py +1 -2
  206. reflex/components/radix/themes/typography/em.pyi +4 -51
  207. reflex/components/radix/themes/typography/heading.py +2 -3
  208. reflex/components/radix/themes/typography/heading.pyi +4 -51
  209. reflex/components/radix/themes/typography/kbd.py +1 -2
  210. reflex/components/radix/themes/typography/kbd.pyi +4 -51
  211. reflex/components/radix/themes/typography/link.py +34 -3
  212. reflex/components/radix/themes/typography/link.pyi +41 -86
  213. reflex/components/radix/themes/typography/quote.py +1 -2
  214. reflex/components/radix/themes/typography/quote.pyi +4 -51
  215. reflex/components/radix/themes/typography/strong.py +1 -2
  216. reflex/components/radix/themes/typography/strong.pyi +4 -51
  217. reflex/components/radix/themes/typography/text.py +2 -3
  218. reflex/components/radix/themes/typography/text.pyi +4 -51
  219. reflex/components/radix/themes/typography.py +10 -11
  220. reflex/components/react_player/audio.pyi +2 -0
  221. reflex/components/react_player/react_player.pyi +2 -0
  222. reflex/components/react_player/video.pyi +2 -0
  223. reflex/components/recharts/cartesian.pyi +38 -0
  224. reflex/components/recharts/charts.pyi +22 -0
  225. reflex/components/recharts/general.pyi +10 -0
  226. reflex/components/recharts/polar.pyi +12 -0
  227. reflex/components/recharts/recharts.pyi +4 -0
  228. reflex/components/suneditor/editor.pyi +2 -0
  229. reflex/components/tags/tag.py +1 -1
  230. reflex/constants/base.py +5 -1
  231. reflex/constants/colors.py +80 -0
  232. reflex/constants/event.py +10 -1
  233. reflex/page.py +1 -1
  234. reflex/reflex.py +4 -0
  235. reflex/style.py +8 -3
  236. reflex/testing.py +21 -10
  237. reflex/utils/format.py +13 -9
  238. reflex/utils/prerequisites.py +41 -3
  239. reflex/utils/serializers.py +14 -0
  240. reflex/utils/telemetry.py +8 -2
  241. reflex/utils/types.py +36 -2
  242. reflex/vars.py +53 -18
  243. {reflex-0.3.9a3.dist-info → reflex-0.3.10.dist-info}/METADATA +1 -2
  244. {reflex-0.3.9a3.dist-info → reflex-0.3.10.dist-info}/RECORD +247 -233
  245. {reflex-0.3.9a3.dist-info → reflex-0.3.10.dist-info}/WHEEL +1 -1
  246. {reflex-0.3.9a3.dist-info → reflex-0.3.10.dist-info}/LICENSE +0 -0
  247. {reflex-0.3.9a3.dist-info → reflex-0.3.10.dist-info}/entry_points.txt +0 -0
@@ -32,6 +32,7 @@ class Editable(ChakraComponent):
32
32
  id: Optional[Any] = None,
33
33
  class_name: Optional[Any] = None,
34
34
  autofocus: Optional[bool] = None,
35
+ _rename_props: Optional[Dict[str, str]] = None,
35
36
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
36
37
  on_blur: Optional[
37
38
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -109,6 +110,7 @@ class Editable(ChakraComponent):
109
110
  id: The id for the component.
110
111
  class_name: The class name for the component.
111
112
  autofocus: Whether the component should take the focus once the page is loaded
113
+ _rename_props: props to change the name of
112
114
  custom_attrs: custom attribute
113
115
  **props: The props of the component.
114
116
 
@@ -131,6 +133,7 @@ class EditableInput(ChakraComponent):
131
133
  id: Optional[Any] = None,
132
134
  class_name: Optional[Any] = None,
133
135
  autofocus: Optional[bool] = None,
136
+ _rename_props: Optional[Dict[str, str]] = None,
134
137
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
135
138
  on_blur: Optional[
136
139
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -188,6 +191,7 @@ class EditableInput(ChakraComponent):
188
191
  id: The id for the component.
189
192
  class_name: The class name for the component.
190
193
  autofocus: Whether the component should take the focus once the page is loaded
194
+ _rename_props: props to change the name of
191
195
  custom_attrs: custom attribute
192
196
  **props: The props of the component.
193
197
 
@@ -210,6 +214,7 @@ class EditableTextarea(ChakraComponent):
210
214
  id: Optional[Any] = None,
211
215
  class_name: Optional[Any] = None,
212
216
  autofocus: Optional[bool] = None,
217
+ _rename_props: Optional[Dict[str, str]] = None,
213
218
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
214
219
  on_blur: Optional[
215
220
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -267,6 +272,7 @@ class EditableTextarea(ChakraComponent):
267
272
  id: The id for the component.
268
273
  class_name: The class name for the component.
269
274
  autofocus: Whether the component should take the focus once the page is loaded
275
+ _rename_props: props to change the name of
270
276
  custom_attrs: custom attribute
271
277
  **props: The props of the component.
272
278
 
@@ -289,6 +295,7 @@ class EditablePreview(ChakraComponent):
289
295
  id: Optional[Any] = None,
290
296
  class_name: Optional[Any] = None,
291
297
  autofocus: Optional[bool] = None,
298
+ _rename_props: Optional[Dict[str, str]] = None,
292
299
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
293
300
  on_blur: Optional[
294
301
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -346,6 +353,7 @@ class EditablePreview(ChakraComponent):
346
353
  id: The id for the component.
347
354
  class_name: The class name for the component.
348
355
  autofocus: Whether the component should take the focus once the page is loaded
356
+ _rename_props: props to change the name of
349
357
  custom_attrs: custom attribute
350
358
  **props: The props of the component.
351
359
 
@@ -41,6 +41,7 @@ class Email(Input):
41
41
  id: Optional[Any] = None,
42
42
  class_name: Optional[Any] = None,
43
43
  autofocus: Optional[bool] = None,
44
+ _rename_props: Optional[Dict[str, str]] = None,
44
45
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
45
46
  on_blur: Optional[
46
47
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -120,6 +121,7 @@ class Email(Input):
120
121
  id: The id for the component.
121
122
  class_name: The class name for the component.
122
123
  autofocus: Whether the component should take the focus once the page is loaded
124
+ _rename_props: props to change the name of
123
125
  custom_attrs: custom attribute
124
126
  **props: The properties of the component.
125
127
 
@@ -38,6 +38,7 @@ class Form(ChakraComponent):
38
38
  id: Optional[Any] = None,
39
39
  class_name: Optional[Any] = None,
40
40
  autofocus: Optional[bool] = None,
41
+ _rename_props: Optional[Dict[str, str]] = None,
41
42
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
42
43
  on_blur: Optional[
43
44
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -101,6 +102,7 @@ class Form(ChakraComponent):
101
102
  id: The id for the component.
102
103
  class_name: The class name for the component.
103
104
  autofocus: Whether the component should take the focus once the page is loaded
105
+ _rename_props: props to change the name of
104
106
  custom_attrs: custom attribute
105
107
  **props: The properties of the form.
106
108
 
@@ -129,6 +131,7 @@ class FormControl(ChakraComponent):
129
131
  id: Optional[Any] = None,
130
132
  class_name: Optional[Any] = None,
131
133
  autofocus: Optional[bool] = None,
134
+ _rename_props: Optional[Dict[str, str]] = None,
132
135
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
133
136
  on_blur: Optional[
134
137
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -194,6 +197,7 @@ class FormControl(ChakraComponent):
194
197
  id: The id for the component.
195
198
  class_name: The class name for the component.
196
199
  autofocus: Whether the component should take the focus once the page is loaded
200
+ _rename_props: props to change the name of
197
201
  custom_attrs: custom attribute
198
202
  **props: The properties of the form control.
199
203
 
@@ -216,6 +220,7 @@ class FormHelperText(ChakraComponent):
216
220
  id: Optional[Any] = None,
217
221
  class_name: Optional[Any] = None,
218
222
  autofocus: Optional[bool] = None,
223
+ _rename_props: Optional[Dict[str, str]] = None,
219
224
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
220
225
  on_blur: Optional[
221
226
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -273,6 +278,7 @@ class FormHelperText(ChakraComponent):
273
278
  id: The id for the component.
274
279
  class_name: The class name for the component.
275
280
  autofocus: Whether the component should take the focus once the page is loaded
281
+ _rename_props: props to change the name of
276
282
  custom_attrs: custom attribute
277
283
  **props: The props of the component.
278
284
 
@@ -296,6 +302,7 @@ class FormLabel(ChakraComponent):
296
302
  id: Optional[Any] = None,
297
303
  class_name: Optional[Any] = None,
298
304
  autofocus: Optional[bool] = None,
305
+ _rename_props: Optional[Dict[str, str]] = None,
299
306
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
300
307
  on_blur: Optional[
301
308
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -354,6 +361,7 @@ class FormLabel(ChakraComponent):
354
361
  id: The id for the component.
355
362
  class_name: The class name for the component.
356
363
  autofocus: Whether the component should take the focus once the page is loaded
364
+ _rename_props: props to change the name of
357
365
  custom_attrs: custom attribute
358
366
  **props: The props of the component.
359
367
 
@@ -376,6 +384,7 @@ class FormErrorMessage(ChakraComponent):
376
384
  id: Optional[Any] = None,
377
385
  class_name: Optional[Any] = None,
378
386
  autofocus: Optional[bool] = None,
387
+ _rename_props: Optional[Dict[str, str]] = None,
379
388
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
380
389
  on_blur: Optional[
381
390
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -433,6 +442,7 @@ class FormErrorMessage(ChakraComponent):
433
442
  id: The id for the component.
434
443
  class_name: The class name for the component.
435
444
  autofocus: Whether the component should take the focus once the page is loaded
445
+ _rename_props: props to change the name of
436
446
  custom_attrs: custom attribute
437
447
  **props: The props of the component.
438
448
 
@@ -11,6 +11,7 @@ class IconButton(Text):
11
11
  """A button with an icon."""
12
12
 
13
13
  tag = "IconButton"
14
+ library = "@chakra-ui/button@2.1.0"
14
15
 
15
16
  # The type of button.
16
17
  type: Var[str]
@@ -33,6 +33,7 @@ class IconButton(Text):
33
33
  id: Optional[Any] = None,
34
34
  class_name: Optional[Any] = None,
35
35
  autofocus: Optional[bool] = None,
36
+ _rename_props: Optional[Dict[str, str]] = None,
36
37
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
37
38
  on_blur: Optional[
38
39
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -100,6 +101,7 @@ class IconButton(Text):
100
101
  id: The id for the component.
101
102
  class_name: The class name for the component.
102
103
  autofocus: Whether the component should take the focus once the page is loaded
104
+ _rename_props: props to change the name of
103
105
  custom_attrs: custom attribute
104
106
  **props: The props of the component.
105
107
 
@@ -105,6 +105,7 @@ class Input(ChakraComponent):
105
105
  id: Optional[Any] = None,
106
106
  class_name: Optional[Any] = None,
107
107
  autofocus: Optional[bool] = None,
108
+ _rename_props: Optional[Dict[str, str]] = None,
108
109
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
109
110
  on_blur: Optional[
110
111
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -184,6 +185,7 @@ class Input(ChakraComponent):
184
185
  id: The id for the component.
185
186
  class_name: The class name for the component.
186
187
  autofocus: Whether the component should take the focus once the page is loaded
188
+ _rename_props: props to change the name of
187
189
  custom_attrs: custom attribute
188
190
  **props: The properties of the component.
189
191
 
@@ -203,6 +205,7 @@ class InputGroup(ChakraComponent):
203
205
  id: Optional[Any] = None,
204
206
  class_name: Optional[Any] = None,
205
207
  autofocus: Optional[bool] = None,
208
+ _rename_props: Optional[Dict[str, str]] = None,
206
209
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
207
210
  on_blur: Optional[
208
211
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -260,6 +263,7 @@ class InputGroup(ChakraComponent):
260
263
  id: The id for the component.
261
264
  class_name: The class name for the component.
262
265
  autofocus: Whether the component should take the focus once the page is loaded
266
+ _rename_props: props to change the name of
263
267
  custom_attrs: custom attribute
264
268
  **props: The props of the component.
265
269
 
@@ -282,6 +286,7 @@ class InputLeftAddon(ChakraComponent):
282
286
  id: Optional[Any] = None,
283
287
  class_name: Optional[Any] = None,
284
288
  autofocus: Optional[bool] = None,
289
+ _rename_props: Optional[Dict[str, str]] = None,
285
290
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
286
291
  on_blur: Optional[
287
292
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -339,6 +344,7 @@ class InputLeftAddon(ChakraComponent):
339
344
  id: The id for the component.
340
345
  class_name: The class name for the component.
341
346
  autofocus: Whether the component should take the focus once the page is loaded
347
+ _rename_props: props to change the name of
342
348
  custom_attrs: custom attribute
343
349
  **props: The props of the component.
344
350
 
@@ -361,6 +367,7 @@ class InputRightAddon(ChakraComponent):
361
367
  id: Optional[Any] = None,
362
368
  class_name: Optional[Any] = None,
363
369
  autofocus: Optional[bool] = None,
370
+ _rename_props: Optional[Dict[str, str]] = None,
364
371
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
365
372
  on_blur: Optional[
366
373
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -418,6 +425,7 @@ class InputRightAddon(ChakraComponent):
418
425
  id: The id for the component.
419
426
  class_name: The class name for the component.
420
427
  autofocus: Whether the component should take the focus once the page is loaded
428
+ _rename_props: props to change the name of
421
429
  custom_attrs: custom attribute
422
430
  **props: The props of the component.
423
431
 
@@ -440,6 +448,7 @@ class InputLeftElement(ChakraComponent):
440
448
  id: Optional[Any] = None,
441
449
  class_name: Optional[Any] = None,
442
450
  autofocus: Optional[bool] = None,
451
+ _rename_props: Optional[Dict[str, str]] = None,
443
452
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
444
453
  on_blur: Optional[
445
454
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -497,6 +506,7 @@ class InputLeftElement(ChakraComponent):
497
506
  id: The id for the component.
498
507
  class_name: The class name for the component.
499
508
  autofocus: Whether the component should take the focus once the page is loaded
509
+ _rename_props: props to change the name of
500
510
  custom_attrs: custom attribute
501
511
  **props: The props of the component.
502
512
 
@@ -519,6 +529,7 @@ class InputRightElement(ChakraComponent):
519
529
  id: Optional[Any] = None,
520
530
  class_name: Optional[Any] = None,
521
531
  autofocus: Optional[bool] = None,
532
+ _rename_props: Optional[Dict[str, str]] = None,
522
533
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
523
534
  on_blur: Optional[
524
535
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -576,6 +587,7 @@ class InputRightElement(ChakraComponent):
576
587
  id: The id for the component.
577
588
  class_name: The class name for the component.
578
589
  autofocus: Whether the component should take the focus once the page is loaded
590
+ _rename_props: props to change the name of
579
591
  custom_attrs: custom attribute
580
592
  **props: The props of the component.
581
593
 
@@ -55,6 +55,7 @@ class NumberInput(ChakraComponent):
55
55
  id: Optional[Any] = None,
56
56
  class_name: Optional[Any] = None,
57
57
  autofocus: Optional[bool] = None,
58
+ _rename_props: Optional[Dict[str, str]] = None,
58
59
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
59
60
  on_blur: Optional[
60
61
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -135,6 +136,7 @@ class NumberInput(ChakraComponent):
135
136
  id: The id for the component.
136
137
  class_name: The class name for the component.
137
138
  autofocus: Whether the component should take the focus once the page is loaded
139
+ _rename_props: props to change the name of
138
140
  custom_attrs: custom attribute
139
141
  **props: The props of the component.
140
142
 
@@ -154,6 +156,7 @@ class NumberInputField(ChakraComponent):
154
156
  id: Optional[Any] = None,
155
157
  class_name: Optional[Any] = None,
156
158
  autofocus: Optional[bool] = None,
159
+ _rename_props: Optional[Dict[str, str]] = None,
157
160
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
158
161
  on_blur: Optional[
159
162
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -211,6 +214,7 @@ class NumberInputField(ChakraComponent):
211
214
  id: The id for the component.
212
215
  class_name: The class name for the component.
213
216
  autofocus: Whether the component should take the focus once the page is loaded
217
+ _rename_props: props to change the name of
214
218
  custom_attrs: custom attribute
215
219
  **props: The props of the component.
216
220
 
@@ -233,6 +237,7 @@ class NumberInputStepper(ChakraComponent):
233
237
  id: Optional[Any] = None,
234
238
  class_name: Optional[Any] = None,
235
239
  autofocus: Optional[bool] = None,
240
+ _rename_props: Optional[Dict[str, str]] = None,
236
241
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
237
242
  on_blur: Optional[
238
243
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -290,6 +295,7 @@ class NumberInputStepper(ChakraComponent):
290
295
  id: The id for the component.
291
296
  class_name: The class name for the component.
292
297
  autofocus: Whether the component should take the focus once the page is loaded
298
+ _rename_props: props to change the name of
293
299
  custom_attrs: custom attribute
294
300
  **props: The props of the component.
295
301
 
@@ -312,6 +318,7 @@ class NumberIncrementStepper(ChakraComponent):
312
318
  id: Optional[Any] = None,
313
319
  class_name: Optional[Any] = None,
314
320
  autofocus: Optional[bool] = None,
321
+ _rename_props: Optional[Dict[str, str]] = None,
315
322
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
316
323
  on_blur: Optional[
317
324
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -369,6 +376,7 @@ class NumberIncrementStepper(ChakraComponent):
369
376
  id: The id for the component.
370
377
  class_name: The class name for the component.
371
378
  autofocus: Whether the component should take the focus once the page is loaded
379
+ _rename_props: props to change the name of
372
380
  custom_attrs: custom attribute
373
381
  **props: The props of the component.
374
382
 
@@ -391,6 +399,7 @@ class NumberDecrementStepper(ChakraComponent):
391
399
  id: Optional[Any] = None,
392
400
  class_name: Optional[Any] = None,
393
401
  autofocus: Optional[bool] = None,
402
+ _rename_props: Optional[Dict[str, str]] = None,
394
403
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
395
404
  on_blur: Optional[
396
405
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -448,6 +457,7 @@ class NumberDecrementStepper(ChakraComponent):
448
457
  id: The id for the component.
449
458
  class_name: The class name for the component.
450
459
  autofocus: Whether the component should take the focus once the page is loaded
460
+ _rename_props: props to change the name of
451
461
  custom_attrs: custom attribute
452
462
  **props: The props of the component.
453
463
 
@@ -41,6 +41,7 @@ class Password(Input):
41
41
  id: Optional[Any] = None,
42
42
  class_name: Optional[Any] = None,
43
43
  autofocus: Optional[bool] = None,
44
+ _rename_props: Optional[Dict[str, str]] = None,
44
45
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
45
46
  on_blur: Optional[
46
47
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -120,6 +121,7 @@ class Password(Input):
120
121
  id: The id for the component.
121
122
  class_name: The class name for the component.
122
123
  autofocus: Whether the component should take the focus once the page is loaded
124
+ _rename_props: props to change the name of
123
125
  custom_attrs: custom attribute
124
126
  **props: The properties of the component.
125
127
 
@@ -49,6 +49,7 @@ class PinInput(ChakraComponent):
49
49
  id: Optional[Any] = None,
50
50
  class_name: Optional[Any] = None,
51
51
  autofocus: Optional[bool] = None,
52
+ _rename_props: Optional[Dict[str, str]] = None,
52
53
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
53
54
  on_blur: Optional[
54
55
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -130,6 +131,7 @@ class PinInput(ChakraComponent):
130
131
  id: The id for the component.
131
132
  class_name: The class name for the component.
132
133
  autofocus: Whether the component should take the focus once the page is loaded
134
+ _rename_props: props to change the name of
133
135
  custom_attrs: custom attribute
134
136
  **props: The props of the component.
135
137
 
@@ -154,6 +156,7 @@ class PinInputField(ChakraComponent):
154
156
  id: Optional[Any] = None,
155
157
  class_name: Optional[Any] = None,
156
158
  autofocus: Optional[bool] = None,
159
+ _rename_props: Optional[Dict[str, str]] = None,
157
160
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
158
161
  on_blur: Optional[
159
162
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -213,6 +216,7 @@ class PinInputField(ChakraComponent):
213
216
  id: The id for the component.
214
217
  class_name: The class name for the component.
215
218
  autofocus: Whether the component should take the focus once the page is loaded
219
+ _rename_props: props to change the name of
216
220
  custom_attrs: custom attribute
217
221
  **props: The props of the component.
218
222
 
@@ -31,6 +31,7 @@ class RadioGroup(ChakraComponent):
31
31
  id: Optional[Any] = None,
32
32
  class_name: Optional[Any] = None,
33
33
  autofocus: Optional[bool] = None,
34
+ _rename_props: Optional[Dict[str, str]] = None,
34
35
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
35
36
  on_blur: Optional[
36
37
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -94,6 +95,7 @@ class RadioGroup(ChakraComponent):
94
95
  id: The id for the component.
95
96
  class_name: The class name for the component.
96
97
  autofocus: Whether the component should take the focus once the page is loaded
98
+ _rename_props: props to change the name of
97
99
  custom_attrs: custom attribute
98
100
  **props: The props of the component.
99
101
 
@@ -124,6 +126,7 @@ class Radio(Text):
124
126
  id: Optional[Any] = None,
125
127
  class_name: Optional[Any] = None,
126
128
  autofocus: Optional[bool] = None,
129
+ _rename_props: Optional[Dict[str, str]] = None,
127
130
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
128
131
  on_blur: Optional[
129
132
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -194,6 +197,7 @@ class Radio(Text):
194
197
  id: The id for the component.
195
198
  class_name: The class name for the component.
196
199
  autofocus: Whether the component should take the focus once the page is loaded
200
+ _rename_props: props to change the name of
197
201
  custom_attrs: custom attribute
198
202
  **props: The props of the component.
199
203
 
@@ -40,6 +40,7 @@ class RangeSlider(ChakraComponent):
40
40
  id: Optional[Any] = None,
41
41
  class_name: Optional[Any] = None,
42
42
  autofocus: Optional[bool] = None,
43
+ _rename_props: Optional[Dict[str, str]] = None,
43
44
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
44
45
  on_blur: Optional[
45
46
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -119,6 +120,7 @@ class RangeSlider(ChakraComponent):
119
120
  id: The id for the component.
120
121
  class_name: The class name for the component.
121
122
  autofocus: Whether the component should take the focus once the page is loaded
123
+ _rename_props: props to change the name of
122
124
  custom_attrs: custom attribute
123
125
  **props: The properties of the component.
124
126
 
@@ -138,6 +140,7 @@ class RangeSliderTrack(ChakraComponent):
138
140
  id: Optional[Any] = None,
139
141
  class_name: Optional[Any] = None,
140
142
  autofocus: Optional[bool] = None,
143
+ _rename_props: Optional[Dict[str, str]] = None,
141
144
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
142
145
  on_blur: Optional[
143
146
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -195,6 +198,7 @@ class RangeSliderTrack(ChakraComponent):
195
198
  id: The id for the component.
196
199
  class_name: The class name for the component.
197
200
  autofocus: Whether the component should take the focus once the page is loaded
201
+ _rename_props: props to change the name of
198
202
  custom_attrs: custom attribute
199
203
  **props: The props of the component.
200
204
 
@@ -217,6 +221,7 @@ class RangeSliderFilledTrack(ChakraComponent):
217
221
  id: Optional[Any] = None,
218
222
  class_name: Optional[Any] = None,
219
223
  autofocus: Optional[bool] = None,
224
+ _rename_props: Optional[Dict[str, str]] = None,
220
225
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
221
226
  on_blur: Optional[
222
227
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -274,6 +279,7 @@ class RangeSliderFilledTrack(ChakraComponent):
274
279
  id: The id for the component.
275
280
  class_name: The class name for the component.
276
281
  autofocus: Whether the component should take the focus once the page is loaded
282
+ _rename_props: props to change the name of
277
283
  custom_attrs: custom attribute
278
284
  **props: The props of the component.
279
285
 
@@ -298,6 +304,7 @@ class RangeSliderThumb(ChakraComponent):
298
304
  id: Optional[Any] = None,
299
305
  class_name: Optional[Any] = None,
300
306
  autofocus: Optional[bool] = None,
307
+ _rename_props: Optional[Dict[str, str]] = None,
301
308
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
302
309
  on_blur: Optional[
303
310
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -356,6 +363,7 @@ class RangeSliderThumb(ChakraComponent):
356
363
  id: The id for the component.
357
364
  class_name: The class name for the component.
358
365
  autofocus: Whether the component should take the focus once the page is loaded
366
+ _rename_props: props to change the name of
359
367
  custom_attrs: custom attribute
360
368
  **props: The props of the component.
361
369
 
@@ -44,6 +44,7 @@ class Select(ChakraComponent):
44
44
  id: Optional[Any] = None,
45
45
  class_name: Optional[Any] = None,
46
46
  autofocus: Optional[bool] = None,
47
+ _rename_props: Optional[Dict[str, str]] = None,
47
48
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
48
49
  on_blur: Optional[
49
50
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -118,6 +119,7 @@ class Select(ChakraComponent):
118
119
  id: The id for the component.
119
120
  class_name: The class name for the component.
120
121
  autofocus: Whether the component should take the focus once the page is loaded
122
+ _rename_props: props to change the name of
121
123
  custom_attrs: custom attribute
122
124
  **props: The props of the component.
123
125
 
@@ -140,6 +142,7 @@ class Option(Text):
140
142
  id: Optional[Any] = None,
141
143
  class_name: Optional[Any] = None,
142
144
  autofocus: Optional[bool] = None,
145
+ _rename_props: Optional[Dict[str, str]] = None,
143
146
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
144
147
  on_blur: Optional[
145
148
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -201,6 +204,7 @@ class Option(Text):
201
204
  id: The id for the component.
202
205
  class_name: The class name for the component.
203
206
  autofocus: Whether the component should take the focus once the page is loaded
207
+ _rename_props: props to change the name of
204
208
  custom_attrs: custom attribute
205
209
  **props: The props of the component.
206
210
 
@@ -52,6 +52,7 @@ class Slider(ChakraComponent):
52
52
  id: Optional[Any] = None,
53
53
  class_name: Optional[Any] = None,
54
54
  autofocus: Optional[bool] = None,
55
+ _rename_props: Optional[Dict[str, str]] = None,
55
56
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
56
57
  on_blur: Optional[
57
58
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -138,6 +139,7 @@ class Slider(ChakraComponent):
138
139
  id: The id for the component.
139
140
  class_name: The class name for the component.
140
141
  autofocus: Whether the component should take the focus once the page is loaded
142
+ _rename_props: props to change the name of
141
143
  custom_attrs: custom attribute
142
144
  **props: The properties of the component.
143
145
 
@@ -157,6 +159,7 @@ class SliderTrack(ChakraComponent):
157
159
  id: Optional[Any] = None,
158
160
  class_name: Optional[Any] = None,
159
161
  autofocus: Optional[bool] = None,
162
+ _rename_props: Optional[Dict[str, str]] = None,
160
163
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
161
164
  on_blur: Optional[
162
165
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -214,6 +217,7 @@ class SliderTrack(ChakraComponent):
214
217
  id: The id for the component.
215
218
  class_name: The class name for the component.
216
219
  autofocus: Whether the component should take the focus once the page is loaded
220
+ _rename_props: props to change the name of
217
221
  custom_attrs: custom attribute
218
222
  **props: The props of the component.
219
223
 
@@ -236,6 +240,7 @@ class SliderFilledTrack(ChakraComponent):
236
240
  id: Optional[Any] = None,
237
241
  class_name: Optional[Any] = None,
238
242
  autofocus: Optional[bool] = None,
243
+ _rename_props: Optional[Dict[str, str]] = None,
239
244
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
240
245
  on_blur: Optional[
241
246
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -293,6 +298,7 @@ class SliderFilledTrack(ChakraComponent):
293
298
  id: The id for the component.
294
299
  class_name: The class name for the component.
295
300
  autofocus: Whether the component should take the focus once the page is loaded
301
+ _rename_props: props to change the name of
296
302
  custom_attrs: custom attribute
297
303
  **props: The props of the component.
298
304
 
@@ -316,6 +322,7 @@ class SliderThumb(ChakraComponent):
316
322
  id: Optional[Any] = None,
317
323
  class_name: Optional[Any] = None,
318
324
  autofocus: Optional[bool] = None,
325
+ _rename_props: Optional[Dict[str, str]] = None,
319
326
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
320
327
  on_blur: Optional[
321
328
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -374,6 +381,7 @@ class SliderThumb(ChakraComponent):
374
381
  id: The id for the component.
375
382
  class_name: The class name for the component.
376
383
  autofocus: Whether the component should take the focus once the page is loaded
384
+ _rename_props: props to change the name of
377
385
  custom_attrs: custom attribute
378
386
  **props: The props of the component.
379
387
 
@@ -396,6 +404,7 @@ class SliderMark(ChakraComponent):
396
404
  id: Optional[Any] = None,
397
405
  class_name: Optional[Any] = None,
398
406
  autofocus: Optional[bool] = None,
407
+ _rename_props: Optional[Dict[str, str]] = None,
399
408
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
400
409
  on_blur: Optional[
401
410
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -453,6 +462,7 @@ class SliderMark(ChakraComponent):
453
462
  id: The id for the component.
454
463
  class_name: The class name for the component.
455
464
  autofocus: Whether the component should take the focus once the page is loaded
465
+ _rename_props: props to change the name of
456
466
  custom_attrs: custom attribute
457
467
  **props: The props of the component.
458
468
 
@@ -82,6 +82,7 @@ class Switch(ChakraComponent):
82
82
  id: Optional[Any] = None,
83
83
  class_name: Optional[Any] = None,
84
84
  autofocus: Optional[bool] = None,
85
+ _rename_props: Optional[Dict[str, str]] = None,
85
86
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
86
87
  on_blur: Optional[
87
88
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -153,6 +154,7 @@ class Switch(ChakraComponent):
153
154
  id: The id for the component.
154
155
  class_name: The class name for the component.
155
156
  autofocus: Whether the component should take the focus once the page is loaded
157
+ _rename_props: props to change the name of
156
158
  custom_attrs: custom attribute
157
159
  **props: The props of the component.
158
160
 
@@ -42,6 +42,7 @@ class TextArea(ChakraComponent):
42
42
  id: Optional[Any] = None,
43
43
  class_name: Optional[Any] = None,
44
44
  autofocus: Optional[bool] = None,
45
+ _rename_props: Optional[Dict[str, str]] = None,
45
46
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
46
47
  on_blur: Optional[
47
48
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -119,6 +120,7 @@ class TextArea(ChakraComponent):
119
120
  id: The id for the component.
120
121
  class_name: The class name for the component.
121
122
  autofocus: Whether the component should take the focus once the page is loaded
123
+ _rename_props: props to change the name of
122
124
  custom_attrs: custom attribute
123
125
  **props: The properties of the component.
124
126
 
@@ -41,6 +41,7 @@ class TimePicker(Input):
41
41
  id: Optional[Any] = None,
42
42
  class_name: Optional[Any] = None,
43
43
  autofocus: Optional[bool] = None,
44
+ _rename_props: Optional[Dict[str, str]] = None,
44
45
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
45
46
  on_blur: Optional[
46
47
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -120,6 +121,7 @@ class TimePicker(Input):
120
121
  id: The id for the component.
121
122
  class_name: The class name for the component.
122
123
  autofocus: Whether the component should take the focus once the page is loaded
124
+ _rename_props: props to change the name of
123
125
  custom_attrs: custom attribute
124
126
  **props: The properties of the component.
125
127
 
@@ -22,6 +22,7 @@ class AspectRatio(ChakraComponent):
22
22
  id: Optional[Any] = None,
23
23
  class_name: Optional[Any] = None,
24
24
  autofocus: Optional[bool] = None,
25
+ _rename_props: Optional[Dict[str, str]] = None,
25
26
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
26
27
  on_blur: Optional[
27
28
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -80,6 +81,7 @@ class AspectRatio(ChakraComponent):
80
81
  id: The id for the component.
81
82
  class_name: The class name for the component.
82
83
  autofocus: Whether the component should take the focus once the page is loaded
84
+ _rename_props: props to change the name of
83
85
  custom_attrs: custom attribute
84
86
  **props: The props of the component.
85
87