reflex 0.7.11a1__py3-none-any.whl → 0.7.12__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 (142) hide show
  1. reflex/app.py +8 -4
  2. reflex/components/base/app_wrap.pyi +1 -0
  3. reflex/components/base/body.pyi +2 -0
  4. reflex/components/base/document.pyi +10 -0
  5. reflex/components/base/error_boundary.pyi +2 -0
  6. reflex/components/base/fragment.pyi +2 -0
  7. reflex/components/base/head.pyi +4 -0
  8. reflex/components/base/link.pyi +4 -0
  9. reflex/components/base/meta.pyi +8 -0
  10. reflex/components/base/script.pyi +2 -0
  11. reflex/components/base/strict_mode.pyi +2 -0
  12. reflex/components/component.py +39 -63
  13. reflex/components/core/auto_scroll.pyi +2 -0
  14. reflex/components/core/banner.pyi +10 -0
  15. reflex/components/core/client_side_routing.pyi +4 -0
  16. reflex/components/core/clipboard.pyi +2 -0
  17. reflex/components/core/debounce.pyi +1 -0
  18. reflex/components/core/html.pyi +2 -0
  19. reflex/components/core/sticky.pyi +4 -0
  20. reflex/components/core/upload.pyi +10 -0
  21. reflex/components/datadisplay/code.pyi +4 -0
  22. reflex/components/datadisplay/dataeditor.py +3 -3
  23. reflex/components/datadisplay/dataeditor.pyi +2 -0
  24. reflex/components/datadisplay/shiki_code_block.pyi +6 -0
  25. reflex/components/el/element.pyi +2 -0
  26. reflex/components/el/elements/base.pyi +2 -0
  27. reflex/components/el/elements/forms.pyi +34 -0
  28. reflex/components/el/elements/inline.pyi +56 -0
  29. reflex/components/el/elements/media.pyi +50 -0
  30. reflex/components/el/elements/metadata.pyi +12 -0
  31. reflex/components/el/elements/other.pyi +14 -0
  32. reflex/components/el/elements/scripts.pyi +6 -0
  33. reflex/components/el/elements/sectioning.pyi +30 -0
  34. reflex/components/el/elements/tables.pyi +20 -0
  35. reflex/components/el/elements/typography.pyi +30 -0
  36. reflex/components/gridjs/datatable.pyi +4 -0
  37. reflex/components/lucide/icon.py +3 -1
  38. reflex/components/lucide/icon.pyi +8 -0
  39. reflex/components/markdown/markdown.pyi +2 -0
  40. reflex/components/moment/moment.pyi +2 -0
  41. reflex/components/next/base.pyi +2 -0
  42. reflex/components/next/image.pyi +2 -0
  43. reflex/components/next/link.pyi +2 -0
  44. reflex/components/next/video.pyi +2 -0
  45. reflex/components/plotly/plotly.pyi +18 -0
  46. reflex/components/radix/primitives/accordion.py +1 -1
  47. reflex/components/radix/primitives/accordion.pyi +14 -0
  48. reflex/components/radix/primitives/base.py +0 -2
  49. reflex/components/radix/primitives/base.pyi +4 -0
  50. reflex/components/radix/primitives/drawer.py +1 -1
  51. reflex/components/radix/primitives/drawer.pyi +22 -0
  52. reflex/components/radix/primitives/form.py +1 -1
  53. reflex/components/radix/primitives/form.pyi +20 -0
  54. reflex/components/radix/primitives/progress.py +1 -1
  55. reflex/components/radix/primitives/progress.pyi +10 -0
  56. reflex/components/radix/primitives/slider.py +1 -1
  57. reflex/components/radix/primitives/slider.pyi +10 -0
  58. reflex/components/radix/themes/base.py +1 -1
  59. reflex/components/radix/themes/base.pyi +15 -0
  60. reflex/components/radix/themes/color_mode.pyi +5 -0
  61. reflex/components/radix/themes/components/alert_dialog.pyi +11 -0
  62. reflex/components/radix/themes/components/aspect_ratio.pyi +2 -0
  63. reflex/components/radix/themes/components/avatar.pyi +2 -0
  64. reflex/components/radix/themes/components/badge.pyi +2 -0
  65. reflex/components/radix/themes/components/button.pyi +2 -0
  66. reflex/components/radix/themes/components/callout.pyi +10 -0
  67. reflex/components/radix/themes/components/card.pyi +2 -0
  68. reflex/components/radix/themes/components/checkbox.pyi +6 -0
  69. reflex/components/radix/themes/components/checkbox_cards.pyi +4 -0
  70. reflex/components/radix/themes/components/checkbox_group.pyi +4 -0
  71. reflex/components/radix/themes/components/context_menu.pyi +26 -0
  72. reflex/components/radix/themes/components/data_list.pyi +8 -0
  73. reflex/components/radix/themes/components/dialog.pyi +12 -0
  74. reflex/components/radix/themes/components/dropdown_menu.pyi +14 -0
  75. reflex/components/radix/themes/components/hover_card.pyi +7 -0
  76. reflex/components/radix/themes/components/icon_button.pyi +2 -0
  77. reflex/components/radix/themes/components/inset.pyi +2 -0
  78. reflex/components/radix/themes/components/popover.pyi +6 -0
  79. reflex/components/radix/themes/components/progress.pyi +2 -0
  80. reflex/components/radix/themes/components/radio.pyi +2 -0
  81. reflex/components/radix/themes/components/radio_cards.pyi +4 -0
  82. reflex/components/radix/themes/components/radio_group.pyi +8 -0
  83. reflex/components/radix/themes/components/scroll_area.pyi +2 -0
  84. reflex/components/radix/themes/components/segmented_control.pyi +4 -0
  85. reflex/components/radix/themes/components/select.pyi +18 -0
  86. reflex/components/radix/themes/components/separator.pyi +2 -0
  87. reflex/components/radix/themes/components/skeleton.pyi +2 -0
  88. reflex/components/radix/themes/components/slider.pyi +2 -0
  89. reflex/components/radix/themes/components/spinner.pyi +2 -0
  90. reflex/components/radix/themes/components/switch.pyi +2 -0
  91. reflex/components/radix/themes/components/table.pyi +14 -0
  92. reflex/components/radix/themes/components/tabs.pyi +10 -0
  93. reflex/components/radix/themes/components/text_area.pyi +2 -0
  94. reflex/components/radix/themes/components/text_field.pyi +6 -0
  95. reflex/components/radix/themes/components/tooltip.pyi +2 -0
  96. reflex/components/radix/themes/layout/base.pyi +2 -0
  97. reflex/components/radix/themes/layout/box.pyi +2 -0
  98. reflex/components/radix/themes/layout/center.pyi +2 -0
  99. reflex/components/radix/themes/layout/container.pyi +1 -0
  100. reflex/components/radix/themes/layout/flex.pyi +2 -0
  101. reflex/components/radix/themes/layout/grid.pyi +2 -0
  102. reflex/components/radix/themes/layout/list.pyi +10 -0
  103. reflex/components/radix/themes/layout/section.pyi +2 -0
  104. reflex/components/radix/themes/layout/spacer.pyi +2 -0
  105. reflex/components/radix/themes/layout/stack.py +5 -4
  106. reflex/components/radix/themes/layout/stack.pyi +70 -16
  107. reflex/components/radix/themes/typography/blockquote.pyi +2 -0
  108. reflex/components/radix/themes/typography/code.pyi +2 -0
  109. reflex/components/radix/themes/typography/heading.pyi +2 -0
  110. reflex/components/radix/themes/typography/link.pyi +2 -0
  111. reflex/components/radix/themes/typography/text.pyi +14 -0
  112. reflex/components/react_player/audio.pyi +2 -0
  113. reflex/components/react_player/react_player.pyi +2 -0
  114. reflex/components/react_player/video.pyi +2 -0
  115. reflex/components/recharts/cartesian.pyi +38 -0
  116. reflex/components/recharts/charts.pyi +24 -0
  117. reflex/components/recharts/general.pyi +12 -0
  118. reflex/components/recharts/polar.pyi +12 -0
  119. reflex/components/recharts/recharts.pyi +4 -0
  120. reflex/components/sonner/toast.pyi +2 -0
  121. reflex/components/suneditor/editor.pyi +2 -0
  122. reflex/config.py +3 -0
  123. reflex/constants/compiler.py +12 -6
  124. reflex/constants/installer.py +1 -1
  125. reflex/event.py +21 -0
  126. reflex/experimental/layout.pyi +5 -0
  127. reflex/reflex.py +24 -0
  128. reflex/testing.py +2 -1
  129. reflex/utils/exec.py +5 -0
  130. reflex/utils/format.py +4 -11
  131. reflex/utils/net.py +35 -2
  132. reflex/utils/prerequisites.py +10 -4
  133. reflex/utils/pyi_generator.py +7 -1
  134. reflex/utils/types.py +7 -5
  135. reflex/vars/base.py +7 -8
  136. reflex/vars/object.py +9 -2
  137. {reflex-0.7.11a1.dist-info → reflex-0.7.12.dist-info}/METADATA +4 -4
  138. {reflex-0.7.11a1.dist-info → reflex-0.7.12.dist-info}/RECORD +142 -141
  139. scripts/hatch_build.py +50 -0
  140. {reflex-0.7.11a1.dist-info → reflex-0.7.12.dist-info}/WHEEL +0 -0
  141. {reflex-0.7.11a1.dist-info → reflex-0.7.12.dist-info}/entry_points.txt +0 -0
  142. {reflex-0.7.11a1.dist-info → reflex-0.7.12.dist-info}/licenses/LICENSE +0 -0
@@ -203,6 +203,7 @@ class Body(BaseHTML):
203
203
  | None = None,
204
204
  key: Any | None = None,
205
205
  id: Any | None = None,
206
+ ref: Var | None = None,
206
207
  class_name: Any | None = None,
207
208
  autofocus: bool | None = None,
208
209
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -246,6 +247,7 @@ class Body(BaseHTML):
246
247
  style: The style of the component.
247
248
  key: A unique key for the component.
248
249
  id: The id for the component.
250
+ ref: The Var to pass as the ref to the component.
249
251
  class_name: The class name for the component.
250
252
  autofocus: Whether the component should take the focus once the page is loaded
251
253
  custom_attrs: custom attribute
@@ -447,6 +449,7 @@ class Address(BaseHTML):
447
449
  | None = None,
448
450
  key: Any | None = None,
449
451
  id: Any | None = None,
452
+ ref: Var | None = None,
450
453
  class_name: Any | None = None,
451
454
  autofocus: bool | None = None,
452
455
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -490,6 +493,7 @@ class Address(BaseHTML):
490
493
  style: The style of the component.
491
494
  key: A unique key for the component.
492
495
  id: The id for the component.
496
+ ref: The Var to pass as the ref to the component.
493
497
  class_name: The class name for the component.
494
498
  autofocus: Whether the component should take the focus once the page is loaded
495
499
  custom_attrs: custom attribute
@@ -691,6 +695,7 @@ class Article(BaseHTML):
691
695
  | None = None,
692
696
  key: Any | None = None,
693
697
  id: Any | None = None,
698
+ ref: Var | None = None,
694
699
  class_name: Any | None = None,
695
700
  autofocus: bool | None = None,
696
701
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -734,6 +739,7 @@ class Article(BaseHTML):
734
739
  style: The style of the component.
735
740
  key: A unique key for the component.
736
741
  id: The id for the component.
742
+ ref: The Var to pass as the ref to the component.
737
743
  class_name: The class name for the component.
738
744
  autofocus: Whether the component should take the focus once the page is loaded
739
745
  custom_attrs: custom attribute
@@ -935,6 +941,7 @@ class Aside(BaseHTML):
935
941
  | None = None,
936
942
  key: Any | None = None,
937
943
  id: Any | None = None,
944
+ ref: Var | None = None,
938
945
  class_name: Any | None = None,
939
946
  autofocus: bool | None = None,
940
947
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -978,6 +985,7 @@ class Aside(BaseHTML):
978
985
  style: The style of the component.
979
986
  key: A unique key for the component.
980
987
  id: The id for the component.
988
+ ref: The Var to pass as the ref to the component.
981
989
  class_name: The class name for the component.
982
990
  autofocus: Whether the component should take the focus once the page is loaded
983
991
  custom_attrs: custom attribute
@@ -1179,6 +1187,7 @@ class Footer(BaseHTML):
1179
1187
  | None = None,
1180
1188
  key: Any | None = None,
1181
1189
  id: Any | None = None,
1190
+ ref: Var | None = None,
1182
1191
  class_name: Any | None = None,
1183
1192
  autofocus: bool | None = None,
1184
1193
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1222,6 +1231,7 @@ class Footer(BaseHTML):
1222
1231
  style: The style of the component.
1223
1232
  key: A unique key for the component.
1224
1233
  id: The id for the component.
1234
+ ref: The Var to pass as the ref to the component.
1225
1235
  class_name: The class name for the component.
1226
1236
  autofocus: Whether the component should take the focus once the page is loaded
1227
1237
  custom_attrs: custom attribute
@@ -1423,6 +1433,7 @@ class Header(BaseHTML):
1423
1433
  | None = None,
1424
1434
  key: Any | None = None,
1425
1435
  id: Any | None = None,
1436
+ ref: Var | None = None,
1426
1437
  class_name: Any | None = None,
1427
1438
  autofocus: bool | None = None,
1428
1439
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1466,6 +1477,7 @@ class Header(BaseHTML):
1466
1477
  style: The style of the component.
1467
1478
  key: A unique key for the component.
1468
1479
  id: The id for the component.
1480
+ ref: The Var to pass as the ref to the component.
1469
1481
  class_name: The class name for the component.
1470
1482
  autofocus: Whether the component should take the focus once the page is loaded
1471
1483
  custom_attrs: custom attribute
@@ -1667,6 +1679,7 @@ class H1(BaseHTML):
1667
1679
  | None = None,
1668
1680
  key: Any | None = None,
1669
1681
  id: Any | None = None,
1682
+ ref: Var | None = None,
1670
1683
  class_name: Any | None = None,
1671
1684
  autofocus: bool | None = None,
1672
1685
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1710,6 +1723,7 @@ class H1(BaseHTML):
1710
1723
  style: The style of the component.
1711
1724
  key: A unique key for the component.
1712
1725
  id: The id for the component.
1726
+ ref: The Var to pass as the ref to the component.
1713
1727
  class_name: The class name for the component.
1714
1728
  autofocus: Whether the component should take the focus once the page is loaded
1715
1729
  custom_attrs: custom attribute
@@ -1911,6 +1925,7 @@ class H2(BaseHTML):
1911
1925
  | None = None,
1912
1926
  key: Any | None = None,
1913
1927
  id: Any | None = None,
1928
+ ref: Var | None = None,
1914
1929
  class_name: Any | None = None,
1915
1930
  autofocus: bool | None = None,
1916
1931
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1954,6 +1969,7 @@ class H2(BaseHTML):
1954
1969
  style: The style of the component.
1955
1970
  key: A unique key for the component.
1956
1971
  id: The id for the component.
1972
+ ref: The Var to pass as the ref to the component.
1957
1973
  class_name: The class name for the component.
1958
1974
  autofocus: Whether the component should take the focus once the page is loaded
1959
1975
  custom_attrs: custom attribute
@@ -2155,6 +2171,7 @@ class H3(BaseHTML):
2155
2171
  | None = None,
2156
2172
  key: Any | None = None,
2157
2173
  id: Any | None = None,
2174
+ ref: Var | None = None,
2158
2175
  class_name: Any | None = None,
2159
2176
  autofocus: bool | None = None,
2160
2177
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -2198,6 +2215,7 @@ class H3(BaseHTML):
2198
2215
  style: The style of the component.
2199
2216
  key: A unique key for the component.
2200
2217
  id: The id for the component.
2218
+ ref: The Var to pass as the ref to the component.
2201
2219
  class_name: The class name for the component.
2202
2220
  autofocus: Whether the component should take the focus once the page is loaded
2203
2221
  custom_attrs: custom attribute
@@ -2399,6 +2417,7 @@ class H4(BaseHTML):
2399
2417
  | None = None,
2400
2418
  key: Any | None = None,
2401
2419
  id: Any | None = None,
2420
+ ref: Var | None = None,
2402
2421
  class_name: Any | None = None,
2403
2422
  autofocus: bool | None = None,
2404
2423
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -2442,6 +2461,7 @@ class H4(BaseHTML):
2442
2461
  style: The style of the component.
2443
2462
  key: A unique key for the component.
2444
2463
  id: The id for the component.
2464
+ ref: The Var to pass as the ref to the component.
2445
2465
  class_name: The class name for the component.
2446
2466
  autofocus: Whether the component should take the focus once the page is loaded
2447
2467
  custom_attrs: custom attribute
@@ -2643,6 +2663,7 @@ class H5(BaseHTML):
2643
2663
  | None = None,
2644
2664
  key: Any | None = None,
2645
2665
  id: Any | None = None,
2666
+ ref: Var | None = None,
2646
2667
  class_name: Any | None = None,
2647
2668
  autofocus: bool | None = None,
2648
2669
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -2686,6 +2707,7 @@ class H5(BaseHTML):
2686
2707
  style: The style of the component.
2687
2708
  key: A unique key for the component.
2688
2709
  id: The id for the component.
2710
+ ref: The Var to pass as the ref to the component.
2689
2711
  class_name: The class name for the component.
2690
2712
  autofocus: Whether the component should take the focus once the page is loaded
2691
2713
  custom_attrs: custom attribute
@@ -2887,6 +2909,7 @@ class H6(BaseHTML):
2887
2909
  | None = None,
2888
2910
  key: Any | None = None,
2889
2911
  id: Any | None = None,
2912
+ ref: Var | None = None,
2890
2913
  class_name: Any | None = None,
2891
2914
  autofocus: bool | None = None,
2892
2915
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -2930,6 +2953,7 @@ class H6(BaseHTML):
2930
2953
  style: The style of the component.
2931
2954
  key: A unique key for the component.
2932
2955
  id: The id for the component.
2956
+ ref: The Var to pass as the ref to the component.
2933
2957
  class_name: The class name for the component.
2934
2958
  autofocus: Whether the component should take the focus once the page is loaded
2935
2959
  custom_attrs: custom attribute
@@ -3131,6 +3155,7 @@ class Main(BaseHTML):
3131
3155
  | None = None,
3132
3156
  key: Any | None = None,
3133
3157
  id: Any | None = None,
3158
+ ref: Var | None = None,
3134
3159
  class_name: Any | None = None,
3135
3160
  autofocus: bool | None = None,
3136
3161
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -3174,6 +3199,7 @@ class Main(BaseHTML):
3174
3199
  style: The style of the component.
3175
3200
  key: A unique key for the component.
3176
3201
  id: The id for the component.
3202
+ ref: The Var to pass as the ref to the component.
3177
3203
  class_name: The class name for the component.
3178
3204
  autofocus: Whether the component should take the focus once the page is loaded
3179
3205
  custom_attrs: custom attribute
@@ -3375,6 +3401,7 @@ class Nav(BaseHTML):
3375
3401
  | None = None,
3376
3402
  key: Any | None = None,
3377
3403
  id: Any | None = None,
3404
+ ref: Var | None = None,
3378
3405
  class_name: Any | None = None,
3379
3406
  autofocus: bool | None = None,
3380
3407
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -3418,6 +3445,7 @@ class Nav(BaseHTML):
3418
3445
  style: The style of the component.
3419
3446
  key: A unique key for the component.
3420
3447
  id: The id for the component.
3448
+ ref: The Var to pass as the ref to the component.
3421
3449
  class_name: The class name for the component.
3422
3450
  autofocus: Whether the component should take the focus once the page is loaded
3423
3451
  custom_attrs: custom attribute
@@ -3619,6 +3647,7 @@ class Section(BaseHTML):
3619
3647
  | None = None,
3620
3648
  key: Any | None = None,
3621
3649
  id: Any | None = None,
3650
+ ref: Var | None = None,
3622
3651
  class_name: Any | None = None,
3623
3652
  autofocus: bool | None = None,
3624
3653
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -3662,6 +3691,7 @@ class Section(BaseHTML):
3662
3691
  style: The style of the component.
3663
3692
  key: A unique key for the component.
3664
3693
  id: The id for the component.
3694
+ ref: The Var to pass as the ref to the component.
3665
3695
  class_name: The class name for the component.
3666
3696
  autofocus: Whether the component should take the focus once the page is loaded
3667
3697
  custom_attrs: custom attribute
@@ -203,6 +203,7 @@ class Caption(BaseHTML):
203
203
  | None = None,
204
204
  key: Any | None = None,
205
205
  id: Any | None = None,
206
+ ref: Var | None = None,
206
207
  class_name: Any | None = None,
207
208
  autofocus: bool | None = None,
208
209
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -246,6 +247,7 @@ class Caption(BaseHTML):
246
247
  style: The style of the component.
247
248
  key: A unique key for the component.
248
249
  id: The id for the component.
250
+ ref: The Var to pass as the ref to the component.
249
251
  class_name: The class name for the component.
250
252
  autofocus: Whether the component should take the focus once the page is loaded
251
253
  custom_attrs: custom attribute
@@ -448,6 +450,7 @@ class Col(BaseHTML):
448
450
  | None = None,
449
451
  key: Any | None = None,
450
452
  id: Any | None = None,
453
+ ref: Var | None = None,
451
454
  class_name: Any | None = None,
452
455
  autofocus: bool | None = None,
453
456
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -492,6 +495,7 @@ class Col(BaseHTML):
492
495
  style: The style of the component.
493
496
  key: A unique key for the component.
494
497
  id: The id for the component.
498
+ ref: The Var to pass as the ref to the component.
495
499
  class_name: The class name for the component.
496
500
  autofocus: Whether the component should take the focus once the page is loaded
497
501
  custom_attrs: custom attribute
@@ -694,6 +698,7 @@ class Colgroup(BaseHTML):
694
698
  | None = None,
695
699
  key: Any | None = None,
696
700
  id: Any | None = None,
701
+ ref: Var | None = None,
697
702
  class_name: Any | None = None,
698
703
  autofocus: bool | None = None,
699
704
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -738,6 +743,7 @@ class Colgroup(BaseHTML):
738
743
  style: The style of the component.
739
744
  key: A unique key for the component.
740
745
  id: The id for the component.
746
+ ref: The Var to pass as the ref to the component.
741
747
  class_name: The class name for the component.
742
748
  autofocus: Whether the component should take the focus once the page is loaded
743
749
  custom_attrs: custom attribute
@@ -943,6 +949,7 @@ class Table(BaseHTML):
943
949
  | None = None,
944
950
  key: Any | None = None,
945
951
  id: Any | None = None,
952
+ ref: Var | None = None,
946
953
  class_name: Any | None = None,
947
954
  autofocus: bool | None = None,
948
955
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -988,6 +995,7 @@ class Table(BaseHTML):
988
995
  style: The style of the component.
989
996
  key: A unique key for the component.
990
997
  id: The id for the component.
998
+ ref: The Var to pass as the ref to the component.
991
999
  class_name: The class name for the component.
992
1000
  autofocus: Whether the component should take the focus once the page is loaded
993
1001
  custom_attrs: custom attribute
@@ -1189,6 +1197,7 @@ class Tbody(BaseHTML):
1189
1197
  | None = None,
1190
1198
  key: Any | None = None,
1191
1199
  id: Any | None = None,
1200
+ ref: Var | None = None,
1192
1201
  class_name: Any | None = None,
1193
1202
  autofocus: bool | None = None,
1194
1203
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1232,6 +1241,7 @@ class Tbody(BaseHTML):
1232
1241
  style: The style of the component.
1233
1242
  key: A unique key for the component.
1234
1243
  id: The id for the component.
1244
+ ref: The Var to pass as the ref to the component.
1235
1245
  class_name: The class name for the component.
1236
1246
  autofocus: Whether the component should take the focus once the page is loaded
1237
1247
  custom_attrs: custom attribute
@@ -1439,6 +1449,7 @@ class Td(BaseHTML):
1439
1449
  | None = None,
1440
1450
  key: Any | None = None,
1441
1451
  id: Any | None = None,
1452
+ ref: Var | None = None,
1442
1453
  class_name: Any | None = None,
1443
1454
  autofocus: bool | None = None,
1444
1455
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1486,6 +1497,7 @@ class Td(BaseHTML):
1486
1497
  style: The style of the component.
1487
1498
  key: A unique key for the component.
1488
1499
  id: The id for the component.
1500
+ ref: The Var to pass as the ref to the component.
1489
1501
  class_name: The class name for the component.
1490
1502
  autofocus: Whether the component should take the focus once the page is loaded
1491
1503
  custom_attrs: custom attribute
@@ -1687,6 +1699,7 @@ class Tfoot(BaseHTML):
1687
1699
  | None = None,
1688
1700
  key: Any | None = None,
1689
1701
  id: Any | None = None,
1702
+ ref: Var | None = None,
1690
1703
  class_name: Any | None = None,
1691
1704
  autofocus: bool | None = None,
1692
1705
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1730,6 +1743,7 @@ class Tfoot(BaseHTML):
1730
1743
  style: The style of the component.
1731
1744
  key: A unique key for the component.
1732
1745
  id: The id for the component.
1746
+ ref: The Var to pass as the ref to the component.
1733
1747
  class_name: The class name for the component.
1734
1748
  autofocus: Whether the component should take the focus once the page is loaded
1735
1749
  custom_attrs: custom attribute
@@ -1938,6 +1952,7 @@ class Th(BaseHTML):
1938
1952
  | None = None,
1939
1953
  key: Any | None = None,
1940
1954
  id: Any | None = None,
1955
+ ref: Var | None = None,
1941
1956
  class_name: Any | None = None,
1942
1957
  autofocus: bool | None = None,
1943
1958
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1986,6 +2001,7 @@ class Th(BaseHTML):
1986
2001
  style: The style of the component.
1987
2002
  key: A unique key for the component.
1988
2003
  id: The id for the component.
2004
+ ref: The Var to pass as the ref to the component.
1989
2005
  class_name: The class name for the component.
1990
2006
  autofocus: Whether the component should take the focus once the page is loaded
1991
2007
  custom_attrs: custom attribute
@@ -2187,6 +2203,7 @@ class Thead(BaseHTML):
2187
2203
  | None = None,
2188
2204
  key: Any | None = None,
2189
2205
  id: Any | None = None,
2206
+ ref: Var | None = None,
2190
2207
  class_name: Any | None = None,
2191
2208
  autofocus: bool | None = None,
2192
2209
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -2230,6 +2247,7 @@ class Thead(BaseHTML):
2230
2247
  style: The style of the component.
2231
2248
  key: A unique key for the component.
2232
2249
  id: The id for the component.
2250
+ ref: The Var to pass as the ref to the component.
2233
2251
  class_name: The class name for the component.
2234
2252
  autofocus: Whether the component should take the focus once the page is loaded
2235
2253
  custom_attrs: custom attribute
@@ -2431,6 +2449,7 @@ class Tr(BaseHTML):
2431
2449
  | None = None,
2432
2450
  key: Any | None = None,
2433
2451
  id: Any | None = None,
2452
+ ref: Var | None = None,
2434
2453
  class_name: Any | None = None,
2435
2454
  autofocus: bool | None = None,
2436
2455
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -2474,6 +2493,7 @@ class Tr(BaseHTML):
2474
2493
  style: The style of the component.
2475
2494
  key: A unique key for the component.
2476
2495
  id: The id for the component.
2496
+ ref: The Var to pass as the ref to the component.
2477
2497
  class_name: The class name for the component.
2478
2498
  autofocus: Whether the component should take the focus once the page is loaded
2479
2499
  custom_attrs: custom attribute
@@ -204,6 +204,7 @@ class Blockquote(BaseHTML):
204
204
  | None = None,
205
205
  key: Any | None = None,
206
206
  id: Any | None = None,
207
+ ref: Var | None = None,
207
208
  class_name: Any | None = None,
208
209
  autofocus: bool | None = None,
209
210
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -248,6 +249,7 @@ class Blockquote(BaseHTML):
248
249
  style: The style of the component.
249
250
  key: A unique key for the component.
250
251
  id: The id for the component.
252
+ ref: The Var to pass as the ref to the component.
251
253
  class_name: The class name for the component.
252
254
  autofocus: Whether the component should take the focus once the page is loaded
253
255
  custom_attrs: custom attribute
@@ -449,6 +451,7 @@ class Dd(BaseHTML):
449
451
  | None = None,
450
452
  key: Any | None = None,
451
453
  id: Any | None = None,
454
+ ref: Var | None = None,
452
455
  class_name: Any | None = None,
453
456
  autofocus: bool | None = None,
454
457
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -492,6 +495,7 @@ class Dd(BaseHTML):
492
495
  style: The style of the component.
493
496
  key: A unique key for the component.
494
497
  id: The id for the component.
498
+ ref: The Var to pass as the ref to the component.
495
499
  class_name: The class name for the component.
496
500
  autofocus: Whether the component should take the focus once the page is loaded
497
501
  custom_attrs: custom attribute
@@ -693,6 +697,7 @@ class Div(BaseHTML):
693
697
  | None = None,
694
698
  key: Any | None = None,
695
699
  id: Any | None = None,
700
+ ref: Var | None = None,
696
701
  class_name: Any | None = None,
697
702
  autofocus: bool | None = None,
698
703
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -736,6 +741,7 @@ class Div(BaseHTML):
736
741
  style: The style of the component.
737
742
  key: A unique key for the component.
738
743
  id: The id for the component.
744
+ ref: The Var to pass as the ref to the component.
739
745
  class_name: The class name for the component.
740
746
  autofocus: Whether the component should take the focus once the page is loaded
741
747
  custom_attrs: custom attribute
@@ -937,6 +943,7 @@ class Dl(BaseHTML):
937
943
  | None = None,
938
944
  key: Any | None = None,
939
945
  id: Any | None = None,
946
+ ref: Var | None = None,
940
947
  class_name: Any | None = None,
941
948
  autofocus: bool | None = None,
942
949
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -980,6 +987,7 @@ class Dl(BaseHTML):
980
987
  style: The style of the component.
981
988
  key: A unique key for the component.
982
989
  id: The id for the component.
990
+ ref: The Var to pass as the ref to the component.
983
991
  class_name: The class name for the component.
984
992
  autofocus: Whether the component should take the focus once the page is loaded
985
993
  custom_attrs: custom attribute
@@ -1181,6 +1189,7 @@ class Dt(BaseHTML):
1181
1189
  | None = None,
1182
1190
  key: Any | None = None,
1183
1191
  id: Any | None = None,
1192
+ ref: Var | None = None,
1184
1193
  class_name: Any | None = None,
1185
1194
  autofocus: bool | None = None,
1186
1195
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1224,6 +1233,7 @@ class Dt(BaseHTML):
1224
1233
  style: The style of the component.
1225
1234
  key: A unique key for the component.
1226
1235
  id: The id for the component.
1236
+ ref: The Var to pass as the ref to the component.
1227
1237
  class_name: The class name for the component.
1228
1238
  autofocus: Whether the component should take the focus once the page is loaded
1229
1239
  custom_attrs: custom attribute
@@ -1425,6 +1435,7 @@ class Figcaption(BaseHTML):
1425
1435
  | None = None,
1426
1436
  key: Any | None = None,
1427
1437
  id: Any | None = None,
1438
+ ref: Var | None = None,
1428
1439
  class_name: Any | None = None,
1429
1440
  autofocus: bool | None = None,
1430
1441
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1468,6 +1479,7 @@ class Figcaption(BaseHTML):
1468
1479
  style: The style of the component.
1469
1480
  key: A unique key for the component.
1470
1481
  id: The id for the component.
1482
+ ref: The Var to pass as the ref to the component.
1471
1483
  class_name: The class name for the component.
1472
1484
  autofocus: Whether the component should take the focus once the page is loaded
1473
1485
  custom_attrs: custom attribute
@@ -1669,6 +1681,7 @@ class Hr(BaseHTML):
1669
1681
  | None = None,
1670
1682
  key: Any | None = None,
1671
1683
  id: Any | None = None,
1684
+ ref: Var | None = None,
1672
1685
  class_name: Any | None = None,
1673
1686
  autofocus: bool | None = None,
1674
1687
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1712,6 +1725,7 @@ class Hr(BaseHTML):
1712
1725
  style: The style of the component.
1713
1726
  key: A unique key for the component.
1714
1727
  id: The id for the component.
1728
+ ref: The Var to pass as the ref to the component.
1715
1729
  class_name: The class name for the component.
1716
1730
  autofocus: Whether the component should take the focus once the page is loaded
1717
1731
  custom_attrs: custom attribute
@@ -1913,6 +1927,7 @@ class Li(BaseHTML):
1913
1927
  | None = None,
1914
1928
  key: Any | None = None,
1915
1929
  id: Any | None = None,
1930
+ ref: Var | None = None,
1916
1931
  class_name: Any | None = None,
1917
1932
  autofocus: bool | None = None,
1918
1933
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1956,6 +1971,7 @@ class Li(BaseHTML):
1956
1971
  style: The style of the component.
1957
1972
  key: A unique key for the component.
1958
1973
  id: The id for the component.
1974
+ ref: The Var to pass as the ref to the component.
1959
1975
  class_name: The class name for the component.
1960
1976
  autofocus: Whether the component should take the focus once the page is loaded
1961
1977
  custom_attrs: custom attribute
@@ -2158,6 +2174,7 @@ class Menu(BaseHTML):
2158
2174
  | None = None,
2159
2175
  key: Any | None = None,
2160
2176
  id: Any | None = None,
2177
+ ref: Var | None = None,
2161
2178
  class_name: Any | None = None,
2162
2179
  autofocus: bool | None = None,
2163
2180
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -2202,6 +2219,7 @@ class Menu(BaseHTML):
2202
2219
  style: The style of the component.
2203
2220
  key: A unique key for the component.
2204
2221
  id: The id for the component.
2222
+ ref: The Var to pass as the ref to the component.
2205
2223
  class_name: The class name for the component.
2206
2224
  autofocus: Whether the component should take the focus once the page is loaded
2207
2225
  custom_attrs: custom attribute
@@ -2408,6 +2426,7 @@ class Ol(BaseHTML):
2408
2426
  | None = None,
2409
2427
  key: Any | None = None,
2410
2428
  id: Any | None = None,
2429
+ ref: Var | None = None,
2411
2430
  class_name: Any | None = None,
2412
2431
  autofocus: bool | None = None,
2413
2432
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -2454,6 +2473,7 @@ class Ol(BaseHTML):
2454
2473
  style: The style of the component.
2455
2474
  key: A unique key for the component.
2456
2475
  id: The id for the component.
2476
+ ref: The Var to pass as the ref to the component.
2457
2477
  class_name: The class name for the component.
2458
2478
  autofocus: Whether the component should take the focus once the page is loaded
2459
2479
  custom_attrs: custom attribute
@@ -2655,6 +2675,7 @@ class P(BaseHTML):
2655
2675
  | None = None,
2656
2676
  key: Any | None = None,
2657
2677
  id: Any | None = None,
2678
+ ref: Var | None = None,
2658
2679
  class_name: Any | None = None,
2659
2680
  autofocus: bool | None = None,
2660
2681
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -2698,6 +2719,7 @@ class P(BaseHTML):
2698
2719
  style: The style of the component.
2699
2720
  key: A unique key for the component.
2700
2721
  id: The id for the component.
2722
+ ref: The Var to pass as the ref to the component.
2701
2723
  class_name: The class name for the component.
2702
2724
  autofocus: Whether the component should take the focus once the page is loaded
2703
2725
  custom_attrs: custom attribute
@@ -2899,6 +2921,7 @@ class Pre(BaseHTML):
2899
2921
  | None = None,
2900
2922
  key: Any | None = None,
2901
2923
  id: Any | None = None,
2924
+ ref: Var | None = None,
2902
2925
  class_name: Any | None = None,
2903
2926
  autofocus: bool | None = None,
2904
2927
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -2942,6 +2965,7 @@ class Pre(BaseHTML):
2942
2965
  style: The style of the component.
2943
2966
  key: A unique key for the component.
2944
2967
  id: The id for the component.
2968
+ ref: The Var to pass as the ref to the component.
2945
2969
  class_name: The class name for the component.
2946
2970
  autofocus: Whether the component should take the focus once the page is loaded
2947
2971
  custom_attrs: custom attribute
@@ -3143,6 +3167,7 @@ class Ul(BaseHTML):
3143
3167
  | None = None,
3144
3168
  key: Any | None = None,
3145
3169
  id: Any | None = None,
3170
+ ref: Var | None = None,
3146
3171
  class_name: Any | None = None,
3147
3172
  autofocus: bool | None = None,
3148
3173
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -3186,6 +3211,7 @@ class Ul(BaseHTML):
3186
3211
  style: The style of the component.
3187
3212
  key: A unique key for the component.
3188
3213
  id: The id for the component.
3214
+ ref: The Var to pass as the ref to the component.
3189
3215
  class_name: The class name for the component.
3190
3216
  autofocus: Whether the component should take the focus once the page is loaded
3191
3217
  custom_attrs: custom attribute
@@ -3389,6 +3415,7 @@ class Ins(BaseHTML):
3389
3415
  | None = None,
3390
3416
  key: Any | None = None,
3391
3417
  id: Any | None = None,
3418
+ ref: Var | None = None,
3392
3419
  class_name: Any | None = None,
3393
3420
  autofocus: bool | None = None,
3394
3421
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -3434,6 +3461,7 @@ class Ins(BaseHTML):
3434
3461
  style: The style of the component.
3435
3462
  key: A unique key for the component.
3436
3463
  id: The id for the component.
3464
+ ref: The Var to pass as the ref to the component.
3437
3465
  class_name: The class name for the component.
3438
3466
  autofocus: Whether the component should take the focus once the page is loaded
3439
3467
  custom_attrs: custom attribute
@@ -3637,6 +3665,7 @@ class Del(BaseHTML):
3637
3665
  | None = None,
3638
3666
  key: Any | None = None,
3639
3667
  id: Any | None = None,
3668
+ ref: Var | None = None,
3640
3669
  class_name: Any | None = None,
3641
3670
  autofocus: bool | None = None,
3642
3671
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -3682,6 +3711,7 @@ class Del(BaseHTML):
3682
3711
  style: The style of the component.
3683
3712
  key: A unique key for the component.
3684
3713
  id: The id for the component.
3714
+ ref: The Var to pass as the ref to the component.
3685
3715
  class_name: The class name for the component.
3686
3716
  autofocus: Whether the component should take the focus once the page is loaded
3687
3717
  custom_attrs: custom attribute
@@ -25,6 +25,7 @@ class Gridjs(Component):
25
25
  | None = None,
26
26
  key: Any | None = None,
27
27
  id: Any | None = None,
28
+ ref: Var | None = None,
28
29
  class_name: Any | None = None,
29
30
  autofocus: bool | None = None,
30
31
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -52,6 +53,7 @@ class Gridjs(Component):
52
53
  style: The style of the component.
53
54
  key: A unique key for the component.
54
55
  id: The id for the component.
56
+ ref: The Var to pass as the ref to the component.
55
57
  class_name: The class name for the component.
56
58
  autofocus: Whether the component should take the focus once the page is loaded
57
59
  custom_attrs: custom attribute
@@ -81,6 +83,7 @@ class DataTable(Gridjs):
81
83
  | None = None,
82
84
  key: Any | None = None,
83
85
  id: Any | None = None,
86
+ ref: Var | None = None,
84
87
  class_name: Any | None = None,
85
88
  autofocus: bool | None = None,
86
89
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -114,6 +117,7 @@ class DataTable(Gridjs):
114
117
  style: The style of the component.
115
118
  key: A unique key for the component.
116
119
  id: The id for the component.
120
+ ref: The Var to pass as the ref to the component.
117
121
  class_name: The class name for the component.
118
122
  autofocus: Whether the component should take the focus once the page is loaded
119
123
  custom_attrs: custom attribute
@@ -10,7 +10,7 @@ from reflex.vars.sequence import LiteralStringVar, StringVar
10
10
  class LucideIconComponent(Component):
11
11
  """Lucide Icon Component."""
12
12
 
13
- library = "lucide-react@0.508.0"
13
+ library = "lucide-react@0.510.0"
14
14
 
15
15
 
16
16
  class Icon(LucideIconComponent):
@@ -422,6 +422,7 @@ LUCIDE_ICON_LIST = [
422
422
  "chart_spline",
423
423
  "check",
424
424
  "check_check",
425
+ "check_line",
425
426
  "chef_hat",
426
427
  "cherry",
427
428
  "chevron_down",
@@ -836,6 +837,7 @@ LUCIDE_ICON_LIST = [
836
837
  "globe",
837
838
  "globe_lock",
838
839
  "goal",
840
+ "gpu",
839
841
  "grab",
840
842
  "graduation_cap",
841
843
  "grape",