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
@@ -34,6 +34,7 @@ class Accordion(ChakraComponent):
34
34
  id: Optional[Any] = None,
35
35
  class_name: Optional[Any] = None,
36
36
  autofocus: Optional[bool] = None,
37
+ _rename_props: Optional[Dict[str, str]] = None,
37
38
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
38
39
  on_blur: Optional[
39
40
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -98,6 +99,7 @@ class Accordion(ChakraComponent):
98
99
  id: The id for the component.
99
100
  class_name: The class name for the component.
100
101
  autofocus: Whether the component should take the focus once the page is loaded
102
+ _rename_props: props to change the name of
101
103
  custom_attrs: custom attribute
102
104
  **props: The properties of the component.
103
105
 
@@ -120,6 +122,7 @@ class AccordionItem(ChakraComponent):
120
122
  id: Optional[Any] = None,
121
123
  class_name: Optional[Any] = None,
122
124
  autofocus: Optional[bool] = None,
125
+ _rename_props: Optional[Dict[str, str]] = None,
123
126
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
124
127
  on_blur: Optional[
125
128
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -180,6 +183,7 @@ class AccordionItem(ChakraComponent):
180
183
  id: The id for the component.
181
184
  class_name: The class name for the component.
182
185
  autofocus: Whether the component should take the focus once the page is loaded
186
+ _rename_props: props to change the name of
183
187
  custom_attrs: custom attribute
184
188
  **props: The props of the component.
185
189
 
@@ -202,6 +206,7 @@ class AccordionButton(ChakraComponent):
202
206
  id: Optional[Any] = None,
203
207
  class_name: Optional[Any] = None,
204
208
  autofocus: Optional[bool] = None,
209
+ _rename_props: Optional[Dict[str, str]] = None,
205
210
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
206
211
  on_blur: Optional[
207
212
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -259,6 +264,7 @@ class AccordionButton(ChakraComponent):
259
264
  id: The id for the component.
260
265
  class_name: The class name for the component.
261
266
  autofocus: Whether the component should take the focus once the page is loaded
267
+ _rename_props: props to change the name of
262
268
  custom_attrs: custom attribute
263
269
  **props: The props of the component.
264
270
 
@@ -281,6 +287,7 @@ class AccordionPanel(ChakraComponent):
281
287
  id: Optional[Any] = None,
282
288
  class_name: Optional[Any] = None,
283
289
  autofocus: Optional[bool] = None,
290
+ _rename_props: Optional[Dict[str, str]] = None,
284
291
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
285
292
  on_blur: Optional[
286
293
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -338,6 +345,7 @@ class AccordionPanel(ChakraComponent):
338
345
  id: The id for the component.
339
346
  class_name: The class name for the component.
340
347
  autofocus: Whether the component should take the focus once the page is loaded
348
+ _rename_props: props to change the name of
341
349
  custom_attrs: custom attribute
342
350
  **props: The props of the component.
343
351
 
@@ -360,6 +368,7 @@ class AccordionIcon(ChakraComponent):
360
368
  id: Optional[Any] = None,
361
369
  class_name: Optional[Any] = None,
362
370
  autofocus: Optional[bool] = None,
371
+ _rename_props: Optional[Dict[str, str]] = None,
363
372
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
364
373
  on_blur: Optional[
365
374
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -417,6 +426,7 @@ class AccordionIcon(ChakraComponent):
417
426
  id: The id for the component.
418
427
  class_name: The class name for the component.
419
428
  autofocus: Whether the component should take the focus once the page is loaded
429
+ _rename_props: props to change the name of
420
430
  custom_attrs: custom attribute
421
431
  **props: The props of the component.
422
432
 
@@ -90,20 +90,28 @@ class Tab(ChakraComponent):
90
90
  # The id of the panel.
91
91
  panel_id: Var[str]
92
92
 
93
+ _valid_parents: List[str] = ["TabList"]
94
+
93
95
 
94
96
  class TabList(ChakraComponent):
95
97
  """Wrapper for the Tab components."""
96
98
 
97
99
  tag = "TabList"
98
100
 
101
+ _valid_parents: List[str] = ["Tabs"]
102
+
99
103
 
100
104
  class TabPanels(ChakraComponent):
101
105
  """Wrapper for the Tab components."""
102
106
 
103
107
  tag = "TabPanels"
104
108
 
109
+ _valid_parents: List[str] = ["Tabs"]
110
+
105
111
 
106
112
  class TabPanel(ChakraComponent):
107
113
  """An element that contains the content associated with a tab."""
108
114
 
109
115
  tag = "TabPanel"
116
+
117
+ _valid_parents: List[str] = ["TabPanels"]
@@ -112,6 +112,7 @@ class Tabs(ChakraComponent):
112
112
  id: Optional[Any] = None,
113
113
  class_name: Optional[Any] = None,
114
114
  autofocus: Optional[bool] = None,
115
+ _rename_props: Optional[Dict[str, str]] = None,
115
116
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
116
117
  on_blur: Optional[
117
118
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -180,6 +181,7 @@ class Tabs(ChakraComponent):
180
181
  id: The id for the component.
181
182
  class_name: The class name for the component.
182
183
  autofocus: Whether the component should take the focus once the page is loaded
184
+ _rename_props: props to change the name of
183
185
  custom_attrs: custom attribute
184
186
  **props: The properties of the component.
185
187
 
@@ -203,6 +205,7 @@ class Tab(ChakraComponent):
203
205
  id: Optional[Any] = None,
204
206
  class_name: Optional[Any] = None,
205
207
  autofocus: Optional[bool] = None,
208
+ _rename_props: Optional[Dict[str, str]] = None,
206
209
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
207
210
  on_blur: Optional[
208
211
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -264,6 +267,7 @@ class Tab(ChakraComponent):
264
267
  id: The id for the component.
265
268
  class_name: The class name for the component.
266
269
  autofocus: Whether the component should take the focus once the page is loaded
270
+ _rename_props: props to change the name of
267
271
  custom_attrs: custom attribute
268
272
  **props: The props of the component.
269
273
 
@@ -286,6 +290,7 @@ class TabList(ChakraComponent):
286
290
  id: Optional[Any] = None,
287
291
  class_name: Optional[Any] = None,
288
292
  autofocus: Optional[bool] = None,
293
+ _rename_props: Optional[Dict[str, str]] = None,
289
294
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
290
295
  on_blur: Optional[
291
296
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -343,6 +348,7 @@ class TabList(ChakraComponent):
343
348
  id: The id for the component.
344
349
  class_name: The class name for the component.
345
350
  autofocus: Whether the component should take the focus once the page is loaded
351
+ _rename_props: props to change the name of
346
352
  custom_attrs: custom attribute
347
353
  **props: The props of the component.
348
354
 
@@ -365,6 +371,7 @@ class TabPanels(ChakraComponent):
365
371
  id: Optional[Any] = None,
366
372
  class_name: Optional[Any] = None,
367
373
  autofocus: Optional[bool] = None,
374
+ _rename_props: Optional[Dict[str, str]] = None,
368
375
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
369
376
  on_blur: Optional[
370
377
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -422,6 +429,7 @@ class TabPanels(ChakraComponent):
422
429
  id: The id for the component.
423
430
  class_name: The class name for the component.
424
431
  autofocus: Whether the component should take the focus once the page is loaded
432
+ _rename_props: props to change the name of
425
433
  custom_attrs: custom attribute
426
434
  **props: The props of the component.
427
435
 
@@ -444,6 +452,7 @@ class TabPanel(ChakraComponent):
444
452
  id: Optional[Any] = None,
445
453
  class_name: Optional[Any] = None,
446
454
  autofocus: Optional[bool] = None,
455
+ _rename_props: Optional[Dict[str, str]] = None,
447
456
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
448
457
  on_blur: Optional[
449
458
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -501,6 +510,7 @@ class TabPanel(ChakraComponent):
501
510
  id: The id for the component.
502
511
  class_name: The class name for the component.
503
512
  autofocus: Whether the component should take the focus once the page is loaded
513
+ _rename_props: props to change the name of
504
514
  custom_attrs: custom attribute
505
515
  **props: The props of the component.
506
516
 
@@ -24,6 +24,7 @@ class Transition(ChakraComponent):
24
24
  id: Optional[Any] = None,
25
25
  class_name: Optional[Any] = None,
26
26
  autofocus: Optional[bool] = None,
27
+ _rename_props: Optional[Dict[str, str]] = None,
27
28
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
28
29
  on_blur: Optional[
29
30
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -83,6 +84,7 @@ class Transition(ChakraComponent):
83
84
  id: The id for the component.
84
85
  class_name: The class name for the component.
85
86
  autofocus: Whether the component should take the focus once the page is loaded
87
+ _rename_props: props to change the name of
86
88
  custom_attrs: custom attribute
87
89
  **props: The props of the component.
88
90
 
@@ -107,6 +109,7 @@ class Fade(Transition):
107
109
  id: Optional[Any] = None,
108
110
  class_name: Optional[Any] = None,
109
111
  autofocus: Optional[bool] = None,
112
+ _rename_props: Optional[Dict[str, str]] = None,
110
113
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
111
114
  on_blur: Optional[
112
115
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -166,6 +169,7 @@ class Fade(Transition):
166
169
  id: The id for the component.
167
170
  class_name: The class name for the component.
168
171
  autofocus: Whether the component should take the focus once the page is loaded
172
+ _rename_props: props to change the name of
169
173
  custom_attrs: custom attribute
170
174
  **props: The props of the component.
171
175
 
@@ -192,6 +196,7 @@ class ScaleFade(Transition):
192
196
  id: Optional[Any] = None,
193
197
  class_name: Optional[Any] = None,
194
198
  autofocus: Optional[bool] = None,
199
+ _rename_props: Optional[Dict[str, str]] = None,
195
200
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
196
201
  on_blur: Optional[
197
202
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -253,6 +258,7 @@ class ScaleFade(Transition):
253
258
  id: The id for the component.
254
259
  class_name: The class name for the component.
255
260
  autofocus: Whether the component should take the focus once the page is loaded
261
+ _rename_props: props to change the name of
256
262
  custom_attrs: custom attribute
257
263
  **props: The props of the component.
258
264
 
@@ -278,6 +284,7 @@ class Slide(Transition):
278
284
  id: Optional[Any] = None,
279
285
  class_name: Optional[Any] = None,
280
286
  autofocus: Optional[bool] = None,
287
+ _rename_props: Optional[Dict[str, str]] = None,
281
288
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
282
289
  on_blur: Optional[
283
290
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -338,6 +345,7 @@ class Slide(Transition):
338
345
  id: The id for the component.
339
346
  class_name: The class name for the component.
340
347
  autofocus: Whether the component should take the focus once the page is loaded
348
+ _rename_props: props to change the name of
341
349
  custom_attrs: custom attribute
342
350
  **props: The props of the component.
343
351
 
@@ -365,6 +373,7 @@ class SlideFade(Transition):
365
373
  id: Optional[Any] = None,
366
374
  class_name: Optional[Any] = None,
367
375
  autofocus: Optional[bool] = None,
376
+ _rename_props: Optional[Dict[str, str]] = None,
368
377
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
369
378
  on_blur: Optional[
370
379
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -427,6 +436,7 @@ class SlideFade(Transition):
427
436
  id: The id for the component.
428
437
  class_name: The class name for the component.
429
438
  autofocus: Whether the component should take the focus once the page is loaded
439
+ _rename_props: props to change the name of
430
440
  custom_attrs: custom attribute
431
441
  **props: The props of the component.
432
442
 
@@ -454,6 +464,7 @@ class Collapse(Transition):
454
464
  id: Optional[Any] = None,
455
465
  class_name: Optional[Any] = None,
456
466
  autofocus: Optional[bool] = None,
467
+ _rename_props: Optional[Dict[str, str]] = None,
457
468
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
458
469
  on_blur: Optional[
459
470
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -516,6 +527,7 @@ class Collapse(Transition):
516
527
  id: The id for the component.
517
528
  class_name: The class name for the component.
518
529
  autofocus: Whether the component should take the focus once the page is loaded
530
+ _rename_props: props to change the name of
519
531
  custom_attrs: custom attribute
520
532
  **props: The props of the component.
521
533
 
@@ -20,6 +20,7 @@ class VisuallyHidden(ChakraComponent):
20
20
  id: Optional[Any] = None,
21
21
  class_name: Optional[Any] = None,
22
22
  autofocus: Optional[bool] = None,
23
+ _rename_props: Optional[Dict[str, str]] = None,
23
24
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
24
25
  on_blur: Optional[
25
26
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -77,6 +78,7 @@ class VisuallyHidden(ChakraComponent):
77
78
  id: The id for the component.
78
79
  class_name: The class name for the component.
79
80
  autofocus: Whether the component should take the focus once the page is loaded
81
+ _rename_props: props to change the name of
80
82
  custom_attrs: custom attribute
81
83
  **props: The props of the component.
82
84
 
@@ -37,6 +37,7 @@ class Alert(ChakraComponent):
37
37
  id: Optional[Any] = None,
38
38
  class_name: Optional[Any] = None,
39
39
  autofocus: Optional[bool] = None,
40
+ _rename_props: Optional[Dict[str, str]] = None,
40
41
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
41
42
  on_blur: Optional[
42
43
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -99,6 +100,7 @@ class Alert(ChakraComponent):
99
100
  id: The id for the component.
100
101
  class_name: The class name for the component.
101
102
  autofocus: Whether the component should take the focus once the page is loaded
103
+ _rename_props: props to change the name of
102
104
  custom_attrs: custom attribute
103
105
  **props: The properties of the component.
104
106
 
@@ -118,6 +120,7 @@ class AlertIcon(ChakraComponent):
118
120
  id: Optional[Any] = None,
119
121
  class_name: Optional[Any] = None,
120
122
  autofocus: Optional[bool] = None,
123
+ _rename_props: Optional[Dict[str, str]] = None,
121
124
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
122
125
  on_blur: Optional[
123
126
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -175,6 +178,7 @@ class AlertIcon(ChakraComponent):
175
178
  id: The id for the component.
176
179
  class_name: The class name for the component.
177
180
  autofocus: Whether the component should take the focus once the page is loaded
181
+ _rename_props: props to change the name of
178
182
  custom_attrs: custom attribute
179
183
  **props: The props of the component.
180
184
 
@@ -197,6 +201,7 @@ class AlertTitle(ChakraComponent):
197
201
  id: Optional[Any] = None,
198
202
  class_name: Optional[Any] = None,
199
203
  autofocus: Optional[bool] = None,
204
+ _rename_props: Optional[Dict[str, str]] = None,
200
205
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
201
206
  on_blur: Optional[
202
207
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -254,6 +259,7 @@ class AlertTitle(ChakraComponent):
254
259
  id: The id for the component.
255
260
  class_name: The class name for the component.
256
261
  autofocus: Whether the component should take the focus once the page is loaded
262
+ _rename_props: props to change the name of
257
263
  custom_attrs: custom attribute
258
264
  **props: The props of the component.
259
265
 
@@ -276,6 +282,7 @@ class AlertDescription(ChakraComponent):
276
282
  id: Optional[Any] = None,
277
283
  class_name: Optional[Any] = None,
278
284
  autofocus: Optional[bool] = None,
285
+ _rename_props: Optional[Dict[str, str]] = None,
279
286
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
280
287
  on_blur: Optional[
281
288
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -333,6 +340,7 @@ class AlertDescription(ChakraComponent):
333
340
  id: The id for the component.
334
341
  class_name: The class name for the component.
335
342
  autofocus: Whether the component should take the focus once the page is loaded
343
+ _rename_props: props to change the name of
336
344
  custom_attrs: custom attribute
337
345
  **props: The props of the component.
338
346
 
@@ -34,6 +34,7 @@ class CircularProgress(ChakraComponent):
34
34
  id: Optional[Any] = None,
35
35
  class_name: Optional[Any] = None,
36
36
  autofocus: Optional[bool] = None,
37
+ _rename_props: Optional[Dict[str, str]] = None,
37
38
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
38
39
  on_blur: Optional[
39
40
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -102,6 +103,7 @@ class CircularProgress(ChakraComponent):
102
103
  id: The id for the component.
103
104
  class_name: The class name for the component.
104
105
  autofocus: Whether the component should take the focus once the page is loaded
106
+ _rename_props: props to change the name of
105
107
  custom_attrs: custom attribute
106
108
  **props: the props of the component.
107
109
 
@@ -121,6 +123,7 @@ class CircularProgressLabel(ChakraComponent):
121
123
  id: Optional[Any] = None,
122
124
  class_name: Optional[Any] = None,
123
125
  autofocus: Optional[bool] = None,
126
+ _rename_props: Optional[Dict[str, str]] = None,
124
127
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
125
128
  on_blur: Optional[
126
129
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -178,6 +181,7 @@ class CircularProgressLabel(ChakraComponent):
178
181
  id: The id for the component.
179
182
  class_name: The class name for the component.
180
183
  autofocus: Whether the component should take the focus once the page is loaded
184
+ _rename_props: props to change the name of
181
185
  custom_attrs: custom attribute
182
186
  **props: The props of the component.
183
187
 
@@ -29,6 +29,7 @@ class Progress(ChakraComponent):
29
29
  id: Optional[Any] = None,
30
30
  class_name: Optional[Any] = None,
31
31
  autofocus: Optional[bool] = None,
32
+ _rename_props: Optional[Dict[str, str]] = None,
32
33
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
33
34
  on_blur: Optional[
34
35
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -93,6 +94,7 @@ class Progress(ChakraComponent):
93
94
  id: The id for the component.
94
95
  class_name: The class name for the component.
95
96
  autofocus: Whether the component should take the focus once the page is loaded
97
+ _rename_props: props to change the name of
96
98
  custom_attrs: custom attribute
97
99
  **props: The props of the component.
98
100
 
@@ -26,6 +26,7 @@ class Skeleton(ChakraComponent):
26
26
  id: Optional[Any] = None,
27
27
  class_name: Optional[Any] = None,
28
28
  autofocus: Optional[bool] = None,
29
+ _rename_props: Optional[Dict[str, str]] = None,
29
30
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
30
31
  on_blur: Optional[
31
32
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -88,6 +89,7 @@ class Skeleton(ChakraComponent):
88
89
  id: The id for the component.
89
90
  class_name: The class name for the component.
90
91
  autofocus: Whether the component should take the focus once the page is loaded
92
+ _rename_props: props to change the name of
91
93
  custom_attrs: custom attribute
92
94
  **props: The props of the component.
93
95
 
@@ -115,6 +117,7 @@ class SkeletonCircle(ChakraComponent):
115
117
  id: Optional[Any] = None,
116
118
  class_name: Optional[Any] = None,
117
119
  autofocus: Optional[bool] = None,
120
+ _rename_props: Optional[Dict[str, str]] = None,
118
121
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
119
122
  on_blur: Optional[
120
123
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -177,6 +180,7 @@ class SkeletonCircle(ChakraComponent):
177
180
  id: The id for the component.
178
181
  class_name: The class name for the component.
179
182
  autofocus: Whether the component should take the focus once the page is loaded
183
+ _rename_props: props to change the name of
180
184
  custom_attrs: custom attribute
181
185
  **props: The props of the component.
182
186
 
@@ -205,6 +209,7 @@ class SkeletonText(ChakraComponent):
205
209
  id: Optional[Any] = None,
206
210
  class_name: Optional[Any] = None,
207
211
  autofocus: Optional[bool] = None,
212
+ _rename_props: Optional[Dict[str, str]] = None,
208
213
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
209
214
  on_blur: Optional[
210
215
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -268,6 +273,7 @@ class SkeletonText(ChakraComponent):
268
273
  id: The id for the component.
269
274
  class_name: The class name for the component.
270
275
  autofocus: Whether the component should take the focus once the page is loaded
276
+ _rename_props: props to change the name of
271
277
  custom_attrs: custom attribute
272
278
  **props: The props of the component.
273
279
 
@@ -31,6 +31,7 @@ class Spinner(ChakraComponent):
31
31
  id: Optional[Any] = None,
32
32
  class_name: Optional[Any] = None,
33
33
  autofocus: Optional[bool] = None,
34
+ _rename_props: Optional[Dict[str, str]] = None,
34
35
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
35
36
  on_blur: Optional[
36
37
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -93,6 +94,7 @@ class Spinner(ChakraComponent):
93
94
  id: The id for the component.
94
95
  class_name: The class name for the component.
95
96
  autofocus: Whether the component should take the focus once the page is loaded
97
+ _rename_props: props to change the name of
96
98
  custom_attrs: custom attribute
97
99
  **props: The props of the component.
98
100
 
@@ -96,6 +96,7 @@ class Button(ChakraComponent):
96
96
  id: Optional[Any] = None,
97
97
  class_name: Optional[Any] = None,
98
98
  autofocus: Optional[bool] = None,
99
+ _rename_props: Optional[Dict[str, str]] = None,
99
100
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
100
101
  on_blur: Optional[
101
102
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -165,6 +166,7 @@ class Button(ChakraComponent):
165
166
  id: The id for the component.
166
167
  class_name: The class name for the component.
167
168
  autofocus: Whether the component should take the focus once the page is loaded
169
+ _rename_props: props to change the name of
168
170
  custom_attrs: custom attribute
169
171
  **props: The props of the component.
170
172
 
@@ -199,6 +201,7 @@ class ButtonGroup(ChakraComponent):
199
201
  id: Optional[Any] = None,
200
202
  class_name: Optional[Any] = None,
201
203
  autofocus: Optional[bool] = None,
204
+ _rename_props: Optional[Dict[str, str]] = None,
202
205
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
203
206
  on_blur: Optional[
204
207
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -261,6 +264,7 @@ class ButtonGroup(ChakraComponent):
261
264
  id: The id for the component.
262
265
  class_name: The class name for the component.
263
266
  autofocus: Whether the component should take the focus once the page is loaded
267
+ _rename_props: props to change the name of
264
268
  custom_attrs: custom attribute
265
269
  **props: The props of the component.
266
270
 
@@ -85,6 +85,7 @@ class Checkbox(ChakraComponent):
85
85
  id: Optional[Any] = None,
86
86
  class_name: Optional[Any] = None,
87
87
  autofocus: Optional[bool] = None,
88
+ _rename_props: Optional[Dict[str, str]] = None,
88
89
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
89
90
  on_blur: Optional[
90
91
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -157,6 +158,7 @@ class Checkbox(ChakraComponent):
157
158
  id: The id for the component.
158
159
  class_name: The class name for the component.
159
160
  autofocus: Whether the component should take the focus once the page is loaded
161
+ _rename_props: props to change the name of
160
162
  custom_attrs: custom attribute
161
163
  **props: The props of the component.
162
164
 
@@ -183,6 +185,7 @@ class CheckboxGroup(ChakraComponent):
183
185
  id: Optional[Any] = None,
184
186
  class_name: Optional[Any] = None,
185
187
  autofocus: Optional[bool] = None,
188
+ _rename_props: Optional[Dict[str, str]] = None,
186
189
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
187
190
  on_blur: Optional[
188
191
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -244,6 +247,7 @@ class CheckboxGroup(ChakraComponent):
244
247
  id: The id for the component.
245
248
  class_name: The class name for the component.
246
249
  autofocus: Whether the component should take the focus once the page is loaded
250
+ _rename_props: props to change the name of
247
251
  custom_attrs: custom attribute
248
252
  **props: The props of the component.
249
253
 
@@ -37,6 +37,7 @@ class ColorModeIcon(Cond):
37
37
  id: Optional[Any] = None,
38
38
  class_name: Optional[Any] = None,
39
39
  autofocus: Optional[bool] = None,
40
+ _rename_props: Optional[Dict[str, str]] = None,
40
41
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
41
42
  on_blur: Optional[
42
43
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -165,6 +166,7 @@ class ColorModeSwitch(Switch):
165
166
  id: Optional[Any] = None,
166
167
  class_name: Optional[Any] = None,
167
168
  autofocus: Optional[bool] = None,
169
+ _rename_props: Optional[Dict[str, str]] = None,
168
170
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
169
171
  on_blur: Optional[
170
172
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -236,6 +238,7 @@ class ColorModeSwitch(Switch):
236
238
  id: The id for the component.
237
239
  class_name: The class name for the component.
238
240
  autofocus: Whether the component should take the focus once the page is loaded
241
+ _rename_props: props to change the name of
239
242
  custom_attrs: custom attribute
240
243
  **props: The props to pass to the component.
241
244
 
@@ -323,6 +326,7 @@ class ColorModeButton(Button):
323
326
  id: Optional[Any] = None,
324
327
  class_name: Optional[Any] = None,
325
328
  autofocus: Optional[bool] = None,
329
+ _rename_props: Optional[Dict[str, str]] = None,
326
330
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
327
331
  on_blur: Optional[
328
332
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -392,6 +396,7 @@ class ColorModeButton(Button):
392
396
  id: The id for the component.
393
397
  class_name: The class name for the component.
394
398
  autofocus: Whether the component should take the focus once the page is loaded
399
+ _rename_props: props to change the name of
395
400
  custom_attrs: custom attribute
396
401
  **props: The props to pass to the component.
397
402
 
@@ -411,6 +416,7 @@ class ColorModeScript(ChakraComponent):
411
416
  id: Optional[Any] = None,
412
417
  class_name: Optional[Any] = None,
413
418
  autofocus: Optional[bool] = None,
419
+ _rename_props: Optional[Dict[str, str]] = None,
414
420
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
415
421
  on_blur: Optional[
416
422
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -468,6 +474,7 @@ class ColorModeScript(ChakraComponent):
468
474
  id: The id for the component.
469
475
  class_name: The class name for the component.
470
476
  autofocus: Whether the component should take the focus once the page is loaded
477
+ _rename_props: props to change the name of
471
478
  custom_attrs: custom attribute
472
479
  **props: The props of the component.
473
480
 
@@ -41,6 +41,7 @@ class DatePicker(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 DatePicker(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
 
@@ -41,6 +41,7 @@ class DateTimePicker(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 DateTimePicker(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