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
@@ -90,6 +90,7 @@ class Area(BaseHTML):
90
90
  id: Optional[Any] = None,
91
91
  class_name: Optional[Any] = None,
92
92
  autofocus: Optional[bool] = None,
93
+ _rename_props: Optional[Dict[str, str]] = None,
93
94
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
94
95
  on_blur: Optional[
95
96
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -175,6 +176,7 @@ class Area(BaseHTML):
175
176
  id: The id for the component.
176
177
  class_name: The class name for the component.
177
178
  autofocus: Whether the component should take the focus once the page is loaded
179
+ _rename_props: props to change the name of
178
180
  custom_attrs: custom attribute
179
181
  **props: The props of the component.
180
182
 
@@ -260,6 +262,7 @@ class Audio(BaseHTML):
260
262
  id: Optional[Any] = None,
261
263
  class_name: Optional[Any] = None,
262
264
  autofocus: Optional[bool] = None,
265
+ _rename_props: Optional[Dict[str, str]] = None,
263
266
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
264
267
  on_blur: Optional[
265
268
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -342,6 +345,7 @@ class Audio(BaseHTML):
342
345
  id: The id for the component.
343
346
  class_name: The class name for the component.
344
347
  autofocus: Whether the component should take the focus once the page is loaded
348
+ _rename_props: props to change the name of
345
349
  custom_attrs: custom attribute
346
350
  **props: The props of the component.
347
351
 
@@ -448,6 +452,7 @@ class Img(BaseHTML):
448
452
  id: Optional[Any] = None,
449
453
  class_name: Optional[Any] = None,
450
454
  autofocus: Optional[bool] = None,
455
+ _rename_props: Optional[Dict[str, str]] = None,
451
456
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
452
457
  on_blur: Optional[
453
458
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -537,6 +542,7 @@ class Img(BaseHTML):
537
542
  id: The id for the component.
538
543
  class_name: The class name for the component.
539
544
  autofocus: Whether the component should take the focus once the page is loaded
545
+ _rename_props: props to change the name of
540
546
  custom_attrs: custom attribute
541
547
  **props: The props of the component.
542
548
 
@@ -603,6 +609,7 @@ class Map(BaseHTML):
603
609
  id: Optional[Any] = None,
604
610
  class_name: Optional[Any] = None,
605
611
  autofocus: Optional[bool] = None,
612
+ _rename_props: Optional[Dict[str, str]] = None,
606
613
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
607
614
  on_blur: Optional[
608
615
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -678,6 +685,7 @@ class Map(BaseHTML):
678
685
  id: The id for the component.
679
686
  class_name: The class name for the component.
680
687
  autofocus: Whether the component should take the focus once the page is loaded
688
+ _rename_props: props to change the name of
681
689
  custom_attrs: custom attribute
682
690
  **props: The props of the component.
683
691
 
@@ -754,6 +762,7 @@ class Track(BaseHTML):
754
762
  id: Optional[Any] = None,
755
763
  class_name: Optional[Any] = None,
756
764
  autofocus: Optional[bool] = None,
765
+ _rename_props: Optional[Dict[str, str]] = None,
757
766
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
758
767
  on_blur: Optional[
759
768
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -833,6 +842,7 @@ class Track(BaseHTML):
833
842
  id: The id for the component.
834
843
  class_name: The class name for the component.
835
844
  autofocus: Whether the component should take the focus once the page is loaded
845
+ _rename_props: props to change the name of
836
846
  custom_attrs: custom attribute
837
847
  **props: The props of the component.
838
848
 
@@ -930,6 +940,7 @@ class Video(BaseHTML):
930
940
  id: Optional[Any] = None,
931
941
  class_name: Optional[Any] = None,
932
942
  autofocus: Optional[bool] = None,
943
+ _rename_props: Optional[Dict[str, str]] = None,
933
944
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
934
945
  on_blur: Optional[
935
946
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1016,6 +1027,7 @@ class Video(BaseHTML):
1016
1027
  id: The id for the component.
1017
1028
  class_name: The class name for the component.
1018
1029
  autofocus: Whether the component should take the focus once the page is loaded
1030
+ _rename_props: props to change the name of
1019
1031
  custom_attrs: custom attribute
1020
1032
  **props: The props of the component.
1021
1033
 
@@ -1089,6 +1101,7 @@ class Embed(BaseHTML):
1089
1101
  id: Optional[Any] = None,
1090
1102
  class_name: Optional[Any] = None,
1091
1103
  autofocus: Optional[bool] = None,
1104
+ _rename_props: Optional[Dict[str, str]] = None,
1092
1105
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1093
1106
  on_blur: Optional[
1094
1107
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1167,6 +1180,7 @@ class Embed(BaseHTML):
1167
1180
  id: The id for the component.
1168
1181
  class_name: The class name for the component.
1169
1182
  autofocus: Whether the component should take the focus once the page is loaded
1183
+ _rename_props: props to change the name of
1170
1184
  custom_attrs: custom attribute
1171
1185
  **props: The props of the component.
1172
1186
 
@@ -1259,6 +1273,7 @@ class Iframe(BaseHTML):
1259
1273
  id: Optional[Any] = None,
1260
1274
  class_name: Optional[Any] = None,
1261
1275
  autofocus: Optional[bool] = None,
1276
+ _rename_props: Optional[Dict[str, str]] = None,
1262
1277
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1263
1278
  on_blur: Optional[
1264
1279
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1344,6 +1359,7 @@ class Iframe(BaseHTML):
1344
1359
  id: The id for the component.
1345
1360
  class_name: The class name for the component.
1346
1361
  autofocus: Whether the component should take the focus once the page is loaded
1362
+ _rename_props: props to change the name of
1347
1363
  custom_attrs: custom attribute
1348
1364
  **props: The props of the component.
1349
1365
 
@@ -1425,6 +1441,7 @@ class Object(BaseHTML):
1425
1441
  id: Optional[Any] = None,
1426
1442
  class_name: Optional[Any] = None,
1427
1443
  autofocus: Optional[bool] = None,
1444
+ _rename_props: Optional[Dict[str, str]] = None,
1428
1445
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1429
1446
  on_blur: Optional[
1430
1447
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1507,6 +1524,7 @@ class Object(BaseHTML):
1507
1524
  id: The id for the component.
1508
1525
  class_name: The class name for the component.
1509
1526
  autofocus: Whether the component should take the focus once the page is loaded
1527
+ _rename_props: props to change the name of
1510
1528
  custom_attrs: custom attribute
1511
1529
  **props: The props of the component.
1512
1530
 
@@ -1572,6 +1590,7 @@ class Picture(BaseHTML):
1572
1590
  id: Optional[Any] = None,
1573
1591
  class_name: Optional[Any] = None,
1574
1592
  autofocus: Optional[bool] = None,
1593
+ _rename_props: Optional[Dict[str, str]] = None,
1575
1594
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1576
1595
  on_blur: Optional[
1577
1596
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1646,6 +1665,7 @@ class Picture(BaseHTML):
1646
1665
  id: The id for the component.
1647
1666
  class_name: The class name for the component.
1648
1667
  autofocus: Whether the component should take the focus once the page is loaded
1668
+ _rename_props: props to change the name of
1649
1669
  custom_attrs: custom attribute
1650
1670
  **props: The props of the component.
1651
1671
 
@@ -1711,6 +1731,7 @@ class Portal(BaseHTML):
1711
1731
  id: Optional[Any] = None,
1712
1732
  class_name: Optional[Any] = None,
1713
1733
  autofocus: Optional[bool] = None,
1734
+ _rename_props: Optional[Dict[str, str]] = None,
1714
1735
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1715
1736
  on_blur: Optional[
1716
1737
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1785,6 +1806,7 @@ class Portal(BaseHTML):
1785
1806
  id: The id for the component.
1786
1807
  class_name: The class name for the component.
1787
1808
  autofocus: Whether the component should take the focus once the page is loaded
1809
+ _rename_props: props to change the name of
1788
1810
  custom_attrs: custom attribute
1789
1811
  **props: The props of the component.
1790
1812
 
@@ -1861,6 +1883,7 @@ class Source(BaseHTML):
1861
1883
  id: Optional[Any] = None,
1862
1884
  class_name: Optional[Any] = None,
1863
1885
  autofocus: Optional[bool] = None,
1886
+ _rename_props: Optional[Dict[str, str]] = None,
1864
1887
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1865
1888
  on_blur: Optional[
1866
1889
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1940,6 +1963,7 @@ class Source(BaseHTML):
1940
1963
  id: The id for the component.
1941
1964
  class_name: The class name for the component.
1942
1965
  autofocus: Whether the component should take the focus once the page is loaded
1966
+ _rename_props: props to change the name of
1943
1967
  custom_attrs: custom attribute
1944
1968
  **props: The props of the component.
1945
1969
 
@@ -2011,6 +2035,7 @@ class Svg(BaseHTML):
2011
2035
  id: Optional[Any] = None,
2012
2036
  class_name: Optional[Any] = None,
2013
2037
  autofocus: Optional[bool] = None,
2038
+ _rename_props: Optional[Dict[str, str]] = None,
2014
2039
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
2015
2040
  on_blur: Optional[
2016
2041
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -2087,6 +2112,7 @@ class Svg(BaseHTML):
2087
2112
  id: The id for the component.
2088
2113
  class_name: The class name for the component.
2089
2114
  autofocus: Whether the component should take the focus once the page is loaded
2115
+ _rename_props: props to change the name of
2090
2116
  custom_attrs: custom attribute
2091
2117
  **props: The props of the component.
2092
2118
 
@@ -2153,6 +2179,7 @@ class Path(BaseHTML):
2153
2179
  id: Optional[Any] = None,
2154
2180
  class_name: Optional[Any] = None,
2155
2181
  autofocus: Optional[bool] = None,
2182
+ _rename_props: Optional[Dict[str, str]] = None,
2156
2183
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
2157
2184
  on_blur: Optional[
2158
2185
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -2228,6 +2255,7 @@ class Path(BaseHTML):
2228
2255
  id: The id for the component.
2229
2256
  class_name: The class name for the component.
2230
2257
  autofocus: Whether the component should take the focus once the page is loaded
2258
+ _rename_props: props to change the name of
2231
2259
  custom_attrs: custom attribute
2232
2260
  **props: The props of the component.
2233
2261
 
@@ -70,6 +70,7 @@ class Base(BaseHTML):
70
70
  id: Optional[Any] = None,
71
71
  class_name: Optional[Any] = None,
72
72
  autofocus: Optional[bool] = None,
73
+ _rename_props: Optional[Dict[str, str]] = None,
73
74
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
74
75
  on_blur: Optional[
75
76
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -144,6 +145,7 @@ class Base(BaseHTML):
144
145
  id: The id for the component.
145
146
  class_name: The class name for the component.
146
147
  autofocus: Whether the component should take the focus once the page is loaded
148
+ _rename_props: props to change the name of
147
149
  custom_attrs: custom attribute
148
150
  **props: The props of the component.
149
151
 
@@ -209,6 +211,7 @@ class Head(BaseHTML):
209
211
  id: Optional[Any] = None,
210
212
  class_name: Optional[Any] = None,
211
213
  autofocus: Optional[bool] = None,
214
+ _rename_props: Optional[Dict[str, str]] = None,
212
215
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
213
216
  on_blur: Optional[
214
217
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -283,6 +286,7 @@ class Head(BaseHTML):
283
286
  id: The id for the component.
284
287
  class_name: The class name for the component.
285
288
  autofocus: Whether the component should take the focus once the page is loaded
289
+ _rename_props: props to change the name of
286
290
  custom_attrs: custom attribute
287
291
  **props: The props of the component.
288
292
 
@@ -369,6 +373,7 @@ class Link(BaseHTML):
369
373
  id: Optional[Any] = None,
370
374
  class_name: Optional[Any] = None,
371
375
  autofocus: Optional[bool] = None,
376
+ _rename_props: Optional[Dict[str, str]] = None,
372
377
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
373
378
  on_blur: Optional[
374
379
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -443,6 +448,7 @@ class Link(BaseHTML):
443
448
  id: The id for the component.
444
449
  class_name: The class name for the component.
445
450
  autofocus: Whether the component should take the focus once the page is loaded
451
+ _rename_props: props to change the name of
446
452
  custom_attrs: custom attribute
447
453
  **props: The props of the component.
448
454
 
@@ -518,6 +524,7 @@ class Meta(BaseHTML):
518
524
  id: Optional[Any] = None,
519
525
  class_name: Optional[Any] = None,
520
526
  autofocus: Optional[bool] = None,
527
+ _rename_props: Optional[Dict[str, str]] = None,
521
528
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
522
529
  on_blur: Optional[
523
530
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -592,6 +599,7 @@ class Meta(BaseHTML):
592
599
  id: The id for the component.
593
600
  class_name: The class name for the component.
594
601
  autofocus: Whether the component should take the focus once the page is loaded
602
+ _rename_props: props to change the name of
595
603
  custom_attrs: custom attribute
596
604
  **props: The props of the component.
597
605
 
@@ -614,6 +622,7 @@ class Title(Element):
614
622
  id: Optional[Any] = None,
615
623
  class_name: Optional[Any] = None,
616
624
  autofocus: Optional[bool] = None,
625
+ _rename_props: Optional[Dict[str, str]] = None,
617
626
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
618
627
  on_blur: Optional[
619
628
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -671,6 +680,7 @@ class Title(Element):
671
680
  id: The id for the component.
672
681
  class_name: The class name for the component.
673
682
  autofocus: Whether the component should take the focus once the page is loaded
683
+ _rename_props: props to change the name of
674
684
  custom_attrs: custom attribute
675
685
  **props: The props of the component.
676
686
 
@@ -66,6 +66,7 @@ class Details(BaseHTML):
66
66
  id: Optional[Any] = None,
67
67
  class_name: Optional[Any] = None,
68
68
  autofocus: Optional[bool] = None,
69
+ _rename_props: Optional[Dict[str, str]] = None,
69
70
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
70
71
  on_blur: Optional[
71
72
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -141,6 +142,7 @@ class Details(BaseHTML):
141
142
  id: The id for the component.
142
143
  class_name: The class name for the component.
143
144
  autofocus: Whether the component should take the focus once the page is loaded
145
+ _rename_props: props to change the name of
144
146
  custom_attrs: custom attribute
145
147
  **props: The props of the component.
146
148
 
@@ -207,6 +209,7 @@ class Dialog(BaseHTML):
207
209
  id: Optional[Any] = None,
208
210
  class_name: Optional[Any] = None,
209
211
  autofocus: Optional[bool] = None,
212
+ _rename_props: Optional[Dict[str, str]] = None,
210
213
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
211
214
  on_blur: Optional[
212
215
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -282,6 +285,7 @@ class Dialog(BaseHTML):
282
285
  id: The id for the component.
283
286
  class_name: The class name for the component.
284
287
  autofocus: Whether the component should take the focus once the page is loaded
288
+ _rename_props: props to change the name of
285
289
  custom_attrs: custom attribute
286
290
  **props: The props of the component.
287
291
 
@@ -347,6 +351,7 @@ class Summary(BaseHTML):
347
351
  id: Optional[Any] = None,
348
352
  class_name: Optional[Any] = None,
349
353
  autofocus: Optional[bool] = None,
354
+ _rename_props: Optional[Dict[str, str]] = None,
350
355
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
351
356
  on_blur: Optional[
352
357
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -421,6 +426,7 @@ class Summary(BaseHTML):
421
426
  id: The id for the component.
422
427
  class_name: The class name for the component.
423
428
  autofocus: Whether the component should take the focus once the page is loaded
429
+ _rename_props: props to change the name of
424
430
  custom_attrs: custom attribute
425
431
  **props: The props of the component.
426
432
 
@@ -486,6 +492,7 @@ class Slot(BaseHTML):
486
492
  id: Optional[Any] = None,
487
493
  class_name: Optional[Any] = None,
488
494
  autofocus: Optional[bool] = None,
495
+ _rename_props: Optional[Dict[str, str]] = None,
489
496
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
490
497
  on_blur: Optional[
491
498
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -560,6 +567,7 @@ class Slot(BaseHTML):
560
567
  id: The id for the component.
561
568
  class_name: The class name for the component.
562
569
  autofocus: Whether the component should take the focus once the page is loaded
570
+ _rename_props: props to change the name of
563
571
  custom_attrs: custom attribute
564
572
  **props: The props of the component.
565
573
 
@@ -625,6 +633,7 @@ class Template(BaseHTML):
625
633
  id: Optional[Any] = None,
626
634
  class_name: Optional[Any] = None,
627
635
  autofocus: Optional[bool] = None,
636
+ _rename_props: Optional[Dict[str, str]] = None,
628
637
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
629
638
  on_blur: Optional[
630
639
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -699,6 +708,7 @@ class Template(BaseHTML):
699
708
  id: The id for the component.
700
709
  class_name: The class name for the component.
701
710
  autofocus: Whether the component should take the focus once the page is loaded
711
+ _rename_props: props to change the name of
702
712
  custom_attrs: custom attribute
703
713
  **props: The props of the component.
704
714
 
@@ -764,6 +774,7 @@ class Math(BaseHTML):
764
774
  id: Optional[Any] = None,
765
775
  class_name: Optional[Any] = None,
766
776
  autofocus: Optional[bool] = None,
777
+ _rename_props: Optional[Dict[str, str]] = None,
767
778
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
768
779
  on_blur: Optional[
769
780
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -838,6 +849,7 @@ class Math(BaseHTML):
838
849
  id: The id for the component.
839
850
  class_name: The class name for the component.
840
851
  autofocus: Whether the component should take the focus once the page is loaded
852
+ _rename_props: props to change the name of
841
853
  custom_attrs: custom attribute
842
854
  **props: The props of the component.
843
855
 
@@ -906,6 +918,7 @@ class Html(BaseHTML):
906
918
  id: Optional[Any] = None,
907
919
  class_name: Optional[Any] = None,
908
920
  autofocus: Optional[bool] = None,
921
+ _rename_props: Optional[Dict[str, str]] = None,
909
922
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
910
923
  on_blur: Optional[
911
924
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -981,6 +994,7 @@ class Html(BaseHTML):
981
994
  id: The id for the component.
982
995
  class_name: The class name for the component.
983
996
  autofocus: Whether the component should take the focus once the page is loaded
997
+ _rename_props: props to change the name of
984
998
  custom_attrs: custom attribute
985
999
  **props: The props of the component.
986
1000
 
@@ -71,6 +71,7 @@ class Canvas(BaseHTML):
71
71
  id: Optional[Any] = None,
72
72
  class_name: Optional[Any] = None,
73
73
  autofocus: Optional[bool] = None,
74
+ _rename_props: Optional[Dict[str, str]] = None,
74
75
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
75
76
  on_blur: Optional[
76
77
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -147,6 +148,7 @@ class Canvas(BaseHTML):
147
148
  id: The id for the component.
148
149
  class_name: The class name for the component.
149
150
  autofocus: Whether the component should take the focus once the page is loaded
151
+ _rename_props: props to change the name of
150
152
  custom_attrs: custom attribute
151
153
  **props: The props of the component.
152
154
 
@@ -212,6 +214,7 @@ class Noscript(BaseHTML):
212
214
  id: Optional[Any] = None,
213
215
  class_name: Optional[Any] = None,
214
216
  autofocus: Optional[bool] = None,
217
+ _rename_props: Optional[Dict[str, str]] = None,
215
218
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
216
219
  on_blur: Optional[
217
220
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -286,6 +289,7 @@ class Noscript(BaseHTML):
286
289
  id: The id for the component.
287
290
  class_name: The class name for the component.
288
291
  autofocus: Whether the component should take the focus once the page is loaded
292
+ _rename_props: props to change the name of
289
293
  custom_attrs: custom attribute
290
294
  **props: The props of the component.
291
295
 
@@ -374,6 +378,7 @@ class Script(BaseHTML):
374
378
  id: Optional[Any] = None,
375
379
  class_name: Optional[Any] = None,
376
380
  autofocus: Optional[bool] = None,
381
+ _rename_props: Optional[Dict[str, str]] = None,
377
382
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
378
383
  on_blur: Optional[
379
384
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -457,6 +462,7 @@ class Script(BaseHTML):
457
462
  id: The id for the component.
458
463
  class_name: The class name for the component.
459
464
  autofocus: Whether the component should take the focus once the page is loaded
465
+ _rename_props: props to change the name of
460
466
  custom_attrs: custom attribute
461
467
  **props: The props of the component.
462
468
 
@@ -71,6 +71,7 @@ class Body(BaseHTML):
71
71
  id: Optional[Any] = None,
72
72
  class_name: Optional[Any] = None,
73
73
  autofocus: Optional[bool] = None,
74
+ _rename_props: Optional[Dict[str, str]] = None,
74
75
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
75
76
  on_blur: Optional[
76
77
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -145,6 +146,7 @@ class Body(BaseHTML):
145
146
  id: The id for the component.
146
147
  class_name: The class name for the component.
147
148
  autofocus: Whether the component should take the focus once the page is loaded
149
+ _rename_props: props to change the name of
148
150
  custom_attrs: custom attribute
149
151
  **props: The props of the component.
150
152
 
@@ -210,6 +212,7 @@ class Address(BaseHTML):
210
212
  id: Optional[Any] = None,
211
213
  class_name: Optional[Any] = None,
212
214
  autofocus: Optional[bool] = None,
215
+ _rename_props: Optional[Dict[str, str]] = None,
213
216
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
214
217
  on_blur: Optional[
215
218
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -284,6 +287,7 @@ class Address(BaseHTML):
284
287
  id: The id for the component.
285
288
  class_name: The class name for the component.
286
289
  autofocus: Whether the component should take the focus once the page is loaded
290
+ _rename_props: props to change the name of
287
291
  custom_attrs: custom attribute
288
292
  **props: The props of the component.
289
293
 
@@ -349,6 +353,7 @@ class Article(BaseHTML):
349
353
  id: Optional[Any] = None,
350
354
  class_name: Optional[Any] = None,
351
355
  autofocus: Optional[bool] = None,
356
+ _rename_props: Optional[Dict[str, str]] = None,
352
357
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
353
358
  on_blur: Optional[
354
359
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -423,6 +428,7 @@ class Article(BaseHTML):
423
428
  id: The id for the component.
424
429
  class_name: The class name for the component.
425
430
  autofocus: Whether the component should take the focus once the page is loaded
431
+ _rename_props: props to change the name of
426
432
  custom_attrs: custom attribute
427
433
  **props: The props of the component.
428
434
 
@@ -488,6 +494,7 @@ class Aside(BaseHTML):
488
494
  id: Optional[Any] = None,
489
495
  class_name: Optional[Any] = None,
490
496
  autofocus: Optional[bool] = None,
497
+ _rename_props: Optional[Dict[str, str]] = None,
491
498
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
492
499
  on_blur: Optional[
493
500
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -562,6 +569,7 @@ class Aside(BaseHTML):
562
569
  id: The id for the component.
563
570
  class_name: The class name for the component.
564
571
  autofocus: Whether the component should take the focus once the page is loaded
572
+ _rename_props: props to change the name of
565
573
  custom_attrs: custom attribute
566
574
  **props: The props of the component.
567
575
 
@@ -627,6 +635,7 @@ class Footer(BaseHTML):
627
635
  id: Optional[Any] = None,
628
636
  class_name: Optional[Any] = None,
629
637
  autofocus: Optional[bool] = None,
638
+ _rename_props: Optional[Dict[str, str]] = None,
630
639
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
631
640
  on_blur: Optional[
632
641
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -701,6 +710,7 @@ class Footer(BaseHTML):
701
710
  id: The id for the component.
702
711
  class_name: The class name for the component.
703
712
  autofocus: Whether the component should take the focus once the page is loaded
713
+ _rename_props: props to change the name of
704
714
  custom_attrs: custom attribute
705
715
  **props: The props of the component.
706
716
 
@@ -766,6 +776,7 @@ class Header(BaseHTML):
766
776
  id: Optional[Any] = None,
767
777
  class_name: Optional[Any] = None,
768
778
  autofocus: Optional[bool] = None,
779
+ _rename_props: Optional[Dict[str, str]] = None,
769
780
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
770
781
  on_blur: Optional[
771
782
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -840,6 +851,7 @@ class Header(BaseHTML):
840
851
  id: The id for the component.
841
852
  class_name: The class name for the component.
842
853
  autofocus: Whether the component should take the focus once the page is loaded
854
+ _rename_props: props to change the name of
843
855
  custom_attrs: custom attribute
844
856
  **props: The props of the component.
845
857
 
@@ -905,6 +917,7 @@ class H1(BaseHTML):
905
917
  id: Optional[Any] = None,
906
918
  class_name: Optional[Any] = None,
907
919
  autofocus: Optional[bool] = None,
920
+ _rename_props: Optional[Dict[str, str]] = None,
908
921
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
909
922
  on_blur: Optional[
910
923
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -979,6 +992,7 @@ class H1(BaseHTML):
979
992
  id: The id for the component.
980
993
  class_name: The class name for the component.
981
994
  autofocus: Whether the component should take the focus once the page is loaded
995
+ _rename_props: props to change the name of
982
996
  custom_attrs: custom attribute
983
997
  **props: The props of the component.
984
998
 
@@ -1044,6 +1058,7 @@ class H2(BaseHTML):
1044
1058
  id: Optional[Any] = None,
1045
1059
  class_name: Optional[Any] = None,
1046
1060
  autofocus: Optional[bool] = None,
1061
+ _rename_props: Optional[Dict[str, str]] = None,
1047
1062
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1048
1063
  on_blur: Optional[
1049
1064
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1118,6 +1133,7 @@ class H2(BaseHTML):
1118
1133
  id: The id for the component.
1119
1134
  class_name: The class name for the component.
1120
1135
  autofocus: Whether the component should take the focus once the page is loaded
1136
+ _rename_props: props to change the name of
1121
1137
  custom_attrs: custom attribute
1122
1138
  **props: The props of the component.
1123
1139
 
@@ -1183,6 +1199,7 @@ class H3(BaseHTML):
1183
1199
  id: Optional[Any] = None,
1184
1200
  class_name: Optional[Any] = None,
1185
1201
  autofocus: Optional[bool] = None,
1202
+ _rename_props: Optional[Dict[str, str]] = None,
1186
1203
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1187
1204
  on_blur: Optional[
1188
1205
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1257,6 +1274,7 @@ class H3(BaseHTML):
1257
1274
  id: The id for the component.
1258
1275
  class_name: The class name for the component.
1259
1276
  autofocus: Whether the component should take the focus once the page is loaded
1277
+ _rename_props: props to change the name of
1260
1278
  custom_attrs: custom attribute
1261
1279
  **props: The props of the component.
1262
1280
 
@@ -1322,6 +1340,7 @@ class H4(BaseHTML):
1322
1340
  id: Optional[Any] = None,
1323
1341
  class_name: Optional[Any] = None,
1324
1342
  autofocus: Optional[bool] = None,
1343
+ _rename_props: Optional[Dict[str, str]] = None,
1325
1344
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1326
1345
  on_blur: Optional[
1327
1346
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1396,6 +1415,7 @@ class H4(BaseHTML):
1396
1415
  id: The id for the component.
1397
1416
  class_name: The class name for the component.
1398
1417
  autofocus: Whether the component should take the focus once the page is loaded
1418
+ _rename_props: props to change the name of
1399
1419
  custom_attrs: custom attribute
1400
1420
  **props: The props of the component.
1401
1421
 
@@ -1461,6 +1481,7 @@ class H5(BaseHTML):
1461
1481
  id: Optional[Any] = None,
1462
1482
  class_name: Optional[Any] = None,
1463
1483
  autofocus: Optional[bool] = None,
1484
+ _rename_props: Optional[Dict[str, str]] = None,
1464
1485
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1465
1486
  on_blur: Optional[
1466
1487
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1535,6 +1556,7 @@ class H5(BaseHTML):
1535
1556
  id: The id for the component.
1536
1557
  class_name: The class name for the component.
1537
1558
  autofocus: Whether the component should take the focus once the page is loaded
1559
+ _rename_props: props to change the name of
1538
1560
  custom_attrs: custom attribute
1539
1561
  **props: The props of the component.
1540
1562
 
@@ -1600,6 +1622,7 @@ class H6(BaseHTML):
1600
1622
  id: Optional[Any] = None,
1601
1623
  class_name: Optional[Any] = None,
1602
1624
  autofocus: Optional[bool] = None,
1625
+ _rename_props: Optional[Dict[str, str]] = None,
1603
1626
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1604
1627
  on_blur: Optional[
1605
1628
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1674,6 +1697,7 @@ class H6(BaseHTML):
1674
1697
  id: The id for the component.
1675
1698
  class_name: The class name for the component.
1676
1699
  autofocus: Whether the component should take the focus once the page is loaded
1700
+ _rename_props: props to change the name of
1677
1701
  custom_attrs: custom attribute
1678
1702
  **props: The props of the component.
1679
1703
 
@@ -1739,6 +1763,7 @@ class Main(BaseHTML):
1739
1763
  id: Optional[Any] = None,
1740
1764
  class_name: Optional[Any] = None,
1741
1765
  autofocus: Optional[bool] = None,
1766
+ _rename_props: Optional[Dict[str, str]] = None,
1742
1767
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1743
1768
  on_blur: Optional[
1744
1769
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1813,6 +1838,7 @@ class Main(BaseHTML):
1813
1838
  id: The id for the component.
1814
1839
  class_name: The class name for the component.
1815
1840
  autofocus: Whether the component should take the focus once the page is loaded
1841
+ _rename_props: props to change the name of
1816
1842
  custom_attrs: custom attribute
1817
1843
  **props: The props of the component.
1818
1844
 
@@ -1878,6 +1904,7 @@ class Nav(BaseHTML):
1878
1904
  id: Optional[Any] = None,
1879
1905
  class_name: Optional[Any] = None,
1880
1906
  autofocus: Optional[bool] = None,
1907
+ _rename_props: Optional[Dict[str, str]] = None,
1881
1908
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1882
1909
  on_blur: Optional[
1883
1910
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1952,6 +1979,7 @@ class Nav(BaseHTML):
1952
1979
  id: The id for the component.
1953
1980
  class_name: The class name for the component.
1954
1981
  autofocus: Whether the component should take the focus once the page is loaded
1982
+ _rename_props: props to change the name of
1955
1983
  custom_attrs: custom attribute
1956
1984
  **props: The props of the component.
1957
1985
 
@@ -2017,6 +2045,7 @@ class Section(BaseHTML):
2017
2045
  id: Optional[Any] = None,
2018
2046
  class_name: Optional[Any] = None,
2019
2047
  autofocus: Optional[bool] = None,
2048
+ _rename_props: Optional[Dict[str, str]] = None,
2020
2049
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
2021
2050
  on_blur: Optional[
2022
2051
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -2091,6 +2120,7 @@ class Section(BaseHTML):
2091
2120
  id: The id for the component.
2092
2121
  class_name: The class name for the component.
2093
2122
  autofocus: Whether the component should take the focus once the page is loaded
2123
+ _rename_props: props to change the name of
2094
2124
  custom_attrs: custom attribute
2095
2125
  **props: The props of the component.
2096
2126