reflex 0.6.0a1__py3-none-any.whl → 0.6.0a3__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/__init__.py +8 -2
- reflex/__init__.pyi +2 -1
- reflex/app.py +10 -4
- 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 +17 -27
- reflex/components/base/bare.py +4 -5
- reflex/components/base/body.pyi +17 -27
- reflex/components/base/document.pyi +81 -131
- reflex/components/base/error_boundary.py +6 -7
- reflex/components/base/error_boundary.pyi +20 -33
- reflex/components/base/fragment.pyi +17 -27
- reflex/components/base/head.pyi +33 -53
- reflex/components/base/link.py +1 -1
- reflex/components/base/link.pyi +33 -54
- reflex/components/base/meta.pyi +65 -105
- reflex/components/base/script.py +1 -2
- reflex/components/base/script.pyi +21 -38
- reflex/components/component.py +45 -47
- reflex/components/core/banner.py +23 -27
- reflex/components/core/banner.pyi +134 -171
- reflex/components/core/breakpoints.py +3 -1
- reflex/components/core/client_side_routing.py +2 -3
- reflex/components/core/client_side_routing.pyi +33 -54
- reflex/components/core/clipboard.py +2 -1
- reflex/components/core/clipboard.pyi +20 -33
- reflex/components/core/cond.py +5 -5
- reflex/components/core/debounce.py +5 -5
- reflex/components/core/debounce.pyi +20 -33
- reflex/components/core/foreach.py +3 -4
- reflex/components/core/html.py +1 -1
- reflex/components/core/html.pyi +35 -46
- reflex/components/core/match.py +17 -17
- reflex/components/core/upload.py +17 -23
- reflex/components/core/upload.pyi +78 -124
- reflex/components/datadisplay/code.py +9 -10
- reflex/components/datadisplay/code.pyi +302 -412
- reflex/components/datadisplay/dataeditor.py +8 -10
- reflex/components/datadisplay/dataeditor.pyi +40 -53
- reflex/components/el/element.pyi +17 -27
- reflex/components/el/elements/base.py +1 -1
- reflex/components/el/elements/base.pyi +34 -45
- reflex/components/el/elements/forms.py +16 -16
- reflex/components/el/elements/forms.pyi +554 -707
- reflex/components/el/elements/inline.py +1 -1
- reflex/components/el/elements/inline.pyi +937 -1218
- reflex/components/el/elements/media.py +1 -1
- reflex/components/el/elements/media.pyi +786 -997
- reflex/components/el/elements/metadata.py +3 -6
- reflex/components/el/elements/metadata.pyi +181 -242
- reflex/components/el/elements/other.py +1 -1
- reflex/components/el/elements/other.pyi +235 -306
- reflex/components/el/elements/scripts.py +1 -1
- reflex/components/el/elements/scripts.pyi +109 -140
- reflex/components/el/elements/sectioning.py +0 -2
- reflex/components/el/elements/sectioning.pyi +496 -647
- reflex/components/el/elements/tables.py +1 -1
- reflex/components/el/elements/tables.pyi +351 -452
- reflex/components/el/elements/typography.py +1 -1
- reflex/components/el/elements/typography.pyi +506 -657
- reflex/components/gridjs/datatable.py +6 -9
- reflex/components/gridjs/datatable.pyi +35 -56
- reflex/components/lucide/icon.py +1 -1
- reflex/components/lucide/icon.pyi +33 -54
- reflex/components/markdown/markdown.py +26 -31
- reflex/components/markdown/markdown.pyi +27 -37
- reflex/components/moment/moment.py +13 -12
- reflex/components/moment/moment.pyi +23 -35
- reflex/components/next/base.pyi +17 -27
- reflex/components/next/image.py +1 -1
- reflex/components/next/image.pyi +22 -37
- reflex/components/next/link.py +1 -1
- reflex/components/next/link.pyi +17 -28
- reflex/components/next/video.py +1 -1
- reflex/components/next/video.pyi +17 -28
- reflex/components/plotly/plotly.py +12 -13
- reflex/components/plotly/plotly.pyi +39 -54
- reflex/components/props.py +1 -1
- reflex/components/radix/__init__.pyi +1 -0
- reflex/components/radix/primitives/__init__.pyi +1 -0
- reflex/components/radix/primitives/accordion.py +4 -4
- reflex/components/radix/primitives/accordion.pyi +424 -495
- reflex/components/radix/primitives/base.py +1 -1
- reflex/components/radix/primitives/base.pyi +33 -54
- reflex/components/radix/primitives/drawer.py +1 -1
- reflex/components/radix/primitives/drawer.pyi +172 -273
- reflex/components/radix/primitives/form.py +1 -1
- reflex/components/radix/primitives/form.pyi +257 -364
- reflex/components/radix/primitives/progress.py +1 -1
- reflex/components/radix/primitives/progress.pyi +231 -282
- reflex/components/radix/primitives/slider.py +1 -1
- reflex/components/radix/primitives/slider.pyi +87 -138
- reflex/components/radix/themes/base.py +3 -24
- reflex/components/radix/themes/base.pyi +178 -250
- reflex/components/radix/themes/color_mode.py +5 -5
- reflex/components/radix/themes/color_mode.pyi +187 -220
- reflex/components/radix/themes/components/alert_dialog.py +1 -1
- reflex/components/radix/themes/components/alert_dialog.pyi +136 -207
- reflex/components/radix/themes/components/aspect_ratio.py +1 -1
- reflex/components/radix/themes/components/aspect_ratio.pyi +17 -28
- reflex/components/radix/themes/components/avatar.py +1 -1
- reflex/components/radix/themes/components/avatar.pyi +70 -81
- reflex/components/radix/themes/components/badge.py +1 -1
- reflex/components/radix/themes/components/badge.pyi +88 -99
- reflex/components/radix/themes/components/button.py +1 -1
- reflex/components/radix/themes/components/button.pyi +98 -109
- reflex/components/radix/themes/components/callout.py +1 -1
- reflex/components/radix/themes/components/callout.pyi +322 -373
- reflex/components/radix/themes/components/card.py +1 -1
- reflex/components/radix/themes/components/card.pyi +38 -49
- reflex/components/radix/themes/components/checkbox.py +1 -2
- reflex/components/radix/themes/components/checkbox.pyi +208 -245
- reflex/components/radix/themes/components/checkbox_cards.py +1 -1
- reflex/components/radix/themes/components/checkbox_cards.pyi +94 -115
- reflex/components/radix/themes/components/checkbox_group.py +1 -1
- reflex/components/radix/themes/components/checkbox_group.pyi +86 -107
- reflex/components/radix/themes/components/context_menu.py +1 -1
- reflex/components/radix/themes/components/context_menu.pyi +238 -319
- reflex/components/radix/themes/components/data_list.py +1 -1
- reflex/components/radix/themes/components/data_list.pyi +130 -171
- reflex/components/radix/themes/components/dialog.py +1 -1
- reflex/components/radix/themes/components/dialog.pyi +139 -210
- reflex/components/radix/themes/components/dropdown_menu.py +1 -1
- reflex/components/radix/themes/components/dropdown_menu.pyi +249 -332
- reflex/components/radix/themes/components/hover_card.py +1 -1
- reflex/components/radix/themes/components/hover_card.pyi +90 -131
- reflex/components/radix/themes/components/icon_button.py +2 -3
- reflex/components/radix/themes/components/icon_button.pyi +98 -109
- reflex/components/radix/themes/components/inset.py +1 -1
- reflex/components/radix/themes/components/inset.pyi +47 -58
- reflex/components/radix/themes/components/popover.py +1 -1
- reflex/components/radix/themes/components/popover.pyi +95 -136
- reflex/components/radix/themes/components/progress.py +1 -1
- reflex/components/radix/themes/components/progress.pyi +71 -82
- reflex/components/radix/themes/components/radio.py +1 -1
- reflex/components/radix/themes/components/radio.pyi +69 -80
- reflex/components/radix/themes/components/radio_cards.py +1 -1
- reflex/components/radix/themes/components/radio_cards.pyi +98 -119
- reflex/components/radix/themes/components/radio_group.py +8 -11
- reflex/components/radix/themes/components/radio_group.pyi +228 -271
- reflex/components/radix/themes/components/scroll_area.py +1 -1
- reflex/components/radix/themes/components/scroll_area.pyi +21 -32
- reflex/components/radix/themes/components/segmented_control.py +1 -1
- reflex/components/radix/themes/components/segmented_control.pyi +90 -113
- reflex/components/radix/themes/components/select.py +2 -3
- reflex/components/radix/themes/components/select.pyi +374 -471
- reflex/components/radix/themes/components/separator.py +1 -2
- reflex/components/radix/themes/components/separator.pyi +69 -80
- reflex/components/radix/themes/components/skeleton.py +1 -1
- reflex/components/radix/themes/components/skeleton.pyi +23 -34
- reflex/components/radix/themes/components/slider.py +2 -3
- reflex/components/radix/themes/components/slider.pyi +75 -88
- reflex/components/radix/themes/components/spinner.py +1 -1
- reflex/components/radix/themes/components/spinner.pyi +19 -30
- reflex/components/radix/themes/components/switch.py +1 -1
- reflex/components/radix/themes/components/switch.pyi +71 -84
- reflex/components/radix/themes/components/table.py +1 -1
- reflex/components/radix/themes/components/table.pyi +261 -332
- reflex/components/radix/themes/components/tabs.py +1 -1
- reflex/components/radix/themes/components/tabs.pyi +139 -194
- reflex/components/radix/themes/components/text_area.py +1 -1
- reflex/components/radix/themes/components/text_area.pyi +96 -111
- reflex/components/radix/themes/components/text_field.py +1 -1
- reflex/components/radix/themes/components/text_field.pyi +247 -286
- reflex/components/radix/themes/components/tooltip.py +1 -1
- reflex/components/radix/themes/components/tooltip.pyi +26 -37
- reflex/components/radix/themes/layout/__init__.pyi +1 -0
- reflex/components/radix/themes/layout/base.py +1 -1
- reflex/components/radix/themes/layout/base.pyi +56 -67
- reflex/components/radix/themes/layout/box.pyi +34 -45
- reflex/components/radix/themes/layout/center.pyi +56 -67
- reflex/components/radix/themes/layout/container.py +1 -2
- reflex/components/radix/themes/layout/container.pyi +36 -47
- reflex/components/radix/themes/layout/flex.py +1 -1
- reflex/components/radix/themes/layout/flex.pyi +56 -67
- reflex/components/radix/themes/layout/grid.py +1 -1
- reflex/components/radix/themes/layout/grid.pyi +64 -75
- reflex/components/radix/themes/layout/list.py +5 -6
- reflex/components/radix/themes/layout/list.pyi +193 -244
- reflex/components/radix/themes/layout/section.py +1 -2
- reflex/components/radix/themes/layout/section.pyi +36 -47
- reflex/components/radix/themes/layout/spacer.pyi +56 -67
- reflex/components/radix/themes/layout/stack.py +1 -1
- reflex/components/radix/themes/layout/stack.pyi +128 -159
- reflex/components/radix/themes/typography/blockquote.py +1 -1
- reflex/components/radix/themes/typography/blockquote.pyi +89 -100
- reflex/components/radix/themes/typography/code.py +1 -1
- reflex/components/radix/themes/typography/code.pyi +90 -101
- reflex/components/radix/themes/typography/heading.py +1 -1
- reflex/components/radix/themes/typography/heading.pyi +96 -107
- reflex/components/radix/themes/typography/link.py +1 -1
- reflex/components/radix/themes/typography/link.pyi +102 -113
- reflex/components/radix/themes/typography/text.py +1 -1
- reflex/components/radix/themes/typography/text.pyi +501 -572
- reflex/components/react_player/audio.pyi +33 -60
- reflex/components/react_player/react_player.py +1 -1
- reflex/components/react_player/react_player.pyi +33 -60
- reflex/components/react_player/video.pyi +33 -60
- reflex/components/recharts/cartesian.py +2 -3
- reflex/components/recharts/cartesian.pyi +678 -861
- reflex/components/recharts/charts.py +4 -5
- reflex/components/recharts/charts.pyi +252 -357
- reflex/components/recharts/general.py +1 -2
- reflex/components/recharts/general.pyi +180 -231
- reflex/components/recharts/polar.py +4 -5
- reflex/components/recharts/polar.pyi +144 -181
- reflex/components/recharts/recharts.pyi +33 -53
- reflex/components/sonner/toast.py +16 -17
- reflex/components/sonner/toast.pyi +36 -47
- reflex/components/suneditor/editor.py +2 -3
- reflex/components/suneditor/editor.pyi +55 -78
- reflex/components/tags/cond_tag.py +6 -4
- reflex/components/tags/iter_tag.py +28 -16
- reflex/components/tags/match_tag.py +6 -4
- reflex/components/tags/tag.py +40 -23
- reflex/custom_components/custom_components.py +3 -1
- reflex/event.py +115 -67
- reflex/experimental/client_state.py +18 -18
- reflex/experimental/hooks.py +16 -16
- reflex/experimental/layout.py +5 -5
- reflex/experimental/layout.pyi +136 -187
- reflex/middleware/hydrate_middleware.py +2 -0
- reflex/middleware/middleware.py +3 -3
- reflex/state.py +149 -82
- reflex/style.py +21 -22
- reflex/utils/exceptions.py +20 -0
- reflex/utils/format.py +54 -34
- reflex/utils/imports.py +16 -73
- reflex/utils/prerequisites.py +15 -8
- reflex/utils/pyi_generator.py +13 -8
- reflex/utils/serializers.py +12 -22
- reflex/utils/telemetry.py +3 -2
- reflex/utils/types.py +11 -6
- reflex/{ivars → vars}/__init__.py +6 -2
- reflex/{ivars → vars}/base.py +599 -216
- reflex/{ivars → vars}/function.py +15 -19
- reflex/{ivars → vars}/number.py +41 -20
- reflex/{ivars → vars}/object.py +28 -30
- reflex/{ivars → vars}/sequence.py +53 -42
- {reflex-0.6.0a1.dist-info → reflex-0.6.0a3.dist-info}/METADATA +4 -6
- reflex-0.6.0a3.dist-info/RECORD +382 -0
- reflex/.templates/web/components/reflex/chakra_color_mode_provider.js +0 -36
- reflex/vars.py +0 -501
- reflex-0.6.0a1.dist-info/RECORD +0 -384
- {reflex-0.6.0a1.dist-info → reflex-0.6.0a3.dist-info}/LICENSE +0 -0
- {reflex-0.6.0a1.dist-info → reflex-0.6.0a3.dist-info}/WHEEL +0 -0
- {reflex-0.6.0a1.dist-info → reflex-0.6.0a3.dist-info}/entry_points.txt +0 -0
|
@@ -7,8 +7,7 @@ from typing import Any, Dict, List, Union
|
|
|
7
7
|
from reflex.components.component import MemoizationLeaf
|
|
8
8
|
from reflex.constants.colors import Color
|
|
9
9
|
from reflex.event import EventHandler
|
|
10
|
-
from reflex.
|
|
11
|
-
from reflex.vars import Var
|
|
10
|
+
from reflex.vars.base import LiteralVar, Var
|
|
12
11
|
|
|
13
12
|
from .recharts import (
|
|
14
13
|
LiteralAnimationEasing,
|
|
@@ -8,9 +8,8 @@ from typing import Any, Callable, Dict, Literal, Optional, Union, overload
|
|
|
8
8
|
from reflex.components.component import MemoizationLeaf
|
|
9
9
|
from reflex.constants.colors import Color
|
|
10
10
|
from reflex.event import EventHandler, EventSpec
|
|
11
|
-
from reflex.ivars.base import ImmutableVar
|
|
12
11
|
from reflex.style import Style
|
|
13
|
-
from reflex.vars import Var
|
|
12
|
+
from reflex.vars.base import Var
|
|
14
13
|
|
|
15
14
|
from .recharts import (
|
|
16
15
|
Recharts,
|
|
@@ -33,51 +32,41 @@ class ResponsiveContainer(Recharts, MemoizationLeaf):
|
|
|
33
32
|
id: Optional[Any] = None,
|
|
34
33
|
class_name: Optional[Any] = None,
|
|
35
34
|
autofocus: Optional[bool] = None,
|
|
36
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
37
|
-
on_blur: Optional[
|
|
38
|
-
|
|
39
|
-
] = None,
|
|
40
|
-
on_click: Optional[
|
|
41
|
-
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
42
|
-
] = None,
|
|
35
|
+
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
36
|
+
on_blur: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
37
|
+
on_click: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
43
38
|
on_context_menu: Optional[
|
|
44
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
39
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
45
40
|
] = None,
|
|
46
41
|
on_double_click: Optional[
|
|
47
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
48
|
-
] = None,
|
|
49
|
-
on_focus: Optional[
|
|
50
|
-
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
51
|
-
] = None,
|
|
52
|
-
on_mount: Optional[
|
|
53
|
-
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
42
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
54
43
|
] = None,
|
|
44
|
+
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
45
|
+
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
55
46
|
on_mouse_down: Optional[
|
|
56
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
47
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
57
48
|
] = None,
|
|
58
49
|
on_mouse_enter: Optional[
|
|
59
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
50
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
60
51
|
] = None,
|
|
61
52
|
on_mouse_leave: Optional[
|
|
62
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
53
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
63
54
|
] = None,
|
|
64
55
|
on_mouse_move: Optional[
|
|
65
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
56
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
66
57
|
] = None,
|
|
67
58
|
on_mouse_out: Optional[
|
|
68
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
59
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
69
60
|
] = None,
|
|
70
61
|
on_mouse_over: Optional[
|
|
71
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
62
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
72
63
|
] = None,
|
|
73
64
|
on_mouse_up: Optional[
|
|
74
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
75
|
-
] = None,
|
|
76
|
-
on_scroll: Optional[
|
|
77
|
-
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
65
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
78
66
|
] = None,
|
|
67
|
+
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
79
68
|
on_unmount: Optional[
|
|
80
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
69
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
81
70
|
] = None,
|
|
82
71
|
**props,
|
|
83
72
|
) -> "ResponsiveContainer":
|
|
@@ -114,106 +103,96 @@ class Legend(Recharts):
|
|
|
114
103
|
height: Optional[Union[Var[int], int]] = None,
|
|
115
104
|
layout: Optional[
|
|
116
105
|
Union[
|
|
117
|
-
Var[Literal["horizontal", "vertical"]],
|
|
118
106
|
Literal["horizontal", "vertical"],
|
|
107
|
+
Var[Literal["horizontal", "vertical"]],
|
|
119
108
|
]
|
|
120
109
|
] = None,
|
|
121
110
|
align: Optional[
|
|
122
111
|
Union[
|
|
123
|
-
|
|
124
|
-
Literal["
|
|
112
|
+
Literal["center", "left", "right"],
|
|
113
|
+
Var[Literal["center", "left", "right"]],
|
|
125
114
|
]
|
|
126
115
|
] = None,
|
|
127
116
|
vertical_align: Optional[
|
|
128
117
|
Union[
|
|
129
|
-
|
|
130
|
-
Literal["
|
|
118
|
+
Literal["bottom", "middle", "top"],
|
|
119
|
+
Var[Literal["bottom", "middle", "top"]],
|
|
131
120
|
]
|
|
132
121
|
] = None,
|
|
133
122
|
icon_size: Optional[Union[Var[int], int]] = None,
|
|
134
123
|
icon_type: Optional[
|
|
135
124
|
Union[
|
|
125
|
+
Literal[
|
|
126
|
+
"circle",
|
|
127
|
+
"cross",
|
|
128
|
+
"diamond",
|
|
129
|
+
"line",
|
|
130
|
+
"plainline",
|
|
131
|
+
"rect",
|
|
132
|
+
"square",
|
|
133
|
+
"star",
|
|
134
|
+
"triangle",
|
|
135
|
+
"wye",
|
|
136
|
+
],
|
|
136
137
|
Var[
|
|
137
138
|
Literal[
|
|
138
|
-
"line",
|
|
139
|
-
"plainline",
|
|
140
|
-
"square",
|
|
141
|
-
"rect",
|
|
142
139
|
"circle",
|
|
143
140
|
"cross",
|
|
144
141
|
"diamond",
|
|
142
|
+
"line",
|
|
143
|
+
"plainline",
|
|
144
|
+
"rect",
|
|
145
|
+
"square",
|
|
145
146
|
"star",
|
|
146
147
|
"triangle",
|
|
147
148
|
"wye",
|
|
148
149
|
]
|
|
149
150
|
],
|
|
150
|
-
Literal[
|
|
151
|
-
"line",
|
|
152
|
-
"plainline",
|
|
153
|
-
"square",
|
|
154
|
-
"rect",
|
|
155
|
-
"circle",
|
|
156
|
-
"cross",
|
|
157
|
-
"diamond",
|
|
158
|
-
"star",
|
|
159
|
-
"triangle",
|
|
160
|
-
"wye",
|
|
161
|
-
],
|
|
162
151
|
]
|
|
163
152
|
] = None,
|
|
164
153
|
chart_width: Optional[Union[Var[int], int]] = None,
|
|
165
154
|
chart_height: Optional[Union[Var[int], int]] = None,
|
|
166
|
-
margin: Optional[Union[
|
|
155
|
+
margin: Optional[Union[Dict[str, Any], Var[Dict[str, Any]]]] = None,
|
|
167
156
|
style: Optional[Style] = None,
|
|
168
157
|
key: Optional[Any] = None,
|
|
169
158
|
id: Optional[Any] = None,
|
|
170
159
|
class_name: Optional[Any] = None,
|
|
171
160
|
autofocus: Optional[bool] = None,
|
|
172
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
173
|
-
on_blur: Optional[
|
|
174
|
-
|
|
175
|
-
] = None,
|
|
176
|
-
on_click: Optional[
|
|
177
|
-
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
178
|
-
] = None,
|
|
161
|
+
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
162
|
+
on_blur: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
163
|
+
on_click: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
179
164
|
on_context_menu: Optional[
|
|
180
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
165
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
181
166
|
] = None,
|
|
182
167
|
on_double_click: Optional[
|
|
183
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
184
|
-
] = None,
|
|
185
|
-
on_focus: Optional[
|
|
186
|
-
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
187
|
-
] = None,
|
|
188
|
-
on_mount: Optional[
|
|
189
|
-
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
168
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
190
169
|
] = None,
|
|
170
|
+
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
171
|
+
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
191
172
|
on_mouse_down: Optional[
|
|
192
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
173
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
193
174
|
] = None,
|
|
194
175
|
on_mouse_enter: Optional[
|
|
195
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
176
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
196
177
|
] = None,
|
|
197
178
|
on_mouse_leave: Optional[
|
|
198
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
179
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
199
180
|
] = None,
|
|
200
181
|
on_mouse_move: Optional[
|
|
201
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
182
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
202
183
|
] = None,
|
|
203
184
|
on_mouse_out: Optional[
|
|
204
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
185
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
205
186
|
] = None,
|
|
206
187
|
on_mouse_over: Optional[
|
|
207
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
188
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
208
189
|
] = None,
|
|
209
190
|
on_mouse_up: Optional[
|
|
210
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
211
|
-
] = None,
|
|
212
|
-
on_scroll: Optional[
|
|
213
|
-
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
191
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
214
192
|
] = None,
|
|
193
|
+
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
215
194
|
on_unmount: Optional[
|
|
216
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
195
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
217
196
|
] = None,
|
|
218
197
|
**props,
|
|
219
198
|
) -> "Legend":
|
|
@@ -254,25 +233,25 @@ class GraphingTooltip(Recharts):
|
|
|
254
233
|
offset: Optional[Union[Var[int], int]] = None,
|
|
255
234
|
filter_null: Optional[Union[Var[bool], bool]] = None,
|
|
256
235
|
cursor: Optional[
|
|
257
|
-
Union[
|
|
236
|
+
Union[Dict[str, Any], Var[Union[Dict[str, Any], bool]], bool]
|
|
258
237
|
] = None,
|
|
259
|
-
view_box: Optional[Union[
|
|
260
|
-
item_style: Optional[Union[
|
|
261
|
-
wrapper_style: Optional[Union[
|
|
262
|
-
content_style: Optional[Union[
|
|
263
|
-
label_style: Optional[Union[
|
|
238
|
+
view_box: Optional[Union[Dict[str, Any], Var[Dict[str, Any]]]] = None,
|
|
239
|
+
item_style: Optional[Union[Dict[str, Any], Var[Dict[str, Any]]]] = None,
|
|
240
|
+
wrapper_style: Optional[Union[Dict[str, Any], Var[Dict[str, Any]]]] = None,
|
|
241
|
+
content_style: Optional[Union[Dict[str, Any], Var[Dict[str, Any]]]] = None,
|
|
242
|
+
label_style: Optional[Union[Dict[str, Any], Var[Dict[str, Any]]]] = None,
|
|
264
243
|
allow_escape_view_box: Optional[
|
|
265
|
-
Union[
|
|
244
|
+
Union[Dict[str, bool], Var[Dict[str, bool]]]
|
|
266
245
|
] = None,
|
|
267
246
|
active: Optional[Union[Var[bool], bool]] = None,
|
|
268
|
-
position: Optional[Union[
|
|
269
|
-
coordinate: Optional[Union[
|
|
247
|
+
position: Optional[Union[Dict[str, Any], Var[Dict[str, Any]]]] = None,
|
|
248
|
+
coordinate: Optional[Union[Dict[str, Any], Var[Dict[str, Any]]]] = None,
|
|
270
249
|
is_animation_active: Optional[Union[Var[bool], bool]] = None,
|
|
271
250
|
animation_duration: Optional[Union[Var[int], int]] = None,
|
|
272
251
|
animation_easing: Optional[
|
|
273
252
|
Union[
|
|
274
|
-
|
|
275
|
-
Literal["ease", "ease-in", "ease-out", "ease-
|
|
253
|
+
Literal["ease", "ease-in", "ease-in-out", "ease-out", "linear"],
|
|
254
|
+
Var[Literal["ease", "ease-in", "ease-in-out", "ease-out", "linear"]],
|
|
276
255
|
]
|
|
277
256
|
] = None,
|
|
278
257
|
style: Optional[Style] = None,
|
|
@@ -280,51 +259,41 @@ class GraphingTooltip(Recharts):
|
|
|
280
259
|
id: Optional[Any] = None,
|
|
281
260
|
class_name: Optional[Any] = None,
|
|
282
261
|
autofocus: Optional[bool] = None,
|
|
283
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
284
|
-
on_blur: Optional[
|
|
285
|
-
|
|
286
|
-
] = None,
|
|
287
|
-
on_click: Optional[
|
|
288
|
-
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
289
|
-
] = None,
|
|
262
|
+
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
263
|
+
on_blur: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
264
|
+
on_click: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
290
265
|
on_context_menu: Optional[
|
|
291
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
266
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
292
267
|
] = None,
|
|
293
268
|
on_double_click: Optional[
|
|
294
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
295
|
-
] = None,
|
|
296
|
-
on_focus: Optional[
|
|
297
|
-
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
298
|
-
] = None,
|
|
299
|
-
on_mount: Optional[
|
|
300
|
-
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
269
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
301
270
|
] = None,
|
|
271
|
+
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
272
|
+
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
302
273
|
on_mouse_down: Optional[
|
|
303
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
274
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
304
275
|
] = None,
|
|
305
276
|
on_mouse_enter: Optional[
|
|
306
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
277
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
307
278
|
] = None,
|
|
308
279
|
on_mouse_leave: Optional[
|
|
309
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
280
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
310
281
|
] = None,
|
|
311
282
|
on_mouse_move: Optional[
|
|
312
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
283
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
313
284
|
] = None,
|
|
314
285
|
on_mouse_out: Optional[
|
|
315
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
286
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
316
287
|
] = None,
|
|
317
288
|
on_mouse_over: Optional[
|
|
318
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
289
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
319
290
|
] = None,
|
|
320
291
|
on_mouse_up: Optional[
|
|
321
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
322
|
-
] = None,
|
|
323
|
-
on_scroll: Optional[
|
|
324
|
-
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
292
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
325
293
|
] = None,
|
|
294
|
+
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
326
295
|
on_unmount: Optional[
|
|
327
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
296
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
328
297
|
] = None,
|
|
329
298
|
**props,
|
|
330
299
|
) -> "GraphingTooltip":
|
|
@@ -367,53 +336,53 @@ class Label(Recharts):
|
|
|
367
336
|
def create( # type: ignore
|
|
368
337
|
cls,
|
|
369
338
|
*children,
|
|
370
|
-
view_box: Optional[Union[
|
|
339
|
+
view_box: Optional[Union[Dict[str, Any], Var[Dict[str, Any]]]] = None,
|
|
371
340
|
value: Optional[Union[Var[str], str]] = None,
|
|
372
341
|
offset: Optional[Union[Var[int], int]] = None,
|
|
373
342
|
position: Optional[
|
|
374
343
|
Union[
|
|
344
|
+
Literal[
|
|
345
|
+
"bottom",
|
|
346
|
+
"center",
|
|
347
|
+
"end",
|
|
348
|
+
"inside",
|
|
349
|
+
"insideBottom",
|
|
350
|
+
"insideBottomLeft",
|
|
351
|
+
"insideBottomRight",
|
|
352
|
+
"insideEnd",
|
|
353
|
+
"insideLeft",
|
|
354
|
+
"insideRight",
|
|
355
|
+
"insideStart",
|
|
356
|
+
"insideTop",
|
|
357
|
+
"insideTopLeft",
|
|
358
|
+
"insideTopRight",
|
|
359
|
+
"left",
|
|
360
|
+
"outside",
|
|
361
|
+
"right",
|
|
362
|
+
"top",
|
|
363
|
+
],
|
|
375
364
|
Var[
|
|
376
365
|
Literal[
|
|
377
|
-
"top",
|
|
378
|
-
"left",
|
|
379
|
-
"right",
|
|
380
366
|
"bottom",
|
|
367
|
+
"center",
|
|
368
|
+
"end",
|
|
381
369
|
"inside",
|
|
382
|
-
"
|
|
370
|
+
"insideBottom",
|
|
371
|
+
"insideBottomLeft",
|
|
372
|
+
"insideBottomRight",
|
|
373
|
+
"insideEnd",
|
|
383
374
|
"insideLeft",
|
|
384
375
|
"insideRight",
|
|
376
|
+
"insideStart",
|
|
385
377
|
"insideTop",
|
|
386
|
-
"insideBottom",
|
|
387
378
|
"insideTopLeft",
|
|
388
|
-
"insideBottomLeft",
|
|
389
379
|
"insideTopRight",
|
|
390
|
-
"
|
|
391
|
-
"
|
|
392
|
-
"
|
|
393
|
-
"
|
|
394
|
-
"center",
|
|
380
|
+
"left",
|
|
381
|
+
"outside",
|
|
382
|
+
"right",
|
|
383
|
+
"top",
|
|
395
384
|
]
|
|
396
385
|
],
|
|
397
|
-
Literal[
|
|
398
|
-
"top",
|
|
399
|
-
"left",
|
|
400
|
-
"right",
|
|
401
|
-
"bottom",
|
|
402
|
-
"inside",
|
|
403
|
-
"outside",
|
|
404
|
-
"insideLeft",
|
|
405
|
-
"insideRight",
|
|
406
|
-
"insideTop",
|
|
407
|
-
"insideBottom",
|
|
408
|
-
"insideTopLeft",
|
|
409
|
-
"insideBottomLeft",
|
|
410
|
-
"insideTopRight",
|
|
411
|
-
"insideBottomRight",
|
|
412
|
-
"insideStart",
|
|
413
|
-
"insideEnd",
|
|
414
|
-
"end",
|
|
415
|
-
"center",
|
|
416
|
-
],
|
|
417
386
|
]
|
|
418
387
|
] = None,
|
|
419
388
|
style: Optional[Style] = None,
|
|
@@ -421,51 +390,41 @@ class Label(Recharts):
|
|
|
421
390
|
id: Optional[Any] = None,
|
|
422
391
|
class_name: Optional[Any] = None,
|
|
423
392
|
autofocus: Optional[bool] = None,
|
|
424
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
425
|
-
on_blur: Optional[
|
|
426
|
-
|
|
427
|
-
] = None,
|
|
428
|
-
on_click: Optional[
|
|
429
|
-
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
430
|
-
] = None,
|
|
393
|
+
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
394
|
+
on_blur: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
395
|
+
on_click: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
431
396
|
on_context_menu: Optional[
|
|
432
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
397
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
433
398
|
] = None,
|
|
434
399
|
on_double_click: Optional[
|
|
435
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
436
|
-
] = None,
|
|
437
|
-
on_focus: Optional[
|
|
438
|
-
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
439
|
-
] = None,
|
|
440
|
-
on_mount: Optional[
|
|
441
|
-
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
400
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
442
401
|
] = None,
|
|
402
|
+
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
403
|
+
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
443
404
|
on_mouse_down: Optional[
|
|
444
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
405
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
445
406
|
] = None,
|
|
446
407
|
on_mouse_enter: Optional[
|
|
447
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
408
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
448
409
|
] = None,
|
|
449
410
|
on_mouse_leave: Optional[
|
|
450
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
411
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
451
412
|
] = None,
|
|
452
413
|
on_mouse_move: Optional[
|
|
453
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
414
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
454
415
|
] = None,
|
|
455
416
|
on_mouse_out: Optional[
|
|
456
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
417
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
457
418
|
] = None,
|
|
458
419
|
on_mouse_over: Optional[
|
|
459
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
420
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
460
421
|
] = None,
|
|
461
422
|
on_mouse_up: Optional[
|
|
462
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
463
|
-
] = None,
|
|
464
|
-
on_scroll: Optional[
|
|
465
|
-
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
423
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
466
424
|
] = None,
|
|
425
|
+
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
467
426
|
on_unmount: Optional[
|
|
468
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
427
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
469
428
|
] = None,
|
|
470
429
|
**props,
|
|
471
430
|
) -> "Label":
|
|
@@ -496,106 +455,96 @@ class LabelList(Recharts):
|
|
|
496
455
|
def create( # type: ignore
|
|
497
456
|
cls,
|
|
498
457
|
*children,
|
|
499
|
-
data_key: Optional[Union[Var[Union[int, str]],
|
|
458
|
+
data_key: Optional[Union[Var[Union[int, str]], int, str]] = None,
|
|
500
459
|
position: Optional[
|
|
501
460
|
Union[
|
|
461
|
+
Literal[
|
|
462
|
+
"bottom",
|
|
463
|
+
"center",
|
|
464
|
+
"end",
|
|
465
|
+
"inside",
|
|
466
|
+
"insideBottom",
|
|
467
|
+
"insideBottomLeft",
|
|
468
|
+
"insideBottomRight",
|
|
469
|
+
"insideEnd",
|
|
470
|
+
"insideLeft",
|
|
471
|
+
"insideRight",
|
|
472
|
+
"insideStart",
|
|
473
|
+
"insideTop",
|
|
474
|
+
"insideTopLeft",
|
|
475
|
+
"insideTopRight",
|
|
476
|
+
"left",
|
|
477
|
+
"outside",
|
|
478
|
+
"right",
|
|
479
|
+
"top",
|
|
480
|
+
],
|
|
502
481
|
Var[
|
|
503
482
|
Literal[
|
|
504
|
-
"top",
|
|
505
|
-
"left",
|
|
506
|
-
"right",
|
|
507
483
|
"bottom",
|
|
484
|
+
"center",
|
|
485
|
+
"end",
|
|
508
486
|
"inside",
|
|
509
|
-
"
|
|
487
|
+
"insideBottom",
|
|
488
|
+
"insideBottomLeft",
|
|
489
|
+
"insideBottomRight",
|
|
490
|
+
"insideEnd",
|
|
510
491
|
"insideLeft",
|
|
511
492
|
"insideRight",
|
|
493
|
+
"insideStart",
|
|
512
494
|
"insideTop",
|
|
513
|
-
"insideBottom",
|
|
514
495
|
"insideTopLeft",
|
|
515
|
-
"insideBottomLeft",
|
|
516
496
|
"insideTopRight",
|
|
517
|
-
"
|
|
518
|
-
"
|
|
519
|
-
"
|
|
520
|
-
"
|
|
521
|
-
"center",
|
|
497
|
+
"left",
|
|
498
|
+
"outside",
|
|
499
|
+
"right",
|
|
500
|
+
"top",
|
|
522
501
|
]
|
|
523
502
|
],
|
|
524
|
-
Literal[
|
|
525
|
-
"top",
|
|
526
|
-
"left",
|
|
527
|
-
"right",
|
|
528
|
-
"bottom",
|
|
529
|
-
"inside",
|
|
530
|
-
"outside",
|
|
531
|
-
"insideLeft",
|
|
532
|
-
"insideRight",
|
|
533
|
-
"insideTop",
|
|
534
|
-
"insideBottom",
|
|
535
|
-
"insideTopLeft",
|
|
536
|
-
"insideBottomLeft",
|
|
537
|
-
"insideTopRight",
|
|
538
|
-
"insideBottomRight",
|
|
539
|
-
"insideStart",
|
|
540
|
-
"insideEnd",
|
|
541
|
-
"end",
|
|
542
|
-
"center",
|
|
543
|
-
],
|
|
544
503
|
]
|
|
545
504
|
] = None,
|
|
546
505
|
offset: Optional[Union[Var[int], int]] = None,
|
|
547
|
-
fill: Optional[Union[Var[Union[Color, str]], str
|
|
548
|
-
stroke: Optional[Union[Var[Union[Color, str]], str
|
|
506
|
+
fill: Optional[Union[Color, Var[Union[Color, str]], str]] = None,
|
|
507
|
+
stroke: Optional[Union[Color, Var[Union[Color, str]], str]] = None,
|
|
549
508
|
style: Optional[Style] = None,
|
|
550
509
|
key: Optional[Any] = None,
|
|
551
510
|
id: Optional[Any] = None,
|
|
552
511
|
class_name: Optional[Any] = None,
|
|
553
512
|
autofocus: Optional[bool] = None,
|
|
554
|
-
custom_attrs: Optional[Dict[str, Union[
|
|
555
|
-
on_blur: Optional[
|
|
556
|
-
|
|
557
|
-
] = None,
|
|
558
|
-
on_click: Optional[
|
|
559
|
-
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
560
|
-
] = None,
|
|
513
|
+
custom_attrs: Optional[Dict[str, Union[Var, str]]] = None,
|
|
514
|
+
on_blur: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
515
|
+
on_click: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
561
516
|
on_context_menu: Optional[
|
|
562
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
517
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
563
518
|
] = None,
|
|
564
519
|
on_double_click: Optional[
|
|
565
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
566
|
-
] = None,
|
|
567
|
-
on_focus: Optional[
|
|
568
|
-
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
569
|
-
] = None,
|
|
570
|
-
on_mount: Optional[
|
|
571
|
-
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
520
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
572
521
|
] = None,
|
|
522
|
+
on_focus: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
523
|
+
on_mount: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
573
524
|
on_mouse_down: Optional[
|
|
574
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
525
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
575
526
|
] = None,
|
|
576
527
|
on_mouse_enter: Optional[
|
|
577
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
528
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
578
529
|
] = None,
|
|
579
530
|
on_mouse_leave: Optional[
|
|
580
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
531
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
581
532
|
] = None,
|
|
582
533
|
on_mouse_move: Optional[
|
|
583
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
534
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
584
535
|
] = None,
|
|
585
536
|
on_mouse_out: Optional[
|
|
586
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
537
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
587
538
|
] = None,
|
|
588
539
|
on_mouse_over: Optional[
|
|
589
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
540
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
590
541
|
] = None,
|
|
591
542
|
on_mouse_up: Optional[
|
|
592
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
593
|
-
] = None,
|
|
594
|
-
on_scroll: Optional[
|
|
595
|
-
Union[EventHandler, EventSpec, list, Callable, ImmutableVar]
|
|
543
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
596
544
|
] = None,
|
|
545
|
+
on_scroll: Optional[Union[EventHandler, EventSpec, list, Callable, Var]] = None,
|
|
597
546
|
on_unmount: Optional[
|
|
598
|
-
Union[EventHandler, EventSpec, list, Callable,
|
|
547
|
+
Union[EventHandler, EventSpec, list, Callable, Var]
|
|
599
548
|
] = None,
|
|
600
549
|
**props,
|
|
601
550
|
) -> "LabelList":
|