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
|
@@ -70,6 +70,7 @@ class Base(BaseHTML):
|
|
|
70
70
|
id: Optional[Any] = None,
|
|
71
71
|
class_name: Optional[Any] = None,
|
|
72
72
|
autofocus: Optional[bool] = None,
|
|
73
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
73
74
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
74
75
|
on_blur: Optional[
|
|
75
76
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -144,6 +145,7 @@ class Base(BaseHTML):
|
|
|
144
145
|
id: The id for the component.
|
|
145
146
|
class_name: The class name for the component.
|
|
146
147
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
148
|
+
_rename_props: props to change the name of
|
|
147
149
|
custom_attrs: custom attribute
|
|
148
150
|
**props: The props of the component.
|
|
149
151
|
|
|
@@ -209,6 +211,7 @@ class Head(BaseHTML):
|
|
|
209
211
|
id: Optional[Any] = None,
|
|
210
212
|
class_name: Optional[Any] = None,
|
|
211
213
|
autofocus: Optional[bool] = None,
|
|
214
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
212
215
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
213
216
|
on_blur: Optional[
|
|
214
217
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -283,6 +286,7 @@ class Head(BaseHTML):
|
|
|
283
286
|
id: The id for the component.
|
|
284
287
|
class_name: The class name for the component.
|
|
285
288
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
289
|
+
_rename_props: props to change the name of
|
|
286
290
|
custom_attrs: custom attribute
|
|
287
291
|
**props: The props of the component.
|
|
288
292
|
|
|
@@ -369,6 +373,7 @@ class Link(BaseHTML):
|
|
|
369
373
|
id: Optional[Any] = None,
|
|
370
374
|
class_name: Optional[Any] = None,
|
|
371
375
|
autofocus: Optional[bool] = None,
|
|
376
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
372
377
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
373
378
|
on_blur: Optional[
|
|
374
379
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -443,6 +448,7 @@ class Link(BaseHTML):
|
|
|
443
448
|
id: The id for the component.
|
|
444
449
|
class_name: The class name for the component.
|
|
445
450
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
451
|
+
_rename_props: props to change the name of
|
|
446
452
|
custom_attrs: custom attribute
|
|
447
453
|
**props: The props of the component.
|
|
448
454
|
|
|
@@ -518,6 +524,7 @@ class Meta(BaseHTML):
|
|
|
518
524
|
id: Optional[Any] = None,
|
|
519
525
|
class_name: Optional[Any] = None,
|
|
520
526
|
autofocus: Optional[bool] = None,
|
|
527
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
521
528
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
522
529
|
on_blur: Optional[
|
|
523
530
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -592,6 +599,7 @@ class Meta(BaseHTML):
|
|
|
592
599
|
id: The id for the component.
|
|
593
600
|
class_name: The class name for the component.
|
|
594
601
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
602
|
+
_rename_props: props to change the name of
|
|
595
603
|
custom_attrs: custom attribute
|
|
596
604
|
**props: The props of the component.
|
|
597
605
|
|
|
@@ -614,6 +622,7 @@ class Title(Element):
|
|
|
614
622
|
id: Optional[Any] = None,
|
|
615
623
|
class_name: Optional[Any] = None,
|
|
616
624
|
autofocus: Optional[bool] = None,
|
|
625
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
617
626
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
618
627
|
on_blur: Optional[
|
|
619
628
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -671,6 +680,7 @@ class Title(Element):
|
|
|
671
680
|
id: The id for the component.
|
|
672
681
|
class_name: The class name for the component.
|
|
673
682
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
683
|
+
_rename_props: props to change the name of
|
|
674
684
|
custom_attrs: custom attribute
|
|
675
685
|
**props: The props of the component.
|
|
676
686
|
|
|
@@ -66,6 +66,7 @@ class Details(BaseHTML):
|
|
|
66
66
|
id: Optional[Any] = None,
|
|
67
67
|
class_name: Optional[Any] = None,
|
|
68
68
|
autofocus: Optional[bool] = None,
|
|
69
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
69
70
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
70
71
|
on_blur: Optional[
|
|
71
72
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -141,6 +142,7 @@ class Details(BaseHTML):
|
|
|
141
142
|
id: The id for the component.
|
|
142
143
|
class_name: The class name for the component.
|
|
143
144
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
145
|
+
_rename_props: props to change the name of
|
|
144
146
|
custom_attrs: custom attribute
|
|
145
147
|
**props: The props of the component.
|
|
146
148
|
|
|
@@ -207,6 +209,7 @@ class Dialog(BaseHTML):
|
|
|
207
209
|
id: Optional[Any] = None,
|
|
208
210
|
class_name: Optional[Any] = None,
|
|
209
211
|
autofocus: Optional[bool] = None,
|
|
212
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
210
213
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
211
214
|
on_blur: Optional[
|
|
212
215
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -282,6 +285,7 @@ class Dialog(BaseHTML):
|
|
|
282
285
|
id: The id for the component.
|
|
283
286
|
class_name: The class name for the component.
|
|
284
287
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
288
|
+
_rename_props: props to change the name of
|
|
285
289
|
custom_attrs: custom attribute
|
|
286
290
|
**props: The props of the component.
|
|
287
291
|
|
|
@@ -347,6 +351,7 @@ class Summary(BaseHTML):
|
|
|
347
351
|
id: Optional[Any] = None,
|
|
348
352
|
class_name: Optional[Any] = None,
|
|
349
353
|
autofocus: Optional[bool] = None,
|
|
354
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
350
355
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
351
356
|
on_blur: Optional[
|
|
352
357
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -421,6 +426,7 @@ class Summary(BaseHTML):
|
|
|
421
426
|
id: The id for the component.
|
|
422
427
|
class_name: The class name for the component.
|
|
423
428
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
429
|
+
_rename_props: props to change the name of
|
|
424
430
|
custom_attrs: custom attribute
|
|
425
431
|
**props: The props of the component.
|
|
426
432
|
|
|
@@ -486,6 +492,7 @@ class Slot(BaseHTML):
|
|
|
486
492
|
id: Optional[Any] = None,
|
|
487
493
|
class_name: Optional[Any] = None,
|
|
488
494
|
autofocus: Optional[bool] = None,
|
|
495
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
489
496
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
490
497
|
on_blur: Optional[
|
|
491
498
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -560,6 +567,7 @@ class Slot(BaseHTML):
|
|
|
560
567
|
id: The id for the component.
|
|
561
568
|
class_name: The class name for the component.
|
|
562
569
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
570
|
+
_rename_props: props to change the name of
|
|
563
571
|
custom_attrs: custom attribute
|
|
564
572
|
**props: The props of the component.
|
|
565
573
|
|
|
@@ -625,6 +633,7 @@ class Template(BaseHTML):
|
|
|
625
633
|
id: Optional[Any] = None,
|
|
626
634
|
class_name: Optional[Any] = None,
|
|
627
635
|
autofocus: Optional[bool] = None,
|
|
636
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
628
637
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
629
638
|
on_blur: Optional[
|
|
630
639
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -699,6 +708,7 @@ class Template(BaseHTML):
|
|
|
699
708
|
id: The id for the component.
|
|
700
709
|
class_name: The class name for the component.
|
|
701
710
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
711
|
+
_rename_props: props to change the name of
|
|
702
712
|
custom_attrs: custom attribute
|
|
703
713
|
**props: The props of the component.
|
|
704
714
|
|
|
@@ -764,6 +774,7 @@ class Math(BaseHTML):
|
|
|
764
774
|
id: Optional[Any] = None,
|
|
765
775
|
class_name: Optional[Any] = None,
|
|
766
776
|
autofocus: Optional[bool] = None,
|
|
777
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
767
778
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
768
779
|
on_blur: Optional[
|
|
769
780
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -838,6 +849,7 @@ class Math(BaseHTML):
|
|
|
838
849
|
id: The id for the component.
|
|
839
850
|
class_name: The class name for the component.
|
|
840
851
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
852
|
+
_rename_props: props to change the name of
|
|
841
853
|
custom_attrs: custom attribute
|
|
842
854
|
**props: The props of the component.
|
|
843
855
|
|
|
@@ -906,6 +918,7 @@ class Html(BaseHTML):
|
|
|
906
918
|
id: Optional[Any] = None,
|
|
907
919
|
class_name: Optional[Any] = None,
|
|
908
920
|
autofocus: Optional[bool] = None,
|
|
921
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
909
922
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
910
923
|
on_blur: Optional[
|
|
911
924
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -981,6 +994,7 @@ class Html(BaseHTML):
|
|
|
981
994
|
id: The id for the component.
|
|
982
995
|
class_name: The class name for the component.
|
|
983
996
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
997
|
+
_rename_props: props to change the name of
|
|
984
998
|
custom_attrs: custom attribute
|
|
985
999
|
**props: The props of the component.
|
|
986
1000
|
|
|
@@ -71,6 +71,7 @@ class Canvas(BaseHTML):
|
|
|
71
71
|
id: Optional[Any] = None,
|
|
72
72
|
class_name: Optional[Any] = None,
|
|
73
73
|
autofocus: Optional[bool] = None,
|
|
74
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
74
75
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
75
76
|
on_blur: Optional[
|
|
76
77
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -147,6 +148,7 @@ class Canvas(BaseHTML):
|
|
|
147
148
|
id: The id for the component.
|
|
148
149
|
class_name: The class name for the component.
|
|
149
150
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
151
|
+
_rename_props: props to change the name of
|
|
150
152
|
custom_attrs: custom attribute
|
|
151
153
|
**props: The props of the component.
|
|
152
154
|
|
|
@@ -212,6 +214,7 @@ class Noscript(BaseHTML):
|
|
|
212
214
|
id: Optional[Any] = None,
|
|
213
215
|
class_name: Optional[Any] = None,
|
|
214
216
|
autofocus: Optional[bool] = None,
|
|
217
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
215
218
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
216
219
|
on_blur: Optional[
|
|
217
220
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -286,6 +289,7 @@ class Noscript(BaseHTML):
|
|
|
286
289
|
id: The id for the component.
|
|
287
290
|
class_name: The class name for the component.
|
|
288
291
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
292
|
+
_rename_props: props to change the name of
|
|
289
293
|
custom_attrs: custom attribute
|
|
290
294
|
**props: The props of the component.
|
|
291
295
|
|
|
@@ -374,6 +378,7 @@ class Script(BaseHTML):
|
|
|
374
378
|
id: Optional[Any] = None,
|
|
375
379
|
class_name: Optional[Any] = None,
|
|
376
380
|
autofocus: Optional[bool] = None,
|
|
381
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
377
382
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
378
383
|
on_blur: Optional[
|
|
379
384
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -457,6 +462,7 @@ class Script(BaseHTML):
|
|
|
457
462
|
id: The id for the component.
|
|
458
463
|
class_name: The class name for the component.
|
|
459
464
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
465
|
+
_rename_props: props to change the name of
|
|
460
466
|
custom_attrs: custom attribute
|
|
461
467
|
**props: The props of the component.
|
|
462
468
|
|
|
@@ -71,6 +71,7 @@ class Body(BaseHTML):
|
|
|
71
71
|
id: Optional[Any] = None,
|
|
72
72
|
class_name: Optional[Any] = None,
|
|
73
73
|
autofocus: Optional[bool] = None,
|
|
74
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
74
75
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
75
76
|
on_blur: Optional[
|
|
76
77
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -145,6 +146,7 @@ class Body(BaseHTML):
|
|
|
145
146
|
id: The id for the component.
|
|
146
147
|
class_name: The class name for the component.
|
|
147
148
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
149
|
+
_rename_props: props to change the name of
|
|
148
150
|
custom_attrs: custom attribute
|
|
149
151
|
**props: The props of the component.
|
|
150
152
|
|
|
@@ -210,6 +212,7 @@ class Address(BaseHTML):
|
|
|
210
212
|
id: Optional[Any] = None,
|
|
211
213
|
class_name: Optional[Any] = None,
|
|
212
214
|
autofocus: Optional[bool] = None,
|
|
215
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
213
216
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
214
217
|
on_blur: Optional[
|
|
215
218
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -284,6 +287,7 @@ class Address(BaseHTML):
|
|
|
284
287
|
id: The id for the component.
|
|
285
288
|
class_name: The class name for the component.
|
|
286
289
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
290
|
+
_rename_props: props to change the name of
|
|
287
291
|
custom_attrs: custom attribute
|
|
288
292
|
**props: The props of the component.
|
|
289
293
|
|
|
@@ -349,6 +353,7 @@ class Article(BaseHTML):
|
|
|
349
353
|
id: Optional[Any] = None,
|
|
350
354
|
class_name: Optional[Any] = None,
|
|
351
355
|
autofocus: Optional[bool] = None,
|
|
356
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
352
357
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
353
358
|
on_blur: Optional[
|
|
354
359
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -423,6 +428,7 @@ class Article(BaseHTML):
|
|
|
423
428
|
id: The id for the component.
|
|
424
429
|
class_name: The class name for the component.
|
|
425
430
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
431
|
+
_rename_props: props to change the name of
|
|
426
432
|
custom_attrs: custom attribute
|
|
427
433
|
**props: The props of the component.
|
|
428
434
|
|
|
@@ -488,6 +494,7 @@ class Aside(BaseHTML):
|
|
|
488
494
|
id: Optional[Any] = None,
|
|
489
495
|
class_name: Optional[Any] = None,
|
|
490
496
|
autofocus: Optional[bool] = None,
|
|
497
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
491
498
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
492
499
|
on_blur: Optional[
|
|
493
500
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -562,6 +569,7 @@ class Aside(BaseHTML):
|
|
|
562
569
|
id: The id for the component.
|
|
563
570
|
class_name: The class name for the component.
|
|
564
571
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
572
|
+
_rename_props: props to change the name of
|
|
565
573
|
custom_attrs: custom attribute
|
|
566
574
|
**props: The props of the component.
|
|
567
575
|
|
|
@@ -627,6 +635,7 @@ class Footer(BaseHTML):
|
|
|
627
635
|
id: Optional[Any] = None,
|
|
628
636
|
class_name: Optional[Any] = None,
|
|
629
637
|
autofocus: Optional[bool] = None,
|
|
638
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
630
639
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
631
640
|
on_blur: Optional[
|
|
632
641
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -701,6 +710,7 @@ class Footer(BaseHTML):
|
|
|
701
710
|
id: The id for the component.
|
|
702
711
|
class_name: The class name for the component.
|
|
703
712
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
713
|
+
_rename_props: props to change the name of
|
|
704
714
|
custom_attrs: custom attribute
|
|
705
715
|
**props: The props of the component.
|
|
706
716
|
|
|
@@ -766,6 +776,7 @@ class Header(BaseHTML):
|
|
|
766
776
|
id: Optional[Any] = None,
|
|
767
777
|
class_name: Optional[Any] = None,
|
|
768
778
|
autofocus: Optional[bool] = None,
|
|
779
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
769
780
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
770
781
|
on_blur: Optional[
|
|
771
782
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -840,6 +851,7 @@ class Header(BaseHTML):
|
|
|
840
851
|
id: The id for the component.
|
|
841
852
|
class_name: The class name for the component.
|
|
842
853
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
854
|
+
_rename_props: props to change the name of
|
|
843
855
|
custom_attrs: custom attribute
|
|
844
856
|
**props: The props of the component.
|
|
845
857
|
|
|
@@ -905,6 +917,7 @@ class H1(BaseHTML):
|
|
|
905
917
|
id: Optional[Any] = None,
|
|
906
918
|
class_name: Optional[Any] = None,
|
|
907
919
|
autofocus: Optional[bool] = None,
|
|
920
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
908
921
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
909
922
|
on_blur: Optional[
|
|
910
923
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -979,6 +992,7 @@ class H1(BaseHTML):
|
|
|
979
992
|
id: The id for the component.
|
|
980
993
|
class_name: The class name for the component.
|
|
981
994
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
995
|
+
_rename_props: props to change the name of
|
|
982
996
|
custom_attrs: custom attribute
|
|
983
997
|
**props: The props of the component.
|
|
984
998
|
|
|
@@ -1044,6 +1058,7 @@ class H2(BaseHTML):
|
|
|
1044
1058
|
id: Optional[Any] = None,
|
|
1045
1059
|
class_name: Optional[Any] = None,
|
|
1046
1060
|
autofocus: Optional[bool] = None,
|
|
1061
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1047
1062
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1048
1063
|
on_blur: Optional[
|
|
1049
1064
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1118,6 +1133,7 @@ class H2(BaseHTML):
|
|
|
1118
1133
|
id: The id for the component.
|
|
1119
1134
|
class_name: The class name for the component.
|
|
1120
1135
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1136
|
+
_rename_props: props to change the name of
|
|
1121
1137
|
custom_attrs: custom attribute
|
|
1122
1138
|
**props: The props of the component.
|
|
1123
1139
|
|
|
@@ -1183,6 +1199,7 @@ class H3(BaseHTML):
|
|
|
1183
1199
|
id: Optional[Any] = None,
|
|
1184
1200
|
class_name: Optional[Any] = None,
|
|
1185
1201
|
autofocus: Optional[bool] = None,
|
|
1202
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1186
1203
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1187
1204
|
on_blur: Optional[
|
|
1188
1205
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1257,6 +1274,7 @@ class H3(BaseHTML):
|
|
|
1257
1274
|
id: The id for the component.
|
|
1258
1275
|
class_name: The class name for the component.
|
|
1259
1276
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1277
|
+
_rename_props: props to change the name of
|
|
1260
1278
|
custom_attrs: custom attribute
|
|
1261
1279
|
**props: The props of the component.
|
|
1262
1280
|
|
|
@@ -1322,6 +1340,7 @@ class H4(BaseHTML):
|
|
|
1322
1340
|
id: Optional[Any] = None,
|
|
1323
1341
|
class_name: Optional[Any] = None,
|
|
1324
1342
|
autofocus: Optional[bool] = None,
|
|
1343
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1325
1344
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1326
1345
|
on_blur: Optional[
|
|
1327
1346
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1396,6 +1415,7 @@ class H4(BaseHTML):
|
|
|
1396
1415
|
id: The id for the component.
|
|
1397
1416
|
class_name: The class name for the component.
|
|
1398
1417
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1418
|
+
_rename_props: props to change the name of
|
|
1399
1419
|
custom_attrs: custom attribute
|
|
1400
1420
|
**props: The props of the component.
|
|
1401
1421
|
|
|
@@ -1461,6 +1481,7 @@ class H5(BaseHTML):
|
|
|
1461
1481
|
id: Optional[Any] = None,
|
|
1462
1482
|
class_name: Optional[Any] = None,
|
|
1463
1483
|
autofocus: Optional[bool] = None,
|
|
1484
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1464
1485
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1465
1486
|
on_blur: Optional[
|
|
1466
1487
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1535,6 +1556,7 @@ class H5(BaseHTML):
|
|
|
1535
1556
|
id: The id for the component.
|
|
1536
1557
|
class_name: The class name for the component.
|
|
1537
1558
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1559
|
+
_rename_props: props to change the name of
|
|
1538
1560
|
custom_attrs: custom attribute
|
|
1539
1561
|
**props: The props of the component.
|
|
1540
1562
|
|
|
@@ -1600,6 +1622,7 @@ class H6(BaseHTML):
|
|
|
1600
1622
|
id: Optional[Any] = None,
|
|
1601
1623
|
class_name: Optional[Any] = None,
|
|
1602
1624
|
autofocus: Optional[bool] = None,
|
|
1625
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1603
1626
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1604
1627
|
on_blur: Optional[
|
|
1605
1628
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1674,6 +1697,7 @@ class H6(BaseHTML):
|
|
|
1674
1697
|
id: The id for the component.
|
|
1675
1698
|
class_name: The class name for the component.
|
|
1676
1699
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1700
|
+
_rename_props: props to change the name of
|
|
1677
1701
|
custom_attrs: custom attribute
|
|
1678
1702
|
**props: The props of the component.
|
|
1679
1703
|
|
|
@@ -1739,6 +1763,7 @@ class Main(BaseHTML):
|
|
|
1739
1763
|
id: Optional[Any] = None,
|
|
1740
1764
|
class_name: Optional[Any] = None,
|
|
1741
1765
|
autofocus: Optional[bool] = None,
|
|
1766
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1742
1767
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1743
1768
|
on_blur: Optional[
|
|
1744
1769
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1813,6 +1838,7 @@ class Main(BaseHTML):
|
|
|
1813
1838
|
id: The id for the component.
|
|
1814
1839
|
class_name: The class name for the component.
|
|
1815
1840
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1841
|
+
_rename_props: props to change the name of
|
|
1816
1842
|
custom_attrs: custom attribute
|
|
1817
1843
|
**props: The props of the component.
|
|
1818
1844
|
|
|
@@ -1878,6 +1904,7 @@ class Nav(BaseHTML):
|
|
|
1878
1904
|
id: Optional[Any] = None,
|
|
1879
1905
|
class_name: Optional[Any] = None,
|
|
1880
1906
|
autofocus: Optional[bool] = None,
|
|
1907
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1881
1908
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1882
1909
|
on_blur: Optional[
|
|
1883
1910
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1952,6 +1979,7 @@ class Nav(BaseHTML):
|
|
|
1952
1979
|
id: The id for the component.
|
|
1953
1980
|
class_name: The class name for the component.
|
|
1954
1981
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1982
|
+
_rename_props: props to change the name of
|
|
1955
1983
|
custom_attrs: custom attribute
|
|
1956
1984
|
**props: The props of the component.
|
|
1957
1985
|
|
|
@@ -2017,6 +2045,7 @@ class Section(BaseHTML):
|
|
|
2017
2045
|
id: Optional[Any] = None,
|
|
2018
2046
|
class_name: Optional[Any] = None,
|
|
2019
2047
|
autofocus: Optional[bool] = None,
|
|
2048
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
2020
2049
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
2021
2050
|
on_blur: Optional[
|
|
2022
2051
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -2091,6 +2120,7 @@ class Section(BaseHTML):
|
|
|
2091
2120
|
id: The id for the component.
|
|
2092
2121
|
class_name: The class name for the component.
|
|
2093
2122
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
2123
|
+
_rename_props: props to change the name of
|
|
2094
2124
|
custom_attrs: custom attribute
|
|
2095
2125
|
**props: The props of the component.
|
|
2096
2126
|
|
|
@@ -68,6 +68,7 @@ class Caption(BaseHTML):
|
|
|
68
68
|
id: Optional[Any] = None,
|
|
69
69
|
class_name: Optional[Any] = None,
|
|
70
70
|
autofocus: Optional[bool] = None,
|
|
71
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
71
72
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
72
73
|
on_blur: Optional[
|
|
73
74
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -143,6 +144,7 @@ class Caption(BaseHTML):
|
|
|
143
144
|
id: The id for the component.
|
|
144
145
|
class_name: The class name for the component.
|
|
145
146
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
147
|
+
_rename_props: props to change the name of
|
|
146
148
|
custom_attrs: custom attribute
|
|
147
149
|
**props: The props of the component.
|
|
148
150
|
|
|
@@ -215,6 +217,7 @@ class Col(BaseHTML):
|
|
|
215
217
|
id: Optional[Any] = None,
|
|
216
218
|
class_name: Optional[Any] = None,
|
|
217
219
|
autofocus: Optional[bool] = None,
|
|
220
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
218
221
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
219
222
|
on_blur: Optional[
|
|
220
223
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -292,6 +295,7 @@ class Col(BaseHTML):
|
|
|
292
295
|
id: The id for the component.
|
|
293
296
|
class_name: The class name for the component.
|
|
294
297
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
298
|
+
_rename_props: props to change the name of
|
|
295
299
|
custom_attrs: custom attribute
|
|
296
300
|
**props: The props of the component.
|
|
297
301
|
|
|
@@ -364,6 +368,7 @@ class Colgroup(BaseHTML):
|
|
|
364
368
|
id: Optional[Any] = None,
|
|
365
369
|
class_name: Optional[Any] = None,
|
|
366
370
|
autofocus: Optional[bool] = None,
|
|
371
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
367
372
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
368
373
|
on_blur: Optional[
|
|
369
374
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -441,6 +446,7 @@ class Colgroup(BaseHTML):
|
|
|
441
446
|
id: The id for the component.
|
|
442
447
|
class_name: The class name for the component.
|
|
443
448
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
449
|
+
_rename_props: props to change the name of
|
|
444
450
|
custom_attrs: custom attribute
|
|
445
451
|
**props: The props of the component.
|
|
446
452
|
|
|
@@ -521,6 +527,7 @@ class Table(BaseHTML):
|
|
|
521
527
|
id: Optional[Any] = None,
|
|
522
528
|
class_name: Optional[Any] = None,
|
|
523
529
|
autofocus: Optional[bool] = None,
|
|
530
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
524
531
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
525
532
|
on_blur: Optional[
|
|
526
533
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -600,6 +607,7 @@ class Table(BaseHTML):
|
|
|
600
607
|
id: The id for the component.
|
|
601
608
|
class_name: The class name for the component.
|
|
602
609
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
610
|
+
_rename_props: props to change the name of
|
|
603
611
|
custom_attrs: custom attribute
|
|
604
612
|
**props: The props of the component.
|
|
605
613
|
|
|
@@ -671,6 +679,7 @@ class Tbody(BaseHTML):
|
|
|
671
679
|
id: Optional[Any] = None,
|
|
672
680
|
class_name: Optional[Any] = None,
|
|
673
681
|
autofocus: Optional[bool] = None,
|
|
682
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
674
683
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
675
684
|
on_blur: Optional[
|
|
676
685
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -747,6 +756,7 @@ class Tbody(BaseHTML):
|
|
|
747
756
|
id: The id for the component.
|
|
748
757
|
class_name: The class name for the component.
|
|
749
758
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
759
|
+
_rename_props: props to change the name of
|
|
750
760
|
custom_attrs: custom attribute
|
|
751
761
|
**props: The props of the component.
|
|
752
762
|
|
|
@@ -830,6 +840,7 @@ class Td(BaseHTML):
|
|
|
830
840
|
id: Optional[Any] = None,
|
|
831
841
|
class_name: Optional[Any] = None,
|
|
832
842
|
autofocus: Optional[bool] = None,
|
|
843
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
833
844
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
834
845
|
on_blur: Optional[
|
|
835
846
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -910,6 +921,7 @@ class Td(BaseHTML):
|
|
|
910
921
|
id: The id for the component.
|
|
911
922
|
class_name: The class name for the component.
|
|
912
923
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
924
|
+
_rename_props: props to change the name of
|
|
913
925
|
custom_attrs: custom attribute
|
|
914
926
|
**props: The props of the component.
|
|
915
927
|
|
|
@@ -981,6 +993,7 @@ class Tfoot(BaseHTML):
|
|
|
981
993
|
id: Optional[Any] = None,
|
|
982
994
|
class_name: Optional[Any] = None,
|
|
983
995
|
autofocus: Optional[bool] = None,
|
|
996
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
984
997
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
985
998
|
on_blur: Optional[
|
|
986
999
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1057,6 +1070,7 @@ class Tfoot(BaseHTML):
|
|
|
1057
1070
|
id: The id for the component.
|
|
1058
1071
|
class_name: The class name for the component.
|
|
1059
1072
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1073
|
+
_rename_props: props to change the name of
|
|
1060
1074
|
custom_attrs: custom attribute
|
|
1061
1075
|
**props: The props of the component.
|
|
1062
1076
|
|
|
@@ -1143,6 +1157,7 @@ class Th(BaseHTML):
|
|
|
1143
1157
|
id: Optional[Any] = None,
|
|
1144
1158
|
class_name: Optional[Any] = None,
|
|
1145
1159
|
autofocus: Optional[bool] = None,
|
|
1160
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1146
1161
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1147
1162
|
on_blur: Optional[
|
|
1148
1163
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1224,6 +1239,7 @@ class Th(BaseHTML):
|
|
|
1224
1239
|
id: The id for the component.
|
|
1225
1240
|
class_name: The class name for the component.
|
|
1226
1241
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1242
|
+
_rename_props: props to change the name of
|
|
1227
1243
|
custom_attrs: custom attribute
|
|
1228
1244
|
**props: The props of the component.
|
|
1229
1245
|
|
|
@@ -1292,6 +1308,7 @@ class Thead(BaseHTML):
|
|
|
1292
1308
|
id: Optional[Any] = None,
|
|
1293
1309
|
class_name: Optional[Any] = None,
|
|
1294
1310
|
autofocus: Optional[bool] = None,
|
|
1311
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1295
1312
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1296
1313
|
on_blur: Optional[
|
|
1297
1314
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1367,6 +1384,7 @@ class Thead(BaseHTML):
|
|
|
1367
1384
|
id: The id for the component.
|
|
1368
1385
|
class_name: The class name for the component.
|
|
1369
1386
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1387
|
+
_rename_props: props to change the name of
|
|
1370
1388
|
custom_attrs: custom attribute
|
|
1371
1389
|
**props: The props of the component.
|
|
1372
1390
|
|
|
@@ -1438,6 +1456,7 @@ class Tr(BaseHTML):
|
|
|
1438
1456
|
id: Optional[Any] = None,
|
|
1439
1457
|
class_name: Optional[Any] = None,
|
|
1440
1458
|
autofocus: Optional[bool] = None,
|
|
1459
|
+
_rename_props: Optional[Dict[str, str]] = None,
|
|
1441
1460
|
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
1442
1461
|
on_blur: Optional[
|
|
1443
1462
|
Union[EventHandler, EventSpec, list, function, BaseVar]
|
|
@@ -1514,6 +1533,7 @@ class Tr(BaseHTML):
|
|
|
1514
1533
|
id: The id for the component.
|
|
1515
1534
|
class_name: The class name for the component.
|
|
1516
1535
|
autofocus: Whether the component should take the focus once the page is loaded
|
|
1536
|
+
_rename_props: props to change the name of
|
|
1517
1537
|
custom_attrs: custom attribute
|
|
1518
1538
|
**props: The props of the component.
|
|
1519
1539
|
|