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
@@ -25,6 +25,7 @@ class Box(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]
@@ -85,6 +86,7 @@ class Box(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
 
@@ -28,6 +28,7 @@ class CardHeader(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 CardHeader(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 CardBody(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 CardBody(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 CardFooter(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 CardFooter(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
 
@@ -327,6 +333,7 @@ class Card(ChakraComponent):
327
333
  id: Optional[Any] = None,
328
334
  class_name: Optional[Any] = None,
329
335
  autofocus: Optional[bool] = None,
336
+ _rename_props: Optional[Dict[str, str]] = None,
330
337
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
331
338
  on_blur: Optional[
332
339
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -20,6 +20,7 @@ class Center(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 Center(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
 
@@ -99,6 +101,7 @@ class Square(ChakraComponent):
99
101
  id: Optional[Any] = None,
100
102
  class_name: Optional[Any] = None,
101
103
  autofocus: Optional[bool] = None,
104
+ _rename_props: Optional[Dict[str, str]] = None,
102
105
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
103
106
  on_blur: Optional[
104
107
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -156,6 +159,7 @@ class Square(ChakraComponent):
156
159
  id: The id for the component.
157
160
  class_name: The class name for the component.
158
161
  autofocus: Whether the component should take the focus once the page is loaded
162
+ _rename_props: props to change the name of
159
163
  custom_attrs: custom attribute
160
164
  **props: The props of the component.
161
165
 
@@ -178,6 +182,7 @@ class Circle(ChakraComponent):
178
182
  id: Optional[Any] = None,
179
183
  class_name: Optional[Any] = None,
180
184
  autofocus: Optional[bool] = None,
185
+ _rename_props: Optional[Dict[str, str]] = None,
181
186
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
182
187
  on_blur: Optional[
183
188
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -235,6 +240,7 @@ class Circle(ChakraComponent):
235
240
  id: The id for the component.
236
241
  class_name: The class name for the component.
237
242
  autofocus: Whether the component should take the focus once the page is loaded
243
+ _rename_props: props to change the name of
238
244
  custom_attrs: custom attribute
239
245
  **props: The props of the component.
240
246
 
@@ -22,6 +22,7 @@ class Container(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 Container(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
 
@@ -31,6 +31,7 @@ class Flex(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]
@@ -95,6 +96,7 @@ class Flex(ChakraComponent):
95
96
  id: The id for the component.
96
97
  class_name: The class name for the component.
97
98
  autofocus: Whether the component should take the focus once the page is loaded
99
+ _rename_props: props to change the name of
98
100
  custom_attrs: custom attribute
99
101
  **props: The props of the component.
100
102
 
@@ -29,6 +29,7 @@ class Grid(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 Grid(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
 
@@ -122,6 +124,7 @@ class GridItem(ChakraComponent):
122
124
  id: Optional[Any] = None,
123
125
  class_name: Optional[Any] = None,
124
126
  autofocus: Optional[bool] = None,
127
+ _rename_props: Optional[Dict[str, str]] = None,
125
128
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
126
129
  on_blur: Optional[
127
130
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -186,6 +189,7 @@ class GridItem(ChakraComponent):
186
189
  id: The id for the component.
187
190
  class_name: The class name for the component.
188
191
  autofocus: Whether the component should take the focus once the page is loaded
192
+ _rename_props: props to change the name of
189
193
  custom_attrs: custom attribute
190
194
  **props: The props of the component.
191
195
 
@@ -221,6 +225,7 @@ class ResponsiveGrid(ChakraComponent):
221
225
  id: Optional[Any] = None,
222
226
  class_name: Optional[Any] = None,
223
227
  autofocus: Optional[bool] = None,
228
+ _rename_props: Optional[Dict[str, str]] = None,
224
229
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
225
230
  on_blur: Optional[
226
231
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -291,6 +296,7 @@ class ResponsiveGrid(ChakraComponent):
291
296
  id: The id for the component.
292
297
  class_name: The class name for the component.
293
298
  autofocus: Whether the component should take the focus once the page is loaded
299
+ _rename_props: props to change the name of
294
300
  custom_attrs: custom attribute
295
301
  **props: The props of the component.
296
302
 
@@ -28,6 +28,7 @@ class Html(Box):
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]
@@ -89,6 +90,7 @@ class Html(Box):
89
90
  id: The id for the component.
90
91
  class_name: The class name for the component.
91
92
  autofocus: Whether the component should take the focus once the page is loaded
93
+ _rename_props: props to change the name of
92
94
  custom_attrs: custom attribute
93
95
  **props: The props to pass to the component.
94
96
 
@@ -20,6 +20,7 @@ class Spacer(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 Spacer(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
 
@@ -35,6 +35,7 @@ class Stack(ChakraComponent):
35
35
  id: Optional[Any] = None,
36
36
  class_name: Optional[Any] = None,
37
37
  autofocus: Optional[bool] = None,
38
+ _rename_props: Optional[Dict[str, str]] = None,
38
39
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
39
40
  on_blur: Optional[
40
41
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -100,6 +101,7 @@ class Stack(ChakraComponent):
100
101
  id: The id for the component.
101
102
  class_name: The class name for the component.
102
103
  autofocus: Whether the component should take the focus once the page is loaded
104
+ _rename_props: props to change the name of
103
105
  custom_attrs: custom attribute
104
106
  **props: The props of the component.
105
107
 
@@ -135,6 +137,7 @@ class Hstack(Stack):
135
137
  id: Optional[Any] = None,
136
138
  class_name: Optional[Any] = None,
137
139
  autofocus: Optional[bool] = None,
140
+ _rename_props: Optional[Dict[str, str]] = None,
138
141
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
139
142
  on_blur: Optional[
140
143
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -200,6 +203,7 @@ class Hstack(Stack):
200
203
  id: The id for the component.
201
204
  class_name: The class name for the component.
202
205
  autofocus: Whether the component should take the focus once the page is loaded
206
+ _rename_props: props to change the name of
203
207
  custom_attrs: custom attribute
204
208
  **props: The props of the component.
205
209
 
@@ -235,6 +239,7 @@ class Vstack(Stack):
235
239
  id: Optional[Any] = None,
236
240
  class_name: Optional[Any] = None,
237
241
  autofocus: Optional[bool] = None,
242
+ _rename_props: Optional[Dict[str, str]] = None,
238
243
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
239
244
  on_blur: Optional[
240
245
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -300,6 +305,7 @@ class Vstack(Stack):
300
305
  id: The id for the component.
301
306
  class_name: The class name for the component.
302
307
  autofocus: Whether the component should take the focus once the page is loaded
308
+ _rename_props: props to change the name of
303
309
  custom_attrs: custom attribute
304
310
  **props: The props of the component.
305
311
 
@@ -30,6 +30,7 @@ class Wrap(ChakraComponent):
30
30
  id: Optional[Any] = None,
31
31
  class_name: Optional[Any] = None,
32
32
  autofocus: Optional[bool] = None,
33
+ _rename_props: Optional[Dict[str, str]] = None,
33
34
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
34
35
  on_blur: Optional[
35
36
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -95,6 +96,7 @@ class Wrap(ChakraComponent):
95
96
  id: The id for the component.
96
97
  class_name: The class name for the component.
97
98
  autofocus: Whether the component should take the focus once the page is loaded
99
+ _rename_props: props to change the name of
98
100
  custom_attrs: custom attribute
99
101
  **props: The properties of the component.
100
102
 
@@ -114,6 +116,7 @@ class WrapItem(ChakraComponent):
114
116
  id: Optional[Any] = None,
115
117
  class_name: Optional[Any] = None,
116
118
  autofocus: Optional[bool] = None,
119
+ _rename_props: Optional[Dict[str, str]] = None,
117
120
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
118
121
  on_blur: Optional[
119
122
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -171,6 +174,7 @@ class WrapItem(ChakraComponent):
171
174
  id: The id for the component.
172
175
  class_name: The class name for the component.
173
176
  autofocus: Whether the component should take the focus once the page is loaded
177
+ _rename_props: props to change the name of
174
178
  custom_attrs: custom attribute
175
179
  **props: The props of the component.
176
180
 
@@ -36,6 +36,7 @@ class Avatar(ChakraComponent):
36
36
  id: Optional[Any] = None,
37
37
  class_name: Optional[Any] = None,
38
38
  autofocus: Optional[bool] = None,
39
+ _rename_props: Optional[Dict[str, str]] = None,
39
40
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
40
41
  on_blur: Optional[
41
42
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -104,6 +105,7 @@ class Avatar(ChakraComponent):
104
105
  id: The id for the component.
105
106
  class_name: The class name for the component.
106
107
  autofocus: Whether the component should take the focus once the page is loaded
108
+ _rename_props: props to change the name of
107
109
  custom_attrs: custom attribute
108
110
  **props: The props of the component.
109
111
 
@@ -126,6 +128,7 @@ class AvatarBadge(ChakraComponent):
126
128
  id: Optional[Any] = None,
127
129
  class_name: Optional[Any] = None,
128
130
  autofocus: Optional[bool] = None,
131
+ _rename_props: Optional[Dict[str, str]] = None,
129
132
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
130
133
  on_blur: Optional[
131
134
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -183,6 +186,7 @@ class AvatarBadge(ChakraComponent):
183
186
  id: The id for the component.
184
187
  class_name: The class name for the component.
185
188
  autofocus: Whether the component should take the focus once the page is loaded
189
+ _rename_props: props to change the name of
186
190
  custom_attrs: custom attribute
187
191
  **props: The props of the component.
188
192
 
@@ -207,6 +211,7 @@ class AvatarGroup(ChakraComponent):
207
211
  id: Optional[Any] = None,
208
212
  class_name: Optional[Any] = None,
209
213
  autofocus: Optional[bool] = None,
214
+ _rename_props: Optional[Dict[str, str]] = None,
210
215
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
211
216
  on_blur: Optional[
212
217
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -266,6 +271,7 @@ class AvatarGroup(ChakraComponent):
266
271
  id: The id for the component.
267
272
  class_name: The class name for the component.
268
273
  autofocus: Whether the component should take the focus once the page is loaded
274
+ _rename_props: props to change the name of
269
275
  custom_attrs: custom attribute
270
276
  **props: The props of the component.
271
277
 
@@ -22,6 +22,7 @@ class ChakraIconComponent(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]
@@ -79,6 +80,7 @@ class ChakraIconComponent(ChakraComponent):
79
80
  id: The id for the component.
80
81
  class_name: The class name for the component.
81
82
  autofocus: Whether the component should take the focus once the page is loaded
83
+ _rename_props: props to change the name of
82
84
  custom_attrs: custom attribute
83
85
  **props: The props of the component.
84
86
 
@@ -101,6 +103,7 @@ class Icon(ChakraIconComponent):
101
103
  id: Optional[Any] = None,
102
104
  class_name: Optional[Any] = None,
103
105
  autofocus: Optional[bool] = None,
106
+ _rename_props: Optional[Dict[str, str]] = None,
104
107
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
105
108
  on_blur: Optional[
106
109
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -160,6 +163,7 @@ class Icon(ChakraIconComponent):
160
163
  id: The id for the component.
161
164
  class_name: The class name for the component.
162
165
  autofocus: Whether the component should take the focus once the page is loaded
166
+ _rename_props: props to change the name of
163
167
  custom_attrs: custom attribute
164
168
  **props: The keyword arguments
165
169
 
@@ -37,6 +37,7 @@ class Image(ChakraComponent):
37
37
  id: Optional[Any] = None,
38
38
  class_name: Optional[Any] = None,
39
39
  autofocus: Optional[bool] = None,
40
+ _rename_props: Optional[Dict[str, str]] = None,
40
41
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
41
42
  on_blur: Optional[
42
43
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -111,6 +112,7 @@ class Image(ChakraComponent):
111
112
  id: The id for the component.
112
113
  class_name: The class name for the component.
113
114
  autofocus: Whether the component should take the focus once the page is loaded
115
+ _rename_props: props to change the name of
114
116
  custom_attrs: custom attribute
115
117
  **props: The props of the image.
116
118
 
@@ -27,6 +27,7 @@ class Breadcrumb(ChakraComponent):
27
27
  id: Optional[Any] = None,
28
28
  class_name: Optional[Any] = None,
29
29
  autofocus: Optional[bool] = None,
30
+ _rename_props: Optional[Dict[str, str]] = None,
30
31
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
31
32
  on_blur: Optional[
32
33
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -89,6 +90,7 @@ class Breadcrumb(ChakraComponent):
89
90
  id: The id for the component.
90
91
  class_name: The class name for the component.
91
92
  autofocus: Whether the component should take the focus once the page is loaded
93
+ _rename_props: props to change the name of
92
94
  custom_attrs: custom attribute
93
95
  **props: The properties of the component.
94
96
 
@@ -114,6 +116,7 @@ class BreadcrumbItem(ChakraComponent):
114
116
  id: Optional[Any] = None,
115
117
  class_name: Optional[Any] = None,
116
118
  autofocus: Optional[bool] = None,
119
+ _rename_props: Optional[Dict[str, str]] = None,
117
120
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
118
121
  on_blur: Optional[
119
122
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -177,6 +180,7 @@ class BreadcrumbItem(ChakraComponent):
177
180
  id: The id for the component.
178
181
  class_name: The class name for the component.
179
182
  autofocus: Whether the component should take the focus once the page is loaded
183
+ _rename_props: props to change the name of
180
184
  custom_attrs: custom attribute
181
185
  **props: The properties of the component.
182
186
 
@@ -196,6 +200,7 @@ class BreadcrumbSeparator(ChakraComponent):
196
200
  id: Optional[Any] = None,
197
201
  class_name: Optional[Any] = None,
198
202
  autofocus: Optional[bool] = None,
203
+ _rename_props: Optional[Dict[str, str]] = None,
199
204
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
200
205
  on_blur: Optional[
201
206
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -253,6 +258,7 @@ class BreadcrumbSeparator(ChakraComponent):
253
258
  id: The id for the component.
254
259
  class_name: The class name for the component.
255
260
  autofocus: Whether the component should take the focus once the page is loaded
261
+ _rename_props: props to change the name of
256
262
  custom_attrs: custom attribute
257
263
  **props: The props of the component.
258
264
 
@@ -281,6 +287,7 @@ class BreadcrumbLink(Link):
281
287
  id: Optional[Any] = None,
282
288
  class_name: Optional[Any] = None,
283
289
  autofocus: Optional[bool] = None,
290
+ _rename_props: Optional[Dict[str, str]] = None,
284
291
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
285
292
  on_blur: Optional[
286
293
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -344,6 +351,7 @@ class BreadcrumbLink(Link):
344
351
  id: The id for the component.
345
352
  class_name: The class name for the component.
346
353
  autofocus: Whether the component should take the focus once the page is loaded
354
+ _rename_props: props to change the name of
347
355
  custom_attrs: custom attribute
348
356
  **props: The props of the component.
349
357
 
@@ -31,6 +31,7 @@ class Link(ChakraComponent):
31
31
  id: Optional[Any] = None,
32
32
  class_name: Optional[Any] = None,
33
33
  autofocus: Optional[bool] = None,
34
+ _rename_props: Optional[Dict[str, str]] = None,
34
35
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
35
36
  on_blur: Optional[
36
37
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -93,6 +94,7 @@ class Link(ChakraComponent):
93
94
  id: The id for the component.
94
95
  class_name: The class name for the component.
95
96
  autofocus: Whether the component should take the focus once the page is loaded
97
+ _rename_props: props to change the name of
96
98
  custom_attrs: custom attribute
97
99
  **props: The props of the component.
98
100
 
@@ -23,6 +23,7 @@ class LinkOverlay(ChakraComponent):
23
23
  id: Optional[Any] = None,
24
24
  class_name: Optional[Any] = None,
25
25
  autofocus: Optional[bool] = None,
26
+ _rename_props: Optional[Dict[str, str]] = None,
26
27
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
27
28
  on_blur: Optional[
28
29
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -82,6 +83,7 @@ class LinkOverlay(ChakraComponent):
82
83
  id: The id for the component.
83
84
  class_name: The class name for the component.
84
85
  autofocus: Whether the component should take the focus once the page is loaded
86
+ _rename_props: props to change the name of
85
87
  custom_attrs: custom attribute
86
88
  **props: The props of the component.
87
89
 
@@ -104,6 +106,7 @@ class LinkBox(ChakraComponent):
104
106
  id: Optional[Any] = None,
105
107
  class_name: Optional[Any] = None,
106
108
  autofocus: Optional[bool] = None,
109
+ _rename_props: Optional[Dict[str, str]] = None,
107
110
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
108
111
  on_blur: Optional[
109
112
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -161,6 +164,7 @@ class LinkBox(ChakraComponent):
161
164
  id: The id for the component.
162
165
  class_name: The class name for the component.
163
166
  autofocus: Whether the component should take the focus once the page is loaded
167
+ _rename_props: props to change the name of
164
168
  custom_attrs: custom attribute
165
169
  **props: The props of the component.
166
170
 
@@ -80,6 +80,7 @@ class Stepper(ChakraComponent):
80
80
  id: Optional[Any] = None,
81
81
  class_name: Optional[Any] = None,
82
82
  autofocus: Optional[bool] = None,
83
+ _rename_props: Optional[Dict[str, str]] = None,
83
84
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
84
85
  on_blur: Optional[
85
86
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -143,6 +144,7 @@ class Stepper(ChakraComponent):
143
144
  id: The id for the component.
144
145
  class_name: The class name for the component.
145
146
  autofocus: Whether the component should take the focus once the page is loaded
147
+ _rename_props: props to change the name of
146
148
  custom_attrs: custom attribute
147
149
  **props: The properties of the component.
148
150
 
@@ -162,6 +164,7 @@ class Step(ChakraComponent):
162
164
  id: Optional[Any] = None,
163
165
  class_name: Optional[Any] = None,
164
166
  autofocus: Optional[bool] = None,
167
+ _rename_props: Optional[Dict[str, str]] = None,
165
168
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
166
169
  on_blur: Optional[
167
170
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -219,6 +222,7 @@ class Step(ChakraComponent):
219
222
  id: The id for the component.
220
223
  class_name: The class name for the component.
221
224
  autofocus: Whether the component should take the focus once the page is loaded
225
+ _rename_props: props to change the name of
222
226
  custom_attrs: custom attribute
223
227
  **props: The props of the component.
224
228
 
@@ -241,6 +245,7 @@ class StepDescription(ChakraComponent):
241
245
  id: Optional[Any] = None,
242
246
  class_name: Optional[Any] = None,
243
247
  autofocus: Optional[bool] = None,
248
+ _rename_props: Optional[Dict[str, str]] = None,
244
249
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
245
250
  on_blur: Optional[
246
251
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -298,6 +303,7 @@ class StepDescription(ChakraComponent):
298
303
  id: The id for the component.
299
304
  class_name: The class name for the component.
300
305
  autofocus: Whether the component should take the focus once the page is loaded
306
+ _rename_props: props to change the name of
301
307
  custom_attrs: custom attribute
302
308
  **props: The props of the component.
303
309
 
@@ -320,6 +326,7 @@ class StepIcon(ChakraComponent):
320
326
  id: Optional[Any] = None,
321
327
  class_name: Optional[Any] = None,
322
328
  autofocus: Optional[bool] = None,
329
+ _rename_props: Optional[Dict[str, str]] = None,
323
330
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
324
331
  on_blur: Optional[
325
332
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -377,6 +384,7 @@ class StepIcon(ChakraComponent):
377
384
  id: The id for the component.
378
385
  class_name: The class name for the component.
379
386
  autofocus: Whether the component should take the focus once the page is loaded
387
+ _rename_props: props to change the name of
380
388
  custom_attrs: custom attribute
381
389
  **props: The props of the component.
382
390
 
@@ -399,6 +407,7 @@ class StepIndicator(ChakraComponent):
399
407
  id: Optional[Any] = None,
400
408
  class_name: Optional[Any] = None,
401
409
  autofocus: Optional[bool] = None,
410
+ _rename_props: Optional[Dict[str, str]] = None,
402
411
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
403
412
  on_blur: Optional[
404
413
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -456,6 +465,7 @@ class StepIndicator(ChakraComponent):
456
465
  id: The id for the component.
457
466
  class_name: The class name for the component.
458
467
  autofocus: Whether the component should take the focus once the page is loaded
468
+ _rename_props: props to change the name of
459
469
  custom_attrs: custom attribute
460
470
  **props: The props of the component.
461
471
 
@@ -478,6 +488,7 @@ class StepNumber(ChakraComponent):
478
488
  id: Optional[Any] = None,
479
489
  class_name: Optional[Any] = None,
480
490
  autofocus: Optional[bool] = None,
491
+ _rename_props: Optional[Dict[str, str]] = None,
481
492
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
482
493
  on_blur: Optional[
483
494
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -535,6 +546,7 @@ class StepNumber(ChakraComponent):
535
546
  id: The id for the component.
536
547
  class_name: The class name for the component.
537
548
  autofocus: Whether the component should take the focus once the page is loaded
549
+ _rename_props: props to change the name of
538
550
  custom_attrs: custom attribute
539
551
  **props: The props of the component.
540
552
 
@@ -557,6 +569,7 @@ class StepSeparator(ChakraComponent):
557
569
  id: Optional[Any] = None,
558
570
  class_name: Optional[Any] = None,
559
571
  autofocus: Optional[bool] = None,
572
+ _rename_props: Optional[Dict[str, str]] = None,
560
573
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
561
574
  on_blur: Optional[
562
575
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -614,6 +627,7 @@ class StepSeparator(ChakraComponent):
614
627
  id: The id for the component.
615
628
  class_name: The class name for the component.
616
629
  autofocus: Whether the component should take the focus once the page is loaded
630
+ _rename_props: props to change the name of
617
631
  custom_attrs: custom attribute
618
632
  **props: The props of the component.
619
633
 
@@ -639,6 +653,7 @@ class StepStatus(ChakraComponent):
639
653
  id: Optional[Any] = None,
640
654
  class_name: Optional[Any] = None,
641
655
  autofocus: Optional[bool] = None,
656
+ _rename_props: Optional[Dict[str, str]] = None,
642
657
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
643
658
  on_blur: Optional[
644
659
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -697,6 +712,7 @@ class StepStatus(ChakraComponent):
697
712
  id: The id for the component.
698
713
  class_name: The class name for the component.
699
714
  autofocus: Whether the component should take the focus once the page is loaded
715
+ _rename_props: props to change the name of
700
716
  custom_attrs: custom attribute
701
717
  **props: The props of the component.
702
718
 
@@ -719,6 +735,7 @@ class StepTitle(ChakraComponent):
719
735
  id: Optional[Any] = None,
720
736
  class_name: Optional[Any] = None,
721
737
  autofocus: Optional[bool] = None,
738
+ _rename_props: Optional[Dict[str, str]] = None,
722
739
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
723
740
  on_blur: Optional[
724
741
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -776,6 +793,7 @@ class StepTitle(ChakraComponent):
776
793
  id: The id for the component.
777
794
  class_name: The class name for the component.
778
795
  autofocus: Whether the component should take the focus once the page is loaded
796
+ _rename_props: props to change the name of
779
797
  custom_attrs: custom attribute
780
798
  **props: The props of the component.
781
799