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
@@ -31,6 +31,7 @@ class HoverCardRoot(RadixThemesComponent):
31
31
  | None = None,
32
32
  key: Any | None = None,
33
33
  id: Any | None = None,
34
+ ref: Var | None = None,
34
35
  class_name: Any | None = None,
35
36
  autofocus: bool | None = None,
36
37
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -67,6 +68,7 @@ class HoverCardRoot(RadixThemesComponent):
67
68
  style: The style of the component.
68
69
  key: A unique key for the component.
69
70
  id: The id for the component.
71
+ ref: The Var to pass as the ref to the component.
70
72
  class_name: The class name for the component.
71
73
  autofocus: Whether the component should take the focus once the page is loaded
72
74
  custom_attrs: custom attribute
@@ -90,6 +92,7 @@ class HoverCardTrigger(RadixThemesTriggerComponent):
90
92
  | None = None,
91
93
  key: Any | None = None,
92
94
  id: Any | None = None,
95
+ ref: Var | None = None,
93
96
  class_name: Any | None = None,
94
97
  autofocus: bool | None = None,
95
98
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -338,6 +341,7 @@ class HoverCardContent(elements.Div, RadixThemesComponent):
338
341
  | None = None,
339
342
  key: Any | None = None,
340
343
  id: Any | None = None,
344
+ ref: Var | None = None,
341
345
  class_name: Any | None = None,
342
346
  autofocus: bool | None = None,
343
347
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -393,6 +397,7 @@ class HoverCardContent(elements.Div, RadixThemesComponent):
393
397
  style: The style of the component.
394
398
  key: A unique key for the component.
395
399
  id: The id for the component.
400
+ ref: The Var to pass as the ref to the component.
396
401
  class_name: The class name for the component.
397
402
  autofocus: Whether the component should take the focus once the page is loaded
398
403
  custom_attrs: custom attribute
@@ -422,6 +427,7 @@ class HoverCard(ComponentNamespace):
422
427
  | None = None,
423
428
  key: Any | None = None,
424
429
  id: Any | None = None,
430
+ ref: Var | None = None,
425
431
  class_name: Any | None = None,
426
432
  autofocus: bool | None = None,
427
433
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -458,6 +464,7 @@ class HoverCard(ComponentNamespace):
458
464
  style: The style of the component.
459
465
  key: A unique key for the component.
460
466
  id: The id for the component.
467
+ ref: The Var to pass as the ref to the component.
461
468
  class_name: The class name for the component.
462
469
  autofocus: Whether the component should take the focus once the page is loaded
463
470
  custom_attrs: custom attribute
@@ -294,6 +294,7 @@ class IconButton(elements.Button, RadixLoadingProp, RadixThemesComponent):
294
294
  | None = None,
295
295
  key: Any | None = None,
296
296
  id: Any | None = None,
297
+ ref: Var | None = None,
297
298
  class_name: Any | None = None,
298
299
  autofocus: bool | None = None,
299
300
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -355,6 +356,7 @@ class IconButton(elements.Button, RadixLoadingProp, RadixThemesComponent):
355
356
  style: The style of the component.
356
357
  key: A unique key for the component.
357
358
  id: The id for the component.
359
+ ref: The Var to pass as the ref to the component.
358
360
  class_name: The class name for the component.
359
361
  autofocus: Whether the component should take the focus once the page is loaded
360
362
  custom_attrs: custom attribute
@@ -255,6 +255,7 @@ class Inset(elements.Div, RadixThemesComponent):
255
255
  | None = None,
256
256
  key: Any | None = None,
257
257
  id: Any | None = None,
258
+ ref: Var | None = None,
258
259
  class_name: Any | None = None,
259
260
  autofocus: bool | None = None,
260
261
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -310,6 +311,7 @@ class Inset(elements.Div, RadixThemesComponent):
310
311
  style: The style of the component.
311
312
  key: A unique key for the component.
312
313
  id: The id for the component.
314
+ ref: The Var to pass as the ref to the component.
313
315
  class_name: The class name for the component.
314
316
  autofocus: Whether the component should take the focus once the page is loaded
315
317
  custom_attrs: custom attribute
@@ -30,6 +30,7 @@ class PopoverRoot(RadixThemesComponent):
30
30
  | None = None,
31
31
  key: Any | None = None,
32
32
  id: Any | None = None,
33
+ ref: Var | None = None,
33
34
  class_name: Any | None = None,
34
35
  autofocus: bool | None = None,
35
36
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -65,6 +66,7 @@ class PopoverRoot(RadixThemesComponent):
65
66
  style: The style of the component.
66
67
  key: A unique key for the component.
67
68
  id: The id for the component.
69
+ ref: The Var to pass as the ref to the component.
68
70
  class_name: The class name for the component.
69
71
  autofocus: Whether the component should take the focus once the page is loaded
70
72
  custom_attrs: custom attribute
@@ -88,6 +90,7 @@ class PopoverTrigger(RadixThemesTriggerComponent):
88
90
  | None = None,
89
91
  key: Any | None = None,
90
92
  id: Any | None = None,
93
+ ref: Var | None = None,
91
94
  class_name: Any | None = None,
92
95
  autofocus: bool | None = None,
93
96
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -334,6 +337,7 @@ class PopoverContent(elements.Div, RadixThemesComponent):
334
337
  | None = None,
335
338
  key: Any | None = None,
336
339
  id: Any | None = None,
340
+ ref: Var | None = None,
337
341
  class_name: Any | None = None,
338
342
  autofocus: bool | None = None,
339
343
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -401,6 +405,7 @@ class PopoverContent(elements.Div, RadixThemesComponent):
401
405
  style: The style of the component.
402
406
  key: A unique key for the component.
403
407
  id: The id for the component.
408
+ ref: The Var to pass as the ref to the component.
404
409
  class_name: The class name for the component.
405
410
  autofocus: Whether the component should take the focus once the page is loaded
406
411
  custom_attrs: custom attribute
@@ -424,6 +429,7 @@ class PopoverClose(RadixThemesTriggerComponent):
424
429
  | None = None,
425
430
  key: Any | None = None,
426
431
  id: Any | None = None,
432
+ ref: Var | None = None,
427
433
  class_name: Any | None = None,
428
434
  autofocus: bool | None = None,
429
435
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -99,6 +99,7 @@ class Progress(RadixThemesComponent):
99
99
  | None = None,
100
100
  key: Any | None = None,
101
101
  id: Any | None = None,
102
+ ref: Var | None = None,
102
103
  class_name: Any | None = None,
103
104
  autofocus: bool | None = None,
104
105
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -135,6 +136,7 @@ class Progress(RadixThemesComponent):
135
136
  style: The style of the component.
136
137
  key: A unique key for the component.
137
138
  id: The id for the component.
139
+ ref: The Var to pass as the ref to the component.
138
140
  class_name: The class name for the component.
139
141
  autofocus: Whether the component should take the focus once the page is loaded
140
142
  custom_attrs: custom attribute
@@ -92,6 +92,7 @@ class Radio(RadixThemesComponent):
92
92
  | None = None,
93
93
  key: Any | None = None,
94
94
  id: Any | None = None,
95
+ ref: Var | None = None,
95
96
  class_name: Any | None = None,
96
97
  autofocus: bool | None = None,
97
98
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -126,6 +127,7 @@ class Radio(RadixThemesComponent):
126
127
  style: The style of the component.
127
128
  key: A unique key for the component.
128
129
  id: The id for the component.
130
+ ref: The Var to pass as the ref to the component.
129
131
  class_name: The class name for the component.
130
132
  autofocus: Whether the component should take the focus once the page is loaded
131
133
  custom_attrs: custom attribute
@@ -126,6 +126,7 @@ class RadioCardsRoot(RadixThemesComponent):
126
126
  | None = None,
127
127
  key: Any | None = None,
128
128
  id: Any | None = None,
129
+ ref: Var | None = None,
129
130
  class_name: Any | None = None,
130
131
  autofocus: bool | None = None,
131
132
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -172,6 +173,7 @@ class RadioCardsRoot(RadixThemesComponent):
172
173
  style: The style of the component.
173
174
  key: A unique key for the component.
174
175
  id: The id for the component.
176
+ ref: The Var to pass as the ref to the component.
175
177
  class_name: The class name for the component.
176
178
  autofocus: Whether the component should take the focus once the page is loaded
177
179
  custom_attrs: custom attribute
@@ -199,6 +201,7 @@ class RadioCardsItem(RadixThemesComponent):
199
201
  | None = None,
200
202
  key: Any | None = None,
201
203
  id: Any | None = None,
204
+ ref: Var | None = None,
202
205
  class_name: Any | None = None,
203
206
  autofocus: bool | None = None,
204
207
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -233,6 +236,7 @@ class RadioCardsItem(RadixThemesComponent):
233
236
  style: The style of the component.
234
237
  key: A unique key for the component.
235
238
  id: The id for the component.
239
+ ref: The Var to pass as the ref to the component.
236
240
  class_name: The class name for the component.
237
241
  autofocus: Whether the component should take the focus once the page is loaded
238
242
  custom_attrs: custom attribute
@@ -100,6 +100,7 @@ class RadioGroupRoot(RadixThemesComponent):
100
100
  | None = None,
101
101
  key: Any | None = None,
102
102
  id: Any | None = None,
103
+ ref: Var | None = None,
103
104
  class_name: Any | None = None,
104
105
  autofocus: bool | None = None,
105
106
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -141,6 +142,7 @@ class RadioGroupRoot(RadixThemesComponent):
141
142
  style: The style of the component.
142
143
  key: A unique key for the component.
143
144
  id: The id for the component.
145
+ ref: The Var to pass as the ref to the component.
144
146
  class_name: The class name for the component.
145
147
  autofocus: Whether the component should take the focus once the page is loaded
146
148
  custom_attrs: custom attribute
@@ -167,6 +169,7 @@ class RadioGroupItem(RadixThemesComponent):
167
169
  | None = None,
168
170
  key: Any | None = None,
169
171
  id: Any | None = None,
172
+ ref: Var | None = None,
170
173
  class_name: Any | None = None,
171
174
  autofocus: bool | None = None,
172
175
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -200,6 +203,7 @@ class RadioGroupItem(RadixThemesComponent):
200
203
  style: The style of the component.
201
204
  key: A unique key for the component.
202
205
  id: The id for the component.
206
+ ref: The Var to pass as the ref to the component.
203
207
  class_name: The class name for the component.
204
208
  autofocus: Whether the component should take the focus once the page is loaded
205
209
  custom_attrs: custom attribute
@@ -299,6 +303,7 @@ class HighLevelRadioGroup(RadixThemesComponent):
299
303
  | None = None,
300
304
  key: Any | None = None,
301
305
  id: Any | None = None,
306
+ ref: Var | None = None,
302
307
  class_name: Any | None = None,
303
308
  autofocus: bool | None = None,
304
309
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -338,6 +343,7 @@ class HighLevelRadioGroup(RadixThemesComponent):
338
343
  style: The style of the component.
339
344
  key: A unique key for the component.
340
345
  id: The id for the component.
346
+ ref: The Var to pass as the ref to the component.
341
347
  class_name: The class name for the component.
342
348
  autofocus: Whether the component should take the focus once the page is loaded
343
349
  custom_attrs: custom attribute
@@ -441,6 +447,7 @@ class RadioGroup(ComponentNamespace):
441
447
  | None = None,
442
448
  key: Any | None = None,
443
449
  id: Any | None = None,
450
+ ref: Var | None = None,
444
451
  class_name: Any | None = None,
445
452
  autofocus: bool | None = None,
446
453
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -480,6 +487,7 @@ class RadioGroup(ComponentNamespace):
480
487
  style: The style of the component.
481
488
  key: A unique key for the component.
482
489
  id: The id for the component.
490
+ ref: The Var to pass as the ref to the component.
483
491
  class_name: The class name for the component.
484
492
  autofocus: Whether the component should take the focus once the page is loaded
485
493
  custom_attrs: custom attribute
@@ -32,6 +32,7 @@ class ScrollArea(RadixThemesComponent):
32
32
  | None = None,
33
33
  key: Any | None = None,
34
34
  id: Any | None = None,
35
+ ref: Var | None = None,
35
36
  class_name: Any | None = None,
36
37
  autofocus: bool | None = None,
37
38
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -65,6 +66,7 @@ class ScrollArea(RadixThemesComponent):
65
66
  style: The style of the component.
66
67
  key: A unique key for the component.
67
68
  id: The id for the component.
69
+ ref: The Var to pass as the ref to the component.
68
70
  class_name: The class name for the component.
69
71
  autofocus: Whether the component should take the focus once the page is loaded
70
72
  custom_attrs: custom attribute
@@ -102,6 +102,7 @@ class SegmentedControlRoot(RadixThemesComponent):
102
102
  | None = None,
103
103
  key: Any | None = None,
104
104
  id: Any | None = None,
105
+ ref: Var | None = None,
105
106
  class_name: Any | None = None,
106
107
  autofocus: bool | None = None,
107
108
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -141,6 +142,7 @@ class SegmentedControlRoot(RadixThemesComponent):
141
142
  style: The style of the component.
142
143
  key: A unique key for the component.
143
144
  id: The id for the component.
145
+ ref: The Var to pass as the ref to the component.
144
146
  class_name: The class name for the component.
145
147
  autofocus: Whether the component should take the focus once the page is loaded
146
148
  custom_attrs: custom attribute
@@ -165,6 +167,7 @@ class SegmentedControlItem(RadixThemesComponent):
165
167
  | None = None,
166
168
  key: Any | None = None,
167
169
  id: Any | None = None,
170
+ ref: Var | None = None,
168
171
  class_name: Any | None = None,
169
172
  autofocus: bool | None = None,
170
173
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -196,6 +199,7 @@ class SegmentedControlItem(RadixThemesComponent):
196
199
  style: The style of the component.
197
200
  key: A unique key for the component.
198
201
  id: The id for the component.
202
+ ref: The Var to pass as the ref to the component.
199
203
  class_name: The class name for the component.
200
204
  autofocus: Whether the component should take the focus once the page is loaded
201
205
  custom_attrs: custom attribute
@@ -37,6 +37,7 @@ class SelectRoot(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,
@@ -79,6 +80,7 @@ class SelectRoot(RadixThemesComponent):
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
@@ -168,6 +170,7 @@ class SelectTrigger(RadixThemesComponent):
168
170
  | None = None,
169
171
  key: Any | None = None,
170
172
  id: Any | None = None,
173
+ ref: Var | None = None,
171
174
  class_name: Any | None = None,
172
175
  autofocus: bool | None = None,
173
176
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -202,6 +205,7 @@ class SelectTrigger(RadixThemesComponent):
202
205
  style: The style of the component.
203
206
  key: A unique key for the component.
204
207
  id: The id for the component.
208
+ ref: The Var to pass as the ref to the component.
205
209
  class_name: The class name for the component.
206
210
  autofocus: Whether the component should take the focus once the page is loaded
207
211
  custom_attrs: custom attribute
@@ -297,6 +301,7 @@ class SelectContent(RadixThemesComponent):
297
301
  | None = None,
298
302
  key: Any | None = None,
299
303
  id: Any | None = None,
304
+ ref: Var | None = None,
300
305
  class_name: Any | None = None,
301
306
  autofocus: bool | None = None,
302
307
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -341,6 +346,7 @@ class SelectContent(RadixThemesComponent):
341
346
  style: The style of the component.
342
347
  key: A unique key for the component.
343
348
  id: The id for the component.
349
+ ref: The Var to pass as the ref to the component.
344
350
  class_name: The class name for the component.
345
351
  autofocus: Whether the component should take the focus once the page is loaded
346
352
  custom_attrs: custom attribute
@@ -364,6 +370,7 @@ class SelectGroup(RadixThemesComponent):
364
370
  | None = None,
365
371
  key: Any | None = None,
366
372
  id: Any | None = None,
373
+ ref: Var | None = None,
367
374
  class_name: Any | None = None,
368
375
  autofocus: bool | None = None,
369
376
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -394,6 +401,7 @@ class SelectGroup(RadixThemesComponent):
394
401
  style: The style of the component.
395
402
  key: A unique key for the component.
396
403
  id: The id for the component.
404
+ ref: The Var to pass as the ref to the component.
397
405
  class_name: The class name for the component.
398
406
  autofocus: Whether the component should take the focus once the page is loaded
399
407
  custom_attrs: custom attribute
@@ -419,6 +427,7 @@ class SelectItem(RadixThemesComponent):
419
427
  | None = None,
420
428
  key: Any | None = None,
421
429
  id: Any | None = None,
430
+ ref: Var | None = None,
422
431
  class_name: Any | None = None,
423
432
  autofocus: bool | None = None,
424
433
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -451,6 +460,7 @@ class SelectItem(RadixThemesComponent):
451
460
  style: The style of the component.
452
461
  key: A unique key for the component.
453
462
  id: The id for the component.
463
+ ref: The Var to pass as the ref to the component.
454
464
  class_name: The class name for the component.
455
465
  autofocus: Whether the component should take the focus once the page is loaded
456
466
  custom_attrs: custom attribute
@@ -474,6 +484,7 @@ class SelectLabel(RadixThemesComponent):
474
484
  | None = None,
475
485
  key: Any | None = None,
476
486
  id: Any | None = None,
487
+ ref: Var | None = None,
477
488
  class_name: Any | None = None,
478
489
  autofocus: bool | None = None,
479
490
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -504,6 +515,7 @@ class SelectLabel(RadixThemesComponent):
504
515
  style: The style of the component.
505
516
  key: A unique key for the component.
506
517
  id: The id for the component.
518
+ ref: The Var to pass as the ref to the component.
507
519
  class_name: The class name for the component.
508
520
  autofocus: Whether the component should take the focus once the page is loaded
509
521
  custom_attrs: custom attribute
@@ -527,6 +539,7 @@ class SelectSeparator(RadixThemesComponent):
527
539
  | None = None,
528
540
  key: Any | None = None,
529
541
  id: Any | None = None,
542
+ ref: Var | None = None,
530
543
  class_name: Any | None = None,
531
544
  autofocus: bool | None = None,
532
545
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -557,6 +570,7 @@ class SelectSeparator(RadixThemesComponent):
557
570
  style: The style of the component.
558
571
  key: A unique key for the component.
559
572
  id: The id for the component.
573
+ ref: The Var to pass as the ref to the component.
560
574
  class_name: The class name for the component.
561
575
  autofocus: Whether the component should take the focus once the page is loaded
562
576
  custom_attrs: custom attribute
@@ -664,6 +678,7 @@ class HighLevelSelect(SelectRoot):
664
678
  | None = None,
665
679
  key: Any | None = None,
666
680
  id: Any | None = None,
681
+ ref: Var | None = None,
667
682
  class_name: Any | None = None,
668
683
  autofocus: bool | None = None,
669
684
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -712,6 +727,7 @@ class HighLevelSelect(SelectRoot):
712
727
  style: The style of the component.
713
728
  key: A unique key for the component.
714
729
  id: The id for the component.
730
+ ref: The Var to pass as the ref to the component.
715
731
  class_name: The class name for the component.
716
732
  autofocus: Whether the component should take the focus once the page is loaded
717
733
  custom_attrs: custom attribute
@@ -825,6 +841,7 @@ class Select(ComponentNamespace):
825
841
  | None = None,
826
842
  key: Any | None = None,
827
843
  id: Any | None = None,
844
+ ref: Var | None = None,
828
845
  class_name: Any | None = None,
829
846
  autofocus: bool | None = None,
830
847
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -873,6 +890,7 @@ class Select(ComponentNamespace):
873
890
  style: The style of the component.
874
891
  key: A unique key for the component.
875
892
  id: The id for the component.
893
+ ref: The Var to pass as the ref to the component.
876
894
  class_name: The class name for the component.
877
895
  autofocus: Whether the component should take the focus once the page is loaded
878
896
  custom_attrs: custom attribute
@@ -100,6 +100,7 @@ class Separator(RadixThemesComponent):
100
100
  | None = None,
101
101
  key: Any | None = None,
102
102
  id: Any | None = None,
103
+ ref: Var | None = None,
103
104
  class_name: Any | None = None,
104
105
  autofocus: bool | None = None,
105
106
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -134,6 +135,7 @@ class Separator(RadixThemesComponent):
134
135
  style: The style of the component.
135
136
  key: A unique key for the component.
136
137
  id: The id for the component.
138
+ ref: The Var to pass as the ref to the component.
137
139
  class_name: The class name for the component.
138
140
  autofocus: Whether the component should take the focus once the page is loaded
139
141
  custom_attrs: custom attribute
@@ -50,6 +50,7 @@ class Skeleton(RadixLoadingProp, RadixThemesComponent):
50
50
  | None = None,
51
51
  key: Any | None = None,
52
52
  id: Any | None = None,
53
+ ref: Var | None = None,
53
54
  class_name: Any | None = None,
54
55
  autofocus: bool | None = None,
55
56
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -87,6 +88,7 @@ class Skeleton(RadixLoadingProp, RadixThemesComponent):
87
88
  style: The style of the component.
88
89
  key: A unique key for the component.
89
90
  id: The id for the component.
91
+ ref: The Var to pass as the ref to the component.
90
92
  class_name: The class name for the component.
91
93
  autofocus: Whether the component should take the focus once the page is loaded
92
94
  custom_attrs: custom attribute
@@ -117,6 +117,7 @@ class Slider(RadixThemesComponent):
117
117
  | None = None,
118
118
  key: Any | None = None,
119
119
  id: Any | None = None,
120
+ ref: Var | None = None,
120
121
  class_name: Any | None = None,
121
122
  autofocus: bool | None = None,
122
123
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -163,6 +164,7 @@ class Slider(RadixThemesComponent):
163
164
  style: The style of the component.
164
165
  key: A unique key for the component.
165
166
  id: The id for the component.
167
+ ref: The Var to pass as the ref to the component.
166
168
  class_name: The class name for the component.
167
169
  autofocus: Whether the component should take the focus once the page is loaded
168
170
  custom_attrs: custom attribute
@@ -32,6 +32,7 @@ class Spinner(RadixLoadingProp, RadixThemesComponent):
32
32
  | None = None,
33
33
  key: Any | None = None,
34
34
  id: Any | None = None,
35
+ ref: Var | None = None,
35
36
  class_name: Any | None = None,
36
37
  autofocus: bool | None = None,
37
38
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -64,6 +65,7 @@ class Spinner(RadixLoadingProp, RadixThemesComponent):
64
65
  style: The style of the component.
65
66
  key: A unique key for the component.
66
67
  id: The id for the component.
68
+ ref: The Var to pass as the ref to the component.
67
69
  class_name: The class name for the component.
68
70
  autofocus: Whether the component should take the focus once the page is loaded
69
71
  custom_attrs: custom attribute
@@ -104,6 +104,7 @@ class Switch(RadixThemesComponent):
104
104
  | None = None,
105
105
  key: Any | None = None,
106
106
  id: Any | None = None,
107
+ ref: Var | None = None,
107
108
  class_name: Any | None = None,
108
109
  autofocus: bool | None = None,
109
110
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -148,6 +149,7 @@ class Switch(RadixThemesComponent):
148
149
  style: The style of the component.
149
150
  key: A unique key for the component.
150
151
  id: The id for the component.
152
+ ref: The Var to pass as the ref to the component.
151
153
  class_name: The class name for the component.
152
154
  autofocus: Whether the component should take the focus once the page is loaded
153
155
  custom_attrs: custom attribute
@@ -216,6 +216,7 @@ class TableRoot(elements.Table, RadixThemesComponent):
216
216
  | None = None,
217
217
  key: Any | None = None,
218
218
  id: Any | None = None,
219
+ ref: Var | None = None,
219
220
  class_name: Any | None = None,
220
221
  autofocus: bool | None = None,
221
222
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -266,6 +267,7 @@ class TableRoot(elements.Table, RadixThemesComponent):
266
267
  style: The style of the component.
267
268
  key: A unique key for the component.
268
269
  id: The id for the component.
270
+ ref: The Var to pass as the ref to the component.
269
271
  class_name: The class name for the component.
270
272
  autofocus: Whether the component should take the focus once the page is loaded
271
273
  custom_attrs: custom attribute
@@ -467,6 +469,7 @@ class TableHeader(elements.Thead, RadixThemesComponent):
467
469
  | None = None,
468
470
  key: Any | None = None,
469
471
  id: Any | None = None,
472
+ ref: Var | None = None,
470
473
  class_name: Any | None = None,
471
474
  autofocus: bool | None = None,
472
475
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -513,6 +516,7 @@ class TableHeader(elements.Thead, RadixThemesComponent):
513
516
  style: The style of the component.
514
517
  key: A unique key for the component.
515
518
  id: The id for the component.
519
+ ref: The Var to pass as the ref to the component.
516
520
  class_name: The class name for the component.
517
521
  autofocus: Whether the component should take the focus once the page is loaded
518
522
  custom_attrs: custom attribute
@@ -717,6 +721,7 @@ class TableRow(elements.Tr, RadixThemesComponent):
717
721
  | None = None,
718
722
  key: Any | None = None,
719
723
  id: Any | None = None,
724
+ ref: Var | None = None,
720
725
  class_name: Any | None = None,
721
726
  autofocus: bool | None = None,
722
727
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -764,6 +769,7 @@ class TableRow(elements.Tr, RadixThemesComponent):
764
769
  style: The style of the component.
765
770
  key: A unique key for the component.
766
771
  id: The id for the component.
772
+ ref: The Var to pass as the ref to the component.
767
773
  class_name: The class name for the component.
768
774
  autofocus: Whether the component should take the focus once the page is loaded
769
775
  custom_attrs: custom attribute
@@ -983,6 +989,7 @@ class TableColumnHeaderCell(elements.Th, RadixThemesComponent):
983
989
  | None = None,
984
990
  key: Any | None = None,
985
991
  id: Any | None = None,
992
+ ref: Var | None = None,
986
993
  class_name: Any | None = None,
987
994
  autofocus: bool | None = None,
988
995
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1037,6 +1044,7 @@ class TableColumnHeaderCell(elements.Th, RadixThemesComponent):
1037
1044
  style: The style of the component.
1038
1045
  key: A unique key for the component.
1039
1046
  id: The id for the component.
1047
+ ref: The Var to pass as the ref to the component.
1040
1048
  class_name: The class name for the component.
1041
1049
  autofocus: Whether the component should take the focus once the page is loaded
1042
1050
  custom_attrs: custom attribute
@@ -1238,6 +1246,7 @@ class TableBody(elements.Tbody, RadixThemesComponent):
1238
1246
  | None = None,
1239
1247
  key: Any | None = None,
1240
1248
  id: Any | None = None,
1249
+ ref: Var | None = None,
1241
1250
  class_name: Any | None = None,
1242
1251
  autofocus: bool | None = None,
1243
1252
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1284,6 +1293,7 @@ class TableBody(elements.Tbody, RadixThemesComponent):
1284
1293
  style: The style of the component.
1285
1294
  key: A unique key for the component.
1286
1295
  id: The id for the component.
1296
+ ref: The Var to pass as the ref to the component.
1287
1297
  class_name: The class name for the component.
1288
1298
  autofocus: Whether the component should take the focus once the page is loaded
1289
1299
  custom_attrs: custom attribute
@@ -1551,6 +1561,7 @@ class TableCell(elements.Td, CommonPaddingProps, RadixThemesComponent):
1551
1561
  | None = None,
1552
1562
  key: Any | None = None,
1553
1563
  id: Any | None = None,
1564
+ ref: Var | None = None,
1554
1565
  class_name: Any | None = None,
1555
1566
  autofocus: bool | None = None,
1556
1567
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1611,6 +1622,7 @@ class TableCell(elements.Td, CommonPaddingProps, RadixThemesComponent):
1611
1622
  style: The style of the component.
1612
1623
  key: A unique key for the component.
1613
1624
  id: The id for the component.
1625
+ ref: The Var to pass as the ref to the component.
1614
1626
  class_name: The class name for the component.
1615
1627
  autofocus: Whether the component should take the focus once the page is loaded
1616
1628
  custom_attrs: custom attribute
@@ -1879,6 +1891,7 @@ class TableRowHeaderCell(elements.Th, CommonPaddingProps, RadixThemesComponent):
1879
1891
  | None = None,
1880
1892
  key: Any | None = None,
1881
1893
  id: Any | None = None,
1894
+ ref: Var | None = None,
1882
1895
  class_name: Any | None = None,
1883
1896
  autofocus: bool | None = None,
1884
1897
  custom_attrs: dict[str, Var | Any] | None = None,
@@ -1940,6 +1953,7 @@ class TableRowHeaderCell(elements.Th, CommonPaddingProps, RadixThemesComponent):
1940
1953
  style: The style of the component.
1941
1954
  key: A unique key for the component.
1942
1955
  id: The id for the component.
1956
+ ref: The Var to pass as the ref to the component.
1943
1957
  class_name: The class name for the component.
1944
1958
  autofocus: Whether the component should take the focus once the page is loaded
1945
1959
  custom_attrs: custom attribute