reflex 0.6.0__py3-none-any.whl → 0.6.0a1__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/.templates/jinja/custom_components/pyproject.toml.jinja2 +2 -2
- reflex/.templates/jinja/web/pages/_app.js.jinja2 +1 -1
- reflex/.templates/jinja/web/pages/utils.js.jinja2 +2 -2
- reflex/.templates/web/components/reflex/chakra_color_mode_provider.js +36 -0
- reflex/.templates/web/utils/state.js +1 -3
- reflex/__init__.py +2 -8
- reflex/__init__.pyi +1 -2
- reflex/app.py +2 -4
- reflex/app_module_for_backend.py +1 -1
- reflex/base.py +1 -1
- reflex/compiler/compiler.py +2 -2
- reflex/compiler/utils.py +3 -3
- reflex/components/base/app_wrap.py +2 -2
- reflex/components/base/app_wrap.pyi +27 -17
- reflex/components/base/bare.py +5 -4
- reflex/components/base/body.pyi +27 -17
- reflex/components/base/document.pyi +131 -81
- reflex/components/base/error_boundary.py +7 -6
- reflex/components/base/error_boundary.pyi +33 -20
- reflex/components/base/fragment.pyi +27 -17
- reflex/components/base/head.pyi +53 -33
- reflex/components/base/link.py +1 -1
- reflex/components/base/link.pyi +54 -33
- reflex/components/base/meta.pyi +105 -65
- reflex/components/base/script.py +2 -1
- reflex/components/base/script.pyi +38 -21
- reflex/components/component.py +47 -53
- reflex/components/core/banner.py +27 -23
- reflex/components/core/banner.pyi +171 -134
- reflex/components/core/client_side_routing.py +3 -2
- reflex/components/core/client_side_routing.pyi +54 -33
- reflex/components/core/clipboard.py +1 -2
- reflex/components/core/clipboard.pyi +33 -20
- reflex/components/core/cond.py +5 -5
- reflex/components/core/debounce.py +5 -5
- reflex/components/core/debounce.pyi +33 -20
- reflex/components/core/foreach.py +4 -3
- reflex/components/core/html.py +1 -1
- reflex/components/core/html.pyi +46 -35
- reflex/components/core/match.py +17 -17
- reflex/components/core/upload.py +23 -17
- reflex/components/core/upload.pyi +124 -78
- reflex/components/datadisplay/code.py +10 -9
- reflex/components/datadisplay/code.pyi +409 -299
- reflex/components/datadisplay/dataeditor.py +10 -8
- reflex/components/datadisplay/dataeditor.pyi +53 -40
- reflex/components/el/element.pyi +27 -17
- reflex/components/el/elements/base.py +1 -1
- reflex/components/el/elements/base.pyi +45 -34
- reflex/components/el/elements/forms.py +16 -16
- reflex/components/el/elements/forms.pyi +707 -554
- reflex/components/el/elements/inline.py +1 -1
- reflex/components/el/elements/inline.pyi +1218 -937
- reflex/components/el/elements/media.py +1 -1
- reflex/components/el/elements/media.pyi +997 -786
- reflex/components/el/elements/metadata.py +6 -3
- reflex/components/el/elements/metadata.pyi +242 -181
- reflex/components/el/elements/other.py +1 -1
- reflex/components/el/elements/other.pyi +306 -235
- reflex/components/el/elements/scripts.py +1 -1
- reflex/components/el/elements/scripts.pyi +140 -109
- reflex/components/el/elements/sectioning.py +2 -0
- reflex/components/el/elements/sectioning.pyi +647 -496
- reflex/components/el/elements/tables.py +1 -1
- reflex/components/el/elements/tables.pyi +452 -351
- reflex/components/el/elements/typography.py +1 -1
- reflex/components/el/elements/typography.pyi +657 -506
- reflex/components/gridjs/datatable.py +9 -6
- reflex/components/gridjs/datatable.pyi +56 -35
- reflex/components/lucide/icon.py +1 -1
- reflex/components/lucide/icon.pyi +54 -33
- reflex/components/markdown/markdown.py +31 -26
- reflex/components/markdown/markdown.pyi +37 -27
- reflex/components/moment/moment.py +12 -13
- reflex/components/moment/moment.pyi +35 -23
- reflex/components/next/base.pyi +27 -17
- reflex/components/next/image.py +1 -1
- reflex/components/next/image.pyi +37 -22
- reflex/components/next/link.py +1 -1
- reflex/components/next/link.pyi +28 -17
- reflex/components/next/video.py +1 -1
- reflex/components/next/video.pyi +28 -17
- reflex/components/plotly/plotly.py +13 -12
- reflex/components/plotly/plotly.pyi +54 -39
- reflex/components/props.py +1 -1
- reflex/components/radix/__init__.pyi +0 -1
- reflex/components/radix/primitives/__init__.pyi +0 -1
- reflex/components/radix/primitives/accordion.py +4 -4
- reflex/components/radix/primitives/accordion.pyi +495 -424
- reflex/components/radix/primitives/base.py +1 -1
- reflex/components/radix/primitives/base.pyi +54 -33
- reflex/components/radix/primitives/drawer.py +1 -1
- reflex/components/radix/primitives/drawer.pyi +273 -172
- reflex/components/radix/primitives/form.py +1 -1
- reflex/components/radix/primitives/form.pyi +364 -257
- reflex/components/radix/primitives/progress.py +1 -1
- reflex/components/radix/primitives/progress.pyi +282 -231
- reflex/components/radix/primitives/slider.py +1 -1
- reflex/components/radix/primitives/slider.pyi +138 -87
- reflex/components/radix/themes/base.py +24 -3
- reflex/components/radix/themes/base.pyi +250 -178
- reflex/components/radix/themes/color_mode.py +5 -5
- reflex/components/radix/themes/color_mode.pyi +220 -187
- reflex/components/radix/themes/components/alert_dialog.py +1 -1
- reflex/components/radix/themes/components/alert_dialog.pyi +207 -136
- reflex/components/radix/themes/components/aspect_ratio.py +1 -1
- reflex/components/radix/themes/components/aspect_ratio.pyi +28 -17
- reflex/components/radix/themes/components/avatar.py +1 -1
- reflex/components/radix/themes/components/avatar.pyi +81 -70
- reflex/components/radix/themes/components/badge.py +1 -1
- reflex/components/radix/themes/components/badge.pyi +99 -88
- reflex/components/radix/themes/components/button.py +1 -1
- reflex/components/radix/themes/components/button.pyi +109 -98
- reflex/components/radix/themes/components/callout.py +1 -1
- reflex/components/radix/themes/components/callout.pyi +373 -322
- reflex/components/radix/themes/components/card.py +1 -1
- reflex/components/radix/themes/components/card.pyi +49 -38
- reflex/components/radix/themes/components/checkbox.py +2 -1
- reflex/components/radix/themes/components/checkbox.pyi +245 -208
- reflex/components/radix/themes/components/checkbox_cards.py +1 -1
- reflex/components/radix/themes/components/checkbox_cards.pyi +115 -94
- reflex/components/radix/themes/components/checkbox_group.py +1 -1
- reflex/components/radix/themes/components/checkbox_group.pyi +107 -86
- reflex/components/radix/themes/components/context_menu.py +1 -1
- reflex/components/radix/themes/components/context_menu.pyi +319 -238
- reflex/components/radix/themes/components/data_list.py +1 -1
- reflex/components/radix/themes/components/data_list.pyi +171 -130
- reflex/components/radix/themes/components/dialog.py +1 -1
- reflex/components/radix/themes/components/dialog.pyi +210 -139
- reflex/components/radix/themes/components/dropdown_menu.py +1 -1
- reflex/components/radix/themes/components/dropdown_menu.pyi +332 -249
- reflex/components/radix/themes/components/hover_card.py +1 -1
- reflex/components/radix/themes/components/hover_card.pyi +131 -90
- reflex/components/radix/themes/components/icon_button.py +3 -2
- reflex/components/radix/themes/components/icon_button.pyi +109 -98
- reflex/components/radix/themes/components/inset.py +1 -1
- reflex/components/radix/themes/components/inset.pyi +58 -47
- reflex/components/radix/themes/components/popover.py +1 -1
- reflex/components/radix/themes/components/popover.pyi +136 -95
- reflex/components/radix/themes/components/progress.py +1 -1
- reflex/components/radix/themes/components/progress.pyi +82 -71
- reflex/components/radix/themes/components/radio.py +1 -1
- reflex/components/radix/themes/components/radio.pyi +80 -69
- reflex/components/radix/themes/components/radio_cards.py +1 -1
- reflex/components/radix/themes/components/radio_cards.pyi +119 -98
- reflex/components/radix/themes/components/radio_group.py +11 -8
- reflex/components/radix/themes/components/radio_group.pyi +271 -228
- reflex/components/radix/themes/components/scroll_area.py +1 -1
- reflex/components/radix/themes/components/scroll_area.pyi +32 -21
- reflex/components/radix/themes/components/segmented_control.py +1 -1
- reflex/components/radix/themes/components/segmented_control.pyi +113 -90
- reflex/components/radix/themes/components/select.py +3 -2
- reflex/components/radix/themes/components/select.pyi +471 -374
- reflex/components/radix/themes/components/separator.py +2 -1
- reflex/components/radix/themes/components/separator.pyi +80 -69
- reflex/components/radix/themes/components/skeleton.py +1 -1
- reflex/components/radix/themes/components/skeleton.pyi +34 -23
- reflex/components/radix/themes/components/slider.py +3 -2
- reflex/components/radix/themes/components/slider.pyi +88 -75
- reflex/components/radix/themes/components/spinner.py +1 -1
- reflex/components/radix/themes/components/spinner.pyi +30 -19
- reflex/components/radix/themes/components/switch.py +1 -1
- reflex/components/radix/themes/components/switch.pyi +84 -71
- reflex/components/radix/themes/components/table.py +1 -1
- reflex/components/radix/themes/components/table.pyi +332 -261
- reflex/components/radix/themes/components/tabs.py +1 -1
- reflex/components/radix/themes/components/tabs.pyi +194 -139
- reflex/components/radix/themes/components/text_area.py +1 -1
- reflex/components/radix/themes/components/text_area.pyi +111 -96
- reflex/components/radix/themes/components/text_field.py +1 -1
- reflex/components/radix/themes/components/text_field.pyi +286 -247
- reflex/components/radix/themes/components/tooltip.py +1 -1
- reflex/components/radix/themes/components/tooltip.pyi +37 -26
- reflex/components/radix/themes/layout/__init__.pyi +0 -1
- reflex/components/radix/themes/layout/base.py +1 -1
- reflex/components/radix/themes/layout/base.pyi +67 -56
- reflex/components/radix/themes/layout/box.pyi +45 -34
- reflex/components/radix/themes/layout/center.pyi +67 -56
- reflex/components/radix/themes/layout/container.py +2 -1
- reflex/components/radix/themes/layout/container.pyi +47 -36
- reflex/components/radix/themes/layout/flex.py +1 -1
- reflex/components/radix/themes/layout/flex.pyi +67 -56
- reflex/components/radix/themes/layout/grid.py +1 -1
- reflex/components/radix/themes/layout/grid.pyi +75 -64
- reflex/components/radix/themes/layout/list.py +6 -5
- reflex/components/radix/themes/layout/list.pyi +244 -193
- reflex/components/radix/themes/layout/section.py +2 -1
- reflex/components/radix/themes/layout/section.pyi +47 -36
- reflex/components/radix/themes/layout/spacer.pyi +67 -56
- reflex/components/radix/themes/layout/stack.py +1 -1
- reflex/components/radix/themes/layout/stack.pyi +159 -128
- reflex/components/radix/themes/typography/blockquote.py +1 -1
- reflex/components/radix/themes/typography/blockquote.pyi +100 -89
- reflex/components/radix/themes/typography/code.py +1 -1
- reflex/components/radix/themes/typography/code.pyi +101 -90
- reflex/components/radix/themes/typography/heading.py +1 -1
- reflex/components/radix/themes/typography/heading.pyi +107 -96
- reflex/components/radix/themes/typography/link.py +1 -1
- reflex/components/radix/themes/typography/link.pyi +113 -102
- reflex/components/radix/themes/typography/text.py +1 -1
- reflex/components/radix/themes/typography/text.pyi +572 -501
- reflex/components/react_player/audio.pyi +60 -33
- reflex/components/react_player/react_player.py +1 -1
- reflex/components/react_player/react_player.pyi +60 -33
- reflex/components/react_player/video.pyi +60 -33
- reflex/components/recharts/cartesian.py +3 -2
- reflex/components/recharts/cartesian.pyi +861 -678
- reflex/components/recharts/charts.py +5 -4
- reflex/components/recharts/charts.pyi +357 -252
- reflex/components/recharts/general.py +2 -1
- reflex/components/recharts/general.pyi +231 -180
- reflex/components/recharts/polar.py +5 -4
- reflex/components/recharts/polar.pyi +181 -144
- reflex/components/recharts/recharts.pyi +53 -33
- reflex/components/sonner/toast.py +17 -16
- reflex/components/sonner/toast.pyi +47 -36
- reflex/components/suneditor/editor.py +3 -2
- reflex/components/suneditor/editor.pyi +78 -55
- reflex/components/tags/cond_tag.py +4 -6
- reflex/components/tags/iter_tag.py +16 -28
- reflex/components/tags/match_tag.py +4 -6
- reflex/components/tags/tag.py +23 -40
- reflex/custom_components/custom_components.py +1 -3
- reflex/event.py +65 -113
- reflex/experimental/client_state.py +24 -25
- reflex/experimental/hooks.py +16 -16
- reflex/experimental/layout.py +5 -5
- reflex/experimental/layout.pyi +187 -136
- reflex/{vars → ivars}/__init__.py +2 -6
- reflex/{vars → ivars}/base.py +216 -599
- reflex/{vars → ivars}/function.py +19 -15
- reflex/{vars → ivars}/number.py +20 -41
- reflex/{vars → ivars}/object.py +30 -28
- reflex/{vars → ivars}/sequence.py +50 -53
- reflex/middleware/hydrate_middleware.py +0 -2
- reflex/middleware/middleware.py +3 -3
- reflex/state.py +82 -148
- reflex/style.py +22 -21
- reflex/utils/exceptions.py +0 -20
- reflex/utils/format.py +34 -54
- reflex/utils/imports.py +73 -16
- reflex/utils/prerequisites.py +15 -35
- reflex/utils/pyi_generator.py +8 -13
- reflex/utils/serializers.py +22 -12
- reflex/utils/telemetry.py +2 -3
- reflex/utils/types.py +5 -10
- reflex/vars.py +501 -0
- {reflex-0.6.0.dist-info → reflex-0.6.0a1.dist-info}/METADATA +5 -4
- reflex-0.6.0a1.dist-info/RECORD +384 -0
- reflex-0.6.0.dist-info/RECORD +0 -382
- {reflex-0.6.0.dist-info → reflex-0.6.0a1.dist-info}/LICENSE +0 -0
- {reflex-0.6.0.dist-info → reflex-0.6.0a1.dist-info}/WHEEL +0 -0
- {reflex-0.6.0.dist-info → reflex-0.6.0a1.dist-info}/entry_points.txt +0 -0
|
@@ -6,8 +6,9 @@
|
|
|
6
6
|
from typing import Any, Callable, Dict, Optional, Union, overload
|
|
7
7
|
|
|
8
8
|
from reflex.event import EventHandler, EventSpec
|
|
9
|
+
from reflex.ivars.base import ImmutableVar
|
|
9
10
|
from reflex.style import Style
|
|
10
|
-
from reflex.vars
|
|
11
|
+
from reflex.vars import Var
|
|
11
12
|
|
|
12
13
|
from .base import BaseHTML
|
|
13
14
|
|
|
@@ -17,81 +18,91 @@ class A(BaseHTML):
|
|
|
17
18
|
def create( # type: ignore
|
|
18
19
|
cls,
|
|
19
20
|
*children,
|
|
20
|
-
download: Optional[Union[Var[Union[bool, int, str]],
|
|
21
|
-
href: Optional[Union[Var[Union[bool, int, str]],
|
|
22
|
-
href_lang: Optional[Union[Var[Union[bool, int, str]],
|
|
23
|
-
media: Optional[Union[Var[Union[bool, int, str]],
|
|
24
|
-
ping: Optional[Union[Var[Union[bool, int, str]],
|
|
21
|
+
download: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
22
|
+
href: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
23
|
+
href_lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
24
|
+
media: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
25
|
+
ping: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
25
26
|
referrer_policy: Optional[
|
|
26
|
-
Union[Var[Union[bool, int, str]],
|
|
27
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
27
28
|
] = None,
|
|
28
|
-
rel: Optional[Union[Var[Union[bool, int, str]],
|
|
29
|
-
shape: Optional[Union[Var[Union[bool, int, str]],
|
|
30
|
-
target: Optional[Union[Var[Union[bool, int, str]],
|
|
31
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
29
|
+
rel: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
30
|
+
shape: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
31
|
+
target: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
32
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
32
33
|
auto_capitalize: Optional[
|
|
33
|
-
Union[Var[Union[bool, int, str]],
|
|
34
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
34
35
|
] = None,
|
|
35
36
|
content_editable: Optional[
|
|
36
|
-
Union[Var[Union[bool, int, str]],
|
|
37
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
37
38
|
] = None,
|
|
38
39
|
context_menu: Optional[
|
|
39
|
-
Union[Var[Union[bool, int, str]],
|
|
40
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
40
41
|
] = None,
|
|
41
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
42
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
42
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
43
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
43
44
|
enter_key_hint: Optional[
|
|
44
|
-
Union[Var[Union[bool, int, str]],
|
|
45
|
-
] = None,
|
|
46
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
47
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
48
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
49
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
50
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
51
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
52
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
53
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
54
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
45
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
46
|
+
] = None,
|
|
47
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
48
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
49
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
50
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
51
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
52
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
53
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
54
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
55
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
55
56
|
style: Optional[Style] = None,
|
|
56
57
|
key: Optional[Any] = None,
|
|
57
58
|
id: Optional[Any] = None,
|
|
58
59
|
class_name: Optional[Any] = None,
|
|
59
60
|
autofocus: Optional[bool] = None,
|
|
60
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
61
|
-
on_blur: Optional[
|
|
62
|
-
|
|
61
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
62
|
+
on_blur: Optional[
|
|
63
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
64
|
+
] = None,
|
|
65
|
+
on_click: Optional[
|
|
66
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
67
|
+
] = None,
|
|
63
68
|
on_context_menu: Optional[
|
|
64
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
69
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
65
70
|
] = None,
|
|
66
71
|
on_double_click: Optional[
|
|
67
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
72
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
73
|
+
] = None,
|
|
74
|
+
on_focus: Optional[
|
|
75
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
76
|
+
] = None,
|
|
77
|
+
on_mount: Optional[
|
|
78
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
68
79
|
] = None,
|
|
69
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
70
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
71
80
|
on_mouse_down: Optional[
|
|
72
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
81
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
73
82
|
] = None,
|
|
74
83
|
on_mouse_enter: Optional[
|
|
75
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
84
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
76
85
|
] = None,
|
|
77
86
|
on_mouse_leave: Optional[
|
|
78
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
87
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
79
88
|
] = None,
|
|
80
89
|
on_mouse_move: Optional[
|
|
81
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
90
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
82
91
|
] = None,
|
|
83
92
|
on_mouse_out: Optional[
|
|
84
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
93
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
85
94
|
] = None,
|
|
86
95
|
on_mouse_over: Optional[
|
|
87
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
96
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
88
97
|
] = None,
|
|
89
98
|
on_mouse_up: Optional[
|
|
90
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
99
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
100
|
+
] = None,
|
|
101
|
+
on_scroll: Optional[
|
|
102
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
91
103
|
] = None,
|
|
92
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
93
104
|
on_unmount: Optional[
|
|
94
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
105
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
95
106
|
] = None,
|
|
96
107
|
**props,
|
|
97
108
|
) -> "A":
|
|
@@ -143,70 +154,80 @@ class Abbr(BaseHTML):
|
|
|
143
154
|
def create( # type: ignore
|
|
144
155
|
cls,
|
|
145
156
|
*children,
|
|
146
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
157
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
147
158
|
auto_capitalize: Optional[
|
|
148
|
-
Union[Var[Union[bool, int, str]],
|
|
159
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
149
160
|
] = None,
|
|
150
161
|
content_editable: Optional[
|
|
151
|
-
Union[Var[Union[bool, int, str]],
|
|
162
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
152
163
|
] = None,
|
|
153
164
|
context_menu: Optional[
|
|
154
|
-
Union[Var[Union[bool, int, str]],
|
|
165
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
155
166
|
] = None,
|
|
156
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
157
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
167
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
168
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
158
169
|
enter_key_hint: Optional[
|
|
159
|
-
Union[Var[Union[bool, int, str]],
|
|
160
|
-
] = None,
|
|
161
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
162
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
163
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
164
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
165
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
166
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
167
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
168
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
169
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
170
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
171
|
+
] = None,
|
|
172
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
173
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
174
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
175
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
176
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
177
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
178
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
179
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
180
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
170
181
|
style: Optional[Style] = None,
|
|
171
182
|
key: Optional[Any] = None,
|
|
172
183
|
id: Optional[Any] = None,
|
|
173
184
|
class_name: Optional[Any] = None,
|
|
174
185
|
autofocus: Optional[bool] = None,
|
|
175
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
176
|
-
on_blur: Optional[
|
|
177
|
-
|
|
186
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
187
|
+
on_blur: Optional[
|
|
188
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
189
|
+
] = None,
|
|
190
|
+
on_click: Optional[
|
|
191
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
192
|
+
] = None,
|
|
178
193
|
on_context_menu: Optional[
|
|
179
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
194
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
180
195
|
] = None,
|
|
181
196
|
on_double_click: Optional[
|
|
182
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
197
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
198
|
+
] = None,
|
|
199
|
+
on_focus: Optional[
|
|
200
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
201
|
+
] = None,
|
|
202
|
+
on_mount: Optional[
|
|
203
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
183
204
|
] = None,
|
|
184
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
185
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
186
205
|
on_mouse_down: Optional[
|
|
187
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
206
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
188
207
|
] = None,
|
|
189
208
|
on_mouse_enter: Optional[
|
|
190
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
209
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
191
210
|
] = None,
|
|
192
211
|
on_mouse_leave: Optional[
|
|
193
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
212
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
194
213
|
] = None,
|
|
195
214
|
on_mouse_move: Optional[
|
|
196
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
215
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
197
216
|
] = None,
|
|
198
217
|
on_mouse_out: Optional[
|
|
199
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
218
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
200
219
|
] = None,
|
|
201
220
|
on_mouse_over: Optional[
|
|
202
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
221
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
203
222
|
] = None,
|
|
204
223
|
on_mouse_up: Optional[
|
|
205
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
224
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
225
|
+
] = None,
|
|
226
|
+
on_scroll: Optional[
|
|
227
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
206
228
|
] = None,
|
|
207
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
208
229
|
on_unmount: Optional[
|
|
209
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
230
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
210
231
|
] = None,
|
|
211
232
|
**props,
|
|
212
233
|
) -> "Abbr":
|
|
@@ -249,70 +270,80 @@ class B(BaseHTML):
|
|
|
249
270
|
def create( # type: ignore
|
|
250
271
|
cls,
|
|
251
272
|
*children,
|
|
252
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
273
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
253
274
|
auto_capitalize: Optional[
|
|
254
|
-
Union[Var[Union[bool, int, str]],
|
|
275
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
255
276
|
] = None,
|
|
256
277
|
content_editable: Optional[
|
|
257
|
-
Union[Var[Union[bool, int, str]],
|
|
278
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
258
279
|
] = None,
|
|
259
280
|
context_menu: Optional[
|
|
260
|
-
Union[Var[Union[bool, int, str]],
|
|
281
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
261
282
|
] = None,
|
|
262
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
263
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
283
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
284
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
264
285
|
enter_key_hint: Optional[
|
|
265
|
-
Union[Var[Union[bool, int, str]],
|
|
266
|
-
] = None,
|
|
267
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
268
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
269
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
270
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
271
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
272
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
273
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
274
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
275
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
286
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
287
|
+
] = None,
|
|
288
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
289
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
290
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
291
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
292
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
293
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
294
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
295
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
296
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
276
297
|
style: Optional[Style] = None,
|
|
277
298
|
key: Optional[Any] = None,
|
|
278
299
|
id: Optional[Any] = None,
|
|
279
300
|
class_name: Optional[Any] = None,
|
|
280
301
|
autofocus: Optional[bool] = None,
|
|
281
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
282
|
-
on_blur: Optional[
|
|
283
|
-
|
|
302
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
303
|
+
on_blur: Optional[
|
|
304
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
305
|
+
] = None,
|
|
306
|
+
on_click: Optional[
|
|
307
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
308
|
+
] = None,
|
|
284
309
|
on_context_menu: Optional[
|
|
285
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
310
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
286
311
|
] = None,
|
|
287
312
|
on_double_click: Optional[
|
|
288
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
313
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
314
|
+
] = None,
|
|
315
|
+
on_focus: Optional[
|
|
316
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
317
|
+
] = None,
|
|
318
|
+
on_mount: Optional[
|
|
319
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
289
320
|
] = None,
|
|
290
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
291
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
292
321
|
on_mouse_down: Optional[
|
|
293
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
322
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
294
323
|
] = None,
|
|
295
324
|
on_mouse_enter: Optional[
|
|
296
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
325
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
297
326
|
] = None,
|
|
298
327
|
on_mouse_leave: Optional[
|
|
299
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
328
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
300
329
|
] = None,
|
|
301
330
|
on_mouse_move: Optional[
|
|
302
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
331
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
303
332
|
] = None,
|
|
304
333
|
on_mouse_out: Optional[
|
|
305
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
334
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
306
335
|
] = None,
|
|
307
336
|
on_mouse_over: Optional[
|
|
308
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
337
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
309
338
|
] = None,
|
|
310
339
|
on_mouse_up: Optional[
|
|
311
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
340
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
341
|
+
] = None,
|
|
342
|
+
on_scroll: Optional[
|
|
343
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
312
344
|
] = None,
|
|
313
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
314
345
|
on_unmount: Optional[
|
|
315
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
346
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
316
347
|
] = None,
|
|
317
348
|
**props,
|
|
318
349
|
) -> "B":
|
|
@@ -355,70 +386,80 @@ class Bdi(BaseHTML):
|
|
|
355
386
|
def create( # type: ignore
|
|
356
387
|
cls,
|
|
357
388
|
*children,
|
|
358
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
389
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
359
390
|
auto_capitalize: Optional[
|
|
360
|
-
Union[Var[Union[bool, int, str]],
|
|
391
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
361
392
|
] = None,
|
|
362
393
|
content_editable: Optional[
|
|
363
|
-
Union[Var[Union[bool, int, str]],
|
|
394
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
364
395
|
] = None,
|
|
365
396
|
context_menu: Optional[
|
|
366
|
-
Union[Var[Union[bool, int, str]],
|
|
397
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
367
398
|
] = None,
|
|
368
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
369
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
399
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
400
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
370
401
|
enter_key_hint: Optional[
|
|
371
|
-
Union[Var[Union[bool, int, str]],
|
|
372
|
-
] = None,
|
|
373
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
374
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
375
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
376
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
377
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
378
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
379
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
380
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
381
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
402
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
403
|
+
] = None,
|
|
404
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
405
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
406
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
407
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
408
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
409
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
410
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
411
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
412
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
382
413
|
style: Optional[Style] = None,
|
|
383
414
|
key: Optional[Any] = None,
|
|
384
415
|
id: Optional[Any] = None,
|
|
385
416
|
class_name: Optional[Any] = None,
|
|
386
417
|
autofocus: Optional[bool] = None,
|
|
387
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
388
|
-
on_blur: Optional[
|
|
389
|
-
|
|
418
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
419
|
+
on_blur: Optional[
|
|
420
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
421
|
+
] = None,
|
|
422
|
+
on_click: Optional[
|
|
423
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
424
|
+
] = None,
|
|
390
425
|
on_context_menu: Optional[
|
|
391
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
426
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
392
427
|
] = None,
|
|
393
428
|
on_double_click: Optional[
|
|
394
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
429
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
430
|
+
] = None,
|
|
431
|
+
on_focus: Optional[
|
|
432
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
433
|
+
] = None,
|
|
434
|
+
on_mount: Optional[
|
|
435
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
395
436
|
] = None,
|
|
396
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
397
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
398
437
|
on_mouse_down: Optional[
|
|
399
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
438
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
400
439
|
] = None,
|
|
401
440
|
on_mouse_enter: Optional[
|
|
402
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
441
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
403
442
|
] = None,
|
|
404
443
|
on_mouse_leave: Optional[
|
|
405
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
444
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
406
445
|
] = None,
|
|
407
446
|
on_mouse_move: Optional[
|
|
408
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
447
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
409
448
|
] = None,
|
|
410
449
|
on_mouse_out: Optional[
|
|
411
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
450
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
412
451
|
] = None,
|
|
413
452
|
on_mouse_over: Optional[
|
|
414
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
453
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
415
454
|
] = None,
|
|
416
455
|
on_mouse_up: Optional[
|
|
417
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
456
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
457
|
+
] = None,
|
|
458
|
+
on_scroll: Optional[
|
|
459
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
418
460
|
] = None,
|
|
419
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
420
461
|
on_unmount: Optional[
|
|
421
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
462
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
422
463
|
] = None,
|
|
423
464
|
**props,
|
|
424
465
|
) -> "Bdi":
|
|
@@ -461,70 +502,80 @@ class Bdo(BaseHTML):
|
|
|
461
502
|
def create( # type: ignore
|
|
462
503
|
cls,
|
|
463
504
|
*children,
|
|
464
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
505
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
465
506
|
auto_capitalize: Optional[
|
|
466
|
-
Union[Var[Union[bool, int, str]],
|
|
507
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
467
508
|
] = None,
|
|
468
509
|
content_editable: Optional[
|
|
469
|
-
Union[Var[Union[bool, int, str]],
|
|
510
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
470
511
|
] = None,
|
|
471
512
|
context_menu: Optional[
|
|
472
|
-
Union[Var[Union[bool, int, str]],
|
|
513
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
473
514
|
] = None,
|
|
474
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
475
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
515
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
516
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
476
517
|
enter_key_hint: Optional[
|
|
477
|
-
Union[Var[Union[bool, int, str]],
|
|
478
|
-
] = None,
|
|
479
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
480
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
481
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
482
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
483
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
484
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
485
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
486
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
487
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
518
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
519
|
+
] = None,
|
|
520
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
521
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
522
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
523
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
524
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
525
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
526
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
527
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
528
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
488
529
|
style: Optional[Style] = None,
|
|
489
530
|
key: Optional[Any] = None,
|
|
490
531
|
id: Optional[Any] = None,
|
|
491
532
|
class_name: Optional[Any] = None,
|
|
492
533
|
autofocus: Optional[bool] = None,
|
|
493
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
494
|
-
on_blur: Optional[
|
|
495
|
-
|
|
534
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
535
|
+
on_blur: Optional[
|
|
536
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
537
|
+
] = None,
|
|
538
|
+
on_click: Optional[
|
|
539
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
540
|
+
] = None,
|
|
496
541
|
on_context_menu: Optional[
|
|
497
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
542
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
498
543
|
] = None,
|
|
499
544
|
on_double_click: Optional[
|
|
500
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
545
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
546
|
+
] = None,
|
|
547
|
+
on_focus: Optional[
|
|
548
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
549
|
+
] = None,
|
|
550
|
+
on_mount: Optional[
|
|
551
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
501
552
|
] = None,
|
|
502
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
503
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
504
553
|
on_mouse_down: Optional[
|
|
505
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
554
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
506
555
|
] = None,
|
|
507
556
|
on_mouse_enter: Optional[
|
|
508
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
557
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
509
558
|
] = None,
|
|
510
559
|
on_mouse_leave: Optional[
|
|
511
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
560
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
512
561
|
] = None,
|
|
513
562
|
on_mouse_move: Optional[
|
|
514
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
563
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
515
564
|
] = None,
|
|
516
565
|
on_mouse_out: Optional[
|
|
517
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
566
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
518
567
|
] = None,
|
|
519
568
|
on_mouse_over: Optional[
|
|
520
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
569
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
521
570
|
] = None,
|
|
522
571
|
on_mouse_up: Optional[
|
|
523
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
572
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
573
|
+
] = None,
|
|
574
|
+
on_scroll: Optional[
|
|
575
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
524
576
|
] = None,
|
|
525
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
526
577
|
on_unmount: Optional[
|
|
527
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
578
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
528
579
|
] = None,
|
|
529
580
|
**props,
|
|
530
581
|
) -> "Bdo":
|
|
@@ -567,70 +618,80 @@ class Br(BaseHTML):
|
|
|
567
618
|
def create( # type: ignore
|
|
568
619
|
cls,
|
|
569
620
|
*children,
|
|
570
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
621
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
571
622
|
auto_capitalize: Optional[
|
|
572
|
-
Union[Var[Union[bool, int, str]],
|
|
623
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
573
624
|
] = None,
|
|
574
625
|
content_editable: Optional[
|
|
575
|
-
Union[Var[Union[bool, int, str]],
|
|
626
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
576
627
|
] = None,
|
|
577
628
|
context_menu: Optional[
|
|
578
|
-
Union[Var[Union[bool, int, str]],
|
|
629
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
579
630
|
] = None,
|
|
580
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
581
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
631
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
632
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
582
633
|
enter_key_hint: Optional[
|
|
583
|
-
Union[Var[Union[bool, int, str]],
|
|
584
|
-
] = None,
|
|
585
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
586
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
587
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
588
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
589
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
590
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
591
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
592
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
593
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
634
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
635
|
+
] = None,
|
|
636
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
637
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
638
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
639
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
640
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
641
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
642
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
643
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
644
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
594
645
|
style: Optional[Style] = None,
|
|
595
646
|
key: Optional[Any] = None,
|
|
596
647
|
id: Optional[Any] = None,
|
|
597
648
|
class_name: Optional[Any] = None,
|
|
598
649
|
autofocus: Optional[bool] = None,
|
|
599
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
600
|
-
on_blur: Optional[
|
|
601
|
-
|
|
650
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
651
|
+
on_blur: Optional[
|
|
652
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
653
|
+
] = None,
|
|
654
|
+
on_click: Optional[
|
|
655
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
656
|
+
] = None,
|
|
602
657
|
on_context_menu: Optional[
|
|
603
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
658
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
604
659
|
] = None,
|
|
605
660
|
on_double_click: Optional[
|
|
606
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
661
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
662
|
+
] = None,
|
|
663
|
+
on_focus: Optional[
|
|
664
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
665
|
+
] = None,
|
|
666
|
+
on_mount: Optional[
|
|
667
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
607
668
|
] = None,
|
|
608
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
609
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
610
669
|
on_mouse_down: Optional[
|
|
611
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
670
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
612
671
|
] = None,
|
|
613
672
|
on_mouse_enter: Optional[
|
|
614
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
673
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
615
674
|
] = None,
|
|
616
675
|
on_mouse_leave: Optional[
|
|
617
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
676
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
618
677
|
] = None,
|
|
619
678
|
on_mouse_move: Optional[
|
|
620
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
679
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
621
680
|
] = None,
|
|
622
681
|
on_mouse_out: Optional[
|
|
623
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
682
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
624
683
|
] = None,
|
|
625
684
|
on_mouse_over: Optional[
|
|
626
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
685
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
627
686
|
] = None,
|
|
628
687
|
on_mouse_up: Optional[
|
|
629
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
688
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
689
|
+
] = None,
|
|
690
|
+
on_scroll: Optional[
|
|
691
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
630
692
|
] = None,
|
|
631
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
632
693
|
on_unmount: Optional[
|
|
633
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
694
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
634
695
|
] = None,
|
|
635
696
|
**props,
|
|
636
697
|
) -> "Br":
|
|
@@ -673,70 +734,80 @@ class Cite(BaseHTML):
|
|
|
673
734
|
def create( # type: ignore
|
|
674
735
|
cls,
|
|
675
736
|
*children,
|
|
676
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
737
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
677
738
|
auto_capitalize: Optional[
|
|
678
|
-
Union[Var[Union[bool, int, str]],
|
|
739
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
679
740
|
] = None,
|
|
680
741
|
content_editable: Optional[
|
|
681
|
-
Union[Var[Union[bool, int, str]],
|
|
742
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
682
743
|
] = None,
|
|
683
744
|
context_menu: Optional[
|
|
684
|
-
Union[Var[Union[bool, int, str]],
|
|
745
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
685
746
|
] = None,
|
|
686
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
687
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
747
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
748
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
688
749
|
enter_key_hint: Optional[
|
|
689
|
-
Union[Var[Union[bool, int, str]],
|
|
690
|
-
] = None,
|
|
691
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
692
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
693
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
694
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
695
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
696
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
697
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
698
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
699
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
750
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
751
|
+
] = None,
|
|
752
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
753
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
754
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
755
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
756
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
757
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
758
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
759
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
760
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
700
761
|
style: Optional[Style] = None,
|
|
701
762
|
key: Optional[Any] = None,
|
|
702
763
|
id: Optional[Any] = None,
|
|
703
764
|
class_name: Optional[Any] = None,
|
|
704
765
|
autofocus: Optional[bool] = None,
|
|
705
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
706
|
-
on_blur: Optional[
|
|
707
|
-
|
|
766
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
767
|
+
on_blur: Optional[
|
|
768
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
769
|
+
] = None,
|
|
770
|
+
on_click: Optional[
|
|
771
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
772
|
+
] = None,
|
|
708
773
|
on_context_menu: Optional[
|
|
709
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
774
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
710
775
|
] = None,
|
|
711
776
|
on_double_click: Optional[
|
|
712
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
777
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
778
|
+
] = None,
|
|
779
|
+
on_focus: Optional[
|
|
780
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
781
|
+
] = None,
|
|
782
|
+
on_mount: Optional[
|
|
783
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
713
784
|
] = None,
|
|
714
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
715
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
716
785
|
on_mouse_down: Optional[
|
|
717
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
786
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
718
787
|
] = None,
|
|
719
788
|
on_mouse_enter: Optional[
|
|
720
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
789
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
721
790
|
] = None,
|
|
722
791
|
on_mouse_leave: Optional[
|
|
723
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
792
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
724
793
|
] = None,
|
|
725
794
|
on_mouse_move: Optional[
|
|
726
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
795
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
727
796
|
] = None,
|
|
728
797
|
on_mouse_out: Optional[
|
|
729
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
798
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
730
799
|
] = None,
|
|
731
800
|
on_mouse_over: Optional[
|
|
732
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
801
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
733
802
|
] = None,
|
|
734
803
|
on_mouse_up: Optional[
|
|
735
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
804
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
805
|
+
] = None,
|
|
806
|
+
on_scroll: Optional[
|
|
807
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
736
808
|
] = None,
|
|
737
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
738
809
|
on_unmount: Optional[
|
|
739
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
810
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
740
811
|
] = None,
|
|
741
812
|
**props,
|
|
742
813
|
) -> "Cite":
|
|
@@ -779,70 +850,80 @@ class Code(BaseHTML):
|
|
|
779
850
|
def create( # type: ignore
|
|
780
851
|
cls,
|
|
781
852
|
*children,
|
|
782
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
853
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
783
854
|
auto_capitalize: Optional[
|
|
784
|
-
Union[Var[Union[bool, int, str]],
|
|
855
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
785
856
|
] = None,
|
|
786
857
|
content_editable: Optional[
|
|
787
|
-
Union[Var[Union[bool, int, str]],
|
|
858
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
788
859
|
] = None,
|
|
789
860
|
context_menu: Optional[
|
|
790
|
-
Union[Var[Union[bool, int, str]],
|
|
861
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
791
862
|
] = None,
|
|
792
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
793
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
863
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
864
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
794
865
|
enter_key_hint: Optional[
|
|
795
|
-
Union[Var[Union[bool, int, str]],
|
|
796
|
-
] = None,
|
|
797
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
798
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
799
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
800
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
801
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
802
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
803
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
804
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
805
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
866
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
867
|
+
] = None,
|
|
868
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
869
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
870
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
871
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
872
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
873
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
874
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
875
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
876
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
806
877
|
style: Optional[Style] = None,
|
|
807
878
|
key: Optional[Any] = None,
|
|
808
879
|
id: Optional[Any] = None,
|
|
809
880
|
class_name: Optional[Any] = None,
|
|
810
881
|
autofocus: Optional[bool] = None,
|
|
811
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
812
|
-
on_blur: Optional[
|
|
813
|
-
|
|
882
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
883
|
+
on_blur: Optional[
|
|
884
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
885
|
+
] = None,
|
|
886
|
+
on_click: Optional[
|
|
887
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
888
|
+
] = None,
|
|
814
889
|
on_context_menu: Optional[
|
|
815
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
890
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
816
891
|
] = None,
|
|
817
892
|
on_double_click: Optional[
|
|
818
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
893
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
894
|
+
] = None,
|
|
895
|
+
on_focus: Optional[
|
|
896
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
897
|
+
] = None,
|
|
898
|
+
on_mount: Optional[
|
|
899
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
819
900
|
] = None,
|
|
820
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
821
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
822
901
|
on_mouse_down: Optional[
|
|
823
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
902
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
824
903
|
] = None,
|
|
825
904
|
on_mouse_enter: Optional[
|
|
826
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
905
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
827
906
|
] = None,
|
|
828
907
|
on_mouse_leave: Optional[
|
|
829
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
908
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
830
909
|
] = None,
|
|
831
910
|
on_mouse_move: Optional[
|
|
832
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
911
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
833
912
|
] = None,
|
|
834
913
|
on_mouse_out: Optional[
|
|
835
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
914
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
836
915
|
] = None,
|
|
837
916
|
on_mouse_over: Optional[
|
|
838
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
917
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
839
918
|
] = None,
|
|
840
919
|
on_mouse_up: Optional[
|
|
841
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
920
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
921
|
+
] = None,
|
|
922
|
+
on_scroll: Optional[
|
|
923
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
842
924
|
] = None,
|
|
843
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
844
925
|
on_unmount: Optional[
|
|
845
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
926
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
846
927
|
] = None,
|
|
847
928
|
**props,
|
|
848
929
|
) -> "Code":
|
|
@@ -885,71 +966,81 @@ class Data(BaseHTML):
|
|
|
885
966
|
def create( # type: ignore
|
|
886
967
|
cls,
|
|
887
968
|
*children,
|
|
888
|
-
value: Optional[Union[Var[Union[bool, int, str]],
|
|
889
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
969
|
+
value: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
970
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
890
971
|
auto_capitalize: Optional[
|
|
891
|
-
Union[Var[Union[bool, int, str]],
|
|
972
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
892
973
|
] = None,
|
|
893
974
|
content_editable: Optional[
|
|
894
|
-
Union[Var[Union[bool, int, str]],
|
|
975
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
895
976
|
] = None,
|
|
896
977
|
context_menu: Optional[
|
|
897
|
-
Union[Var[Union[bool, int, str]],
|
|
978
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
898
979
|
] = None,
|
|
899
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
900
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
980
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
981
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
901
982
|
enter_key_hint: Optional[
|
|
902
|
-
Union[Var[Union[bool, int, str]],
|
|
903
|
-
] = None,
|
|
904
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
905
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
906
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
907
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
908
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
909
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
910
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
911
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
912
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
983
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
984
|
+
] = None,
|
|
985
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
986
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
987
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
988
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
989
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
990
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
991
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
992
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
993
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
913
994
|
style: Optional[Style] = None,
|
|
914
995
|
key: Optional[Any] = None,
|
|
915
996
|
id: Optional[Any] = None,
|
|
916
997
|
class_name: Optional[Any] = None,
|
|
917
998
|
autofocus: Optional[bool] = None,
|
|
918
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
919
|
-
on_blur: Optional[
|
|
920
|
-
|
|
999
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
1000
|
+
on_blur: Optional[
|
|
1001
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1002
|
+
] = None,
|
|
1003
|
+
on_click: Optional[
|
|
1004
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1005
|
+
] = None,
|
|
921
1006
|
on_context_menu: Optional[
|
|
922
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1007
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
923
1008
|
] = None,
|
|
924
1009
|
on_double_click: Optional[
|
|
925
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1010
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1011
|
+
] = None,
|
|
1012
|
+
on_focus: Optional[
|
|
1013
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1014
|
+
] = None,
|
|
1015
|
+
on_mount: Optional[
|
|
1016
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
926
1017
|
] = None,
|
|
927
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
928
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
929
1018
|
on_mouse_down: Optional[
|
|
930
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1019
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
931
1020
|
] = None,
|
|
932
1021
|
on_mouse_enter: Optional[
|
|
933
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1022
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
934
1023
|
] = None,
|
|
935
1024
|
on_mouse_leave: Optional[
|
|
936
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1025
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
937
1026
|
] = None,
|
|
938
1027
|
on_mouse_move: Optional[
|
|
939
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1028
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
940
1029
|
] = None,
|
|
941
1030
|
on_mouse_out: Optional[
|
|
942
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1031
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
943
1032
|
] = None,
|
|
944
1033
|
on_mouse_over: Optional[
|
|
945
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1034
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
946
1035
|
] = None,
|
|
947
1036
|
on_mouse_up: Optional[
|
|
948
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1037
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1038
|
+
] = None,
|
|
1039
|
+
on_scroll: Optional[
|
|
1040
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
949
1041
|
] = None,
|
|
950
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
951
1042
|
on_unmount: Optional[
|
|
952
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1043
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
953
1044
|
] = None,
|
|
954
1045
|
**props,
|
|
955
1046
|
) -> "Data":
|
|
@@ -993,70 +1084,80 @@ class Dfn(BaseHTML):
|
|
|
993
1084
|
def create( # type: ignore
|
|
994
1085
|
cls,
|
|
995
1086
|
*children,
|
|
996
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
1087
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
997
1088
|
auto_capitalize: Optional[
|
|
998
|
-
Union[Var[Union[bool, int, str]],
|
|
1089
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
999
1090
|
] = None,
|
|
1000
1091
|
content_editable: Optional[
|
|
1001
|
-
Union[Var[Union[bool, int, str]],
|
|
1092
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1002
1093
|
] = None,
|
|
1003
1094
|
context_menu: Optional[
|
|
1004
|
-
Union[Var[Union[bool, int, str]],
|
|
1095
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1005
1096
|
] = None,
|
|
1006
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
1007
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
1097
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1098
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1008
1099
|
enter_key_hint: Optional[
|
|
1009
|
-
Union[Var[Union[bool, int, str]],
|
|
1010
|
-
] = None,
|
|
1011
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
1012
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
1013
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
1014
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
1015
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
1016
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
1017
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
1018
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
1019
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
1100
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1101
|
+
] = None,
|
|
1102
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1103
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1104
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1105
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1106
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1107
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1108
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1109
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1110
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1020
1111
|
style: Optional[Style] = None,
|
|
1021
1112
|
key: Optional[Any] = None,
|
|
1022
1113
|
id: Optional[Any] = None,
|
|
1023
1114
|
class_name: Optional[Any] = None,
|
|
1024
1115
|
autofocus: Optional[bool] = None,
|
|
1025
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
1026
|
-
on_blur: Optional[
|
|
1027
|
-
|
|
1116
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
1117
|
+
on_blur: Optional[
|
|
1118
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1119
|
+
] = None,
|
|
1120
|
+
on_click: Optional[
|
|
1121
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1122
|
+
] = None,
|
|
1028
1123
|
on_context_menu: Optional[
|
|
1029
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1124
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1030
1125
|
] = None,
|
|
1031
1126
|
on_double_click: Optional[
|
|
1032
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1127
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1128
|
+
] = None,
|
|
1129
|
+
on_focus: Optional[
|
|
1130
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1131
|
+
] = None,
|
|
1132
|
+
on_mount: Optional[
|
|
1133
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1033
1134
|
] = None,
|
|
1034
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1035
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1036
1135
|
on_mouse_down: Optional[
|
|
1037
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1136
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1038
1137
|
] = None,
|
|
1039
1138
|
on_mouse_enter: Optional[
|
|
1040
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1139
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1041
1140
|
] = None,
|
|
1042
1141
|
on_mouse_leave: Optional[
|
|
1043
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1142
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1044
1143
|
] = None,
|
|
1045
1144
|
on_mouse_move: Optional[
|
|
1046
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1145
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1047
1146
|
] = None,
|
|
1048
1147
|
on_mouse_out: Optional[
|
|
1049
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1148
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1050
1149
|
] = None,
|
|
1051
1150
|
on_mouse_over: Optional[
|
|
1052
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1151
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1053
1152
|
] = None,
|
|
1054
1153
|
on_mouse_up: Optional[
|
|
1055
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1154
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1155
|
+
] = None,
|
|
1156
|
+
on_scroll: Optional[
|
|
1157
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1056
1158
|
] = None,
|
|
1057
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1058
1159
|
on_unmount: Optional[
|
|
1059
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1160
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1060
1161
|
] = None,
|
|
1061
1162
|
**props,
|
|
1062
1163
|
) -> "Dfn":
|
|
@@ -1099,70 +1200,80 @@ class Em(BaseHTML):
|
|
|
1099
1200
|
def create( # type: ignore
|
|
1100
1201
|
cls,
|
|
1101
1202
|
*children,
|
|
1102
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
1203
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1103
1204
|
auto_capitalize: Optional[
|
|
1104
|
-
Union[Var[Union[bool, int, str]],
|
|
1205
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1105
1206
|
] = None,
|
|
1106
1207
|
content_editable: Optional[
|
|
1107
|
-
Union[Var[Union[bool, int, str]],
|
|
1208
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1108
1209
|
] = None,
|
|
1109
1210
|
context_menu: Optional[
|
|
1110
|
-
Union[Var[Union[bool, int, str]],
|
|
1211
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1111
1212
|
] = None,
|
|
1112
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
1113
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
1213
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1214
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1114
1215
|
enter_key_hint: Optional[
|
|
1115
|
-
Union[Var[Union[bool, int, str]],
|
|
1116
|
-
] = None,
|
|
1117
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
1118
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
1119
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
1120
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
1121
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
1122
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
1123
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
1124
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
1125
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
1216
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1217
|
+
] = None,
|
|
1218
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1219
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1220
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1221
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1222
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1223
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1224
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1225
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1226
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1126
1227
|
style: Optional[Style] = None,
|
|
1127
1228
|
key: Optional[Any] = None,
|
|
1128
1229
|
id: Optional[Any] = None,
|
|
1129
1230
|
class_name: Optional[Any] = None,
|
|
1130
1231
|
autofocus: Optional[bool] = None,
|
|
1131
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
1132
|
-
on_blur: Optional[
|
|
1133
|
-
|
|
1232
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
1233
|
+
on_blur: Optional[
|
|
1234
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1235
|
+
] = None,
|
|
1236
|
+
on_click: Optional[
|
|
1237
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1238
|
+
] = None,
|
|
1134
1239
|
on_context_menu: Optional[
|
|
1135
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1240
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1136
1241
|
] = None,
|
|
1137
1242
|
on_double_click: Optional[
|
|
1138
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1243
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1244
|
+
] = None,
|
|
1245
|
+
on_focus: Optional[
|
|
1246
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1247
|
+
] = None,
|
|
1248
|
+
on_mount: Optional[
|
|
1249
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1139
1250
|
] = None,
|
|
1140
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1141
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1142
1251
|
on_mouse_down: Optional[
|
|
1143
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1252
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1144
1253
|
] = None,
|
|
1145
1254
|
on_mouse_enter: Optional[
|
|
1146
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1255
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1147
1256
|
] = None,
|
|
1148
1257
|
on_mouse_leave: Optional[
|
|
1149
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1258
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1150
1259
|
] = None,
|
|
1151
1260
|
on_mouse_move: Optional[
|
|
1152
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1261
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1153
1262
|
] = None,
|
|
1154
1263
|
on_mouse_out: Optional[
|
|
1155
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1264
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1156
1265
|
] = None,
|
|
1157
1266
|
on_mouse_over: Optional[
|
|
1158
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1267
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1159
1268
|
] = None,
|
|
1160
1269
|
on_mouse_up: Optional[
|
|
1161
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1270
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1271
|
+
] = None,
|
|
1272
|
+
on_scroll: Optional[
|
|
1273
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1162
1274
|
] = None,
|
|
1163
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1164
1275
|
on_unmount: Optional[
|
|
1165
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1276
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1166
1277
|
] = None,
|
|
1167
1278
|
**props,
|
|
1168
1279
|
) -> "Em":
|
|
@@ -1205,70 +1316,80 @@ class I(BaseHTML):
|
|
|
1205
1316
|
def create( # type: ignore
|
|
1206
1317
|
cls,
|
|
1207
1318
|
*children,
|
|
1208
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
1319
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1209
1320
|
auto_capitalize: Optional[
|
|
1210
|
-
Union[Var[Union[bool, int, str]],
|
|
1321
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1211
1322
|
] = None,
|
|
1212
1323
|
content_editable: Optional[
|
|
1213
|
-
Union[Var[Union[bool, int, str]],
|
|
1324
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1214
1325
|
] = None,
|
|
1215
1326
|
context_menu: Optional[
|
|
1216
|
-
Union[Var[Union[bool, int, str]],
|
|
1327
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1217
1328
|
] = None,
|
|
1218
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
1219
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
1329
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1330
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1220
1331
|
enter_key_hint: Optional[
|
|
1221
|
-
Union[Var[Union[bool, int, str]],
|
|
1222
|
-
] = None,
|
|
1223
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
1224
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
1225
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
1226
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
1227
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
1228
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
1229
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
1230
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
1231
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
1332
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1333
|
+
] = None,
|
|
1334
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1335
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1336
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1337
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1338
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1339
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1340
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1341
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1342
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1232
1343
|
style: Optional[Style] = None,
|
|
1233
1344
|
key: Optional[Any] = None,
|
|
1234
1345
|
id: Optional[Any] = None,
|
|
1235
1346
|
class_name: Optional[Any] = None,
|
|
1236
1347
|
autofocus: Optional[bool] = None,
|
|
1237
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
1238
|
-
on_blur: Optional[
|
|
1239
|
-
|
|
1348
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
1349
|
+
on_blur: Optional[
|
|
1350
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1351
|
+
] = None,
|
|
1352
|
+
on_click: Optional[
|
|
1353
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1354
|
+
] = None,
|
|
1240
1355
|
on_context_menu: Optional[
|
|
1241
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1356
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1242
1357
|
] = None,
|
|
1243
1358
|
on_double_click: Optional[
|
|
1244
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1359
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1360
|
+
] = None,
|
|
1361
|
+
on_focus: Optional[
|
|
1362
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1363
|
+
] = None,
|
|
1364
|
+
on_mount: Optional[
|
|
1365
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1245
1366
|
] = None,
|
|
1246
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1247
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1248
1367
|
on_mouse_down: Optional[
|
|
1249
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1368
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1250
1369
|
] = None,
|
|
1251
1370
|
on_mouse_enter: Optional[
|
|
1252
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1371
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1253
1372
|
] = None,
|
|
1254
1373
|
on_mouse_leave: Optional[
|
|
1255
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1374
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1256
1375
|
] = None,
|
|
1257
1376
|
on_mouse_move: Optional[
|
|
1258
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1377
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1259
1378
|
] = None,
|
|
1260
1379
|
on_mouse_out: Optional[
|
|
1261
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1380
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1262
1381
|
] = None,
|
|
1263
1382
|
on_mouse_over: Optional[
|
|
1264
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1383
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1265
1384
|
] = None,
|
|
1266
1385
|
on_mouse_up: Optional[
|
|
1267
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1386
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1387
|
+
] = None,
|
|
1388
|
+
on_scroll: Optional[
|
|
1389
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1268
1390
|
] = None,
|
|
1269
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1270
1391
|
on_unmount: Optional[
|
|
1271
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1392
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1272
1393
|
] = None,
|
|
1273
1394
|
**props,
|
|
1274
1395
|
) -> "I":
|
|
@@ -1311,70 +1432,80 @@ class Kbd(BaseHTML):
|
|
|
1311
1432
|
def create( # type: ignore
|
|
1312
1433
|
cls,
|
|
1313
1434
|
*children,
|
|
1314
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
1435
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1315
1436
|
auto_capitalize: Optional[
|
|
1316
|
-
Union[Var[Union[bool, int, str]],
|
|
1437
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1317
1438
|
] = None,
|
|
1318
1439
|
content_editable: Optional[
|
|
1319
|
-
Union[Var[Union[bool, int, str]],
|
|
1440
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1320
1441
|
] = None,
|
|
1321
1442
|
context_menu: Optional[
|
|
1322
|
-
Union[Var[Union[bool, int, str]],
|
|
1443
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1323
1444
|
] = None,
|
|
1324
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
1325
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
1445
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1446
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1326
1447
|
enter_key_hint: Optional[
|
|
1327
|
-
Union[Var[Union[bool, int, str]],
|
|
1328
|
-
] = None,
|
|
1329
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
1330
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
1331
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
1332
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
1333
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
1334
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
1335
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
1336
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
1337
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
1448
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1449
|
+
] = None,
|
|
1450
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1451
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1452
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1453
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1454
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1455
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1456
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1457
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1458
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1338
1459
|
style: Optional[Style] = None,
|
|
1339
1460
|
key: Optional[Any] = None,
|
|
1340
1461
|
id: Optional[Any] = None,
|
|
1341
1462
|
class_name: Optional[Any] = None,
|
|
1342
1463
|
autofocus: Optional[bool] = None,
|
|
1343
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
1344
|
-
on_blur: Optional[
|
|
1345
|
-
|
|
1464
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
1465
|
+
on_blur: Optional[
|
|
1466
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1467
|
+
] = None,
|
|
1468
|
+
on_click: Optional[
|
|
1469
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1470
|
+
] = None,
|
|
1346
1471
|
on_context_menu: Optional[
|
|
1347
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1472
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1348
1473
|
] = None,
|
|
1349
1474
|
on_double_click: Optional[
|
|
1350
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1475
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1476
|
+
] = None,
|
|
1477
|
+
on_focus: Optional[
|
|
1478
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1479
|
+
] = None,
|
|
1480
|
+
on_mount: Optional[
|
|
1481
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1351
1482
|
] = None,
|
|
1352
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1353
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1354
1483
|
on_mouse_down: Optional[
|
|
1355
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1484
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1356
1485
|
] = None,
|
|
1357
1486
|
on_mouse_enter: Optional[
|
|
1358
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1487
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1359
1488
|
] = None,
|
|
1360
1489
|
on_mouse_leave: Optional[
|
|
1361
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1490
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1362
1491
|
] = None,
|
|
1363
1492
|
on_mouse_move: Optional[
|
|
1364
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1493
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1365
1494
|
] = None,
|
|
1366
1495
|
on_mouse_out: Optional[
|
|
1367
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1496
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1368
1497
|
] = None,
|
|
1369
1498
|
on_mouse_over: Optional[
|
|
1370
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1499
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1371
1500
|
] = None,
|
|
1372
1501
|
on_mouse_up: Optional[
|
|
1373
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1502
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1503
|
+
] = None,
|
|
1504
|
+
on_scroll: Optional[
|
|
1505
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1374
1506
|
] = None,
|
|
1375
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1376
1507
|
on_unmount: Optional[
|
|
1377
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1508
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1378
1509
|
] = None,
|
|
1379
1510
|
**props,
|
|
1380
1511
|
) -> "Kbd":
|
|
@@ -1417,70 +1548,80 @@ class Mark(BaseHTML):
|
|
|
1417
1548
|
def create( # type: ignore
|
|
1418
1549
|
cls,
|
|
1419
1550
|
*children,
|
|
1420
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
1551
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1421
1552
|
auto_capitalize: Optional[
|
|
1422
|
-
Union[Var[Union[bool, int, str]],
|
|
1553
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1423
1554
|
] = None,
|
|
1424
1555
|
content_editable: Optional[
|
|
1425
|
-
Union[Var[Union[bool, int, str]],
|
|
1556
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1426
1557
|
] = None,
|
|
1427
1558
|
context_menu: Optional[
|
|
1428
|
-
Union[Var[Union[bool, int, str]],
|
|
1559
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1429
1560
|
] = None,
|
|
1430
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
1431
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
1561
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1562
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1432
1563
|
enter_key_hint: Optional[
|
|
1433
|
-
Union[Var[Union[bool, int, str]],
|
|
1434
|
-
] = None,
|
|
1435
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
1436
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
1437
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
1438
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
1439
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
1440
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
1441
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
1442
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
1443
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
1564
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1565
|
+
] = None,
|
|
1566
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1567
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1568
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1569
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1570
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1571
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1572
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1573
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1574
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1444
1575
|
style: Optional[Style] = None,
|
|
1445
1576
|
key: Optional[Any] = None,
|
|
1446
1577
|
id: Optional[Any] = None,
|
|
1447
1578
|
class_name: Optional[Any] = None,
|
|
1448
1579
|
autofocus: Optional[bool] = None,
|
|
1449
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
1450
|
-
on_blur: Optional[
|
|
1451
|
-
|
|
1580
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
1581
|
+
on_blur: Optional[
|
|
1582
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1583
|
+
] = None,
|
|
1584
|
+
on_click: Optional[
|
|
1585
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1586
|
+
] = None,
|
|
1452
1587
|
on_context_menu: Optional[
|
|
1453
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1588
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1454
1589
|
] = None,
|
|
1455
1590
|
on_double_click: Optional[
|
|
1456
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1591
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1592
|
+
] = None,
|
|
1593
|
+
on_focus: Optional[
|
|
1594
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1595
|
+
] = None,
|
|
1596
|
+
on_mount: Optional[
|
|
1597
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1457
1598
|
] = None,
|
|
1458
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1459
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1460
1599
|
on_mouse_down: Optional[
|
|
1461
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1600
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1462
1601
|
] = None,
|
|
1463
1602
|
on_mouse_enter: Optional[
|
|
1464
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1603
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1465
1604
|
] = None,
|
|
1466
1605
|
on_mouse_leave: Optional[
|
|
1467
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1606
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1468
1607
|
] = None,
|
|
1469
1608
|
on_mouse_move: Optional[
|
|
1470
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1609
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1471
1610
|
] = None,
|
|
1472
1611
|
on_mouse_out: Optional[
|
|
1473
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1612
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1474
1613
|
] = None,
|
|
1475
1614
|
on_mouse_over: Optional[
|
|
1476
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1615
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1477
1616
|
] = None,
|
|
1478
1617
|
on_mouse_up: Optional[
|
|
1479
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1618
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1619
|
+
] = None,
|
|
1620
|
+
on_scroll: Optional[
|
|
1621
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1480
1622
|
] = None,
|
|
1481
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1482
1623
|
on_unmount: Optional[
|
|
1483
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1624
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1484
1625
|
] = None,
|
|
1485
1626
|
**props,
|
|
1486
1627
|
) -> "Mark":
|
|
@@ -1523,71 +1664,81 @@ class Q(BaseHTML):
|
|
|
1523
1664
|
def create( # type: ignore
|
|
1524
1665
|
cls,
|
|
1525
1666
|
*children,
|
|
1526
|
-
cite: Optional[Union[Var[Union[bool, int, str]],
|
|
1527
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
1667
|
+
cite: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1668
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1528
1669
|
auto_capitalize: Optional[
|
|
1529
|
-
Union[Var[Union[bool, int, str]],
|
|
1670
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1530
1671
|
] = None,
|
|
1531
1672
|
content_editable: Optional[
|
|
1532
|
-
Union[Var[Union[bool, int, str]],
|
|
1673
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1533
1674
|
] = None,
|
|
1534
1675
|
context_menu: Optional[
|
|
1535
|
-
Union[Var[Union[bool, int, str]],
|
|
1676
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1536
1677
|
] = None,
|
|
1537
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
1538
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
1678
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1679
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1539
1680
|
enter_key_hint: Optional[
|
|
1540
|
-
Union[Var[Union[bool, int, str]],
|
|
1541
|
-
] = None,
|
|
1542
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
1543
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
1544
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
1545
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
1546
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
1547
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
1548
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
1549
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
1550
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
1681
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1682
|
+
] = None,
|
|
1683
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1684
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1685
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1686
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1687
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1688
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1689
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1690
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1691
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1551
1692
|
style: Optional[Style] = None,
|
|
1552
1693
|
key: Optional[Any] = None,
|
|
1553
1694
|
id: Optional[Any] = None,
|
|
1554
1695
|
class_name: Optional[Any] = None,
|
|
1555
1696
|
autofocus: Optional[bool] = None,
|
|
1556
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
1557
|
-
on_blur: Optional[
|
|
1558
|
-
|
|
1697
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
1698
|
+
on_blur: Optional[
|
|
1699
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1700
|
+
] = None,
|
|
1701
|
+
on_click: Optional[
|
|
1702
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1703
|
+
] = None,
|
|
1559
1704
|
on_context_menu: Optional[
|
|
1560
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1705
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1561
1706
|
] = None,
|
|
1562
1707
|
on_double_click: Optional[
|
|
1563
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1708
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1709
|
+
] = None,
|
|
1710
|
+
on_focus: Optional[
|
|
1711
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1712
|
+
] = None,
|
|
1713
|
+
on_mount: Optional[
|
|
1714
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1564
1715
|
] = None,
|
|
1565
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1566
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1567
1716
|
on_mouse_down: Optional[
|
|
1568
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1717
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1569
1718
|
] = None,
|
|
1570
1719
|
on_mouse_enter: Optional[
|
|
1571
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1720
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1572
1721
|
] = None,
|
|
1573
1722
|
on_mouse_leave: Optional[
|
|
1574
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1723
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1575
1724
|
] = None,
|
|
1576
1725
|
on_mouse_move: Optional[
|
|
1577
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1726
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1578
1727
|
] = None,
|
|
1579
1728
|
on_mouse_out: Optional[
|
|
1580
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1729
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1581
1730
|
] = None,
|
|
1582
1731
|
on_mouse_over: Optional[
|
|
1583
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1732
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1584
1733
|
] = None,
|
|
1585
1734
|
on_mouse_up: Optional[
|
|
1586
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1735
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1736
|
+
] = None,
|
|
1737
|
+
on_scroll: Optional[
|
|
1738
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1587
1739
|
] = None,
|
|
1588
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1589
1740
|
on_unmount: Optional[
|
|
1590
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1741
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1591
1742
|
] = None,
|
|
1592
1743
|
**props,
|
|
1593
1744
|
) -> "Q":
|
|
@@ -1631,70 +1782,80 @@ class Rp(BaseHTML):
|
|
|
1631
1782
|
def create( # type: ignore
|
|
1632
1783
|
cls,
|
|
1633
1784
|
*children,
|
|
1634
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
1785
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1635
1786
|
auto_capitalize: Optional[
|
|
1636
|
-
Union[Var[Union[bool, int, str]],
|
|
1787
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1637
1788
|
] = None,
|
|
1638
1789
|
content_editable: Optional[
|
|
1639
|
-
Union[Var[Union[bool, int, str]],
|
|
1790
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1640
1791
|
] = None,
|
|
1641
1792
|
context_menu: Optional[
|
|
1642
|
-
Union[Var[Union[bool, int, str]],
|
|
1793
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1643
1794
|
] = None,
|
|
1644
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
1645
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
1795
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1796
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1646
1797
|
enter_key_hint: Optional[
|
|
1647
|
-
Union[Var[Union[bool, int, str]],
|
|
1648
|
-
] = None,
|
|
1649
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
1650
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
1651
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
1652
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
1653
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
1654
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
1655
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
1656
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
1657
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
1798
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1799
|
+
] = None,
|
|
1800
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1801
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1802
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1803
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1804
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1805
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1806
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1807
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1808
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1658
1809
|
style: Optional[Style] = None,
|
|
1659
1810
|
key: Optional[Any] = None,
|
|
1660
1811
|
id: Optional[Any] = None,
|
|
1661
1812
|
class_name: Optional[Any] = None,
|
|
1662
1813
|
autofocus: Optional[bool] = None,
|
|
1663
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
1664
|
-
on_blur: Optional[
|
|
1665
|
-
|
|
1814
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
1815
|
+
on_blur: Optional[
|
|
1816
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1817
|
+
] = None,
|
|
1818
|
+
on_click: Optional[
|
|
1819
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1820
|
+
] = None,
|
|
1666
1821
|
on_context_menu: Optional[
|
|
1667
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1822
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1668
1823
|
] = None,
|
|
1669
1824
|
on_double_click: Optional[
|
|
1670
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1825
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1826
|
+
] = None,
|
|
1827
|
+
on_focus: Optional[
|
|
1828
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1829
|
+
] = None,
|
|
1830
|
+
on_mount: Optional[
|
|
1831
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1671
1832
|
] = None,
|
|
1672
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1673
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1674
1833
|
on_mouse_down: Optional[
|
|
1675
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1834
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1676
1835
|
] = None,
|
|
1677
1836
|
on_mouse_enter: Optional[
|
|
1678
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1837
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1679
1838
|
] = None,
|
|
1680
1839
|
on_mouse_leave: Optional[
|
|
1681
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1840
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1682
1841
|
] = None,
|
|
1683
1842
|
on_mouse_move: Optional[
|
|
1684
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1843
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1685
1844
|
] = None,
|
|
1686
1845
|
on_mouse_out: Optional[
|
|
1687
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1846
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1688
1847
|
] = None,
|
|
1689
1848
|
on_mouse_over: Optional[
|
|
1690
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1849
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1691
1850
|
] = None,
|
|
1692
1851
|
on_mouse_up: Optional[
|
|
1693
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1852
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1853
|
+
] = None,
|
|
1854
|
+
on_scroll: Optional[
|
|
1855
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1694
1856
|
] = None,
|
|
1695
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1696
1857
|
on_unmount: Optional[
|
|
1697
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1858
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1698
1859
|
] = None,
|
|
1699
1860
|
**props,
|
|
1700
1861
|
) -> "Rp":
|
|
@@ -1737,70 +1898,80 @@ class Rt(BaseHTML):
|
|
|
1737
1898
|
def create( # type: ignore
|
|
1738
1899
|
cls,
|
|
1739
1900
|
*children,
|
|
1740
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
1901
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1741
1902
|
auto_capitalize: Optional[
|
|
1742
|
-
Union[Var[Union[bool, int, str]],
|
|
1903
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1743
1904
|
] = None,
|
|
1744
1905
|
content_editable: Optional[
|
|
1745
|
-
Union[Var[Union[bool, int, str]],
|
|
1906
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1746
1907
|
] = None,
|
|
1747
1908
|
context_menu: Optional[
|
|
1748
|
-
Union[Var[Union[bool, int, str]],
|
|
1909
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1749
1910
|
] = None,
|
|
1750
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
1751
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
1911
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1912
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1752
1913
|
enter_key_hint: Optional[
|
|
1753
|
-
Union[Var[Union[bool, int, str]],
|
|
1754
|
-
] = None,
|
|
1755
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
1756
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
1757
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
1758
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
1759
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
1760
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
1761
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
1762
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
1763
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
1914
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1915
|
+
] = None,
|
|
1916
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1917
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1918
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1919
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1920
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1921
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1922
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1923
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1924
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1764
1925
|
style: Optional[Style] = None,
|
|
1765
1926
|
key: Optional[Any] = None,
|
|
1766
1927
|
id: Optional[Any] = None,
|
|
1767
1928
|
class_name: Optional[Any] = None,
|
|
1768
1929
|
autofocus: Optional[bool] = None,
|
|
1769
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
1770
|
-
on_blur: Optional[
|
|
1771
|
-
|
|
1930
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
1931
|
+
on_blur: Optional[
|
|
1932
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1933
|
+
] = None,
|
|
1934
|
+
on_click: Optional[
|
|
1935
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1936
|
+
] = None,
|
|
1772
1937
|
on_context_menu: Optional[
|
|
1773
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1938
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1774
1939
|
] = None,
|
|
1775
1940
|
on_double_click: Optional[
|
|
1776
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1941
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1942
|
+
] = None,
|
|
1943
|
+
on_focus: Optional[
|
|
1944
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1945
|
+
] = None,
|
|
1946
|
+
on_mount: Optional[
|
|
1947
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1777
1948
|
] = None,
|
|
1778
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1779
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1780
1949
|
on_mouse_down: Optional[
|
|
1781
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1950
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1782
1951
|
] = None,
|
|
1783
1952
|
on_mouse_enter: Optional[
|
|
1784
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1953
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1785
1954
|
] = None,
|
|
1786
1955
|
on_mouse_leave: Optional[
|
|
1787
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1956
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1788
1957
|
] = None,
|
|
1789
1958
|
on_mouse_move: Optional[
|
|
1790
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1959
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1791
1960
|
] = None,
|
|
1792
1961
|
on_mouse_out: Optional[
|
|
1793
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1962
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1794
1963
|
] = None,
|
|
1795
1964
|
on_mouse_over: Optional[
|
|
1796
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1965
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1797
1966
|
] = None,
|
|
1798
1967
|
on_mouse_up: Optional[
|
|
1799
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1968
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1969
|
+
] = None,
|
|
1970
|
+
on_scroll: Optional[
|
|
1971
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1800
1972
|
] = None,
|
|
1801
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1802
1973
|
on_unmount: Optional[
|
|
1803
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
1974
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1804
1975
|
] = None,
|
|
1805
1976
|
**props,
|
|
1806
1977
|
) -> "Rt":
|
|
@@ -1843,70 +2014,80 @@ class Ruby(BaseHTML):
|
|
|
1843
2014
|
def create( # type: ignore
|
|
1844
2015
|
cls,
|
|
1845
2016
|
*children,
|
|
1846
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
2017
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1847
2018
|
auto_capitalize: Optional[
|
|
1848
|
-
Union[Var[Union[bool, int, str]],
|
|
2019
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1849
2020
|
] = None,
|
|
1850
2021
|
content_editable: Optional[
|
|
1851
|
-
Union[Var[Union[bool, int, str]],
|
|
2022
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1852
2023
|
] = None,
|
|
1853
2024
|
context_menu: Optional[
|
|
1854
|
-
Union[Var[Union[bool, int, str]],
|
|
2025
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1855
2026
|
] = None,
|
|
1856
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
1857
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
2027
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2028
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1858
2029
|
enter_key_hint: Optional[
|
|
1859
|
-
Union[Var[Union[bool, int, str]],
|
|
1860
|
-
] = None,
|
|
1861
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
1862
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
1863
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
1864
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
1865
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
1866
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
1867
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
1868
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
1869
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
2030
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2031
|
+
] = None,
|
|
2032
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2033
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2034
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2035
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2036
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2037
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2038
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2039
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2040
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1870
2041
|
style: Optional[Style] = None,
|
|
1871
2042
|
key: Optional[Any] = None,
|
|
1872
2043
|
id: Optional[Any] = None,
|
|
1873
2044
|
class_name: Optional[Any] = None,
|
|
1874
2045
|
autofocus: Optional[bool] = None,
|
|
1875
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
1876
|
-
on_blur: Optional[
|
|
1877
|
-
|
|
2046
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
2047
|
+
on_blur: Optional[
|
|
2048
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2049
|
+
] = None,
|
|
2050
|
+
on_click: Optional[
|
|
2051
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2052
|
+
] = None,
|
|
1878
2053
|
on_context_menu: Optional[
|
|
1879
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2054
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1880
2055
|
] = None,
|
|
1881
2056
|
on_double_click: Optional[
|
|
1882
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2057
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2058
|
+
] = None,
|
|
2059
|
+
on_focus: Optional[
|
|
2060
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2061
|
+
] = None,
|
|
2062
|
+
on_mount: Optional[
|
|
2063
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1883
2064
|
] = None,
|
|
1884
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1885
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1886
2065
|
on_mouse_down: Optional[
|
|
1887
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2066
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1888
2067
|
] = None,
|
|
1889
2068
|
on_mouse_enter: Optional[
|
|
1890
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2069
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1891
2070
|
] = None,
|
|
1892
2071
|
on_mouse_leave: Optional[
|
|
1893
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2072
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1894
2073
|
] = None,
|
|
1895
2074
|
on_mouse_move: Optional[
|
|
1896
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2075
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1897
2076
|
] = None,
|
|
1898
2077
|
on_mouse_out: Optional[
|
|
1899
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2078
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1900
2079
|
] = None,
|
|
1901
2080
|
on_mouse_over: Optional[
|
|
1902
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2081
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1903
2082
|
] = None,
|
|
1904
2083
|
on_mouse_up: Optional[
|
|
1905
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2084
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2085
|
+
] = None,
|
|
2086
|
+
on_scroll: Optional[
|
|
2087
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1906
2088
|
] = None,
|
|
1907
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1908
2089
|
on_unmount: Optional[
|
|
1909
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2090
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1910
2091
|
] = None,
|
|
1911
2092
|
**props,
|
|
1912
2093
|
) -> "Ruby":
|
|
@@ -1949,70 +2130,80 @@ class S(BaseHTML):
|
|
|
1949
2130
|
def create( # type: ignore
|
|
1950
2131
|
cls,
|
|
1951
2132
|
*children,
|
|
1952
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
2133
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1953
2134
|
auto_capitalize: Optional[
|
|
1954
|
-
Union[Var[Union[bool, int, str]],
|
|
2135
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1955
2136
|
] = None,
|
|
1956
2137
|
content_editable: Optional[
|
|
1957
|
-
Union[Var[Union[bool, int, str]],
|
|
2138
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1958
2139
|
] = None,
|
|
1959
2140
|
context_menu: Optional[
|
|
1960
|
-
Union[Var[Union[bool, int, str]],
|
|
2141
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
1961
2142
|
] = None,
|
|
1962
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
1963
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
2143
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2144
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1964
2145
|
enter_key_hint: Optional[
|
|
1965
|
-
Union[Var[Union[bool, int, str]],
|
|
1966
|
-
] = None,
|
|
1967
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
1968
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
1969
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
1970
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
1971
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
1972
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
1973
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
1974
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
1975
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
2146
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2147
|
+
] = None,
|
|
2148
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2149
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2150
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2151
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2152
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2153
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2154
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2155
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2156
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
1976
2157
|
style: Optional[Style] = None,
|
|
1977
2158
|
key: Optional[Any] = None,
|
|
1978
2159
|
id: Optional[Any] = None,
|
|
1979
2160
|
class_name: Optional[Any] = None,
|
|
1980
2161
|
autofocus: Optional[bool] = None,
|
|
1981
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
1982
|
-
on_blur: Optional[
|
|
1983
|
-
|
|
2162
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
2163
|
+
on_blur: Optional[
|
|
2164
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2165
|
+
] = None,
|
|
2166
|
+
on_click: Optional[
|
|
2167
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2168
|
+
] = None,
|
|
1984
2169
|
on_context_menu: Optional[
|
|
1985
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2170
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1986
2171
|
] = None,
|
|
1987
2172
|
on_double_click: Optional[
|
|
1988
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2173
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2174
|
+
] = None,
|
|
2175
|
+
on_focus: Optional[
|
|
2176
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2177
|
+
] = None,
|
|
2178
|
+
on_mount: Optional[
|
|
2179
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1989
2180
|
] = None,
|
|
1990
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1991
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
1992
2181
|
on_mouse_down: Optional[
|
|
1993
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2182
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1994
2183
|
] = None,
|
|
1995
2184
|
on_mouse_enter: Optional[
|
|
1996
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2185
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
1997
2186
|
] = None,
|
|
1998
2187
|
on_mouse_leave: Optional[
|
|
1999
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2188
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2000
2189
|
] = None,
|
|
2001
2190
|
on_mouse_move: Optional[
|
|
2002
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2191
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2003
2192
|
] = None,
|
|
2004
2193
|
on_mouse_out: Optional[
|
|
2005
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2194
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2006
2195
|
] = None,
|
|
2007
2196
|
on_mouse_over: Optional[
|
|
2008
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2197
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2009
2198
|
] = None,
|
|
2010
2199
|
on_mouse_up: Optional[
|
|
2011
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2200
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2201
|
+
] = None,
|
|
2202
|
+
on_scroll: Optional[
|
|
2203
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2012
2204
|
] = None,
|
|
2013
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2014
2205
|
on_unmount: Optional[
|
|
2015
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2206
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2016
2207
|
] = None,
|
|
2017
2208
|
**props,
|
|
2018
2209
|
) -> "S":
|
|
@@ -2055,70 +2246,80 @@ class Samp(BaseHTML):
|
|
|
2055
2246
|
def create( # type: ignore
|
|
2056
2247
|
cls,
|
|
2057
2248
|
*children,
|
|
2058
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
2249
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2059
2250
|
auto_capitalize: Optional[
|
|
2060
|
-
Union[Var[Union[bool, int, str]],
|
|
2251
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2061
2252
|
] = None,
|
|
2062
2253
|
content_editable: Optional[
|
|
2063
|
-
Union[Var[Union[bool, int, str]],
|
|
2254
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2064
2255
|
] = None,
|
|
2065
2256
|
context_menu: Optional[
|
|
2066
|
-
Union[Var[Union[bool, int, str]],
|
|
2257
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2067
2258
|
] = None,
|
|
2068
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
2069
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
2259
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2260
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2070
2261
|
enter_key_hint: Optional[
|
|
2071
|
-
Union[Var[Union[bool, int, str]],
|
|
2072
|
-
] = None,
|
|
2073
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
2074
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
2075
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
2076
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
2077
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
2078
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
2079
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
2080
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
2081
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
2262
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2263
|
+
] = None,
|
|
2264
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2265
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2266
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2267
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2268
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2269
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2270
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2271
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2272
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2082
2273
|
style: Optional[Style] = None,
|
|
2083
2274
|
key: Optional[Any] = None,
|
|
2084
2275
|
id: Optional[Any] = None,
|
|
2085
2276
|
class_name: Optional[Any] = None,
|
|
2086
2277
|
autofocus: Optional[bool] = None,
|
|
2087
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
2088
|
-
on_blur: Optional[
|
|
2089
|
-
|
|
2278
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
2279
|
+
on_blur: Optional[
|
|
2280
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2281
|
+
] = None,
|
|
2282
|
+
on_click: Optional[
|
|
2283
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2284
|
+
] = None,
|
|
2090
2285
|
on_context_menu: Optional[
|
|
2091
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2286
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2092
2287
|
] = None,
|
|
2093
2288
|
on_double_click: Optional[
|
|
2094
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2289
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2290
|
+
] = None,
|
|
2291
|
+
on_focus: Optional[
|
|
2292
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2293
|
+
] = None,
|
|
2294
|
+
on_mount: Optional[
|
|
2295
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2095
2296
|
] = None,
|
|
2096
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2097
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2098
2297
|
on_mouse_down: Optional[
|
|
2099
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2298
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2100
2299
|
] = None,
|
|
2101
2300
|
on_mouse_enter: Optional[
|
|
2102
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2301
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2103
2302
|
] = None,
|
|
2104
2303
|
on_mouse_leave: Optional[
|
|
2105
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2304
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2106
2305
|
] = None,
|
|
2107
2306
|
on_mouse_move: Optional[
|
|
2108
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2307
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2109
2308
|
] = None,
|
|
2110
2309
|
on_mouse_out: Optional[
|
|
2111
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2310
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2112
2311
|
] = None,
|
|
2113
2312
|
on_mouse_over: Optional[
|
|
2114
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2313
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2115
2314
|
] = None,
|
|
2116
2315
|
on_mouse_up: Optional[
|
|
2117
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2316
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2317
|
+
] = None,
|
|
2318
|
+
on_scroll: Optional[
|
|
2319
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2118
2320
|
] = None,
|
|
2119
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2120
2321
|
on_unmount: Optional[
|
|
2121
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2322
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2122
2323
|
] = None,
|
|
2123
2324
|
**props,
|
|
2124
2325
|
) -> "Samp":
|
|
@@ -2161,70 +2362,80 @@ class Small(BaseHTML):
|
|
|
2161
2362
|
def create( # type: ignore
|
|
2162
2363
|
cls,
|
|
2163
2364
|
*children,
|
|
2164
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
2365
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2165
2366
|
auto_capitalize: Optional[
|
|
2166
|
-
Union[Var[Union[bool, int, str]],
|
|
2367
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2167
2368
|
] = None,
|
|
2168
2369
|
content_editable: Optional[
|
|
2169
|
-
Union[Var[Union[bool, int, str]],
|
|
2370
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2170
2371
|
] = None,
|
|
2171
2372
|
context_menu: Optional[
|
|
2172
|
-
Union[Var[Union[bool, int, str]],
|
|
2373
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2173
2374
|
] = None,
|
|
2174
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
2175
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
2375
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2376
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2176
2377
|
enter_key_hint: Optional[
|
|
2177
|
-
Union[Var[Union[bool, int, str]],
|
|
2178
|
-
] = None,
|
|
2179
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
2180
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
2181
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
2182
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
2183
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
2184
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
2185
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
2186
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
2187
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
2378
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2379
|
+
] = None,
|
|
2380
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2381
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2382
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2383
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2384
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2385
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2386
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2387
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2388
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2188
2389
|
style: Optional[Style] = None,
|
|
2189
2390
|
key: Optional[Any] = None,
|
|
2190
2391
|
id: Optional[Any] = None,
|
|
2191
2392
|
class_name: Optional[Any] = None,
|
|
2192
2393
|
autofocus: Optional[bool] = None,
|
|
2193
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
2194
|
-
on_blur: Optional[
|
|
2195
|
-
|
|
2394
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
2395
|
+
on_blur: Optional[
|
|
2396
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2397
|
+
] = None,
|
|
2398
|
+
on_click: Optional[
|
|
2399
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2400
|
+
] = None,
|
|
2196
2401
|
on_context_menu: Optional[
|
|
2197
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2402
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2198
2403
|
] = None,
|
|
2199
2404
|
on_double_click: Optional[
|
|
2200
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2405
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2406
|
+
] = None,
|
|
2407
|
+
on_focus: Optional[
|
|
2408
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2409
|
+
] = None,
|
|
2410
|
+
on_mount: Optional[
|
|
2411
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2201
2412
|
] = None,
|
|
2202
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2203
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2204
2413
|
on_mouse_down: Optional[
|
|
2205
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2414
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2206
2415
|
] = None,
|
|
2207
2416
|
on_mouse_enter: Optional[
|
|
2208
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2417
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2209
2418
|
] = None,
|
|
2210
2419
|
on_mouse_leave: Optional[
|
|
2211
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2420
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2212
2421
|
] = None,
|
|
2213
2422
|
on_mouse_move: Optional[
|
|
2214
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2423
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2215
2424
|
] = None,
|
|
2216
2425
|
on_mouse_out: Optional[
|
|
2217
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2426
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2218
2427
|
] = None,
|
|
2219
2428
|
on_mouse_over: Optional[
|
|
2220
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2429
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2221
2430
|
] = None,
|
|
2222
2431
|
on_mouse_up: Optional[
|
|
2223
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2432
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2433
|
+
] = None,
|
|
2434
|
+
on_scroll: Optional[
|
|
2435
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2224
2436
|
] = None,
|
|
2225
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2226
2437
|
on_unmount: Optional[
|
|
2227
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2438
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2228
2439
|
] = None,
|
|
2229
2440
|
**props,
|
|
2230
2441
|
) -> "Small":
|
|
@@ -2267,70 +2478,80 @@ class Span(BaseHTML):
|
|
|
2267
2478
|
def create( # type: ignore
|
|
2268
2479
|
cls,
|
|
2269
2480
|
*children,
|
|
2270
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
2481
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2271
2482
|
auto_capitalize: Optional[
|
|
2272
|
-
Union[Var[Union[bool, int, str]],
|
|
2483
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2273
2484
|
] = None,
|
|
2274
2485
|
content_editable: Optional[
|
|
2275
|
-
Union[Var[Union[bool, int, str]],
|
|
2486
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2276
2487
|
] = None,
|
|
2277
2488
|
context_menu: Optional[
|
|
2278
|
-
Union[Var[Union[bool, int, str]],
|
|
2489
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2279
2490
|
] = None,
|
|
2280
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
2281
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
2491
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2492
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2282
2493
|
enter_key_hint: Optional[
|
|
2283
|
-
Union[Var[Union[bool, int, str]],
|
|
2284
|
-
] = None,
|
|
2285
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
2286
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
2287
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
2288
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
2289
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
2290
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
2291
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
2292
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
2293
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
2494
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2495
|
+
] = None,
|
|
2496
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2497
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2498
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2499
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2500
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2501
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2502
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2503
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2504
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2294
2505
|
style: Optional[Style] = None,
|
|
2295
2506
|
key: Optional[Any] = None,
|
|
2296
2507
|
id: Optional[Any] = None,
|
|
2297
2508
|
class_name: Optional[Any] = None,
|
|
2298
2509
|
autofocus: Optional[bool] = None,
|
|
2299
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
2300
|
-
on_blur: Optional[
|
|
2301
|
-
|
|
2510
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
2511
|
+
on_blur: Optional[
|
|
2512
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2513
|
+
] = None,
|
|
2514
|
+
on_click: Optional[
|
|
2515
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2516
|
+
] = None,
|
|
2302
2517
|
on_context_menu: Optional[
|
|
2303
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2518
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2304
2519
|
] = None,
|
|
2305
2520
|
on_double_click: Optional[
|
|
2306
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2521
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2522
|
+
] = None,
|
|
2523
|
+
on_focus: Optional[
|
|
2524
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2525
|
+
] = None,
|
|
2526
|
+
on_mount: Optional[
|
|
2527
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2307
2528
|
] = None,
|
|
2308
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2309
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2310
2529
|
on_mouse_down: Optional[
|
|
2311
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2530
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2312
2531
|
] = None,
|
|
2313
2532
|
on_mouse_enter: Optional[
|
|
2314
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2533
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2315
2534
|
] = None,
|
|
2316
2535
|
on_mouse_leave: Optional[
|
|
2317
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2536
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2318
2537
|
] = None,
|
|
2319
2538
|
on_mouse_move: Optional[
|
|
2320
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2539
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2321
2540
|
] = None,
|
|
2322
2541
|
on_mouse_out: Optional[
|
|
2323
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2542
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2324
2543
|
] = None,
|
|
2325
2544
|
on_mouse_over: Optional[
|
|
2326
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2545
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2327
2546
|
] = None,
|
|
2328
2547
|
on_mouse_up: Optional[
|
|
2329
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2548
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2549
|
+
] = None,
|
|
2550
|
+
on_scroll: Optional[
|
|
2551
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2330
2552
|
] = None,
|
|
2331
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2332
2553
|
on_unmount: Optional[
|
|
2333
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2554
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2334
2555
|
] = None,
|
|
2335
2556
|
**props,
|
|
2336
2557
|
) -> "Span":
|
|
@@ -2373,70 +2594,80 @@ class Strong(BaseHTML):
|
|
|
2373
2594
|
def create( # type: ignore
|
|
2374
2595
|
cls,
|
|
2375
2596
|
*children,
|
|
2376
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
2597
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2377
2598
|
auto_capitalize: Optional[
|
|
2378
|
-
Union[Var[Union[bool, int, str]],
|
|
2599
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2379
2600
|
] = None,
|
|
2380
2601
|
content_editable: Optional[
|
|
2381
|
-
Union[Var[Union[bool, int, str]],
|
|
2602
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2382
2603
|
] = None,
|
|
2383
2604
|
context_menu: Optional[
|
|
2384
|
-
Union[Var[Union[bool, int, str]],
|
|
2605
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2385
2606
|
] = None,
|
|
2386
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
2387
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
2607
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2608
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2388
2609
|
enter_key_hint: Optional[
|
|
2389
|
-
Union[Var[Union[bool, int, str]],
|
|
2390
|
-
] = None,
|
|
2391
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
2392
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
2393
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
2394
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
2395
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
2396
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
2397
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
2398
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
2399
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
2610
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2611
|
+
] = None,
|
|
2612
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2613
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2614
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2615
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2616
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2617
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2618
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2619
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2620
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2400
2621
|
style: Optional[Style] = None,
|
|
2401
2622
|
key: Optional[Any] = None,
|
|
2402
2623
|
id: Optional[Any] = None,
|
|
2403
2624
|
class_name: Optional[Any] = None,
|
|
2404
2625
|
autofocus: Optional[bool] = None,
|
|
2405
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
2406
|
-
on_blur: Optional[
|
|
2407
|
-
|
|
2626
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
2627
|
+
on_blur: Optional[
|
|
2628
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2629
|
+
] = None,
|
|
2630
|
+
on_click: Optional[
|
|
2631
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2632
|
+
] = None,
|
|
2408
2633
|
on_context_menu: Optional[
|
|
2409
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2634
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2410
2635
|
] = None,
|
|
2411
2636
|
on_double_click: Optional[
|
|
2412
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2637
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2638
|
+
] = None,
|
|
2639
|
+
on_focus: Optional[
|
|
2640
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2641
|
+
] = None,
|
|
2642
|
+
on_mount: Optional[
|
|
2643
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2413
2644
|
] = None,
|
|
2414
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2415
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2416
2645
|
on_mouse_down: Optional[
|
|
2417
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2646
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2418
2647
|
] = None,
|
|
2419
2648
|
on_mouse_enter: Optional[
|
|
2420
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2649
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2421
2650
|
] = None,
|
|
2422
2651
|
on_mouse_leave: Optional[
|
|
2423
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2652
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2424
2653
|
] = None,
|
|
2425
2654
|
on_mouse_move: Optional[
|
|
2426
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2655
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2427
2656
|
] = None,
|
|
2428
2657
|
on_mouse_out: Optional[
|
|
2429
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2658
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2430
2659
|
] = None,
|
|
2431
2660
|
on_mouse_over: Optional[
|
|
2432
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2661
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2433
2662
|
] = None,
|
|
2434
2663
|
on_mouse_up: Optional[
|
|
2435
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2664
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2665
|
+
] = None,
|
|
2666
|
+
on_scroll: Optional[
|
|
2667
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2436
2668
|
] = None,
|
|
2437
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2438
2669
|
on_unmount: Optional[
|
|
2439
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2670
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2440
2671
|
] = None,
|
|
2441
2672
|
**props,
|
|
2442
2673
|
) -> "Strong":
|
|
@@ -2479,70 +2710,80 @@ class Sub(BaseHTML):
|
|
|
2479
2710
|
def create( # type: ignore
|
|
2480
2711
|
cls,
|
|
2481
2712
|
*children,
|
|
2482
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
2713
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2483
2714
|
auto_capitalize: Optional[
|
|
2484
|
-
Union[Var[Union[bool, int, str]],
|
|
2715
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2485
2716
|
] = None,
|
|
2486
2717
|
content_editable: Optional[
|
|
2487
|
-
Union[Var[Union[bool, int, str]],
|
|
2718
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2488
2719
|
] = None,
|
|
2489
2720
|
context_menu: Optional[
|
|
2490
|
-
Union[Var[Union[bool, int, str]],
|
|
2721
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2491
2722
|
] = None,
|
|
2492
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
2493
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
2723
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2724
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2494
2725
|
enter_key_hint: Optional[
|
|
2495
|
-
Union[Var[Union[bool, int, str]],
|
|
2496
|
-
] = None,
|
|
2497
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
2498
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
2499
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
2500
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
2501
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
2502
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
2503
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
2504
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
2505
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
2726
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2727
|
+
] = None,
|
|
2728
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2729
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2730
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2731
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2732
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2733
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2734
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2735
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2736
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2506
2737
|
style: Optional[Style] = None,
|
|
2507
2738
|
key: Optional[Any] = None,
|
|
2508
2739
|
id: Optional[Any] = None,
|
|
2509
2740
|
class_name: Optional[Any] = None,
|
|
2510
2741
|
autofocus: Optional[bool] = None,
|
|
2511
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
2512
|
-
on_blur: Optional[
|
|
2513
|
-
|
|
2742
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
2743
|
+
on_blur: Optional[
|
|
2744
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2745
|
+
] = None,
|
|
2746
|
+
on_click: Optional[
|
|
2747
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2748
|
+
] = None,
|
|
2514
2749
|
on_context_menu: Optional[
|
|
2515
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2750
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2516
2751
|
] = None,
|
|
2517
2752
|
on_double_click: Optional[
|
|
2518
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2753
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2754
|
+
] = None,
|
|
2755
|
+
on_focus: Optional[
|
|
2756
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2757
|
+
] = None,
|
|
2758
|
+
on_mount: Optional[
|
|
2759
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2519
2760
|
] = None,
|
|
2520
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2521
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2522
2761
|
on_mouse_down: Optional[
|
|
2523
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2762
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2524
2763
|
] = None,
|
|
2525
2764
|
on_mouse_enter: Optional[
|
|
2526
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2765
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2527
2766
|
] = None,
|
|
2528
2767
|
on_mouse_leave: Optional[
|
|
2529
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2768
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2530
2769
|
] = None,
|
|
2531
2770
|
on_mouse_move: Optional[
|
|
2532
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2771
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2533
2772
|
] = None,
|
|
2534
2773
|
on_mouse_out: Optional[
|
|
2535
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2774
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2536
2775
|
] = None,
|
|
2537
2776
|
on_mouse_over: Optional[
|
|
2538
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2777
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2539
2778
|
] = None,
|
|
2540
2779
|
on_mouse_up: Optional[
|
|
2541
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2780
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2781
|
+
] = None,
|
|
2782
|
+
on_scroll: Optional[
|
|
2783
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2542
2784
|
] = None,
|
|
2543
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2544
2785
|
on_unmount: Optional[
|
|
2545
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2786
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2546
2787
|
] = None,
|
|
2547
2788
|
**props,
|
|
2548
2789
|
) -> "Sub":
|
|
@@ -2585,70 +2826,80 @@ class Sup(BaseHTML):
|
|
|
2585
2826
|
def create( # type: ignore
|
|
2586
2827
|
cls,
|
|
2587
2828
|
*children,
|
|
2588
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
2829
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2589
2830
|
auto_capitalize: Optional[
|
|
2590
|
-
Union[Var[Union[bool, int, str]],
|
|
2831
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2591
2832
|
] = None,
|
|
2592
2833
|
content_editable: Optional[
|
|
2593
|
-
Union[Var[Union[bool, int, str]],
|
|
2834
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2594
2835
|
] = None,
|
|
2595
2836
|
context_menu: Optional[
|
|
2596
|
-
Union[Var[Union[bool, int, str]],
|
|
2837
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2597
2838
|
] = None,
|
|
2598
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
2599
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
2839
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2840
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2600
2841
|
enter_key_hint: Optional[
|
|
2601
|
-
Union[Var[Union[bool, int, str]],
|
|
2602
|
-
] = None,
|
|
2603
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
2604
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
2605
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
2606
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
2607
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
2608
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
2609
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
2610
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
2611
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
2842
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2843
|
+
] = None,
|
|
2844
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2845
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2846
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2847
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2848
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2849
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2850
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2851
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2852
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2612
2853
|
style: Optional[Style] = None,
|
|
2613
2854
|
key: Optional[Any] = None,
|
|
2614
2855
|
id: Optional[Any] = None,
|
|
2615
2856
|
class_name: Optional[Any] = None,
|
|
2616
2857
|
autofocus: Optional[bool] = None,
|
|
2617
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
2618
|
-
on_blur: Optional[
|
|
2619
|
-
|
|
2858
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
2859
|
+
on_blur: Optional[
|
|
2860
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2861
|
+
] = None,
|
|
2862
|
+
on_click: Optional[
|
|
2863
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2864
|
+
] = None,
|
|
2620
2865
|
on_context_menu: Optional[
|
|
2621
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2866
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2622
2867
|
] = None,
|
|
2623
2868
|
on_double_click: Optional[
|
|
2624
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2869
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2870
|
+
] = None,
|
|
2871
|
+
on_focus: Optional[
|
|
2872
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2873
|
+
] = None,
|
|
2874
|
+
on_mount: Optional[
|
|
2875
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2625
2876
|
] = None,
|
|
2626
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2627
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2628
2877
|
on_mouse_down: Optional[
|
|
2629
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2878
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2630
2879
|
] = None,
|
|
2631
2880
|
on_mouse_enter: Optional[
|
|
2632
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2881
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2633
2882
|
] = None,
|
|
2634
2883
|
on_mouse_leave: Optional[
|
|
2635
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2884
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2636
2885
|
] = None,
|
|
2637
2886
|
on_mouse_move: Optional[
|
|
2638
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2887
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2639
2888
|
] = None,
|
|
2640
2889
|
on_mouse_out: Optional[
|
|
2641
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2890
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2642
2891
|
] = None,
|
|
2643
2892
|
on_mouse_over: Optional[
|
|
2644
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2893
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2645
2894
|
] = None,
|
|
2646
2895
|
on_mouse_up: Optional[
|
|
2647
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2896
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2897
|
+
] = None,
|
|
2898
|
+
on_scroll: Optional[
|
|
2899
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2648
2900
|
] = None,
|
|
2649
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2650
2901
|
on_unmount: Optional[
|
|
2651
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2902
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2652
2903
|
] = None,
|
|
2653
2904
|
**props,
|
|
2654
2905
|
) -> "Sup":
|
|
@@ -2691,71 +2942,81 @@ class Time(BaseHTML):
|
|
|
2691
2942
|
def create( # type: ignore
|
|
2692
2943
|
cls,
|
|
2693
2944
|
*children,
|
|
2694
|
-
date_time: Optional[Union[Var[Union[bool, int, str]],
|
|
2695
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
2945
|
+
date_time: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2946
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2696
2947
|
auto_capitalize: Optional[
|
|
2697
|
-
Union[Var[Union[bool, int, str]],
|
|
2948
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2698
2949
|
] = None,
|
|
2699
2950
|
content_editable: Optional[
|
|
2700
|
-
Union[Var[Union[bool, int, str]],
|
|
2951
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2701
2952
|
] = None,
|
|
2702
2953
|
context_menu: Optional[
|
|
2703
|
-
Union[Var[Union[bool, int, str]],
|
|
2954
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2704
2955
|
] = None,
|
|
2705
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
2706
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
2956
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2957
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2707
2958
|
enter_key_hint: Optional[
|
|
2708
|
-
Union[Var[Union[bool, int, str]],
|
|
2709
|
-
] = None,
|
|
2710
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
2711
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
2712
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
2713
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
2714
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
2715
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
2716
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
2717
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
2718
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
2959
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2960
|
+
] = None,
|
|
2961
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2962
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2963
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2964
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2965
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2966
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2967
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2968
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2969
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2719
2970
|
style: Optional[Style] = None,
|
|
2720
2971
|
key: Optional[Any] = None,
|
|
2721
2972
|
id: Optional[Any] = None,
|
|
2722
2973
|
class_name: Optional[Any] = None,
|
|
2723
2974
|
autofocus: Optional[bool] = None,
|
|
2724
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
2725
|
-
on_blur: Optional[
|
|
2726
|
-
|
|
2975
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
2976
|
+
on_blur: Optional[
|
|
2977
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2978
|
+
] = None,
|
|
2979
|
+
on_click: Optional[
|
|
2980
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2981
|
+
] = None,
|
|
2727
2982
|
on_context_menu: Optional[
|
|
2728
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2983
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2729
2984
|
] = None,
|
|
2730
2985
|
on_double_click: Optional[
|
|
2731
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2986
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2987
|
+
] = None,
|
|
2988
|
+
on_focus: Optional[
|
|
2989
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2990
|
+
] = None,
|
|
2991
|
+
on_mount: Optional[
|
|
2992
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2732
2993
|
] = None,
|
|
2733
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2734
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2735
2994
|
on_mouse_down: Optional[
|
|
2736
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2995
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2737
2996
|
] = None,
|
|
2738
2997
|
on_mouse_enter: Optional[
|
|
2739
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
2998
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2740
2999
|
] = None,
|
|
2741
3000
|
on_mouse_leave: Optional[
|
|
2742
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3001
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2743
3002
|
] = None,
|
|
2744
3003
|
on_mouse_move: Optional[
|
|
2745
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3004
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2746
3005
|
] = None,
|
|
2747
3006
|
on_mouse_out: Optional[
|
|
2748
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3007
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2749
3008
|
] = None,
|
|
2750
3009
|
on_mouse_over: Optional[
|
|
2751
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3010
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2752
3011
|
] = None,
|
|
2753
3012
|
on_mouse_up: Optional[
|
|
2754
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3013
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
3014
|
+
] = None,
|
|
3015
|
+
on_scroll: Optional[
|
|
3016
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2755
3017
|
] = None,
|
|
2756
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2757
3018
|
on_unmount: Optional[
|
|
2758
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3019
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2759
3020
|
] = None,
|
|
2760
3021
|
**props,
|
|
2761
3022
|
) -> "Time":
|
|
@@ -2799,70 +3060,80 @@ class U(BaseHTML):
|
|
|
2799
3060
|
def create( # type: ignore
|
|
2800
3061
|
cls,
|
|
2801
3062
|
*children,
|
|
2802
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
3063
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2803
3064
|
auto_capitalize: Optional[
|
|
2804
|
-
Union[Var[Union[bool, int, str]],
|
|
3065
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2805
3066
|
] = None,
|
|
2806
3067
|
content_editable: Optional[
|
|
2807
|
-
Union[Var[Union[bool, int, str]],
|
|
3068
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2808
3069
|
] = None,
|
|
2809
3070
|
context_menu: Optional[
|
|
2810
|
-
Union[Var[Union[bool, int, str]],
|
|
3071
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2811
3072
|
] = None,
|
|
2812
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
2813
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
3073
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
3074
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2814
3075
|
enter_key_hint: Optional[
|
|
2815
|
-
Union[Var[Union[bool, int, str]],
|
|
2816
|
-
] = None,
|
|
2817
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
2818
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
2819
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
2820
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
2821
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
2822
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
2823
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
2824
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
2825
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
3076
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
3077
|
+
] = None,
|
|
3078
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
3079
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
3080
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
3081
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
3082
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
3083
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
3084
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
3085
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
3086
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2826
3087
|
style: Optional[Style] = None,
|
|
2827
3088
|
key: Optional[Any] = None,
|
|
2828
3089
|
id: Optional[Any] = None,
|
|
2829
3090
|
class_name: Optional[Any] = None,
|
|
2830
3091
|
autofocus: Optional[bool] = None,
|
|
2831
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
2832
|
-
on_blur: Optional[
|
|
2833
|
-
|
|
3092
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
3093
|
+
on_blur: Optional[
|
|
3094
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
3095
|
+
] = None,
|
|
3096
|
+
on_click: Optional[
|
|
3097
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
3098
|
+
] = None,
|
|
2834
3099
|
on_context_menu: Optional[
|
|
2835
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3100
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2836
3101
|
] = None,
|
|
2837
3102
|
on_double_click: Optional[
|
|
2838
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3103
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
3104
|
+
] = None,
|
|
3105
|
+
on_focus: Optional[
|
|
3106
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
3107
|
+
] = None,
|
|
3108
|
+
on_mount: Optional[
|
|
3109
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2839
3110
|
] = None,
|
|
2840
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2841
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2842
3111
|
on_mouse_down: Optional[
|
|
2843
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3112
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2844
3113
|
] = None,
|
|
2845
3114
|
on_mouse_enter: Optional[
|
|
2846
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3115
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2847
3116
|
] = None,
|
|
2848
3117
|
on_mouse_leave: Optional[
|
|
2849
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3118
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2850
3119
|
] = None,
|
|
2851
3120
|
on_mouse_move: Optional[
|
|
2852
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3121
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2853
3122
|
] = None,
|
|
2854
3123
|
on_mouse_out: Optional[
|
|
2855
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3124
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2856
3125
|
] = None,
|
|
2857
3126
|
on_mouse_over: Optional[
|
|
2858
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3127
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2859
3128
|
] = None,
|
|
2860
3129
|
on_mouse_up: Optional[
|
|
2861
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3130
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
3131
|
+
] = None,
|
|
3132
|
+
on_scroll: Optional[
|
|
3133
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2862
3134
|
] = None,
|
|
2863
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2864
3135
|
on_unmount: Optional[
|
|
2865
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3136
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2866
3137
|
] = None,
|
|
2867
3138
|
**props,
|
|
2868
3139
|
) -> "U":
|
|
@@ -2905,70 +3176,80 @@ class Wbr(BaseHTML):
|
|
|
2905
3176
|
def create( # type: ignore
|
|
2906
3177
|
cls,
|
|
2907
3178
|
*children,
|
|
2908
|
-
access_key: Optional[Union[Var[Union[bool, int, str]],
|
|
3179
|
+
access_key: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2909
3180
|
auto_capitalize: Optional[
|
|
2910
|
-
Union[Var[Union[bool, int, str]],
|
|
3181
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2911
3182
|
] = None,
|
|
2912
3183
|
content_editable: Optional[
|
|
2913
|
-
Union[Var[Union[bool, int, str]],
|
|
3184
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2914
3185
|
] = None,
|
|
2915
3186
|
context_menu: Optional[
|
|
2916
|
-
Union[Var[Union[bool, int, str]],
|
|
3187
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
2917
3188
|
] = None,
|
|
2918
|
-
dir: Optional[Union[Var[Union[bool, int, str]],
|
|
2919
|
-
draggable: Optional[Union[Var[Union[bool, int, str]],
|
|
3189
|
+
dir: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
3190
|
+
draggable: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2920
3191
|
enter_key_hint: Optional[
|
|
2921
|
-
Union[Var[Union[bool, int, str]],
|
|
2922
|
-
] = None,
|
|
2923
|
-
hidden: Optional[Union[Var[Union[bool, int, str]],
|
|
2924
|
-
input_mode: Optional[Union[Var[Union[bool, int, str]],
|
|
2925
|
-
item_prop: Optional[Union[Var[Union[bool, int, str]],
|
|
2926
|
-
lang: Optional[Union[Var[Union[bool, int, str]],
|
|
2927
|
-
role: Optional[Union[Var[Union[bool, int, str]],
|
|
2928
|
-
slot: Optional[Union[Var[Union[bool, int, str]],
|
|
2929
|
-
spell_check: Optional[Union[Var[Union[bool, int, str]],
|
|
2930
|
-
tab_index: Optional[Union[Var[Union[bool, int, str]],
|
|
2931
|
-
title: Optional[Union[Var[Union[bool, int, str]],
|
|
3192
|
+
Union[Var[Union[bool, int, str]], str, int, bool]
|
|
3193
|
+
] = None,
|
|
3194
|
+
hidden: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
3195
|
+
input_mode: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
3196
|
+
item_prop: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
3197
|
+
lang: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
3198
|
+
role: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
3199
|
+
slot: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
3200
|
+
spell_check: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
3201
|
+
tab_index: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
3202
|
+
title: Optional[Union[Var[Union[bool, int, str]], str, int, bool]] = None,
|
|
2932
3203
|
style: Optional[Style] = None,
|
|
2933
3204
|
key: Optional[Any] = None,
|
|
2934
3205
|
id: Optional[Any] = None,
|
|
2935
3206
|
class_name: Optional[Any] = None,
|
|
2936
3207
|
autofocus: Optional[bool] = None,
|
|
2937
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
2938
|
-
on_blur: Optional[
|
|
2939
|
-
|
|
3208
|
+
custom_attrs: Optional[Dict[str, Union[ImmutableVar, str]]] = None,
|
|
3209
|
+
on_blur: Optional[
|
|
3210
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
3211
|
+
] = None,
|
|
3212
|
+
on_click: Optional[
|
|
3213
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
3214
|
+
] = None,
|
|
2940
3215
|
on_context_menu: Optional[
|
|
2941
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3216
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2942
3217
|
] = None,
|
|
2943
3218
|
on_double_click: Optional[
|
|
2944
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3219
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
3220
|
+
] = None,
|
|
3221
|
+
on_focus: Optional[
|
|
3222
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
3223
|
+
] = None,
|
|
3224
|
+
on_mount: Optional[
|
|
3225
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2945
3226
|
] = None,
|
|
2946
|
-
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2947
|
-
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2948
3227
|
on_mouse_down: Optional[
|
|
2949
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3228
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2950
3229
|
] = None,
|
|
2951
3230
|
on_mouse_enter: Optional[
|
|
2952
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3231
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2953
3232
|
] = None,
|
|
2954
3233
|
on_mouse_leave: Optional[
|
|
2955
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3234
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2956
3235
|
] = None,
|
|
2957
3236
|
on_mouse_move: Optional[
|
|
2958
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3237
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2959
3238
|
] = None,
|
|
2960
3239
|
on_mouse_out: Optional[
|
|
2961
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3240
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2962
3241
|
] = None,
|
|
2963
3242
|
on_mouse_over: Optional[
|
|
2964
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3243
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2965
3244
|
] = None,
|
|
2966
3245
|
on_mouse_up: Optional[
|
|
2967
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3246
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
3247
|
+
] = None,
|
|
3248
|
+
on_scroll: Optional[
|
|
3249
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2968
3250
|
] = None,
|
|
2969
|
-
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
2970
3251
|
on_unmount: Optional[
|
|
2971
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
3252
|
+
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
2972
3253
|
] = None,
|
|
2973
3254
|
**props,
|
|
2974
3255
|
) -> "Wbr":
|