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
@@ -68,6 +68,7 @@ class Caption(BaseHTML):
68
68
  id: Optional[Any] = None,
69
69
  class_name: Optional[Any] = None,
70
70
  autofocus: Optional[bool] = None,
71
+ _rename_props: Optional[Dict[str, str]] = None,
71
72
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
72
73
  on_blur: Optional[
73
74
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -143,6 +144,7 @@ class Caption(BaseHTML):
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 props of the component.
148
150
 
@@ -215,6 +217,7 @@ class Col(BaseHTML):
215
217
  id: Optional[Any] = None,
216
218
  class_name: Optional[Any] = None,
217
219
  autofocus: Optional[bool] = None,
220
+ _rename_props: Optional[Dict[str, str]] = None,
218
221
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
219
222
  on_blur: Optional[
220
223
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -292,6 +295,7 @@ class Col(BaseHTML):
292
295
  id: The id for the component.
293
296
  class_name: The class name for the component.
294
297
  autofocus: Whether the component should take the focus once the page is loaded
298
+ _rename_props: props to change the name of
295
299
  custom_attrs: custom attribute
296
300
  **props: The props of the component.
297
301
 
@@ -364,6 +368,7 @@ class Colgroup(BaseHTML):
364
368
  id: Optional[Any] = None,
365
369
  class_name: Optional[Any] = None,
366
370
  autofocus: Optional[bool] = None,
371
+ _rename_props: Optional[Dict[str, str]] = None,
367
372
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
368
373
  on_blur: Optional[
369
374
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -441,6 +446,7 @@ class Colgroup(BaseHTML):
441
446
  id: The id for the component.
442
447
  class_name: The class name for the component.
443
448
  autofocus: Whether the component should take the focus once the page is loaded
449
+ _rename_props: props to change the name of
444
450
  custom_attrs: custom attribute
445
451
  **props: The props of the component.
446
452
 
@@ -521,6 +527,7 @@ class Table(BaseHTML):
521
527
  id: Optional[Any] = None,
522
528
  class_name: Optional[Any] = None,
523
529
  autofocus: Optional[bool] = None,
530
+ _rename_props: Optional[Dict[str, str]] = None,
524
531
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
525
532
  on_blur: Optional[
526
533
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -600,6 +607,7 @@ class Table(BaseHTML):
600
607
  id: The id for the component.
601
608
  class_name: The class name for the component.
602
609
  autofocus: Whether the component should take the focus once the page is loaded
610
+ _rename_props: props to change the name of
603
611
  custom_attrs: custom attribute
604
612
  **props: The props of the component.
605
613
 
@@ -671,6 +679,7 @@ class Tbody(BaseHTML):
671
679
  id: Optional[Any] = None,
672
680
  class_name: Optional[Any] = None,
673
681
  autofocus: Optional[bool] = None,
682
+ _rename_props: Optional[Dict[str, str]] = None,
674
683
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
675
684
  on_blur: Optional[
676
685
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -747,6 +756,7 @@ class Tbody(BaseHTML):
747
756
  id: The id for the component.
748
757
  class_name: The class name for the component.
749
758
  autofocus: Whether the component should take the focus once the page is loaded
759
+ _rename_props: props to change the name of
750
760
  custom_attrs: custom attribute
751
761
  **props: The props of the component.
752
762
 
@@ -830,6 +840,7 @@ class Td(BaseHTML):
830
840
  id: Optional[Any] = None,
831
841
  class_name: Optional[Any] = None,
832
842
  autofocus: Optional[bool] = None,
843
+ _rename_props: Optional[Dict[str, str]] = None,
833
844
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
834
845
  on_blur: Optional[
835
846
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -910,6 +921,7 @@ class Td(BaseHTML):
910
921
  id: The id for the component.
911
922
  class_name: The class name for the component.
912
923
  autofocus: Whether the component should take the focus once the page is loaded
924
+ _rename_props: props to change the name of
913
925
  custom_attrs: custom attribute
914
926
  **props: The props of the component.
915
927
 
@@ -981,6 +993,7 @@ class Tfoot(BaseHTML):
981
993
  id: Optional[Any] = None,
982
994
  class_name: Optional[Any] = None,
983
995
  autofocus: Optional[bool] = None,
996
+ _rename_props: Optional[Dict[str, str]] = None,
984
997
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
985
998
  on_blur: Optional[
986
999
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1057,6 +1070,7 @@ class Tfoot(BaseHTML):
1057
1070
  id: The id for the component.
1058
1071
  class_name: The class name for the component.
1059
1072
  autofocus: Whether the component should take the focus once the page is loaded
1073
+ _rename_props: props to change the name of
1060
1074
  custom_attrs: custom attribute
1061
1075
  **props: The props of the component.
1062
1076
 
@@ -1143,6 +1157,7 @@ class Th(BaseHTML):
1143
1157
  id: Optional[Any] = None,
1144
1158
  class_name: Optional[Any] = None,
1145
1159
  autofocus: Optional[bool] = None,
1160
+ _rename_props: Optional[Dict[str, str]] = None,
1146
1161
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1147
1162
  on_blur: Optional[
1148
1163
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1224,6 +1239,7 @@ class Th(BaseHTML):
1224
1239
  id: The id for the component.
1225
1240
  class_name: The class name for the component.
1226
1241
  autofocus: Whether the component should take the focus once the page is loaded
1242
+ _rename_props: props to change the name of
1227
1243
  custom_attrs: custom attribute
1228
1244
  **props: The props of the component.
1229
1245
 
@@ -1292,6 +1308,7 @@ class Thead(BaseHTML):
1292
1308
  id: Optional[Any] = None,
1293
1309
  class_name: Optional[Any] = None,
1294
1310
  autofocus: Optional[bool] = None,
1311
+ _rename_props: Optional[Dict[str, str]] = None,
1295
1312
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1296
1313
  on_blur: Optional[
1297
1314
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1367,6 +1384,7 @@ class Thead(BaseHTML):
1367
1384
  id: The id for the component.
1368
1385
  class_name: The class name for the component.
1369
1386
  autofocus: Whether the component should take the focus once the page is loaded
1387
+ _rename_props: props to change the name of
1370
1388
  custom_attrs: custom attribute
1371
1389
  **props: The props of the component.
1372
1390
 
@@ -1438,6 +1456,7 @@ class Tr(BaseHTML):
1438
1456
  id: Optional[Any] = None,
1439
1457
  class_name: Optional[Any] = None,
1440
1458
  autofocus: Optional[bool] = None,
1459
+ _rename_props: Optional[Dict[str, str]] = None,
1441
1460
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1442
1461
  on_blur: Optional[
1443
1462
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1514,6 +1533,7 @@ class Tr(BaseHTML):
1514
1533
  id: The id for the component.
1515
1534
  class_name: The class name for the component.
1516
1535
  autofocus: Whether the component should take the focus once the page is loaded
1536
+ _rename_props: props to change the name of
1517
1537
  custom_attrs: custom attribute
1518
1538
  **props: The props of the component.
1519
1539
 
@@ -66,6 +66,7 @@ class Blockquote(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 Blockquote(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
 
@@ -206,6 +208,7 @@ class Dd(BaseHTML):
206
208
  id: Optional[Any] = None,
207
209
  class_name: Optional[Any] = None,
208
210
  autofocus: Optional[bool] = None,
211
+ _rename_props: Optional[Dict[str, str]] = None,
209
212
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
210
213
  on_blur: Optional[
211
214
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -280,6 +283,7 @@ class Dd(BaseHTML):
280
283
  id: The id for the component.
281
284
  class_name: The class name for the component.
282
285
  autofocus: Whether the component should take the focus once the page is loaded
286
+ _rename_props: props to change the name of
283
287
  custom_attrs: custom attribute
284
288
  **props: The props of the component.
285
289
 
@@ -345,6 +349,7 @@ class Div(BaseHTML):
345
349
  id: Optional[Any] = None,
346
350
  class_name: Optional[Any] = None,
347
351
  autofocus: Optional[bool] = None,
352
+ _rename_props: Optional[Dict[str, str]] = None,
348
353
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
349
354
  on_blur: Optional[
350
355
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -419,6 +424,7 @@ class Div(BaseHTML):
419
424
  id: The id for the component.
420
425
  class_name: The class name for the component.
421
426
  autofocus: Whether the component should take the focus once the page is loaded
427
+ _rename_props: props to change the name of
422
428
  custom_attrs: custom attribute
423
429
  **props: The props of the component.
424
430
 
@@ -484,6 +490,7 @@ class Dl(BaseHTML):
484
490
  id: Optional[Any] = None,
485
491
  class_name: Optional[Any] = None,
486
492
  autofocus: Optional[bool] = None,
493
+ _rename_props: Optional[Dict[str, str]] = None,
487
494
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
488
495
  on_blur: Optional[
489
496
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -558,6 +565,7 @@ class Dl(BaseHTML):
558
565
  id: The id for the component.
559
566
  class_name: The class name for the component.
560
567
  autofocus: Whether the component should take the focus once the page is loaded
568
+ _rename_props: props to change the name of
561
569
  custom_attrs: custom attribute
562
570
  **props: The props of the component.
563
571
 
@@ -623,6 +631,7 @@ class Dt(BaseHTML):
623
631
  id: Optional[Any] = None,
624
632
  class_name: Optional[Any] = None,
625
633
  autofocus: Optional[bool] = None,
634
+ _rename_props: Optional[Dict[str, str]] = None,
626
635
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
627
636
  on_blur: Optional[
628
637
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -697,6 +706,7 @@ class Dt(BaseHTML):
697
706
  id: The id for the component.
698
707
  class_name: The class name for the component.
699
708
  autofocus: Whether the component should take the focus once the page is loaded
709
+ _rename_props: props to change the name of
700
710
  custom_attrs: custom attribute
701
711
  **props: The props of the component.
702
712
 
@@ -762,6 +772,7 @@ class Figcaption(BaseHTML):
762
772
  id: Optional[Any] = None,
763
773
  class_name: Optional[Any] = None,
764
774
  autofocus: Optional[bool] = None,
775
+ _rename_props: Optional[Dict[str, str]] = None,
765
776
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
766
777
  on_blur: Optional[
767
778
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -836,6 +847,7 @@ class Figcaption(BaseHTML):
836
847
  id: The id for the component.
837
848
  class_name: The class name for the component.
838
849
  autofocus: Whether the component should take the focus once the page is loaded
850
+ _rename_props: props to change the name of
839
851
  custom_attrs: custom attribute
840
852
  **props: The props of the component.
841
853
 
@@ -907,6 +919,7 @@ class Hr(BaseHTML):
907
919
  id: Optional[Any] = None,
908
920
  class_name: Optional[Any] = None,
909
921
  autofocus: Optional[bool] = None,
922
+ _rename_props: Optional[Dict[str, str]] = None,
910
923
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
911
924
  on_blur: Optional[
912
925
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -983,6 +996,7 @@ class Hr(BaseHTML):
983
996
  id: The id for the component.
984
997
  class_name: The class name for the component.
985
998
  autofocus: Whether the component should take the focus once the page is loaded
999
+ _rename_props: props to change the name of
986
1000
  custom_attrs: custom attribute
987
1001
  **props: The props of the component.
988
1002
 
@@ -1048,6 +1062,7 @@ class Li(BaseHTML):
1048
1062
  id: Optional[Any] = None,
1049
1063
  class_name: Optional[Any] = None,
1050
1064
  autofocus: Optional[bool] = None,
1065
+ _rename_props: Optional[Dict[str, str]] = None,
1051
1066
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1052
1067
  on_blur: Optional[
1053
1068
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1122,6 +1137,7 @@ class Li(BaseHTML):
1122
1137
  id: The id for the component.
1123
1138
  class_name: The class name for the component.
1124
1139
  autofocus: Whether the component should take the focus once the page is loaded
1140
+ _rename_props: props to change the name of
1125
1141
  custom_attrs: custom attribute
1126
1142
  **props: The props of the component.
1127
1143
 
@@ -1188,6 +1204,7 @@ class Menu(BaseHTML):
1188
1204
  id: Optional[Any] = None,
1189
1205
  class_name: Optional[Any] = None,
1190
1206
  autofocus: Optional[bool] = None,
1207
+ _rename_props: Optional[Dict[str, str]] = None,
1191
1208
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1192
1209
  on_blur: Optional[
1193
1210
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1263,6 +1280,7 @@ class Menu(BaseHTML):
1263
1280
  id: The id for the component.
1264
1281
  class_name: The class name for the component.
1265
1282
  autofocus: Whether the component should take the focus once the page is loaded
1283
+ _rename_props: props to change the name of
1266
1284
  custom_attrs: custom attribute
1267
1285
  **props: The props of the component.
1268
1286
 
@@ -1335,6 +1353,7 @@ class Ol(BaseHTML):
1335
1353
  id: Optional[Any] = None,
1336
1354
  class_name: Optional[Any] = None,
1337
1355
  autofocus: Optional[bool] = None,
1356
+ _rename_props: Optional[Dict[str, str]] = None,
1338
1357
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1339
1358
  on_blur: Optional[
1340
1359
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1412,6 +1431,7 @@ class Ol(BaseHTML):
1412
1431
  id: The id for the component.
1413
1432
  class_name: The class name for the component.
1414
1433
  autofocus: Whether the component should take the focus once the page is loaded
1434
+ _rename_props: props to change the name of
1415
1435
  custom_attrs: custom attribute
1416
1436
  **props: The props of the component.
1417
1437
 
@@ -1477,6 +1497,7 @@ class P(BaseHTML):
1477
1497
  id: Optional[Any] = None,
1478
1498
  class_name: Optional[Any] = None,
1479
1499
  autofocus: Optional[bool] = None,
1500
+ _rename_props: Optional[Dict[str, str]] = None,
1480
1501
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1481
1502
  on_blur: Optional[
1482
1503
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1551,6 +1572,7 @@ class P(BaseHTML):
1551
1572
  id: The id for the component.
1552
1573
  class_name: The class name for the component.
1553
1574
  autofocus: Whether the component should take the focus once the page is loaded
1575
+ _rename_props: props to change the name of
1554
1576
  custom_attrs: custom attribute
1555
1577
  **props: The props of the component.
1556
1578
 
@@ -1616,6 +1638,7 @@ class Pre(BaseHTML):
1616
1638
  id: Optional[Any] = None,
1617
1639
  class_name: Optional[Any] = None,
1618
1640
  autofocus: Optional[bool] = None,
1641
+ _rename_props: Optional[Dict[str, str]] = None,
1619
1642
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1620
1643
  on_blur: Optional[
1621
1644
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1690,6 +1713,7 @@ class Pre(BaseHTML):
1690
1713
  id: The id for the component.
1691
1714
  class_name: The class name for the component.
1692
1715
  autofocus: Whether the component should take the focus once the page is loaded
1716
+ _rename_props: props to change the name of
1693
1717
  custom_attrs: custom attribute
1694
1718
  **props: The props of the component.
1695
1719
 
@@ -1755,6 +1779,7 @@ class Ul(BaseHTML):
1755
1779
  id: Optional[Any] = None,
1756
1780
  class_name: Optional[Any] = None,
1757
1781
  autofocus: Optional[bool] = None,
1782
+ _rename_props: Optional[Dict[str, str]] = None,
1758
1783
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1759
1784
  on_blur: Optional[
1760
1785
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1829,6 +1854,7 @@ class Ul(BaseHTML):
1829
1854
  id: The id for the component.
1830
1855
  class_name: The class name for the component.
1831
1856
  autofocus: Whether the component should take the focus once the page is loaded
1857
+ _rename_props: props to change the name of
1832
1858
  custom_attrs: custom attribute
1833
1859
  **props: The props of the component.
1834
1860
 
@@ -1898,6 +1924,7 @@ class Ins(BaseHTML):
1898
1924
  id: Optional[Any] = None,
1899
1925
  class_name: Optional[Any] = None,
1900
1926
  autofocus: Optional[bool] = None,
1927
+ _rename_props: Optional[Dict[str, str]] = None,
1901
1928
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
1902
1929
  on_blur: Optional[
1903
1930
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -1974,6 +2001,7 @@ class Ins(BaseHTML):
1974
2001
  id: The id for the component.
1975
2002
  class_name: The class name for the component.
1976
2003
  autofocus: Whether the component should take the focus once the page is loaded
2004
+ _rename_props: props to change the name of
1977
2005
  custom_attrs: custom attribute
1978
2006
  **props: The props of the component.
1979
2007
 
@@ -2043,6 +2071,7 @@ class Del(BaseHTML):
2043
2071
  id: Optional[Any] = None,
2044
2072
  class_name: Optional[Any] = None,
2045
2073
  autofocus: Optional[bool] = None,
2074
+ _rename_props: Optional[Dict[str, str]] = None,
2046
2075
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
2047
2076
  on_blur: Optional[
2048
2077
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -2119,6 +2148,7 @@ class Del(BaseHTML):
2119
2148
  id: The id for the component.
2120
2149
  class_name: The class name for the component.
2121
2150
  autofocus: Whether the component should take the focus once the page is loaded
2151
+ _rename_props: props to change the name of
2122
2152
  custom_attrs: custom attribute
2123
2153
  **props: The props of the component.
2124
2154
 
@@ -25,6 +25,7 @@ class Gridjs(Component):
25
25
  id: Optional[Any] = None,
26
26
  class_name: Optional[Any] = None,
27
27
  autofocus: Optional[bool] = None,
28
+ _rename_props: Optional[Dict[str, str]] = None,
28
29
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
29
30
  on_blur: Optional[
30
31
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -82,6 +83,7 @@ class Gridjs(Component):
82
83
  id: The id for the component.
83
84
  class_name: The class name for the component.
84
85
  autofocus: Whether the component should take the focus once the page is loaded
86
+ _rename_props: props to change the name of
85
87
  custom_attrs: custom attribute
86
88
  **props: The props of the component.
87
89
 
@@ -110,6 +112,7 @@ class DataTable(Gridjs):
110
112
  id: Optional[Any] = None,
111
113
  class_name: Optional[Any] = None,
112
114
  autofocus: Optional[bool] = None,
115
+ _rename_props: Optional[Dict[str, str]] = None,
113
116
  custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
114
117
  on_blur: Optional[
115
118
  Union[EventHandler, EventSpec, list, function, BaseVar]
@@ -173,6 +176,7 @@ class DataTable(Gridjs):
173
176
  id: The id for the component.
174
177
  class_name: The class name for the component.
175
178
  autofocus: Whether the component should take the focus once the page is loaded
179
+ _rename_props: props to change the name of
176
180
  custom_attrs: custom attribute
177
181
  **props: The props to pass to the component.
178
182
 
@@ -0,0 +1,5 @@
1
+ """Lucide Icon Component."""
2
+
3
+ from .icon import Icon
4
+
5
+ icon = Icon.create