instaui 0.1.15__py2.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.
- instaui/__init__.py +9 -0
- instaui/_helper/observable_helper.py +45 -0
- instaui/arco/__init__.py +191 -0
- instaui/arco/_settings.py +25 -0
- instaui/arco/_use_tools/locale.py +50 -0
- instaui/arco/component_types.py +1019 -0
- instaui/arco/components/_utils.py +22 -0
- instaui/arco/components/affix.py +29 -0
- instaui/arco/components/alert.py +42 -0
- instaui/arco/components/anchor.py +42 -0
- instaui/arco/components/auto_complete.py +96 -0
- instaui/arco/components/avatar.py +55 -0
- instaui/arco/components/back_top.py +14 -0
- instaui/arco/components/badge.py +14 -0
- instaui/arco/components/breadcrumb.py +14 -0
- instaui/arco/components/button.py +43 -0
- instaui/arco/components/calendar.py +47 -0
- instaui/arco/components/card.py +14 -0
- instaui/arco/components/carousel.py +33 -0
- instaui/arco/components/cascader.py +111 -0
- instaui/arco/components/checkbox.py +32 -0
- instaui/arco/components/collapse.py +31 -0
- instaui/arco/components/color_picker.py +45 -0
- instaui/arco/components/comment.py +14 -0
- instaui/arco/components/config_provider.py +13 -0
- instaui/arco/components/date_picker.py +111 -0
- instaui/arco/components/descriptions.py +14 -0
- instaui/arco/components/divider.py +13 -0
- instaui/arco/components/drawer.py +98 -0
- instaui/arco/components/dropdown.py +45 -0
- instaui/arco/components/empty.py +14 -0
- instaui/arco/components/form.py +55 -0
- instaui/arco/components/icon.py +17 -0
- instaui/arco/components/image.py +33 -0
- instaui/arco/components/input.py +102 -0
- instaui/arco/components/input_number.py +97 -0
- instaui/arco/components/input_password.py +38 -0
- instaui/arco/components/input_search.py +37 -0
- instaui/arco/components/input_tag.py +110 -0
- instaui/arco/components/layout.py +13 -0
- instaui/arco/components/layout_content.py +6 -0
- instaui/arco/components/layout_footer.py +6 -0
- instaui/arco/components/layout_header.py +6 -0
- instaui/arco/components/layout_sider.py +53 -0
- instaui/arco/components/link.py +36 -0
- instaui/arco/components/list.py +68 -0
- instaui/arco/components/mention.py +97 -0
- instaui/arco/components/menu.py +88 -0
- instaui/arco/components/modal.py +97 -0
- instaui/arco/components/overflow_list.py +29 -0
- instaui/arco/components/page_header.py +29 -0
- instaui/arco/components/pagination.py +45 -0
- instaui/arco/components/pop_confirm.py +58 -0
- instaui/arco/components/popover.py +32 -0
- instaui/arco/components/progress.py +14 -0
- instaui/arco/components/radio.py +40 -0
- instaui/arco/components/radio_group.py +42 -0
- instaui/arco/components/rate.py +45 -0
- instaui/arco/components/resize_box.py +62 -0
- instaui/arco/components/result.py +14 -0
- instaui/arco/components/select.py +182 -0
- instaui/arco/components/skeleton.py +14 -0
- instaui/arco/components/slider.py +38 -0
- instaui/arco/components/space.py +14 -0
- instaui/arco/components/spin.py +14 -0
- instaui/arco/components/split.py +76 -0
- instaui/arco/components/statistic.py +14 -0
- instaui/arco/components/steps.py +32 -0
- instaui/arco/components/switch.py +57 -0
- instaui/arco/components/tab_pane.py +12 -0
- instaui/arco/components/table.py +276 -0
- instaui/arco/components/tabs.py +101 -0
- instaui/arco/components/tag.py +42 -0
- instaui/arco/components/textarea.py +84 -0
- instaui/arco/components/time_picker.py +76 -0
- instaui/arco/components/timeline.py +14 -0
- instaui/arco/components/tooltip.py +29 -0
- instaui/arco/components/transfer.py +58 -0
- instaui/arco/components/tree.py +120 -0
- instaui/arco/components/tree_select.py +86 -0
- instaui/arco/components/trigger.py +58 -0
- instaui/arco/components/typography.py +142 -0
- instaui/arco/components/upload.py +71 -0
- instaui/arco/components/verification_code.py +58 -0
- instaui/arco/components/watermark.py +14 -0
- instaui/arco/locales/__init__.py +4 -0
- instaui/arco/locales/_index.py +31 -0
- instaui/arco/locales/en_us.py +227 -0
- instaui/arco/locales/zh_cn.py +224 -0
- instaui/arco/setup.py +36 -0
- instaui/arco/static/instaui-arco.css +1 -0
- instaui/arco/static/instaui-arco.js +55771 -0
- instaui/arco/types.py +24 -0
- instaui/boot_info.py +43 -0
- instaui/common/jsonable.py +37 -0
- instaui/components/__init__.py +0 -0
- instaui/components/column.py +26 -0
- instaui/components/component.py +47 -0
- instaui/components/content.py +34 -0
- instaui/components/directive.py +55 -0
- instaui/components/element.py +573 -0
- instaui/components/grid.py +213 -0
- instaui/components/html/__init__.py +49 -0
- instaui/components/html/_mixins.py +34 -0
- instaui/components/html/_preset.py +4 -0
- instaui/components/html/button.py +38 -0
- instaui/components/html/checkbox.py +35 -0
- instaui/components/html/date.py +28 -0
- instaui/components/html/div.py +7 -0
- instaui/components/html/form.py +7 -0
- instaui/components/html/heading.py +51 -0
- instaui/components/html/input.py +28 -0
- instaui/components/html/label.py +21 -0
- instaui/components/html/li.py +17 -0
- instaui/components/html/link.py +31 -0
- instaui/components/html/number.py +34 -0
- instaui/components/html/paragraph.py +29 -0
- instaui/components/html/range.py +48 -0
- instaui/components/html/select.py +69 -0
- instaui/components/html/span.py +19 -0
- instaui/components/html/table.py +36 -0
- instaui/components/html/textarea.py +28 -0
- instaui/components/html/ul.py +20 -0
- instaui/components/label.py +5 -0
- instaui/components/markdown/markdown.js +33 -0
- instaui/components/markdown/markdown.py +41 -0
- instaui/components/markdown/static/github-markdown.css +12 -0
- instaui/components/markdown/static/marked.esm.js +2579 -0
- instaui/components/match.py +108 -0
- instaui/components/row.py +17 -0
- instaui/components/shiki_code/shiki_code.js +126 -0
- instaui/components/shiki_code/shiki_code.py +99 -0
- instaui/components/shiki_code/static/langs/css.mjs +5 -0
- instaui/components/shiki_code/static/langs/markdown.mjs +5 -0
- instaui/components/shiki_code/static/langs/python.mjs +5 -0
- instaui/components/shiki_code/static/langs/shell.mjs +2 -0
- instaui/components/shiki_code/static/langs/shellscript.mjs +5 -0
- instaui/components/shiki_code/static/shiki-core.js +5784 -0
- instaui/components/shiki_code/static/shiki-style.css +179 -0
- instaui/components/shiki_code/static/shiki-transformers.js +461 -0
- instaui/components/shiki_code/static/themes/vitesse-dark.mjs +2 -0
- instaui/components/shiki_code/static/themes/vitesse-light.mjs +2 -0
- instaui/components/slot.py +81 -0
- instaui/components/transition_group.py +9 -0
- instaui/components/value_element.py +52 -0
- instaui/components/vfor.py +142 -0
- instaui/components/vif.py +42 -0
- instaui/consts.py +23 -0
- instaui/dependencies/component_dependency.py +22 -0
- instaui/dependencies/plugin_dependency.py +28 -0
- instaui/event/event_mixin.py +12 -0
- instaui/event/js_event.py +82 -0
- instaui/event/vue_event.py +66 -0
- instaui/event/web_event.py +123 -0
- instaui/experimental/__init__.py +3 -0
- instaui/experimental/debug.py +48 -0
- instaui/extra_libs/_echarts.py +3 -0
- instaui/extra_libs/_import_error.py +9 -0
- instaui/extra_libs/_mermaid.py +3 -0
- instaui/extra_libs/_shiki_code.py +3 -0
- instaui/fastapi_server/_utils.py +42 -0
- instaui/fastapi_server/_uvicorn.py +37 -0
- instaui/fastapi_server/debug_mode_router.py +60 -0
- instaui/fastapi_server/dependency_router.py +28 -0
- instaui/fastapi_server/event_router.py +58 -0
- instaui/fastapi_server/middlewares.py +19 -0
- instaui/fastapi_server/request_context.py +19 -0
- instaui/fastapi_server/resource.py +30 -0
- instaui/fastapi_server/server.py +308 -0
- instaui/fastapi_server/watch_router.py +53 -0
- instaui/handlers/_utils.py +88 -0
- instaui/handlers/event_handler.py +60 -0
- instaui/handlers/watch_handler.py +61 -0
- instaui/html_tools.py +94 -0
- instaui/inject.py +33 -0
- instaui/js/__init__.py +4 -0
- instaui/js/js_output.py +15 -0
- instaui/js/lambda_func.py +35 -0
- instaui/launch_collector.py +52 -0
- instaui/page_info.py +13 -0
- instaui/runtime/__init__.py +29 -0
- instaui/runtime/_app.py +234 -0
- instaui/runtime/_inner_helper.py +9 -0
- instaui/runtime/_link_manager.py +89 -0
- instaui/runtime/context.py +47 -0
- instaui/runtime/dataclass.py +30 -0
- instaui/runtime/resource.py +65 -0
- instaui/runtime/scope.py +133 -0
- instaui/runtime/ui_state_scope.py +15 -0
- instaui/settings/__init__.py +4 -0
- instaui/settings/__settings.py +13 -0
- instaui/shadcn_classless/_index.py +42 -0
- instaui/shadcn_classless/static/shadcn-classless.css +403 -0
- instaui/skip.py +12 -0
- instaui/spa_router/__init__.py +26 -0
- instaui/spa_router/_components.py +35 -0
- instaui/spa_router/_file_base_utils.py +273 -0
- instaui/spa_router/_functions.py +122 -0
- instaui/spa_router/_install.py +11 -0
- instaui/spa_router/_route_model.py +117 -0
- instaui/spa_router/_router_box.py +40 -0
- instaui/spa_router/_router_output.py +22 -0
- instaui/spa_router/_router_param_var.py +51 -0
- instaui/spa_router/_types.py +4 -0
- instaui/spa_router/templates/page_routes +60 -0
- instaui/static/insta-ui.css +1 -0
- instaui/static/insta-ui.esm-browser.prod.js +3717 -0
- instaui/static/insta-ui.ico +0 -0
- instaui/static/insta-ui.js.map +1 -0
- instaui/static/instaui-tools-browser.js +511 -0
- instaui/static/templates/debug/sse.html +117 -0
- instaui/static/templates/web.html +74 -0
- instaui/static/templates/webview.html +78 -0
- instaui/static/templates/zero.html +71 -0
- instaui/static/vue.esm-browser.prod.js +9 -0
- instaui/static/vue.global.prod.js +9 -0
- instaui/static/vue.runtime.esm-browser.prod.js +5 -0
- instaui/systems/file_system.py +6 -0
- instaui/systems/func_system.py +119 -0
- instaui/systems/js_system.py +22 -0
- instaui/systems/module_system.py +46 -0
- instaui/systems/pydantic_system.py +27 -0
- instaui/systems/string_system.py +10 -0
- instaui/tailwind/__init__.py +6 -0
- instaui/tailwind/_index.py +24 -0
- instaui/tailwind/static/tailwindcss-v3.min.js +62 -0
- instaui/tailwind/static/tailwindcss-v4.min.js +8 -0
- instaui/template/__init__.py +4 -0
- instaui/template/_utils.py +23 -0
- instaui/template/env.py +7 -0
- instaui/template/web_template.py +49 -0
- instaui/template/webview_template.py +48 -0
- instaui/template/zero_template.py +105 -0
- instaui/ui/__init__.py +144 -0
- instaui/ui/__init__.pyi +149 -0
- instaui/ui/events.py +25 -0
- instaui/ui_functions/input_slient_data.py +16 -0
- instaui/ui_functions/server.py +15 -0
- instaui/ui_functions/str_format.py +36 -0
- instaui/ui_functions/ui_page.py +16 -0
- instaui/ui_functions/ui_types.py +13 -0
- instaui/ui_functions/url_location.py +33 -0
- instaui/vars/_types.py +8 -0
- instaui/vars/data.py +68 -0
- instaui/vars/element_ref.py +40 -0
- instaui/vars/event_context.py +49 -0
- instaui/vars/event_extend.py +0 -0
- instaui/vars/js_computed.py +117 -0
- instaui/vars/mixin_types/common_type.py +5 -0
- instaui/vars/mixin_types/element_binding.py +16 -0
- instaui/vars/mixin_types/observable.py +7 -0
- instaui/vars/mixin_types/pathable.py +14 -0
- instaui/vars/mixin_types/py_binding.py +13 -0
- instaui/vars/mixin_types/str_format_binding.py +8 -0
- instaui/vars/mixin_types/var_type.py +5 -0
- instaui/vars/path_var.py +90 -0
- instaui/vars/ref.py +103 -0
- instaui/vars/slot_prop.py +46 -0
- instaui/vars/state.py +97 -0
- instaui/vars/types.py +24 -0
- instaui/vars/vfor_item.py +204 -0
- instaui/vars/vue_computed.py +81 -0
- instaui/vars/web_computed.py +209 -0
- instaui/vars/web_view_computed.py +1 -0
- instaui/version.py +3 -0
- instaui/watch/_types.py +4 -0
- instaui/watch/_utils.py +3 -0
- instaui/watch/js_watch.py +110 -0
- instaui/watch/vue_watch.py +77 -0
- instaui/watch/web_watch.py +181 -0
- instaui/webview/__init__.py +2 -0
- instaui/webview/_utils.py +8 -0
- instaui/webview/api.py +72 -0
- instaui/webview/func.py +114 -0
- instaui/webview/index.py +161 -0
- instaui/webview/resource.py +172 -0
- instaui/zero/__init__.py +3 -0
- instaui/zero/func.py +123 -0
- instaui/zero/scope.py +109 -0
- instaui-0.1.15.dist-info/METADATA +152 -0
- instaui-0.1.15.dist-info/RECORD +283 -0
- instaui-0.1.15.dist-info/WHEEL +5 -0
- instaui-0.1.15.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,1019 @@
|
|
1
|
+
"""
|
2
|
+
This file is automatically generated by InstaUI. Do not modify it manually.
|
3
|
+
"""
|
4
|
+
from typing import Union, Dict, List, Any, Literal, Tuple, Optional
|
5
|
+
import datetime
|
6
|
+
from typing_extensions import TypedDict
|
7
|
+
from instaui.vars.types import TMaybeRef
|
8
|
+
|
9
|
+
class TButton(TypedDict, total=False):
|
10
|
+
type: TMaybeRef[Union[str,Literal['primary','secondary', 'dashed', 'outline', 'text']]]
|
11
|
+
shape: TMaybeRef[Union[str,Literal['square', 'round', 'circle']]]
|
12
|
+
status: TMaybeRef[Union[str,Literal['normal', 'warning', 'success', 'danger']]]
|
13
|
+
size: TMaybeRef[Union[str,Literal['mini', 'small', 'medium', 'large']]]
|
14
|
+
long: TMaybeRef[bool]
|
15
|
+
loading: TMaybeRef[bool]
|
16
|
+
disabled: TMaybeRef[bool]
|
17
|
+
html_type: TMaybeRef[str]
|
18
|
+
autofocus: TMaybeRef[bool]
|
19
|
+
href: TMaybeRef[str]
|
20
|
+
|
21
|
+
class TLink(TypedDict, total=False):
|
22
|
+
href: TMaybeRef[str]
|
23
|
+
status: TMaybeRef[Union[str,Literal['normal', 'warning', 'success', 'danger']]]
|
24
|
+
hoverable: TMaybeRef[bool]
|
25
|
+
icon: TMaybeRef[bool]
|
26
|
+
loading: TMaybeRef[bool]
|
27
|
+
disabled: TMaybeRef[bool]
|
28
|
+
|
29
|
+
class TTypography(TypedDict, total=False):
|
30
|
+
type: TMaybeRef[Union[str,Literal['primary', 'secondary', 'success', 'danger', 'warning']]]
|
31
|
+
bold: TMaybeRef[bool]
|
32
|
+
mark: TMaybeRef[Union[bool, Dict[str, str]]]
|
33
|
+
underline: TMaybeRef[bool]
|
34
|
+
delete: TMaybeRef[bool]
|
35
|
+
code: TMaybeRef[bool]
|
36
|
+
disabled: TMaybeRef[bool]
|
37
|
+
editable: TMaybeRef[bool]
|
38
|
+
editing: TMaybeRef[bool]
|
39
|
+
default_editing: TMaybeRef[bool]
|
40
|
+
edit_text: TMaybeRef[str]
|
41
|
+
copyable: TMaybeRef[bool]
|
42
|
+
copy_text: TMaybeRef[str]
|
43
|
+
copy_delay: TMaybeRef[int]
|
44
|
+
ellipsis: TMaybeRef[Union[bool, Any]]
|
45
|
+
edit_tooltip_props: TMaybeRef[Dict]
|
46
|
+
copy_tooltip_props: TMaybeRef[Dict]
|
47
|
+
|
48
|
+
class TDivider(TypedDict, total=False):
|
49
|
+
direction: TMaybeRef[Union[str,Literal['horizontal', 'vertical']]]
|
50
|
+
orientation: TMaybeRef[Union[str,Literal['left', 'center', 'right']]]
|
51
|
+
type: TMaybeRef[Union[str,Literal['solid', 'dashed', 'dotted', 'double']]]
|
52
|
+
size: TMaybeRef[int]
|
53
|
+
margin: TMaybeRef[Union[int, str]]
|
54
|
+
|
55
|
+
class TLayout(TypedDict, total=False):
|
56
|
+
has_sider: TMaybeRef[bool]
|
57
|
+
|
58
|
+
class TSpace(TypedDict, total=False):
|
59
|
+
align: TMaybeRef[Union[str,Literal['start', 'end', 'center', 'baseline']]]
|
60
|
+
direction: TMaybeRef[Union[str,Literal['vertical', 'horizontal']]]
|
61
|
+
size: TMaybeRef[Union[int, Union[str,Literal['mini', 'small','medium', 'large']]]]
|
62
|
+
wrap: TMaybeRef[bool]
|
63
|
+
fill: TMaybeRef[bool]
|
64
|
+
|
65
|
+
class TAvatar(TypedDict, total=False):
|
66
|
+
shape: TMaybeRef[Union[str,Literal['circle', 'square']]]
|
67
|
+
image_url: TMaybeRef[str]
|
68
|
+
size: TMaybeRef[int]
|
69
|
+
auto_fix_font_size: TMaybeRef[bool]
|
70
|
+
trigger_type: TMaybeRef[Union[str,Literal['mask', 'button']]]
|
71
|
+
trigger_icon_style: Any
|
72
|
+
object_fit: TMaybeRef[Union[str,Literal['fill', 'contain', 'cover', 'none', 'scale-down']]]
|
73
|
+
|
74
|
+
class TBadge(TypedDict, total=False):
|
75
|
+
text: TMaybeRef[str]
|
76
|
+
dot: TMaybeRef[bool]
|
77
|
+
dot_style: TMaybeRef[Dict]
|
78
|
+
max_count: TMaybeRef[int]
|
79
|
+
offset: TMaybeRef[List[int]]
|
80
|
+
color: TMaybeRef[Union[Any, str]]
|
81
|
+
status: TMaybeRef[Union[str,Literal['normal', 'processing', 'success', 'warning', 'danger']]]
|
82
|
+
count: TMaybeRef[int]
|
83
|
+
|
84
|
+
class TCalendar(TypedDict, total=False):
|
85
|
+
model_value: TMaybeRef[datetime.date]
|
86
|
+
default_value: TMaybeRef[datetime.date]
|
87
|
+
mode: TMaybeRef[Union[str,Literal['month', 'year']]]
|
88
|
+
default_mode: TMaybeRef[Union[str,Literal['month', 'year']]]
|
89
|
+
modes: TMaybeRef[List[Union[str,Literal['month', 'year']]]]
|
90
|
+
|
91
|
+
class TCard(TypedDict, total=False):
|
92
|
+
bordered: TMaybeRef[bool]
|
93
|
+
loading: TMaybeRef[bool]
|
94
|
+
hoverable: TMaybeRef[bool]
|
95
|
+
size: TMaybeRef[Union[str,Literal['medium', 'small']]]
|
96
|
+
header_style: Any
|
97
|
+
body_style: Any
|
98
|
+
title: TMaybeRef[str]
|
99
|
+
extra: TMaybeRef[str]
|
100
|
+
|
101
|
+
class TCarousel(TypedDict, total=False):
|
102
|
+
current: TMaybeRef[int]
|
103
|
+
default_current: TMaybeRef[int]
|
104
|
+
auto_play: TMaybeRef[Union[bool, Any]]
|
105
|
+
move_speed: TMaybeRef[int]
|
106
|
+
animation_name: TMaybeRef[Union[str,Literal['slide', 'fade', 'card']]]
|
107
|
+
trigger: TMaybeRef[Union[str,Literal['click', 'hover']]]
|
108
|
+
direction: TMaybeRef[Union[str,Literal['horizontal', 'vertical']]]
|
109
|
+
show_arrow: TMaybeRef[Union[str,Literal['always', 'hover', 'never']]]
|
110
|
+
arrow_class: TMaybeRef[str]
|
111
|
+
indicator_type: TMaybeRef[Union[str,Literal['line', 'dot', 'slider', 'never']]]
|
112
|
+
indicator_position: TMaybeRef[Union[str,Literal['bottom', 'top', 'left', 'right', 'outer']]]
|
113
|
+
indicator_class: TMaybeRef[str]
|
114
|
+
transition_timing_function: TMaybeRef[str]
|
115
|
+
|
116
|
+
class TCollapse(TypedDict, total=False):
|
117
|
+
active_key: TMaybeRef[List[Union[str, int]]]
|
118
|
+
default_active_key: TMaybeRef[List[Union[str, int]]]
|
119
|
+
accordion: TMaybeRef[bool]
|
120
|
+
show_expand_icon: TMaybeRef[bool]
|
121
|
+
expand_icon_position: TMaybeRef[Union[str,Literal['left', 'right']]]
|
122
|
+
bordered: TMaybeRef[bool]
|
123
|
+
destroy_on_hide: TMaybeRef[bool]
|
124
|
+
|
125
|
+
class TComment(TypedDict, total=False):
|
126
|
+
author: TMaybeRef[str]
|
127
|
+
avatar: TMaybeRef[str]
|
128
|
+
content: TMaybeRef[str]
|
129
|
+
datetime: TMaybeRef[str]
|
130
|
+
align: Any
|
131
|
+
|
132
|
+
class TDescriptions(TypedDict, total=False):
|
133
|
+
data: TMaybeRef[List]
|
134
|
+
column: TMaybeRef[Union[int, Any]]
|
135
|
+
title: TMaybeRef[str]
|
136
|
+
layout: TMaybeRef[Union[str,Literal['horizontal', 'vertical', 'inline-horizontal', 'inline-vertical']]]
|
137
|
+
align: Any
|
138
|
+
size: TMaybeRef[Union[str,Literal['mini', 'small', 'medium', 'large']]]
|
139
|
+
bordered: TMaybeRef[bool]
|
140
|
+
label_style: Any
|
141
|
+
value_style: Any
|
142
|
+
table_layout: TMaybeRef[Union[str,Literal['auto', 'fixed']]]
|
143
|
+
|
144
|
+
class TEmpty(TypedDict, total=False):
|
145
|
+
description: TMaybeRef[str]
|
146
|
+
img_src: TMaybeRef[str]
|
147
|
+
in_config_provider: TMaybeRef[bool]
|
148
|
+
|
149
|
+
class TImage(TypedDict, total=False):
|
150
|
+
src: TMaybeRef[str]
|
151
|
+
width: TMaybeRef[Union[str, int]]
|
152
|
+
height: TMaybeRef[Union[str, int]]
|
153
|
+
title: TMaybeRef[str]
|
154
|
+
description: TMaybeRef[str]
|
155
|
+
fit: TMaybeRef[Union[str,Literal['contain', 'cover', 'fill', 'none', 'scale-down']]]
|
156
|
+
alt: TMaybeRef[str]
|
157
|
+
hide_footer: TMaybeRef[Union[bool, Union[str,Literal['never']]]]
|
158
|
+
footer_position: TMaybeRef[Union[str,Literal['inner', 'outer']]]
|
159
|
+
show_loader: TMaybeRef[bool]
|
160
|
+
preview: TMaybeRef[bool]
|
161
|
+
preview_visible: TMaybeRef[bool]
|
162
|
+
default_preview_visible: TMaybeRef[bool]
|
163
|
+
preview_props: Any
|
164
|
+
footer_class: TMaybeRef[Union[str, List, Dict]]
|
165
|
+
|
166
|
+
class TList(TypedDict, total=False):
|
167
|
+
data: TMaybeRef[List]
|
168
|
+
size: TMaybeRef[Union[str,Literal['small', 'medium', 'large']]]
|
169
|
+
bordered: TMaybeRef[bool]
|
170
|
+
split: TMaybeRef[bool]
|
171
|
+
loading: TMaybeRef[bool]
|
172
|
+
hoverable: TMaybeRef[bool]
|
173
|
+
pagination_props: Any
|
174
|
+
grid_props: TMaybeRef[Dict]
|
175
|
+
max_height: TMaybeRef[Union[str, int]]
|
176
|
+
bottom_offset: TMaybeRef[int]
|
177
|
+
virtual_list_props: Any
|
178
|
+
scrollbar: TMaybeRef[Union[bool, Any]]
|
179
|
+
|
180
|
+
class TPopover(TypedDict, total=False):
|
181
|
+
popup_visible: TMaybeRef[bool]
|
182
|
+
default_popup_visible: TMaybeRef[bool]
|
183
|
+
title: TMaybeRef[str]
|
184
|
+
content: TMaybeRef[str]
|
185
|
+
trigger: TMaybeRef[Union[str,Literal['hover', 'click', 'focus', 'contextMenu']]]
|
186
|
+
position: TMaybeRef[Union[str,Literal['top', 'tl', 'tr', 'bottom', 'bl', 'br', 'left', 'lt', 'lb', 'right', 'rt', 'rb']]]
|
187
|
+
content_class: Any
|
188
|
+
content_style: Any
|
189
|
+
arrow_class: Any
|
190
|
+
arrow_style: Any
|
191
|
+
popup_container: TMaybeRef[Union[str, Any]]
|
192
|
+
|
193
|
+
class TStatistic(TypedDict, total=False):
|
194
|
+
title: TMaybeRef[str]
|
195
|
+
value: TMaybeRef[Union[int, datetime.date, datetime.datetime]]
|
196
|
+
format: TMaybeRef[str]
|
197
|
+
extra: TMaybeRef[str]
|
198
|
+
start: TMaybeRef[bool]
|
199
|
+
precision: TMaybeRef[int]
|
200
|
+
separator: TMaybeRef[str]
|
201
|
+
show_group_separator: TMaybeRef[bool]
|
202
|
+
animation: TMaybeRef[bool]
|
203
|
+
animation_duration: TMaybeRef[int]
|
204
|
+
value_from_: TMaybeRef[int]
|
205
|
+
placeholder: TMaybeRef[str]
|
206
|
+
value_style: Any
|
207
|
+
|
208
|
+
class TTable(TypedDict, total=False):
|
209
|
+
columns: TMaybeRef[List]
|
210
|
+
data: TMaybeRef[List]
|
211
|
+
bordered: TMaybeRef[Union[bool, Any]]
|
212
|
+
hoverable: TMaybeRef[bool]
|
213
|
+
stripe: TMaybeRef[bool]
|
214
|
+
size: TMaybeRef[Union[str,Literal['mini', 'small', 'medium', 'large']]]
|
215
|
+
table_layout_fixed: TMaybeRef[bool]
|
216
|
+
loading: TMaybeRef[Union[bool, Dict[str, Any]]]
|
217
|
+
row_selection: Any
|
218
|
+
expandable: Any
|
219
|
+
scroll: TMaybeRef[Dict[str, Union[int, str]]]
|
220
|
+
pagination: TMaybeRef[Union[bool, Any]]
|
221
|
+
page_position: TMaybeRef[Union[str,Literal['tl', 'top', 'tr', 'bl', 'bottom', 'br']]]
|
222
|
+
indent_size: TMaybeRef[int]
|
223
|
+
row_key: TMaybeRef[str]
|
224
|
+
show_header: TMaybeRef[bool]
|
225
|
+
virtual_list_props: Any
|
226
|
+
span_method: Any
|
227
|
+
span_all: TMaybeRef[bool]
|
228
|
+
load_more: TMaybeRef[str]
|
229
|
+
filter_icon_align_left: TMaybeRef[bool]
|
230
|
+
hide_expand_button_on_empty: TMaybeRef[bool]
|
231
|
+
row_class: TMaybeRef[Union[str, List]]
|
232
|
+
draggable: Any
|
233
|
+
column_resizable: TMaybeRef[bool]
|
234
|
+
summary: TMaybeRef[Union[bool, str]]
|
235
|
+
summary_text: TMaybeRef[str]
|
236
|
+
summary_span_method: Any
|
237
|
+
selected_keys: TMaybeRef[List[Union[str, int]]]
|
238
|
+
default_selected_keys: TMaybeRef[List[Union[str, int]]]
|
239
|
+
expanded_keys: TMaybeRef[List[Union[str, int]]]
|
240
|
+
default_expanded_keys: TMaybeRef[List[Union[str, int]]]
|
241
|
+
default_expand_all_rows: TMaybeRef[bool]
|
242
|
+
sticky_header: TMaybeRef[Union[bool, int]]
|
243
|
+
scrollbar: TMaybeRef[Union[bool, Any]]
|
244
|
+
show_empty_tree: TMaybeRef[bool]
|
245
|
+
|
246
|
+
class TTabs(TypedDict, total=False):
|
247
|
+
default_active_key: TMaybeRef[Union[str, int]]
|
248
|
+
position: TMaybeRef[Union[str,Literal['left', 'right', 'top', 'bottom']]]
|
249
|
+
size: TMaybeRef[Union[str,Literal['mini', 'small', 'medium', 'large']]]
|
250
|
+
type: TMaybeRef[Union[str,Literal['line', 'card', 'card-gutter', 'text', 'rounded', 'capsule']]]
|
251
|
+
direction: TMaybeRef[Union[str,Literal['horizontal', 'vertical']]]
|
252
|
+
editable: TMaybeRef[bool]
|
253
|
+
show_add_button: TMaybeRef[bool]
|
254
|
+
destroy_on_hide: TMaybeRef[bool]
|
255
|
+
lazy_load: TMaybeRef[bool]
|
256
|
+
justify: TMaybeRef[bool]
|
257
|
+
animation: TMaybeRef[bool]
|
258
|
+
header_padding: TMaybeRef[bool]
|
259
|
+
auto_switch: TMaybeRef[bool]
|
260
|
+
hide_content: TMaybeRef[bool]
|
261
|
+
trigger: TMaybeRef[Union[str,Literal['hover', 'click']]]
|
262
|
+
scroll_position: TMaybeRef[Union[Union[str,Literal['start', 'end', 'center', 'auto']], int]]
|
263
|
+
|
264
|
+
class TTag(TypedDict, total=False):
|
265
|
+
color: TMaybeRef[Union[str,Literal['red', 'orangered', 'orange', 'gold', 'lime', 'green', 'cyan', 'blue', 'arcoblue', 'purple', 'pinkpurple', 'magenta', 'gray']]]
|
266
|
+
size: TMaybeRef[Union[str,Literal['small', 'medium', 'large']]]
|
267
|
+
bordered: TMaybeRef[bool]
|
268
|
+
visible: TMaybeRef[bool]
|
269
|
+
default_visible: TMaybeRef[bool]
|
270
|
+
loading: TMaybeRef[bool]
|
271
|
+
closable: TMaybeRef[bool]
|
272
|
+
checkable: TMaybeRef[bool]
|
273
|
+
checked: TMaybeRef[bool]
|
274
|
+
default_checked: TMaybeRef[bool]
|
275
|
+
nowrap: TMaybeRef[bool]
|
276
|
+
|
277
|
+
class TTimeline(TypedDict, total=False):
|
278
|
+
reverse: TMaybeRef[bool]
|
279
|
+
direction: TMaybeRef[Union[str,Literal['horizontal', 'vertical']]]
|
280
|
+
mode: TMaybeRef[Union[str,Literal['left', 'right', 'top', 'bottom', 'alternate']]]
|
281
|
+
pending: TMaybeRef[Union[bool, str]]
|
282
|
+
label_position: TMaybeRef[Union[str,Literal['relative', 'same']]]
|
283
|
+
|
284
|
+
class TTooltip(TypedDict, total=False):
|
285
|
+
popup_visible: TMaybeRef[bool]
|
286
|
+
default_popup_visible: TMaybeRef[bool]
|
287
|
+
content: TMaybeRef[str]
|
288
|
+
position: TMaybeRef[Union[str,Literal['top', 'tl', 'tr', 'bottom', 'bl', 'br', 'left', 'lt', 'lb', 'right', 'rt', 'rb']]]
|
289
|
+
mini: TMaybeRef[bool]
|
290
|
+
background_color: TMaybeRef[str]
|
291
|
+
content_class: Any
|
292
|
+
content_style: Any
|
293
|
+
arrow_class: Any
|
294
|
+
arrow_style: Any
|
295
|
+
popup_container: TMaybeRef[Union[str, Any]]
|
296
|
+
|
297
|
+
class TTree(TypedDict, total=False):
|
298
|
+
size: TMaybeRef[Union[str,Literal['mini', 'small', 'medium', 'large']]]
|
299
|
+
block_node: TMaybeRef[bool]
|
300
|
+
default_expand_all: TMaybeRef[bool]
|
301
|
+
multiple: TMaybeRef[bool]
|
302
|
+
checkable: TMaybeRef[Union[bool, str]]
|
303
|
+
selectable: TMaybeRef[Union[bool, str]]
|
304
|
+
check_strictly: TMaybeRef[bool]
|
305
|
+
checked_strategy: TMaybeRef[Union[str,Literal['all', 'parent', 'child']]]
|
306
|
+
default_selected_keys: TMaybeRef[List[Union[str, int]]]
|
307
|
+
selected_keys: TMaybeRef[List[Union[str, int]]]
|
308
|
+
default_checked_keys: TMaybeRef[List[Union[str, int]]]
|
309
|
+
checked_keys: TMaybeRef[List[Union[str, int]]]
|
310
|
+
default_expanded_keys: TMaybeRef[List[Union[str, int]]]
|
311
|
+
expanded_keys: TMaybeRef[List[Union[str, int]]]
|
312
|
+
data: TMaybeRef[List]
|
313
|
+
field_names: Any
|
314
|
+
show_line: TMaybeRef[bool]
|
315
|
+
load_more: TMaybeRef[str]
|
316
|
+
draggable: TMaybeRef[bool]
|
317
|
+
allow_drop: TMaybeRef[str]
|
318
|
+
virtual_list_props: Any
|
319
|
+
default_expand_selected: TMaybeRef[bool]
|
320
|
+
default_expand_checked: TMaybeRef[bool]
|
321
|
+
auto_expand_parent: TMaybeRef[bool]
|
322
|
+
half_checked_keys: TMaybeRef[List[Union[str, int]]]
|
323
|
+
only_check_leaf: TMaybeRef[bool]
|
324
|
+
animation: TMaybeRef[bool]
|
325
|
+
action_on_node_click: TMaybeRef[Union[str,Literal['expand']]]
|
326
|
+
|
327
|
+
class TAutocomplete(TypedDict, total=False):
|
328
|
+
model_value: TMaybeRef[str]
|
329
|
+
default_value: TMaybeRef[str]
|
330
|
+
disabled: TMaybeRef[bool]
|
331
|
+
data: TMaybeRef[List[Union[str, int, Any]]]
|
332
|
+
popup_container: TMaybeRef[Union[str, Any, None, Any]]
|
333
|
+
strict: TMaybeRef[bool]
|
334
|
+
filter_option: Any
|
335
|
+
trigger_props: Any
|
336
|
+
allow_clear: TMaybeRef[bool]
|
337
|
+
virtual_list_props: Any
|
338
|
+
|
339
|
+
class TCascader(TypedDict, total=False):
|
340
|
+
path_mode: TMaybeRef[bool]
|
341
|
+
multiple: TMaybeRef[bool]
|
342
|
+
model_value: TMaybeRef[Union[str, int, Dict[str, Any]]]
|
343
|
+
default_value: TMaybeRef[Union[str, int, Dict[str, Any]]]
|
344
|
+
disabled: TMaybeRef[bool]
|
345
|
+
error: TMaybeRef[bool]
|
346
|
+
size: TMaybeRef[Union[str,Literal['mini', 'small', 'medium', 'large']]]
|
347
|
+
allow_search: TMaybeRef[bool]
|
348
|
+
allow_clear: TMaybeRef[bool]
|
349
|
+
input_value: TMaybeRef[str]
|
350
|
+
default_input_value: TMaybeRef[str]
|
351
|
+
popup_visible: TMaybeRef[bool]
|
352
|
+
expand_trigger: TMaybeRef[Union[str,Literal['click', 'hover']]]
|
353
|
+
default_popup_visible: TMaybeRef[bool]
|
354
|
+
placeholder: TMaybeRef[str]
|
355
|
+
filter_option: TMaybeRef[str]
|
356
|
+
popup_container: TMaybeRef[Union[str, Any]]
|
357
|
+
max_tag_count: TMaybeRef[int]
|
358
|
+
format_label: TMaybeRef[str]
|
359
|
+
trigger_props: Any
|
360
|
+
check_strictly: TMaybeRef[bool]
|
361
|
+
load_more: TMaybeRef[str]
|
362
|
+
loading: TMaybeRef[bool]
|
363
|
+
search_option_only_label: TMaybeRef[bool]
|
364
|
+
search_delay: TMaybeRef[int]
|
365
|
+
field_names: Any
|
366
|
+
value_key: TMaybeRef[str]
|
367
|
+
fallback: TMaybeRef[Union[bool, str]]
|
368
|
+
expand_child: TMaybeRef[bool]
|
369
|
+
virtual_list_props: Any
|
370
|
+
tag_nowrap: TMaybeRef[bool]
|
371
|
+
|
372
|
+
class TCheckbox(TypedDict, total=False):
|
373
|
+
model_value: TMaybeRef[Union[bool, List[Union[str, int, bool]]]]
|
374
|
+
default_checked: TMaybeRef[bool]
|
375
|
+
disabled: TMaybeRef[bool]
|
376
|
+
indeterminate: TMaybeRef[bool]
|
377
|
+
|
378
|
+
class TColorpicker(TypedDict, total=False):
|
379
|
+
model_value: TMaybeRef[str]
|
380
|
+
default_value: TMaybeRef[str]
|
381
|
+
format: TMaybeRef[Union[str,Literal['hex', 'rgb']]]
|
382
|
+
size: TMaybeRef[Union[str,Literal['mini', 'small', 'medium', 'large']]]
|
383
|
+
show_text: TMaybeRef[bool]
|
384
|
+
show_history: TMaybeRef[bool]
|
385
|
+
show_preset: TMaybeRef[bool]
|
386
|
+
disabled: TMaybeRef[bool]
|
387
|
+
disabled_alpha: TMaybeRef[bool]
|
388
|
+
hide_trigger: TMaybeRef[bool]
|
389
|
+
trigger_props: Any
|
390
|
+
history_colors: TMaybeRef[List[str]]
|
391
|
+
preset_colors: TMaybeRef[List[str]]
|
392
|
+
|
393
|
+
class TDatepicker(TypedDict, total=False):
|
394
|
+
locale: TMaybeRef[Dict[str, Any]]
|
395
|
+
hide_trigger: TMaybeRef[bool]
|
396
|
+
allow_clear: TMaybeRef[bool]
|
397
|
+
readonly: TMaybeRef[bool]
|
398
|
+
error: TMaybeRef[bool]
|
399
|
+
size: TMaybeRef[Union[str,Literal['mini', 'small', 'medium', 'large']]]
|
400
|
+
shortcuts: TMaybeRef[List]
|
401
|
+
shortcuts_position: TMaybeRef[Union[str,Literal['left', 'bottom', 'right']]]
|
402
|
+
position: TMaybeRef[Union[str,Literal['top', 'tl', 'tr', 'bottom', 'bl', 'br']]]
|
403
|
+
popup_visible: TMaybeRef[bool]
|
404
|
+
default_popup_visible: TMaybeRef[bool]
|
405
|
+
trigger_props: Any
|
406
|
+
unmount_on_close: TMaybeRef[bool]
|
407
|
+
placeholder: TMaybeRef[str]
|
408
|
+
disabled: TMaybeRef[bool]
|
409
|
+
disabled_date: TMaybeRef[str]
|
410
|
+
disabled_time: TMaybeRef[str]
|
411
|
+
picker_value: TMaybeRef[Union[datetime.date, datetime.datetime, str, int]]
|
412
|
+
default_picker_value: TMaybeRef[Union[datetime.date, datetime.datetime, str, int]]
|
413
|
+
popup_container: TMaybeRef[Union[str, Any]]
|
414
|
+
value_format: TMaybeRef[Union[Union[str,Literal['timestamp', 'Date']], str]]
|
415
|
+
preview_shortcut: TMaybeRef[bool]
|
416
|
+
show_confirm_btn: TMaybeRef[bool]
|
417
|
+
disabled_input: TMaybeRef[bool]
|
418
|
+
abbreviation: TMaybeRef[bool]
|
419
|
+
|
420
|
+
class TForm(TypedDict, total=False):
|
421
|
+
model: TMaybeRef[Dict]
|
422
|
+
layout: TMaybeRef[Union[str,Literal['horizontal', 'vertical', 'inline']]]
|
423
|
+
size: TMaybeRef[Union[str,Literal['mini', 'small', 'medium', 'large']]]
|
424
|
+
label_col_props: TMaybeRef[Dict]
|
425
|
+
wrapper_col_props: TMaybeRef[Dict]
|
426
|
+
label_align: TMaybeRef[Union[str,Literal['left', 'right']]]
|
427
|
+
disabled: TMaybeRef[bool]
|
428
|
+
rules: TMaybeRef[Dict[str, Union[Any, List]]]
|
429
|
+
auto_label_width: TMaybeRef[bool]
|
430
|
+
id: TMaybeRef[str]
|
431
|
+
scroll_to_first_error: TMaybeRef[bool]
|
432
|
+
|
433
|
+
class TInput(TypedDict, total=False):
|
434
|
+
model_value: TMaybeRef[str]
|
435
|
+
default_value: TMaybeRef[str]
|
436
|
+
size: TMaybeRef[Union[str,Literal['mini', 'small', 'medium', 'large']]]
|
437
|
+
allow_clear: TMaybeRef[bool]
|
438
|
+
disabled: TMaybeRef[bool]
|
439
|
+
readonly: TMaybeRef[bool]
|
440
|
+
error: TMaybeRef[bool]
|
441
|
+
placeholder: TMaybeRef[str]
|
442
|
+
max_length: TMaybeRef[Union[int, Dict[str, Union[int, bool]]]]
|
443
|
+
show_word_limit: TMaybeRef[bool]
|
444
|
+
word_length: TMaybeRef[str]
|
445
|
+
word_slice: TMaybeRef[str]
|
446
|
+
input_attrs: TMaybeRef[Dict]
|
447
|
+
prepend: TMaybeRef[str]
|
448
|
+
append: TMaybeRef[str]
|
449
|
+
|
450
|
+
class TInputnumber(TypedDict, total=False):
|
451
|
+
model_value: TMaybeRef[int]
|
452
|
+
default_value: TMaybeRef[int]
|
453
|
+
mode: TMaybeRef[Union[str,Literal['embed', 'button']]]
|
454
|
+
precision: TMaybeRef[int]
|
455
|
+
step: TMaybeRef[int]
|
456
|
+
disabled: TMaybeRef[bool]
|
457
|
+
error: TMaybeRef[bool]
|
458
|
+
max: TMaybeRef[int]
|
459
|
+
min: TMaybeRef[int]
|
460
|
+
formatter: TMaybeRef[str]
|
461
|
+
parser: TMaybeRef[str]
|
462
|
+
placeholder: TMaybeRef[str]
|
463
|
+
hide_button: TMaybeRef[bool]
|
464
|
+
size: TMaybeRef[Union[str,Literal['mini', 'small', 'medium', 'large']]]
|
465
|
+
allow_clear: TMaybeRef[bool]
|
466
|
+
model_event: TMaybeRef[Union[str,Literal['change', 'input']]]
|
467
|
+
read_only: TMaybeRef[bool]
|
468
|
+
input_attrs: TMaybeRef[Dict]
|
469
|
+
|
470
|
+
class TVerificationcode(TypedDict, total=False):
|
471
|
+
model_value: TMaybeRef[str]
|
472
|
+
default_value: TMaybeRef[str]
|
473
|
+
length: TMaybeRef[int]
|
474
|
+
size: TMaybeRef[Union[str,Literal['mini', 'small', 'medium', 'large']]]
|
475
|
+
disabled: TMaybeRef[bool]
|
476
|
+
masked: TMaybeRef[bool]
|
477
|
+
readonly: TMaybeRef[bool]
|
478
|
+
error: TMaybeRef[bool]
|
479
|
+
separator: TMaybeRef[str]
|
480
|
+
formatter: TMaybeRef[str]
|
481
|
+
|
482
|
+
class TInputtag(TypedDict, total=False):
|
483
|
+
model_value: TMaybeRef[List[Union[str, int, Any]]]
|
484
|
+
default_value: TMaybeRef[List[Union[str, int, Any]]]
|
485
|
+
input_value: TMaybeRef[str]
|
486
|
+
default_input_value: TMaybeRef[str]
|
487
|
+
placeholder: TMaybeRef[str]
|
488
|
+
disabled: TMaybeRef[bool]
|
489
|
+
error: TMaybeRef[bool]
|
490
|
+
readonly: TMaybeRef[bool]
|
491
|
+
allow_clear: TMaybeRef[bool]
|
492
|
+
size: TMaybeRef[Union[str,Literal['mini', 'small', 'medium', 'large']]]
|
493
|
+
max_tag_count: TMaybeRef[int]
|
494
|
+
retain_input_value: TMaybeRef[Union[bool, Dict[str, bool]]]
|
495
|
+
format_tag: TMaybeRef[str]
|
496
|
+
unique_value: TMaybeRef[bool]
|
497
|
+
field_names: Any
|
498
|
+
tag_nowrap: TMaybeRef[bool]
|
499
|
+
|
500
|
+
class TMention(TypedDict, total=False):
|
501
|
+
model_value: TMaybeRef[str]
|
502
|
+
default_value: TMaybeRef[str]
|
503
|
+
data: TMaybeRef[List[Union[str, int, Any]]]
|
504
|
+
prefix: TMaybeRef[Union[str, List[str]]]
|
505
|
+
split: TMaybeRef[str]
|
506
|
+
type: TMaybeRef[Union[str,Literal['input', 'textarea']]]
|
507
|
+
disabled: TMaybeRef[bool]
|
508
|
+
allow_clear: TMaybeRef[bool]
|
509
|
+
|
510
|
+
class TRadio(TypedDict, total=False):
|
511
|
+
model_value: TMaybeRef[Union[str, int, bool]]
|
512
|
+
default_checked: TMaybeRef[bool]
|
513
|
+
type: TMaybeRef[Union[str,Literal['radio', 'button']]]
|
514
|
+
disabled: TMaybeRef[bool]
|
515
|
+
|
516
|
+
class TRate(TypedDict, total=False):
|
517
|
+
count: TMaybeRef[int]
|
518
|
+
model_value: TMaybeRef[int]
|
519
|
+
default_value: TMaybeRef[int]
|
520
|
+
allow_half: TMaybeRef[bool]
|
521
|
+
allow_clear: TMaybeRef[bool]
|
522
|
+
grading: TMaybeRef[bool]
|
523
|
+
readonly: TMaybeRef[bool]
|
524
|
+
disabled: TMaybeRef[bool]
|
525
|
+
color: TMaybeRef[Union[str, Dict[str, str]]]
|
526
|
+
|
527
|
+
class TSelect(TypedDict, total=False):
|
528
|
+
multiple: TMaybeRef[bool]
|
529
|
+
model_value: TMaybeRef[Union[str, int, bool, Dict[str, Any], List[Union[str, int, bool, Dict[str, Any]]]]]
|
530
|
+
default_value: TMaybeRef[Union[str, int, bool, Dict[str, Any], List[Union[str, int, bool, Dict[str, Any]]]]]
|
531
|
+
input_value: TMaybeRef[str]
|
532
|
+
default_input_value: TMaybeRef[str]
|
533
|
+
size: TMaybeRef[Union[str,Literal['mini', 'small', 'medium', 'large']]]
|
534
|
+
placeholder: TMaybeRef[str]
|
535
|
+
loading: TMaybeRef[bool]
|
536
|
+
disabled: TMaybeRef[bool]
|
537
|
+
error: TMaybeRef[bool]
|
538
|
+
allow_clear: TMaybeRef[bool]
|
539
|
+
allow_search: TMaybeRef[Union[bool, Dict[str, bool]]]
|
540
|
+
allow_create: TMaybeRef[bool]
|
541
|
+
max_tag_count: TMaybeRef[int]
|
542
|
+
popup_container: TMaybeRef[Union[str, Any]]
|
543
|
+
bordered: TMaybeRef[bool]
|
544
|
+
default_active_first_option: TMaybeRef[bool]
|
545
|
+
popup_visible: TMaybeRef[bool]
|
546
|
+
default_popup_visible: TMaybeRef[bool]
|
547
|
+
unmount_on_close: TMaybeRef[bool]
|
548
|
+
filter_option: TMaybeRef[Union[bool, str]]
|
549
|
+
virtual_list_props: Any
|
550
|
+
trigger_props: Any
|
551
|
+
format_label: TMaybeRef[str]
|
552
|
+
fallback_option: TMaybeRef[Union[bool, str]]
|
553
|
+
show_extra_options: TMaybeRef[bool]
|
554
|
+
value_key: TMaybeRef[str]
|
555
|
+
search_delay: TMaybeRef[int]
|
556
|
+
limit: TMaybeRef[int]
|
557
|
+
field_names: Any
|
558
|
+
scrollbar: TMaybeRef[Union[bool, Any]]
|
559
|
+
show_header_on_empty: TMaybeRef[bool]
|
560
|
+
show_footer_on_empty: TMaybeRef[bool]
|
561
|
+
tag_nowrap: TMaybeRef[bool]
|
562
|
+
|
563
|
+
class TSlider(TypedDict, total=False):
|
564
|
+
model_value: TMaybeRef[Union[int, Tuple[int, int]]]
|
565
|
+
default_value: TMaybeRef[Union[int, Tuple[int, int]]]
|
566
|
+
step: TMaybeRef[int]
|
567
|
+
min: TMaybeRef[int]
|
568
|
+
marks: TMaybeRef[Dict[int, str]]
|
569
|
+
max: TMaybeRef[int]
|
570
|
+
direction: Any
|
571
|
+
disabled: TMaybeRef[bool]
|
572
|
+
show_ticks: TMaybeRef[bool]
|
573
|
+
show_input: TMaybeRef[bool]
|
574
|
+
range: TMaybeRef[bool]
|
575
|
+
show_tooltip: TMaybeRef[bool]
|
576
|
+
|
577
|
+
class TSwitch(TypedDict, total=False):
|
578
|
+
model_value: TMaybeRef[Union[str, int, bool]]
|
579
|
+
default_checked: TMaybeRef[bool]
|
580
|
+
disabled: TMaybeRef[bool]
|
581
|
+
loading: TMaybeRef[bool]
|
582
|
+
type: TMaybeRef[Union[str,Literal['circle', 'round', 'line']]]
|
583
|
+
size: TMaybeRef[Union[str,Literal['small', 'medium']]]
|
584
|
+
checked_value: TMaybeRef[Union[str, int, bool]]
|
585
|
+
unchecked_value: TMaybeRef[Union[str, int, bool]]
|
586
|
+
checked_color: TMaybeRef[str]
|
587
|
+
unchecked_color: TMaybeRef[str]
|
588
|
+
before_change: TMaybeRef[str]
|
589
|
+
checked_text: TMaybeRef[str]
|
590
|
+
unchecked_text: TMaybeRef[str]
|
591
|
+
|
592
|
+
class TTextarea(TypedDict, total=False):
|
593
|
+
model_value: TMaybeRef[str]
|
594
|
+
default_value: TMaybeRef[str]
|
595
|
+
placeholder: TMaybeRef[str]
|
596
|
+
disabled: TMaybeRef[bool]
|
597
|
+
error: TMaybeRef[bool]
|
598
|
+
max_length: TMaybeRef[Union[int, Dict[str, Union[int, bool]]]]
|
599
|
+
show_word_limit: TMaybeRef[bool]
|
600
|
+
allow_clear: TMaybeRef[bool]
|
601
|
+
auto_size: TMaybeRef[Union[bool, Dict[str, Optional[int]]]]
|
602
|
+
word_length: TMaybeRef[str]
|
603
|
+
word_slice: TMaybeRef[str]
|
604
|
+
textarea_attrs: TMaybeRef[Dict[str, Any]]
|
605
|
+
|
606
|
+
class TTimepicker(TypedDict, total=False):
|
607
|
+
type: TMaybeRef[Union[str,Literal['time', 'time-range']]]
|
608
|
+
model_value: TMaybeRef[Union[str, int, datetime.date, List[Union[str, int, datetime.date]]]]
|
609
|
+
default_value: TMaybeRef[Union[str, int, datetime.date, List[Union[str, int, datetime.date]]]]
|
610
|
+
disabled: TMaybeRef[bool]
|
611
|
+
allow_clear: TMaybeRef[bool]
|
612
|
+
readonly: TMaybeRef[bool]
|
613
|
+
error: TMaybeRef[bool]
|
614
|
+
format: TMaybeRef[str]
|
615
|
+
placeholder: TMaybeRef[Union[str, List[str]]]
|
616
|
+
size: TMaybeRef[Union[str,Literal['mini', 'small', 'medium', 'large']]]
|
617
|
+
popup_container: TMaybeRef[Union[str, Any]]
|
618
|
+
use12_hours: TMaybeRef[bool]
|
619
|
+
step: TMaybeRef[Dict[str, int]]
|
620
|
+
disabled_hours: TMaybeRef[str]
|
621
|
+
disabled_minutes: TMaybeRef[str]
|
622
|
+
disabled_seconds: Any
|
623
|
+
hide_disabled_options: TMaybeRef[bool]
|
624
|
+
disable_confirm: TMaybeRef[bool]
|
625
|
+
position: TMaybeRef[Union[str,Literal['top', 'tl', 'tr', 'bottom', 'bl', 'br']]]
|
626
|
+
popup_visible: TMaybeRef[bool]
|
627
|
+
default_popup_visible: TMaybeRef[bool]
|
628
|
+
trigger_props: Any
|
629
|
+
unmount_on_close: TMaybeRef[bool]
|
630
|
+
|
631
|
+
class TTransfer(TypedDict, total=False):
|
632
|
+
data: TMaybeRef[List]
|
633
|
+
model_value: TMaybeRef[List[str]]
|
634
|
+
default_value: TMaybeRef[List[str]]
|
635
|
+
selected: TMaybeRef[List[str]]
|
636
|
+
default_selected: TMaybeRef[List[str]]
|
637
|
+
disabled: TMaybeRef[bool]
|
638
|
+
simple: TMaybeRef[bool]
|
639
|
+
one_way: TMaybeRef[bool]
|
640
|
+
show_search: TMaybeRef[bool]
|
641
|
+
show_select_all: TMaybeRef[bool]
|
642
|
+
title: TMaybeRef[List[str]]
|
643
|
+
source_input_search_props: TMaybeRef[Dict]
|
644
|
+
target_input_search_props: TMaybeRef[Dict]
|
645
|
+
|
646
|
+
class TTreeselect(TypedDict, total=False):
|
647
|
+
disabled: TMaybeRef[bool]
|
648
|
+
loading: TMaybeRef[bool]
|
649
|
+
error: TMaybeRef[bool]
|
650
|
+
size: TMaybeRef[Union[str,Literal['mini', 'small', 'medium', 'large']]]
|
651
|
+
border: TMaybeRef[bool]
|
652
|
+
allow_search: TMaybeRef[Union[bool, Dict[str, bool]]]
|
653
|
+
allow_clear: TMaybeRef[bool]
|
654
|
+
placeholder: TMaybeRef[str]
|
655
|
+
max_tag_count: TMaybeRef[int]
|
656
|
+
multiple: TMaybeRef[bool]
|
657
|
+
default_value: TMaybeRef[Union[str, int, List[Union[str, int]], Any]]
|
658
|
+
model_value: TMaybeRef[Union[str, int, List[Union[str, int]], Any]]
|
659
|
+
field_names: Any
|
660
|
+
data: TMaybeRef[List]
|
661
|
+
label_in_value: TMaybeRef[bool]
|
662
|
+
tree_checkable: TMaybeRef[bool]
|
663
|
+
tree_check_strictly: TMaybeRef[bool]
|
664
|
+
tree_checked_strategy: TMaybeRef[Union[str,Literal['all', 'parent', 'child']]]
|
665
|
+
tree_props: Any
|
666
|
+
trigger_props: Any
|
667
|
+
popup_visible: TMaybeRef[bool]
|
668
|
+
default_popup_visible: TMaybeRef[bool]
|
669
|
+
dropdown_style: Any
|
670
|
+
dropdown_class_name: TMaybeRef[Union[str, List[str]]]
|
671
|
+
filter_tree_node: TMaybeRef[str]
|
672
|
+
load_more: TMaybeRef[str]
|
673
|
+
disable_filter: TMaybeRef[bool]
|
674
|
+
popup_container: TMaybeRef[Union[str, Any]]
|
675
|
+
fallback_option: TMaybeRef[Union[bool, str]]
|
676
|
+
selectable: TMaybeRef[Union[bool, Union[str,Literal['leaf']]]]
|
677
|
+
scrollbar: TMaybeRef[Union[bool, Any]]
|
678
|
+
show_header_on_empty: TMaybeRef[bool]
|
679
|
+
show_footer_on_empty: TMaybeRef[bool]
|
680
|
+
input_value: TMaybeRef[str]
|
681
|
+
default_input_value: TMaybeRef[str]
|
682
|
+
|
683
|
+
class TUpload(TypedDict, total=False):
|
684
|
+
file_list: TMaybeRef[List]
|
685
|
+
default_file_list: TMaybeRef[List]
|
686
|
+
accept: TMaybeRef[str]
|
687
|
+
action: TMaybeRef[str]
|
688
|
+
disabled: TMaybeRef[bool]
|
689
|
+
multiple: TMaybeRef[bool]
|
690
|
+
directory: TMaybeRef[bool]
|
691
|
+
draggable: TMaybeRef[bool]
|
692
|
+
tip: TMaybeRef[str]
|
693
|
+
headers: TMaybeRef[Dict[str, str]]
|
694
|
+
data: TMaybeRef[Union[Dict[str, Union[str, Any]], str]]
|
695
|
+
name: TMaybeRef[Union[str, str]]
|
696
|
+
with_credentials: TMaybeRef[bool]
|
697
|
+
custom_request: TMaybeRef[str]
|
698
|
+
limit: TMaybeRef[int]
|
699
|
+
auto_upload: TMaybeRef[bool]
|
700
|
+
show_file_list: TMaybeRef[bool]
|
701
|
+
show_remove_button: TMaybeRef[bool]
|
702
|
+
show_retry_button: TMaybeRef[bool]
|
703
|
+
show_cancel_button: TMaybeRef[bool]
|
704
|
+
show_upload_button: TMaybeRef[Union[bool, Dict[str, bool]]]
|
705
|
+
show_preview_button: TMaybeRef[bool]
|
706
|
+
download: TMaybeRef[bool]
|
707
|
+
show_link: TMaybeRef[bool]
|
708
|
+
image_loading: TMaybeRef[Union[str,Literal['eager', 'lazy']]]
|
709
|
+
list_type: TMaybeRef[Union[str,Literal['text', 'picture', 'picture-card']]]
|
710
|
+
response_url_key: TMaybeRef[Union[str, str]]
|
711
|
+
custom_icon: Any
|
712
|
+
image_preview: TMaybeRef[bool]
|
713
|
+
on_before_upload: TMaybeRef[str]
|
714
|
+
on_before_remove: TMaybeRef[str]
|
715
|
+
on_button_click: TMaybeRef[str]
|
716
|
+
|
717
|
+
class TAlert(TypedDict, total=False):
|
718
|
+
type: TMaybeRef[Union[str,Literal['info', 'success', 'warning', 'error', 'normal']]]
|
719
|
+
show_icon: TMaybeRef[bool]
|
720
|
+
closable: TMaybeRef[bool]
|
721
|
+
title: TMaybeRef[str]
|
722
|
+
banner: TMaybeRef[bool]
|
723
|
+
center: TMaybeRef[bool]
|
724
|
+
|
725
|
+
class TDrawer(TypedDict, total=False):
|
726
|
+
visible: TMaybeRef[bool]
|
727
|
+
default_visible: TMaybeRef[bool]
|
728
|
+
placement: TMaybeRef[Union[str,Literal['top', 'right', 'bottom', 'left']]]
|
729
|
+
title: TMaybeRef[str]
|
730
|
+
mask: TMaybeRef[bool]
|
731
|
+
mask_closable: TMaybeRef[bool]
|
732
|
+
closable: TMaybeRef[bool]
|
733
|
+
ok_text: TMaybeRef[str]
|
734
|
+
cancel_text: TMaybeRef[str]
|
735
|
+
ok_loading: TMaybeRef[bool]
|
736
|
+
ok_button_props: Any
|
737
|
+
cancel_button_props: Any
|
738
|
+
unmount_on_close: TMaybeRef[bool]
|
739
|
+
width: TMaybeRef[Union[int, str]]
|
740
|
+
height: TMaybeRef[Union[int, str]]
|
741
|
+
popup_container: TMaybeRef[Union[str, Any]]
|
742
|
+
drawer_style: Any
|
743
|
+
body_class: TMaybeRef[Union[str, List]]
|
744
|
+
body_style: Any
|
745
|
+
on_before_ok: TMaybeRef[str]
|
746
|
+
on_before_cancel: TMaybeRef[str]
|
747
|
+
esc_to_close: TMaybeRef[bool]
|
748
|
+
render_to_body: TMaybeRef[bool]
|
749
|
+
header: TMaybeRef[bool]
|
750
|
+
footer: TMaybeRef[bool]
|
751
|
+
hide_cancel: TMaybeRef[bool]
|
752
|
+
|
753
|
+
class TModal(TypedDict, total=False):
|
754
|
+
visible: TMaybeRef[bool]
|
755
|
+
default_visible: TMaybeRef[bool]
|
756
|
+
width: TMaybeRef[Union[int, str]]
|
757
|
+
top: TMaybeRef[Union[int, str]]
|
758
|
+
mask: TMaybeRef[bool]
|
759
|
+
title: TMaybeRef[str]
|
760
|
+
title_align: TMaybeRef[Union[str,Literal['start', 'center']]]
|
761
|
+
align_center: TMaybeRef[bool]
|
762
|
+
unmount_on_close: TMaybeRef[bool]
|
763
|
+
mask_closable: TMaybeRef[bool]
|
764
|
+
hide_cancel: TMaybeRef[bool]
|
765
|
+
simple: TMaybeRef[bool]
|
766
|
+
closable: TMaybeRef[bool]
|
767
|
+
ok_text: TMaybeRef[str]
|
768
|
+
cancel_text: TMaybeRef[str]
|
769
|
+
ok_loading: TMaybeRef[bool]
|
770
|
+
ok_button_props: Any
|
771
|
+
cancel_button_props: Any
|
772
|
+
footer: TMaybeRef[bool]
|
773
|
+
render_to_body: TMaybeRef[bool]
|
774
|
+
popup_container: TMaybeRef[Union[str, Any]]
|
775
|
+
mask_style: Any
|
776
|
+
modal_class: TMaybeRef[Union[str, List]]
|
777
|
+
modal_style: Any
|
778
|
+
on_before_ok: TMaybeRef[str]
|
779
|
+
on_before_cancel: TMaybeRef[str]
|
780
|
+
esc_to_close: TMaybeRef[bool]
|
781
|
+
draggable: TMaybeRef[bool]
|
782
|
+
fullscreen: TMaybeRef[bool]
|
783
|
+
mask_animation_name: TMaybeRef[str]
|
784
|
+
modal_animation_name: TMaybeRef[str]
|
785
|
+
body_class: TMaybeRef[Union[str, List]]
|
786
|
+
body_style: Any
|
787
|
+
hide_title: TMaybeRef[bool]
|
788
|
+
|
789
|
+
class TNotification(TypedDict, total=False):
|
790
|
+
info: TMaybeRef[str]
|
791
|
+
success: TMaybeRef[str]
|
792
|
+
warning: TMaybeRef[str]
|
793
|
+
error: TMaybeRef[str]
|
794
|
+
remove: TMaybeRef[str]
|
795
|
+
clear: TMaybeRef[str]
|
796
|
+
|
797
|
+
class TPopconfirm(TypedDict, total=False):
|
798
|
+
content: TMaybeRef[str]
|
799
|
+
position: TMaybeRef[Union[str,Literal['top', 'tl', 'tr', 'bottom', 'bl', 'br', 'left', 'lt', 'lb', 'right', 'rt', 'rb']]]
|
800
|
+
popup_visible: TMaybeRef[bool]
|
801
|
+
default_popup_visible: TMaybeRef[bool]
|
802
|
+
type: TMaybeRef[Union[str,Literal['info', 'success', 'warning', 'error']]]
|
803
|
+
ok_text: TMaybeRef[str]
|
804
|
+
cancel_text: TMaybeRef[str]
|
805
|
+
ok_loading: TMaybeRef[bool]
|
806
|
+
ok_button_props: Any
|
807
|
+
cancel_button_props: Any
|
808
|
+
content_class: Any
|
809
|
+
content_style: Any
|
810
|
+
arrow_class: Any
|
811
|
+
arrow_style: Any
|
812
|
+
popup_container: TMaybeRef[Union[str, Any]]
|
813
|
+
on_before_ok: TMaybeRef[str]
|
814
|
+
on_before_cancel: TMaybeRef[str]
|
815
|
+
|
816
|
+
class TProgress(TypedDict, total=False):
|
817
|
+
type: TMaybeRef[Union[str,Literal['line', 'circle']]]
|
818
|
+
size: TMaybeRef[Union[str,Literal['mini', 'small', 'medium', 'large']]]
|
819
|
+
percent: TMaybeRef[int]
|
820
|
+
steps: TMaybeRef[int]
|
821
|
+
animation: TMaybeRef[bool]
|
822
|
+
stroke_width: TMaybeRef[int]
|
823
|
+
width: TMaybeRef[Union[int, str]]
|
824
|
+
color: TMaybeRef[Union[str, Dict]]
|
825
|
+
track_color: TMaybeRef[str]
|
826
|
+
show_text: TMaybeRef[bool]
|
827
|
+
status: TMaybeRef[Union[str,Literal['normal', 'success', 'warning', 'danger']]]
|
828
|
+
|
829
|
+
class TResult(TypedDict, total=False):
|
830
|
+
status: TMaybeRef[Union[Union[str,Literal['info', 'success', 'warning', 'error', '403', '404', '500']], None]]
|
831
|
+
title: TMaybeRef[str]
|
832
|
+
subtitle: TMaybeRef[str]
|
833
|
+
|
834
|
+
class TSpin(TypedDict, total=False):
|
835
|
+
size: TMaybeRef[int]
|
836
|
+
loading: TMaybeRef[bool]
|
837
|
+
dot: TMaybeRef[bool]
|
838
|
+
tip: TMaybeRef[str]
|
839
|
+
hide_icon: TMaybeRef[bool]
|
840
|
+
|
841
|
+
class TSkeleton(TypedDict, total=False):
|
842
|
+
loading: TMaybeRef[bool]
|
843
|
+
animation: TMaybeRef[bool]
|
844
|
+
|
845
|
+
class TBreadcrumb(TypedDict, total=False):
|
846
|
+
max_count: TMaybeRef[int]
|
847
|
+
routes: TMaybeRef[List]
|
848
|
+
separator: TMaybeRef[Union[str, int]]
|
849
|
+
custom_url: TMaybeRef[str]
|
850
|
+
|
851
|
+
class TDropdown(TypedDict, total=False):
|
852
|
+
popup_visible: TMaybeRef[bool]
|
853
|
+
default_popup_visible: TMaybeRef[bool]
|
854
|
+
trigger: TMaybeRef[Union[str,Literal['hover', 'click', 'focus', 'contextMenu']]]
|
855
|
+
position: TMaybeRef[Union[str,Literal['top', 'tl', 'tr', 'bottom', 'bl', 'br']]]
|
856
|
+
popup_container: TMaybeRef[Union[str, Any]]
|
857
|
+
popup_max_height: TMaybeRef[Union[bool, int]]
|
858
|
+
hide_on_select: TMaybeRef[bool]
|
859
|
+
|
860
|
+
class TMenu(TypedDict, total=False):
|
861
|
+
theme: TMaybeRef[Union[str,Literal['light', 'dark']]]
|
862
|
+
mode: TMaybeRef[Union[str,Literal['vertical', 'horizontal', 'pop', 'popButton']]]
|
863
|
+
level_indent: TMaybeRef[int]
|
864
|
+
auto_open: TMaybeRef[bool]
|
865
|
+
collapsed: TMaybeRef[bool]
|
866
|
+
default_collapsed: TMaybeRef[bool]
|
867
|
+
collapsed_width: TMaybeRef[int]
|
868
|
+
accordion: TMaybeRef[bool]
|
869
|
+
auto_scroll_into_view: TMaybeRef[bool]
|
870
|
+
show_collapse_button: TMaybeRef[bool]
|
871
|
+
selected_keys: TMaybeRef[List[str]]
|
872
|
+
default_selected_keys: TMaybeRef[List[str]]
|
873
|
+
open_keys: TMaybeRef[List[str]]
|
874
|
+
default_open_keys: TMaybeRef[List[str]]
|
875
|
+
scroll_config: TMaybeRef[Dict[str, Any]]
|
876
|
+
trigger_props: Any
|
877
|
+
tooltip_props: TMaybeRef[Dict]
|
878
|
+
auto_open_selected: TMaybeRef[bool]
|
879
|
+
breakpoint: TMaybeRef[Union[str,Literal['xxl', 'xl', 'lg', 'md', 'sm', 'xs']]]
|
880
|
+
popup_max_height: TMaybeRef[Union[bool, int]]
|
881
|
+
|
882
|
+
class TPageheader(TypedDict, total=False):
|
883
|
+
title: TMaybeRef[str]
|
884
|
+
subtitle: TMaybeRef[str]
|
885
|
+
show_back: TMaybeRef[bool]
|
886
|
+
|
887
|
+
class TPagination(TypedDict, total=False):
|
888
|
+
total: TMaybeRef[int]
|
889
|
+
current: TMaybeRef[int]
|
890
|
+
default_current: TMaybeRef[int]
|
891
|
+
page_size: TMaybeRef[int]
|
892
|
+
default_page_size: TMaybeRef[int]
|
893
|
+
disabled: TMaybeRef[bool]
|
894
|
+
hide_on_single_page: TMaybeRef[bool]
|
895
|
+
simple: TMaybeRef[bool]
|
896
|
+
show_total: TMaybeRef[bool]
|
897
|
+
show_more: TMaybeRef[bool]
|
898
|
+
show_jumper: TMaybeRef[bool]
|
899
|
+
show_page_size: TMaybeRef[bool]
|
900
|
+
page_size_options: TMaybeRef[List[int]]
|
901
|
+
page_size_props: Any
|
902
|
+
size: TMaybeRef[Union[str,Literal['mini', 'small', 'medium', 'large']]]
|
903
|
+
page_item_style: Any
|
904
|
+
active_page_item_style: Any
|
905
|
+
base_size: TMaybeRef[int]
|
906
|
+
buffer_size: TMaybeRef[int]
|
907
|
+
auto_adjust: TMaybeRef[bool]
|
908
|
+
|
909
|
+
class TSteps(TypedDict, total=False):
|
910
|
+
type: TMaybeRef[Union[str,Literal['default', 'arrow', 'dot', 'navigation']]]
|
911
|
+
direction: TMaybeRef[Union[str,Literal['horizontal', 'vertical']]]
|
912
|
+
label_placement: TMaybeRef[Union[str,Literal['horizontal', 'vertical']]]
|
913
|
+
current: TMaybeRef[int]
|
914
|
+
default_current: TMaybeRef[int]
|
915
|
+
status: TMaybeRef[Union[str,Literal['wait', 'process', 'finish', 'error']]]
|
916
|
+
line_less: TMaybeRef[bool]
|
917
|
+
small: TMaybeRef[bool]
|
918
|
+
changeable: TMaybeRef[bool]
|
919
|
+
|
920
|
+
class TAffix(TypedDict, total=False):
|
921
|
+
offset_top: TMaybeRef[int]
|
922
|
+
offset_bottom: TMaybeRef[int]
|
923
|
+
target: TMaybeRef[Union[str, Any, Any]]
|
924
|
+
target_container: TMaybeRef[Union[str, Any, Any]]
|
925
|
+
|
926
|
+
class TAnchor(TypedDict, total=False):
|
927
|
+
boundary: TMaybeRef[Union[Union[str,Literal['start', 'end', 'center', 'nearest']], int]]
|
928
|
+
line_less: TMaybeRef[bool]
|
929
|
+
scroll_container: TMaybeRef[Union[str, Any, Any]]
|
930
|
+
change_hash: TMaybeRef[bool]
|
931
|
+
smooth: TMaybeRef[bool]
|
932
|
+
|
933
|
+
class TBacktop(TypedDict, total=False):
|
934
|
+
visible_height: TMaybeRef[int]
|
935
|
+
target_container: TMaybeRef[Union[str, Any]]
|
936
|
+
easing: TMaybeRef[str]
|
937
|
+
duration: TMaybeRef[int]
|
938
|
+
|
939
|
+
class TConfigprovider(TypedDict, total=False):
|
940
|
+
prefix_cls: TMaybeRef[str]
|
941
|
+
locale: TMaybeRef[Dict]
|
942
|
+
size: Any
|
943
|
+
global_: TMaybeRef[bool]
|
944
|
+
update_at_scroll: TMaybeRef[bool]
|
945
|
+
scroll_to_close: TMaybeRef[bool]
|
946
|
+
exchange_time: TMaybeRef[bool]
|
947
|
+
|
948
|
+
class TResizebox(TypedDict, total=False):
|
949
|
+
width: TMaybeRef[int]
|
950
|
+
height: TMaybeRef[int]
|
951
|
+
component: TMaybeRef[str]
|
952
|
+
directions: TMaybeRef[List[Union[str,Literal['left', 'right', 'top', 'bottom']]]]
|
953
|
+
|
954
|
+
class TTrigger(TypedDict, total=False):
|
955
|
+
popup_visible: TMaybeRef[bool]
|
956
|
+
default_popup_visible: TMaybeRef[bool]
|
957
|
+
trigger: TMaybeRef[Union[str,Literal['hover', 'click', 'focus', 'contextMenu']]]
|
958
|
+
position: TMaybeRef[Union[str,Literal['top', 'tl', 'tr', 'bottom', 'bl', 'br', 'left', 'lt', 'lb', 'right', 'rt', 'rb']]]
|
959
|
+
disabled: TMaybeRef[bool]
|
960
|
+
popup_offset: TMaybeRef[int]
|
961
|
+
popup_translate: Any
|
962
|
+
show_arrow: TMaybeRef[bool]
|
963
|
+
align_point: TMaybeRef[bool]
|
964
|
+
popup_hover_stay: TMaybeRef[bool]
|
965
|
+
blur_to_close: TMaybeRef[bool]
|
966
|
+
click_to_close: TMaybeRef[bool]
|
967
|
+
click_outside_to_close: TMaybeRef[bool]
|
968
|
+
unmount_on_close: TMaybeRef[bool]
|
969
|
+
content_class: TMaybeRef[Union[str, List, Dict]]
|
970
|
+
content_style: Any
|
971
|
+
arrow_class: TMaybeRef[Union[str, List, Dict]]
|
972
|
+
arrow_style: Any
|
973
|
+
popup_style: Any
|
974
|
+
animation_name: TMaybeRef[str]
|
975
|
+
duration: TMaybeRef[Union[int, Dict[str, int]]]
|
976
|
+
mouse_enter_delay: TMaybeRef[int]
|
977
|
+
mouse_leave_delay: TMaybeRef[int]
|
978
|
+
focus_delay: TMaybeRef[int]
|
979
|
+
auto_fit_popup_width: TMaybeRef[bool]
|
980
|
+
auto_fit_popup_min_width: TMaybeRef[bool]
|
981
|
+
auto_fix_position: TMaybeRef[bool]
|
982
|
+
popup_container: TMaybeRef[Union[str, Any]]
|
983
|
+
update_at_scroll: TMaybeRef[bool]
|
984
|
+
auto_fit_position: TMaybeRef[bool]
|
985
|
+
render_to_body: TMaybeRef[bool]
|
986
|
+
prevent_focus: TMaybeRef[bool]
|
987
|
+
scroll_to_close: TMaybeRef[bool]
|
988
|
+
scroll_to_close_distance: TMaybeRef[int]
|
989
|
+
|
990
|
+
class TSplit(TypedDict, total=False):
|
991
|
+
component: TMaybeRef[str]
|
992
|
+
direction: TMaybeRef[Union[str,Literal['horizontal', 'vertical']]]
|
993
|
+
size: TMaybeRef[Union[int, str]]
|
994
|
+
default_size: TMaybeRef[Union[int, str]]
|
995
|
+
min: TMaybeRef[Union[int, str]]
|
996
|
+
max: TMaybeRef[Union[int, str]]
|
997
|
+
disabled: TMaybeRef[bool]
|
998
|
+
|
999
|
+
class TOverflowlist(TypedDict, total=False):
|
1000
|
+
min: TMaybeRef[int]
|
1001
|
+
margin: TMaybeRef[int]
|
1002
|
+
from_: TMaybeRef[Union[str,Literal['start', 'end']]]
|
1003
|
+
|
1004
|
+
class TWatermark(TypedDict, total=False):
|
1005
|
+
content: TMaybeRef[Union[str, List[str]]]
|
1006
|
+
image: TMaybeRef[str]
|
1007
|
+
width: TMaybeRef[int]
|
1008
|
+
height: TMaybeRef[int]
|
1009
|
+
gap: TMaybeRef[Tuple[int, int]]
|
1010
|
+
offset: TMaybeRef[Tuple[int, int]]
|
1011
|
+
rotate: TMaybeRef[int]
|
1012
|
+
font: Any
|
1013
|
+
z_index: TMaybeRef[int]
|
1014
|
+
alpha: TMaybeRef[int]
|
1015
|
+
anti_tamper: TMaybeRef[bool]
|
1016
|
+
grayscale: TMaybeRef[bool]
|
1017
|
+
repeat: TMaybeRef[bool]
|
1018
|
+
staggered: TMaybeRef[bool]
|
1019
|
+
|