reflex 0.7.11__py3-none-any.whl → 0.7.12a1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of reflex might be problematic. Click here for more details.
- reflex/app.py +8 -4
- reflex/components/base/app_wrap.pyi +1 -0
- reflex/components/base/body.pyi +2 -0
- reflex/components/base/document.pyi +10 -0
- reflex/components/base/error_boundary.pyi +2 -0
- reflex/components/base/fragment.pyi +2 -0
- reflex/components/base/head.pyi +4 -0
- reflex/components/base/link.pyi +4 -0
- reflex/components/base/meta.pyi +8 -0
- reflex/components/base/script.pyi +2 -0
- reflex/components/base/strict_mode.pyi +2 -0
- reflex/components/component.py +39 -63
- reflex/components/core/auto_scroll.pyi +2 -0
- reflex/components/core/banner.pyi +10 -0
- reflex/components/core/client_side_routing.pyi +4 -0
- reflex/components/core/clipboard.pyi +2 -0
- reflex/components/core/debounce.pyi +1 -0
- reflex/components/core/html.pyi +2 -0
- reflex/components/core/sticky.pyi +4 -0
- reflex/components/core/upload.pyi +10 -0
- reflex/components/datadisplay/code.pyi +4 -0
- reflex/components/datadisplay/dataeditor.py +3 -3
- reflex/components/datadisplay/dataeditor.pyi +2 -0
- reflex/components/datadisplay/shiki_code_block.pyi +6 -0
- reflex/components/el/element.pyi +2 -0
- reflex/components/el/elements/base.pyi +2 -0
- reflex/components/el/elements/forms.pyi +34 -0
- reflex/components/el/elements/inline.pyi +56 -0
- reflex/components/el/elements/media.pyi +50 -0
- reflex/components/el/elements/metadata.pyi +12 -0
- reflex/components/el/elements/other.pyi +14 -0
- reflex/components/el/elements/scripts.pyi +6 -0
- reflex/components/el/elements/sectioning.pyi +30 -0
- reflex/components/el/elements/tables.pyi +20 -0
- reflex/components/el/elements/typography.pyi +30 -0
- reflex/components/gridjs/datatable.pyi +4 -0
- reflex/components/lucide/icon.py +3 -1
- reflex/components/lucide/icon.pyi +8 -0
- reflex/components/markdown/markdown.pyi +2 -0
- reflex/components/moment/moment.pyi +2 -0
- reflex/components/next/base.pyi +2 -0
- reflex/components/next/image.pyi +2 -0
- reflex/components/next/link.pyi +2 -0
- reflex/components/next/video.pyi +2 -0
- reflex/components/plotly/plotly.pyi +18 -0
- reflex/components/radix/primitives/accordion.py +1 -1
- reflex/components/radix/primitives/accordion.pyi +14 -0
- reflex/components/radix/primitives/base.py +0 -2
- reflex/components/radix/primitives/base.pyi +4 -0
- reflex/components/radix/primitives/drawer.py +1 -1
- reflex/components/radix/primitives/drawer.pyi +22 -0
- reflex/components/radix/primitives/form.py +1 -1
- reflex/components/radix/primitives/form.pyi +20 -0
- reflex/components/radix/primitives/progress.py +1 -1
- reflex/components/radix/primitives/progress.pyi +10 -0
- reflex/components/radix/primitives/slider.py +1 -1
- reflex/components/radix/primitives/slider.pyi +10 -0
- reflex/components/radix/themes/base.py +1 -1
- reflex/components/radix/themes/base.pyi +15 -0
- reflex/components/radix/themes/color_mode.pyi +5 -0
- reflex/components/radix/themes/components/alert_dialog.pyi +11 -0
- reflex/components/radix/themes/components/aspect_ratio.pyi +2 -0
- reflex/components/radix/themes/components/avatar.pyi +2 -0
- reflex/components/radix/themes/components/badge.pyi +2 -0
- reflex/components/radix/themes/components/button.pyi +2 -0
- reflex/components/radix/themes/components/callout.pyi +10 -0
- reflex/components/radix/themes/components/card.pyi +2 -0
- reflex/components/radix/themes/components/checkbox.pyi +6 -0
- reflex/components/radix/themes/components/checkbox_cards.pyi +4 -0
- reflex/components/radix/themes/components/checkbox_group.pyi +4 -0
- reflex/components/radix/themes/components/context_menu.pyi +26 -0
- reflex/components/radix/themes/components/data_list.pyi +8 -0
- reflex/components/radix/themes/components/dialog.pyi +12 -0
- reflex/components/radix/themes/components/dropdown_menu.pyi +14 -0
- reflex/components/radix/themes/components/hover_card.pyi +7 -0
- reflex/components/radix/themes/components/icon_button.pyi +2 -0
- reflex/components/radix/themes/components/inset.pyi +2 -0
- reflex/components/radix/themes/components/popover.pyi +6 -0
- reflex/components/radix/themes/components/progress.pyi +2 -0
- reflex/components/radix/themes/components/radio.pyi +2 -0
- reflex/components/radix/themes/components/radio_cards.pyi +4 -0
- reflex/components/radix/themes/components/radio_group.pyi +8 -0
- reflex/components/radix/themes/components/scroll_area.pyi +2 -0
- reflex/components/radix/themes/components/segmented_control.pyi +4 -0
- reflex/components/radix/themes/components/select.pyi +18 -0
- reflex/components/radix/themes/components/separator.pyi +2 -0
- reflex/components/radix/themes/components/skeleton.pyi +2 -0
- reflex/components/radix/themes/components/slider.pyi +2 -0
- reflex/components/radix/themes/components/spinner.pyi +2 -0
- reflex/components/radix/themes/components/switch.pyi +2 -0
- reflex/components/radix/themes/components/table.pyi +14 -0
- reflex/components/radix/themes/components/tabs.pyi +10 -0
- reflex/components/radix/themes/components/text_area.pyi +2 -0
- reflex/components/radix/themes/components/text_field.pyi +6 -0
- reflex/components/radix/themes/components/tooltip.pyi +2 -0
- reflex/components/radix/themes/layout/base.pyi +2 -0
- reflex/components/radix/themes/layout/box.pyi +2 -0
- reflex/components/radix/themes/layout/center.pyi +2 -0
- reflex/components/radix/themes/layout/container.pyi +1 -0
- reflex/components/radix/themes/layout/flex.pyi +2 -0
- reflex/components/radix/themes/layout/grid.pyi +2 -0
- reflex/components/radix/themes/layout/list.pyi +10 -0
- reflex/components/radix/themes/layout/section.pyi +2 -0
- reflex/components/radix/themes/layout/spacer.pyi +2 -0
- reflex/components/radix/themes/layout/stack.py +5 -4
- reflex/components/radix/themes/layout/stack.pyi +70 -16
- reflex/components/radix/themes/typography/blockquote.pyi +2 -0
- reflex/components/radix/themes/typography/code.pyi +2 -0
- reflex/components/radix/themes/typography/heading.pyi +2 -0
- reflex/components/radix/themes/typography/link.pyi +2 -0
- reflex/components/radix/themes/typography/text.pyi +14 -0
- reflex/components/react_player/audio.pyi +2 -0
- reflex/components/react_player/react_player.pyi +2 -0
- reflex/components/react_player/video.pyi +2 -0
- reflex/components/recharts/cartesian.pyi +38 -0
- reflex/components/recharts/charts.pyi +24 -0
- reflex/components/recharts/general.pyi +12 -0
- reflex/components/recharts/polar.pyi +12 -0
- reflex/components/recharts/recharts.pyi +4 -0
- reflex/components/sonner/toast.pyi +2 -0
- reflex/components/suneditor/editor.pyi +2 -0
- reflex/constants/compiler.py +12 -6
- reflex/constants/installer.py +1 -1
- reflex/event.py +21 -0
- reflex/experimental/layout.pyi +5 -0
- reflex/reflex.py +24 -0
- reflex/testing.py +2 -1
- reflex/utils/format.py +4 -11
- reflex/utils/net.py +35 -2
- reflex/utils/prerequisites.py +10 -4
- reflex/utils/pyi_generator.py +7 -1
- reflex/utils/types.py +7 -5
- reflex/vars/base.py +7 -8
- reflex/vars/object.py +9 -2
- {reflex-0.7.11.dist-info → reflex-0.7.12a1.dist-info}/METADATA +4 -4
- {reflex-0.7.11.dist-info → reflex-0.7.12a1.dist-info}/RECORD +140 -139
- scripts/hatch_build.py +50 -0
- {reflex-0.7.11.dist-info → reflex-0.7.12a1.dist-info}/WHEEL +0 -0
- {reflex-0.7.11.dist-info → reflex-0.7.12a1.dist-info}/entry_points.txt +0 -0
- {reflex-0.7.11.dist-info → reflex-0.7.12a1.dist-info}/licenses/LICENSE +0 -0
|
@@ -250,6 +250,7 @@ class A(BaseHTML):
|
|
|
250
250
|
| None = None,
|
|
251
251
|
key: Any | None = None,
|
|
252
252
|
id: Any | None = None,
|
|
253
|
+
ref: Var | None = None,
|
|
253
254
|
class_name: Any | None = None,
|
|
254
255
|
autofocus: bool | None = None,
|
|
255
256
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -301,6 +302,7 @@ class A(BaseHTML):
|
|
|
301
302
|
style: The style of the component.
|
|
302
303
|
key: A unique key for the component.
|
|
303
304
|
id: The id for the component.
|
|
305
|
+
ref: The Var to pass as the ref to the component.
|
|
304
306
|
class_name: The class name for the component.
|
|
305
307
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
306
308
|
custom_attrs: custom attribute
|
|
@@ -502,6 +504,7 @@ class Abbr(BaseHTML):
|
|
|
502
504
|
| None = None,
|
|
503
505
|
key: Any | None = None,
|
|
504
506
|
id: Any | None = None,
|
|
507
|
+
ref: Var | None = None,
|
|
505
508
|
class_name: Any | None = None,
|
|
506
509
|
autofocus: bool | None = None,
|
|
507
510
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -545,6 +548,7 @@ class Abbr(BaseHTML):
|
|
|
545
548
|
style: The style of the component.
|
|
546
549
|
key: A unique key for the component.
|
|
547
550
|
id: The id for the component.
|
|
551
|
+
ref: The Var to pass as the ref to the component.
|
|
548
552
|
class_name: The class name for the component.
|
|
549
553
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
550
554
|
custom_attrs: custom attribute
|
|
@@ -746,6 +750,7 @@ class B(BaseHTML):
|
|
|
746
750
|
| None = None,
|
|
747
751
|
key: Any | None = None,
|
|
748
752
|
id: Any | None = None,
|
|
753
|
+
ref: Var | None = None,
|
|
749
754
|
class_name: Any | None = None,
|
|
750
755
|
autofocus: bool | None = None,
|
|
751
756
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -789,6 +794,7 @@ class B(BaseHTML):
|
|
|
789
794
|
style: The style of the component.
|
|
790
795
|
key: A unique key for the component.
|
|
791
796
|
id: The id for the component.
|
|
797
|
+
ref: The Var to pass as the ref to the component.
|
|
792
798
|
class_name: The class name for the component.
|
|
793
799
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
794
800
|
custom_attrs: custom attribute
|
|
@@ -990,6 +996,7 @@ class Bdi(BaseHTML):
|
|
|
990
996
|
| None = None,
|
|
991
997
|
key: Any | None = None,
|
|
992
998
|
id: Any | None = None,
|
|
999
|
+
ref: Var | None = None,
|
|
993
1000
|
class_name: Any | None = None,
|
|
994
1001
|
autofocus: bool | None = None,
|
|
995
1002
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -1033,6 +1040,7 @@ class Bdi(BaseHTML):
|
|
|
1033
1040
|
style: The style of the component.
|
|
1034
1041
|
key: A unique key for the component.
|
|
1035
1042
|
id: The id for the component.
|
|
1043
|
+
ref: The Var to pass as the ref to the component.
|
|
1036
1044
|
class_name: The class name for the component.
|
|
1037
1045
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1038
1046
|
custom_attrs: custom attribute
|
|
@@ -1234,6 +1242,7 @@ class Bdo(BaseHTML):
|
|
|
1234
1242
|
| None = None,
|
|
1235
1243
|
key: Any | None = None,
|
|
1236
1244
|
id: Any | None = None,
|
|
1245
|
+
ref: Var | None = None,
|
|
1237
1246
|
class_name: Any | None = None,
|
|
1238
1247
|
autofocus: bool | None = None,
|
|
1239
1248
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -1277,6 +1286,7 @@ class Bdo(BaseHTML):
|
|
|
1277
1286
|
style: The style of the component.
|
|
1278
1287
|
key: A unique key for the component.
|
|
1279
1288
|
id: The id for the component.
|
|
1289
|
+
ref: The Var to pass as the ref to the component.
|
|
1280
1290
|
class_name: The class name for the component.
|
|
1281
1291
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1282
1292
|
custom_attrs: custom attribute
|
|
@@ -1478,6 +1488,7 @@ class Br(BaseHTML):
|
|
|
1478
1488
|
| None = None,
|
|
1479
1489
|
key: Any | None = None,
|
|
1480
1490
|
id: Any | None = None,
|
|
1491
|
+
ref: Var | None = None,
|
|
1481
1492
|
class_name: Any | None = None,
|
|
1482
1493
|
autofocus: bool | None = None,
|
|
1483
1494
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -1521,6 +1532,7 @@ class Br(BaseHTML):
|
|
|
1521
1532
|
style: The style of the component.
|
|
1522
1533
|
key: A unique key for the component.
|
|
1523
1534
|
id: The id for the component.
|
|
1535
|
+
ref: The Var to pass as the ref to the component.
|
|
1524
1536
|
class_name: The class name for the component.
|
|
1525
1537
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1526
1538
|
custom_attrs: custom attribute
|
|
@@ -1722,6 +1734,7 @@ class Cite(BaseHTML):
|
|
|
1722
1734
|
| None = None,
|
|
1723
1735
|
key: Any | None = None,
|
|
1724
1736
|
id: Any | None = None,
|
|
1737
|
+
ref: Var | None = None,
|
|
1725
1738
|
class_name: Any | None = None,
|
|
1726
1739
|
autofocus: bool | None = None,
|
|
1727
1740
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -1765,6 +1778,7 @@ class Cite(BaseHTML):
|
|
|
1765
1778
|
style: The style of the component.
|
|
1766
1779
|
key: A unique key for the component.
|
|
1767
1780
|
id: The id for the component.
|
|
1781
|
+
ref: The Var to pass as the ref to the component.
|
|
1768
1782
|
class_name: The class name for the component.
|
|
1769
1783
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1770
1784
|
custom_attrs: custom attribute
|
|
@@ -1966,6 +1980,7 @@ class Code(BaseHTML):
|
|
|
1966
1980
|
| None = None,
|
|
1967
1981
|
key: Any | None = None,
|
|
1968
1982
|
id: Any | None = None,
|
|
1983
|
+
ref: Var | None = None,
|
|
1969
1984
|
class_name: Any | None = None,
|
|
1970
1985
|
autofocus: bool | None = None,
|
|
1971
1986
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -2009,6 +2024,7 @@ class Code(BaseHTML):
|
|
|
2009
2024
|
style: The style of the component.
|
|
2010
2025
|
key: A unique key for the component.
|
|
2011
2026
|
id: The id for the component.
|
|
2027
|
+
ref: The Var to pass as the ref to the component.
|
|
2012
2028
|
class_name: The class name for the component.
|
|
2013
2029
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
2014
2030
|
custom_attrs: custom attribute
|
|
@@ -2211,6 +2227,7 @@ class Data(BaseHTML):
|
|
|
2211
2227
|
| None = None,
|
|
2212
2228
|
key: Any | None = None,
|
|
2213
2229
|
id: Any | None = None,
|
|
2230
|
+
ref: Var | None = None,
|
|
2214
2231
|
class_name: Any | None = None,
|
|
2215
2232
|
autofocus: bool | None = None,
|
|
2216
2233
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -2255,6 +2272,7 @@ class Data(BaseHTML):
|
|
|
2255
2272
|
style: The style of the component.
|
|
2256
2273
|
key: A unique key for the component.
|
|
2257
2274
|
id: The id for the component.
|
|
2275
|
+
ref: The Var to pass as the ref to the component.
|
|
2258
2276
|
class_name: The class name for the component.
|
|
2259
2277
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
2260
2278
|
custom_attrs: custom attribute
|
|
@@ -2456,6 +2474,7 @@ class Dfn(BaseHTML):
|
|
|
2456
2474
|
| None = None,
|
|
2457
2475
|
key: Any | None = None,
|
|
2458
2476
|
id: Any | None = None,
|
|
2477
|
+
ref: Var | None = None,
|
|
2459
2478
|
class_name: Any | None = None,
|
|
2460
2479
|
autofocus: bool | None = None,
|
|
2461
2480
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -2499,6 +2518,7 @@ class Dfn(BaseHTML):
|
|
|
2499
2518
|
style: The style of the component.
|
|
2500
2519
|
key: A unique key for the component.
|
|
2501
2520
|
id: The id for the component.
|
|
2521
|
+
ref: The Var to pass as the ref to the component.
|
|
2502
2522
|
class_name: The class name for the component.
|
|
2503
2523
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
2504
2524
|
custom_attrs: custom attribute
|
|
@@ -2700,6 +2720,7 @@ class Em(BaseHTML):
|
|
|
2700
2720
|
| None = None,
|
|
2701
2721
|
key: Any | None = None,
|
|
2702
2722
|
id: Any | None = None,
|
|
2723
|
+
ref: Var | None = None,
|
|
2703
2724
|
class_name: Any | None = None,
|
|
2704
2725
|
autofocus: bool | None = None,
|
|
2705
2726
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -2743,6 +2764,7 @@ class Em(BaseHTML):
|
|
|
2743
2764
|
style: The style of the component.
|
|
2744
2765
|
key: A unique key for the component.
|
|
2745
2766
|
id: The id for the component.
|
|
2767
|
+
ref: The Var to pass as the ref to the component.
|
|
2746
2768
|
class_name: The class name for the component.
|
|
2747
2769
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
2748
2770
|
custom_attrs: custom attribute
|
|
@@ -2944,6 +2966,7 @@ class I(BaseHTML):
|
|
|
2944
2966
|
| None = None,
|
|
2945
2967
|
key: Any | None = None,
|
|
2946
2968
|
id: Any | None = None,
|
|
2969
|
+
ref: Var | None = None,
|
|
2947
2970
|
class_name: Any | None = None,
|
|
2948
2971
|
autofocus: bool | None = None,
|
|
2949
2972
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -2987,6 +3010,7 @@ class I(BaseHTML):
|
|
|
2987
3010
|
style: The style of the component.
|
|
2988
3011
|
key: A unique key for the component.
|
|
2989
3012
|
id: The id for the component.
|
|
3013
|
+
ref: The Var to pass as the ref to the component.
|
|
2990
3014
|
class_name: The class name for the component.
|
|
2991
3015
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
2992
3016
|
custom_attrs: custom attribute
|
|
@@ -3188,6 +3212,7 @@ class Kbd(BaseHTML):
|
|
|
3188
3212
|
| None = None,
|
|
3189
3213
|
key: Any | None = None,
|
|
3190
3214
|
id: Any | None = None,
|
|
3215
|
+
ref: Var | None = None,
|
|
3191
3216
|
class_name: Any | None = None,
|
|
3192
3217
|
autofocus: bool | None = None,
|
|
3193
3218
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -3231,6 +3256,7 @@ class Kbd(BaseHTML):
|
|
|
3231
3256
|
style: The style of the component.
|
|
3232
3257
|
key: A unique key for the component.
|
|
3233
3258
|
id: The id for the component.
|
|
3259
|
+
ref: The Var to pass as the ref to the component.
|
|
3234
3260
|
class_name: The class name for the component.
|
|
3235
3261
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
3236
3262
|
custom_attrs: custom attribute
|
|
@@ -3432,6 +3458,7 @@ class Mark(BaseHTML):
|
|
|
3432
3458
|
| None = None,
|
|
3433
3459
|
key: Any | None = None,
|
|
3434
3460
|
id: Any | None = None,
|
|
3461
|
+
ref: Var | None = None,
|
|
3435
3462
|
class_name: Any | None = None,
|
|
3436
3463
|
autofocus: bool | None = None,
|
|
3437
3464
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -3475,6 +3502,7 @@ class Mark(BaseHTML):
|
|
|
3475
3502
|
style: The style of the component.
|
|
3476
3503
|
key: A unique key for the component.
|
|
3477
3504
|
id: The id for the component.
|
|
3505
|
+
ref: The Var to pass as the ref to the component.
|
|
3478
3506
|
class_name: The class name for the component.
|
|
3479
3507
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
3480
3508
|
custom_attrs: custom attribute
|
|
@@ -3677,6 +3705,7 @@ class Q(BaseHTML):
|
|
|
3677
3705
|
| None = None,
|
|
3678
3706
|
key: Any | None = None,
|
|
3679
3707
|
id: Any | None = None,
|
|
3708
|
+
ref: Var | None = None,
|
|
3680
3709
|
class_name: Any | None = None,
|
|
3681
3710
|
autofocus: bool | None = None,
|
|
3682
3711
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -3721,6 +3750,7 @@ class Q(BaseHTML):
|
|
|
3721
3750
|
style: The style of the component.
|
|
3722
3751
|
key: A unique key for the component.
|
|
3723
3752
|
id: The id for the component.
|
|
3753
|
+
ref: The Var to pass as the ref to the component.
|
|
3724
3754
|
class_name: The class name for the component.
|
|
3725
3755
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
3726
3756
|
custom_attrs: custom attribute
|
|
@@ -3922,6 +3952,7 @@ class Rp(BaseHTML):
|
|
|
3922
3952
|
| None = None,
|
|
3923
3953
|
key: Any | None = None,
|
|
3924
3954
|
id: Any | None = None,
|
|
3955
|
+
ref: Var | None = None,
|
|
3925
3956
|
class_name: Any | None = None,
|
|
3926
3957
|
autofocus: bool | None = None,
|
|
3927
3958
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -3965,6 +3996,7 @@ class Rp(BaseHTML):
|
|
|
3965
3996
|
style: The style of the component.
|
|
3966
3997
|
key: A unique key for the component.
|
|
3967
3998
|
id: The id for the component.
|
|
3999
|
+
ref: The Var to pass as the ref to the component.
|
|
3968
4000
|
class_name: The class name for the component.
|
|
3969
4001
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
3970
4002
|
custom_attrs: custom attribute
|
|
@@ -4166,6 +4198,7 @@ class Rt(BaseHTML):
|
|
|
4166
4198
|
| None = None,
|
|
4167
4199
|
key: Any | None = None,
|
|
4168
4200
|
id: Any | None = None,
|
|
4201
|
+
ref: Var | None = None,
|
|
4169
4202
|
class_name: Any | None = None,
|
|
4170
4203
|
autofocus: bool | None = None,
|
|
4171
4204
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -4209,6 +4242,7 @@ class Rt(BaseHTML):
|
|
|
4209
4242
|
style: The style of the component.
|
|
4210
4243
|
key: A unique key for the component.
|
|
4211
4244
|
id: The id for the component.
|
|
4245
|
+
ref: The Var to pass as the ref to the component.
|
|
4212
4246
|
class_name: The class name for the component.
|
|
4213
4247
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
4214
4248
|
custom_attrs: custom attribute
|
|
@@ -4410,6 +4444,7 @@ class Ruby(BaseHTML):
|
|
|
4410
4444
|
| None = None,
|
|
4411
4445
|
key: Any | None = None,
|
|
4412
4446
|
id: Any | None = None,
|
|
4447
|
+
ref: Var | None = None,
|
|
4413
4448
|
class_name: Any | None = None,
|
|
4414
4449
|
autofocus: bool | None = None,
|
|
4415
4450
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -4453,6 +4488,7 @@ class Ruby(BaseHTML):
|
|
|
4453
4488
|
style: The style of the component.
|
|
4454
4489
|
key: A unique key for the component.
|
|
4455
4490
|
id: The id for the component.
|
|
4491
|
+
ref: The Var to pass as the ref to the component.
|
|
4456
4492
|
class_name: The class name for the component.
|
|
4457
4493
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
4458
4494
|
custom_attrs: custom attribute
|
|
@@ -4654,6 +4690,7 @@ class S(BaseHTML):
|
|
|
4654
4690
|
| None = None,
|
|
4655
4691
|
key: Any | None = None,
|
|
4656
4692
|
id: Any | None = None,
|
|
4693
|
+
ref: Var | None = None,
|
|
4657
4694
|
class_name: Any | None = None,
|
|
4658
4695
|
autofocus: bool | None = None,
|
|
4659
4696
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -4697,6 +4734,7 @@ class S(BaseHTML):
|
|
|
4697
4734
|
style: The style of the component.
|
|
4698
4735
|
key: A unique key for the component.
|
|
4699
4736
|
id: The id for the component.
|
|
4737
|
+
ref: The Var to pass as the ref to the component.
|
|
4700
4738
|
class_name: The class name for the component.
|
|
4701
4739
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
4702
4740
|
custom_attrs: custom attribute
|
|
@@ -4898,6 +4936,7 @@ class Samp(BaseHTML):
|
|
|
4898
4936
|
| None = None,
|
|
4899
4937
|
key: Any | None = None,
|
|
4900
4938
|
id: Any | None = None,
|
|
4939
|
+
ref: Var | None = None,
|
|
4901
4940
|
class_name: Any | None = None,
|
|
4902
4941
|
autofocus: bool | None = None,
|
|
4903
4942
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -4941,6 +4980,7 @@ class Samp(BaseHTML):
|
|
|
4941
4980
|
style: The style of the component.
|
|
4942
4981
|
key: A unique key for the component.
|
|
4943
4982
|
id: The id for the component.
|
|
4983
|
+
ref: The Var to pass as the ref to the component.
|
|
4944
4984
|
class_name: The class name for the component.
|
|
4945
4985
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
4946
4986
|
custom_attrs: custom attribute
|
|
@@ -5142,6 +5182,7 @@ class Small(BaseHTML):
|
|
|
5142
5182
|
| None = None,
|
|
5143
5183
|
key: Any | None = None,
|
|
5144
5184
|
id: Any | None = None,
|
|
5185
|
+
ref: Var | None = None,
|
|
5145
5186
|
class_name: Any | None = None,
|
|
5146
5187
|
autofocus: bool | None = None,
|
|
5147
5188
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -5185,6 +5226,7 @@ class Small(BaseHTML):
|
|
|
5185
5226
|
style: The style of the component.
|
|
5186
5227
|
key: A unique key for the component.
|
|
5187
5228
|
id: The id for the component.
|
|
5229
|
+
ref: The Var to pass as the ref to the component.
|
|
5188
5230
|
class_name: The class name for the component.
|
|
5189
5231
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
5190
5232
|
custom_attrs: custom attribute
|
|
@@ -5386,6 +5428,7 @@ class Span(BaseHTML):
|
|
|
5386
5428
|
| None = None,
|
|
5387
5429
|
key: Any | None = None,
|
|
5388
5430
|
id: Any | None = None,
|
|
5431
|
+
ref: Var | None = None,
|
|
5389
5432
|
class_name: Any | None = None,
|
|
5390
5433
|
autofocus: bool | None = None,
|
|
5391
5434
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -5429,6 +5472,7 @@ class Span(BaseHTML):
|
|
|
5429
5472
|
style: The style of the component.
|
|
5430
5473
|
key: A unique key for the component.
|
|
5431
5474
|
id: The id for the component.
|
|
5475
|
+
ref: The Var to pass as the ref to the component.
|
|
5432
5476
|
class_name: The class name for the component.
|
|
5433
5477
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
5434
5478
|
custom_attrs: custom attribute
|
|
@@ -5630,6 +5674,7 @@ class Strong(BaseHTML):
|
|
|
5630
5674
|
| None = None,
|
|
5631
5675
|
key: Any | None = None,
|
|
5632
5676
|
id: Any | None = None,
|
|
5677
|
+
ref: Var | None = None,
|
|
5633
5678
|
class_name: Any | None = None,
|
|
5634
5679
|
autofocus: bool | None = None,
|
|
5635
5680
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -5673,6 +5718,7 @@ class Strong(BaseHTML):
|
|
|
5673
5718
|
style: The style of the component.
|
|
5674
5719
|
key: A unique key for the component.
|
|
5675
5720
|
id: The id for the component.
|
|
5721
|
+
ref: The Var to pass as the ref to the component.
|
|
5676
5722
|
class_name: The class name for the component.
|
|
5677
5723
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
5678
5724
|
custom_attrs: custom attribute
|
|
@@ -5874,6 +5920,7 @@ class Sub(BaseHTML):
|
|
|
5874
5920
|
| None = None,
|
|
5875
5921
|
key: Any | None = None,
|
|
5876
5922
|
id: Any | None = None,
|
|
5923
|
+
ref: Var | None = None,
|
|
5877
5924
|
class_name: Any | None = None,
|
|
5878
5925
|
autofocus: bool | None = None,
|
|
5879
5926
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -5917,6 +5964,7 @@ class Sub(BaseHTML):
|
|
|
5917
5964
|
style: The style of the component.
|
|
5918
5965
|
key: A unique key for the component.
|
|
5919
5966
|
id: The id for the component.
|
|
5967
|
+
ref: The Var to pass as the ref to the component.
|
|
5920
5968
|
class_name: The class name for the component.
|
|
5921
5969
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
5922
5970
|
custom_attrs: custom attribute
|
|
@@ -6118,6 +6166,7 @@ class Sup(BaseHTML):
|
|
|
6118
6166
|
| None = None,
|
|
6119
6167
|
key: Any | None = None,
|
|
6120
6168
|
id: Any | None = None,
|
|
6169
|
+
ref: Var | None = None,
|
|
6121
6170
|
class_name: Any | None = None,
|
|
6122
6171
|
autofocus: bool | None = None,
|
|
6123
6172
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -6161,6 +6210,7 @@ class Sup(BaseHTML):
|
|
|
6161
6210
|
style: The style of the component.
|
|
6162
6211
|
key: A unique key for the component.
|
|
6163
6212
|
id: The id for the component.
|
|
6213
|
+
ref: The Var to pass as the ref to the component.
|
|
6164
6214
|
class_name: The class name for the component.
|
|
6165
6215
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
6166
6216
|
custom_attrs: custom attribute
|
|
@@ -6363,6 +6413,7 @@ class Time(BaseHTML):
|
|
|
6363
6413
|
| None = None,
|
|
6364
6414
|
key: Any | None = None,
|
|
6365
6415
|
id: Any | None = None,
|
|
6416
|
+
ref: Var | None = None,
|
|
6366
6417
|
class_name: Any | None = None,
|
|
6367
6418
|
autofocus: bool | None = None,
|
|
6368
6419
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -6407,6 +6458,7 @@ class Time(BaseHTML):
|
|
|
6407
6458
|
style: The style of the component.
|
|
6408
6459
|
key: A unique key for the component.
|
|
6409
6460
|
id: The id for the component.
|
|
6461
|
+
ref: The Var to pass as the ref to the component.
|
|
6410
6462
|
class_name: The class name for the component.
|
|
6411
6463
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
6412
6464
|
custom_attrs: custom attribute
|
|
@@ -6608,6 +6660,7 @@ class U(BaseHTML):
|
|
|
6608
6660
|
| None = None,
|
|
6609
6661
|
key: Any | None = None,
|
|
6610
6662
|
id: Any | None = None,
|
|
6663
|
+
ref: Var | None = None,
|
|
6611
6664
|
class_name: Any | None = None,
|
|
6612
6665
|
autofocus: bool | None = None,
|
|
6613
6666
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -6651,6 +6704,7 @@ class U(BaseHTML):
|
|
|
6651
6704
|
style: The style of the component.
|
|
6652
6705
|
key: A unique key for the component.
|
|
6653
6706
|
id: The id for the component.
|
|
6707
|
+
ref: The Var to pass as the ref to the component.
|
|
6654
6708
|
class_name: The class name for the component.
|
|
6655
6709
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
6656
6710
|
custom_attrs: custom attribute
|
|
@@ -6852,6 +6906,7 @@ class Wbr(BaseHTML):
|
|
|
6852
6906
|
| None = None,
|
|
6853
6907
|
key: Any | None = None,
|
|
6854
6908
|
id: Any | None = None,
|
|
6909
|
+
ref: Var | None = None,
|
|
6855
6910
|
class_name: Any | None = None,
|
|
6856
6911
|
autofocus: bool | None = None,
|
|
6857
6912
|
custom_attrs: dict[str, Var | Any] | None = None,
|
|
@@ -6895,6 +6950,7 @@ class Wbr(BaseHTML):
|
|
|
6895
6950
|
style: The style of the component.
|
|
6896
6951
|
key: A unique key for the component.
|
|
6897
6952
|
id: The id for the component.
|
|
6953
|
+
ref: The Var to pass as the ref to the component.
|
|
6898
6954
|
class_name: The class name for the component.
|
|
6899
6955
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
6900
6956
|
custom_attrs: custom attribute
|