reflex 0.6.8a2__py3-none-any.whl → 0.7.0a2__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 +249 -116
- 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 +35 -6
- 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 +160 -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/plotly.py +5 -5
- reflex/components/plotly/plotly.pyi +34 -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 +9 -7
- reflex/event.py +215 -208
- 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 +90 -19
- 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 +52 -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 +2 -2
- reflex/utils/lazy_loader.py +7 -1
- reflex/utils/path_ops.py +28 -14
- reflex/utils/prerequisites.py +326 -67
- 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 +656 -333
- 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 +63 -62
- reflex/vars/sequence.py +79 -67
- {reflex-0.6.8a2.dist-info → reflex-0.7.0a2.dist-info}/METADATA +7 -8
- reflex-0.7.0a2.dist-info/RECORD +401 -0
- {reflex-0.6.8a2.dist-info → reflex-0.7.0a2.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.0a2.dist-info}/LICENSE +0 -0
- {reflex-0.6.8a2.dist-info → reflex-0.7.0a2.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
|
|
|
@@ -48,21 +48,21 @@ class Blockquote(BaseHTML):
|
|
|
48
48
|
class_name: Optional[Any] = None,
|
|
49
49
|
autofocus: Optional[bool] = None,
|
|
50
50
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
51
|
-
on_blur: Optional[EventType[
|
|
52
|
-
on_click: Optional[EventType[
|
|
53
|
-
on_context_menu: Optional[EventType[
|
|
54
|
-
on_double_click: Optional[EventType[
|
|
55
|
-
on_focus: Optional[EventType[
|
|
56
|
-
on_mount: Optional[EventType[
|
|
57
|
-
on_mouse_down: Optional[EventType[
|
|
58
|
-
on_mouse_enter: Optional[EventType[
|
|
59
|
-
on_mouse_leave: Optional[EventType[
|
|
60
|
-
on_mouse_move: Optional[EventType[
|
|
61
|
-
on_mouse_out: Optional[EventType[
|
|
62
|
-
on_mouse_over: Optional[EventType[
|
|
63
|
-
on_mouse_up: Optional[EventType[
|
|
64
|
-
on_scroll: Optional[EventType[
|
|
65
|
-
on_unmount: Optional[EventType[
|
|
51
|
+
on_blur: Optional[EventType[()]] = None,
|
|
52
|
+
on_click: Optional[EventType[()]] = None,
|
|
53
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
54
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
55
|
+
on_focus: Optional[EventType[()]] = None,
|
|
56
|
+
on_mount: Optional[EventType[()]] = None,
|
|
57
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
58
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
59
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
60
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
61
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
62
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
63
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
64
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
65
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
66
66
|
**props,
|
|
67
67
|
) -> "Blockquote":
|
|
68
68
|
"""Create the component.
|
|
@@ -135,21 +135,21 @@ class Dd(BaseHTML):
|
|
|
135
135
|
class_name: Optional[Any] = None,
|
|
136
136
|
autofocus: Optional[bool] = None,
|
|
137
137
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
138
|
-
on_blur: Optional[EventType[
|
|
139
|
-
on_click: Optional[EventType[
|
|
140
|
-
on_context_menu: Optional[EventType[
|
|
141
|
-
on_double_click: Optional[EventType[
|
|
142
|
-
on_focus: Optional[EventType[
|
|
143
|
-
on_mount: Optional[EventType[
|
|
144
|
-
on_mouse_down: Optional[EventType[
|
|
145
|
-
on_mouse_enter: Optional[EventType[
|
|
146
|
-
on_mouse_leave: Optional[EventType[
|
|
147
|
-
on_mouse_move: Optional[EventType[
|
|
148
|
-
on_mouse_out: Optional[EventType[
|
|
149
|
-
on_mouse_over: Optional[EventType[
|
|
150
|
-
on_mouse_up: Optional[EventType[
|
|
151
|
-
on_scroll: Optional[EventType[
|
|
152
|
-
on_unmount: Optional[EventType[
|
|
138
|
+
on_blur: Optional[EventType[()]] = None,
|
|
139
|
+
on_click: Optional[EventType[()]] = None,
|
|
140
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
141
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
142
|
+
on_focus: Optional[EventType[()]] = None,
|
|
143
|
+
on_mount: Optional[EventType[()]] = None,
|
|
144
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
145
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
146
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
147
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
148
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
149
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
150
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
151
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
152
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
153
153
|
**props,
|
|
154
154
|
) -> "Dd":
|
|
155
155
|
"""Create the component.
|
|
@@ -221,21 +221,21 @@ class Div(BaseHTML):
|
|
|
221
221
|
class_name: Optional[Any] = None,
|
|
222
222
|
autofocus: Optional[bool] = None,
|
|
223
223
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
224
|
-
on_blur: Optional[EventType[
|
|
225
|
-
on_click: Optional[EventType[
|
|
226
|
-
on_context_menu: Optional[EventType[
|
|
227
|
-
on_double_click: Optional[EventType[
|
|
228
|
-
on_focus: Optional[EventType[
|
|
229
|
-
on_mount: Optional[EventType[
|
|
230
|
-
on_mouse_down: Optional[EventType[
|
|
231
|
-
on_mouse_enter: Optional[EventType[
|
|
232
|
-
on_mouse_leave: Optional[EventType[
|
|
233
|
-
on_mouse_move: Optional[EventType[
|
|
234
|
-
on_mouse_out: Optional[EventType[
|
|
235
|
-
on_mouse_over: Optional[EventType[
|
|
236
|
-
on_mouse_up: Optional[EventType[
|
|
237
|
-
on_scroll: Optional[EventType[
|
|
238
|
-
on_unmount: Optional[EventType[
|
|
224
|
+
on_blur: Optional[EventType[()]] = None,
|
|
225
|
+
on_click: Optional[EventType[()]] = None,
|
|
226
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
227
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
228
|
+
on_focus: Optional[EventType[()]] = None,
|
|
229
|
+
on_mount: Optional[EventType[()]] = None,
|
|
230
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
231
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
232
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
233
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
234
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
235
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
236
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
237
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
238
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
239
239
|
**props,
|
|
240
240
|
) -> "Div":
|
|
241
241
|
"""Create the component.
|
|
@@ -307,21 +307,21 @@ class Dl(BaseHTML):
|
|
|
307
307
|
class_name: Optional[Any] = None,
|
|
308
308
|
autofocus: Optional[bool] = None,
|
|
309
309
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
310
|
-
on_blur: Optional[EventType[
|
|
311
|
-
on_click: Optional[EventType[
|
|
312
|
-
on_context_menu: Optional[EventType[
|
|
313
|
-
on_double_click: Optional[EventType[
|
|
314
|
-
on_focus: Optional[EventType[
|
|
315
|
-
on_mount: Optional[EventType[
|
|
316
|
-
on_mouse_down: Optional[EventType[
|
|
317
|
-
on_mouse_enter: Optional[EventType[
|
|
318
|
-
on_mouse_leave: Optional[EventType[
|
|
319
|
-
on_mouse_move: Optional[EventType[
|
|
320
|
-
on_mouse_out: Optional[EventType[
|
|
321
|
-
on_mouse_over: Optional[EventType[
|
|
322
|
-
on_mouse_up: Optional[EventType[
|
|
323
|
-
on_scroll: Optional[EventType[
|
|
324
|
-
on_unmount: Optional[EventType[
|
|
310
|
+
on_blur: Optional[EventType[()]] = None,
|
|
311
|
+
on_click: Optional[EventType[()]] = None,
|
|
312
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
313
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
314
|
+
on_focus: Optional[EventType[()]] = None,
|
|
315
|
+
on_mount: Optional[EventType[()]] = None,
|
|
316
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
317
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
318
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
319
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
320
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
321
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
322
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
323
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
324
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
325
325
|
**props,
|
|
326
326
|
) -> "Dl":
|
|
327
327
|
"""Create the component.
|
|
@@ -393,21 +393,21 @@ class Dt(BaseHTML):
|
|
|
393
393
|
class_name: Optional[Any] = None,
|
|
394
394
|
autofocus: Optional[bool] = None,
|
|
395
395
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
396
|
-
on_blur: Optional[EventType[
|
|
397
|
-
on_click: Optional[EventType[
|
|
398
|
-
on_context_menu: Optional[EventType[
|
|
399
|
-
on_double_click: Optional[EventType[
|
|
400
|
-
on_focus: Optional[EventType[
|
|
401
|
-
on_mount: Optional[EventType[
|
|
402
|
-
on_mouse_down: Optional[EventType[
|
|
403
|
-
on_mouse_enter: Optional[EventType[
|
|
404
|
-
on_mouse_leave: Optional[EventType[
|
|
405
|
-
on_mouse_move: Optional[EventType[
|
|
406
|
-
on_mouse_out: Optional[EventType[
|
|
407
|
-
on_mouse_over: Optional[EventType[
|
|
408
|
-
on_mouse_up: Optional[EventType[
|
|
409
|
-
on_scroll: Optional[EventType[
|
|
410
|
-
on_unmount: Optional[EventType[
|
|
396
|
+
on_blur: Optional[EventType[()]] = None,
|
|
397
|
+
on_click: Optional[EventType[()]] = None,
|
|
398
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
399
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
400
|
+
on_focus: Optional[EventType[()]] = None,
|
|
401
|
+
on_mount: Optional[EventType[()]] = None,
|
|
402
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
403
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
404
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
405
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
406
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
407
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
408
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
409
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
410
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
411
411
|
**props,
|
|
412
412
|
) -> "Dt":
|
|
413
413
|
"""Create the component.
|
|
@@ -479,21 +479,21 @@ class Figcaption(BaseHTML):
|
|
|
479
479
|
class_name: Optional[Any] = None,
|
|
480
480
|
autofocus: Optional[bool] = None,
|
|
481
481
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
482
|
-
on_blur: Optional[EventType[
|
|
483
|
-
on_click: Optional[EventType[
|
|
484
|
-
on_context_menu: Optional[EventType[
|
|
485
|
-
on_double_click: Optional[EventType[
|
|
486
|
-
on_focus: Optional[EventType[
|
|
487
|
-
on_mount: Optional[EventType[
|
|
488
|
-
on_mouse_down: Optional[EventType[
|
|
489
|
-
on_mouse_enter: Optional[EventType[
|
|
490
|
-
on_mouse_leave: Optional[EventType[
|
|
491
|
-
on_mouse_move: Optional[EventType[
|
|
492
|
-
on_mouse_out: Optional[EventType[
|
|
493
|
-
on_mouse_over: Optional[EventType[
|
|
494
|
-
on_mouse_up: Optional[EventType[
|
|
495
|
-
on_scroll: Optional[EventType[
|
|
496
|
-
on_unmount: Optional[EventType[
|
|
482
|
+
on_blur: Optional[EventType[()]] = None,
|
|
483
|
+
on_click: Optional[EventType[()]] = None,
|
|
484
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
485
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
486
|
+
on_focus: Optional[EventType[()]] = None,
|
|
487
|
+
on_mount: Optional[EventType[()]] = None,
|
|
488
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
489
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
490
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
491
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
492
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
493
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
494
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
495
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
496
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
497
497
|
**props,
|
|
498
498
|
) -> "Figcaption":
|
|
499
499
|
"""Create the component.
|
|
@@ -566,21 +566,21 @@ class Hr(BaseHTML):
|
|
|
566
566
|
class_name: Optional[Any] = None,
|
|
567
567
|
autofocus: Optional[bool] = None,
|
|
568
568
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
569
|
-
on_blur: Optional[EventType[
|
|
570
|
-
on_click: Optional[EventType[
|
|
571
|
-
on_context_menu: Optional[EventType[
|
|
572
|
-
on_double_click: Optional[EventType[
|
|
573
|
-
on_focus: Optional[EventType[
|
|
574
|
-
on_mount: Optional[EventType[
|
|
575
|
-
on_mouse_down: Optional[EventType[
|
|
576
|
-
on_mouse_enter: Optional[EventType[
|
|
577
|
-
on_mouse_leave: Optional[EventType[
|
|
578
|
-
on_mouse_move: Optional[EventType[
|
|
579
|
-
on_mouse_out: Optional[EventType[
|
|
580
|
-
on_mouse_over: Optional[EventType[
|
|
581
|
-
on_mouse_up: Optional[EventType[
|
|
582
|
-
on_scroll: Optional[EventType[
|
|
583
|
-
on_unmount: Optional[EventType[
|
|
569
|
+
on_blur: Optional[EventType[()]] = None,
|
|
570
|
+
on_click: Optional[EventType[()]] = None,
|
|
571
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
572
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
573
|
+
on_focus: Optional[EventType[()]] = None,
|
|
574
|
+
on_mount: Optional[EventType[()]] = None,
|
|
575
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
576
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
577
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
578
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
579
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
580
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
581
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
582
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
583
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
584
584
|
**props,
|
|
585
585
|
) -> "Hr":
|
|
586
586
|
"""Create the component.
|
|
@@ -653,21 +653,21 @@ class Li(BaseHTML):
|
|
|
653
653
|
class_name: Optional[Any] = None,
|
|
654
654
|
autofocus: Optional[bool] = None,
|
|
655
655
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
656
|
-
on_blur: Optional[EventType[
|
|
657
|
-
on_click: Optional[EventType[
|
|
658
|
-
on_context_menu: Optional[EventType[
|
|
659
|
-
on_double_click: Optional[EventType[
|
|
660
|
-
on_focus: Optional[EventType[
|
|
661
|
-
on_mount: Optional[EventType[
|
|
662
|
-
on_mouse_down: Optional[EventType[
|
|
663
|
-
on_mouse_enter: Optional[EventType[
|
|
664
|
-
on_mouse_leave: Optional[EventType[
|
|
665
|
-
on_mouse_move: Optional[EventType[
|
|
666
|
-
on_mouse_out: Optional[EventType[
|
|
667
|
-
on_mouse_over: Optional[EventType[
|
|
668
|
-
on_mouse_up: Optional[EventType[
|
|
669
|
-
on_scroll: Optional[EventType[
|
|
670
|
-
on_unmount: Optional[EventType[
|
|
656
|
+
on_blur: Optional[EventType[()]] = None,
|
|
657
|
+
on_click: Optional[EventType[()]] = None,
|
|
658
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
659
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
660
|
+
on_focus: Optional[EventType[()]] = None,
|
|
661
|
+
on_mount: Optional[EventType[()]] = None,
|
|
662
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
663
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
664
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
665
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
666
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
667
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
668
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
669
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
670
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
671
671
|
**props,
|
|
672
672
|
) -> "Li":
|
|
673
673
|
"""Create the component.
|
|
@@ -740,21 +740,21 @@ class Menu(BaseHTML):
|
|
|
740
740
|
class_name: Optional[Any] = None,
|
|
741
741
|
autofocus: Optional[bool] = None,
|
|
742
742
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
743
|
-
on_blur: Optional[EventType[
|
|
744
|
-
on_click: Optional[EventType[
|
|
745
|
-
on_context_menu: Optional[EventType[
|
|
746
|
-
on_double_click: Optional[EventType[
|
|
747
|
-
on_focus: Optional[EventType[
|
|
748
|
-
on_mount: Optional[EventType[
|
|
749
|
-
on_mouse_down: Optional[EventType[
|
|
750
|
-
on_mouse_enter: Optional[EventType[
|
|
751
|
-
on_mouse_leave: Optional[EventType[
|
|
752
|
-
on_mouse_move: Optional[EventType[
|
|
753
|
-
on_mouse_out: Optional[EventType[
|
|
754
|
-
on_mouse_over: Optional[EventType[
|
|
755
|
-
on_mouse_up: Optional[EventType[
|
|
756
|
-
on_scroll: Optional[EventType[
|
|
757
|
-
on_unmount: Optional[EventType[
|
|
743
|
+
on_blur: Optional[EventType[()]] = None,
|
|
744
|
+
on_click: Optional[EventType[()]] = None,
|
|
745
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
746
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
747
|
+
on_focus: Optional[EventType[()]] = None,
|
|
748
|
+
on_mount: Optional[EventType[()]] = None,
|
|
749
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
750
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
751
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
752
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
753
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
754
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
755
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
756
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
757
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
758
758
|
**props,
|
|
759
759
|
) -> "Menu":
|
|
760
760
|
"""Create the component.
|
|
@@ -830,21 +830,21 @@ class Ol(BaseHTML):
|
|
|
830
830
|
class_name: Optional[Any] = None,
|
|
831
831
|
autofocus: Optional[bool] = None,
|
|
832
832
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
833
|
-
on_blur: Optional[EventType[
|
|
834
|
-
on_click: Optional[EventType[
|
|
835
|
-
on_context_menu: Optional[EventType[
|
|
836
|
-
on_double_click: Optional[EventType[
|
|
837
|
-
on_focus: Optional[EventType[
|
|
838
|
-
on_mount: Optional[EventType[
|
|
839
|
-
on_mouse_down: Optional[EventType[
|
|
840
|
-
on_mouse_enter: Optional[EventType[
|
|
841
|
-
on_mouse_leave: Optional[EventType[
|
|
842
|
-
on_mouse_move: Optional[EventType[
|
|
843
|
-
on_mouse_out: Optional[EventType[
|
|
844
|
-
on_mouse_over: Optional[EventType[
|
|
845
|
-
on_mouse_up: Optional[EventType[
|
|
846
|
-
on_scroll: Optional[EventType[
|
|
847
|
-
on_unmount: Optional[EventType[
|
|
833
|
+
on_blur: Optional[EventType[()]] = None,
|
|
834
|
+
on_click: Optional[EventType[()]] = None,
|
|
835
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
836
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
837
|
+
on_focus: Optional[EventType[()]] = None,
|
|
838
|
+
on_mount: Optional[EventType[()]] = None,
|
|
839
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
840
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
841
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
842
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
843
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
844
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
845
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
846
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
847
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
848
848
|
**props,
|
|
849
849
|
) -> "Ol":
|
|
850
850
|
"""Create the component.
|
|
@@ -919,21 +919,21 @@ class P(BaseHTML):
|
|
|
919
919
|
class_name: Optional[Any] = None,
|
|
920
920
|
autofocus: Optional[bool] = None,
|
|
921
921
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
922
|
-
on_blur: Optional[EventType[
|
|
923
|
-
on_click: Optional[EventType[
|
|
924
|
-
on_context_menu: Optional[EventType[
|
|
925
|
-
on_double_click: Optional[EventType[
|
|
926
|
-
on_focus: Optional[EventType[
|
|
927
|
-
on_mount: Optional[EventType[
|
|
928
|
-
on_mouse_down: Optional[EventType[
|
|
929
|
-
on_mouse_enter: Optional[EventType[
|
|
930
|
-
on_mouse_leave: Optional[EventType[
|
|
931
|
-
on_mouse_move: Optional[EventType[
|
|
932
|
-
on_mouse_out: Optional[EventType[
|
|
933
|
-
on_mouse_over: Optional[EventType[
|
|
934
|
-
on_mouse_up: Optional[EventType[
|
|
935
|
-
on_scroll: Optional[EventType[
|
|
936
|
-
on_unmount: Optional[EventType[
|
|
922
|
+
on_blur: Optional[EventType[()]] = None,
|
|
923
|
+
on_click: Optional[EventType[()]] = None,
|
|
924
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
925
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
926
|
+
on_focus: Optional[EventType[()]] = None,
|
|
927
|
+
on_mount: Optional[EventType[()]] = None,
|
|
928
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
929
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
930
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
931
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
932
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
933
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
934
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
935
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
936
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
937
937
|
**props,
|
|
938
938
|
) -> "P":
|
|
939
939
|
"""Create the component.
|
|
@@ -1005,21 +1005,21 @@ class Pre(BaseHTML):
|
|
|
1005
1005
|
class_name: Optional[Any] = None,
|
|
1006
1006
|
autofocus: Optional[bool] = None,
|
|
1007
1007
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
1008
|
-
on_blur: Optional[EventType[
|
|
1009
|
-
on_click: Optional[EventType[
|
|
1010
|
-
on_context_menu: Optional[EventType[
|
|
1011
|
-
on_double_click: Optional[EventType[
|
|
1012
|
-
on_focus: Optional[EventType[
|
|
1013
|
-
on_mount: Optional[EventType[
|
|
1014
|
-
on_mouse_down: Optional[EventType[
|
|
1015
|
-
on_mouse_enter: Optional[EventType[
|
|
1016
|
-
on_mouse_leave: Optional[EventType[
|
|
1017
|
-
on_mouse_move: Optional[EventType[
|
|
1018
|
-
on_mouse_out: Optional[EventType[
|
|
1019
|
-
on_mouse_over: Optional[EventType[
|
|
1020
|
-
on_mouse_up: Optional[EventType[
|
|
1021
|
-
on_scroll: Optional[EventType[
|
|
1022
|
-
on_unmount: Optional[EventType[
|
|
1008
|
+
on_blur: Optional[EventType[()]] = None,
|
|
1009
|
+
on_click: Optional[EventType[()]] = None,
|
|
1010
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
1011
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
1012
|
+
on_focus: Optional[EventType[()]] = None,
|
|
1013
|
+
on_mount: Optional[EventType[()]] = None,
|
|
1014
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
1015
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
1016
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
1017
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
1018
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
1019
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
1020
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
1021
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
1022
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
1023
1023
|
**props,
|
|
1024
1024
|
) -> "Pre":
|
|
1025
1025
|
"""Create the component.
|
|
@@ -1091,21 +1091,21 @@ class Ul(BaseHTML):
|
|
|
1091
1091
|
class_name: Optional[Any] = None,
|
|
1092
1092
|
autofocus: Optional[bool] = None,
|
|
1093
1093
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
1094
|
-
on_blur: Optional[EventType[
|
|
1095
|
-
on_click: Optional[EventType[
|
|
1096
|
-
on_context_menu: Optional[EventType[
|
|
1097
|
-
on_double_click: Optional[EventType[
|
|
1098
|
-
on_focus: Optional[EventType[
|
|
1099
|
-
on_mount: Optional[EventType[
|
|
1100
|
-
on_mouse_down: Optional[EventType[
|
|
1101
|
-
on_mouse_enter: Optional[EventType[
|
|
1102
|
-
on_mouse_leave: Optional[EventType[
|
|
1103
|
-
on_mouse_move: Optional[EventType[
|
|
1104
|
-
on_mouse_out: Optional[EventType[
|
|
1105
|
-
on_mouse_over: Optional[EventType[
|
|
1106
|
-
on_mouse_up: Optional[EventType[
|
|
1107
|
-
on_scroll: Optional[EventType[
|
|
1108
|
-
on_unmount: Optional[EventType[
|
|
1094
|
+
on_blur: Optional[EventType[()]] = None,
|
|
1095
|
+
on_click: Optional[EventType[()]] = None,
|
|
1096
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
1097
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
1098
|
+
on_focus: Optional[EventType[()]] = None,
|
|
1099
|
+
on_mount: Optional[EventType[()]] = None,
|
|
1100
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
1101
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
1102
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
1103
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
1104
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
1105
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
1106
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
1107
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
1108
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
1109
1109
|
**props,
|
|
1110
1110
|
) -> "Ul":
|
|
1111
1111
|
"""Create the component.
|
|
@@ -1179,21 +1179,21 @@ class Ins(BaseHTML):
|
|
|
1179
1179
|
class_name: Optional[Any] = None,
|
|
1180
1180
|
autofocus: Optional[bool] = None,
|
|
1181
1181
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
1182
|
-
on_blur: Optional[EventType[
|
|
1183
|
-
on_click: Optional[EventType[
|
|
1184
|
-
on_context_menu: Optional[EventType[
|
|
1185
|
-
on_double_click: Optional[EventType[
|
|
1186
|
-
on_focus: Optional[EventType[
|
|
1187
|
-
on_mount: Optional[EventType[
|
|
1188
|
-
on_mouse_down: Optional[EventType[
|
|
1189
|
-
on_mouse_enter: Optional[EventType[
|
|
1190
|
-
on_mouse_leave: Optional[EventType[
|
|
1191
|
-
on_mouse_move: Optional[EventType[
|
|
1192
|
-
on_mouse_out: Optional[EventType[
|
|
1193
|
-
on_mouse_over: Optional[EventType[
|
|
1194
|
-
on_mouse_up: Optional[EventType[
|
|
1195
|
-
on_scroll: Optional[EventType[
|
|
1196
|
-
on_unmount: Optional[EventType[
|
|
1182
|
+
on_blur: Optional[EventType[()]] = None,
|
|
1183
|
+
on_click: Optional[EventType[()]] = None,
|
|
1184
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
1185
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
1186
|
+
on_focus: Optional[EventType[()]] = None,
|
|
1187
|
+
on_mount: Optional[EventType[()]] = None,
|
|
1188
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
1189
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
1190
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
1191
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
1192
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
1193
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
1194
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
1195
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
1196
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
1197
1197
|
**props,
|
|
1198
1198
|
) -> "Ins":
|
|
1199
1199
|
"""Create the component.
|
|
@@ -1269,21 +1269,21 @@ class Del(BaseHTML):
|
|
|
1269
1269
|
class_name: Optional[Any] = None,
|
|
1270
1270
|
autofocus: Optional[bool] = None,
|
|
1271
1271
|
custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
|
|
1272
|
-
on_blur: Optional[EventType[
|
|
1273
|
-
on_click: Optional[EventType[
|
|
1274
|
-
on_context_menu: Optional[EventType[
|
|
1275
|
-
on_double_click: Optional[EventType[
|
|
1276
|
-
on_focus: Optional[EventType[
|
|
1277
|
-
on_mount: Optional[EventType[
|
|
1278
|
-
on_mouse_down: Optional[EventType[
|
|
1279
|
-
on_mouse_enter: Optional[EventType[
|
|
1280
|
-
on_mouse_leave: Optional[EventType[
|
|
1281
|
-
on_mouse_move: Optional[EventType[
|
|
1282
|
-
on_mouse_out: Optional[EventType[
|
|
1283
|
-
on_mouse_over: Optional[EventType[
|
|
1284
|
-
on_mouse_up: Optional[EventType[
|
|
1285
|
-
on_scroll: Optional[EventType[
|
|
1286
|
-
on_unmount: Optional[EventType[
|
|
1272
|
+
on_blur: Optional[EventType[()]] = None,
|
|
1273
|
+
on_click: Optional[EventType[()]] = None,
|
|
1274
|
+
on_context_menu: Optional[EventType[()]] = None,
|
|
1275
|
+
on_double_click: Optional[EventType[()]] = None,
|
|
1276
|
+
on_focus: Optional[EventType[()]] = None,
|
|
1277
|
+
on_mount: Optional[EventType[()]] = None,
|
|
1278
|
+
on_mouse_down: Optional[EventType[()]] = None,
|
|
1279
|
+
on_mouse_enter: Optional[EventType[()]] = None,
|
|
1280
|
+
on_mouse_leave: Optional[EventType[()]] = None,
|
|
1281
|
+
on_mouse_move: Optional[EventType[()]] = None,
|
|
1282
|
+
on_mouse_out: Optional[EventType[()]] = None,
|
|
1283
|
+
on_mouse_over: Optional[EventType[()]] = None,
|
|
1284
|
+
on_mouse_up: Optional[EventType[()]] = None,
|
|
1285
|
+
on_scroll: Optional[EventType[()]] = None,
|
|
1286
|
+
on_unmount: Optional[EventType[()]] = None,
|
|
1287
1287
|
**props,
|
|
1288
1288
|
) -> "Del":
|
|
1289
1289
|
"""Create the component.
|