reflex 0.3.9a2__py3-none-any.whl → 0.3.10__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/__init__.py +3 -1
- reflex/__init__.pyi +3 -1
- reflex/app.py +13 -5
- reflex/compiler/utils.py +13 -12
- 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/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/chakra/base.pyi +7 -0
- reflex/components/chakra/datadisplay/badge.pyi +2 -0
- reflex/components/chakra/datadisplay/code.pyi +4 -0
- reflex/components/chakra/datadisplay/divider.pyi +2 -0
- reflex/components/chakra/datadisplay/keyboard_key.pyi +2 -0
- reflex/components/chakra/datadisplay/list.pyi +8 -0
- reflex/components/chakra/datadisplay/stat.pyi +12 -0
- reflex/components/chakra/datadisplay/table.pyi +18 -0
- reflex/components/chakra/datadisplay/tag.pyi +9 -0
- reflex/components/chakra/disclosure/accordion.pyi +10 -0
- reflex/components/chakra/disclosure/tabs.py +8 -0
- reflex/components/chakra/disclosure/tabs.pyi +10 -0
- reflex/components/chakra/disclosure/transition.pyi +12 -0
- reflex/components/chakra/disclosure/visuallyhidden.pyi +2 -0
- reflex/components/chakra/feedback/alert.pyi +8 -0
- reflex/components/chakra/feedback/circularprogress.pyi +4 -0
- reflex/components/chakra/feedback/progress.pyi +2 -0
- reflex/components/chakra/feedback/skeleton.pyi +6 -0
- reflex/components/chakra/feedback/spinner.pyi +2 -0
- reflex/components/chakra/forms/button.pyi +4 -0
- reflex/components/chakra/forms/checkbox.pyi +4 -0
- reflex/components/chakra/forms/colormodeswitch.pyi +7 -0
- reflex/components/chakra/forms/date_picker.pyi +2 -0
- reflex/components/chakra/forms/date_time_picker.pyi +2 -0
- reflex/components/chakra/forms/editable.pyi +8 -0
- reflex/components/chakra/forms/email.pyi +2 -0
- reflex/components/chakra/forms/form.pyi +10 -0
- reflex/components/chakra/forms/iconbutton.py +1 -0
- reflex/components/chakra/forms/iconbutton.pyi +2 -0
- reflex/components/chakra/forms/input.pyi +12 -0
- reflex/components/chakra/forms/numberinput.pyi +10 -0
- reflex/components/chakra/forms/password.pyi +2 -0
- reflex/components/chakra/forms/pininput.pyi +4 -0
- reflex/components/chakra/forms/radio.pyi +4 -0
- reflex/components/chakra/forms/rangeslider.pyi +8 -0
- reflex/components/chakra/forms/select.pyi +4 -0
- reflex/components/chakra/forms/slider.pyi +10 -0
- reflex/components/chakra/forms/switch.pyi +2 -0
- reflex/components/chakra/forms/textarea.pyi +2 -0
- reflex/components/chakra/forms/time_picker.pyi +2 -0
- reflex/components/chakra/layout/aspect_ratio.pyi +2 -0
- reflex/components/chakra/layout/box.pyi +2 -0
- reflex/components/chakra/layout/card.pyi +7 -0
- reflex/components/chakra/layout/center.pyi +6 -0
- reflex/components/chakra/layout/container.pyi +2 -0
- reflex/components/chakra/layout/flex.pyi +2 -0
- reflex/components/chakra/layout/grid.pyi +6 -0
- reflex/components/chakra/layout/html.pyi +2 -0
- reflex/components/chakra/layout/spacer.pyi +2 -0
- reflex/components/chakra/layout/stack.pyi +6 -0
- reflex/components/chakra/layout/wrap.pyi +4 -0
- reflex/components/chakra/media/avatar.pyi +6 -0
- reflex/components/chakra/media/icon.pyi +4 -0
- reflex/components/chakra/media/image.pyi +2 -0
- reflex/components/chakra/navigation/breadcrumb.pyi +8 -0
- reflex/components/chakra/navigation/link.pyi +2 -0
- reflex/components/chakra/navigation/linkoverlay.pyi +4 -0
- reflex/components/chakra/navigation/stepper.pyi +18 -0
- reflex/components/chakra/overlay/alertdialog.pyi +14 -0
- reflex/components/chakra/overlay/drawer.pyi +14 -0
- reflex/components/chakra/overlay/menu.pyi +16 -0
- reflex/components/chakra/overlay/modal.pyi +14 -0
- reflex/components/chakra/overlay/popover.pyi +18 -0
- reflex/components/chakra/overlay/tooltip.pyi +2 -0
- reflex/components/chakra/typography/heading.pyi +2 -0
- reflex/components/chakra/typography/highlight.pyi +2 -0
- reflex/components/chakra/typography/span.pyi +2 -0
- reflex/components/chakra/typography/text.pyi +2 -0
- reflex/components/component.py +41 -3
- reflex/components/core/__init__.py +2 -0
- reflex/components/core/banner.pyi +3 -0
- reflex/components/core/client_side_routing.pyi +4 -0
- reflex/components/core/colors.py +21 -0
- reflex/components/core/cond.py +11 -2
- reflex/components/core/debounce.pyi +1 -0
- reflex/components/core/layout/__init__.py +1 -0
- reflex/components/core/match.py +44 -18
- reflex/components/core/upload.py +8 -2
- reflex/components/core/upload.pyi +7 -1
- reflex/components/datadisplay/dataeditor.pyi +2 -0
- reflex/components/el/element.pyi +2 -0
- reflex/components/el/elements/base.pyi +2 -0
- reflex/components/el/elements/forms.py +3 -0
- reflex/components/el/elements/forms.pyi +32 -0
- reflex/components/el/elements/inline.pyi +56 -0
- reflex/components/el/elements/media.pyi +28 -0
- reflex/components/el/elements/metadata.pyi +10 -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/__init__.py +5 -0
- reflex/components/lucide/icon.py +1484 -0
- reflex/components/lucide/icon.pyi +1594 -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 +4 -0
- reflex/components/radix/primitives/__init__.py +10 -0
- reflex/components/radix/primitives/accordion.py +51 -32
- reflex/components/radix/primitives/accordion.pyi +16 -3
- reflex/components/radix/primitives/base.pyi +4 -0
- reflex/components/radix/primitives/drawer.py +240 -0
- reflex/components/radix/primitives/drawer.pyi +814 -0
- reflex/components/radix/primitives/form.py +40 -7
- reflex/components/radix/primitives/form.pyi +32 -10
- reflex/components/radix/primitives/progress.py +2 -2
- reflex/components/radix/primitives/progress.pyi +6 -0
- reflex/components/radix/primitives/slider.pyi +10 -0
- reflex/components/radix/themes/base.py +46 -12
- reflex/components/radix/themes/base.pyi +23 -9
- reflex/components/radix/themes/components/__init__.py +4 -2
- reflex/components/radix/themes/components/alertdialog.py +13 -12
- reflex/components/radix/themes/components/alertdialog.pyi +23 -351
- reflex/components/radix/themes/components/aspectratio.py +2 -5
- reflex/components/radix/themes/components/aspectratio.pyi +4 -51
- reflex/components/radix/themes/components/avatar.py +3 -4
- reflex/components/radix/themes/components/avatar.pyi +4 -57
- reflex/components/radix/themes/components/badge.py +3 -4
- reflex/components/radix/themes/components/badge.pyi +4 -56
- reflex/components/radix/themes/components/button.py +2 -3
- reflex/components/radix/themes/components/button.pyi +3 -51
- reflex/components/radix/themes/components/callout.py +9 -12
- reflex/components/radix/themes/components/callout.pyi +24 -217
- reflex/components/radix/themes/components/card.py +1 -2
- reflex/components/radix/themes/components/card.pyi +4 -51
- reflex/components/radix/themes/components/checkbox.py +11 -5
- reflex/components/radix/themes/components/checkbox.pyi +13 -112
- reflex/components/radix/themes/components/contextmenu.py +21 -21
- reflex/components/radix/themes/components/contextmenu.pyi +26 -401
- reflex/components/radix/themes/components/dialog.py +13 -16
- reflex/components/radix/themes/components/dialog.pyi +20 -303
- reflex/components/radix/themes/components/dropdownmenu.py +196 -32
- reflex/components/radix/themes/components/dropdownmenu.pyi +147 -389
- reflex/components/radix/themes/components/hovercard.py +5 -5
- reflex/components/radix/themes/components/hovercard.pyi +11 -151
- reflex/components/radix/themes/components/iconbutton.py +56 -4
- reflex/components/radix/themes/components/iconbutton.pyi +25 -71
- reflex/components/radix/themes/components/icons.pyi +4 -0
- reflex/components/radix/themes/components/inset.py +1 -2
- reflex/components/radix/themes/components/inset.pyi +4 -51
- reflex/components/radix/themes/components/popover.py +12 -12
- reflex/components/radix/themes/components/popover.pyi +14 -201
- reflex/components/radix/themes/components/radiogroup.py +47 -20
- reflex/components/radix/themes/components/radiogroup.pyi +26 -171
- reflex/components/radix/themes/components/scrollarea.py +2 -3
- reflex/components/radix/themes/components/scrollarea.pyi +4 -51
- reflex/components/radix/themes/components/select.py +28 -25
- reflex/components/radix/themes/components/select.pyi +43 -419
- reflex/components/radix/themes/components/separator.py +4 -5
- reflex/components/radix/themes/components/separator.pyi +5 -52
- reflex/components/radix/themes/components/slider.py +8 -5
- reflex/components/radix/themes/components/slider.pyi +9 -60
- reflex/components/radix/themes/components/switch.py +6 -4
- reflex/components/radix/themes/components/switch.pyi +5 -53
- reflex/components/radix/themes/components/table.py +14 -15
- reflex/components/radix/themes/components/table.pyi +22 -351
- reflex/components/radix/themes/components/tabs.py +9 -6
- reflex/components/radix/themes/components/tabs.pyi +18 -205
- reflex/components/radix/themes/components/textarea.py +2 -3
- reflex/components/radix/themes/components/textarea.pyi +10 -53
- reflex/components/radix/themes/components/textfield.py +105 -4
- reflex/components/radix/themes/components/textfield.pyi +200 -108
- reflex/components/radix/themes/components/tooltip.py +102 -2
- reflex/components/radix/themes/components/tooltip.pyi +66 -110
- reflex/components/radix/themes/layout/__init__.py +7 -0
- reflex/components/radix/themes/layout/base.pyi +2 -0
- reflex/components/radix/themes/layout/box.py +2 -2
- reflex/components/radix/themes/layout/box.pyi +4 -104
- reflex/components/radix/themes/layout/center.py +19 -0
- reflex/components/radix/themes/layout/center.pyi +261 -0
- reflex/components/radix/themes/layout/container.py +2 -2
- reflex/components/radix/themes/layout/container.pyi +4 -104
- reflex/components/radix/themes/layout/flex.py +2 -2
- reflex/components/radix/themes/layout/flex.pyi +4 -105
- reflex/components/radix/themes/layout/grid.pyi +2 -0
- reflex/components/radix/themes/layout/section.py +2 -2
- reflex/components/radix/themes/layout/section.pyi +4 -104
- reflex/components/radix/themes/layout/spacer.py +19 -0
- reflex/components/radix/themes/layout/spacer.pyi +261 -0
- reflex/components/radix/themes/layout/stack.py +60 -0
- reflex/components/radix/themes/layout/stack.pyi +537 -0
- reflex/components/radix/themes/typography/blockquote.py +2 -3
- reflex/components/radix/themes/typography/blockquote.pyi +4 -51
- reflex/components/radix/themes/typography/code.py +2 -3
- reflex/components/radix/themes/typography/code.pyi +4 -56
- reflex/components/radix/themes/typography/em.py +1 -2
- reflex/components/radix/themes/typography/em.pyi +4 -51
- reflex/components/radix/themes/typography/heading.py +2 -3
- reflex/components/radix/themes/typography/heading.pyi +4 -51
- reflex/components/radix/themes/typography/kbd.py +1 -2
- reflex/components/radix/themes/typography/kbd.pyi +4 -51
- reflex/components/radix/themes/typography/link.py +34 -3
- reflex/components/radix/themes/typography/link.pyi +41 -86
- reflex/components/radix/themes/typography/quote.py +1 -2
- reflex/components/radix/themes/typography/quote.pyi +4 -51
- reflex/components/radix/themes/typography/strong.py +1 -2
- reflex/components/radix/themes/typography/strong.pyi +4 -51
- reflex/components/radix/themes/typography/text.py +2 -3
- reflex/components/radix/themes/typography/text.pyi +4 -51
- reflex/components/radix/themes/typography.py +10 -11
- 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 +22 -0
- reflex/components/recharts/general.pyi +10 -0
- reflex/components/recharts/polar.pyi +12 -0
- reflex/components/recharts/recharts.pyi +4 -0
- reflex/components/suneditor/editor.pyi +2 -0
- reflex/components/tags/tag.py +1 -1
- reflex/constants/base.py +5 -1
- reflex/constants/colors.py +80 -0
- reflex/constants/event.py +10 -1
- reflex/page.py +1 -1
- reflex/reflex.py +4 -0
- reflex/style.py +8 -3
- reflex/testing.py +21 -10
- reflex/utils/format.py +13 -9
- reflex/utils/prerequisites.py +41 -3
- reflex/utils/serializers.py +14 -0
- reflex/utils/telemetry.py +8 -2
- reflex/utils/types.py +36 -2
- reflex/vars.py +53 -18
- {reflex-0.3.9a2.dist-info → reflex-0.3.10.dist-info}/METADATA +1 -2
- {reflex-0.3.9a2.dist-info → reflex-0.3.10.dist-info}/RECORD +246 -232
- {reflex-0.3.9a2.dist-info → reflex-0.3.10.dist-info}/WHEEL +1 -1
- {reflex-0.3.9a2.dist-info → reflex-0.3.10.dist-info}/LICENSE +0 -0
- {reflex-0.3.9a2.dist-info → reflex-0.3.10.dist-info}/entry_points.txt +0 -0
|
@@ -86,6 +86,7 @@ class A(BaseHTML):
|
|
|
86
86
|
id: Optional[Any] = None,
|
|
87
87
|
class_name: Optional[Any] = None,
|
|
88
88
|
autofocus: Optional[bool] = None,
|
|
89
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
89
90
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
90
91
|
on_blur: Optional[
|
|
91
92
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -169,6 +170,7 @@ class A(BaseHTML):
|
|
|
169
170
|
id: The id for the component.
|
|
170
171
|
class_name: The class name for the component.
|
|
171
172
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
173
|
+
_rename_props: props to change the name of
|
|
172
174
|
custom_attrs: custom attribute
|
|
173
175
|
**props: The props of the component.
|
|
174
176
|
|
|
@@ -234,6 +236,7 @@ class Abbr(BaseHTML):
|
|
|
234
236
|
id: Optional[Any] = None,
|
|
235
237
|
class_name: Optional[Any] = None,
|
|
236
238
|
autofocus: Optional[bool] = None,
|
|
239
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
237
240
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
238
241
|
on_blur: Optional[
|
|
239
242
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -308,6 +311,7 @@ class Abbr(BaseHTML):
|
|
|
308
311
|
id: The id for the component.
|
|
309
312
|
class_name: The class name for the component.
|
|
310
313
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
314
|
+
_rename_props: props to change the name of
|
|
311
315
|
custom_attrs: custom attribute
|
|
312
316
|
**props: The props of the component.
|
|
313
317
|
|
|
@@ -373,6 +377,7 @@ class B(BaseHTML):
|
|
|
373
377
|
id: Optional[Any] = None,
|
|
374
378
|
class_name: Optional[Any] = None,
|
|
375
379
|
autofocus: Optional[bool] = None,
|
|
380
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
376
381
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
377
382
|
on_blur: Optional[
|
|
378
383
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -447,6 +452,7 @@ class B(BaseHTML):
|
|
|
447
452
|
id: The id for the component.
|
|
448
453
|
class_name: The class name for the component.
|
|
449
454
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
455
|
+
_rename_props: props to change the name of
|
|
450
456
|
custom_attrs: custom attribute
|
|
451
457
|
**props: The props of the component.
|
|
452
458
|
|
|
@@ -512,6 +518,7 @@ class Bdi(BaseHTML):
|
|
|
512
518
|
id: Optional[Any] = None,
|
|
513
519
|
class_name: Optional[Any] = None,
|
|
514
520
|
autofocus: Optional[bool] = None,
|
|
521
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
515
522
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
516
523
|
on_blur: Optional[
|
|
517
524
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -586,6 +593,7 @@ class Bdi(BaseHTML):
|
|
|
586
593
|
id: The id for the component.
|
|
587
594
|
class_name: The class name for the component.
|
|
588
595
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
596
|
+
_rename_props: props to change the name of
|
|
589
597
|
custom_attrs: custom attribute
|
|
590
598
|
**props: The props of the component.
|
|
591
599
|
|
|
@@ -651,6 +659,7 @@ class Bdo(BaseHTML):
|
|
|
651
659
|
id: Optional[Any] = None,
|
|
652
660
|
class_name: Optional[Any] = None,
|
|
653
661
|
autofocus: Optional[bool] = None,
|
|
662
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
654
663
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
655
664
|
on_blur: Optional[
|
|
656
665
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -725,6 +734,7 @@ class Bdo(BaseHTML):
|
|
|
725
734
|
id: The id for the component.
|
|
726
735
|
class_name: The class name for the component.
|
|
727
736
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
737
|
+
_rename_props: props to change the name of
|
|
728
738
|
custom_attrs: custom attribute
|
|
729
739
|
**props: The props of the component.
|
|
730
740
|
|
|
@@ -790,6 +800,7 @@ class Br(BaseHTML):
|
|
|
790
800
|
id: Optional[Any] = None,
|
|
791
801
|
class_name: Optional[Any] = None,
|
|
792
802
|
autofocus: Optional[bool] = None,
|
|
803
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
793
804
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
794
805
|
on_blur: Optional[
|
|
795
806
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -864,6 +875,7 @@ class Br(BaseHTML):
|
|
|
864
875
|
id: The id for the component.
|
|
865
876
|
class_name: The class name for the component.
|
|
866
877
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
878
|
+
_rename_props: props to change the name of
|
|
867
879
|
custom_attrs: custom attribute
|
|
868
880
|
**props: The props of the component.
|
|
869
881
|
|
|
@@ -929,6 +941,7 @@ class Cite(BaseHTML):
|
|
|
929
941
|
id: Optional[Any] = None,
|
|
930
942
|
class_name: Optional[Any] = None,
|
|
931
943
|
autofocus: Optional[bool] = None,
|
|
944
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
932
945
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
933
946
|
on_blur: Optional[
|
|
934
947
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1003,6 +1016,7 @@ class Cite(BaseHTML):
|
|
|
1003
1016
|
id: The id for the component.
|
|
1004
1017
|
class_name: The class name for the component.
|
|
1005
1018
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1019
|
+
_rename_props: props to change the name of
|
|
1006
1020
|
custom_attrs: custom attribute
|
|
1007
1021
|
**props: The props of the component.
|
|
1008
1022
|
|
|
@@ -1068,6 +1082,7 @@ class Code(BaseHTML):
|
|
|
1068
1082
|
id: Optional[Any] = None,
|
|
1069
1083
|
class_name: Optional[Any] = None,
|
|
1070
1084
|
autofocus: Optional[bool] = None,
|
|
1085
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1071
1086
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1072
1087
|
on_blur: Optional[
|
|
1073
1088
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1142,6 +1157,7 @@ class Code(BaseHTML):
|
|
|
1142
1157
|
id: The id for the component.
|
|
1143
1158
|
class_name: The class name for the component.
|
|
1144
1159
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1160
|
+
_rename_props: props to change the name of
|
|
1145
1161
|
custom_attrs: custom attribute
|
|
1146
1162
|
**props: The props of the component.
|
|
1147
1163
|
|
|
@@ -1210,6 +1226,7 @@ class Data(BaseHTML):
|
|
|
1210
1226
|
id: Optional[Any] = None,
|
|
1211
1227
|
class_name: Optional[Any] = None,
|
|
1212
1228
|
autofocus: Optional[bool] = None,
|
|
1229
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1213
1230
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1214
1231
|
on_blur: Optional[
|
|
1215
1232
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1285,6 +1302,7 @@ class Data(BaseHTML):
|
|
|
1285
1302
|
id: The id for the component.
|
|
1286
1303
|
class_name: The class name for the component.
|
|
1287
1304
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1305
|
+
_rename_props: props to change the name of
|
|
1288
1306
|
custom_attrs: custom attribute
|
|
1289
1307
|
**props: The props of the component.
|
|
1290
1308
|
|
|
@@ -1350,6 +1368,7 @@ class Dfn(BaseHTML):
|
|
|
1350
1368
|
id: Optional[Any] = None,
|
|
1351
1369
|
class_name: Optional[Any] = None,
|
|
1352
1370
|
autofocus: Optional[bool] = None,
|
|
1371
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1353
1372
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1354
1373
|
on_blur: Optional[
|
|
1355
1374
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1424,6 +1443,7 @@ class Dfn(BaseHTML):
|
|
|
1424
1443
|
id: The id for the component.
|
|
1425
1444
|
class_name: The class name for the component.
|
|
1426
1445
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1446
|
+
_rename_props: props to change the name of
|
|
1427
1447
|
custom_attrs: custom attribute
|
|
1428
1448
|
**props: The props of the component.
|
|
1429
1449
|
|
|
@@ -1489,6 +1509,7 @@ class Em(BaseHTML):
|
|
|
1489
1509
|
id: Optional[Any] = None,
|
|
1490
1510
|
class_name: Optional[Any] = None,
|
|
1491
1511
|
autofocus: Optional[bool] = None,
|
|
1512
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1492
1513
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1493
1514
|
on_blur: Optional[
|
|
1494
1515
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1563,6 +1584,7 @@ class Em(BaseHTML):
|
|
|
1563
1584
|
id: The id for the component.
|
|
1564
1585
|
class_name: The class name for the component.
|
|
1565
1586
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1587
|
+
_rename_props: props to change the name of
|
|
1566
1588
|
custom_attrs: custom attribute
|
|
1567
1589
|
**props: The props of the component.
|
|
1568
1590
|
|
|
@@ -1628,6 +1650,7 @@ class I(BaseHTML):
|
|
|
1628
1650
|
id: Optional[Any] = None,
|
|
1629
1651
|
class_name: Optional[Any] = None,
|
|
1630
1652
|
autofocus: Optional[bool] = None,
|
|
1653
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1631
1654
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1632
1655
|
on_blur: Optional[
|
|
1633
1656
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1702,6 +1725,7 @@ class I(BaseHTML):
|
|
|
1702
1725
|
id: The id for the component.
|
|
1703
1726
|
class_name: The class name for the component.
|
|
1704
1727
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1728
|
+
_rename_props: props to change the name of
|
|
1705
1729
|
custom_attrs: custom attribute
|
|
1706
1730
|
**props: The props of the component.
|
|
1707
1731
|
|
|
@@ -1767,6 +1791,7 @@ class Kbd(BaseHTML):
|
|
|
1767
1791
|
id: Optional[Any] = None,
|
|
1768
1792
|
class_name: Optional[Any] = None,
|
|
1769
1793
|
autofocus: Optional[bool] = None,
|
|
1794
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1770
1795
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1771
1796
|
on_blur: Optional[
|
|
1772
1797
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1841,6 +1866,7 @@ class Kbd(BaseHTML):
|
|
|
1841
1866
|
id: The id for the component.
|
|
1842
1867
|
class_name: The class name for the component.
|
|
1843
1868
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1869
|
+
_rename_props: props to change the name of
|
|
1844
1870
|
custom_attrs: custom attribute
|
|
1845
1871
|
**props: The props of the component.
|
|
1846
1872
|
|
|
@@ -1906,6 +1932,7 @@ class Mark(BaseHTML):
|
|
|
1906
1932
|
id: Optional[Any] = None,
|
|
1907
1933
|
class_name: Optional[Any] = None,
|
|
1908
1934
|
autofocus: Optional[bool] = None,
|
|
1935
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1909
1936
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1910
1937
|
on_blur: Optional[
|
|
1911
1938
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1980,6 +2007,7 @@ class Mark(BaseHTML):
|
|
|
1980
2007
|
id: The id for the component.
|
|
1981
2008
|
class_name: The class name for the component.
|
|
1982
2009
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
2010
|
+
_rename_props: props to change the name of
|
|
1983
2011
|
custom_attrs: custom attribute
|
|
1984
2012
|
**props: The props of the component.
|
|
1985
2013
|
|
|
@@ -2046,6 +2074,7 @@ class Q(BaseHTML):
|
|
|
2046
2074
|
id: Optional[Any] = None,
|
|
2047
2075
|
class_name: Optional[Any] = None,
|
|
2048
2076
|
autofocus: Optional[bool] = None,
|
|
2077
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
2049
2078
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
2050
2079
|
on_blur: Optional[
|
|
2051
2080
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -2121,6 +2150,7 @@ class Q(BaseHTML):
|
|
|
2121
2150
|
id: The id for the component.
|
|
2122
2151
|
class_name: The class name for the component.
|
|
2123
2152
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
2153
|
+
_rename_props: props to change the name of
|
|
2124
2154
|
custom_attrs: custom attribute
|
|
2125
2155
|
**props: The props of the component.
|
|
2126
2156
|
|
|
@@ -2186,6 +2216,7 @@ class Rp(BaseHTML):
|
|
|
2186
2216
|
id: Optional[Any] = None,
|
|
2187
2217
|
class_name: Optional[Any] = None,
|
|
2188
2218
|
autofocus: Optional[bool] = None,
|
|
2219
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
2189
2220
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
2190
2221
|
on_blur: Optional[
|
|
2191
2222
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -2260,6 +2291,7 @@ class Rp(BaseHTML):
|
|
|
2260
2291
|
id: The id for the component.
|
|
2261
2292
|
class_name: The class name for the component.
|
|
2262
2293
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
2294
|
+
_rename_props: props to change the name of
|
|
2263
2295
|
custom_attrs: custom attribute
|
|
2264
2296
|
**props: The props of the component.
|
|
2265
2297
|
|
|
@@ -2325,6 +2357,7 @@ class Rt(BaseHTML):
|
|
|
2325
2357
|
id: Optional[Any] = None,
|
|
2326
2358
|
class_name: Optional[Any] = None,
|
|
2327
2359
|
autofocus: Optional[bool] = None,
|
|
2360
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
2328
2361
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
2329
2362
|
on_blur: Optional[
|
|
2330
2363
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -2399,6 +2432,7 @@ class Rt(BaseHTML):
|
|
|
2399
2432
|
id: The id for the component.
|
|
2400
2433
|
class_name: The class name for the component.
|
|
2401
2434
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
2435
|
+
_rename_props: props to change the name of
|
|
2402
2436
|
custom_attrs: custom attribute
|
|
2403
2437
|
**props: The props of the component.
|
|
2404
2438
|
|
|
@@ -2464,6 +2498,7 @@ class Ruby(BaseHTML):
|
|
|
2464
2498
|
id: Optional[Any] = None,
|
|
2465
2499
|
class_name: Optional[Any] = None,
|
|
2466
2500
|
autofocus: Optional[bool] = None,
|
|
2501
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
2467
2502
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
2468
2503
|
on_blur: Optional[
|
|
2469
2504
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -2538,6 +2573,7 @@ class Ruby(BaseHTML):
|
|
|
2538
2573
|
id: The id for the component.
|
|
2539
2574
|
class_name: The class name for the component.
|
|
2540
2575
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
2576
|
+
_rename_props: props to change the name of
|
|
2541
2577
|
custom_attrs: custom attribute
|
|
2542
2578
|
**props: The props of the component.
|
|
2543
2579
|
|
|
@@ -2603,6 +2639,7 @@ class S(BaseHTML):
|
|
|
2603
2639
|
id: Optional[Any] = None,
|
|
2604
2640
|
class_name: Optional[Any] = None,
|
|
2605
2641
|
autofocus: Optional[bool] = None,
|
|
2642
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
2606
2643
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
2607
2644
|
on_blur: Optional[
|
|
2608
2645
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -2677,6 +2714,7 @@ class S(BaseHTML):
|
|
|
2677
2714
|
id: The id for the component.
|
|
2678
2715
|
class_name: The class name for the component.
|
|
2679
2716
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
2717
|
+
_rename_props: props to change the name of
|
|
2680
2718
|
custom_attrs: custom attribute
|
|
2681
2719
|
**props: The props of the component.
|
|
2682
2720
|
|
|
@@ -2742,6 +2780,7 @@ class Samp(BaseHTML):
|
|
|
2742
2780
|
id: Optional[Any] = None,
|
|
2743
2781
|
class_name: Optional[Any] = None,
|
|
2744
2782
|
autofocus: Optional[bool] = None,
|
|
2783
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
2745
2784
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
2746
2785
|
on_blur: Optional[
|
|
2747
2786
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -2816,6 +2855,7 @@ class Samp(BaseHTML):
|
|
|
2816
2855
|
id: The id for the component.
|
|
2817
2856
|
class_name: The class name for the component.
|
|
2818
2857
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
2858
|
+
_rename_props: props to change the name of
|
|
2819
2859
|
custom_attrs: custom attribute
|
|
2820
2860
|
**props: The props of the component.
|
|
2821
2861
|
|
|
@@ -2881,6 +2921,7 @@ class Small(BaseHTML):
|
|
|
2881
2921
|
id: Optional[Any] = None,
|
|
2882
2922
|
class_name: Optional[Any] = None,
|
|
2883
2923
|
autofocus: Optional[bool] = None,
|
|
2924
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
2884
2925
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
2885
2926
|
on_blur: Optional[
|
|
2886
2927
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -2955,6 +2996,7 @@ class Small(BaseHTML):
|
|
|
2955
2996
|
id: The id for the component.
|
|
2956
2997
|
class_name: The class name for the component.
|
|
2957
2998
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
2999
|
+
_rename_props: props to change the name of
|
|
2958
3000
|
custom_attrs: custom attribute
|
|
2959
3001
|
**props: The props of the component.
|
|
2960
3002
|
|
|
@@ -3020,6 +3062,7 @@ class Span(BaseHTML):
|
|
|
3020
3062
|
id: Optional[Any] = None,
|
|
3021
3063
|
class_name: Optional[Any] = None,
|
|
3022
3064
|
autofocus: Optional[bool] = None,
|
|
3065
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
3023
3066
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
3024
3067
|
on_blur: Optional[
|
|
3025
3068
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -3094,6 +3137,7 @@ class Span(BaseHTML):
|
|
|
3094
3137
|
id: The id for the component.
|
|
3095
3138
|
class_name: The class name for the component.
|
|
3096
3139
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
3140
|
+
_rename_props: props to change the name of
|
|
3097
3141
|
custom_attrs: custom attribute
|
|
3098
3142
|
**props: The props of the component.
|
|
3099
3143
|
|
|
@@ -3159,6 +3203,7 @@ class Strong(BaseHTML):
|
|
|
3159
3203
|
id: Optional[Any] = None,
|
|
3160
3204
|
class_name: Optional[Any] = None,
|
|
3161
3205
|
autofocus: Optional[bool] = None,
|
|
3206
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
3162
3207
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
3163
3208
|
on_blur: Optional[
|
|
3164
3209
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -3233,6 +3278,7 @@ class Strong(BaseHTML):
|
|
|
3233
3278
|
id: The id for the component.
|
|
3234
3279
|
class_name: The class name for the component.
|
|
3235
3280
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
3281
|
+
_rename_props: props to change the name of
|
|
3236
3282
|
custom_attrs: custom attribute
|
|
3237
3283
|
**props: The props of the component.
|
|
3238
3284
|
|
|
@@ -3298,6 +3344,7 @@ class Sub(BaseHTML):
|
|
|
3298
3344
|
id: Optional[Any] = None,
|
|
3299
3345
|
class_name: Optional[Any] = None,
|
|
3300
3346
|
autofocus: Optional[bool] = None,
|
|
3347
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
3301
3348
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
3302
3349
|
on_blur: Optional[
|
|
3303
3350
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -3372,6 +3419,7 @@ class Sub(BaseHTML):
|
|
|
3372
3419
|
id: The id for the component.
|
|
3373
3420
|
class_name: The class name for the component.
|
|
3374
3421
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
3422
|
+
_rename_props: props to change the name of
|
|
3375
3423
|
custom_attrs: custom attribute
|
|
3376
3424
|
**props: The props of the component.
|
|
3377
3425
|
|
|
@@ -3437,6 +3485,7 @@ class Sup(BaseHTML):
|
|
|
3437
3485
|
id: Optional[Any] = None,
|
|
3438
3486
|
class_name: Optional[Any] = None,
|
|
3439
3487
|
autofocus: Optional[bool] = None,
|
|
3488
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
3440
3489
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
3441
3490
|
on_blur: Optional[
|
|
3442
3491
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -3511,6 +3560,7 @@ class Sup(BaseHTML):
|
|
|
3511
3560
|
id: The id for the component.
|
|
3512
3561
|
class_name: The class name for the component.
|
|
3513
3562
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
3563
|
+
_rename_props: props to change the name of
|
|
3514
3564
|
custom_attrs: custom attribute
|
|
3515
3565
|
**props: The props of the component.
|
|
3516
3566
|
|
|
@@ -3579,6 +3629,7 @@ class Time(BaseHTML):
|
|
|
3579
3629
|
id: Optional[Any] = None,
|
|
3580
3630
|
class_name: Optional[Any] = None,
|
|
3581
3631
|
autofocus: Optional[bool] = None,
|
|
3632
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
3582
3633
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
3583
3634
|
on_blur: Optional[
|
|
3584
3635
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -3654,6 +3705,7 @@ class Time(BaseHTML):
|
|
|
3654
3705
|
id: The id for the component.
|
|
3655
3706
|
class_name: The class name for the component.
|
|
3656
3707
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
3708
|
+
_rename_props: props to change the name of
|
|
3657
3709
|
custom_attrs: custom attribute
|
|
3658
3710
|
**props: The props of the component.
|
|
3659
3711
|
|
|
@@ -3719,6 +3771,7 @@ class U(BaseHTML):
|
|
|
3719
3771
|
id: Optional[Any] = None,
|
|
3720
3772
|
class_name: Optional[Any] = None,
|
|
3721
3773
|
autofocus: Optional[bool] = None,
|
|
3774
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
3722
3775
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
3723
3776
|
on_blur: Optional[
|
|
3724
3777
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -3793,6 +3846,7 @@ class U(BaseHTML):
|
|
|
3793
3846
|
id: The id for the component.
|
|
3794
3847
|
class_name: The class name for the component.
|
|
3795
3848
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
3849
|
+
_rename_props: props to change the name of
|
|
3796
3850
|
custom_attrs: custom attribute
|
|
3797
3851
|
**props: The props of the component.
|
|
3798
3852
|
|
|
@@ -3858,6 +3912,7 @@ class Wbr(BaseHTML):
|
|
|
3858
3912
|
id: Optional[Any] = None,
|
|
3859
3913
|
class_name: Optional[Any] = None,
|
|
3860
3914
|
autofocus: Optional[bool] = None,
|
|
3915
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
3861
3916
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
3862
3917
|
on_blur: Optional[
|
|
3863
3918
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -3932,6 +3987,7 @@ class Wbr(BaseHTML):
|
|
|
3932
3987
|
id: The id for the component.
|
|
3933
3988
|
class_name: The class name for the component.
|
|
3934
3989
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
3990
|
+
_rename_props: props to change the name of
|
|
3935
3991
|
custom_attrs: custom attribute
|
|
3936
3992
|
**props: The props of the component.
|
|
3937
3993
|
|
|
@@ -90,6 +90,7 @@ class Area(BaseHTML):
|
|
|
90
90
|
id: Optional[Any] = None,
|
|
91
91
|
class_name: Optional[Any] = None,
|
|
92
92
|
autofocus: Optional[bool] = None,
|
|
93
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
93
94
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
94
95
|
on_blur: Optional[
|
|
95
96
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -175,6 +176,7 @@ class Area(BaseHTML):
|
|
|
175
176
|
id: The id for the component.
|
|
176
177
|
class_name: The class name for the component.
|
|
177
178
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
179
|
+
_rename_props: props to change the name of
|
|
178
180
|
custom_attrs: custom attribute
|
|
179
181
|
**props: The props of the component.
|
|
180
182
|
|
|
@@ -260,6 +262,7 @@ class Audio(BaseHTML):
|
|
|
260
262
|
id: Optional[Any] = None,
|
|
261
263
|
class_name: Optional[Any] = None,
|
|
262
264
|
autofocus: Optional[bool] = None,
|
|
265
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
263
266
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
264
267
|
on_blur: Optional[
|
|
265
268
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -342,6 +345,7 @@ class Audio(BaseHTML):
|
|
|
342
345
|
id: The id for the component.
|
|
343
346
|
class_name: The class name for the component.
|
|
344
347
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
348
|
+
_rename_props: props to change the name of
|
|
345
349
|
custom_attrs: custom attribute
|
|
346
350
|
**props: The props of the component.
|
|
347
351
|
|
|
@@ -448,6 +452,7 @@ class Img(BaseHTML):
|
|
|
448
452
|
id: Optional[Any] = None,
|
|
449
453
|
class_name: Optional[Any] = None,
|
|
450
454
|
autofocus: Optional[bool] = None,
|
|
455
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
451
456
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
452
457
|
on_blur: Optional[
|
|
453
458
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -537,6 +542,7 @@ class Img(BaseHTML):
|
|
|
537
542
|
id: The id for the component.
|
|
538
543
|
class_name: The class name for the component.
|
|
539
544
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
545
|
+
_rename_props: props to change the name of
|
|
540
546
|
custom_attrs: custom attribute
|
|
541
547
|
**props: The props of the component.
|
|
542
548
|
|
|
@@ -603,6 +609,7 @@ class Map(BaseHTML):
|
|
|
603
609
|
id: Optional[Any] = None,
|
|
604
610
|
class_name: Optional[Any] = None,
|
|
605
611
|
autofocus: Optional[bool] = None,
|
|
612
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
606
613
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
607
614
|
on_blur: Optional[
|
|
608
615
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -678,6 +685,7 @@ class Map(BaseHTML):
|
|
|
678
685
|
id: The id for the component.
|
|
679
686
|
class_name: The class name for the component.
|
|
680
687
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
688
|
+
_rename_props: props to change the name of
|
|
681
689
|
custom_attrs: custom attribute
|
|
682
690
|
**props: The props of the component.
|
|
683
691
|
|
|
@@ -754,6 +762,7 @@ class Track(BaseHTML):
|
|
|
754
762
|
id: Optional[Any] = None,
|
|
755
763
|
class_name: Optional[Any] = None,
|
|
756
764
|
autofocus: Optional[bool] = None,
|
|
765
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
757
766
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
758
767
|
on_blur: Optional[
|
|
759
768
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -833,6 +842,7 @@ class Track(BaseHTML):
|
|
|
833
842
|
id: The id for the component.
|
|
834
843
|
class_name: The class name for the component.
|
|
835
844
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
845
|
+
_rename_props: props to change the name of
|
|
836
846
|
custom_attrs: custom attribute
|
|
837
847
|
**props: The props of the component.
|
|
838
848
|
|
|
@@ -930,6 +940,7 @@ class Video(BaseHTML):
|
|
|
930
940
|
id: Optional[Any] = None,
|
|
931
941
|
class_name: Optional[Any] = None,
|
|
932
942
|
autofocus: Optional[bool] = None,
|
|
943
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
933
944
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
934
945
|
on_blur: Optional[
|
|
935
946
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1016,6 +1027,7 @@ class Video(BaseHTML):
|
|
|
1016
1027
|
id: The id for the component.
|
|
1017
1028
|
class_name: The class name for the component.
|
|
1018
1029
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1030
|
+
_rename_props: props to change the name of
|
|
1019
1031
|
custom_attrs: custom attribute
|
|
1020
1032
|
**props: The props of the component.
|
|
1021
1033
|
|
|
@@ -1089,6 +1101,7 @@ class Embed(BaseHTML):
|
|
|
1089
1101
|
id: Optional[Any] = None,
|
|
1090
1102
|
class_name: Optional[Any] = None,
|
|
1091
1103
|
autofocus: Optional[bool] = None,
|
|
1104
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1092
1105
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1093
1106
|
on_blur: Optional[
|
|
1094
1107
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1167,6 +1180,7 @@ class Embed(BaseHTML):
|
|
|
1167
1180
|
id: The id for the component.
|
|
1168
1181
|
class_name: The class name for the component.
|
|
1169
1182
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1183
|
+
_rename_props: props to change the name of
|
|
1170
1184
|
custom_attrs: custom attribute
|
|
1171
1185
|
**props: The props of the component.
|
|
1172
1186
|
|
|
@@ -1259,6 +1273,7 @@ class Iframe(BaseHTML):
|
|
|
1259
1273
|
id: Optional[Any] = None,
|
|
1260
1274
|
class_name: Optional[Any] = None,
|
|
1261
1275
|
autofocus: Optional[bool] = None,
|
|
1276
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1262
1277
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1263
1278
|
on_blur: Optional[
|
|
1264
1279
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1344,6 +1359,7 @@ class Iframe(BaseHTML):
|
|
|
1344
1359
|
id: The id for the component.
|
|
1345
1360
|
class_name: The class name for the component.
|
|
1346
1361
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1362
|
+
_rename_props: props to change the name of
|
|
1347
1363
|
custom_attrs: custom attribute
|
|
1348
1364
|
**props: The props of the component.
|
|
1349
1365
|
|
|
@@ -1425,6 +1441,7 @@ class Object(BaseHTML):
|
|
|
1425
1441
|
id: Optional[Any] = None,
|
|
1426
1442
|
class_name: Optional[Any] = None,
|
|
1427
1443
|
autofocus: Optional[bool] = None,
|
|
1444
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1428
1445
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1429
1446
|
on_blur: Optional[
|
|
1430
1447
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1507,6 +1524,7 @@ class Object(BaseHTML):
|
|
|
1507
1524
|
id: The id for the component.
|
|
1508
1525
|
class_name: The class name for the component.
|
|
1509
1526
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1527
|
+
_rename_props: props to change the name of
|
|
1510
1528
|
custom_attrs: custom attribute
|
|
1511
1529
|
**props: The props of the component.
|
|
1512
1530
|
|
|
@@ -1572,6 +1590,7 @@ class Picture(BaseHTML):
|
|
|
1572
1590
|
id: Optional[Any] = None,
|
|
1573
1591
|
class_name: Optional[Any] = None,
|
|
1574
1592
|
autofocus: Optional[bool] = None,
|
|
1593
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1575
1594
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1576
1595
|
on_blur: Optional[
|
|
1577
1596
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1646,6 +1665,7 @@ class Picture(BaseHTML):
|
|
|
1646
1665
|
id: The id for the component.
|
|
1647
1666
|
class_name: The class name for the component.
|
|
1648
1667
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1668
|
+
_rename_props: props to change the name of
|
|
1649
1669
|
custom_attrs: custom attribute
|
|
1650
1670
|
**props: The props of the component.
|
|
1651
1671
|
|
|
@@ -1711,6 +1731,7 @@ class Portal(BaseHTML):
|
|
|
1711
1731
|
id: Optional[Any] = None,
|
|
1712
1732
|
class_name: Optional[Any] = None,
|
|
1713
1733
|
autofocus: Optional[bool] = None,
|
|
1734
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1714
1735
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1715
1736
|
on_blur: Optional[
|
|
1716
1737
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1785,6 +1806,7 @@ class Portal(BaseHTML):
|
|
|
1785
1806
|
id: The id for the component.
|
|
1786
1807
|
class_name: The class name for the component.
|
|
1787
1808
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1809
|
+
_rename_props: props to change the name of
|
|
1788
1810
|
custom_attrs: custom attribute
|
|
1789
1811
|
**props: The props of the component.
|
|
1790
1812
|
|
|
@@ -1861,6 +1883,7 @@ class Source(BaseHTML):
|
|
|
1861
1883
|
id: Optional[Any] = None,
|
|
1862
1884
|
class_name: Optional[Any] = None,
|
|
1863
1885
|
autofocus: Optional[bool] = None,
|
|
1886
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1864
1887
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1865
1888
|
on_blur: Optional[
|
|
1866
1889
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1940,6 +1963,7 @@ class Source(BaseHTML):
|
|
|
1940
1963
|
id: The id for the component.
|
|
1941
1964
|
class_name: The class name for the component.
|
|
1942
1965
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1966
|
+
_rename_props: props to change the name of
|
|
1943
1967
|
custom_attrs: custom attribute
|
|
1944
1968
|
**props: The props of the component.
|
|
1945
1969
|
|
|
@@ -2011,6 +2035,7 @@ class Svg(BaseHTML):
|
|
|
2011
2035
|
id: Optional[Any] = None,
|
|
2012
2036
|
class_name: Optional[Any] = None,
|
|
2013
2037
|
autofocus: Optional[bool] = None,
|
|
2038
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
2014
2039
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
2015
2040
|
on_blur: Optional[
|
|
2016
2041
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -2087,6 +2112,7 @@ class Svg(BaseHTML):
|
|
|
2087
2112
|
id: The id for the component.
|
|
2088
2113
|
class_name: The class name for the component.
|
|
2089
2114
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
2115
|
+
_rename_props: props to change the name of
|
|
2090
2116
|
custom_attrs: custom attribute
|
|
2091
2117
|
**props: The props of the component.
|
|
2092
2118
|
|
|
@@ -2153,6 +2179,7 @@ class Path(BaseHTML):
|
|
|
2153
2179
|
id: Optional[Any] = None,
|
|
2154
2180
|
class_name: Optional[Any] = None,
|
|
2155
2181
|
autofocus: Optional[bool] = None,
|
|
2182
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
2156
2183
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
2157
2184
|
on_blur: Optional[
|
|
2158
2185
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -2228,6 +2255,7 @@ class Path(BaseHTML):
|
|
|
2228
2255
|
id: The id for the component.
|
|
2229
2256
|
class_name: The class name for the component.
|
|
2230
2257
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
2258
|
+
_rename_props: props to change the name of
|
|
2231
2259
|
custom_attrs: custom attribute
|
|
2232
2260
|
**props: The props of the component.
|
|
2233
2261
|
|