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
@@ -23,6 +23,7 @@ class RawLink(Component):
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 RawLink(Component):
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
 
@@ -111,6 +113,7 @@ class ScriptTag(Component):
111
113
  id: Optional[Any] = None,
112
114
  class_name: Optional[Any] = None,
113
115
  autofocus: Optional[bool] = None,
116
+ _rename_props: Optional[Dict[str, str]] = None,
114
117
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
115
118
  on_blur: Optional[
116
119
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -175,6 +178,7 @@ class ScriptTag(Component):
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
 
@@ -23,6 +23,7 @@ class Title(Component):
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]
@@ -80,6 +81,7 @@ class Title(Component):
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
 
@@ -107,6 +109,7 @@ class Meta(Component):
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]
@@ -169,6 +172,7 @@ class Meta(Component):
169
172
  id: The id for the component.
170
173
  class_name: The class name for the component.
171
174
  autofocus: Whether the component should take the focus once the page is loaded
175
+ _rename_props: props to change the name of
172
176
  custom_attrs: custom attribute
173
177
  **props: The props of the component.
174
178
 
@@ -196,6 +200,7 @@ class Description(Meta):
196
200
  id: Optional[Any] = None,
197
201
  class_name: Optional[Any] = None,
198
202
  autofocus: Optional[bool] = None,
203
+ _rename_props: Optional[Dict[str, str]] = None,
199
204
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
200
205
  on_blur: Optional[
201
206
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -258,6 +263,7 @@ class Description(Meta):
258
263
  id: The id for the component.
259
264
  class_name: The class name for the component.
260
265
  autofocus: Whether the component should take the focus once the page is loaded
266
+ _rename_props: props to change the name of
261
267
  custom_attrs: custom attribute
262
268
  **props: The props of the component.
263
269
 
@@ -285,6 +291,7 @@ class Image(Meta):
285
291
  id: Optional[Any] = None,
286
292
  class_name: Optional[Any] = None,
287
293
  autofocus: Optional[bool] = None,
294
+ _rename_props: Optional[Dict[str, str]] = None,
288
295
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
289
296
  on_blur: Optional[
290
297
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -347,6 +354,7 @@ class Image(Meta):
347
354
  id: The id for the component.
348
355
  class_name: The class name for the component.
349
356
  autofocus: Whether the component should take the focus once the page is loaded
357
+ _rename_props: props to change the name of
350
358
  custom_attrs: custom attribute
351
359
  **props: The props of the component.
352
360
 
@@ -24,6 +24,7 @@ class Script(Component):
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]
@@ -102,6 +103,7 @@ class Script(Component):
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
 
@@ -25,6 +25,7 @@ class ChakraComponent(Component):
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]
@@ -82,6 +83,7 @@ class ChakraComponent(Component):
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
 
@@ -105,6 +107,7 @@ class Global(Component):
105
107
  id: Optional[Any] = None,
106
108
  class_name: Optional[Any] = None,
107
109
  autofocus: Optional[bool] = None,
110
+ _rename_props: Optional[Dict[str, str]] = None,
108
111
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
109
112
  on_blur: Optional[
110
113
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -162,6 +165,7 @@ class Global(Component):
162
165
  id: The id for the component.
163
166
  class_name: The class name for the component.
164
167
  autofocus: Whether the component should take the focus once the page is loaded
168
+ _rename_props: props to change the name of
165
169
  custom_attrs: custom attribute
166
170
  **props: The props of the component.
167
171
 
@@ -185,6 +189,7 @@ class ChakraProvider(ChakraComponent):
185
189
  id: Optional[Any] = None,
186
190
  class_name: Optional[Any] = None,
187
191
  autofocus: Optional[bool] = None,
192
+ _rename_props: Optional[Dict[str, str]] = None,
188
193
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
189
194
  on_blur: Optional[
190
195
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -253,6 +258,7 @@ class ChakraColorModeProvider(Component):
253
258
  id: Optional[Any] = None,
254
259
  class_name: Optional[Any] = None,
255
260
  autofocus: Optional[bool] = None,
261
+ _rename_props: Optional[Dict[str, str]] = None,
256
262
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
257
263
  on_blur: Optional[
258
264
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -310,6 +316,7 @@ class ChakraColorModeProvider(Component):
310
316
  id: The id for the component.
311
317
  class_name: The class name for the component.
312
318
  autofocus: Whether the component should take the focus once the page is loaded
319
+ _rename_props: props to change the name of
313
320
  custom_attrs: custom attribute
314
321
  **props: The props of the component.
315
322
 
@@ -28,6 +28,7 @@ class Badge(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 Badge(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
 
@@ -1036,6 +1036,7 @@ class CodeBlock(Component):
1036
1036
  id: Optional[Any] = None,
1037
1037
  class_name: Optional[Any] = None,
1038
1038
  autofocus: Optional[bool] = None,
1039
+ _rename_props: Optional[Dict[str, str]] = None,
1039
1040
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1040
1041
  on_blur: Optional[
1041
1042
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1103,6 +1104,7 @@ class CodeBlock(Component):
1103
1104
  id: The id for the component.
1104
1105
  class_name: The class name for the component.
1105
1106
  autofocus: Whether the component should take the focus once the page is loaded
1107
+ _rename_props: props to change the name of
1106
1108
  custom_attrs: custom attribute
1107
1109
  **props: The props to pass to the component.
1108
1110
 
@@ -1122,6 +1124,7 @@ class Code(ChakraComponent):
1122
1124
  id: Optional[Any] = None,
1123
1125
  class_name: Optional[Any] = None,
1124
1126
  autofocus: Optional[bool] = None,
1127
+ _rename_props: Optional[Dict[str, str]] = None,
1125
1128
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1126
1129
  on_blur: Optional[
1127
1130
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1179,6 +1182,7 @@ class Code(ChakraComponent):
1179
1182
  id: The id for the component.
1180
1183
  class_name: The class name for the component.
1181
1184
  autofocus: Whether the component should take the focus once the page is loaded
1185
+ _rename_props: props to change the name of
1182
1186
  custom_attrs: custom attribute
1183
1187
  **props: The props of the component.
1184
1188
 
@@ -33,6 +33,7 @@ class Divider(ChakraComponent):
33
33
  id: Optional[Any] = None,
34
34
  class_name: Optional[Any] = None,
35
35
  autofocus: Optional[bool] = None,
36
+ _rename_props: Optional[Dict[str, str]] = None,
36
37
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
37
38
  on_blur: Optional[
38
39
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -92,6 +93,7 @@ class Divider(ChakraComponent):
92
93
  id: The id for the component.
93
94
  class_name: The class name for the component.
94
95
  autofocus: Whether the component should take the focus once the page is loaded
96
+ _rename_props: props to change the name of
95
97
  custom_attrs: custom attribute
96
98
  **props: The props of the component.
97
99
 
@@ -20,6 +20,7 @@ class KeyboardKey(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 KeyboardKey(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
 
@@ -27,6 +27,7 @@ class List(ChakraComponent):
27
27
  id: Optional[Any] = None,
28
28
  class_name: Optional[Any] = None,
29
29
  autofocus: Optional[bool] = None,
30
+ _rename_props: Optional[Dict[str, str]] = None,
30
31
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
31
32
  on_blur: Optional[
32
33
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -88,6 +89,7 @@ class List(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 properties of the component.
93
95
 
@@ -107,6 +109,7 @@ class ListItem(ChakraComponent):
107
109
  id: Optional[Any] = None,
108
110
  class_name: Optional[Any] = None,
109
111
  autofocus: Optional[bool] = None,
112
+ _rename_props: Optional[Dict[str, str]] = None,
110
113
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
111
114
  on_blur: Optional[
112
115
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -164,6 +167,7 @@ class ListItem(ChakraComponent):
164
167
  id: The id for the component.
165
168
  class_name: The class name for the component.
166
169
  autofocus: Whether the component should take the focus once the page is loaded
170
+ _rename_props: props to change the name of
167
171
  custom_attrs: custom attribute
168
172
  **props: The props of the component.
169
173
 
@@ -190,6 +194,7 @@ class OrderedList(List):
190
194
  id: Optional[Any] = None,
191
195
  class_name: Optional[Any] = None,
192
196
  autofocus: Optional[bool] = None,
197
+ _rename_props: Optional[Dict[str, str]] = None,
193
198
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
194
199
  on_blur: Optional[
195
200
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -251,6 +256,7 @@ class OrderedList(List):
251
256
  id: The id for the component.
252
257
  class_name: The class name for the component.
253
258
  autofocus: Whether the component should take the focus once the page is loaded
259
+ _rename_props: props to change the name of
254
260
  custom_attrs: custom attribute
255
261
  **props: The properties of the component.
256
262
 
@@ -274,6 +280,7 @@ class UnorderedList(List):
274
280
  id: Optional[Any] = None,
275
281
  class_name: Optional[Any] = None,
276
282
  autofocus: Optional[bool] = None,
283
+ _rename_props: Optional[Dict[str, str]] = None,
277
284
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
278
285
  on_blur: Optional[
279
286
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -335,6 +342,7 @@ class UnorderedList(List):
335
342
  id: The id for the component.
336
343
  class_name: The class name for the component.
337
344
  autofocus: Whether the component should take the focus once the page is loaded
345
+ _rename_props: props to change the name of
338
346
  custom_attrs: custom attribute
339
347
  **props: The properties of the component.
340
348
 
@@ -26,6 +26,7 @@ class Stat(ChakraComponent):
26
26
  id: Optional[Any] = None,
27
27
  class_name: Optional[Any] = None,
28
28
  autofocus: Optional[bool] = None,
29
+ _rename_props: Optional[Dict[str, str]] = None,
29
30
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
30
31
  on_blur: Optional[
31
32
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -87,6 +88,7 @@ class Stat(ChakraComponent):
87
88
  id: The id for the component.
88
89
  class_name: The class name for the component.
89
90
  autofocus: Whether the component should take the focus once the page is loaded
91
+ _rename_props: props to change the name of
90
92
  custom_attrs: custom attribute
91
93
  **props: The properties of the component.
92
94
 
@@ -106,6 +108,7 @@ class StatLabel(ChakraComponent):
106
108
  id: Optional[Any] = None,
107
109
  class_name: Optional[Any] = None,
108
110
  autofocus: Optional[bool] = None,
111
+ _rename_props: Optional[Dict[str, str]] = None,
109
112
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
110
113
  on_blur: Optional[
111
114
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -163,6 +166,7 @@ class StatLabel(ChakraComponent):
163
166
  id: The id for the component.
164
167
  class_name: The class name for the component.
165
168
  autofocus: Whether the component should take the focus once the page is loaded
169
+ _rename_props: props to change the name of
166
170
  custom_attrs: custom attribute
167
171
  **props: The props of the component.
168
172
 
@@ -185,6 +189,7 @@ class StatNumber(ChakraComponent):
185
189
  id: Optional[Any] = None,
186
190
  class_name: Optional[Any] = None,
187
191
  autofocus: Optional[bool] = None,
192
+ _rename_props: Optional[Dict[str, str]] = None,
188
193
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
189
194
  on_blur: Optional[
190
195
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -242,6 +247,7 @@ class StatNumber(ChakraComponent):
242
247
  id: The id for the component.
243
248
  class_name: The class name for the component.
244
249
  autofocus: Whether the component should take the focus once the page is loaded
250
+ _rename_props: props to change the name of
245
251
  custom_attrs: custom attribute
246
252
  **props: The props of the component.
247
253
 
@@ -264,6 +270,7 @@ class StatHelpText(ChakraComponent):
264
270
  id: Optional[Any] = None,
265
271
  class_name: Optional[Any] = None,
266
272
  autofocus: Optional[bool] = None,
273
+ _rename_props: Optional[Dict[str, str]] = None,
267
274
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
268
275
  on_blur: Optional[
269
276
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -321,6 +328,7 @@ class StatHelpText(ChakraComponent):
321
328
  id: The id for the component.
322
329
  class_name: The class name for the component.
323
330
  autofocus: Whether the component should take the focus once the page is loaded
331
+ _rename_props: props to change the name of
324
332
  custom_attrs: custom attribute
325
333
  **props: The props of the component.
326
334
 
@@ -344,6 +352,7 @@ class StatArrow(ChakraComponent):
344
352
  id: Optional[Any] = None,
345
353
  class_name: Optional[Any] = None,
346
354
  autofocus: Optional[bool] = None,
355
+ _rename_props: Optional[Dict[str, str]] = None,
347
356
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
348
357
  on_blur: Optional[
349
358
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -402,6 +411,7 @@ class StatArrow(ChakraComponent):
402
411
  id: The id for the component.
403
412
  class_name: The class name for the component.
404
413
  autofocus: Whether the component should take the focus once the page is loaded
414
+ _rename_props: props to change the name of
405
415
  custom_attrs: custom attribute
406
416
  **props: The props of the component.
407
417
 
@@ -424,6 +434,7 @@ class StatGroup(ChakraComponent):
424
434
  id: Optional[Any] = None,
425
435
  class_name: Optional[Any] = None,
426
436
  autofocus: Optional[bool] = None,
437
+ _rename_props: Optional[Dict[str, str]] = None,
427
438
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
428
439
  on_blur: Optional[
429
440
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -481,6 +492,7 @@ class StatGroup(ChakraComponent):
481
492
  id: The id for the component.
482
493
  class_name: The class name for the component.
483
494
  autofocus: Whether the component should take the focus once the page is loaded
495
+ _rename_props: props to change the name of
484
496
  custom_attrs: custom attribute
485
497
  **props: The props of the component.
486
498
 
@@ -33,6 +33,7 @@ class Table(ChakraComponent):
33
33
  id: Optional[Any] = None,
34
34
  class_name: Optional[Any] = None,
35
35
  autofocus: Optional[bool] = None,
36
+ _rename_props: Optional[Dict[str, str]] = None,
36
37
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
37
38
  on_blur: Optional[
38
39
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -98,6 +99,7 @@ class Table(ChakraComponent):
98
99
  id: The id for the component.
99
100
  class_name: The class name for the component.
100
101
  autofocus: Whether the component should take the focus once the page is loaded
102
+ _rename_props: props to change the name of
101
103
  custom_attrs: custom attribute
102
104
  **props: The properties of the component.
103
105
 
@@ -118,6 +120,7 @@ class Thead(ChakraComponent):
118
120
  id: Optional[Any] = None,
119
121
  class_name: Optional[Any] = None,
120
122
  autofocus: Optional[bool] = None,
123
+ _rename_props: Optional[Dict[str, str]] = None,
121
124
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
122
125
  on_blur: Optional[
123
126
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -176,6 +179,7 @@ class Thead(ChakraComponent):
176
179
  id: The id for the component.
177
180
  class_name: The class name for the component.
178
181
  autofocus: Whether the component should take the focus once the page is loaded
182
+ _rename_props: props to change the name of
179
183
  custom_attrs: custom attribute
180
184
  **props: The properties of the component.
181
185
 
@@ -199,6 +203,7 @@ class Tbody(ChakraComponent):
199
203
  id: Optional[Any] = None,
200
204
  class_name: Optional[Any] = None,
201
205
  autofocus: Optional[bool] = None,
206
+ _rename_props: Optional[Dict[str, str]] = None,
202
207
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
203
208
  on_blur: Optional[
204
209
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -257,6 +262,7 @@ class Tbody(ChakraComponent):
257
262
  id: The id for the component.
258
263
  class_name: The class name for the component.
259
264
  autofocus: Whether the component should take the focus once the page is loaded
265
+ _rename_props: props to change the name of
260
266
  custom_attrs: custom attribute
261
267
  **props: The properties of the component.
262
268
 
@@ -279,6 +285,7 @@ class Tfoot(ChakraComponent):
279
285
  id: Optional[Any] = None,
280
286
  class_name: Optional[Any] = None,
281
287
  autofocus: Optional[bool] = None,
288
+ _rename_props: Optional[Dict[str, str]] = None,
282
289
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
283
290
  on_blur: Optional[
284
291
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -337,6 +344,7 @@ class Tfoot(ChakraComponent):
337
344
  id: The id for the component.
338
345
  class_name: The class name for the component.
339
346
  autofocus: Whether the component should take the focus once the page is loaded
347
+ _rename_props: props to change the name of
340
348
  custom_attrs: custom attribute
341
349
  **props: The properties of the component.
342
350
 
@@ -360,6 +368,7 @@ class Tr(ChakraComponent):
360
368
  id: Optional[Any] = None,
361
369
  class_name: Optional[Any] = None,
362
370
  autofocus: Optional[bool] = None,
371
+ _rename_props: Optional[Dict[str, str]] = None,
363
372
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
364
373
  on_blur: Optional[
365
374
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -419,6 +428,7 @@ class Tr(ChakraComponent):
419
428
  id: The id for the component.
420
429
  class_name: The class name for the component.
421
430
  autofocus: Whether the component should take the focus once the page is loaded
431
+ _rename_props: props to change the name of
422
432
  custom_attrs: custom attribute
423
433
  **props: The properties of the component.
424
434
 
@@ -439,6 +449,7 @@ class Th(ChakraComponent):
439
449
  id: Optional[Any] = None,
440
450
  class_name: Optional[Any] = None,
441
451
  autofocus: Optional[bool] = None,
452
+ _rename_props: Optional[Dict[str, str]] = None,
442
453
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
443
454
  on_blur: Optional[
444
455
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -497,6 +508,7 @@ class Th(ChakraComponent):
497
508
  id: The id for the component.
498
509
  class_name: The class name for the component.
499
510
  autofocus: Whether the component should take the focus once the page is loaded
511
+ _rename_props: props to change the name of
500
512
  custom_attrs: custom attribute
501
513
  **props: The props of the component.
502
514
 
@@ -520,6 +532,7 @@ class Td(ChakraComponent):
520
532
  id: Optional[Any] = None,
521
533
  class_name: Optional[Any] = None,
522
534
  autofocus: Optional[bool] = None,
535
+ _rename_props: Optional[Dict[str, str]] = None,
523
536
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
524
537
  on_blur: Optional[
525
538
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -578,6 +591,7 @@ class Td(ChakraComponent):
578
591
  id: The id for the component.
579
592
  class_name: The class name for the component.
580
593
  autofocus: Whether the component should take the focus once the page is loaded
594
+ _rename_props: props to change the name of
581
595
  custom_attrs: custom attribute
582
596
  **props: The props of the component.
583
597
 
@@ -601,6 +615,7 @@ class TableCaption(ChakraComponent):
601
615
  id: Optional[Any] = None,
602
616
  class_name: Optional[Any] = None,
603
617
  autofocus: Optional[bool] = None,
618
+ _rename_props: Optional[Dict[str, str]] = None,
604
619
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
605
620
  on_blur: Optional[
606
621
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -659,6 +674,7 @@ class TableCaption(ChakraComponent):
659
674
  id: The id for the component.
660
675
  class_name: The class name for the component.
661
676
  autofocus: Whether the component should take the focus once the page is loaded
677
+ _rename_props: props to change the name of
662
678
  custom_attrs: custom attribute
663
679
  **props: The props of the component.
664
680
 
@@ -681,6 +697,7 @@ class TableContainer(ChakraComponent):
681
697
  id: Optional[Any] = None,
682
698
  class_name: Optional[Any] = None,
683
699
  autofocus: Optional[bool] = None,
700
+ _rename_props: Optional[Dict[str, str]] = None,
684
701
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
685
702
  on_blur: Optional[
686
703
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -738,6 +755,7 @@ class TableContainer(ChakraComponent):
738
755
  id: The id for the component.
739
756
  class_name: The class name for the component.
740
757
  autofocus: Whether the component should take the focus once the page is loaded
758
+ _rename_props: props to change the name of
741
759
  custom_attrs: custom attribute
742
760
  **props: The props of the component.
743
761
 
@@ -28,6 +28,7 @@ class TagLabel(ChakraComponent):
28
28
  id: Optional[Any] = None,
29
29
  class_name: Optional[Any] = None,
30
30
  autofocus: Optional[bool] = None,
31
+ _rename_props: Optional[Dict[str, str]] = None,
31
32
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
32
33
  on_blur: Optional[
33
34
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -85,6 +86,7 @@ class TagLabel(ChakraComponent):
85
86
  id: The id for the component.
86
87
  class_name: The class name for the component.
87
88
  autofocus: Whether the component should take the focus once the page is loaded
89
+ _rename_props: props to change the name of
88
90
  custom_attrs: custom attribute
89
91
  **props: The props of the component.
90
92
 
@@ -107,6 +109,7 @@ class TagLeftIcon(ChakraComponent):
107
109
  id: Optional[Any] = None,
108
110
  class_name: Optional[Any] = None,
109
111
  autofocus: Optional[bool] = None,
112
+ _rename_props: Optional[Dict[str, str]] = None,
110
113
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
111
114
  on_blur: Optional[
112
115
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -164,6 +167,7 @@ class TagLeftIcon(ChakraComponent):
164
167
  id: The id for the component.
165
168
  class_name: The class name for the component.
166
169
  autofocus: Whether the component should take the focus once the page is loaded
170
+ _rename_props: props to change the name of
167
171
  custom_attrs: custom attribute
168
172
  **props: The props of the component.
169
173
 
@@ -186,6 +190,7 @@ class TagRightIcon(ChakraComponent):
186
190
  id: Optional[Any] = None,
187
191
  class_name: Optional[Any] = None,
188
192
  autofocus: Optional[bool] = None,
193
+ _rename_props: Optional[Dict[str, str]] = None,
189
194
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
190
195
  on_blur: Optional[
191
196
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -243,6 +248,7 @@ class TagRightIcon(ChakraComponent):
243
248
  id: The id for the component.
244
249
  class_name: The class name for the component.
245
250
  autofocus: Whether the component should take the focus once the page is loaded
251
+ _rename_props: props to change the name of
246
252
  custom_attrs: custom attribute
247
253
  **props: The props of the component.
248
254
 
@@ -265,6 +271,7 @@ class TagCloseButton(ChakraComponent):
265
271
  id: Optional[Any] = None,
266
272
  class_name: Optional[Any] = None,
267
273
  autofocus: Optional[bool] = None,
274
+ _rename_props: Optional[Dict[str, str]] = None,
268
275
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
269
276
  on_blur: Optional[
270
277
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -322,6 +329,7 @@ class TagCloseButton(ChakraComponent):
322
329
  id: The id for the component.
323
330
  class_name: The class name for the component.
324
331
  autofocus: Whether the component should take the focus once the page is loaded
332
+ _rename_props: props to change the name of
325
333
  custom_attrs: custom attribute
326
334
  **props: The props of the component.
327
335
 
@@ -386,6 +394,7 @@ class Tag(ChakraComponent):
386
394
  id: Optional[Any] = None,
387
395
  class_name: Optional[Any] = None,
388
396
  autofocus: Optional[bool] = None,
397
+ _rename_props: Optional[Dict[str, str]] = None,
389
398
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
390
399
  on_blur: Optional[
391
400
  Union[EventHandler, EventSpec, list, function, BaseVar]