reflex 0.7.11a1__py3-none-any.whl → 0.7.12a1__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 (140) 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/constants/compiler.py +12 -6
  123. reflex/constants/installer.py +1 -1
  124. reflex/event.py +21 -0
  125. reflex/experimental/layout.pyi +5 -0
  126. reflex/reflex.py +24 -0
  127. reflex/testing.py +2 -1
  128. reflex/utils/format.py +4 -11
  129. reflex/utils/net.py +35 -2
  130. reflex/utils/prerequisites.py +10 -4
  131. reflex/utils/pyi_generator.py +7 -1
  132. reflex/utils/types.py +7 -5
  133. reflex/vars/base.py +7 -8
  134. reflex/vars/object.py +9 -2
  135. {reflex-0.7.11a1.dist-info → reflex-0.7.12a1.dist-info}/METADATA +4 -4
  136. {reflex-0.7.11a1.dist-info → reflex-0.7.12a1.dist-info}/RECORD +140 -139
  137. scripts/hatch_build.py +50 -0
  138. {reflex-0.7.11a1.dist-info → reflex-0.7.12a1.dist-info}/WHEEL +0 -0
  139. {reflex-0.7.11a1.dist-info → reflex-0.7.12a1.dist-info}/entry_points.txt +0 -0
  140. {reflex-0.7.11a1.dist-info → reflex-0.7.12a1.dist-info}/licenses/LICENSE +0 -0
@@ -359,6 +359,7 @@ class Text(elements.Span, RadixThemesComponent, MarkdownComponentMap):
359
359
  | None = None,
360
360
  key: Any | None = None,
361
361
  id: Any | None = None,
362
+ ref: Var | None = None,
362
363
  class_name: Any | None = None,
363
364
  autofocus: bool | None = None,
364
365
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -413,6 +414,7 @@ class Text(elements.Span, RadixThemesComponent, MarkdownComponentMap):
413
414
  style: The style of the component.
414
415
  key: A unique key for the component.
415
416
  id: The id for the component.
417
+ ref: The Var to pass as the ref to the component.
416
418
  class_name: The class name for the component.
417
419
  autofocus: Whether the component should take the focus once the page is loaded
418
420
  custom_attrs: custom attribute
@@ -746,6 +748,7 @@ class Span(Text):
746
748
  | None = None,
747
749
  key: Any | None = None,
748
750
  id: Any | None = None,
751
+ ref: Var | None = None,
749
752
  class_name: Any | None = None,
750
753
  autofocus: bool | None = None,
751
754
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -800,6 +803,7 @@ class Span(Text):
800
803
  style: The style of the component.
801
804
  key: A unique key for the component.
802
805
  id: The id for the component.
806
+ ref: The Var to pass as the ref to the component.
803
807
  class_name: The class name for the component.
804
808
  autofocus: Whether the component should take the focus once the page is loaded
805
809
  custom_attrs: custom attribute
@@ -1001,6 +1005,7 @@ class Em(elements.Em, RadixThemesComponent):
1001
1005
  | None = None,
1002
1006
  key: Any | None = None,
1003
1007
  id: Any | None = None,
1008
+ ref: Var | None = None,
1004
1009
  class_name: Any | None = None,
1005
1010
  autofocus: bool | None = None,
1006
1011
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1047,6 +1052,7 @@ class Em(elements.Em, RadixThemesComponent):
1047
1052
  style: The style of the component.
1048
1053
  key: A unique key for the component.
1049
1054
  id: The id for the component.
1055
+ ref: The Var to pass as the ref to the component.
1050
1056
  class_name: The class name for the component.
1051
1057
  autofocus: Whether the component should take the focus once the page is loaded
1052
1058
  custom_attrs: custom attribute
@@ -1251,6 +1257,7 @@ class Kbd(elements.Kbd, RadixThemesComponent):
1251
1257
  | None = None,
1252
1258
  key: Any | None = None,
1253
1259
  id: Any | None = None,
1260
+ ref: Var | None = None,
1254
1261
  class_name: Any | None = None,
1255
1262
  autofocus: bool | None = None,
1256
1263
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1298,6 +1305,7 @@ class Kbd(elements.Kbd, RadixThemesComponent):
1298
1305
  style: The style of the component.
1299
1306
  key: A unique key for the component.
1300
1307
  id: The id for the component.
1308
+ ref: The Var to pass as the ref to the component.
1301
1309
  class_name: The class name for the component.
1302
1310
  autofocus: Whether the component should take the focus once the page is loaded
1303
1311
  custom_attrs: custom attribute
@@ -1500,6 +1508,7 @@ class Quote(elements.Q, RadixThemesComponent):
1500
1508
  | None = None,
1501
1509
  key: Any | None = None,
1502
1510
  id: Any | None = None,
1511
+ ref: Var | None = None,
1503
1512
  class_name: Any | None = None,
1504
1513
  autofocus: bool | None = None,
1505
1514
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1547,6 +1556,7 @@ class Quote(elements.Q, RadixThemesComponent):
1547
1556
  style: The style of the component.
1548
1557
  key: A unique key for the component.
1549
1558
  id: The id for the component.
1559
+ ref: The Var to pass as the ref to the component.
1550
1560
  class_name: The class name for the component.
1551
1561
  autofocus: Whether the component should take the focus once the page is loaded
1552
1562
  custom_attrs: custom attribute
@@ -1748,6 +1758,7 @@ class Strong(elements.Strong, RadixThemesComponent):
1748
1758
  | None = None,
1749
1759
  key: Any | None = None,
1750
1760
  id: Any | None = None,
1761
+ ref: Var | None = None,
1751
1762
  class_name: Any | None = None,
1752
1763
  autofocus: bool | None = None,
1753
1764
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1794,6 +1805,7 @@ class Strong(elements.Strong, RadixThemesComponent):
1794
1805
  style: The style of the component.
1795
1806
  key: A unique key for the component.
1796
1807
  id: The id for the component.
1808
+ ref: The Var to pass as the ref to the component.
1797
1809
  class_name: The class name for the component.
1798
1810
  autofocus: Whether the component should take the focus once the page is loaded
1799
1811
  custom_attrs: custom attribute
@@ -2131,6 +2143,7 @@ class TextNamespace(ComponentNamespace):
2131
2143
  | None = None,
2132
2144
  key: Any | None = None,
2133
2145
  id: Any | None = None,
2146
+ ref: Var | None = None,
2134
2147
  class_name: Any | None = None,
2135
2148
  autofocus: bool | None = None,
2136
2149
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -2185,6 +2198,7 @@ class TextNamespace(ComponentNamespace):
2185
2198
  style: The style of the component.
2186
2199
  key: A unique key for the component.
2187
2200
  id: The id for the component.
2201
+ ref: The Var to pass as the ref to the component.
2188
2202
  class_name: The class name for the component.
2189
2203
  autofocus: Whether the component should take the focus once the page is loaded
2190
2204
  custom_attrs: custom attribute
@@ -34,6 +34,7 @@ class Audio(ReactPlayer):
34
34
  | None = None,
35
35
  key: Any | None = None,
36
36
  id: Any | None = None,
37
+ ref: Var | None = None,
37
38
  class_name: Any | None = None,
38
39
  autofocus: bool | None = None,
39
40
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -100,6 +101,7 @@ class Audio(ReactPlayer):
100
101
  style: The style of the component.
101
102
  key: A unique key for the component.
102
103
  id: The id for the component.
104
+ ref: The Var to pass as the ref to the component.
103
105
  class_name: The class name for the component.
104
106
  autofocus: Whether the component should take the focus once the page is loaded
105
107
  custom_attrs: custom attribute
@@ -37,6 +37,7 @@ class ReactPlayer(NoSSRComponent):
37
37
  | None = None,
38
38
  key: Any | None = None,
39
39
  id: Any | None = None,
40
+ ref: Var | None = None,
40
41
  class_name: Any | None = None,
41
42
  autofocus: bool | None = None,
42
43
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -103,6 +104,7 @@ class ReactPlayer(NoSSRComponent):
103
104
  style: The style of the component.
104
105
  key: A unique key for the component.
105
106
  id: The id for the component.
107
+ ref: The Var to pass as the ref to the component.
106
108
  class_name: The class name for the component.
107
109
  autofocus: Whether the component should take the focus once the page is loaded
108
110
  custom_attrs: custom attribute
@@ -34,6 +34,7 @@ class Video(ReactPlayer):
34
34
  | None = None,
35
35
  key: Any | None = None,
36
36
  id: Any | None = None,
37
+ ref: Var | None = None,
37
38
  class_name: Any | None = None,
38
39
  autofocus: bool | None = None,
39
40
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -100,6 +101,7 @@ class Video(ReactPlayer):
100
101
  style: The style of the component.
101
102
  key: A unique key for the component.
102
103
  id: The id for the component.
104
+ ref: The Var to pass as the ref to the component.
103
105
  class_name: The class name for the component.
104
106
  autofocus: Whether the component should take the focus once the page is loaded
105
107
  custom_attrs: custom attribute
@@ -111,6 +111,7 @@ class Axis(Recharts):
111
111
  | None = None,
112
112
  key: Any | None = None,
113
113
  id: Any | None = None,
114
+ ref: Var | None = None,
114
115
  class_name: Any | None = None,
115
116
  autofocus: bool | None = None,
116
117
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -170,6 +171,7 @@ class Axis(Recharts):
170
171
  style: The style of the component.
171
172
  key: A unique key for the component.
172
173
  id: The id for the component.
174
+ ref: The Var to pass as the ref to the component.
173
175
  class_name: The class name for the component.
174
176
  autofocus: Whether the component should take the focus once the page is loaded
175
177
  custom_attrs: custom attribute
@@ -285,6 +287,7 @@ class XAxis(Axis):
285
287
  | None = None,
286
288
  key: Any | None = None,
287
289
  id: Any | None = None,
290
+ ref: Var | None = None,
288
291
  class_name: Any | None = None,
289
292
  autofocus: bool | None = None,
290
293
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -349,6 +352,7 @@ class XAxis(Axis):
349
352
  style: The style of the component.
350
353
  key: A unique key for the component.
351
354
  id: The id for the component.
355
+ ref: The Var to pass as the ref to the component.
352
356
  class_name: The class name for the component.
353
357
  autofocus: Whether the component should take the focus once the page is loaded
354
358
  custom_attrs: custom attribute
@@ -462,6 +466,7 @@ class YAxis(Axis):
462
466
  | None = None,
463
467
  key: Any | None = None,
464
468
  id: Any | None = None,
469
+ ref: Var | None = None,
465
470
  class_name: Any | None = None,
466
471
  autofocus: bool | None = None,
467
472
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -524,6 +529,7 @@ class YAxis(Axis):
524
529
  style: The style of the component.
525
530
  key: A unique key for the component.
526
531
  id: The id for the component.
532
+ ref: The Var to pass as the ref to the component.
527
533
  class_name: The class name for the component.
528
534
  autofocus: Whether the component should take the focus once the page is loaded
529
535
  custom_attrs: custom attribute
@@ -589,6 +595,7 @@ class ZAxis(Recharts):
589
595
  | None = None,
590
596
  key: Any | None = None,
591
597
  id: Any | None = None,
598
+ ref: Var | None = None,
592
599
  class_name: Any | None = None,
593
600
  autofocus: bool | None = None,
594
601
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -622,6 +629,7 @@ class ZAxis(Recharts):
622
629
  style: The style of the component.
623
630
  key: A unique key for the component.
624
631
  id: The id for the component.
632
+ ref: The Var to pass as the ref to the component.
625
633
  class_name: The class name for the component.
626
634
  autofocus: Whether the component should take the focus once the page is loaded
627
635
  custom_attrs: custom attribute
@@ -658,6 +666,7 @@ class Brush(Recharts):
658
666
  | None = None,
659
667
  key: Any | None = None,
660
668
  id: Any | None = None,
669
+ ref: Var | None = None,
661
670
  class_name: Any | None = None,
662
671
  autofocus: bool | None = None,
663
672
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -683,6 +692,7 @@ class Brush(Recharts):
683
692
  style: The style of the component.
684
693
  key: A unique key for the component.
685
694
  id: The id for the component.
695
+ ref: The Var to pass as the ref to the component.
686
696
  class_name: The class name for the component.
687
697
  autofocus: Whether the component should take the focus once the page is loaded
688
698
  custom_attrs: custom attribute
@@ -751,6 +761,7 @@ class Cartesian(Recharts):
751
761
  | None = None,
752
762
  key: Any | None = None,
753
763
  id: Any | None = None,
764
+ ref: Var | None = None,
754
765
  class_name: Any | None = None,
755
766
  autofocus: bool | None = None,
756
767
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -801,6 +812,7 @@ class Cartesian(Recharts):
801
812
  style: The style of the component.
802
813
  key: A unique key for the component.
803
814
  id: The id for the component.
815
+ ref: The Var to pass as the ref to the component.
804
816
  class_name: The class name for the component.
805
817
  autofocus: Whether the component should take the focus once the page is loaded
806
818
  custom_attrs: custom attribute
@@ -919,6 +931,7 @@ class Area(Cartesian):
919
931
  | None = None,
920
932
  key: Any | None = None,
921
933
  id: Any | None = None,
934
+ ref: Var | None = None,
922
935
  class_name: Any | None = None,
923
936
  autofocus: bool | None = None,
924
937
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -980,6 +993,7 @@ class Area(Cartesian):
980
993
  style: The style of the component.
981
994
  key: A unique key for the component.
982
995
  id: The id for the component.
996
+ ref: The Var to pass as the ref to the component.
983
997
  class_name: The class name for the component.
984
998
  autofocus: Whether the component should take the focus once the page is loaded
985
999
  custom_attrs: custom attribute
@@ -1058,6 +1072,7 @@ class Bar(Cartesian):
1058
1072
  | None = None,
1059
1073
  key: Any | None = None,
1060
1074
  id: Any | None = None,
1075
+ ref: Var | None = None,
1061
1076
  class_name: Any | None = None,
1062
1077
  autofocus: bool | None = None,
1063
1078
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1118,6 +1133,7 @@ class Bar(Cartesian):
1118
1133
  style: The style of the component.
1119
1134
  key: A unique key for the component.
1120
1135
  id: The id for the component.
1136
+ ref: The Var to pass as the ref to the component.
1121
1137
  class_name: The class name for the component.
1122
1138
  autofocus: Whether the component should take the focus once the page is loaded
1123
1139
  custom_attrs: custom attribute
@@ -1232,6 +1248,7 @@ class Line(Cartesian):
1232
1248
  | None = None,
1233
1249
  key: Any | None = None,
1234
1250
  id: Any | None = None,
1251
+ ref: Var | None = None,
1235
1252
  class_name: Any | None = None,
1236
1253
  autofocus: bool | None = None,
1237
1254
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1292,6 +1309,7 @@ class Line(Cartesian):
1292
1309
  style: The style of the component.
1293
1310
  key: A unique key for the component.
1294
1311
  id: The id for the component.
1312
+ ref: The Var to pass as the ref to the component.
1295
1313
  class_name: The class name for the component.
1296
1314
  autofocus: Whether the component should take the focus once the page is loaded
1297
1315
  custom_attrs: custom attribute
@@ -1369,6 +1387,7 @@ class Scatter(Recharts):
1369
1387
  | None = None,
1370
1388
  key: Any | None = None,
1371
1389
  id: Any | None = None,
1390
+ ref: Var | None = None,
1372
1391
  class_name: Any | None = None,
1373
1392
  autofocus: bool | None = None,
1374
1393
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1418,6 +1437,7 @@ class Scatter(Recharts):
1418
1437
  style: The style of the component.
1419
1438
  key: A unique key for the component.
1420
1439
  id: The id for the component.
1440
+ ref: The Var to pass as the ref to the component.
1421
1441
  class_name: The class name for the component.
1422
1442
  autofocus: Whether the component should take the focus once the page is loaded
1423
1443
  custom_attrs: custom attribute
@@ -1485,6 +1505,7 @@ class Funnel(Recharts):
1485
1505
  | None = None,
1486
1506
  key: Any | None = None,
1487
1507
  id: Any | None = None,
1508
+ ref: Var | None = None,
1488
1509
  class_name: Any | None = None,
1489
1510
  autofocus: bool | None = None,
1490
1511
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1534,6 +1555,7 @@ class Funnel(Recharts):
1534
1555
  style: The style of the component.
1535
1556
  key: A unique key for the component.
1536
1557
  id: The id for the component.
1558
+ ref: The Var to pass as the ref to the component.
1537
1559
  class_name: The class name for the component.
1538
1560
  autofocus: Whether the component should take the focus once the page is loaded
1539
1561
  custom_attrs: custom attribute
@@ -1562,6 +1584,7 @@ class ErrorBar(Recharts):
1562
1584
  | None = None,
1563
1585
  key: Any | None = None,
1564
1586
  id: Any | None = None,
1587
+ ref: Var | None = None,
1565
1588
  class_name: Any | None = None,
1566
1589
  autofocus: bool | None = None,
1567
1590
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1594,6 +1617,7 @@ class ErrorBar(Recharts):
1594
1617
  style: The style of the component.
1595
1618
  key: A unique key for the component.
1596
1619
  id: The id for the component.
1620
+ ref: The Var to pass as the ref to the component.
1597
1621
  class_name: The class name for the component.
1598
1622
  autofocus: Whether the component should take the focus once the page is loaded
1599
1623
  custom_attrs: custom attribute
@@ -1624,6 +1648,7 @@ class Reference(Recharts):
1624
1648
  | None = None,
1625
1649
  key: Any | None = None,
1626
1650
  id: Any | None = None,
1651
+ ref: Var | None = None,
1627
1652
  class_name: Any | None = None,
1628
1653
  autofocus: bool | None = None,
1629
1654
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1656,6 +1681,7 @@ class Reference(Recharts):
1656
1681
  style: The style of the component.
1657
1682
  key: A unique key for the component.
1658
1683
  id: The id for the component.
1684
+ ref: The Var to pass as the ref to the component.
1659
1685
  class_name: The class name for the component.
1660
1686
  autofocus: Whether the component should take the focus once the page is loaded
1661
1687
  custom_attrs: custom attribute
@@ -1691,6 +1717,7 @@ class ReferenceLine(Reference):
1691
1717
  | None = None,
1692
1718
  key: Any | None = None,
1693
1719
  id: Any | None = None,
1720
+ ref: Var | None = None,
1694
1721
  class_name: Any | None = None,
1695
1722
  autofocus: bool | None = None,
1696
1723
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1728,6 +1755,7 @@ class ReferenceLine(Reference):
1728
1755
  style: The style of the component.
1729
1756
  key: A unique key for the component.
1730
1757
  id: The id for the component.
1758
+ ref: The Var to pass as the ref to the component.
1731
1759
  class_name: The class name for the component.
1732
1760
  autofocus: Whether the component should take the focus once the page is loaded
1733
1761
  custom_attrs: custom attribute
@@ -1763,6 +1791,7 @@ class ReferenceDot(Reference):
1763
1791
  | None = None,
1764
1792
  key: Any | None = None,
1765
1793
  id: Any | None = None,
1794
+ ref: Var | None = None,
1766
1795
  class_name: Any | None = None,
1767
1796
  autofocus: bool | None = None,
1768
1797
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1808,6 +1837,7 @@ class ReferenceDot(Reference):
1808
1837
  style: The style of the component.
1809
1838
  key: A unique key for the component.
1810
1839
  id: The id for the component.
1840
+ ref: The Var to pass as the ref to the component.
1811
1841
  class_name: The class name for the component.
1812
1842
  autofocus: Whether the component should take the focus once the page is loaded
1813
1843
  custom_attrs: custom attribute
@@ -1844,6 +1874,7 @@ class ReferenceArea(Recharts):
1844
1874
  | None = None,
1845
1875
  key: Any | None = None,
1846
1876
  id: Any | None = None,
1877
+ ref: Var | None = None,
1847
1878
  class_name: Any | None = None,
1848
1879
  autofocus: bool | None = None,
1849
1880
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1882,6 +1913,7 @@ class ReferenceArea(Recharts):
1882
1913
  style: The style of the component.
1883
1914
  key: A unique key for the component.
1884
1915
  id: The id for the component.
1916
+ ref: The Var to pass as the ref to the component.
1885
1917
  class_name: The class name for the component.
1886
1918
  autofocus: Whether the component should take the focus once the page is loaded
1887
1919
  custom_attrs: custom attribute
@@ -1909,6 +1941,7 @@ class Grid(Recharts):
1909
1941
  | None = None,
1910
1942
  key: Any | None = None,
1911
1943
  id: Any | None = None,
1944
+ ref: Var | None = None,
1912
1945
  class_name: Any | None = None,
1913
1946
  autofocus: bool | None = None,
1914
1947
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1940,6 +1973,7 @@ class Grid(Recharts):
1940
1973
  style: The style of the component.
1941
1974
  key: A unique key for the component.
1942
1975
  id: The id for the component.
1976
+ ref: The Var to pass as the ref to the component.
1943
1977
  class_name: The class name for the component.
1944
1978
  autofocus: Whether the component should take the focus once the page is loaded
1945
1979
  custom_attrs: custom attribute
@@ -1975,6 +2009,7 @@ class CartesianGrid(Grid):
1975
2009
  | None = None,
1976
2010
  key: Any | None = None,
1977
2011
  id: Any | None = None,
2012
+ ref: Var | None = None,
1978
2013
  class_name: Any | None = None,
1979
2014
  autofocus: bool | None = None,
1980
2015
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -2014,6 +2049,7 @@ class CartesianGrid(Grid):
2014
2049
  style: The style of the component.
2015
2050
  key: A unique key for the component.
2016
2051
  id: The id for the component.
2052
+ ref: The Var to pass as the ref to the component.
2017
2053
  class_name: The class name for the component.
2018
2054
  autofocus: Whether the component should take the focus once the page is loaded
2019
2055
  custom_attrs: custom attribute
@@ -2055,6 +2091,7 @@ class CartesianAxis(Grid):
2055
2091
  | None = None,
2056
2092
  key: Any | None = None,
2057
2093
  id: Any | None = None,
2094
+ ref: Var | None = None,
2058
2095
  class_name: Any | None = None,
2059
2096
  autofocus: bool | None = None,
2060
2097
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -2096,6 +2133,7 @@ class CartesianAxis(Grid):
2096
2133
  style: The style of the component.
2097
2134
  key: A unique key for the component.
2098
2135
  id: The id for the component.
2136
+ ref: The Var to pass as the ref to the component.
2099
2137
  class_name: The class name for the component.
2100
2138
  autofocus: Whether the component should take the focus once the page is loaded
2101
2139
  custom_attrs: custom attribute
@@ -28,6 +28,7 @@ class ChartBase(RechartsCharts):
28
28
  | None = None,
29
29
  key: Any | None = None,
30
30
  id: Any | None = None,
31
+ ref: Var | None = None,
31
32
  class_name: Any | None = None,
32
33
  autofocus: bool | None = None,
33
34
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -61,6 +62,7 @@ class ChartBase(RechartsCharts):
61
62
  style: The style of the component.
62
63
  key: A unique key for the component.
63
64
  id: The id for the component.
65
+ ref: The Var to pass as the ref to the component.
64
66
  class_name: The class name for the component.
65
67
  autofocus: Whether the component should take the focus once the page is loaded
66
68
  custom_attrs: custom attribute
@@ -98,6 +100,7 @@ class CategoricalChartBase(ChartBase):
98
100
  | None = None,
99
101
  key: Any | None = None,
100
102
  id: Any | None = None,
103
+ ref: Var | None = None,
101
104
  class_name: Any | None = None,
102
105
  autofocus: bool | None = None,
103
106
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -137,6 +140,7 @@ class CategoricalChartBase(ChartBase):
137
140
  style: The style of the component.
138
141
  key: A unique key for the component.
139
142
  id: The id for the component.
143
+ ref: The Var to pass as the ref to the component.
140
144
  class_name: The class name for the component.
141
145
  autofocus: Whether the component should take the focus once the page is loaded
142
146
  custom_attrs: custom attribute
@@ -178,6 +182,7 @@ class AreaChart(CategoricalChartBase):
178
182
  | None = None,
179
183
  key: Any | None = None,
180
184
  id: Any | None = None,
185
+ ref: Var | None = None,
181
186
  class_name: Any | None = None,
182
187
  autofocus: bool | None = None,
183
188
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -218,6 +223,7 @@ class AreaChart(CategoricalChartBase):
218
223
  style: The style of the component.
219
224
  key: A unique key for the component.
220
225
  id: The id for the component.
226
+ ref: The Var to pass as the ref to the component.
221
227
  class_name: The class name for the component.
222
228
  autofocus: Whether the component should take the focus once the page is loaded
223
229
  custom_attrs: custom attribute
@@ -260,6 +266,7 @@ class BarChart(CategoricalChartBase):
260
266
  | None = None,
261
267
  key: Any | None = None,
262
268
  id: Any | None = None,
269
+ ref: Var | None = None,
263
270
  class_name: Any | None = None,
264
271
  autofocus: bool | None = None,
265
272
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -304,6 +311,7 @@ class BarChart(CategoricalChartBase):
304
311
  style: The style of the component.
305
312
  key: A unique key for the component.
306
313
  id: The id for the component.
314
+ ref: The Var to pass as the ref to the component.
307
315
  class_name: The class name for the component.
308
316
  autofocus: Whether the component should take the focus once the page is loaded
309
317
  custom_attrs: custom attribute
@@ -341,6 +349,7 @@ class LineChart(CategoricalChartBase):
341
349
  | None = None,
342
350
  key: Any | None = None,
343
351
  id: Any | None = None,
352
+ ref: Var | None = None,
344
353
  class_name: Any | None = None,
345
354
  autofocus: bool | None = None,
346
355
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -380,6 +389,7 @@ class LineChart(CategoricalChartBase):
380
389
  style: The style of the component.
381
390
  key: A unique key for the component.
382
391
  id: The id for the component.
392
+ ref: The Var to pass as the ref to the component.
383
393
  class_name: The class name for the component.
384
394
  autofocus: Whether the component should take the focus once the page is loaded
385
395
  custom_attrs: custom attribute
@@ -425,6 +435,7 @@ class ComposedChart(CategoricalChartBase):
425
435
  | None = None,
426
436
  key: Any | None = None,
427
437
  id: Any | None = None,
438
+ ref: Var | None = None,
428
439
  class_name: Any | None = None,
429
440
  autofocus: bool | None = None,
430
441
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -469,6 +480,7 @@ class ComposedChart(CategoricalChartBase):
469
480
  style: The style of the component.
470
481
  key: A unique key for the component.
471
482
  id: The id for the component.
483
+ ref: The Var to pass as the ref to the component.
472
484
  class_name: The class name for the component.
473
485
  autofocus: Whether the component should take the focus once the page is loaded
474
486
  custom_attrs: custom attribute
@@ -495,6 +507,7 @@ class PieChart(ChartBase):
495
507
  | None = None,
496
508
  key: Any | None = None,
497
509
  id: Any | None = None,
510
+ ref: Var | None = None,
498
511
  class_name: Any | None = None,
499
512
  autofocus: bool | None = None,
500
513
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -533,6 +546,7 @@ class PieChart(ChartBase):
533
546
  style: The style of the component.
534
547
  key: A unique key for the component.
535
548
  id: The id for the component.
549
+ ref: The Var to pass as the ref to the component.
536
550
  class_name: The class name for the component.
537
551
  autofocus: Whether the component should take the focus once the page is loaded
538
552
  custom_attrs: custom attribute
@@ -567,6 +581,7 @@ class RadarChart(ChartBase):
567
581
  | None = None,
568
582
  key: Any | None = None,
569
583
  id: Any | None = None,
584
+ ref: Var | None = None,
570
585
  class_name: Any | None = None,
571
586
  autofocus: bool | None = None,
572
587
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -595,6 +610,7 @@ class RadarChart(ChartBase):
595
610
  style: The style of the component.
596
611
  key: A unique key for the component.
597
612
  id: The id for the component.
613
+ ref: The Var to pass as the ref to the component.
598
614
  class_name: The class name for the component.
599
615
  autofocus: Whether the component should take the focus once the page is loaded
600
616
  custom_attrs: custom attribute
@@ -631,6 +647,7 @@ class RadialBarChart(ChartBase):
631
647
  | None = None,
632
648
  key: Any | None = None,
633
649
  id: Any | None = None,
650
+ ref: Var | None = None,
634
651
  class_name: Any | None = None,
635
652
  autofocus: bool | None = None,
636
653
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -675,6 +692,7 @@ class RadialBarChart(ChartBase):
675
692
  style: The style of the component.
676
693
  key: A unique key for the component.
677
694
  id: The id for the component.
695
+ ref: The Var to pass as the ref to the component.
678
696
  class_name: The class name for the component.
679
697
  autofocus: Whether the component should take the focus once the page is loaded
680
698
  custom_attrs: custom attribute
@@ -702,6 +720,7 @@ class ScatterChart(ChartBase):
702
720
  | None = None,
703
721
  key: Any | None = None,
704
722
  id: Any | None = None,
723
+ ref: Var | None = None,
705
724
  class_name: Any | None = None,
706
725
  autofocus: bool | None = None,
707
726
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -729,6 +748,7 @@ class ScatterChart(ChartBase):
729
748
  style: The style of the component.
730
749
  key: A unique key for the component.
731
750
  id: The id for the component.
751
+ ref: The Var to pass as the ref to the component.
732
752
  class_name: The class name for the component.
733
753
  autofocus: Whether the component should take the focus once the page is loaded
734
754
  custom_attrs: custom attribute
@@ -757,6 +777,7 @@ class FunnelChart(ChartBase):
757
777
  | None = None,
758
778
  key: Any | None = None,
759
779
  id: Any | None = None,
780
+ ref: Var | None = None,
760
781
  class_name: Any | None = None,
761
782
  autofocus: bool | None = None,
762
783
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -793,6 +814,7 @@ class FunnelChart(ChartBase):
793
814
  style: The style of the component.
794
815
  key: A unique key for the component.
795
816
  id: The id for the component.
817
+ ref: The Var to pass as the ref to the component.
796
818
  class_name: The class name for the component.
797
819
  autofocus: Whether the component should take the focus once the page is loaded
798
820
  custom_attrs: custom attribute
@@ -830,6 +852,7 @@ class Treemap(RechartsCharts):
830
852
  | None = None,
831
853
  key: Any | None = None,
832
854
  id: Any | None = None,
855
+ ref: Var | None = None,
833
856
  class_name: Any | None = None,
834
857
  autofocus: bool | None = None,
835
858
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -871,6 +894,7 @@ class Treemap(RechartsCharts):
871
894
  style: The style of the component.
872
895
  key: A unique key for the component.
873
896
  id: The id for the component.
897
+ ref: The Var to pass as the ref to the component.
874
898
  class_name: The class name for the component.
875
899
  autofocus: Whether the component should take the focus once the page is loaded
876
900
  custom_attrs: custom attribute