reflex 0.6.8a2__py3-none-any.whl → 0.7.0__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 +1 -1
- reflex/.templates/jinja/web/pages/_app.js.jinja2 +7 -7
- reflex/.templates/jinja/web/pages/utils.js.jinja2 +3 -3
- reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js +1 -4
- reflex/.templates/web/utils/state.js +65 -36
- reflex/__init__.py +4 -17
- reflex/__init__.pyi +1 -2
- reflex/app.py +286 -129
- reflex/app_mixins/lifespan.py +9 -9
- reflex/app_mixins/middleware.py +6 -6
- reflex/app_module_for_backend.py +3 -7
- reflex/base.py +7 -7
- reflex/compiler/compiler.py +8 -0
- reflex/compiler/utils.py +57 -18
- reflex/components/base/app_wrap.pyi +16 -16
- reflex/components/base/bare.py +1 -1
- reflex/components/base/body.pyi +16 -16
- reflex/components/base/document.pyi +76 -76
- reflex/components/base/error_boundary.py +2 -1
- reflex/components/base/error_boundary.pyi +19 -22
- reflex/components/base/fragment.pyi +16 -16
- reflex/components/base/head.pyi +31 -31
- reflex/components/base/link.pyi +31 -31
- reflex/components/base/meta.py +2 -2
- reflex/components/base/meta.pyi +61 -61
- reflex/components/base/script.pyi +19 -19
- reflex/components/base/strict_mode.py +10 -0
- reflex/components/base/strict_mode.pyi +57 -0
- reflex/components/component.py +38 -77
- reflex/components/core/banner.py +159 -4
- reflex/components/core/banner.pyi +162 -76
- reflex/components/core/breakpoints.py +3 -1
- reflex/components/core/client_side_routing.py +1 -1
- reflex/components/core/client_side_routing.pyi +32 -32
- reflex/components/core/clipboard.pyi +17 -20
- reflex/components/core/cond.py +9 -10
- reflex/components/core/debounce.py +1 -1
- reflex/components/core/debounce.pyi +17 -17
- reflex/components/core/foreach.py +28 -3
- reflex/components/core/html.py +1 -1
- reflex/components/core/html.pyi +16 -16
- reflex/components/core/match.py +5 -5
- reflex/components/core/sticky.py +134 -0
- reflex/components/core/sticky.pyi +449 -0
- reflex/components/core/upload.py +2 -2
- reflex/components/core/upload.pyi +80 -88
- reflex/components/datadisplay/code.py +5 -14
- reflex/components/datadisplay/code.pyi +31 -31
- reflex/components/datadisplay/dataeditor.py +7 -4
- reflex/components/datadisplay/dataeditor.pyi +40 -54
- reflex/components/datadisplay/logo.py +13 -8
- reflex/components/datadisplay/shiki_code_block.py +14 -9
- reflex/components/datadisplay/shiki_code_block.pyi +46 -46
- reflex/components/dynamic.py +22 -3
- reflex/components/el/constants/reflex.py +1 -1
- reflex/components/el/element.py +1 -1
- reflex/components/el/element.pyi +16 -16
- reflex/components/el/elements/base.pyi +16 -16
- reflex/components/el/elements/forms.py +4 -4
- reflex/components/el/elements/forms.pyi +224 -258
- reflex/components/el/elements/inline.pyi +421 -421
- reflex/components/el/elements/media.pyi +376 -376
- reflex/components/el/elements/metadata.pyi +91 -91
- reflex/components/el/elements/other.pyi +106 -106
- reflex/components/el/elements/scripts.pyi +46 -46
- reflex/components/el/elements/sectioning.pyi +226 -226
- reflex/components/el/elements/tables.pyi +151 -151
- reflex/components/el/elements/typography.pyi +226 -226
- reflex/components/gridjs/datatable.pyi +31 -31
- reflex/components/lucide/icon.py +46 -8
- reflex/components/lucide/icon.pyi +85 -31
- reflex/components/markdown/markdown.py +10 -8
- reflex/components/markdown/markdown.pyi +16 -16
- reflex/components/moment/moment.py +2 -2
- reflex/components/moment/moment.pyi +17 -19
- reflex/components/next/base.pyi +16 -16
- reflex/components/next/image.py +16 -4
- reflex/components/next/image.pyi +22 -20
- reflex/components/next/link.py +1 -1
- reflex/components/next/link.pyi +16 -16
- reflex/components/next/video.pyi +16 -16
- reflex/components/plotly/__init__.py +29 -2
- reflex/components/plotly/plotly.py +240 -5
- reflex/components/plotly/plotly.pyi +799 -44
- reflex/components/props.py +3 -3
- reflex/components/radix/__init__.pyi +1 -1
- reflex/components/radix/primitives/accordion.py +9 -5
- reflex/components/radix/primitives/accordion.pyi +110 -108
- reflex/components/radix/primitives/base.pyi +31 -31
- reflex/components/radix/primitives/drawer.py +5 -2
- reflex/components/radix/primitives/drawer.pyi +179 -187
- reflex/components/radix/primitives/form.pyi +160 -172
- reflex/components/radix/primitives/progress.py +1 -1
- reflex/components/radix/primitives/progress.pyi +76 -76
- reflex/components/radix/primitives/slider.py +1 -1
- reflex/components/radix/primitives/slider.pyi +78 -82
- reflex/components/radix/themes/base.pyi +121 -121
- reflex/components/radix/themes/color_mode.py +11 -9
- reflex/components/radix/themes/color_mode.pyi +47 -49
- reflex/components/radix/themes/components/alert_dialog.py +3 -0
- reflex/components/radix/themes/components/alert_dialog.pyi +110 -112
- reflex/components/radix/themes/components/aspect_ratio.pyi +16 -16
- reflex/components/radix/themes/components/avatar.pyi +16 -16
- reflex/components/radix/themes/components/badge.pyi +16 -16
- reflex/components/radix/themes/components/button.pyi +16 -16
- reflex/components/radix/themes/components/callout.pyi +76 -76
- reflex/components/radix/themes/components/card.py +1 -1
- reflex/components/radix/themes/components/card.pyi +17 -17
- reflex/components/radix/themes/components/checkbox.pyi +49 -55
- reflex/components/radix/themes/components/checkbox_cards.pyi +31 -31
- reflex/components/radix/themes/components/checkbox_group.pyi +31 -31
- reflex/components/radix/themes/components/context_menu.py +5 -0
- reflex/components/radix/themes/components/context_menu.pyi +149 -155
- reflex/components/radix/themes/components/data_list.pyi +61 -61
- reflex/components/radix/themes/components/dialog.py +3 -0
- reflex/components/radix/themes/components/dialog.pyi +113 -117
- reflex/components/radix/themes/components/dropdown_menu.py +5 -0
- reflex/components/radix/themes/components/dropdown_menu.pyi +133 -137
- reflex/components/radix/themes/components/hover_card.py +3 -0
- reflex/components/radix/themes/components/hover_card.pyi +63 -67
- reflex/components/radix/themes/components/icon_button.py +2 -2
- reflex/components/radix/themes/components/icon_button.pyi +17 -16
- reflex/components/radix/themes/components/inset.pyi +16 -16
- reflex/components/radix/themes/components/popover.py +3 -0
- reflex/components/radix/themes/components/popover.pyi +68 -70
- reflex/components/radix/themes/components/progress.pyi +16 -16
- reflex/components/radix/themes/components/radio.pyi +16 -16
- reflex/components/radix/themes/components/radio_cards.py +2 -0
- reflex/components/radix/themes/components/radio_cards.pyi +32 -34
- reflex/components/radix/themes/components/radio_group.py +1 -1
- reflex/components/radix/themes/components/radio_group.pyi +62 -64
- reflex/components/radix/themes/components/scroll_area.pyi +16 -16
- reflex/components/radix/themes/components/segmented_control.pyi +32 -35
- reflex/components/radix/themes/components/select.py +4 -0
- reflex/components/radix/themes/components/select.pyi +145 -157
- reflex/components/radix/themes/components/separator.pyi +16 -16
- reflex/components/radix/themes/components/skeleton.py +3 -0
- reflex/components/radix/themes/components/skeleton.pyi +16 -16
- reflex/components/radix/themes/components/slider.pyi +22 -28
- reflex/components/radix/themes/components/spinner.pyi +16 -16
- reflex/components/radix/themes/components/switch.pyi +17 -19
- reflex/components/radix/themes/components/table.pyi +106 -106
- reflex/components/radix/themes/components/tabs.py +3 -0
- reflex/components/radix/themes/components/tabs.pyi +78 -82
- reflex/components/radix/themes/components/text_area.py +12 -0
- reflex/components/radix/themes/components/text_area.pyi +21 -33
- reflex/components/radix/themes/components/text_field.py +1 -1
- reflex/components/radix/themes/components/text_field.pyi +52 -80
- reflex/components/radix/themes/components/tooltip.py +6 -1
- reflex/components/radix/themes/components/tooltip.pyi +20 -21
- reflex/components/radix/themes/layout/__init__.pyi +1 -1
- reflex/components/radix/themes/layout/base.pyi +16 -16
- reflex/components/radix/themes/layout/box.pyi +16 -16
- reflex/components/radix/themes/layout/center.pyi +16 -16
- reflex/components/radix/themes/layout/container.pyi +16 -16
- reflex/components/radix/themes/layout/flex.pyi +16 -16
- reflex/components/radix/themes/layout/grid.pyi +16 -16
- reflex/components/radix/themes/layout/list.py +2 -2
- reflex/components/radix/themes/layout/list.pyi +76 -76
- reflex/components/radix/themes/layout/section.pyi +16 -16
- reflex/components/radix/themes/layout/spacer.pyi +16 -16
- reflex/components/radix/themes/layout/stack.py +2 -2
- reflex/components/radix/themes/layout/stack.pyi +46 -46
- reflex/components/radix/themes/typography/blockquote.pyi +16 -16
- reflex/components/radix/themes/typography/code.pyi +16 -16
- reflex/components/radix/themes/typography/heading.pyi +16 -16
- reflex/components/radix/themes/typography/link.py +1 -1
- reflex/components/radix/themes/typography/link.pyi +16 -16
- reflex/components/radix/themes/typography/text.py +2 -2
- reflex/components/radix/themes/typography/text.pyi +106 -106
- reflex/components/react_player/audio.pyi +33 -39
- reflex/components/react_player/react_player.py +1 -1
- reflex/components/react_player/react_player.pyi +32 -38
- reflex/components/react_player/video.pyi +33 -39
- reflex/components/recharts/__init__.py +2 -0
- reflex/components/recharts/__init__.pyi +2 -0
- reflex/components/recharts/cartesian.pyi +282 -282
- reflex/components/recharts/charts.py +15 -15
- reflex/components/recharts/charts.pyi +164 -164
- reflex/components/recharts/general.py +19 -4
- reflex/components/recharts/general.pyi +132 -81
- reflex/components/recharts/polar.py +2 -2
- reflex/components/recharts/polar.pyi +55 -55
- reflex/components/recharts/recharts.py +4 -4
- reflex/components/recharts/recharts.pyi +31 -31
- reflex/components/sonner/toast.py +15 -13
- reflex/components/sonner/toast.pyi +22 -22
- reflex/components/suneditor/editor.py +6 -4
- reflex/components/suneditor/editor.pyi +26 -40
- reflex/components/tags/iter_tag.py +3 -3
- reflex/components/tags/tag.py +25 -3
- reflex/config.py +48 -15
- reflex/constants/__init__.py +1 -0
- reflex/constants/base.py +4 -1
- reflex/constants/compiler.py +5 -2
- reflex/constants/config.py +8 -1
- reflex/constants/installer.py +9 -9
- reflex/constants/style.py +1 -1
- reflex/custom_components/custom_components.py +18 -10
- reflex/event.py +221 -231
- reflex/experimental/__init__.py +19 -11
- reflex/experimental/client_state.py +53 -28
- reflex/experimental/hooks.py +5 -5
- reflex/experimental/layout.py +8 -5
- reflex/experimental/layout.pyi +79 -83
- reflex/experimental/misc.py +3 -3
- reflex/istate/wrappers.py +1 -1
- reflex/middleware/hydrate_middleware.py +2 -2
- reflex/model.py +11 -6
- reflex/page.py +5 -5
- reflex/reflex.py +104 -26
- reflex/route.py +1 -1
- reflex/state.py +358 -401
- reflex/style.py +27 -3
- reflex/testing.py +29 -23
- reflex/utils/build.py +6 -2
- reflex/utils/codespaces.py +1 -4
- reflex/utils/compat.py +6 -5
- reflex/utils/console.py +71 -16
- reflex/utils/exceptions.py +89 -26
- reflex/utils/exec.py +69 -74
- reflex/utils/export.py +6 -1
- reflex/utils/format.py +8 -40
- reflex/utils/imports.py +5 -2
- reflex/utils/lazy_loader.py +7 -1
- reflex/utils/path_ops.py +74 -14
- reflex/utils/prerequisites.py +345 -68
- reflex/utils/processes.py +45 -32
- reflex/utils/pyi_generator.py +39 -33
- reflex/utils/registry.py +4 -4
- reflex/utils/serializers.py +1 -1
- reflex/utils/telemetry.py +5 -4
- reflex/utils/types.py +42 -18
- reflex/vars/base.py +695 -330
- reflex/vars/datetime.py +6 -7
- reflex/vars/dep_tracking.py +344 -0
- reflex/vars/function.py +11 -5
- reflex/vars/number.py +31 -43
- reflex/vars/object.py +74 -64
- reflex/vars/sequence.py +79 -67
- {reflex-0.6.8a2.dist-info → reflex-0.7.0.dist-info}/METADATA +7 -8
- reflex-0.7.0.dist-info/RECORD +401 -0
- {reflex-0.6.8a2.dist-info → reflex-0.7.0.dist-info}/WHEEL +1 -1
- reflex/experimental/assets.py +0 -37
- reflex-0.6.8a2.dist-info/RECORD +0 -397
- {reflex-0.6.8a2.dist-info → reflex-0.7.0.dist-info}/LICENSE +0 -0
- {reflex-0.6.8a2.dist-info → reflex-0.7.0.dist-info}/entry_points.txt +0 -0
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
# ------------------------------------------------------
|
|
6
6
|
from typing import Any, Dict, Optional, Union, overload
|
|
7
7
|
|
|
8
|
-
from reflex.event import
|
|
8
|
+
from reflex.event import EventType
|
|
9
9
|
from reflex.style import Style
|
|
10
10
|
from reflex.vars.base import Var
|
|
11
11
|
|
|
@@ -47,21 +47,21 @@ class Body(BaseHTML):
|
|
|
47
47
|
class_name: Optional[Any] = None,
|
|
48
48
|
autofocus: Optional[bool] = None,
|
|
49
49
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
50
|
-
on_blur: Optional[EventType[
|
|
51
|
-
on_click: Optional[EventType[
|
|
52
|
-
on_context_menu: Optional[EventType[
|
|
53
|
-
on_double_click: Optional[EventType[
|
|
54
|
-
on_focus: Optional[EventType[
|
|
55
|
-
on_mount: Optional[EventType[
|
|
56
|
-
on_mouse_down: Optional[EventType[
|
|
57
|
-
on_mouse_enter: Optional[EventType[
|
|
58
|
-
on_mouse_leave: Optional[EventType[
|
|
59
|
-
on_mouse_move: Optional[EventType[
|
|
60
|
-
on_mouse_out: Optional[EventType[
|
|
61
|
-
on_mouse_over: Optional[EventType[
|
|
62
|
-
on_mouse_up: Optional[EventType[
|
|
63
|
-
on_scroll: Optional[EventType[
|
|
64
|
-
on_unmount: Optional[EventType[
|
|
50
|
+
on_blur: Optional[EventType[()]] = None,
|
|
51
|
+
on_click: Optional[EventType[()]] = None,
|
|
52
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
53
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
54
|
+
on_focus: Optional[EventType[()]] = None,
|
|
55
|
+
on_mount: Optional[EventType[()]] = None,
|
|
56
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
57
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
58
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
59
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
60
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
61
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
62
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
63
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
64
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
65
65
|
**props,
|
|
66
66
|
) -> "Body":
|
|
67
67
|
"""Create the component.
|
|
@@ -133,21 +133,21 @@ class Address(BaseHTML):
|
|
|
133
133
|
class_name: Optional[Any] = None,
|
|
134
134
|
autofocus: Optional[bool] = None,
|
|
135
135
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
136
|
-
on_blur: Optional[EventType[
|
|
137
|
-
on_click: Optional[EventType[
|
|
138
|
-
on_context_menu: Optional[EventType[
|
|
139
|
-
on_double_click: Optional[EventType[
|
|
140
|
-
on_focus: Optional[EventType[
|
|
141
|
-
on_mount: Optional[EventType[
|
|
142
|
-
on_mouse_down: Optional[EventType[
|
|
143
|
-
on_mouse_enter: Optional[EventType[
|
|
144
|
-
on_mouse_leave: Optional[EventType[
|
|
145
|
-
on_mouse_move: Optional[EventType[
|
|
146
|
-
on_mouse_out: Optional[EventType[
|
|
147
|
-
on_mouse_over: Optional[EventType[
|
|
148
|
-
on_mouse_up: Optional[EventType[
|
|
149
|
-
on_scroll: Optional[EventType[
|
|
150
|
-
on_unmount: Optional[EventType[
|
|
136
|
+
on_blur: Optional[EventType[()]] = None,
|
|
137
|
+
on_click: Optional[EventType[()]] = None,
|
|
138
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
139
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
140
|
+
on_focus: Optional[EventType[()]] = None,
|
|
141
|
+
on_mount: Optional[EventType[()]] = None,
|
|
142
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
143
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
144
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
145
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
146
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
147
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
148
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
149
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
150
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
151
151
|
**props,
|
|
152
152
|
) -> "Address":
|
|
153
153
|
"""Create the component.
|
|
@@ -219,21 +219,21 @@ class Article(BaseHTML):
|
|
|
219
219
|
class_name: Optional[Any] = None,
|
|
220
220
|
autofocus: Optional[bool] = None,
|
|
221
221
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
222
|
-
on_blur: Optional[EventType[
|
|
223
|
-
on_click: Optional[EventType[
|
|
224
|
-
on_context_menu: Optional[EventType[
|
|
225
|
-
on_double_click: Optional[EventType[
|
|
226
|
-
on_focus: Optional[EventType[
|
|
227
|
-
on_mount: Optional[EventType[
|
|
228
|
-
on_mouse_down: Optional[EventType[
|
|
229
|
-
on_mouse_enter: Optional[EventType[
|
|
230
|
-
on_mouse_leave: Optional[EventType[
|
|
231
|
-
on_mouse_move: Optional[EventType[
|
|
232
|
-
on_mouse_out: Optional[EventType[
|
|
233
|
-
on_mouse_over: Optional[EventType[
|
|
234
|
-
on_mouse_up: Optional[EventType[
|
|
235
|
-
on_scroll: Optional[EventType[
|
|
236
|
-
on_unmount: Optional[EventType[
|
|
222
|
+
on_blur: Optional[EventType[()]] = None,
|
|
223
|
+
on_click: Optional[EventType[()]] = None,
|
|
224
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
225
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
226
|
+
on_focus: Optional[EventType[()]] = None,
|
|
227
|
+
on_mount: Optional[EventType[()]] = None,
|
|
228
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
229
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
230
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
231
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
232
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
233
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
234
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
235
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
236
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
237
237
|
**props,
|
|
238
238
|
) -> "Article":
|
|
239
239
|
"""Create the component.
|
|
@@ -305,21 +305,21 @@ class Aside(BaseHTML):
|
|
|
305
305
|
class_name: Optional[Any] = None,
|
|
306
306
|
autofocus: Optional[bool] = None,
|
|
307
307
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
308
|
-
on_blur: Optional[EventType[
|
|
309
|
-
on_click: Optional[EventType[
|
|
310
|
-
on_context_menu: Optional[EventType[
|
|
311
|
-
on_double_click: Optional[EventType[
|
|
312
|
-
on_focus: Optional[EventType[
|
|
313
|
-
on_mount: Optional[EventType[
|
|
314
|
-
on_mouse_down: Optional[EventType[
|
|
315
|
-
on_mouse_enter: Optional[EventType[
|
|
316
|
-
on_mouse_leave: Optional[EventType[
|
|
317
|
-
on_mouse_move: Optional[EventType[
|
|
318
|
-
on_mouse_out: Optional[EventType[
|
|
319
|
-
on_mouse_over: Optional[EventType[
|
|
320
|
-
on_mouse_up: Optional[EventType[
|
|
321
|
-
on_scroll: Optional[EventType[
|
|
322
|
-
on_unmount: Optional[EventType[
|
|
308
|
+
on_blur: Optional[EventType[()]] = None,
|
|
309
|
+
on_click: Optional[EventType[()]] = None,
|
|
310
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
311
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
312
|
+
on_focus: Optional[EventType[()]] = None,
|
|
313
|
+
on_mount: Optional[EventType[()]] = None,
|
|
314
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
315
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
316
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
317
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
318
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
319
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
320
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
321
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
322
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
323
323
|
**props,
|
|
324
324
|
) -> "Aside":
|
|
325
325
|
"""Create the component.
|
|
@@ -391,21 +391,21 @@ class Footer(BaseHTML):
|
|
|
391
391
|
class_name: Optional[Any] = None,
|
|
392
392
|
autofocus: Optional[bool] = None,
|
|
393
393
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
394
|
-
on_blur: Optional[EventType[
|
|
395
|
-
on_click: Optional[EventType[
|
|
396
|
-
on_context_menu: Optional[EventType[
|
|
397
|
-
on_double_click: Optional[EventType[
|
|
398
|
-
on_focus: Optional[EventType[
|
|
399
|
-
on_mount: Optional[EventType[
|
|
400
|
-
on_mouse_down: Optional[EventType[
|
|
401
|
-
on_mouse_enter: Optional[EventType[
|
|
402
|
-
on_mouse_leave: Optional[EventType[
|
|
403
|
-
on_mouse_move: Optional[EventType[
|
|
404
|
-
on_mouse_out: Optional[EventType[
|
|
405
|
-
on_mouse_over: Optional[EventType[
|
|
406
|
-
on_mouse_up: Optional[EventType[
|
|
407
|
-
on_scroll: Optional[EventType[
|
|
408
|
-
on_unmount: Optional[EventType[
|
|
394
|
+
on_blur: Optional[EventType[()]] = None,
|
|
395
|
+
on_click: Optional[EventType[()]] = None,
|
|
396
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
397
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
398
|
+
on_focus: Optional[EventType[()]] = None,
|
|
399
|
+
on_mount: Optional[EventType[()]] = None,
|
|
400
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
401
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
402
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
403
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
404
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
405
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
406
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
407
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
408
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
409
409
|
**props,
|
|
410
410
|
) -> "Footer":
|
|
411
411
|
"""Create the component.
|
|
@@ -477,21 +477,21 @@ class Header(BaseHTML):
|
|
|
477
477
|
class_name: Optional[Any] = None,
|
|
478
478
|
autofocus: Optional[bool] = None,
|
|
479
479
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
480
|
-
on_blur: Optional[EventType[
|
|
481
|
-
on_click: Optional[EventType[
|
|
482
|
-
on_context_menu: Optional[EventType[
|
|
483
|
-
on_double_click: Optional[EventType[
|
|
484
|
-
on_focus: Optional[EventType[
|
|
485
|
-
on_mount: Optional[EventType[
|
|
486
|
-
on_mouse_down: Optional[EventType[
|
|
487
|
-
on_mouse_enter: Optional[EventType[
|
|
488
|
-
on_mouse_leave: Optional[EventType[
|
|
489
|
-
on_mouse_move: Optional[EventType[
|
|
490
|
-
on_mouse_out: Optional[EventType[
|
|
491
|
-
on_mouse_over: Optional[EventType[
|
|
492
|
-
on_mouse_up: Optional[EventType[
|
|
493
|
-
on_scroll: Optional[EventType[
|
|
494
|
-
on_unmount: Optional[EventType[
|
|
480
|
+
on_blur: Optional[EventType[()]] = None,
|
|
481
|
+
on_click: Optional[EventType[()]] = None,
|
|
482
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
483
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
484
|
+
on_focus: Optional[EventType[()]] = None,
|
|
485
|
+
on_mount: Optional[EventType[()]] = None,
|
|
486
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
487
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
488
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
489
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
490
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
491
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
492
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
493
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
494
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
495
495
|
**props,
|
|
496
496
|
) -> "Header":
|
|
497
497
|
"""Create the component.
|
|
@@ -563,21 +563,21 @@ class H1(BaseHTML):
|
|
|
563
563
|
class_name: Optional[Any] = None,
|
|
564
564
|
autofocus: Optional[bool] = None,
|
|
565
565
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
566
|
-
on_blur: Optional[EventType[
|
|
567
|
-
on_click: Optional[EventType[
|
|
568
|
-
on_context_menu: Optional[EventType[
|
|
569
|
-
on_double_click: Optional[EventType[
|
|
570
|
-
on_focus: Optional[EventType[
|
|
571
|
-
on_mount: Optional[EventType[
|
|
572
|
-
on_mouse_down: Optional[EventType[
|
|
573
|
-
on_mouse_enter: Optional[EventType[
|
|
574
|
-
on_mouse_leave: Optional[EventType[
|
|
575
|
-
on_mouse_move: Optional[EventType[
|
|
576
|
-
on_mouse_out: Optional[EventType[
|
|
577
|
-
on_mouse_over: Optional[EventType[
|
|
578
|
-
on_mouse_up: Optional[EventType[
|
|
579
|
-
on_scroll: Optional[EventType[
|
|
580
|
-
on_unmount: Optional[EventType[
|
|
566
|
+
on_blur: Optional[EventType[()]] = None,
|
|
567
|
+
on_click: Optional[EventType[()]] = None,
|
|
568
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
569
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
570
|
+
on_focus: Optional[EventType[()]] = None,
|
|
571
|
+
on_mount: Optional[EventType[()]] = None,
|
|
572
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
573
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
574
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
575
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
576
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
577
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
578
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
579
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
580
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
581
581
|
**props,
|
|
582
582
|
) -> "H1":
|
|
583
583
|
"""Create the component.
|
|
@@ -649,21 +649,21 @@ class H2(BaseHTML):
|
|
|
649
649
|
class_name: Optional[Any] = None,
|
|
650
650
|
autofocus: Optional[bool] = None,
|
|
651
651
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
652
|
-
on_blur: Optional[EventType[
|
|
653
|
-
on_click: Optional[EventType[
|
|
654
|
-
on_context_menu: Optional[EventType[
|
|
655
|
-
on_double_click: Optional[EventType[
|
|
656
|
-
on_focus: Optional[EventType[
|
|
657
|
-
on_mount: Optional[EventType[
|
|
658
|
-
on_mouse_down: Optional[EventType[
|
|
659
|
-
on_mouse_enter: Optional[EventType[
|
|
660
|
-
on_mouse_leave: Optional[EventType[
|
|
661
|
-
on_mouse_move: Optional[EventType[
|
|
662
|
-
on_mouse_out: Optional[EventType[
|
|
663
|
-
on_mouse_over: Optional[EventType[
|
|
664
|
-
on_mouse_up: Optional[EventType[
|
|
665
|
-
on_scroll: Optional[EventType[
|
|
666
|
-
on_unmount: Optional[EventType[
|
|
652
|
+
on_blur: Optional[EventType[()]] = None,
|
|
653
|
+
on_click: Optional[EventType[()]] = None,
|
|
654
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
655
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
656
|
+
on_focus: Optional[EventType[()]] = None,
|
|
657
|
+
on_mount: Optional[EventType[()]] = None,
|
|
658
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
659
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
660
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
661
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
662
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
663
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
664
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
665
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
666
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
667
667
|
**props,
|
|
668
668
|
) -> "H2":
|
|
669
669
|
"""Create the component.
|
|
@@ -735,21 +735,21 @@ class H3(BaseHTML):
|
|
|
735
735
|
class_name: Optional[Any] = None,
|
|
736
736
|
autofocus: Optional[bool] = None,
|
|
737
737
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
738
|
-
on_blur: Optional[EventType[
|
|
739
|
-
on_click: Optional[EventType[
|
|
740
|
-
on_context_menu: Optional[EventType[
|
|
741
|
-
on_double_click: Optional[EventType[
|
|
742
|
-
on_focus: Optional[EventType[
|
|
743
|
-
on_mount: Optional[EventType[
|
|
744
|
-
on_mouse_down: Optional[EventType[
|
|
745
|
-
on_mouse_enter: Optional[EventType[
|
|
746
|
-
on_mouse_leave: Optional[EventType[
|
|
747
|
-
on_mouse_move: Optional[EventType[
|
|
748
|
-
on_mouse_out: Optional[EventType[
|
|
749
|
-
on_mouse_over: Optional[EventType[
|
|
750
|
-
on_mouse_up: Optional[EventType[
|
|
751
|
-
on_scroll: Optional[EventType[
|
|
752
|
-
on_unmount: Optional[EventType[
|
|
738
|
+
on_blur: Optional[EventType[()]] = None,
|
|
739
|
+
on_click: Optional[EventType[()]] = None,
|
|
740
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
741
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
742
|
+
on_focus: Optional[EventType[()]] = None,
|
|
743
|
+
on_mount: Optional[EventType[()]] = None,
|
|
744
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
745
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
746
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
747
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
748
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
749
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
750
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
751
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
752
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
753
753
|
**props,
|
|
754
754
|
) -> "H3":
|
|
755
755
|
"""Create the component.
|
|
@@ -821,21 +821,21 @@ class H4(BaseHTML):
|
|
|
821
821
|
class_name: Optional[Any] = None,
|
|
822
822
|
autofocus: Optional[bool] = None,
|
|
823
823
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
824
|
-
on_blur: Optional[EventType[
|
|
825
|
-
on_click: Optional[EventType[
|
|
826
|
-
on_context_menu: Optional[EventType[
|
|
827
|
-
on_double_click: Optional[EventType[
|
|
828
|
-
on_focus: Optional[EventType[
|
|
829
|
-
on_mount: Optional[EventType[
|
|
830
|
-
on_mouse_down: Optional[EventType[
|
|
831
|
-
on_mouse_enter: Optional[EventType[
|
|
832
|
-
on_mouse_leave: Optional[EventType[
|
|
833
|
-
on_mouse_move: Optional[EventType[
|
|
834
|
-
on_mouse_out: Optional[EventType[
|
|
835
|
-
on_mouse_over: Optional[EventType[
|
|
836
|
-
on_mouse_up: Optional[EventType[
|
|
837
|
-
on_scroll: Optional[EventType[
|
|
838
|
-
on_unmount: Optional[EventType[
|
|
824
|
+
on_blur: Optional[EventType[()]] = None,
|
|
825
|
+
on_click: Optional[EventType[()]] = None,
|
|
826
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
827
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
828
|
+
on_focus: Optional[EventType[()]] = None,
|
|
829
|
+
on_mount: Optional[EventType[()]] = None,
|
|
830
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
831
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
832
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
833
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
834
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
835
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
836
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
837
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
838
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
839
839
|
**props,
|
|
840
840
|
) -> "H4":
|
|
841
841
|
"""Create the component.
|
|
@@ -907,21 +907,21 @@ class H5(BaseHTML):
|
|
|
907
907
|
class_name: Optional[Any] = None,
|
|
908
908
|
autofocus: Optional[bool] = None,
|
|
909
909
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
910
|
-
on_blur: Optional[EventType[
|
|
911
|
-
on_click: Optional[EventType[
|
|
912
|
-
on_context_menu: Optional[EventType[
|
|
913
|
-
on_double_click: Optional[EventType[
|
|
914
|
-
on_focus: Optional[EventType[
|
|
915
|
-
on_mount: Optional[EventType[
|
|
916
|
-
on_mouse_down: Optional[EventType[
|
|
917
|
-
on_mouse_enter: Optional[EventType[
|
|
918
|
-
on_mouse_leave: Optional[EventType[
|
|
919
|
-
on_mouse_move: Optional[EventType[
|
|
920
|
-
on_mouse_out: Optional[EventType[
|
|
921
|
-
on_mouse_over: Optional[EventType[
|
|
922
|
-
on_mouse_up: Optional[EventType[
|
|
923
|
-
on_scroll: Optional[EventType[
|
|
924
|
-
on_unmount: Optional[EventType[
|
|
910
|
+
on_blur: Optional[EventType[()]] = None,
|
|
911
|
+
on_click: Optional[EventType[()]] = None,
|
|
912
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
913
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
914
|
+
on_focus: Optional[EventType[()]] = None,
|
|
915
|
+
on_mount: Optional[EventType[()]] = None,
|
|
916
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
917
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
918
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
919
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
920
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
921
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
922
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
923
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
924
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
925
925
|
**props,
|
|
926
926
|
) -> "H5":
|
|
927
927
|
"""Create the component.
|
|
@@ -993,21 +993,21 @@ class H6(BaseHTML):
|
|
|
993
993
|
class_name: Optional[Any] = None,
|
|
994
994
|
autofocus: Optional[bool] = None,
|
|
995
995
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
996
|
-
on_blur: Optional[EventType[
|
|
997
|
-
on_click: Optional[EventType[
|
|
998
|
-
on_context_menu: Optional[EventType[
|
|
999
|
-
on_double_click: Optional[EventType[
|
|
1000
|
-
on_focus: Optional[EventType[
|
|
1001
|
-
on_mount: Optional[EventType[
|
|
1002
|
-
on_mouse_down: Optional[EventType[
|
|
1003
|
-
on_mouse_enter: Optional[EventType[
|
|
1004
|
-
on_mouse_leave: Optional[EventType[
|
|
1005
|
-
on_mouse_move: Optional[EventType[
|
|
1006
|
-
on_mouse_out: Optional[EventType[
|
|
1007
|
-
on_mouse_over: Optional[EventType[
|
|
1008
|
-
on_mouse_up: Optional[EventType[
|
|
1009
|
-
on_scroll: Optional[EventType[
|
|
1010
|
-
on_unmount: Optional[EventType[
|
|
996
|
+
on_blur: Optional[EventType[()]] = None,
|
|
997
|
+
on_click: Optional[EventType[()]] = None,
|
|
998
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
999
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
1000
|
+
on_focus: Optional[EventType[()]] = None,
|
|
1001
|
+
on_mount: Optional[EventType[()]] = None,
|
|
1002
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
1003
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
1004
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
1005
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
1006
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
1007
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
1008
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
1009
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
1010
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
1011
1011
|
**props,
|
|
1012
1012
|
) -> "H6":
|
|
1013
1013
|
"""Create the component.
|
|
@@ -1079,21 +1079,21 @@ class Main(BaseHTML):
|
|
|
1079
1079
|
class_name: Optional[Any] = None,
|
|
1080
1080
|
autofocus: Optional[bool] = None,
|
|
1081
1081
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
1082
|
-
on_blur: Optional[EventType[
|
|
1083
|
-
on_click: Optional[EventType[
|
|
1084
|
-
on_context_menu: Optional[EventType[
|
|
1085
|
-
on_double_click: Optional[EventType[
|
|
1086
|
-
on_focus: Optional[EventType[
|
|
1087
|
-
on_mount: Optional[EventType[
|
|
1088
|
-
on_mouse_down: Optional[EventType[
|
|
1089
|
-
on_mouse_enter: Optional[EventType[
|
|
1090
|
-
on_mouse_leave: Optional[EventType[
|
|
1091
|
-
on_mouse_move: Optional[EventType[
|
|
1092
|
-
on_mouse_out: Optional[EventType[
|
|
1093
|
-
on_mouse_over: Optional[EventType[
|
|
1094
|
-
on_mouse_up: Optional[EventType[
|
|
1095
|
-
on_scroll: Optional[EventType[
|
|
1096
|
-
on_unmount: Optional[EventType[
|
|
1082
|
+
on_blur: Optional[EventType[()]] = None,
|
|
1083
|
+
on_click: Optional[EventType[()]] = None,
|
|
1084
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
1085
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
1086
|
+
on_focus: Optional[EventType[()]] = None,
|
|
1087
|
+
on_mount: Optional[EventType[()]] = None,
|
|
1088
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
1089
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
1090
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
1091
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
1092
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
1093
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
1094
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
1095
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
1096
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
1097
1097
|
**props,
|
|
1098
1098
|
) -> "Main":
|
|
1099
1099
|
"""Create the component.
|
|
@@ -1165,21 +1165,21 @@ class Nav(BaseHTML):
|
|
|
1165
1165
|
class_name: Optional[Any] = None,
|
|
1166
1166
|
autofocus: Optional[bool] = None,
|
|
1167
1167
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
1168
|
-
on_blur: Optional[EventType[
|
|
1169
|
-
on_click: Optional[EventType[
|
|
1170
|
-
on_context_menu: Optional[EventType[
|
|
1171
|
-
on_double_click: Optional[EventType[
|
|
1172
|
-
on_focus: Optional[EventType[
|
|
1173
|
-
on_mount: Optional[EventType[
|
|
1174
|
-
on_mouse_down: Optional[EventType[
|
|
1175
|
-
on_mouse_enter: Optional[EventType[
|
|
1176
|
-
on_mouse_leave: Optional[EventType[
|
|
1177
|
-
on_mouse_move: Optional[EventType[
|
|
1178
|
-
on_mouse_out: Optional[EventType[
|
|
1179
|
-
on_mouse_over: Optional[EventType[
|
|
1180
|
-
on_mouse_up: Optional[EventType[
|
|
1181
|
-
on_scroll: Optional[EventType[
|
|
1182
|
-
on_unmount: Optional[EventType[
|
|
1168
|
+
on_blur: Optional[EventType[()]] = None,
|
|
1169
|
+
on_click: Optional[EventType[()]] = None,
|
|
1170
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
1171
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
1172
|
+
on_focus: Optional[EventType[()]] = None,
|
|
1173
|
+
on_mount: Optional[EventType[()]] = None,
|
|
1174
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
1175
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
1176
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
1177
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
1178
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
1179
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
1180
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
1181
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
1182
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
1183
1183
|
**props,
|
|
1184
1184
|
) -> "Nav":
|
|
1185
1185
|
"""Create the component.
|
|
@@ -1251,21 +1251,21 @@ class Section(BaseHTML):
|
|
|
1251
1251
|
class_name: Optional[Any] = None,
|
|
1252
1252
|
autofocus: Optional[bool] = None,
|
|
1253
1253
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
1254
|
-
on_blur: Optional[EventType[
|
|
1255
|
-
on_click: Optional[EventType[
|
|
1256
|
-
on_context_menu: Optional[EventType[
|
|
1257
|
-
on_double_click: Optional[EventType[
|
|
1258
|
-
on_focus: Optional[EventType[
|
|
1259
|
-
on_mount: Optional[EventType[
|
|
1260
|
-
on_mouse_down: Optional[EventType[
|
|
1261
|
-
on_mouse_enter: Optional[EventType[
|
|
1262
|
-
on_mouse_leave: Optional[EventType[
|
|
1263
|
-
on_mouse_move: Optional[EventType[
|
|
1264
|
-
on_mouse_out: Optional[EventType[
|
|
1265
|
-
on_mouse_over: Optional[EventType[
|
|
1266
|
-
on_mouse_up: Optional[EventType[
|
|
1267
|
-
on_scroll: Optional[EventType[
|
|
1268
|
-
on_unmount: Optional[EventType[
|
|
1254
|
+
on_blur: Optional[EventType[()]] = None,
|
|
1255
|
+
on_click: Optional[EventType[()]] = None,
|
|
1256
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
1257
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
1258
|
+
on_focus: Optional[EventType[()]] = None,
|
|
1259
|
+
on_mount: Optional[EventType[()]] = None,
|
|
1260
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
1261
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
1262
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
1263
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
1264
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
1265
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
1266
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
1267
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
1268
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
1269
1269
|
**props,
|
|
1270
1270
|
) -> "Section":
|
|
1271
1271
|
"""Create the component.
|