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 Html(Div):
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,
@@ -247,6 +248,7 @@ class Html(Div):
247
248
  style: The style of the component.
248
249
  key: A unique key for the component.
249
250
  id: The id for the component.
251
+ ref: The Var to pass as the ref to the component.
250
252
  class_name: The class name for the component.
251
253
  autofocus: Whether the component should take the focus once the page is loaded
252
254
  custom_attrs: custom attribute
@@ -208,6 +208,7 @@ class StickyLogo(Svg):
208
208
  | None = None,
209
209
  key: Any | None = None,
210
210
  id: Any | None = None,
211
+ ref: Var | None = None,
211
212
  class_name: Any | None = None,
212
213
  autofocus: bool | None = None,
213
214
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -560,6 +561,7 @@ class StickyLabel(Text):
560
561
  | None = None,
561
562
  key: Any | None = None,
562
563
  id: Any | None = None,
564
+ ref: Var | None = None,
563
565
  class_name: Any | None = None,
564
566
  autofocus: bool | None = None,
565
567
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -815,6 +817,7 @@ class StickyBadge(A):
815
817
  | None = None,
816
818
  key: Any | None = None,
817
819
  id: Any | None = None,
820
+ ref: Var | None = None,
818
821
  class_name: Any | None = None,
819
822
  autofocus: bool | None = None,
820
823
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1071,6 +1074,7 @@ class StickyNamespace(ComponentNamespace):
1071
1074
  | None = None,
1072
1075
  key: Any | None = None,
1073
1076
  id: Any | None = None,
1077
+ ref: Var | None = None,
1074
1078
  class_name: Any | None = None,
1075
1079
  autofocus: bool | None = None,
1076
1080
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -52,6 +52,7 @@ class UploadFilesProvider(Component):
52
52
  | None = None,
53
53
  key: Any | None = None,
54
54
  id: Any | None = None,
55
+ ref: Var | None = None,
55
56
  class_name: Any | None = None,
56
57
  autofocus: bool | None = None,
57
58
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -79,6 +80,7 @@ class UploadFilesProvider(Component):
79
80
  style: The style of the component.
80
81
  key: A unique key for the component.
81
82
  id: The id for the component.
83
+ ref: The Var to pass as the ref to the component.
82
84
  class_name: The class name for the component.
83
85
  autofocus: Whether the component should take the focus once the page is loaded
84
86
  custom_attrs: custom attribute
@@ -102,6 +104,7 @@ class GhostUpload(Fragment):
102
104
  | None = None,
103
105
  key: Any | None = None,
104
106
  id: Any | None = None,
107
+ ref: Var | None = None,
105
108
  class_name: Any | None = None,
106
109
  autofocus: bool | None = None,
107
110
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -131,6 +134,7 @@ class GhostUpload(Fragment):
131
134
  style: The style of the component.
132
135
  key: A unique key for the component.
133
136
  id: The id for the component.
137
+ ref: The Var to pass as the ref to the component.
134
138
  class_name: The class name for the component.
135
139
  autofocus: Whether the component should take the focus once the page is loaded
136
140
  custom_attrs: custom attribute
@@ -166,6 +170,7 @@ class Upload(MemoizationLeaf):
166
170
  | None = None,
167
171
  key: Any | None = None,
168
172
  id: Any | None = None,
173
+ ref: Var | None = None,
169
174
  class_name: Any | None = None,
170
175
  autofocus: bool | None = None,
171
176
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -205,6 +210,7 @@ class Upload(MemoizationLeaf):
205
210
  style: The style of the component.
206
211
  key: A unique key for the component.
207
212
  id: The id for the component.
213
+ ref: The Var to pass as the ref to the component.
208
214
  class_name: The class name for the component.
209
215
  autofocus: Whether the component should take the focus once the page is loaded
210
216
  custom_attrs: custom attribute
@@ -238,6 +244,7 @@ class StyledUpload(Upload):
238
244
  | None = None,
239
245
  key: Any | None = None,
240
246
  id: Any | None = None,
247
+ ref: Var | None = None,
241
248
  class_name: Any | None = None,
242
249
  autofocus: bool | None = None,
243
250
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -277,6 +284,7 @@ class StyledUpload(Upload):
277
284
  style: The style of the component.
278
285
  key: A unique key for the component.
279
286
  id: The id for the component.
287
+ ref: The Var to pass as the ref to the component.
280
288
  class_name: The class name for the component.
281
289
  autofocus: Whether the component should take the focus once the page is loaded
282
290
  custom_attrs: custom attribute
@@ -310,6 +318,7 @@ class UploadNamespace(ComponentNamespace):
310
318
  | None = None,
311
319
  key: Any | None = None,
312
320
  id: Any | None = None,
321
+ ref: Var | None = None,
313
322
  class_name: Any | None = None,
314
323
  autofocus: bool | None = None,
315
324
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -349,6 +358,7 @@ class UploadNamespace(ComponentNamespace):
349
358
  style: The style of the component.
350
359
  key: A unique key for the component.
351
360
  id: The id for the component.
361
+ ref: The Var to pass as the ref to the component.
352
362
  class_name: The class name for the component.
353
363
  autofocus: Whether the component should take the focus once the page is loaded
354
364
  custom_attrs: custom attribute
@@ -937,6 +937,7 @@ class CodeBlock(Component, MarkdownComponentMap):
937
937
  | None = None,
938
938
  key: Any | None = None,
939
939
  id: Any | None = None,
940
+ ref: Var | None = None,
940
941
  class_name: Any | None = None,
941
942
  autofocus: bool | None = None,
942
943
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -974,6 +975,7 @@ class CodeBlock(Component, MarkdownComponentMap):
974
975
  style: The style of the component.
975
976
  key: A unique key for the component.
976
977
  id: The id for the component.
978
+ ref: The Var to pass as the ref to the component.
977
979
  class_name: The class name for the component.
978
980
  autofocus: Whether the component should take the focus once the page is loaded
979
981
  custom_attrs: custom attribute
@@ -1576,6 +1578,7 @@ class CodeblockNamespace(ComponentNamespace):
1576
1578
  | None = None,
1577
1579
  key: Any | None = None,
1578
1580
  id: Any | None = None,
1581
+ ref: Var | None = None,
1579
1582
  class_name: Any | None = None,
1580
1583
  autofocus: bool | None = None,
1581
1584
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1613,6 +1616,7 @@ class CodeblockNamespace(ComponentNamespace):
1613
1616
  style: The style of the component.
1614
1617
  key: A unique key for the component.
1615
1618
  id: The id for the component.
1619
+ ref: The Var to pass as the ref to the component.
1616
1620
  class_name: The class name for the component.
1617
1621
  autofocus: Whether the component should take the focus once the page is loaded
1618
1622
  custom_attrs: custom attribute
@@ -164,10 +164,10 @@ class DataEditor(NoSSRComponent):
164
164
 
165
165
  tag = "DataEditor"
166
166
  is_default = True
167
- library: str | None = "@glideapps/glide-data-grid@^6.0.3"
167
+ library: str | None = "@glideapps/glide-data-grid@6.0.3"
168
168
  lib_dependencies: list[str] = [
169
- "lodash@^4.17.21",
170
- "react-responsive-carousel@^3.2.7",
169
+ "lodash@4.17.21",
170
+ "react-responsive-carousel@3.2.23",
171
171
  ]
172
172
 
173
173
  # Number of rows.
@@ -173,6 +173,7 @@ class DataEditor(NoSSRComponent):
173
173
  | None = None,
174
174
  key: Any | None = None,
175
175
  id: Any | None = None,
176
+ ref: Var | None = None,
176
177
  class_name: Any | None = None,
177
178
  autofocus: bool | None = None,
178
179
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -261,6 +262,7 @@ class DataEditor(NoSSRComponent):
261
262
  style: The style of the component.
262
263
  key: A unique key for the component.
263
264
  id: The id for the component.
265
+ ref: The Var to pass as the ref to the component.
264
266
  class_name: The class name for the component.
265
267
  autofocus: Whether the component should take the focus once the page is loaded
266
268
  custom_attrs: custom attribute
@@ -917,6 +917,7 @@ class ShikiCodeBlock(Component, MarkdownComponentMap):
917
917
  | None = None,
918
918
  key: Any | None = None,
919
919
  id: Any | None = None,
920
+ ref: Var | None = None,
920
921
  class_name: Any | None = None,
921
922
  autofocus: bool | None = None,
922
923
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -950,6 +951,7 @@ class ShikiCodeBlock(Component, MarkdownComponentMap):
950
951
  style: The style of the component.
951
952
  key: A unique key for the component.
952
953
  id: The id for the component.
954
+ ref: The Var to pass as the ref to the component.
953
955
  class_name: The class name for the component.
954
956
  autofocus: Whether the component should take the focus once the page is loaded
955
957
  custom_attrs: custom attribute
@@ -1534,6 +1536,7 @@ class ShikiHighLevelCodeBlock(ShikiCodeBlock):
1534
1536
  | None = None,
1535
1537
  key: Any | None = None,
1536
1538
  id: Any | None = None,
1539
+ ref: Var | None = None,
1537
1540
  class_name: Any | None = None,
1538
1541
  autofocus: bool | None = None,
1539
1542
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1571,6 +1574,7 @@ class ShikiHighLevelCodeBlock(ShikiCodeBlock):
1571
1574
  style: The style of the component.
1572
1575
  key: A unique key for the component.
1573
1576
  id: The id for the component.
1577
+ ref: The Var to pass as the ref to the component.
1574
1578
  class_name: The class name for the component.
1575
1579
  autofocus: Whether the component should take the focus once the page is loaded
1576
1580
  custom_attrs: custom attribute
@@ -2154,6 +2158,7 @@ class CodeblockNamespace(ComponentNamespace):
2154
2158
  | None = None,
2155
2159
  key: Any | None = None,
2156
2160
  id: Any | None = None,
2161
+ ref: Var | None = None,
2157
2162
  class_name: Any | None = None,
2158
2163
  autofocus: bool | None = None,
2159
2164
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -2191,6 +2196,7 @@ class CodeblockNamespace(ComponentNamespace):
2191
2196
  style: The style of the component.
2192
2197
  key: A unique key for the component.
2193
2198
  id: The id for the component.
2199
+ ref: The Var to pass as the ref to the component.
2194
2200
  class_name: The class name for the component.
2195
2201
  autofocus: Whether the component should take the focus once the page is loaded
2196
2202
  custom_attrs: custom attribute
@@ -24,6 +24,7 @@ class Element(Component):
24
24
  | None = None,
25
25
  key: Any | None = None,
26
26
  id: Any | None = None,
27
+ ref: Var | None = None,
27
28
  class_name: Any | None = None,
28
29
  autofocus: bool | None = None,
29
30
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -51,6 +52,7 @@ class Element(Component):
51
52
  style: The style of the component.
52
53
  key: A unique key for the component.
53
54
  id: The id for the component.
55
+ ref: The Var to pass as the ref to the component.
54
56
  class_name: The class name for the component.
55
57
  autofocus: Whether the component should take the focus once the page is loaded
56
58
  custom_attrs: custom attribute
@@ -280,6 +280,7 @@ class BaseHTML(Element):
280
280
  | None = None,
281
281
  key: Any | None = None,
282
282
  id: Any | None = None,
283
+ ref: Var | None = None,
283
284
  class_name: Any | None = None,
284
285
  autofocus: bool | None = None,
285
286
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -323,6 +324,7 @@ class BaseHTML(Element):
323
324
  style: The style of the component.
324
325
  key: A unique key for the component.
325
326
  id: The id for the component.
327
+ ref: The Var to pass as the ref to the component.
326
328
  class_name: The class name for the component.
327
329
  autofocus: Whether the component should take the focus once the page is loaded
328
330
  custom_attrs: custom attribute
@@ -226,6 +226,7 @@ class Button(BaseHTML):
226
226
  | None = None,
227
227
  key: Any | None = None,
228
228
  id: Any | None = None,
229
+ ref: Var | None = None,
229
230
  class_name: Any | None = None,
230
231
  autofocus: bool | None = None,
231
232
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -280,6 +281,7 @@ class Button(BaseHTML):
280
281
  style: The style of the component.
281
282
  key: A unique key for the component.
282
283
  id: The id for the component.
284
+ ref: The Var to pass as the ref to the component.
283
285
  class_name: The class name for the component.
284
286
  autofocus: Whether the component should take the focus once the page is loaded
285
287
  custom_attrs: custom attribute
@@ -481,6 +483,7 @@ class Datalist(BaseHTML):
481
483
  | None = None,
482
484
  key: Any | None = None,
483
485
  id: Any | None = None,
486
+ ref: Var | None = None,
484
487
  class_name: Any | None = None,
485
488
  autofocus: bool | None = None,
486
489
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -524,6 +527,7 @@ class Datalist(BaseHTML):
524
527
  style: The style of the component.
525
528
  key: A unique key for the component.
526
529
  id: The id for the component.
530
+ ref: The Var to pass as the ref to the component.
527
531
  class_name: The class name for the component.
528
532
  autofocus: Whether the component should take the focus once the page is loaded
529
533
  custom_attrs: custom attribute
@@ -550,6 +554,7 @@ class Fieldset(Element):
550
554
  | None = None,
551
555
  key: Any | None = None,
552
556
  id: Any | None = None,
557
+ ref: Var | None = None,
553
558
  class_name: Any | None = None,
554
559
  autofocus: bool | None = None,
555
560
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -580,6 +585,7 @@ class Fieldset(Element):
580
585
  style: The style of the component.
581
586
  key: A unique key for the component.
582
587
  id: The id for the component.
588
+ ref: The Var to pass as the ref to the component.
583
589
  class_name: The class name for the component.
584
590
  autofocus: Whether the component should take the focus once the page is loaded
585
591
  custom_attrs: custom attribute
@@ -795,6 +801,7 @@ class Form(BaseHTML):
795
801
  | None = None,
796
802
  key: Any | None = None,
797
803
  id: Any | None = None,
804
+ ref: Var | None = None,
798
805
  class_name: Any | None = None,
799
806
  autofocus: bool | None = None,
800
807
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -851,6 +858,7 @@ class Form(BaseHTML):
851
858
  style: The style of the component.
852
859
  key: A unique key for the component.
853
860
  id: The id for the component.
861
+ ref: The Var to pass as the ref to the component.
854
862
  class_name: The class name for the component.
855
863
  autofocus: Whether the component should take the focus once the page is loaded
856
864
  custom_attrs: custom attribute
@@ -1163,6 +1171,7 @@ class BaseInput(BaseHTML):
1163
1171
  | None = None,
1164
1172
  key: Any | None = None,
1165
1173
  id: Any | None = None,
1174
+ ref: Var | None = None,
1166
1175
  class_name: Any | None = None,
1167
1176
  autofocus: bool | None = None,
1168
1177
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1241,6 +1250,7 @@ class BaseInput(BaseHTML):
1241
1250
  style: The style of the component.
1242
1251
  key: A unique key for the component.
1243
1252
  id: The id for the component.
1253
+ ref: The Var to pass as the ref to the component.
1244
1254
  class_name: The class name for the component.
1245
1255
  autofocus: Whether the component should take the focus once the page is loaded
1246
1256
  custom_attrs: custom attribute
@@ -1525,6 +1535,7 @@ class CheckboxInput(BaseInput):
1525
1535
  | None = None,
1526
1536
  key: Any | None = None,
1527
1537
  id: Any | None = None,
1538
+ ref: Var | None = None,
1528
1539
  class_name: Any | None = None,
1529
1540
  autofocus: bool | None = None,
1530
1541
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1607,6 +1618,7 @@ class CheckboxInput(BaseInput):
1607
1618
  style: The style of the component.
1608
1619
  key: A unique key for the component.
1609
1620
  id: The id for the component.
1621
+ ref: The Var to pass as the ref to the component.
1610
1622
  class_name: The class name for the component.
1611
1623
  autofocus: Whether the component should take the focus once the page is loaded
1612
1624
  custom_attrs: custom attribute
@@ -1891,6 +1903,7 @@ class ValueNumberInput(BaseInput):
1891
1903
  | None = None,
1892
1904
  key: Any | None = None,
1893
1905
  id: Any | None = None,
1906
+ ref: Var | None = None,
1894
1907
  class_name: Any | None = None,
1895
1908
  autofocus: bool | None = None,
1896
1909
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1973,6 +1986,7 @@ class ValueNumberInput(BaseInput):
1973
1986
  style: The style of the component.
1974
1987
  key: A unique key for the component.
1975
1988
  id: The id for the component.
1989
+ ref: The Var to pass as the ref to the component.
1976
1990
  class_name: The class name for the component.
1977
1991
  autofocus: Whether the component should take the focus once the page is loaded
1978
1992
  custom_attrs: custom attribute
@@ -2257,6 +2271,7 @@ class Input(BaseInput):
2257
2271
  | None = None,
2258
2272
  key: Any | None = None,
2259
2273
  id: Any | None = None,
2274
+ ref: Var | None = None,
2260
2275
  class_name: Any | None = None,
2261
2276
  autofocus: bool | None = None,
2262
2277
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -2339,6 +2354,7 @@ class Input(BaseInput):
2339
2354
  style: The style of the component.
2340
2355
  key: A unique key for the component.
2341
2356
  id: The id for the component.
2357
+ ref: The Var to pass as the ref to the component.
2342
2358
  class_name: The class name for the component.
2343
2359
  autofocus: Whether the component should take the focus once the page is loaded
2344
2360
  custom_attrs: custom attribute
@@ -2542,6 +2558,7 @@ class Label(BaseHTML):
2542
2558
  | None = None,
2543
2559
  key: Any | None = None,
2544
2560
  id: Any | None = None,
2561
+ ref: Var | None = None,
2545
2562
  class_name: Any | None = None,
2546
2563
  autofocus: bool | None = None,
2547
2564
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -2587,6 +2604,7 @@ class Label(BaseHTML):
2587
2604
  style: The style of the component.
2588
2605
  key: A unique key for the component.
2589
2606
  id: The id for the component.
2607
+ ref: The Var to pass as the ref to the component.
2590
2608
  class_name: The class name for the component.
2591
2609
  autofocus: Whether the component should take the focus once the page is loaded
2592
2610
  custom_attrs: custom attribute
@@ -2788,6 +2806,7 @@ class Legend(BaseHTML):
2788
2806
  | None = None,
2789
2807
  key: Any | None = None,
2790
2808
  id: Any | None = None,
2809
+ ref: Var | None = None,
2791
2810
  class_name: Any | None = None,
2792
2811
  autofocus: bool | None = None,
2793
2812
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -2831,6 +2850,7 @@ class Legend(BaseHTML):
2831
2850
  style: The style of the component.
2832
2851
  key: A unique key for the component.
2833
2852
  id: The id for the component.
2853
+ ref: The Var to pass as the ref to the component.
2834
2854
  class_name: The class name for the component.
2835
2855
  autofocus: Whether the component should take the focus once the page is loaded
2836
2856
  custom_attrs: custom attribute
@@ -3039,6 +3059,7 @@ class Meter(BaseHTML):
3039
3059
  | None = None,
3040
3060
  key: Any | None = None,
3041
3061
  id: Any | None = None,
3062
+ ref: Var | None = None,
3042
3063
  class_name: Any | None = None,
3043
3064
  autofocus: bool | None = None,
3044
3065
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -3089,6 +3110,7 @@ class Meter(BaseHTML):
3089
3110
  style: The style of the component.
3090
3111
  key: A unique key for the component.
3091
3112
  id: The id for the component.
3113
+ ref: The Var to pass as the ref to the component.
3092
3114
  class_name: The class name for the component.
3093
3115
  autofocus: Whether the component should take the focus once the page is loaded
3094
3116
  custom_attrs: custom attribute
@@ -3292,6 +3314,7 @@ class Optgroup(BaseHTML):
3292
3314
  | None = None,
3293
3315
  key: Any | None = None,
3294
3316
  id: Any | None = None,
3317
+ ref: Var | None = None,
3295
3318
  class_name: Any | None = None,
3296
3319
  autofocus: bool | None = None,
3297
3320
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -3337,6 +3360,7 @@ class Optgroup(BaseHTML):
3337
3360
  style: The style of the component.
3338
3361
  key: A unique key for the component.
3339
3362
  id: The id for the component.
3363
+ ref: The Var to pass as the ref to the component.
3340
3364
  class_name: The class name for the component.
3341
3365
  autofocus: Whether the component should take the focus once the page is loaded
3342
3366
  custom_attrs: custom attribute
@@ -3542,6 +3566,7 @@ class Option(BaseHTML):
3542
3566
  | None = None,
3543
3567
  key: Any | None = None,
3544
3568
  id: Any | None = None,
3569
+ ref: Var | None = None,
3545
3570
  class_name: Any | None = None,
3546
3571
  autofocus: bool | None = None,
3547
3572
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -3589,6 +3614,7 @@ class Option(BaseHTML):
3589
3614
  style: The style of the component.
3590
3615
  key: A unique key for the component.
3591
3616
  id: The id for the component.
3617
+ ref: The Var to pass as the ref to the component.
3592
3618
  class_name: The class name for the component.
3593
3619
  autofocus: Whether the component should take the focus once the page is loaded
3594
3620
  custom_attrs: custom attribute
@@ -3793,6 +3819,7 @@ class Output(BaseHTML):
3793
3819
  | None = None,
3794
3820
  key: Any | None = None,
3795
3821
  id: Any | None = None,
3822
+ ref: Var | None = None,
3796
3823
  class_name: Any | None = None,
3797
3824
  autofocus: bool | None = None,
3798
3825
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -3839,6 +3866,7 @@ class Output(BaseHTML):
3839
3866
  style: The style of the component.
3840
3867
  key: A unique key for the component.
3841
3868
  id: The id for the component.
3869
+ ref: The Var to pass as the ref to the component.
3842
3870
  class_name: The class name for the component.
3843
3871
  autofocus: Whether the component should take the focus once the page is loaded
3844
3872
  custom_attrs: custom attribute
@@ -4043,6 +4071,7 @@ class Progress(BaseHTML):
4043
4071
  | None = None,
4044
4072
  key: Any | None = None,
4045
4073
  id: Any | None = None,
4074
+ ref: Var | None = None,
4046
4075
  class_name: Any | None = None,
4047
4076
  autofocus: bool | None = None,
4048
4077
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -4089,6 +4118,7 @@ class Progress(BaseHTML):
4089
4118
  style: The style of the component.
4090
4119
  key: A unique key for the component.
4091
4120
  id: The id for the component.
4121
+ ref: The Var to pass as the ref to the component.
4092
4122
  class_name: The class name for the component.
4093
4123
  autofocus: Whether the component should take the focus once the page is loaded
4094
4124
  custom_attrs: custom attribute
@@ -4300,6 +4330,7 @@ class Select(BaseHTML):
4300
4330
  | None = None,
4301
4331
  key: Any | None = None,
4302
4332
  id: Any | None = None,
4333
+ ref: Var | None = None,
4303
4334
  class_name: Any | None = None,
4304
4335
  autofocus: bool | None = None,
4305
4336
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -4355,6 +4386,7 @@ class Select(BaseHTML):
4355
4386
  style: The style of the component.
4356
4387
  key: A unique key for the component.
4357
4388
  id: The id for the component.
4389
+ ref: The Var to pass as the ref to the component.
4358
4390
  class_name: The class name for the component.
4359
4391
  autofocus: Whether the component should take the focus once the page is loaded
4360
4392
  custom_attrs: custom attribute
@@ -4577,6 +4609,7 @@ class Textarea(BaseHTML):
4577
4609
  | None = None,
4578
4610
  key: Any | None = None,
4579
4611
  id: Any | None = None,
4612
+ ref: Var | None = None,
4580
4613
  class_name: Any | None = None,
4581
4614
  autofocus: bool | None = None,
4582
4615
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -4646,6 +4679,7 @@ class Textarea(BaseHTML):
4646
4679
  style: The style of the component.
4647
4680
  key: A unique key for the component.
4648
4681
  id: The id for the component.
4682
+ ref: The Var to pass as the ref to the component.
4649
4683
  class_name: The class name for the component.
4650
4684
  autofocus: Whether the component should take the focus once the page is loaded
4651
4685
  custom_attrs: custom attribute