instaui 0.1.4__py3-none-any.whl → 0.1.5__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/components/echarts/echarts.js +128 -0
- instaui/components/echarts/echarts.py +194 -0
- instaui/components/echarts/static/echarts.esm.min.js +45 -0
- instaui/components/element.py +50 -4
- instaui/components/html/__init__.py +30 -19
- instaui/components/html/_preset.py +4 -0
- instaui/components/html/heading.py +51 -0
- instaui/components/html/range.py +3 -0
- instaui/components/html/select.py +13 -31
- instaui/components/html/table.py +36 -0
- instaui/components/markdown/static/marked.esm.js +0 -1
- 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 +175 -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/value_element.py +7 -3
- instaui/consts.py +2 -1
- instaui/daisyui/__init__.py +8 -2
- instaui/daisyui/_index.py +5 -0
- instaui/daisyui/table.py +35 -0
- instaui/event/js_event.py +1 -0
- instaui/event/web_event.py +6 -7
- instaui/fastapi_server/server.py +4 -12
- instaui/handlers/event_handler.py +3 -1
- instaui/handlers/watch_handler.py +4 -0
- instaui/html_tools.py +40 -2
- instaui/runtime/_app.py +37 -3
- instaui/runtime/_link_manager.py +89 -0
- instaui/runtime/resource.py +19 -9
- instaui/shadcn_classless/_index.py +42 -0
- instaui/shadcn_classless/static/shadcn-classless.css +403 -0
- instaui/static/insta-ui.css +1 -1
- instaui/static/insta-ui.esm-browser.prod.js +1314 -1253
- instaui/static/insta-ui.js.map +1 -1
- instaui/static/instaui-tools-browser.js +511 -0
- instaui/static/templates/webview.html +78 -0
- instaui/tailwind/__init__.py +6 -0
- instaui/tailwind/_index.py +24 -0
- instaui/{static/tailwindcss.min.js → tailwind/static/tailwindcss-v3.min.js} +62 -62
- instaui/tailwind/static/tailwindcss-v4.min.js +8 -0
- instaui/template/_utils.py +23 -0
- instaui/template/webview_template.py +50 -0
- instaui/ui/__init__.py +8 -2
- instaui/ui/__init__.pyi +7 -1
- instaui/vars/event_context.py +4 -0
- instaui/vars/web_computed.py +30 -30
- instaui/watch/web_watch.py +5 -6
- instaui/webview/__init__.py +1 -0
- instaui/webview/_utils.py +8 -0
- instaui/webview/api.py +72 -0
- instaui/webview/func.py +114 -0
- instaui/webview/index.py +162 -0
- instaui/webview/resource.py +172 -0
- instaui/zero/func.py +19 -12
- instaui/zero/scope.py +46 -28
- {instaui-0.1.4.dist-info → instaui-0.1.5.dist-info}/METADATA +4 -1
- {instaui-0.1.4.dist-info → instaui-0.1.5.dist-info}/RECORD +67 -47
- instaui/components/highlight_code/code.js +0 -63
- instaui/components/highlight_code/code.py +0 -117
- instaui/components/highlight_code/static/core.min.js +0 -307
- instaui/components/highlight_code/static/languages/css.min.js +0 -31
- instaui/components/highlight_code/static/languages/javascript.min.js +0 -81
- instaui/components/highlight_code/static/languages/json.min.js +0 -8
- instaui/components/highlight_code/static/languages/python-repl.min.js +0 -5
- instaui/components/highlight_code/static/languages/python.min.js +0 -42
- instaui/components/highlight_code/static/languages/shell.min.js +0 -5
- instaui/components/highlight_code/static/styles/default.min.css +0 -9
- instaui/components/highlight_code/static/styles/github-dark-dimmed.min.css +0 -9
- instaui/components/highlight_code/static/styles/github-dark.min.css +0 -10
- instaui/components/highlight_code/static/styles/github.min.css +0 -10
- instaui/handlers/computed_handler.py +0 -42
- instaui/handlers/config_handler.py +0 -13
- {instaui-0.1.4.dist-info → instaui-0.1.5.dist-info}/LICENSE +0 -0
- {instaui-0.1.4.dist-info → instaui-0.1.5.dist-info}/WHEEL +0 -0
@@ -0,0 +1,172 @@
|
|
1
|
+
from dataclasses import dataclass
|
2
|
+
import itertools
|
3
|
+
from pathlib import Path
|
4
|
+
import shutil
|
5
|
+
from typing import Callable, Optional
|
6
|
+
from urllib.parse import quote
|
7
|
+
|
8
|
+
from instaui.html_tools import to_config_data
|
9
|
+
from instaui.runtime._app import get_app_slot, get_default_app_slot
|
10
|
+
from instaui.systems import file_system
|
11
|
+
from instaui.template import webview_template
|
12
|
+
from instaui import consts
|
13
|
+
|
14
|
+
from . import _utils
|
15
|
+
|
16
|
+
|
17
|
+
_INDEX_HTML_NAME = "index.html"
|
18
|
+
|
19
|
+
|
20
|
+
@dataclass
|
21
|
+
class ResourceInfo:
|
22
|
+
title: str
|
23
|
+
index_html_url: str
|
24
|
+
|
25
|
+
|
26
|
+
def resource_to_assets(
|
27
|
+
page_url: str, assets_path: Path, on_app_mounted: Optional[Callable] = None
|
28
|
+
):
|
29
|
+
page_dir = assets_path.joinpath(quote(page_url, safe=""))
|
30
|
+
_utils.reset_dir(page_dir)
|
31
|
+
|
32
|
+
relative_to_assets = _get_relative_to_assets(page_dir)
|
33
|
+
file_to_assets = _get_file_to_assets(page_dir)
|
34
|
+
|
35
|
+
config_data = to_config_data()
|
36
|
+
|
37
|
+
system_slot = get_app_slot()
|
38
|
+
default_app_slot = get_default_app_slot()
|
39
|
+
html_resource = system_slot._html_resource
|
40
|
+
default_html_resource = default_app_slot._html_resource
|
41
|
+
|
42
|
+
if html_resource.favicon:
|
43
|
+
favicon_url = file_to_assets(html_resource.favicon)
|
44
|
+
else:
|
45
|
+
if default_html_resource.favicon:
|
46
|
+
favicon_url = file_to_assets(default_html_resource.favicon)
|
47
|
+
else:
|
48
|
+
favicon_url = file_to_assets(consts.FAVICON_PATH)
|
49
|
+
|
50
|
+
model = webview_template.WebViewTemplateModel(
|
51
|
+
vue_js_code=file_to_assets(consts.VUE_ES_JS_PATH),
|
52
|
+
instaui_js_code=file_to_assets(consts.APP_ES_JS_PATH),
|
53
|
+
css_links=[
|
54
|
+
file_to_assets(consts.APP_CSS_PATH),
|
55
|
+
],
|
56
|
+
config_dict=config_data,
|
57
|
+
favicon_url=favicon_url,
|
58
|
+
title=html_resource.title or default_html_resource.title or consts.PAGE_TITLE,
|
59
|
+
on_app_mounted=on_app_mounted,
|
60
|
+
)
|
61
|
+
|
62
|
+
# register custom components
|
63
|
+
for component in system_slot._component_dependencies:
|
64
|
+
if not component.esm:
|
65
|
+
continue
|
66
|
+
|
67
|
+
component_url = file_to_assets(component.esm)
|
68
|
+
model.add_extra_import_map(component_url, file_to_assets(component.esm))
|
69
|
+
|
70
|
+
model.vue_app_component.append(
|
71
|
+
webview_template.WebViewVueAppComponent(
|
72
|
+
name=component.tag_name,
|
73
|
+
url=component_url,
|
74
|
+
)
|
75
|
+
)
|
76
|
+
|
77
|
+
if component.css:
|
78
|
+
for css_link in component.css:
|
79
|
+
css_resource = file_to_assets(css_link)
|
80
|
+
if css_link.is_file():
|
81
|
+
model.css_links.append(css_resource)
|
82
|
+
|
83
|
+
if component.externals:
|
84
|
+
for name, file in component.externals.items():
|
85
|
+
model.add_extra_import_map(name, file_to_assets(file))
|
86
|
+
|
87
|
+
# register custom plugins
|
88
|
+
for plugin in set(
|
89
|
+
itertools.chain(
|
90
|
+
system_slot._plugin_dependencies, default_app_slot._plugin_dependencies
|
91
|
+
)
|
92
|
+
):
|
93
|
+
if not plugin.esm:
|
94
|
+
continue
|
95
|
+
|
96
|
+
model.vue_app_use.append(plugin.name)
|
97
|
+
|
98
|
+
model.add_extra_import_map(plugin.name, file_to_assets(plugin.esm))
|
99
|
+
|
100
|
+
if plugin.css:
|
101
|
+
for css_link in plugin.css:
|
102
|
+
model.css_links.append(file_to_assets(css_link))
|
103
|
+
|
104
|
+
# css file link to web static link
|
105
|
+
for link in html_resource.get_valid_css_links(
|
106
|
+
default_html_resource._css_links_manager
|
107
|
+
):
|
108
|
+
if isinstance(link, Path):
|
109
|
+
model.css_links.append(file_to_assets(link))
|
110
|
+
else:
|
111
|
+
model.css_links.append(link)
|
112
|
+
|
113
|
+
# js file link to web static link
|
114
|
+
for info in html_resource.get_valid_js_links(
|
115
|
+
default_html_resource._js_links_manager
|
116
|
+
):
|
117
|
+
link = file_to_assets(info.link) if isinstance(info.link, Path) else info.link
|
118
|
+
model.js_links.append(link)
|
119
|
+
|
120
|
+
for js_code in itertools.chain(
|
121
|
+
html_resource._script_tags, default_html_resource._script_tags
|
122
|
+
):
|
123
|
+
model.script_tags.append(js_code)
|
124
|
+
|
125
|
+
for sylte_code in itertools.chain(
|
126
|
+
html_resource._style_tags, default_html_resource._style_tags
|
127
|
+
):
|
128
|
+
model.style_tags.append(sylte_code)
|
129
|
+
|
130
|
+
html_str = webview_template.render_wbeview_html(model)
|
131
|
+
|
132
|
+
index_html_path = page_dir / _INDEX_HTML_NAME
|
133
|
+
index_html_path.write_text(html_str, encoding="utf-8")
|
134
|
+
relative_to_assets(index_html_path)
|
135
|
+
index_html_url = str(index_html_path.absolute())
|
136
|
+
return ResourceInfo(
|
137
|
+
title="test",
|
138
|
+
index_html_url=index_html_url,
|
139
|
+
)
|
140
|
+
|
141
|
+
|
142
|
+
def _get_relative_to_assets(assets_path: Path):
|
143
|
+
def wrapper(file_path: Path, relative_parent=False):
|
144
|
+
return str(
|
145
|
+
file_path.relative_to(
|
146
|
+
assets_path.parent if relative_parent else assets_path
|
147
|
+
)
|
148
|
+
).replace("\\", "/")
|
149
|
+
|
150
|
+
return wrapper
|
151
|
+
|
152
|
+
|
153
|
+
def _get_file_to_assets(assets_path: Path):
|
154
|
+
relative_to_assets = _get_relative_to_assets(assets_path)
|
155
|
+
|
156
|
+
def wrapper(file_path: Path):
|
157
|
+
hash_part = file_system.generate_hash_name_from_path(file_path.parent)
|
158
|
+
new_folder_path = assets_path.joinpath(hash_part)
|
159
|
+
|
160
|
+
if not new_folder_path.exists():
|
161
|
+
new_folder_path.mkdir(parents=True)
|
162
|
+
|
163
|
+
new_path = new_folder_path.joinpath(file_path.name)
|
164
|
+
|
165
|
+
if file_path.is_file():
|
166
|
+
shutil.copyfile(file_path, new_path)
|
167
|
+
return "./" + relative_to_assets(new_path)
|
168
|
+
else:
|
169
|
+
shutil.copytree(file_path, new_path, dirs_exist_ok=True)
|
170
|
+
return "./" + relative_to_assets(new_path) + "/"
|
171
|
+
|
172
|
+
return wrapper
|
instaui/zero/func.py
CHANGED
@@ -7,6 +7,7 @@ from instaui.template import render_zero_html
|
|
7
7
|
from instaui.template import zero_template
|
8
8
|
from instaui.html_tools import to_config_data
|
9
9
|
from instaui.runtime.dataclass import JsLink
|
10
|
+
from instaui.runtime.resource import HtmlResource
|
10
11
|
|
11
12
|
|
12
13
|
def to_html(file: Path):
|
@@ -20,9 +21,18 @@ def to_html(file: Path):
|
|
20
21
|
|
21
22
|
def get_template_model():
|
22
23
|
system_slot = get_app_slot()
|
24
|
+
|
25
|
+
merge_global_resources = (system_slot.meta or {}).get(
|
26
|
+
"merge_global_resources", True
|
27
|
+
)
|
28
|
+
|
23
29
|
default_app_slot = get_default_app_slot()
|
24
30
|
html_resource = system_slot._html_resource
|
25
|
-
default_html_resource =
|
31
|
+
default_html_resource = (
|
32
|
+
default_app_slot._html_resource
|
33
|
+
if merge_global_resources
|
34
|
+
else _empty_html_resource()
|
35
|
+
)
|
26
36
|
|
27
37
|
config_data = to_config_data()
|
28
38
|
|
@@ -39,13 +49,6 @@ def get_template_model():
|
|
39
49
|
title=html_resource.title or default_html_resource.title or consts.PAGE_TITLE,
|
40
50
|
)
|
41
51
|
|
42
|
-
if html_resource.use_tailwind is None:
|
43
|
-
if default_html_resource.use_tailwind:
|
44
|
-
model.js_links.append(JsLink(consts.TAILWIND_JS_PATH))
|
45
|
-
else:
|
46
|
-
if html_resource.use_tailwind:
|
47
|
-
model.js_links.append(JsLink(consts.TAILWIND_JS_PATH))
|
48
|
-
|
49
52
|
# register custom components
|
50
53
|
for component in system_slot._component_dependencies:
|
51
54
|
if not component.esm:
|
@@ -85,15 +88,15 @@ def get_template_model():
|
|
85
88
|
model.css_links.append(css_link)
|
86
89
|
|
87
90
|
# css file link to web static link
|
88
|
-
for link
|
89
|
-
|
91
|
+
for link in html_resource.get_valid_css_links(
|
92
|
+
default_html_resource._css_links_manager
|
90
93
|
):
|
91
94
|
if isinstance(link, Path):
|
92
95
|
model.css_links.append(link)
|
93
96
|
|
94
97
|
# js file link to web static link
|
95
|
-
for info in
|
96
|
-
|
98
|
+
for info in html_resource.get_valid_js_links(
|
99
|
+
default_html_resource._js_links_manager
|
97
100
|
):
|
98
101
|
if isinstance(info.link, Path):
|
99
102
|
model.js_links.append(JsLink(info.link))
|
@@ -114,3 +117,7 @@ def get_template_model():
|
|
114
117
|
def to_html_str():
|
115
118
|
model = get_template_model()
|
116
119
|
return render_zero_html(model)
|
120
|
+
|
121
|
+
|
122
|
+
def _empty_html_resource():
|
123
|
+
return HtmlResource()
|
instaui/zero/scope.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
from pathlib import Path
|
2
|
-
from typing import Union
|
2
|
+
from typing import Dict, Optional, Union
|
3
3
|
from instaui.runtime import new_app_slot, reset_app_slot
|
4
4
|
from contextlib import contextmanager
|
5
5
|
from .func import to_html, to_html_str, get_template_model
|
@@ -7,8 +7,8 @@ from instaui.template.zero_template import ZeroTemplateModel
|
|
7
7
|
|
8
8
|
|
9
9
|
@contextmanager
|
10
|
-
def scope():
|
11
|
-
token = new_app_slot("zero")
|
10
|
+
def scope(app_meta: Optional[Dict] = None):
|
11
|
+
token = new_app_slot("zero", app_meta)
|
12
12
|
yield Wrapper()
|
13
13
|
reset_app_slot(token)
|
14
14
|
|
@@ -25,10 +25,10 @@ class Wrapper:
|
|
25
25
|
file = self._get_caller_path(file)
|
26
26
|
|
27
27
|
# Custom component dependencies must be recorded only during actual execution
|
28
|
-
to_html_str()
|
28
|
+
result_html_str = to_html_str()
|
29
29
|
model = get_template_model()
|
30
|
-
with scope() as s:
|
31
|
-
_create_debug_report(model)
|
30
|
+
with scope(app_meta={"merge_global_resources": False}) as s:
|
31
|
+
_create_debug_report(model, result_html_str)
|
32
32
|
s.to_html(file.resolve().absolute())
|
33
33
|
|
34
34
|
@staticmethod
|
@@ -44,8 +44,8 @@ class Wrapper:
|
|
44
44
|
return file
|
45
45
|
|
46
46
|
|
47
|
-
def _create_debug_report(model: ZeroTemplateModel):
|
48
|
-
from instaui import ui, html
|
47
|
+
def _create_debug_report(model: ZeroTemplateModel, result_html_str: str):
|
48
|
+
from instaui import ui, html, daisyui as daisy
|
49
49
|
|
50
50
|
no_exists_path_class = "ex-no-exists-path"
|
51
51
|
|
@@ -53,49 +53,67 @@ def _create_debug_report(model: ZeroTemplateModel):
|
|
53
53
|
return "" if path.exists() else no_exists_path_class
|
54
54
|
|
55
55
|
ui.use_tailwind()
|
56
|
+
daisy.use()
|
56
57
|
ui.add_style(rf".{no_exists_path_class} {{background-color: red;color: white;}}")
|
57
58
|
|
59
|
+
html_size = len(result_html_str.encode("utf-8")) / 1024 / 1024
|
60
|
+
|
61
|
+
box_style = "border-2 border-gray-200 p-4 place-center gap-x-2"
|
62
|
+
|
58
63
|
with ui.column().classes("gap-2"):
|
64
|
+
# base info
|
65
|
+
with ui.grid(columns="auto 1fr").classes(box_style):
|
66
|
+
html.span("file size:")
|
67
|
+
html.span(f"{html_size:.2f} MB")
|
68
|
+
|
59
69
|
# import maps
|
60
70
|
html.paragraph("import maps")
|
61
|
-
with ui.grid(columns="auto 1fr").classes(
|
62
|
-
"gap-4 border-2 border-gray-200 p-4 place-center"
|
63
|
-
):
|
64
|
-
html.span("name")
|
65
|
-
html.span("path")
|
66
71
|
|
67
|
-
|
68
|
-
|
72
|
+
rows = [
|
73
|
+
["vue", str(model.vue_js_code)],
|
74
|
+
["instaui", str(model.instaui_js_code)],
|
75
|
+
]
|
76
|
+
|
77
|
+
for name, url in model.extra_import_maps.items():
|
78
|
+
if isinstance(url, Path) and url.is_file():
|
79
|
+
rows.append([name, str(url)])
|
80
|
+
|
81
|
+
daisy.table(columns=["name", "path"], rows=rows)
|
82
|
+
|
83
|
+
# with ui.grid(columns="auto 1fr").classes(box_style):
|
84
|
+
# html.span("name")
|
85
|
+
# html.span("path")
|
86
|
+
|
87
|
+
# html.span("vue")
|
88
|
+
# html.span(str(model.vue_js_code))
|
69
89
|
|
70
|
-
|
71
|
-
|
90
|
+
# html.span("instaui")
|
91
|
+
# html.span(str(model.instaui_js_code))
|
72
92
|
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
93
|
+
# for name, url in model.extra_import_maps.items():
|
94
|
+
# if isinstance(url, Path) and url.is_file():
|
95
|
+
# html.span(name)
|
96
|
+
# html.span(str(url.resolve().absolute())).classes(
|
97
|
+
# _path_exists_class(url)
|
98
|
+
# )
|
79
99
|
|
80
100
|
# css links
|
81
101
|
html.paragraph("css links")
|
82
|
-
with ui.column().classes(
|
102
|
+
with ui.column().classes(box_style):
|
83
103
|
for link in model.css_links:
|
84
104
|
if isinstance(link, Path) and link.is_file():
|
85
105
|
html.span(str(link)).classes(_path_exists_class(link))
|
86
106
|
|
87
107
|
# js links
|
88
108
|
html.paragraph("js links")
|
89
|
-
with ui.column().classes(
|
109
|
+
with ui.column().classes(box_style):
|
90
110
|
for info in model.js_links:
|
91
111
|
if isinstance(info.link, Path) and info.link.is_file():
|
92
112
|
html.span(str(info.link)).classes(_path_exists_class(info.link))
|
93
113
|
|
94
114
|
# custom components
|
95
115
|
html.paragraph("custom components")
|
96
|
-
with ui.grid(columns="auto 1fr").classes(
|
97
|
-
"gap-4 border-2 border-gray-200 p-4 place-center"
|
98
|
-
):
|
116
|
+
with ui.grid(columns="auto 1fr").classes(box_style):
|
99
117
|
html.span("name")
|
100
118
|
html.span("js file path")
|
101
119
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: instaui
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.5
|
4
4
|
Summary: insta-ui is a Python-based UI library for rapidly building user interfaces.
|
5
5
|
License: MIT
|
6
6
|
Author: CrystalWindSnake
|
@@ -13,6 +13,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.10
|
14
14
|
Classifier: Programming Language :: Python :: 3.11
|
15
15
|
Classifier: Programming Language :: Python :: 3.12
|
16
|
+
Provides-Extra: all
|
16
17
|
Provides-Extra: web
|
17
18
|
Provides-Extra: webview
|
18
19
|
Requires-Dist: fastapi ; extra == "web"
|
@@ -22,6 +23,8 @@ Requires-Dist: pydantic (>=2.10.6,<3.0.0)
|
|
22
23
|
Requires-Dist: pywebview ; extra == "webview"
|
23
24
|
Requires-Dist: typing-extensions (>=4.12.2,<5.0.0)
|
24
25
|
Requires-Dist: uvicorn ; extra == "web"
|
26
|
+
Requires-Dist: web ; extra == "all"
|
27
|
+
Requires-Dist: webview ; extra == "all"
|
25
28
|
Description-Content-Type: text/markdown
|
26
29
|
|
27
30
|
# insta-ui
|
@@ -7,62 +7,68 @@ instaui/components/column.py,sha256=IjSfrtH8Ez-DMOZWUULUpmA5s8CWl1DY1o4q0ztJCg8,
|
|
7
7
|
instaui/components/component.py,sha256=cfKWlhxATdvERSzsVzvLtm61f72_gblhLJXIrXLGQrk,1284
|
8
8
|
instaui/components/content.py,sha256=f6dm0GukYJk4RRNJzuvOGqBrStLWkJQbLkV7M5fJ63k,1094
|
9
9
|
instaui/components/directive.py,sha256=bHSOWXNhzWRVNqLXwhc_hY3R3g-JAQ5DWIqpZkI6_wI,1411
|
10
|
-
instaui/components/
|
10
|
+
instaui/components/echarts/echarts.js,sha256=dXW6gzrBpzt7ZRy5LDJYxkO4PnP37A1KUAWm9391B1M,2673
|
11
|
+
instaui/components/echarts/echarts.py,sha256=JX2NXSVqhZYMXIINgO4AFTQOZ2YDIbib1_kYcWRBMGg,5445
|
12
|
+
instaui/components/echarts/static/echarts.esm.min.js,sha256=KN8OVRa4kTlat9NIfArzA3rtGcYfyrkcwjFBy_07vu8,1033915
|
13
|
+
instaui/components/element.py,sha256=tWdMQQeSUuTJPAzrSXBVP7cAAoSp_K9z1s6X218_ffQ,17791
|
11
14
|
instaui/components/grid.py,sha256=VPqiEMbLkRukeMkHjE2fTnZdKJrbcuBLrU05TpocfL8,2403
|
12
|
-
instaui/components/
|
13
|
-
instaui/components/highlight_code/code.py,sha256=0SHHg3div4L0kjOKj1SATUnRgyHIKrD14fAlvG6NLCE,3524
|
14
|
-
instaui/components/highlight_code/static/core.min.js,sha256=jjrF8WRZNHQSPe8gp035rmjkU1x6iyc8lp5lPr7_nao,20788
|
15
|
-
instaui/components/highlight_code/static/languages/css.min.js,sha256=z2gXee2aZQoBjB7Kw73hrISyLN1I-IEdLSVQlnHh75g,11533
|
16
|
-
instaui/components/highlight_code/static/languages/javascript.min.js,sha256=C3Ce8FrhKVYHuig0GGOzHBQ2YubrAT4s4QYnUXeBjxk,6659
|
17
|
-
instaui/components/highlight_code/static/languages/json.min.js,sha256=YV_nO4BplWA8WLxo2ROePIv1_VXi5KT_yb6wB4Q9SgY,518
|
18
|
-
instaui/components/highlight_code/static/languages/python-repl.min.js,sha256=XeBuk5tzHZUe4m4t-OFK58J-PG_ykFlM1w52zeVqwZU,324
|
19
|
-
instaui/components/highlight_code/static/languages/python.min.js,sha256=SmhzdhrN3dsuUHIjaY2knJCyIsARrYvMEeDZ0Ksgo2Q,3624
|
20
|
-
instaui/components/highlight_code/static/languages/shell.min.js,sha256=d9rc5KO50qakH9b4HEWXtaEi8xjrUKEHlUkBWcPUQUc,328
|
21
|
-
instaui/components/highlight_code/static/styles/default.min.css,sha256=Qb0S2vZddfhCYJ39jbsC_S5pyBX9z1cwTTrTmVZAaqY,1152
|
22
|
-
instaui/components/highlight_code/static/styles/github-dark-dimmed.min.css,sha256=OGdtJOsSnV0o-361UUg4q-HHhhq3ImWSFmMigeg0vLk,1259
|
23
|
-
instaui/components/highlight_code/static/styles/github-dark.min.css,sha256=vkCWJ2ehpgCxGgxreuYgoDh7rHgZREo8v1HI2DQE5kM,1324
|
24
|
-
instaui/components/highlight_code/static/styles/github.min.css,sha256=ai8rTBUu5xXR5FoZl1ECEqZDc-MXPZy9niGDP7jgruE,1318
|
25
|
-
instaui/components/html/__init__.py,sha256=I7XHAmNdMo5PxbYLJIRiZ63OUxgwNFkj6uR2wX2ZhBU,847
|
15
|
+
instaui/components/html/__init__.py,sha256=9bO1ai0aQCWwj80NKqDeq_3zwMg5gf17mE40a1IESAk,1088
|
26
16
|
instaui/components/html/_mixins.py,sha256=5dcSM9h1PswIKL6_eiqUxqW4H2OCuyNeCuRZq3gDGOc,876
|
17
|
+
instaui/components/html/_preset.py,sha256=c5rTj3r8W7UP0UHFLUW-ZSPedIa-gzrsU1goi60l20Q,94
|
27
18
|
instaui/components/html/button.py,sha256=lB5SYC2Q8b3dOHLBclJW8yaWBuhoe0qNhpKeEifRDJc,820
|
28
19
|
instaui/components/html/checkbox.py,sha256=29BTpovcJvrN2uQY280dn8KTyspwBBvLeKSxUv3CxjU,1066
|
29
20
|
instaui/components/html/date.py,sha256=MOodsG83JDtb_8l26QWRb7taiPHUAJI6wjt_AjSAJT0,833
|
30
21
|
instaui/components/html/div.py,sha256=fF9rBlOBIl-tDvml1DtJK9lFfFY0SBcP5bn36pluis4,167
|
31
22
|
instaui/components/html/form.py,sha256=C-QVtwX18zH8ZuVK93weGwlRWfSyTGWY_CYIdGcaslU,169
|
23
|
+
instaui/components/html/heading.py,sha256=eK7XubxEQxXASzZmDin-qNM7xYQX6Lbmjix60uFr9OI,1306
|
32
24
|
instaui/components/html/input.py,sha256=gWgRIy-xWvW_XeiJ3H8OD8XM-LmJzcxpju7803salwY,908
|
33
25
|
instaui/components/html/label.py,sha256=aENhnvD_ziqumZPD7GbeIV-y4MVO0hgTYfdel8X4Eoc,505
|
34
26
|
instaui/components/html/li.py,sha256=bUfjMK3avk48Y8S1HnNeLkvl-QsaMz8aFTJtY_t34oA,410
|
35
27
|
instaui/components/html/link.py,sha256=eNC2f-twFZUhw_rL-Ggff2Lo8NRU33oF8CfWW_9-ktI,670
|
36
28
|
instaui/components/html/number.py,sha256=8uS6qCJjHoWFbd7CYaNPjef_xWQIGKxTkt--0c_q-z4,1091
|
37
29
|
instaui/components/html/paragraph.py,sha256=-rK8RzLIF3X4eeDm73kallUPNZIZJ6aWDOT0oNzDs7E,440
|
38
|
-
instaui/components/html/range.py,sha256=
|
39
|
-
instaui/components/html/select.py,sha256=
|
30
|
+
instaui/components/html/range.py,sha256=cLGoo3QaARG9YDnh6g3UYtc1yueI5dfMa9-4e-feSn4,1644
|
31
|
+
instaui/components/html/select.py,sha256=AKtHqmx92_7L0YtGFB77JDqFcNTe_a5BNFU_m4ihuZs,2126
|
40
32
|
instaui/components/html/span.py,sha256=kPqXHckL0YRWzV84ze4mAcKZPbmvalqDFtiwez_Lbyc,438
|
33
|
+
instaui/components/html/table.py,sha256=YU315he8ikHnAjr0p85gR836NwQvw2Qfgloi1NkQ7Sg,1524
|
41
34
|
instaui/components/html/textarea.py,sha256=rE5BVKCPdvmOr2jV-YU8sQ6KjhSx1HiYqiLR4naiULU,914
|
42
35
|
instaui/components/html/ul.py,sha256=YbP2kH0Utlwr194uvVlCNQk1Xfl-5O24nVsDHSM0dqg,545
|
43
36
|
instaui/components/markdown/markdown.js,sha256=ZlwxvQJ_0Fq1R-j-unfQTWMRswJ8GsYgLvd-wxVISGc,682
|
44
37
|
instaui/components/markdown/markdown.py,sha256=2_ECsZPJ2P5hdP5-Kna0KwoFtHEzk8hgtTZ9rPX5Mds,978
|
45
38
|
instaui/components/markdown/static/github-markdown.css,sha256=rN4poFFQBiYB-q0stk5Bi0_YOv295LEsBLQSkNw2kO0,42486
|
46
|
-
instaui/components/markdown/static/marked.esm.js,sha256=
|
39
|
+
instaui/components/markdown/static/marked.esm.js,sha256=mgAILO5RXoifHq_HxqoWQ6qcMn_Xw8jYuNHdgoIV-xw,99306
|
47
40
|
instaui/components/match.py,sha256=B3wV1h-SkvYnX8RiMObdM2tfJb8nW2gjFxXQvNeZWWM,2774
|
48
41
|
instaui/components/row.py,sha256=dvLbVmXFgigBZo1OKK6fFyJdrYHPms5-EZ11PVPD23I,388
|
42
|
+
instaui/components/shiki_code/shiki_code.js,sha256=b4Z_yfKAnZsma7T51aDUljXn45Jd-AJH-Z1vRO1zaQg,3137
|
43
|
+
instaui/components/shiki_code/shiki_code.py,sha256=0FonvKvFKrGfz-xWlJJqGZt0TDSkZQr-4u3E9_CEbDk,3100
|
44
|
+
instaui/components/shiki_code/static/langs/css.mjs,sha256=vCN8-QsQSqpj1kE5F9whUvBr39IsRtC3Ql7RxIGfw2Y,52249
|
45
|
+
instaui/components/shiki_code/static/langs/markdown.mjs,sha256=wTkMkPZpF-xRGxiQDtoNHk0KUzYM1nheKGOlyX4P2Sw,61684
|
46
|
+
instaui/components/shiki_code/static/langs/python.mjs,sha256=h9AiQgl4T1pP_s9xgMSdTp7UjPs1hpHruOQOqvIGFIQ,77213
|
47
|
+
instaui/components/shiki_code/static/langs/shell.mjs,sha256=tFnepW_2H4k-TKg0X2a5eFxSVUu69tvLsBACE8CppPk,91
|
48
|
+
instaui/components/shiki_code/static/langs/shellscript.mjs,sha256=hUZDCGMkHhsWI8d8RJwqC5DENXuUoJgFmrgJFnuN_Gw,45548
|
49
|
+
instaui/components/shiki_code/static/shiki-core.js,sha256=UL04NBlHkWnjncUOLsNx5mMHCXUUh2t9hVLJPpSOAqs,787821
|
50
|
+
instaui/components/shiki_code/static/shiki-style.css,sha256=Scp2vcZiuBzDd1YyMz0HT6_qzs95OX18wzAJvC-tLHU,6350
|
51
|
+
instaui/components/shiki_code/static/shiki-transformers.js,sha256=JtWn48oj_ppT2-RDbbLnmBjtIvnBRHkgwFcO4hj0yx0,12744
|
52
|
+
instaui/components/shiki_code/static/themes/vitesse-dark.mjs,sha256=OqDIbeBNg40dGoy2Ef02zM7aS7QTcC3bah6ZzvtkpbA,15326
|
53
|
+
instaui/components/shiki_code/static/themes/vitesse-light.mjs,sha256=RWgJuEHtO93_BSyNYuenSW6O_x1fv01aiGRO0ZF_qdo,15176
|
49
54
|
instaui/components/slot.py,sha256=RT0eU7wH7ffFDkl5ucfrNXB1nbsKDq688Hp920TZaoo,2287
|
50
55
|
instaui/components/transition_group.py,sha256=H9zx9NTlCoQnBArWfmxmh7CMKb5hZn8vKrFe4OFxPrE,201
|
51
|
-
instaui/components/value_element.py,sha256=
|
56
|
+
instaui/components/value_element.py,sha256=wRIAaR3_Cq9qLNJw2KPhWt7dJmclj1mrttzlGpb01Y0,1412
|
52
57
|
instaui/components/vfor.py,sha256=A6hvCpmY-5oNZLnIs2yvfQ12C1-GggKVAthqhi5E4lY,4031
|
53
58
|
instaui/components/vif.py,sha256=2E62-8J9NIlZDhvgIOuDwz0tLLb6VoJ1ji1K4okrapw,1165
|
54
|
-
instaui/consts.py,sha256=
|
55
|
-
instaui/daisyui/__init__.py,sha256=
|
56
|
-
instaui/daisyui/_index.py,sha256=
|
59
|
+
instaui/consts.py,sha256=3le1YZTV2PM_jXgvEDWlBeGEJz8QIZ2StvA9MZpem_g,967
|
60
|
+
instaui/daisyui/__init__.py,sha256=V_8mtkai3cCzhg8_IwhOjPSbyFLs3P-LGxwin0S2p6M,478
|
61
|
+
instaui/daisyui/_index.py,sha256=m09dCTRbeOXqgTT36Cq1oXRjUYI8k4zQothFwLiSaq4,549
|
57
62
|
instaui/daisyui/button.py,sha256=wsIPyajetff3JyN_GDZGynaHjKfa_98Z2oQbucBYn8U,1097
|
58
63
|
instaui/daisyui/checkbox.py,sha256=369s5mKU20IFzru2KFlaw0JQbrhN5D-5sJxu1hivzu8,603
|
59
64
|
instaui/daisyui/static/daisyui.css,sha256=IyPR0-rc-ePlHvryIZk8Mm3ZRHlhPg5FRijcOsxSRIM,782801
|
60
65
|
instaui/daisyui/static/themes.css,sha256=6WRPF3bNtrpgMzSjqXv26Yol8fb0xDy2PB2LDLU5E2g,38347
|
66
|
+
instaui/daisyui/table.py,sha256=7p1EqZ_ZT_o-7j6en5f_08Xl7kLHNEWhPp5dJu_y55Y,1511
|
61
67
|
instaui/dependencies/component_dependency.py,sha256=V9L9YmM0_d1bQFMea3aH8qYG_mvGsAVPhmz0UHZa3PQ,672
|
62
68
|
instaui/dependencies/plugin_dependency.py,sha256=6u562ihKbiL3DE4hBrGjauS2nzYEC2glOVN0fwEVNVc,806
|
63
69
|
instaui/event/event_mixin.py,sha256=cN0Wh95e1wX183mGnGFm8BK_aEHWJ8WNx3Upy75mU_4,286
|
64
|
-
instaui/event/js_event.py,sha256=
|
65
|
-
instaui/event/web_event.py,sha256=
|
70
|
+
instaui/event/js_event.py,sha256=C6TS-sgHiUtCSAFpkDDaI1vKzc4F-ZA1zauf3GTiFX4,1780
|
71
|
+
instaui/event/web_event.py,sha256=ddb91alNOuafYt1xOPVADqCy36_CQN4r8EfgLpsxmBM,3207
|
66
72
|
instaui/experimental/__init__.py,sha256=mla0-czeN-1mBNReWSEnMLwBvERMVceQfHGAdCdlyR4,122
|
67
73
|
instaui/experimental/debug.py,sha256=UGUWgNZ3ShanpuxfuPdx52TgQrkO9hByABYMnPZEIiE,1325
|
68
74
|
instaui/fastapi_server/_utils.py,sha256=MCqbebS4UkBOV8fp3Oy415Tvxnqi2mnMl5Eqe6yJogg,1177
|
@@ -73,14 +79,12 @@ instaui/fastapi_server/event_router.py,sha256=_b0UNaPiwGwk7ElcF7XQnZfraPyWG2Miv9
|
|
73
79
|
instaui/fastapi_server/middlewares.py,sha256=XyXjdGjH5hJ47ZK8EBeOln4Db1rfRijZpEGl3xmYQqU,643
|
74
80
|
instaui/fastapi_server/request_context.py,sha256=EV5ZG4zgI_NPlTxinqO4AIREj6rbb1-HcjKCMa2Unfs,521
|
75
81
|
instaui/fastapi_server/resource.py,sha256=2788yiuRjE3GRLqyukuL-x6qN0TSUNzNCm6S51ulNTk,887
|
76
|
-
instaui/fastapi_server/server.py,sha256=
|
82
|
+
instaui/fastapi_server/server.py,sha256=6NvpWg6CkCjGK21-Pj1WDLI3YjA0nBBNS2v2_vPPiyc,9892
|
77
83
|
instaui/fastapi_server/watch_router.py,sha256=KC8AbGNpH2x11PHQMPgc9N5WOlqW05i6r0PTU5A35rI,1599
|
78
84
|
instaui/handlers/_utils.py,sha256=EB5mTb6flhMeuwm2Byb5jp18WqMngOuv3jC_PmycrA0,2076
|
79
|
-
instaui/handlers/
|
80
|
-
instaui/handlers/
|
81
|
-
instaui/
|
82
|
-
instaui/handlers/watch_handler.py,sha256=LZTo6AiklHs7BqOHwCPpDKSigqOmK9kusTkbogB2-_Q,1468
|
83
|
-
instaui/html_tools.py,sha256=DNncLHDAj6RL1pCu-15YyN3eVbRY2KbhK5Irmmwvv3c,1425
|
85
|
+
instaui/handlers/event_handler.py,sha256=hjxi_nDh0yjk9EmRgew1USXk-Egd4pR8YnUiOcJbbnc,1761
|
86
|
+
instaui/handlers/watch_handler.py,sha256=Ay4lubEdRnZcWSqWLwxQyS_uWiF0gu-E9PrNGCAHvL0,1600
|
87
|
+
instaui/html_tools.py,sha256=-W347Uc0xfFSo2Fhk-dE65T8RT-_ApeDqzshi0oPsNI,2579
|
84
88
|
instaui/inject.py,sha256=NeTcsxoPdo12kZCvGjFU9NNHsVWnsPJfIcNY5_sPGYc,727
|
85
89
|
instaui/js/__init__.py,sha256=oIYLPskHpQf8a4SWHLX4DyKjrlDrqWaqbNksIQsLBoA,69
|
86
90
|
instaui/js/js_output.py,sha256=a4tZ99P19oen4510qI9LWX6pX0-lH5y37v8va6UY62Y,382
|
@@ -88,15 +92,18 @@ instaui/js/lambda_func.py,sha256=ulCJ1lzF4h3jGihVTwltS3xEDPbTegjzIN8Al7U4Ank,100
|
|
88
92
|
instaui/launch_collector.py,sha256=_YmF3hsNWe-ZxMp_amqUBHkhB6fOuTPfX16BVwn25xg,1731
|
89
93
|
instaui/page_info.py,sha256=aJtfLp2h05tCuLzxk2pZ6a9ztyxSdI-g3NBRxbqpS6E,269
|
90
94
|
instaui/runtime/__init__.py,sha256=4aYTDsKaloRMQns8ttdfSx5xLmcN0Ot6tMqELbjIDZg,667
|
91
|
-
instaui/runtime/_app.py,sha256=
|
95
|
+
instaui/runtime/_app.py,sha256=tF2rb_4SC6cMYTriDYUKRfroAK6tn5PFLEEXyogClmI,7340
|
92
96
|
instaui/runtime/_inner_helper.py,sha256=Aw7S_KtCuOlpd8NP2RuQvNTL1GJtpxQGLsKdc3VXQFY,326
|
97
|
+
instaui/runtime/_link_manager.py,sha256=sVdqm3gdCl6i9UXa8WwckfYVf1vmESm7hvdagT_-OZI,2271
|
93
98
|
instaui/runtime/context.py,sha256=MXwyKnX1X13peHOUbYzwAMflaA1WoQrNkGbi5C_0ErU,1086
|
94
99
|
instaui/runtime/dataclass.py,sha256=dr3hN4YjFXPzckRX9HR87t1-gPjT9RNq9YV-0uJnjHo,587
|
95
|
-
instaui/runtime/resource.py,sha256=
|
100
|
+
instaui/runtime/resource.py,sha256=8I47HZHRHIzIDrYcfSiHA2RWwb3-ZIsVFMsat8jgV-8,2363
|
96
101
|
instaui/runtime/scope.py,sha256=CG8o3TmisLCSp6zHhj0vI4bJgEzDitUXw5ox9BNb3z4,3779
|
97
102
|
instaui/runtime/ui_state_scope.py,sha256=g48VpQj0BboooUrPr5VIWvcQoJe0bIQARMwRyVEE0I8,314
|
98
103
|
instaui/settings/__init__.py,sha256=nK_xDrlq7CPjm9x3EKsKUW5qWBg_1d-xbqAp_i5G8cc,70
|
99
104
|
instaui/settings/__settings.py,sha256=DWzRvs9bBqjoNA2MvGAyz3GRrSV8H6lMLF1H3iJyoyA,385
|
105
|
+
instaui/shadcn_classless/_index.py,sha256=8gjLIh4J1ezFsQr3hvqS76gY_nhdgiNpexY-ENgfReY,1088
|
106
|
+
instaui/shadcn_classless/static/shadcn-classless.css,sha256=3-DIG6JLQ5sZJekpxB2M3ZMgv4V5kBY7lcR6qZwgHuM,10473
|
100
107
|
instaui/skip.py,sha256=uqhqusgeChVoivKFMoZd-XePYrlSoLvUzRZDBcUgFmA,149
|
101
108
|
instaui/spa_router/__init__.py,sha256=DGSf0YD6wZFj22kmPSyJWUmm_Lx3_YFg32iOa096T7Y,519
|
102
109
|
instaui/spa_router/_components.py,sha256=vPo4JuRtbD_5ll0LkGwU1p8l_pxNfCSdFLDzMXsoEpw,896
|
@@ -109,13 +116,14 @@ instaui/spa_router/_router_output.py,sha256=Nc6N8yO_9IrUbaYbPZMkOX_9VlwBKzyXMaha
|
|
109
116
|
instaui/spa_router/_router_param_var.py,sha256=KCy54xBZxGMqLO3Zlbzr6XV8ts-M6jCOKunL2gz5IUc,1455
|
110
117
|
instaui/spa_router/_types.py,sha256=KuGuv5C6qivwllfdmV5qrvM0S_GWJ6u8OOTkCNmJImU,81
|
111
118
|
instaui/spa_router/templates/page_routes,sha256=8VjM_8f6pjFb01QbU9z5HNqpcNRdCiX3X0OqNHLq8fo,1355
|
112
|
-
instaui/static/insta-ui.css,sha256=
|
113
|
-
instaui/static/insta-ui.esm-browser.prod.js,sha256=
|
119
|
+
instaui/static/insta-ui.css,sha256=xfCyuXSbX2YkxASomIPmLXcz3le2b1mSdZ9gAUp6shQ,257
|
120
|
+
instaui/static/insta-ui.esm-browser.prod.js,sha256=Fueqfm7xAVmSFgky-XYIdibN15tupS_hW-OVmFMjOjY,109236
|
114
121
|
instaui/static/insta-ui.ico,sha256=08FJg4qWolvOjfodoh8IJLStslrvd8sDyuRcTUDq5ak,1150
|
115
|
-
instaui/static/insta-ui.js.map,sha256=
|
116
|
-
instaui/static/
|
122
|
+
instaui/static/insta-ui.js.map,sha256=lL_V2BY30_BWOiBS0eEsmlukrAqPpRNK7oBO2ghhGSw,661811
|
123
|
+
instaui/static/instaui-tools-browser.js,sha256=cLHKNXYaYMZriMxV-yKGAHTrHSdNRUlDVZmv6uc6mMw,14455
|
117
124
|
instaui/static/templates/debug/sse.html,sha256=KPZfFRBNqKs5xEmNgMmgfFvneKXiFzMMDDHPsqebbgU,3384
|
118
125
|
instaui/static/templates/web.html,sha256=pCHoQIPUO03GX_aZ5zNjRYQC9b0GPFtoYE9P8eo5pHc,1789
|
126
|
+
instaui/static/templates/webview.html,sha256=9zQB7wkYKSgHh866Dk3xqSYbcWhCMCaVuh9iM8TFnhg,1862
|
119
127
|
instaui/static/templates/zero.html,sha256=_PHhx6uYD__tlt_bXG4j1WoZGnMBXIs2w2sU6-1zvH4,1684
|
120
128
|
instaui/static/vue.esm-browser.prod.js,sha256=vwQkXANuVYQuEFc0VgiokJdhNyMmvxMKyb1FmrYrNb4,162662
|
121
129
|
instaui/static/vue.global.prod.js,sha256=xFm6fMjbZcmCWJ-l1kx_9HiHfo5bD9dWgyB87GpOieg,157924
|
@@ -126,13 +134,19 @@ instaui/systems/js_system.py,sha256=t_r7SFPmfvTiIrxzuf1YgHyi_Oi_81W0UH_kkC5MwmM,
|
|
126
134
|
instaui/systems/module_system.py,sha256=6qeR1K1vxocezBGPX5yecLVygqjzHNeDtlJTwJO9Szs,937
|
127
135
|
instaui/systems/pydantic_system.py,sha256=qibHh4QqjLNPBzyrCkJVJwCk1dC_H8gEDYYf8Sb-5ps,691
|
128
136
|
instaui/systems/string_system.py,sha256=NzB7rgy7BZAYXAYDEWJQSvuYNui2TbLbrc9itVZGLmE,247
|
137
|
+
instaui/tailwind/__init__.py,sha256=HNexMZAMG2c0QtkX3oNXmpWnyWDuJPrxuq5IBGvcjVs,75
|
138
|
+
instaui/tailwind/_index.py,sha256=PPjm046Clrfkg7xv0_BVWuxiLdYZIqnLN3GR7cSvuIg,810
|
139
|
+
instaui/tailwind/static/tailwindcss-v3.min.js,sha256=wmOuJX6oR7byZau-Zp2CDXhM6BVK5ZXN55tgExAV4ew,366390
|
140
|
+
instaui/tailwind/static/tailwindcss-v4.min.js,sha256=9Ob5VKFT6th87AlCG5pJ90ICCZSsnemVuQ1TzyS2zk4,250319
|
129
141
|
instaui/template/__init__.py,sha256=fuua3uCOCmhWb7Q6Sc6pUxfwlxYJTXkdWB1V2fubyyc,141
|
142
|
+
instaui/template/_utils.py,sha256=wNIGDWr3z2PpmKsgShYISbCnII4AbKfsLIX_DRWlRbU,670
|
130
143
|
instaui/template/env.py,sha256=ZqVsqpfSY1mupbgpBSkvOJytNui8xfNR5kNNC9rv4Ps,150
|
131
144
|
instaui/template/web_template.py,sha256=BmZY13q4E_ZP4YVgfBKbbXvPHcGZfOl2f54wp_0DjJA,1603
|
145
|
+
instaui/template/webview_template.py,sha256=AWDtsk-CbBOissWjIzjq-0gd8iVjKW7mjs70iGXmNcU,1629
|
132
146
|
instaui/template/zero_template.py,sha256=E88VGsyjb1qbHFJlMW-xmLRFkwUXZA7VDoZ_Jd8YubA,3514
|
133
147
|
instaui/ui/__build_init.py,sha256=xpwR2H-lqV7932W2NirtPXb4JtRk2vI9H36OHocqBOg,2156
|
134
|
-
instaui/ui/__init__.py,sha256=
|
135
|
-
instaui/ui/__init__.pyi,sha256=
|
148
|
+
instaui/ui/__init__.py,sha256=svj4zXW2uUzfNJBbs6yjXRemDvKQqIgeaakcVuTmLTQ,4167
|
149
|
+
instaui/ui/__init__.pyi,sha256=GTxfZRHVkwbbY1hGukp48qSPUY69QakxJxBll54dcpc,4071
|
136
150
|
instaui/ui/events.py,sha256=lfhiINwn-Kh0MezsSeLJPttWm6G1aWiwyk3TRo0NrlA,809
|
137
151
|
instaui/ui_functions/input_slient_data.py,sha256=0A5DegIt_MqdZgbj1RiVFNmB_RUqgov9FYtkw6VX0DE,511
|
138
152
|
instaui/ui_functions/server.py,sha256=B4w8KwBUMGStY19uUG8E4vRG7-L4cedttLkh35xr698,357
|
@@ -145,7 +159,7 @@ instaui/vars/_types.py,sha256=wthCk1fcxj1SZ5y6b84W9gFpoi8j2PYnfmaPj4Am72s,308
|
|
145
159
|
instaui/vars/_utils.py,sha256=j_00d04_bIACUZkOqrnJXh3pU6Em3YVphUJMmyMfRJI,316
|
146
160
|
instaui/vars/data.py,sha256=DBqXdcY8LG9VbR3i-LnW45YfICiChTRHKcZwgCxULdc,1721
|
147
161
|
instaui/vars/element_ref.py,sha256=JQ5fKzjaLbLBDcV83IztcPQFMsaT37sTxjtxEy4LwFc,1053
|
148
|
-
instaui/vars/event_context.py,sha256=
|
162
|
+
instaui/vars/event_context.py,sha256=3ML6nyF6Q1hbFvdeu6E2QVOIVcWe1P9FtlCR0dgBGjo,1308
|
149
163
|
instaui/vars/event_extend.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
150
164
|
instaui/vars/js_computed.py,sha256=DjR2kUIbWqCIDUPsRDXCTtlQzXiwpa9L3JwcOc6ADQ0,2695
|
151
165
|
instaui/vars/mixin_types/common_type.py,sha256=4KduANLCUCeGTA1ClEsbFzEzd8Mgve3693Wxf9H7Gmw,176
|
@@ -162,18 +176,24 @@ instaui/vars/state.py,sha256=N6yLcVkiyCpK5oR8C2KbggFmLwpgBgzylp11JgFiab8,2630
|
|
162
176
|
instaui/vars/types.py,sha256=K0QTajlzHaDvFoVMCHAhY_rVvrBm3FsC92BFPOgdBog,511
|
163
177
|
instaui/vars/vfor_item.py,sha256=cVrpErh8OrycYjDLm7PTuE2kIcC2M6ThAQlwvTXG8x0,5490
|
164
178
|
instaui/vars/vue_computed.py,sha256=f3xkjTjbfSpwKeBImWkG_bCqIuyysH3V-Zdbqh482As,2395
|
165
|
-
instaui/vars/web_computed.py,sha256=
|
179
|
+
instaui/vars/web_computed.py,sha256=agnNR_16YGeeruiDnC35EyYA0RVJLQnz_7qbhHV5htM,4407
|
166
180
|
instaui/vars/web_view_computed.py,sha256=bFFVE9jRKczNy4HhmegWoC6KOL_Nrej-ag37DAIDzaA,36
|
167
181
|
instaui/version.py,sha256=to8l16EjNe4jmzK316s5ZIotjv554tqF0VfwA1tBhQk,87
|
168
182
|
instaui/watch/_types.py,sha256=HJ_eAID0NsEJ_S8PhcYWxpVWhYLjjqKlbNWwqdqS4IU,73
|
169
183
|
instaui/watch/_utils.py,sha256=mTITHG8hp0pyfQXUERQKXMDna5Au02bhuASCV32eXHI,124
|
170
184
|
instaui/watch/js_watch.py,sha256=k9lgtyUGZ8a549QITcNie2kGbT0BJuYqfouoOex0Dqs,2182
|
171
185
|
instaui/watch/vue_watch.py,sha256=n6yVt2ruKCjx-ZnIb29ytN9ugDas1JpUBOJeQ_FSYAA,1571
|
172
|
-
instaui/watch/web_watch.py,sha256=
|
186
|
+
instaui/watch/web_watch.py,sha256=6VOeXPHQM6UcCaOnrsZ-c5AiCNaUqL5nOkw4-G_2frE,3728
|
187
|
+
instaui/webview/__init__.py,sha256=1yUBPkgYvuQk9cDYXzGE9WcUHyM0Af8Er632GtgQeuo,35
|
188
|
+
instaui/webview/_utils.py,sha256=pqARVv37h-8p7CLOpvqLV8O_az4EV2VD9G-beUVqjD8,172
|
189
|
+
instaui/webview/api.py,sha256=9xuG3EKpmOOy1dvIrS9C9z9ukQDRnIdZLrGFD5FLyvU,2071
|
190
|
+
instaui/webview/func.py,sha256=Igrf7U5qL5jJvhwIRJ3JqRjXxX_S2O_nQ9oy1HLFtYo,3422
|
191
|
+
instaui/webview/index.py,sha256=0uUU2addq2Bu4Cb41iYSvVzLsJXWzzEI5vzb7rzIc0o,5821
|
192
|
+
instaui/webview/resource.py,sha256=kFT6N5UZK5GLE0KmW3TrEYDNlViw9DL2OshRh41wBXs,5566
|
173
193
|
instaui/zero/__init__.py,sha256=N0LuRUAcaurxHSspcEDuwZg62W2S3qL4VtrMKxOivBE,49
|
174
|
-
instaui/zero/func.py,sha256=
|
175
|
-
instaui/zero/scope.py,sha256=
|
176
|
-
instaui-0.1.
|
177
|
-
instaui-0.1.
|
178
|
-
instaui-0.1.
|
179
|
-
instaui-0.1.
|
194
|
+
instaui/zero/func.py,sha256=8cA_wJMtRmoAARjWY8yY5MmLXDAQ7hyVW6f1Vbejtoc,3576
|
195
|
+
instaui/zero/scope.py,sha256=6odxaryVSfamKpQQgpR-4cKIzLaH0eU4uaQspObRINM,4405
|
196
|
+
instaui-0.1.5.dist-info/LICENSE,sha256=_JjnAWrikJ6qkwT7PazeFNRlcIu8q_RH3mYcHTxEF5c,1094
|
197
|
+
instaui-0.1.5.dist-info/METADATA,sha256=eFfii9kiTmYTOrVBYOoJXYgZnh0FeIBYq-Kn9auvOMw,3570
|
198
|
+
instaui-0.1.5.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
199
|
+
instaui-0.1.5.dist-info/RECORD,,
|