reflex 0.7.11__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.11.dist-info → reflex-0.7.12.dist-info}/METADATA +4 -4
  138. {reflex-0.7.11.dist-info → reflex-0.7.12.dist-info}/RECORD +142 -141
  139. scripts/hatch_build.py +50 -0
  140. {reflex-0.7.11.dist-info → reflex-0.7.12.dist-info}/WHEEL +0 -0
  141. {reflex-0.7.11.dist-info → reflex-0.7.12.dist-info}/entry_points.txt +0 -0
  142. {reflex-0.7.11.dist-info → reflex-0.7.12.dist-info}/licenses/LICENSE +0 -0
@@ -275,6 +275,7 @@ class CalloutRoot(elements.Div, RadixThemesComponent):
275
275
  | None = None,
276
276
  key: Any | None = None,
277
277
  id: Any | None = None,
278
+ ref: Var | None = None,
278
279
  class_name: Any | None = None,
279
280
  autofocus: bool | None = None,
280
281
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -326,6 +327,7 @@ class CalloutRoot(elements.Div, RadixThemesComponent):
326
327
  style: The style of the component.
327
328
  key: A unique key for the component.
328
329
  id: The id for the component.
330
+ ref: The Var to pass as the ref to the component.
329
331
  class_name: The class name for the component.
330
332
  autofocus: Whether the component should take the focus once the page is loaded
331
333
  custom_attrs: custom attribute
@@ -527,6 +529,7 @@ class CalloutIcon(elements.Div, RadixThemesComponent):
527
529
  | None = None,
528
530
  key: Any | None = None,
529
531
  id: Any | None = None,
532
+ ref: Var | None = None,
530
533
  class_name: Any | None = None,
531
534
  autofocus: bool | None = None,
532
535
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -573,6 +576,7 @@ class CalloutIcon(elements.Div, RadixThemesComponent):
573
576
  style: The style of the component.
574
577
  key: A unique key for the component.
575
578
  id: The id for the component.
579
+ ref: The Var to pass as the ref to the component.
576
580
  class_name: The class name for the component.
577
581
  autofocus: Whether the component should take the focus once the page is loaded
578
582
  custom_attrs: custom attribute
@@ -774,6 +778,7 @@ class CalloutText(elements.P, RadixThemesComponent):
774
778
  | None = None,
775
779
  key: Any | None = None,
776
780
  id: Any | None = None,
781
+ ref: Var | None = None,
777
782
  class_name: Any | None = None,
778
783
  autofocus: bool | None = None,
779
784
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -820,6 +825,7 @@ class CalloutText(elements.P, RadixThemesComponent):
820
825
  style: The style of the component.
821
826
  key: A unique key for the component.
822
827
  id: The id for the component.
828
+ ref: The Var to pass as the ref to the component.
823
829
  class_name: The class name for the component.
824
830
  autofocus: Whether the component should take the focus once the page is loaded
825
831
  custom_attrs: custom attribute
@@ -1091,6 +1097,7 @@ class Callout(CalloutRoot):
1091
1097
  | None = None,
1092
1098
  key: Any | None = None,
1093
1099
  id: Any | None = None,
1100
+ ref: Var | None = None,
1094
1101
  class_name: Any | None = None,
1095
1102
  autofocus: bool | None = None,
1096
1103
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1141,6 +1148,7 @@ class Callout(CalloutRoot):
1141
1148
  style: The style of the component.
1142
1149
  key: A unique key for the component.
1143
1150
  id: The id for the component.
1151
+ ref: The Var to pass as the ref to the component.
1144
1152
  class_name: The class name for the component.
1145
1153
  autofocus: Whether the component should take the focus once the page is loaded
1146
1154
  custom_attrs: custom attribute
@@ -1414,6 +1422,7 @@ class CalloutNamespace(ComponentNamespace):
1414
1422
  | None = None,
1415
1423
  key: Any | None = None,
1416
1424
  id: Any | None = None,
1425
+ ref: Var | None = None,
1417
1426
  class_name: Any | None = None,
1418
1427
  autofocus: bool | None = None,
1419
1428
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1464,6 +1473,7 @@ class CalloutNamespace(ComponentNamespace):
1464
1473
  style: The style of the component.
1465
1474
  key: A unique key for the component.
1466
1475
  id: The id for the component.
1476
+ ref: The Var to pass as the ref to the component.
1467
1477
  class_name: The class name for the component.
1468
1478
  autofocus: Whether the component should take the focus once the page is loaded
1469
1479
  custom_attrs: custom attribute
@@ -215,6 +215,7 @@ class Card(elements.Div, RadixThemesComponent):
215
215
  | None = None,
216
216
  key: Any | None = None,
217
217
  id: Any | None = None,
218
+ ref: Var | None = None,
218
219
  class_name: Any | None = None,
219
220
  autofocus: bool | None = None,
220
221
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -264,6 +265,7 @@ class Card(elements.Div, RadixThemesComponent):
264
265
  style: The style of the component.
265
266
  key: A unique key for the component.
266
267
  id: The id for the component.
268
+ ref: The Var to pass as the ref to the component.
267
269
  class_name: The class name for the component.
268
270
  autofocus: Whether the component should take the focus once the page is loaded
269
271
  custom_attrs: custom attribute
@@ -103,6 +103,7 @@ class Checkbox(RadixThemesComponent):
103
103
  | None = None,
104
104
  key: Any | None = None,
105
105
  id: Any | None = None,
106
+ ref: Var | None = None,
106
107
  class_name: Any | None = None,
107
108
  autofocus: bool | None = None,
108
109
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -146,6 +147,7 @@ class Checkbox(RadixThemesComponent):
146
147
  style: The style of the component.
147
148
  key: A unique key for the component.
148
149
  id: The id for the component.
150
+ ref: The Var to pass as the ref to the component.
149
151
  class_name: The class name for the component.
150
152
  autofocus: Whether the component should take the focus once the page is loaded
151
153
  custom_attrs: custom attribute
@@ -244,6 +246,7 @@ class HighLevelCheckbox(RadixThemesComponent):
244
246
  | None = None,
245
247
  key: Any | None = None,
246
248
  id: Any | None = None,
249
+ ref: Var | None = None,
247
250
  class_name: Any | None = None,
248
251
  autofocus: bool | None = None,
249
252
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -286,6 +289,7 @@ class HighLevelCheckbox(RadixThemesComponent):
286
289
  style: The style of the component.
287
290
  key: A unique key for the component.
288
291
  id: The id for the component.
292
+ ref: The Var to pass as the ref to the component.
289
293
  class_name: The class name for the component.
290
294
  autofocus: Whether the component should take the focus once the page is loaded
291
295
  custom_attrs: custom attribute
@@ -382,6 +386,7 @@ class CheckboxNamespace(ComponentNamespace):
382
386
  | None = None,
383
387
  key: Any | None = None,
384
388
  id: Any | None = None,
389
+ ref: Var | None = None,
385
390
  class_name: Any | None = None,
386
391
  autofocus: bool | None = None,
387
392
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -424,6 +429,7 @@ class CheckboxNamespace(ComponentNamespace):
424
429
  style: The style of the component.
425
430
  key: A unique key for the component.
426
431
  id: The id for the component.
432
+ ref: The Var to pass as the ref to the component.
427
433
  class_name: The class name for the component.
428
434
  autofocus: Whether the component should take the focus once the page is loaded
429
435
  custom_attrs: custom attribute
@@ -115,6 +115,7 @@ class CheckboxCardsRoot(RadixThemesComponent):
115
115
  | None = None,
116
116
  key: Any | None = None,
117
117
  id: Any | None = None,
118
+ ref: Var | None = None,
118
119
  class_name: Any | None = None,
119
120
  autofocus: bool | None = None,
120
121
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -151,6 +152,7 @@ class CheckboxCardsRoot(RadixThemesComponent):
151
152
  style: The style of the component.
152
153
  key: A unique key for the component.
153
154
  id: The id for the component.
155
+ ref: The Var to pass as the ref to the component.
154
156
  class_name: The class name for the component.
155
157
  autofocus: Whether the component should take the focus once the page is loaded
156
158
  custom_attrs: custom attribute
@@ -174,6 +176,7 @@ class CheckboxCardsItem(RadixThemesComponent):
174
176
  | None = None,
175
177
  key: Any | None = None,
176
178
  id: Any | None = None,
179
+ ref: Var | None = None,
177
180
  class_name: Any | None = None,
178
181
  autofocus: bool | None = None,
179
182
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -204,6 +207,7 @@ class CheckboxCardsItem(RadixThemesComponent):
204
207
  style: The style of the component.
205
208
  key: A unique key for the component.
206
209
  id: The id for the component.
210
+ ref: The Var to pass as the ref to the component.
207
211
  class_name: The class name for the component.
208
212
  autofocus: Whether the component should take the focus once the page is loaded
209
213
  custom_attrs: custom attribute
@@ -95,6 +95,7 @@ class CheckboxGroupRoot(RadixThemesComponent):
95
95
  | None = None,
96
96
  key: Any | None = None,
97
97
  id: Any | None = None,
98
+ ref: Var | None = None,
98
99
  class_name: Any | None = None,
99
100
  autofocus: bool | None = None,
100
101
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -131,6 +132,7 @@ class CheckboxGroupRoot(RadixThemesComponent):
131
132
  style: The style of the component.
132
133
  key: A unique key for the component.
133
134
  id: The id for the component.
135
+ ref: The Var to pass as the ref to the component.
134
136
  class_name: The class name for the component.
135
137
  autofocus: Whether the component should take the focus once the page is loaded
136
138
  custom_attrs: custom attribute
@@ -156,6 +158,7 @@ class CheckboxGroupItem(RadixThemesComponent):
156
158
  | None = None,
157
159
  key: Any | None = None,
158
160
  id: Any | None = None,
161
+ ref: Var | None = None,
159
162
  class_name: Any | None = None,
160
163
  autofocus: bool | None = None,
161
164
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -188,6 +191,7 @@ class CheckboxGroupItem(RadixThemesComponent):
188
191
  style: The style of the component.
189
192
  key: A unique key for the component.
190
193
  id: The id for the component.
194
+ ref: The Var to pass as the ref to the component.
191
195
  class_name: The class name for the component.
192
196
  autofocus: Whether the component should take the focus once the page is loaded
193
197
  custom_attrs: custom attribute
@@ -37,6 +37,7 @@ class ContextMenuRoot(RadixThemesComponent):
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,
@@ -71,6 +72,7 @@ class ContextMenuRoot(RadixThemesComponent):
71
72
  style: The style of the component.
72
73
  key: A unique key for the component.
73
74
  id: The id for the component.
75
+ ref: The Var to pass as the ref to the component.
74
76
  class_name: The class name for the component.
75
77
  autofocus: Whether the component should take the focus once the page is loaded
76
78
  custom_attrs: custom attribute
@@ -95,6 +97,7 @@ class ContextMenuTrigger(RadixThemesComponent):
95
97
  | None = None,
96
98
  key: Any | None = None,
97
99
  id: Any | None = None,
100
+ ref: Var | None = None,
98
101
  class_name: Any | None = None,
99
102
  autofocus: bool | None = None,
100
103
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -126,6 +129,7 @@ class ContextMenuTrigger(RadixThemesComponent):
126
129
  style: The style of the component.
127
130
  key: A unique key for the component.
128
131
  id: The id for the component.
132
+ ref: The Var to pass as the ref to the component.
129
133
  class_name: The class name for the component.
130
134
  autofocus: Whether the component should take the focus once the page is loaded
131
135
  custom_attrs: custom attribute
@@ -235,6 +239,7 @@ class ContextMenuContent(RadixThemesComponent):
235
239
  | None = None,
236
240
  key: Any | None = None,
237
241
  id: Any | None = None,
242
+ ref: Var | None = None,
238
243
  class_name: Any | None = None,
239
244
  autofocus: bool | None = None,
240
245
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -290,6 +295,7 @@ class ContextMenuContent(RadixThemesComponent):
290
295
  style: The style of the component.
291
296
  key: A unique key for the component.
292
297
  id: The id for the component.
298
+ ref: The Var to pass as the ref to the component.
293
299
  class_name: The class name for the component.
294
300
  autofocus: Whether the component should take the focus once the page is loaded
295
301
  custom_attrs: custom attribute
@@ -315,6 +321,7 @@ class ContextMenuSub(RadixThemesComponent):
315
321
  | None = None,
316
322
  key: Any | None = None,
317
323
  id: Any | None = None,
324
+ ref: Var | None = None,
318
325
  class_name: Any | None = None,
319
326
  autofocus: bool | None = None,
320
327
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -349,6 +356,7 @@ class ContextMenuSub(RadixThemesComponent):
349
356
  style: The style of the component.
350
357
  key: A unique key for the component.
351
358
  id: The id for the component.
359
+ ref: The Var to pass as the ref to the component.
352
360
  class_name: The class name for the component.
353
361
  autofocus: Whether the component should take the focus once the page is loaded
354
362
  custom_attrs: custom attribute
@@ -375,6 +383,7 @@ class ContextMenuSubTrigger(RadixThemesComponent):
375
383
  | None = None,
376
384
  key: Any | None = None,
377
385
  id: Any | None = None,
386
+ ref: Var | None = None,
378
387
  class_name: Any | None = None,
379
388
  autofocus: bool | None = None,
380
389
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -408,6 +417,7 @@ class ContextMenuSubTrigger(RadixThemesComponent):
408
417
  style: The style of the component.
409
418
  key: A unique key for the component.
410
419
  id: The id for the component.
420
+ ref: The Var to pass as the ref to the component.
411
421
  class_name: The class name for the component.
412
422
  autofocus: Whether the component should take the focus once the page is loaded
413
423
  custom_attrs: custom attribute
@@ -446,6 +456,7 @@ class ContextMenuSubContent(RadixThemesComponent):
446
456
  | None = None,
447
457
  key: Any | None = None,
448
458
  id: Any | None = None,
459
+ ref: Var | None = None,
449
460
  class_name: Any | None = None,
450
461
  autofocus: bool | None = None,
451
462
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -493,6 +504,7 @@ class ContextMenuSubContent(RadixThemesComponent):
493
504
  style: The style of the component.
494
505
  key: A unique key for the component.
495
506
  id: The id for the component.
507
+ ref: The Var to pass as the ref to the component.
496
508
  class_name: The class name for the component.
497
509
  autofocus: Whether the component should take the focus once the page is loaded
498
510
  custom_attrs: custom attribute
@@ -579,6 +591,7 @@ class ContextMenuItem(RadixThemesComponent):
579
591
  | None = None,
580
592
  key: Any | None = None,
581
593
  id: Any | None = None,
594
+ ref: Var | None = None,
582
595
  class_name: Any | None = None,
583
596
  autofocus: bool | None = None,
584
597
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -616,6 +629,7 @@ class ContextMenuItem(RadixThemesComponent):
616
629
  style: The style of the component.
617
630
  key: A unique key for the component.
618
631
  id: The id for the component.
632
+ ref: The Var to pass as the ref to the component.
619
633
  class_name: The class name for the component.
620
634
  autofocus: Whether the component should take the focus once the page is loaded
621
635
  custom_attrs: custom attribute
@@ -639,6 +653,7 @@ class ContextMenuSeparator(RadixThemesComponent):
639
653
  | None = None,
640
654
  key: Any | None = None,
641
655
  id: Any | None = None,
656
+ ref: Var | None = None,
642
657
  class_name: Any | None = None,
643
658
  autofocus: bool | None = None,
644
659
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -669,6 +684,7 @@ class ContextMenuSeparator(RadixThemesComponent):
669
684
  style: The style of the component.
670
685
  key: A unique key for the component.
671
686
  id: The id for the component.
687
+ ref: The Var to pass as the ref to the component.
672
688
  class_name: The class name for the component.
673
689
  autofocus: Whether the component should take the focus once the page is loaded
674
690
  custom_attrs: custom attribute
@@ -767,6 +783,7 @@ class ContextMenuCheckbox(Checkbox):
767
783
  | None = None,
768
784
  key: Any | None = None,
769
785
  id: Any | None = None,
786
+ ref: Var | None = None,
770
787
  class_name: Any | None = None,
771
788
  autofocus: bool | None = None,
772
789
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -811,6 +828,7 @@ class ContextMenuCheckbox(Checkbox):
811
828
  style: The style of the component.
812
829
  key: A unique key for the component.
813
830
  id: The id for the component.
831
+ ref: The Var to pass as the ref to the component.
814
832
  class_name: The class name for the component.
815
833
  autofocus: Whether the component should take the focus once the page is loaded
816
834
  custom_attrs: custom attribute
@@ -835,6 +853,7 @@ class ContextMenuLabel(RadixThemesComponent):
835
853
  | None = None,
836
854
  key: Any | None = None,
837
855
  id: Any | None = None,
856
+ ref: Var | None = None,
838
857
  class_name: Any | None = None,
839
858
  autofocus: bool | None = None,
840
859
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -866,6 +885,7 @@ class ContextMenuLabel(RadixThemesComponent):
866
885
  style: The style of the component.
867
886
  key: A unique key for the component.
868
887
  id: The id for the component.
888
+ ref: The Var to pass as the ref to the component.
869
889
  class_name: The class name for the component.
870
890
  autofocus: Whether the component should take the focus once the page is loaded
871
891
  custom_attrs: custom attribute
@@ -890,6 +910,7 @@ class ContextMenuGroup(RadixThemesComponent):
890
910
  | None = None,
891
911
  key: Any | None = None,
892
912
  id: Any | None = None,
913
+ ref: Var | None = None,
893
914
  class_name: Any | None = None,
894
915
  autofocus: bool | None = None,
895
916
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -921,6 +942,7 @@ class ContextMenuGroup(RadixThemesComponent):
921
942
  style: The style of the component.
922
943
  key: A unique key for the component.
923
944
  id: The id for the component.
945
+ ref: The Var to pass as the ref to the component.
924
946
  class_name: The class name for the component.
925
947
  autofocus: Whether the component should take the focus once the page is loaded
926
948
  custom_attrs: custom attribute
@@ -946,6 +968,7 @@ class ContextMenuRadioGroup(RadixThemesComponent):
946
968
  | None = None,
947
969
  key: Any | None = None,
948
970
  id: Any | None = None,
971
+ ref: Var | None = None,
949
972
  class_name: Any | None = None,
950
973
  autofocus: bool | None = None,
951
974
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -980,6 +1003,7 @@ class ContextMenuRadioGroup(RadixThemesComponent):
980
1003
  style: The style of the component.
981
1004
  key: A unique key for the component.
982
1005
  id: The id for the component.
1006
+ ref: The Var to pass as the ref to the component.
983
1007
  class_name: The class name for the component.
984
1008
  autofocus: Whether the component should take the focus once the page is loaded
985
1009
  custom_attrs: custom attribute
@@ -1081,6 +1105,7 @@ class ContextMenuRadioItem(HighLevelRadioGroup):
1081
1105
  | None = None,
1082
1106
  key: Any | None = None,
1083
1107
  id: Any | None = None,
1108
+ ref: Var | None = None,
1084
1109
  class_name: Any | None = None,
1085
1110
  autofocus: bool | None = None,
1086
1111
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1124,6 +1149,7 @@ class ContextMenuRadioItem(HighLevelRadioGroup):
1124
1149
  style: The style of the component.
1125
1150
  key: A unique key for the component.
1126
1151
  id: The id for the component.
1152
+ ref: The Var to pass as the ref to the component.
1127
1153
  class_name: The class name for the component.
1128
1154
  autofocus: Whether the component should take the focus once the page is loaded
1129
1155
  custom_attrs: custom attribute
@@ -44,6 +44,7 @@ class DataListRoot(RadixThemesComponent):
44
44
  | None = None,
45
45
  key: Any | None = None,
46
46
  id: Any | None = None,
47
+ ref: Var | None = None,
47
48
  class_name: Any | None = None,
48
49
  autofocus: bool | None = None,
49
50
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -77,6 +78,7 @@ class DataListRoot(RadixThemesComponent):
77
78
  style: The style of the component.
78
79
  key: A unique key for the component.
79
80
  id: The id for the component.
81
+ ref: The Var to pass as the ref to the component.
80
82
  class_name: The class name for the component.
81
83
  autofocus: Whether the component should take the focus once the page is loaded
82
84
  custom_attrs: custom attribute
@@ -109,6 +111,7 @@ class DataListItem(RadixThemesComponent):
109
111
  | None = None,
110
112
  key: Any | None = None,
111
113
  id: Any | None = None,
114
+ ref: Var | None = None,
112
115
  class_name: Any | None = None,
113
116
  autofocus: bool | None = None,
114
117
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -140,6 +143,7 @@ class DataListItem(RadixThemesComponent):
140
143
  style: The style of the component.
141
144
  key: A unique key for the component.
142
145
  id: The id for the component.
146
+ ref: The Var to pass as the ref to the component.
143
147
  class_name: The class name for the component.
144
148
  autofocus: Whether the component should take the focus once the page is loaded
145
149
  custom_attrs: custom attribute
@@ -234,6 +238,7 @@ class DataListLabel(RadixThemesComponent):
234
238
  | None = None,
235
239
  key: Any | None = None,
236
240
  id: Any | None = None,
241
+ ref: Var | None = None,
237
242
  class_name: Any | None = None,
238
243
  autofocus: bool | None = None,
239
244
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -268,6 +273,7 @@ class DataListLabel(RadixThemesComponent):
268
273
  style: The style of the component.
269
274
  key: A unique key for the component.
270
275
  id: The id for the component.
276
+ ref: The Var to pass as the ref to the component.
271
277
  class_name: The class name for the component.
272
278
  autofocus: Whether the component should take the focus once the page is loaded
273
279
  custom_attrs: custom attribute
@@ -291,6 +297,7 @@ class DataListValue(RadixThemesComponent):
291
297
  | None = None,
292
298
  key: Any | None = None,
293
299
  id: Any | None = None,
300
+ ref: Var | None = None,
294
301
  class_name: Any | None = None,
295
302
  autofocus: bool | None = None,
296
303
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -321,6 +328,7 @@ class DataListValue(RadixThemesComponent):
321
328
  style: The style of the component.
322
329
  key: A unique key for the component.
323
330
  id: The id for the component.
331
+ ref: The Var to pass as the ref to the component.
324
332
  class_name: The class name for the component.
325
333
  autofocus: Whether the component should take the focus once the page is loaded
326
334
  custom_attrs: custom attribute
@@ -29,6 +29,7 @@ class DialogRoot(RadixThemesComponent):
29
29
  | None = None,
30
30
  key: Any | None = None,
31
31
  id: Any | None = None,
32
+ ref: Var | None = None,
32
33
  class_name: Any | None = None,
33
34
  autofocus: bool | None = None,
34
35
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -63,6 +64,7 @@ class DialogRoot(RadixThemesComponent):
63
64
  style: The style of the component.
64
65
  key: A unique key for the component.
65
66
  id: The id for the component.
67
+ ref: The Var to pass as the ref to the component.
66
68
  class_name: The class name for the component.
67
69
  autofocus: Whether the component should take the focus once the page is loaded
68
70
  custom_attrs: custom attribute
@@ -86,6 +88,7 @@ class DialogTrigger(RadixThemesTriggerComponent):
86
88
  | None = None,
87
89
  key: Any | None = None,
88
90
  id: Any | None = None,
91
+ ref: Var | None = None,
89
92
  class_name: Any | None = None,
90
93
  autofocus: bool | None = None,
91
94
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -130,6 +133,7 @@ class DialogTitle(RadixThemesComponent):
130
133
  | None = None,
131
134
  key: Any | None = None,
132
135
  id: Any | None = None,
136
+ ref: Var | None = None,
133
137
  class_name: Any | None = None,
134
138
  autofocus: bool | None = None,
135
139
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -160,6 +164,7 @@ class DialogTitle(RadixThemesComponent):
160
164
  style: The style of the component.
161
165
  key: A unique key for the component.
162
166
  id: The id for the component.
167
+ ref: The Var to pass as the ref to the component.
163
168
  class_name: The class name for the component.
164
169
  autofocus: Whether the component should take the focus once the page is loaded
165
170
  custom_attrs: custom attribute
@@ -367,6 +372,7 @@ class DialogContent(elements.Div, RadixThemesComponent):
367
372
  | None = None,
368
373
  key: Any | None = None,
369
374
  id: Any | None = None,
375
+ ref: Var | None = None,
370
376
  class_name: Any | None = None,
371
377
  autofocus: bool | None = None,
372
378
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -424,6 +430,7 @@ class DialogContent(elements.Div, RadixThemesComponent):
424
430
  style: The style of the component.
425
431
  key: A unique key for the component.
426
432
  id: The id for the component.
433
+ ref: The Var to pass as the ref to the component.
427
434
  class_name: The class name for the component.
428
435
  autofocus: Whether the component should take the focus once the page is loaded
429
436
  custom_attrs: custom attribute
@@ -447,6 +454,7 @@ class DialogDescription(RadixThemesComponent):
447
454
  | None = None,
448
455
  key: Any | None = None,
449
456
  id: Any | None = None,
457
+ ref: Var | None = None,
450
458
  class_name: Any | None = None,
451
459
  autofocus: bool | None = None,
452
460
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -477,6 +485,7 @@ class DialogDescription(RadixThemesComponent):
477
485
  style: The style of the component.
478
486
  key: A unique key for the component.
479
487
  id: The id for the component.
488
+ ref: The Var to pass as the ref to the component.
480
489
  class_name: The class name for the component.
481
490
  autofocus: Whether the component should take the focus once the page is loaded
482
491
  custom_attrs: custom attribute
@@ -500,6 +509,7 @@ class DialogClose(RadixThemesTriggerComponent):
500
509
  | None = None,
501
510
  key: Any | None = None,
502
511
  id: Any | None = None,
512
+ ref: Var | None = None,
503
513
  class_name: Any | None = None,
504
514
  autofocus: bool | None = None,
505
515
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -551,6 +561,7 @@ class Dialog(ComponentNamespace):
551
561
  | None = None,
552
562
  key: Any | None = None,
553
563
  id: Any | None = None,
564
+ ref: Var | None = None,
554
565
  class_name: Any | None = None,
555
566
  autofocus: bool | None = None,
556
567
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -585,6 +596,7 @@ class Dialog(ComponentNamespace):
585
596
  style: The style of the component.
586
597
  key: A unique key for the component.
587
598
  id: The id for the component.
599
+ ref: The Var to pass as the ref to the component.
588
600
  class_name: The class name for the component.
589
601
  autofocus: Whether the component should take the focus once the page is loaded
590
602
  custom_attrs: custom attribute
@@ -37,6 +37,7 @@ class DropdownMenuRoot(RadixThemesComponent):
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,
@@ -73,6 +74,7 @@ class DropdownMenuRoot(RadixThemesComponent):
73
74
  style: The style of the component.
74
75
  key: A unique key for the component.
75
76
  id: The id for the component.
77
+ ref: The Var to pass as the ref to the component.
76
78
  class_name: The class name for the component.
77
79
  autofocus: Whether the component should take the focus once the page is loaded
78
80
  custom_attrs: custom attribute
@@ -97,6 +99,7 @@ class DropdownMenuTrigger(RadixThemesTriggerComponent):
97
99
  | None = None,
98
100
  key: Any | None = None,
99
101
  id: Any | None = None,
102
+ ref: Var | None = None,
100
103
  class_name: Any | None = None,
101
104
  autofocus: bool | None = None,
102
105
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -227,6 +230,7 @@ class DropdownMenuContent(RadixThemesComponent):
227
230
  | None = None,
228
231
  key: Any | None = None,
229
232
  id: Any | None = None,
233
+ ref: Var | None = None,
230
234
  class_name: Any | None = None,
231
235
  autofocus: bool | None = None,
232
236
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -282,6 +286,7 @@ class DropdownMenuContent(RadixThemesComponent):
282
286
  style: The style of the component.
283
287
  key: A unique key for the component.
284
288
  id: The id for the component.
289
+ ref: The Var to pass as the ref to the component.
285
290
  class_name: The class name for the component.
286
291
  autofocus: Whether the component should take the focus once the page is loaded
287
292
  custom_attrs: custom attribute
@@ -308,6 +313,7 @@ class DropdownMenuSubTrigger(RadixThemesTriggerComponent):
308
313
  | None = None,
309
314
  key: Any | None = None,
310
315
  id: Any | None = None,
316
+ ref: Var | None = None,
311
317
  class_name: Any | None = None,
312
318
  autofocus: bool | None = None,
313
319
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -354,6 +360,7 @@ class DropdownMenuSub(RadixThemesComponent):
354
360
  | None = None,
355
361
  key: Any | None = None,
356
362
  id: Any | None = None,
363
+ ref: Var | None = None,
357
364
  class_name: Any | None = None,
358
365
  autofocus: bool | None = None,
359
366
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -388,6 +395,7 @@ class DropdownMenuSub(RadixThemesComponent):
388
395
  style: The style of the component.
389
396
  key: A unique key for the component.
390
397
  id: The id for the component.
398
+ ref: The Var to pass as the ref to the component.
391
399
  class_name: The class name for the component.
392
400
  autofocus: Whether the component should take the focus once the page is loaded
393
401
  custom_attrs: custom attribute
@@ -426,6 +434,7 @@ class DropdownMenuSubContent(RadixThemesComponent):
426
434
  | None = None,
427
435
  key: Any | None = None,
428
436
  id: Any | None = None,
437
+ ref: Var | None = None,
429
438
  class_name: Any | None = None,
430
439
  autofocus: bool | None = None,
431
440
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -473,6 +482,7 @@ class DropdownMenuSubContent(RadixThemesComponent):
473
482
  style: The style of the component.
474
483
  key: A unique key for the component.
475
484
  id: The id for the component.
485
+ ref: The Var to pass as the ref to the component.
476
486
  class_name: The class name for the component.
477
487
  autofocus: Whether the component should take the focus once the page is loaded
478
488
  custom_attrs: custom attribute
@@ -559,6 +569,7 @@ class DropdownMenuItem(RadixThemesComponent):
559
569
  | None = None,
560
570
  key: Any | None = None,
561
571
  id: Any | None = None,
572
+ ref: Var | None = None,
562
573
  class_name: Any | None = None,
563
574
  autofocus: bool | None = None,
564
575
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -596,6 +607,7 @@ class DropdownMenuItem(RadixThemesComponent):
596
607
  style: The style of the component.
597
608
  key: A unique key for the component.
598
609
  id: The id for the component.
610
+ ref: The Var to pass as the ref to the component.
599
611
  class_name: The class name for the component.
600
612
  autofocus: Whether the component should take the focus once the page is loaded
601
613
  custom_attrs: custom attribute
@@ -619,6 +631,7 @@ class DropdownMenuSeparator(RadixThemesComponent):
619
631
  | None = None,
620
632
  key: Any | None = None,
621
633
  id: Any | None = None,
634
+ ref: Var | None = None,
622
635
  class_name: Any | None = None,
623
636
  autofocus: bool | None = None,
624
637
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -649,6 +662,7 @@ class DropdownMenuSeparator(RadixThemesComponent):
649
662
  style: The style of the component.
650
663
  key: A unique key for the component.
651
664
  id: The id for the component.
665
+ ref: The Var to pass as the ref to the component.
652
666
  class_name: The class name for the component.
653
667
  autofocus: Whether the component should take the focus once the page is loaded
654
668
  custom_attrs: custom attribute