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
@@ -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
 
@@ -49,6 +49,7 @@ class Modal(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]
@@ -135,6 +136,7 @@ class Modal(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 properties of the component.
140
142
 
@@ -157,6 +159,7 @@ class ModalOverlay(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 ModalOverlay(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 ModalHeader(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 ModalHeader(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
 
@@ -315,6 +321,7 @@ class ModalFooter(ChakraComponent):
315
321
  id: Optional[Any] = None,
316
322
  class_name: Optional[Any] = None,
317
323
  autofocus: Optional[bool] = None,
324
+ _rename_props: Optional[Dict[str, str]] = None,
318
325
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
319
326
  on_blur: Optional[
320
327
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -372,6 +379,7 @@ class ModalFooter(ChakraComponent):
372
379
  id: The id for the component.
373
380
  class_name: The class name for the component.
374
381
  autofocus: Whether the component should take the focus once the page is loaded
382
+ _rename_props: props to change the name of
375
383
  custom_attrs: custom attribute
376
384
  **props: The props of the component.
377
385
 
@@ -394,6 +402,7 @@ class ModalContent(ChakraComponent):
394
402
  id: Optional[Any] = None,
395
403
  class_name: Optional[Any] = None,
396
404
  autofocus: Optional[bool] = None,
405
+ _rename_props: Optional[Dict[str, str]] = None,
397
406
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
398
407
  on_blur: Optional[
399
408
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -451,6 +460,7 @@ class ModalContent(ChakraComponent):
451
460
  id: The id for the component.
452
461
  class_name: The class name for the component.
453
462
  autofocus: Whether the component should take the focus once the page is loaded
463
+ _rename_props: props to change the name of
454
464
  custom_attrs: custom attribute
455
465
  **props: The props of the component.
456
466
 
@@ -473,6 +483,7 @@ class ModalBody(ChakraComponent):
473
483
  id: Optional[Any] = None,
474
484
  class_name: Optional[Any] = None,
475
485
  autofocus: Optional[bool] = None,
486
+ _rename_props: Optional[Dict[str, str]] = None,
476
487
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
477
488
  on_blur: Optional[
478
489
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -530,6 +541,7 @@ class ModalBody(ChakraComponent):
530
541
  id: The id for the component.
531
542
  class_name: The class name for the component.
532
543
  autofocus: Whether the component should take the focus once the page is loaded
544
+ _rename_props: props to change the name of
533
545
  custom_attrs: custom attribute
534
546
  **props: The props of the component.
535
547
 
@@ -552,6 +564,7 @@ class ModalCloseButton(ChakraComponent):
552
564
  id: Optional[Any] = None,
553
565
  class_name: Optional[Any] = None,
554
566
  autofocus: Optional[bool] = None,
567
+ _rename_props: Optional[Dict[str, str]] = None,
555
568
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
556
569
  on_blur: Optional[
557
570
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -609,6 +622,7 @@ class ModalCloseButton(ChakraComponent):
609
622
  id: The id for the component.
610
623
  class_name: The class name for the component.
611
624
  autofocus: Whether the component should take the focus once the page is loaded
625
+ _rename_props: props to change the name of
612
626
  custom_attrs: custom attribute
613
627
  **props: The props of the component.
614
628
 
@@ -58,6 +58,7 @@ class Popover(ChakraComponent):
58
58
  id: Optional[Any] = None,
59
59
  class_name: Optional[Any] = None,
60
60
  autofocus: Optional[bool] = None,
61
+ _rename_props: Optional[Dict[str, str]] = None,
61
62
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
62
63
  on_blur: Optional[
63
64
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -146,6 +147,7 @@ class Popover(ChakraComponent):
146
147
  id: The id for the component.
147
148
  class_name: The class name for the component.
148
149
  autofocus: Whether the component should take the focus once the page is loaded
150
+ _rename_props: props to change the name of
149
151
  custom_attrs: custom attribute
150
152
  **props: The properties of the component.
151
153
 
@@ -165,6 +167,7 @@ class PopoverContent(ChakraComponent):
165
167
  id: Optional[Any] = None,
166
168
  class_name: Optional[Any] = None,
167
169
  autofocus: Optional[bool] = None,
170
+ _rename_props: Optional[Dict[str, str]] = None,
168
171
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
169
172
  on_blur: Optional[
170
173
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -222,6 +225,7 @@ class PopoverContent(ChakraComponent):
222
225
  id: The id for the component.
223
226
  class_name: The class name for the component.
224
227
  autofocus: Whether the component should take the focus once the page is loaded
228
+ _rename_props: props to change the name of
225
229
  custom_attrs: custom attribute
226
230
  **props: The props of the component.
227
231
 
@@ -244,6 +248,7 @@ class PopoverHeader(ChakraComponent):
244
248
  id: Optional[Any] = None,
245
249
  class_name: Optional[Any] = None,
246
250
  autofocus: Optional[bool] = None,
251
+ _rename_props: Optional[Dict[str, str]] = None,
247
252
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
248
253
  on_blur: Optional[
249
254
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -301,6 +306,7 @@ class PopoverHeader(ChakraComponent):
301
306
  id: The id for the component.
302
307
  class_name: The class name for the component.
303
308
  autofocus: Whether the component should take the focus once the page is loaded
309
+ _rename_props: props to change the name of
304
310
  custom_attrs: custom attribute
305
311
  **props: The props of the component.
306
312
 
@@ -323,6 +329,7 @@ class PopoverFooter(ChakraComponent):
323
329
  id: Optional[Any] = None,
324
330
  class_name: Optional[Any] = None,
325
331
  autofocus: Optional[bool] = None,
332
+ _rename_props: Optional[Dict[str, str]] = None,
326
333
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
327
334
  on_blur: Optional[
328
335
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -380,6 +387,7 @@ class PopoverFooter(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
 
@@ -402,6 +410,7 @@ class PopoverBody(ChakraComponent):
402
410
  id: Optional[Any] = None,
403
411
  class_name: Optional[Any] = None,
404
412
  autofocus: Optional[bool] = None,
413
+ _rename_props: Optional[Dict[str, str]] = None,
405
414
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
406
415
  on_blur: Optional[
407
416
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -459,6 +468,7 @@ class PopoverBody(ChakraComponent):
459
468
  id: The id for the component.
460
469
  class_name: The class name for the component.
461
470
  autofocus: Whether the component should take the focus once the page is loaded
471
+ _rename_props: props to change the name of
462
472
  custom_attrs: custom attribute
463
473
  **props: The props of the component.
464
474
 
@@ -481,6 +491,7 @@ class PopoverArrow(ChakraComponent):
481
491
  id: Optional[Any] = None,
482
492
  class_name: Optional[Any] = None,
483
493
  autofocus: Optional[bool] = None,
494
+ _rename_props: Optional[Dict[str, str]] = None,
484
495
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
485
496
  on_blur: Optional[
486
497
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -538,6 +549,7 @@ class PopoverArrow(ChakraComponent):
538
549
  id: The id for the component.
539
550
  class_name: The class name for the component.
540
551
  autofocus: Whether the component should take the focus once the page is loaded
552
+ _rename_props: props to change the name of
541
553
  custom_attrs: custom attribute
542
554
  **props: The props of the component.
543
555
 
@@ -560,6 +572,7 @@ class PopoverCloseButton(ChakraComponent):
560
572
  id: Optional[Any] = None,
561
573
  class_name: Optional[Any] = None,
562
574
  autofocus: Optional[bool] = None,
575
+ _rename_props: Optional[Dict[str, str]] = None,
563
576
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
564
577
  on_blur: Optional[
565
578
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -617,6 +630,7 @@ class PopoverCloseButton(ChakraComponent):
617
630
  id: The id for the component.
618
631
  class_name: The class name for the component.
619
632
  autofocus: Whether the component should take the focus once the page is loaded
633
+ _rename_props: props to change the name of
620
634
  custom_attrs: custom attribute
621
635
  **props: The props of the component.
622
636
 
@@ -639,6 +653,7 @@ class PopoverAnchor(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]
@@ -696,6 +711,7 @@ class PopoverAnchor(ChakraComponent):
696
711
  id: The id for the component.
697
712
  class_name: The class name for the component.
698
713
  autofocus: Whether the component should take the focus once the page is loaded
714
+ _rename_props: props to change the name of
699
715
  custom_attrs: custom attribute
700
716
  **props: The props of the component.
701
717
 
@@ -718,6 +734,7 @@ class PopoverTrigger(ChakraComponent):
718
734
  id: Optional[Any] = None,
719
735
  class_name: Optional[Any] = None,
720
736
  autofocus: Optional[bool] = None,
737
+ _rename_props: Optional[Dict[str, str]] = None,
721
738
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
722
739
  on_blur: Optional[
723
740
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -775,6 +792,7 @@ class PopoverTrigger(ChakraComponent):
775
792
  id: The id for the component.
776
793
  class_name: The class name for the component.
777
794
  autofocus: Whether the component should take the focus once the page is loaded
795
+ _rename_props: props to change the name of
778
796
  custom_attrs: custom attribute
779
797
  **props: The props of the component.
780
798
 
@@ -42,6 +42,7 @@ class Tooltip(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]
@@ -122,6 +123,7 @@ class Tooltip(ChakraComponent):
122
123
  id: The id for the component.
123
124
  class_name: The class name for the component.
124
125
  autofocus: Whether the component should take the focus once the page is loaded
126
+ _rename_props: props to change the name of
125
127
  custom_attrs: custom attribute
126
128
  **props: The props of the component.
127
129
 
@@ -28,6 +28,7 @@ class Heading(ChakraComponent):
28
28
  id: Optional[Any] = None,
29
29
  class_name: Optional[Any] = None,
30
30
  autofocus: Optional[bool] = None,
31
+ _rename_props: Optional[Dict[str, str]] = None,
31
32
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
32
33
  on_blur: Optional[
33
34
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -87,6 +88,7 @@ class Heading(ChakraComponent):
87
88
  id: The id for the component.
88
89
  class_name: The class name for the component.
89
90
  autofocus: Whether the component should take the focus once the page is loaded
91
+ _rename_props: props to change the name of
90
92
  custom_attrs: custom attribute
91
93
  **props: The props of the component.
92
94
 
@@ -25,6 +25,7 @@ class Highlight(ChakraComponent):
25
25
  id: Optional[Any] = None,
26
26
  class_name: Optional[Any] = None,
27
27
  autofocus: Optional[bool] = None,
28
+ _rename_props: Optional[Dict[str, str]] = None,
28
29
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
29
30
  on_blur: Optional[
30
31
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -84,6 +85,7 @@ class Highlight(ChakraComponent):
84
85
  id: The id for the component.
85
86
  class_name: The class name for the component.
86
87
  autofocus: Whether the component should take the focus once the page is loaded
88
+ _rename_props: props to change the name of
87
89
  custom_attrs: custom attribute
88
90
  **props: The props of the component.
89
91
 
@@ -22,6 +22,7 @@ class Span(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 Span(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
 
@@ -23,6 +23,7 @@ class Text(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 Text(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