instaui 0.1.4__py3-none-any.whl → 0.1.6__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/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 +179 -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/components/column.py +10 -2
- 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 -6
- instaui/components/grid.py +81 -0
- 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/github-markdown.css +1 -1
- instaui/components/markdown/static/marked.esm.js +0 -1
- instaui/components/row.py +8 -7
- 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/value_element.py +7 -3
- instaui/consts.py +2 -1
- instaui/event/js_event.py +1 -0
- instaui/event/web_event.py +6 -7
- instaui/experimental/link_sql/__init__.py +3 -0
- instaui/experimental/link_sql/_base.py +23 -0
- instaui/experimental/link_sql/_duckdb.py +221 -0
- instaui/experimental/link_sql/_types.py +15 -0
- instaui/experimental/link_sql/data_source.js +50 -0
- instaui/fastapi_server/debug_mode_router.py +1 -1
- 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 +41 -4
- instaui/runtime/_app.py +37 -3
- instaui/runtime/_link_manager.py +89 -0
- instaui/runtime/resource.py +19 -9
- instaui/runtime/scope.py +28 -7
- 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 +3663 -3658
- instaui/static/insta-ui.js.map +1 -1
- instaui/static/instaui-tools-browser.js +511 -0
- instaui/static/templates/debug/sse.html +1 -1
- 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/ui_functions/ui_page.py +1 -1
- instaui/vars/data.py +7 -7
- instaui/vars/element_ref.py +2 -4
- instaui/vars/event_context.py +4 -0
- instaui/vars/js_computed.py +6 -8
- instaui/vars/ref.py +6 -6
- instaui/vars/vue_computed.py +6 -7
- instaui/vars/web_computed.py +31 -32
- instaui/watch/vue_watch.py +23 -7
- 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 +29 -28
- {instaui-0.1.4.dist-info → instaui-0.1.6.dist-info}/METADATA +6 -2
- instaui-0.1.6.dist-info/RECORD +286 -0
- 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/daisyui/__init__.py +0 -20
- instaui/daisyui/_index.py +0 -15
- instaui/daisyui/button.py +0 -38
- instaui/daisyui/checkbox.py +0 -17
- instaui/daisyui/static/daisyui.css +0 -1
- instaui/daisyui/static/themes.css +0 -1
- instaui/handlers/computed_handler.py +0 -42
- instaui/handlers/config_handler.py +0 -13
- instaui/ui/__build_init.py +0 -73
- instaui/vars/_utils.py +0 -12
- instaui-0.1.4.dist-info/RECORD +0 -179
- {instaui-0.1.4.dist-info → instaui-0.1.6.dist-info}/LICENSE +0 -0
- {instaui-0.1.4.dist-info → instaui-0.1.6.dist-info}/WHEEL +0 -0
@@ -0,0 +1,286 @@
|
|
1
|
+
instaui/__init__.py,sha256=AUc9WcEoBimqYCunwNghawZKuhup_qYd1bor5Go1qmA,161
|
2
|
+
instaui/_helper/observable_helper.py,sha256=8giJzjf4483pr-LFYnRguXv6-DQtxdYmTtXt0aXOE7g,1105
|
3
|
+
instaui/arco/__init__.py,sha256=_QuzxGbuQKuq9hjem65NKqYwiKDAP_3ZVPHy75Idw_s,6155
|
4
|
+
instaui/arco/_settings.py,sha256=iuWQb-sGNlw4fBxf-Ufj-YGnBXaGVJIDMgPuVg9ZJ38,771
|
5
|
+
instaui/arco/_use_tools/locale.py,sha256=30-3dYbTV0aIoA3cMAH-TWreDZA94bf0LrKbJl5vCzk,1295
|
6
|
+
instaui/arco/component_types.py,sha256=wAJvOw4SGbf8bcC3QTdJonsWk5SsRVui-imsKdg-Nzo,39397
|
7
|
+
instaui/arco/components/_utils.py,sha256=JpofPvCwVJYw_LbN3ZTFOFqT16mj4mF5pS3lgkr_gR4,547
|
8
|
+
instaui/arco/components/affix.py,sha256=IHst2isiW4Ujwb5YeLJA7L4GQ2jEI-gGKD0hw6y4t-w,711
|
9
|
+
instaui/arco/components/alert.py,sha256=Q8To4MtXMBwU2z6pL8s4Sto0fQVkheoFT8ZeOSAacB4,986
|
10
|
+
instaui/arco/components/anchor.py,sha256=Rb-NWInkcNS1f9yysQjC6njaF5K59MIk630bx6bFx3U,981
|
11
|
+
instaui/arco/components/auto_complete.py,sha256=pNxh6o_hZp2-Nqf5yQjVapNTjmIapUnjK7kgOnANMCo,2267
|
12
|
+
instaui/arco/components/avatar.py,sha256=nUFhBjEYlIHl4kiZKqvsy5t0lwPp1CbHjfDY3ivf85o,1240
|
13
|
+
instaui/arco/components/back_top.py,sha256=IQqo0-PQ1deIR13S15QEp9CcT-w9oDLuYxi7AN5yIUM,386
|
14
|
+
instaui/arco/components/badge.py,sha256=zvyGcrP425nMfCG-l8Qv5-XhigR-k3kugs_2LSbgqxs,379
|
15
|
+
instaui/arco/components/breadcrumb.py,sha256=mJqcYVKwl2YtPoRPKebzSevfmkGi2UG5AoCeQgf3vAc,394
|
16
|
+
instaui/arco/components/button.py,sha256=bKW7zNxIaOFhsFmODV2HXxiYylyap4rbJNQXLS-qYGU,1141
|
17
|
+
instaui/arco/components/calendar.py,sha256=_JKratsKPYVBmvtXFU9sQvmqK1sLrLP9Nn75McFpLvw,1211
|
18
|
+
instaui/arco/components/card.py,sha256=tvz_PgSysY9Yesv2gm6AsCZIfA-Uho6lwCq04-iagZw,376
|
19
|
+
instaui/arco/components/carousel.py,sha256=n0gIQ3LNdwmxF2z3SziKaTTxuOVqgeOBinz2nne6xi0,948
|
20
|
+
instaui/arco/components/cascader.py,sha256=v8KUZnLtGNMj3tlQdlijSsYHZWLUbyn8gdwexdJSo5g,2610
|
21
|
+
instaui/arco/components/checkbox.py,sha256=RPnosvzBbIHP81X6wLLCT6mrtxIQlZvWnmVqtFZtUpM,900
|
22
|
+
instaui/arco/components/collapse.py,sha256=_KTRwPJNfe_9H2A2CkPA29_1Ci7VdvqLePHb-ng5a9M,900
|
23
|
+
instaui/arco/components/color_picker.py,sha256=zQI59ETb9UKSzto0aIwxYi0mBQqFz16pZdrLjwTWgao,1180
|
24
|
+
instaui/arco/components/comment.py,sha256=5i7NBqqxxgCfDyJGobRM_4jnQx7aMwe1VvlZs8yVnZY,385
|
25
|
+
instaui/arco/components/config_provider.py,sha256=RCM_XC6vWI9BnxtItLEnMhTIz64RNBbMDwSFxuur8c4,405
|
26
|
+
instaui/arco/components/date_picker.py,sha256=rAACVsKUQMkwzKER-VfygWlX_noAj9FDy9keX_btdIw,2577
|
27
|
+
instaui/arco/components/descriptions.py,sha256=rQzdUGwBE3IAbmQiyBjg_GtAieL_fB0_ue2p0euRYfY,400
|
28
|
+
instaui/arco/components/divider.py,sha256=vADudEVv0p0QtSA1dqtwI6-5ffqQAR2gucjfl_uqHok,383
|
29
|
+
instaui/arco/components/drawer.py,sha256=_s6UtS2bGncOPXr_9qEdAIYf895q-4p24NW-YpnT27I,2252
|
30
|
+
instaui/arco/components/dropdown.py,sha256=btxc4Wm4wEQa4lxiPg9y6ozXHXs-T5-ppNjrCSZOraY,1208
|
31
|
+
instaui/arco/components/empty.py,sha256=Y3QnWMffnYIUZ3vFFI1RpiAKFdpI3JH4DpZVm98pEA8,379
|
32
|
+
instaui/arco/components/form.py,sha256=42M2WZPx_2N8KTVE7GyM2j5PboB5etNuKk9TUDtVf9k,1272
|
33
|
+
instaui/arco/components/icon.py,sha256=r3ft8SWRMxCWHB8hXYJ8XWhaQyLDw1WMbTGeNNYpqnY,529
|
34
|
+
instaui/arco/components/image.py,sha256=AtlSE7rzzUAWbviGRQsxg6byEihr0DmSh3fWk2dO3E0,972
|
35
|
+
instaui/arco/components/input.py,sha256=4cwljuQrAonE_6wGBuJGlnruLjk3tvlazdcTzchehFQ,2441
|
36
|
+
instaui/arco/components/input_number.py,sha256=-gO0cgVKEXsVlCo6p7-SFuqNKLEDeWYCGOl4uG4HQZM,2233
|
37
|
+
instaui/arco/components/input_password.py,sha256=FcZbumYLYGh-s6cOMbfBTGcsPoKBXU_gGupudCKG9Fo,1090
|
38
|
+
instaui/arco/components/input_search.py,sha256=oHimoUc3TeJbsfE_YYZqWY92RmKcUj9UDlh9DH2oOYU,965
|
39
|
+
instaui/arco/components/input_tag.py,sha256=Yqcjw4pjE77v4xs_sHq4adzBODDMJ1nNX42G7q2nzRo,2504
|
40
|
+
instaui/arco/components/layout.py,sha256=qZ0YYFIKx5qVFcBETWDbodW_nFB14ylKg6aIpmyIiN0,380
|
41
|
+
instaui/arco/components/layout_content.py,sha256=Vxg9UJbmf8WTIGmqi7MEDC1jxb-GRMdFacEXw5ZSm80,154
|
42
|
+
instaui/arco/components/layout_footer.py,sha256=tMLlocxfJi9FQOZ91M5wufprDDKBV7VbTgnmgf9sb00,152
|
43
|
+
instaui/arco/components/layout_header.py,sha256=aSMzKHqiL5-o-qFJhhSPqyualbq5joLj9nH0HJ7dkP4,152
|
44
|
+
instaui/arco/components/layout_sider.py,sha256=_RHIYiQb5uAl0iTeryrAS-H1ZlqkNuZSNqtqZQs-YSA,1372
|
45
|
+
instaui/arco/components/link.py,sha256=Rg_5qhSeG93Bs3Rrx8JqvsWbWuyFTWha6iWXS6WDu_c,946
|
46
|
+
instaui/arco/components/list.py,sha256=XgTwO9yVgT-UdLz10VrAiGqbd1dEMMde9pGmwekE3sw,1551
|
47
|
+
instaui/arco/components/mention.py,sha256=Jdhfff1qs_29sZLEXNDlQeu1lFt7nQJN4PrxeV9RfPw,2199
|
48
|
+
instaui/arco/components/menu.py,sha256=-FR98U7UMRngyluxbl4AAjejjyHQMvVBpNR-gh7dLI0,2226
|
49
|
+
instaui/arco/components/modal.py,sha256=SZrN2LuzjylwFawme4NJRLuRuUB2r35YfcbamNg-2t0,2247
|
50
|
+
instaui/arco/components/overflow_list.py,sha256=-9MqhVhPW5KPHyitRvz7MSlUmATM-U6q6m5h5QudYGY,733
|
51
|
+
instaui/arco/components/page_header.py,sha256=_FyLfzxJpJ1n1u2OoKym7YkOcpGuqnzpdmSbgsC49VA,723
|
52
|
+
instaui/arco/components/pagination.py,sha256=SOim-t1TE25OkhH4IRavalXLz1TSVgOfVLSkSFZXXPQ,1205
|
53
|
+
instaui/arco/components/pop_confirm.py,sha256=Q96oCK88FjNBesC9VZhv8dWuxlEMTqa-SIBV2fGbNBM,1490
|
54
|
+
instaui/arco/components/popover.py,sha256=pfJBqvTOi4BzPGNHw6EjkXs7c7nOjLgeqBpCcwm9IUQ,955
|
55
|
+
instaui/arco/components/progress.py,sha256=uB0HnUCug_FZdDaKUGiIkmECwV3jPBOOEpovrxV-Cck,388
|
56
|
+
instaui/arco/components/radio.py,sha256=e9wwefL9liLnyfjz1mA0_fl6KysXVP7XwoskUT7Ht5E,1097
|
57
|
+
instaui/arco/components/radio_group.py,sha256=3LhRaljmD83cR5KAy0492zy62hRde6TTQF-VqkF1Wos,1290
|
58
|
+
instaui/arco/components/rate.py,sha256=GLALtLZ1-1xklnnGKZf02KOLJga-IWVB-l_XSrQoQMs,1163
|
59
|
+
instaui/arco/components/resize_box.py,sha256=imq3YgcLtaeFChZFvC-jflCaJxq0hY_cnK4TCN7s3j4,1678
|
60
|
+
instaui/arco/components/result.py,sha256=QEkQeTujw4P9GtsAziUHDT3UqoRjCcVS2MdZDtT2a8U,382
|
61
|
+
instaui/arco/components/select.py,sha256=rAEg-VDAkjZrnzUEl-f08xWaVNUr3Uu_-QvaKcg6DZQ,4519
|
62
|
+
instaui/arco/components/skeleton.py,sha256=08wkK25eBAn5i_j97WcfipJ2Z15ovQ7G0pp92vAbu3s,388
|
63
|
+
instaui/arco/components/slider.py,sha256=A2R9Nj_BBG7rZhfOdD8eeHslyYpFVeiWFNuP4F8zNRI,1037
|
64
|
+
instaui/arco/components/space.py,sha256=Ml-bWxzMYET0TctKRz_SYE9JIuezD0avTE2KqAZLo68,379
|
65
|
+
instaui/arco/components/spin.py,sha256=rd_B0ndmz3xg4ljPIw27IfoWEMPZzvw_E_b0AApiEDY,376
|
66
|
+
instaui/arco/components/split.py,sha256=TmsY_jsaYWfOg8n7VnDc8Rs4SP4_P6Rf5j7IrSXQX4c,1942
|
67
|
+
instaui/arco/components/statistic.py,sha256=0mrzge0wNbrfK2YYTGzfG5bLljil9Bp86sS1e7d7eJo,391
|
68
|
+
instaui/arco/components/steps.py,sha256=k2vJfB8oPtHcwExzGsCAhRtAZBKiAqdHKgQrZ2Q3rg0,903
|
69
|
+
instaui/arco/components/switch.py,sha256=TR5q6pBI4W-ulKB1EpFE1x_pKgyIyCPVU1LZ7kXyE9I,1426
|
70
|
+
instaui/arco/components/tab_pane.py,sha256=PxMRDgYKf3u_CDLNYmEQirWtxdPf60YG2dzqF-tue7w,357
|
71
|
+
instaui/arco/components/table.py,sha256=nVjKxryLHKt1NowYGtzD1LPlqa1PLzqQIRTiQ6jE5LI,6032
|
72
|
+
instaui/arco/components/tabs.py,sha256=DH_MYgBQyLgzuzxj3ACLqrMQ1eA6yHi4k4J6TCwt3-c,2672
|
73
|
+
instaui/arco/components/tag.py,sha256=AIdYkmGtG_ngahNELIK8HsuvUnpbWII7h8Tsdf3p9Mc,968
|
74
|
+
instaui/arco/components/textarea.py,sha256=hj6M4d0IzLwcq5Kk2cllkZiChqQNe5auczQSOBwQLQE,1933
|
75
|
+
instaui/arco/components/time_picker.py,sha256=xRWI92v6ZNUdY67JBQ8MBYJ7DNYPKEC4I-pqE022p78,1853
|
76
|
+
instaui/arco/components/timeline.py,sha256=mThFeabh3dRucb4trXmQ4nSV8KPWMMD_tcqeFWJhUMM,388
|
77
|
+
instaui/arco/components/tooltip.py,sha256=05u84N6WaF_JgSZRvnwFIzmUVBoJHLTn73a8wLw8Z40,745
|
78
|
+
instaui/arco/components/transfer.py,sha256=d0YcKEwcMF23Pd3TBJIoB_BeH7HKE4OX-qj8WArusOM,1422
|
79
|
+
instaui/arco/components/tree.py,sha256=aa3EVlyM1RHJ_3_d_0mp21y365_FLcwRHOePaDJ8bcQ,2597
|
80
|
+
instaui/arco/components/tree_select.py,sha256=xXSSBFOjS_q0QPux97bP7YivWHTBdoUMiiN7xkN0-IU,2097
|
81
|
+
instaui/arco/components/trigger.py,sha256=YYnxkAKEDGKjWOECEgmO7_AjTKhPEwAMycfgvKBD5Qw,1482
|
82
|
+
instaui/arco/components/typography.py,sha256=j-Hr9yV9jlpF1X3X0KVuqYg2yTYpYXD2fFRylFPnaV8,3661
|
83
|
+
instaui/arco/components/upload.py,sha256=LOsFbkz4PaUEkSKnNdf6qM5KTs1EekInhy897JqRC1E,1684
|
84
|
+
instaui/arco/components/verification_code.py,sha256=ticp_XwPoSRGLPUd3wwKCH-ZEuwHCk-aI-fIHTOgipA,1432
|
85
|
+
instaui/arco/components/watermark.py,sha256=kCgkmvSqsup7BBTTOfHrqGOVStvZsHtUDenoRgoYQq0,391
|
86
|
+
instaui/arco/locales/__init__.py,sha256=I4wf2qQymrPU_E_EXKni4_me0m2KSr7Sfx9ZbRR1oOQ,62
|
87
|
+
instaui/arco/locales/_index.py,sha256=cZXwVTBWqM5vASvMnlTHjdWfF5eAdCXT53K_JFhEpEU,806
|
88
|
+
instaui/arco/locales/en_us.py,sha256=pIU4zBIhoWj5y0PhKoKjSAPZ6y3VSUfIcCGyhce5o08,8294
|
89
|
+
instaui/arco/locales/zh_cn.py,sha256=Zeyvm-kh7fhPGe5KZMo_qt8I1s6MkveOk5mMfAYso0k,8182
|
90
|
+
instaui/arco/setup.py,sha256=iKyb7oDXSkpPUmYNF_4H4wzIG-dZMWjOys97wr6EsG4,996
|
91
|
+
instaui/arco/static/instaui-arco.css,sha256=AlEqqPeOS_-ebbM7bsbSqDw2DgNJy5lIil6O5MYf6XM,399576
|
92
|
+
instaui/arco/static/instaui-arco.js,sha256=Rf9xrkCK6lD2cUED6pd15Ge-SFmX_SByOzaC2kBqDTE,1609202
|
93
|
+
instaui/arco/types.py,sha256=3p55fBzYbpw633WmyFS7WdMcosBLme39VT4C1fbtQcg,341
|
94
|
+
instaui/boot_info.py,sha256=2uIkRaNhuUCG6Jbyl2Gb0_1IbVxtfJ8s2j6X1XXdSk0,905
|
95
|
+
instaui/common/jsonable.py,sha256=efzn_IvfrsaNKjc3B3UzshoMvsqSsB-jnD2Aia8YMYM,902
|
96
|
+
instaui/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
97
|
+
instaui/components/column.py,sha256=t_kDAelb-5_aqx4hv19sOm8zcQpRmn-slTMcwZfMOLk,848
|
98
|
+
instaui/components/component.py,sha256=cfKWlhxATdvERSzsVzvLtm61f72_gblhLJXIrXLGQrk,1284
|
99
|
+
instaui/components/content.py,sha256=f6dm0GukYJk4RRNJzuvOGqBrStLWkJQbLkV7M5fJ63k,1094
|
100
|
+
instaui/components/directive.py,sha256=bHSOWXNhzWRVNqLXwhc_hY3R3g-JAQ5DWIqpZkI6_wI,1411
|
101
|
+
instaui/components/echarts/echarts.js,sha256=dXW6gzrBpzt7ZRy5LDJYxkO4PnP37A1KUAWm9391B1M,2673
|
102
|
+
instaui/components/echarts/echarts.py,sha256=JX2NXSVqhZYMXIINgO4AFTQOZ2YDIbib1_kYcWRBMGg,5445
|
103
|
+
instaui/components/echarts/static/echarts.esm.min.js,sha256=KN8OVRa4kTlat9NIfArzA3rtGcYfyrkcwjFBy_07vu8,1033915
|
104
|
+
instaui/components/element.py,sha256=7kxQTSx-JbJ1ndSpEjSnUwYXIajxaR5kPYNP3kkDk9U,17698
|
105
|
+
instaui/components/grid.py,sha256=9agGF1JtMi7k453nSynIAhN4T1ssa7WE7zXHbq9ift4,5569
|
106
|
+
instaui/components/html/__init__.py,sha256=9bO1ai0aQCWwj80NKqDeq_3zwMg5gf17mE40a1IESAk,1088
|
107
|
+
instaui/components/html/_mixins.py,sha256=5dcSM9h1PswIKL6_eiqUxqW4H2OCuyNeCuRZq3gDGOc,876
|
108
|
+
instaui/components/html/_preset.py,sha256=c5rTj3r8W7UP0UHFLUW-ZSPedIa-gzrsU1goi60l20Q,94
|
109
|
+
instaui/components/html/button.py,sha256=lB5SYC2Q8b3dOHLBclJW8yaWBuhoe0qNhpKeEifRDJc,820
|
110
|
+
instaui/components/html/checkbox.py,sha256=29BTpovcJvrN2uQY280dn8KTyspwBBvLeKSxUv3CxjU,1066
|
111
|
+
instaui/components/html/date.py,sha256=MOodsG83JDtb_8l26QWRb7taiPHUAJI6wjt_AjSAJT0,833
|
112
|
+
instaui/components/html/div.py,sha256=fF9rBlOBIl-tDvml1DtJK9lFfFY0SBcP5bn36pluis4,167
|
113
|
+
instaui/components/html/form.py,sha256=C-QVtwX18zH8ZuVK93weGwlRWfSyTGWY_CYIdGcaslU,169
|
114
|
+
instaui/components/html/heading.py,sha256=eK7XubxEQxXASzZmDin-qNM7xYQX6Lbmjix60uFr9OI,1306
|
115
|
+
instaui/components/html/input.py,sha256=gWgRIy-xWvW_XeiJ3H8OD8XM-LmJzcxpju7803salwY,908
|
116
|
+
instaui/components/html/label.py,sha256=aENhnvD_ziqumZPD7GbeIV-y4MVO0hgTYfdel8X4Eoc,505
|
117
|
+
instaui/components/html/li.py,sha256=bUfjMK3avk48Y8S1HnNeLkvl-QsaMz8aFTJtY_t34oA,410
|
118
|
+
instaui/components/html/link.py,sha256=eNC2f-twFZUhw_rL-Ggff2Lo8NRU33oF8CfWW_9-ktI,670
|
119
|
+
instaui/components/html/number.py,sha256=8uS6qCJjHoWFbd7CYaNPjef_xWQIGKxTkt--0c_q-z4,1091
|
120
|
+
instaui/components/html/paragraph.py,sha256=-rK8RzLIF3X4eeDm73kallUPNZIZJ6aWDOT0oNzDs7E,440
|
121
|
+
instaui/components/html/range.py,sha256=cLGoo3QaARG9YDnh6g3UYtc1yueI5dfMa9-4e-feSn4,1644
|
122
|
+
instaui/components/html/select.py,sha256=AKtHqmx92_7L0YtGFB77JDqFcNTe_a5BNFU_m4ihuZs,2126
|
123
|
+
instaui/components/html/span.py,sha256=kPqXHckL0YRWzV84ze4mAcKZPbmvalqDFtiwez_Lbyc,438
|
124
|
+
instaui/components/html/table.py,sha256=YU315he8ikHnAjr0p85gR836NwQvw2Qfgloi1NkQ7Sg,1524
|
125
|
+
instaui/components/html/textarea.py,sha256=rE5BVKCPdvmOr2jV-YU8sQ6KjhSx1HiYqiLR4naiULU,914
|
126
|
+
instaui/components/html/ul.py,sha256=YbP2kH0Utlwr194uvVlCNQk1Xfl-5O24nVsDHSM0dqg,545
|
127
|
+
instaui/components/markdown/markdown.js,sha256=ZlwxvQJ_0Fq1R-j-unfQTWMRswJ8GsYgLvd-wxVISGc,682
|
128
|
+
instaui/components/markdown/markdown.py,sha256=2_ECsZPJ2P5hdP5-Kna0KwoFtHEzk8hgtTZ9rPX5Mds,978
|
129
|
+
instaui/components/markdown/static/github-markdown.css,sha256=_uphCFXVa_Hhwyfs7ps-wcpBuzA7_RhkiX7DuxuLIzI,42536
|
130
|
+
instaui/components/markdown/static/marked.esm.js,sha256=mgAILO5RXoifHq_HxqoWQ6qcMn_Xw8jYuNHdgoIV-xw,99306
|
131
|
+
instaui/components/match.py,sha256=B3wV1h-SkvYnX8RiMObdM2tfJb8nW2gjFxXQvNeZWWM,2774
|
132
|
+
instaui/components/row.py,sha256=luiBNCgGOMhMZlN6AYaS4qyXV0MNQQSiyshUWui4Je8,609
|
133
|
+
instaui/components/shiki_code/shiki_code.js,sha256=b4Z_yfKAnZsma7T51aDUljXn45Jd-AJH-Z1vRO1zaQg,3137
|
134
|
+
instaui/components/shiki_code/shiki_code.py,sha256=0FonvKvFKrGfz-xWlJJqGZt0TDSkZQr-4u3E9_CEbDk,3100
|
135
|
+
instaui/components/shiki_code/static/langs/css.mjs,sha256=vCN8-QsQSqpj1kE5F9whUvBr39IsRtC3Ql7RxIGfw2Y,52249
|
136
|
+
instaui/components/shiki_code/static/langs/markdown.mjs,sha256=wTkMkPZpF-xRGxiQDtoNHk0KUzYM1nheKGOlyX4P2Sw,61684
|
137
|
+
instaui/components/shiki_code/static/langs/python.mjs,sha256=h9AiQgl4T1pP_s9xgMSdTp7UjPs1hpHruOQOqvIGFIQ,77213
|
138
|
+
instaui/components/shiki_code/static/langs/shell.mjs,sha256=tFnepW_2H4k-TKg0X2a5eFxSVUu69tvLsBACE8CppPk,91
|
139
|
+
instaui/components/shiki_code/static/langs/shellscript.mjs,sha256=hUZDCGMkHhsWI8d8RJwqC5DENXuUoJgFmrgJFnuN_Gw,45548
|
140
|
+
instaui/components/shiki_code/static/shiki-core.js,sha256=UL04NBlHkWnjncUOLsNx5mMHCXUUh2t9hVLJPpSOAqs,787821
|
141
|
+
instaui/components/shiki_code/static/shiki-style.css,sha256=Nvj4q_pjgisJJ1bmC0BVgdeYZIOPfvKrboCMjQ9a8bs,6253
|
142
|
+
instaui/components/shiki_code/static/shiki-transformers.js,sha256=JtWn48oj_ppT2-RDbbLnmBjtIvnBRHkgwFcO4hj0yx0,12744
|
143
|
+
instaui/components/shiki_code/static/themes/vitesse-dark.mjs,sha256=OqDIbeBNg40dGoy2Ef02zM7aS7QTcC3bah6ZzvtkpbA,15326
|
144
|
+
instaui/components/shiki_code/static/themes/vitesse-light.mjs,sha256=RWgJuEHtO93_BSyNYuenSW6O_x1fv01aiGRO0ZF_qdo,15176
|
145
|
+
instaui/components/slot.py,sha256=RT0eU7wH7ffFDkl5ucfrNXB1nbsKDq688Hp920TZaoo,2287
|
146
|
+
instaui/components/transition_group.py,sha256=H9zx9NTlCoQnBArWfmxmh7CMKb5hZn8vKrFe4OFxPrE,201
|
147
|
+
instaui/components/value_element.py,sha256=wRIAaR3_Cq9qLNJw2KPhWt7dJmclj1mrttzlGpb01Y0,1412
|
148
|
+
instaui/components/vfor.py,sha256=A6hvCpmY-5oNZLnIs2yvfQ12C1-GggKVAthqhi5E4lY,4031
|
149
|
+
instaui/components/vif.py,sha256=2E62-8J9NIlZDhvgIOuDwz0tLLb6VoJ1ji1K4okrapw,1165
|
150
|
+
instaui/consts.py,sha256=3le1YZTV2PM_jXgvEDWlBeGEJz8QIZ2StvA9MZpem_g,967
|
151
|
+
instaui/dependencies/component_dependency.py,sha256=V9L9YmM0_d1bQFMea3aH8qYG_mvGsAVPhmz0UHZa3PQ,672
|
152
|
+
instaui/dependencies/plugin_dependency.py,sha256=6u562ihKbiL3DE4hBrGjauS2nzYEC2glOVN0fwEVNVc,806
|
153
|
+
instaui/event/event_mixin.py,sha256=cN0Wh95e1wX183mGnGFm8BK_aEHWJ8WNx3Upy75mU_4,286
|
154
|
+
instaui/event/js_event.py,sha256=C6TS-sgHiUtCSAFpkDDaI1vKzc4F-ZA1zauf3GTiFX4,1780
|
155
|
+
instaui/event/web_event.py,sha256=ddb91alNOuafYt1xOPVADqCy36_CQN4r8EfgLpsxmBM,3207
|
156
|
+
instaui/experimental/__init__.py,sha256=mla0-czeN-1mBNReWSEnMLwBvERMVceQfHGAdCdlyR4,122
|
157
|
+
instaui/experimental/debug.py,sha256=UGUWgNZ3ShanpuxfuPdx52TgQrkO9hByABYMnPZEIiE,1325
|
158
|
+
instaui/experimental/link_sql/__init__.py,sha256=Us-KAILRDR19LrV8aCl0t4LFxtGxnctPwlYY82pjxwM,64
|
159
|
+
instaui/experimental/link_sql/_base.py,sha256=p94z9k3MelA24Ibl9STqnySWF-efha9Qjibg17yaXTI,556
|
160
|
+
instaui/experimental/link_sql/_duckdb.py,sha256=DnX2nWJnGBbt1BKncChxDT5zW5S3zJxE668tWdC_jvc,7284
|
161
|
+
instaui/experimental/link_sql/_types.py,sha256=KkGWUVE1WI36NA-z78FdjQvOCzzNwLUFDYrgHcWdCm8,262
|
162
|
+
instaui/experimental/link_sql/data_source.js,sha256=rFuEfKO3ajE-Xt_DHtGOmmZDxanXaBbss8UWk3H3kmo,1193
|
163
|
+
instaui/fastapi_server/_utils.py,sha256=MCqbebS4UkBOV8fp3Oy415Tvxnqi2mnMl5Eqe6yJogg,1177
|
164
|
+
instaui/fastapi_server/_uvicorn.py,sha256=n-es5ajWepXb6xF9EP0ft2lrEbsyLGWMUE7uVqpkUAs,1174
|
165
|
+
instaui/fastapi_server/debug_mode_router.py,sha256=EcYtPxI4FMnUqZcn-CZhZiMLgciHVNZpSRfiSIDRChc,1547
|
166
|
+
instaui/fastapi_server/dependency_router.py,sha256=pvqL4qozwoJtZoFp34dw-VJkzGjUra0NVf12Phe0iV8,591
|
167
|
+
instaui/fastapi_server/event_router.py,sha256=_b0UNaPiwGwk7ElcF7XQnZfraPyWG2Miv9-wg-RI-PU,1648
|
168
|
+
instaui/fastapi_server/middlewares.py,sha256=XyXjdGjH5hJ47ZK8EBeOln4Db1rfRijZpEGl3xmYQqU,643
|
169
|
+
instaui/fastapi_server/request_context.py,sha256=EV5ZG4zgI_NPlTxinqO4AIREj6rbb1-HcjKCMa2Unfs,521
|
170
|
+
instaui/fastapi_server/resource.py,sha256=2788yiuRjE3GRLqyukuL-x6qN0TSUNzNCm6S51ulNTk,887
|
171
|
+
instaui/fastapi_server/server.py,sha256=6NvpWg6CkCjGK21-Pj1WDLI3YjA0nBBNS2v2_vPPiyc,9892
|
172
|
+
instaui/fastapi_server/watch_router.py,sha256=KC8AbGNpH2x11PHQMPgc9N5WOlqW05i6r0PTU5A35rI,1599
|
173
|
+
instaui/handlers/_utils.py,sha256=EB5mTb6flhMeuwm2Byb5jp18WqMngOuv3jC_PmycrA0,2076
|
174
|
+
instaui/handlers/event_handler.py,sha256=hjxi_nDh0yjk9EmRgew1USXk-Egd4pR8YnUiOcJbbnc,1761
|
175
|
+
instaui/handlers/watch_handler.py,sha256=Ay4lubEdRnZcWSqWLwxQyS_uWiF0gu-E9PrNGCAHvL0,1600
|
176
|
+
instaui/html_tools.py,sha256=VJDnOdPPDzXi_u6bMj5_fqdFjGXG3-HgXQsvD0gfauc,2577
|
177
|
+
instaui/inject.py,sha256=NeTcsxoPdo12kZCvGjFU9NNHsVWnsPJfIcNY5_sPGYc,727
|
178
|
+
instaui/js/__init__.py,sha256=oIYLPskHpQf8a4SWHLX4DyKjrlDrqWaqbNksIQsLBoA,69
|
179
|
+
instaui/js/js_output.py,sha256=a4tZ99P19oen4510qI9LWX6pX0-lH5y37v8va6UY62Y,382
|
180
|
+
instaui/js/lambda_func.py,sha256=ulCJ1lzF4h3jGihVTwltS3xEDPbTegjzIN8Al7U4Ank,1004
|
181
|
+
instaui/launch_collector.py,sha256=_YmF3hsNWe-ZxMp_amqUBHkhB6fOuTPfX16BVwn25xg,1731
|
182
|
+
instaui/page_info.py,sha256=aJtfLp2h05tCuLzxk2pZ6a9ztyxSdI-g3NBRxbqpS6E,269
|
183
|
+
instaui/runtime/__init__.py,sha256=4aYTDsKaloRMQns8ttdfSx5xLmcN0Ot6tMqELbjIDZg,667
|
184
|
+
instaui/runtime/_app.py,sha256=tF2rb_4SC6cMYTriDYUKRfroAK6tn5PFLEEXyogClmI,7340
|
185
|
+
instaui/runtime/_inner_helper.py,sha256=Aw7S_KtCuOlpd8NP2RuQvNTL1GJtpxQGLsKdc3VXQFY,326
|
186
|
+
instaui/runtime/_link_manager.py,sha256=sVdqm3gdCl6i9UXa8WwckfYVf1vmESm7hvdagT_-OZI,2271
|
187
|
+
instaui/runtime/context.py,sha256=MXwyKnX1X13peHOUbYzwAMflaA1WoQrNkGbi5C_0ErU,1086
|
188
|
+
instaui/runtime/dataclass.py,sha256=dr3hN4YjFXPzckRX9HR87t1-gPjT9RNq9YV-0uJnjHo,587
|
189
|
+
instaui/runtime/resource.py,sha256=8I47HZHRHIzIDrYcfSiHA2RWwb3-ZIsVFMsat8jgV-8,2363
|
190
|
+
instaui/runtime/scope.py,sha256=Zll4jyhQtaJt2Z9mhonl0c5pnkBlA5R0n0oWsz8VoQU,4660
|
191
|
+
instaui/runtime/ui_state_scope.py,sha256=g48VpQj0BboooUrPr5VIWvcQoJe0bIQARMwRyVEE0I8,314
|
192
|
+
instaui/settings/__init__.py,sha256=nK_xDrlq7CPjm9x3EKsKUW5qWBg_1d-xbqAp_i5G8cc,70
|
193
|
+
instaui/settings/__settings.py,sha256=DWzRvs9bBqjoNA2MvGAyz3GRrSV8H6lMLF1H3iJyoyA,385
|
194
|
+
instaui/shadcn_classless/_index.py,sha256=8gjLIh4J1ezFsQr3hvqS76gY_nhdgiNpexY-ENgfReY,1088
|
195
|
+
instaui/shadcn_classless/static/shadcn-classless.css,sha256=3-DIG6JLQ5sZJekpxB2M3ZMgv4V5kBY7lcR6qZwgHuM,10473
|
196
|
+
instaui/skip.py,sha256=uqhqusgeChVoivKFMoZd-XePYrlSoLvUzRZDBcUgFmA,149
|
197
|
+
instaui/spa_router/__init__.py,sha256=DGSf0YD6wZFj22kmPSyJWUmm_Lx3_YFg32iOa096T7Y,519
|
198
|
+
instaui/spa_router/_components.py,sha256=vPo4JuRtbD_5ll0LkGwU1p8l_pxNfCSdFLDzMXsoEpw,896
|
199
|
+
instaui/spa_router/_file_base_utils.py,sha256=jcT9QoNu_ILhoI3JYhEA2JvINOg3PgWFa0d0IgysAa8,8697
|
200
|
+
instaui/spa_router/_functions.py,sha256=6EDwXLHnmRrB_CUcbRNPblfOUPF8orob9PXrWm2RfSI,3227
|
201
|
+
instaui/spa_router/_install.py,sha256=X9p7wtuGxo6B5F47UTY4ndOSRzENXkoK1XdkNo3F_YA,291
|
202
|
+
instaui/spa_router/_route_model.py,sha256=x54tqunkVQSbBKpELiSwcDdBDUzDXFbJl_o6eSu7M7A,4057
|
203
|
+
instaui/spa_router/_router_box.py,sha256=Ez0vWWEYH_FHuFDvcAVhhfrlMRnDpT0_7tjmMZRMWZg,1163
|
204
|
+
instaui/spa_router/_router_output.py,sha256=Nc6N8yO_9IrUbaYbPZMkOX_9VlwBKzyXMahaPp5GFGg,528
|
205
|
+
instaui/spa_router/_router_param_var.py,sha256=KCy54xBZxGMqLO3Zlbzr6XV8ts-M6jCOKunL2gz5IUc,1455
|
206
|
+
instaui/spa_router/_types.py,sha256=KuGuv5C6qivwllfdmV5qrvM0S_GWJ6u8OOTkCNmJImU,81
|
207
|
+
instaui/spa_router/templates/page_routes,sha256=8VjM_8f6pjFb01QbU9z5HNqpcNRdCiX3X0OqNHLq8fo,1355
|
208
|
+
instaui/static/insta-ui.css,sha256=9R3LRWKUiip75STPyqZzabt2vKqrYgmWyBZg8OeF02k,273
|
209
|
+
instaui/static/insta-ui.esm-browser.prod.js,sha256=DbPvdWTQ3MK-U9uXB3gZrkrxagnEkrry33lfH4cS3PM,104663
|
210
|
+
instaui/static/insta-ui.ico,sha256=08FJg4qWolvOjfodoh8IJLStslrvd8sDyuRcTUDq5ak,1150
|
211
|
+
instaui/static/insta-ui.js.map,sha256=Ws0j4F0Y0p3FH8A8qhyCT3EVZUps6T76-C3tT87CjX4,658301
|
212
|
+
instaui/static/instaui-tools-browser.js,sha256=cLHKNXYaYMZriMxV-yKGAHTrHSdNRUlDVZmv6uc6mMw,14455
|
213
|
+
instaui/static/templates/debug/sse.html,sha256=qw5pzfjbU_XM-hA_SJCt2F8Imbvp17tW5l2dwoSZYjY,3391
|
214
|
+
instaui/static/templates/web.html,sha256=pCHoQIPUO03GX_aZ5zNjRYQC9b0GPFtoYE9P8eo5pHc,1789
|
215
|
+
instaui/static/templates/webview.html,sha256=9zQB7wkYKSgHh866Dk3xqSYbcWhCMCaVuh9iM8TFnhg,1862
|
216
|
+
instaui/static/templates/zero.html,sha256=_PHhx6uYD__tlt_bXG4j1WoZGnMBXIs2w2sU6-1zvH4,1684
|
217
|
+
instaui/static/vue.esm-browser.prod.js,sha256=vwQkXANuVYQuEFc0VgiokJdhNyMmvxMKyb1FmrYrNb4,162662
|
218
|
+
instaui/static/vue.global.prod.js,sha256=xFm6fMjbZcmCWJ-l1kx_9HiHfo5bD9dWgyB87GpOieg,157924
|
219
|
+
instaui/static/vue.runtime.esm-browser.prod.js,sha256=74FfP_s9pycfQXWAiGWx6SbjV_oJvMwZLFBkEXeW1Ek,102024
|
220
|
+
instaui/systems/file_system.py,sha256=q8k_mSHhldkSRYXT73T9s8zvERZZo9HL1U2-4mwau-I,163
|
221
|
+
instaui/systems/func_system.py,sha256=iEnskq2vE4TUekJhMLc9hvv-iiougkxi1qXbvSEGovs,2806
|
222
|
+
instaui/systems/js_system.py,sha256=t_r7SFPmfvTiIrxzuf1YgHyi_Oi_81W0UH_kkC5MwmM,685
|
223
|
+
instaui/systems/module_system.py,sha256=6qeR1K1vxocezBGPX5yecLVygqjzHNeDtlJTwJO9Szs,937
|
224
|
+
instaui/systems/pydantic_system.py,sha256=qibHh4QqjLNPBzyrCkJVJwCk1dC_H8gEDYYf8Sb-5ps,691
|
225
|
+
instaui/systems/string_system.py,sha256=NzB7rgy7BZAYXAYDEWJQSvuYNui2TbLbrc9itVZGLmE,247
|
226
|
+
instaui/tailwind/__init__.py,sha256=HNexMZAMG2c0QtkX3oNXmpWnyWDuJPrxuq5IBGvcjVs,75
|
227
|
+
instaui/tailwind/_index.py,sha256=Ck8ucB7MrLWYOXZ9HGThDUmNI57596heOEXuU5GSU8U,810
|
228
|
+
instaui/tailwind/static/tailwindcss-v3.min.js,sha256=wmOuJX6oR7byZau-Zp2CDXhM6BVK5ZXN55tgExAV4ew,366390
|
229
|
+
instaui/tailwind/static/tailwindcss-v4.min.js,sha256=9Ob5VKFT6th87AlCG5pJ90ICCZSsnemVuQ1TzyS2zk4,250319
|
230
|
+
instaui/template/__init__.py,sha256=fuua3uCOCmhWb7Q6Sc6pUxfwlxYJTXkdWB1V2fubyyc,141
|
231
|
+
instaui/template/_utils.py,sha256=wNIGDWr3z2PpmKsgShYISbCnII4AbKfsLIX_DRWlRbU,670
|
232
|
+
instaui/template/env.py,sha256=ZqVsqpfSY1mupbgpBSkvOJytNui8xfNR5kNNC9rv4Ps,150
|
233
|
+
instaui/template/web_template.py,sha256=BmZY13q4E_ZP4YVgfBKbbXvPHcGZfOl2f54wp_0DjJA,1603
|
234
|
+
instaui/template/webview_template.py,sha256=AWDtsk-CbBOissWjIzjq-0gd8iVjKW7mjs70iGXmNcU,1629
|
235
|
+
instaui/template/zero_template.py,sha256=E88VGsyjb1qbHFJlMW-xmLRFkwUXZA7VDoZ_Jd8YubA,3514
|
236
|
+
instaui/ui/__init__.py,sha256=svj4zXW2uUzfNJBbs6yjXRemDvKQqIgeaakcVuTmLTQ,4167
|
237
|
+
instaui/ui/__init__.pyi,sha256=GTxfZRHVkwbbY1hGukp48qSPUY69QakxJxBll54dcpc,4071
|
238
|
+
instaui/ui/events.py,sha256=lfhiINwn-Kh0MezsSeLJPttWm6G1aWiwyk3TRo0NrlA,809
|
239
|
+
instaui/ui_functions/input_slient_data.py,sha256=0A5DegIt_MqdZgbj1RiVFNmB_RUqgov9FYtkw6VX0DE,511
|
240
|
+
instaui/ui_functions/server.py,sha256=B4w8KwBUMGStY19uUG8E4vRG7-L4cedttLkh35xr698,357
|
241
|
+
instaui/ui_functions/str_format.py,sha256=ECWttA4LlNHlvdT_73wGF_I68soWNEXTP_Hosmxt-m4,1139
|
242
|
+
instaui/ui_functions/ui_page.py,sha256=2JeBpXJ0xb4OG88l6xagynlE76OzGRzdEthP_Jw4Jbg,363
|
243
|
+
instaui/ui_functions/ui_types.py,sha256=J5tqFFkoZJMuoLeTqU52KNgw3kdB_IfcrhaBmyI6NAA,505
|
244
|
+
instaui/ui_functions/url_location.py,sha256=zyTAJpA-3GBBe7WAiP2IDKQxeQhu0LNgBOxwEzcDaDk,823
|
245
|
+
instaui/vars/__init__.py,sha256=yR-gU9FPEYUjWD7CS3RKT0JeAEuF2EPG99AwXFiLhAg,250
|
246
|
+
instaui/vars/_types.py,sha256=wthCk1fcxj1SZ5y6b84W9gFpoi8j2PYnfmaPj4Am72s,308
|
247
|
+
instaui/vars/data.py,sha256=uxDN-Xa5wO-_QFZYkiYOACnb9Ve8yODSFNIUs-S_E0I,1768
|
248
|
+
instaui/vars/element_ref.py,sha256=qC-Kb1hBGz_Y6WKjKxRvYR8jdvWW4VeAAGzJ2wSrGgI,1059
|
249
|
+
instaui/vars/event_context.py,sha256=3ML6nyF6Q1hbFvdeu6E2QVOIVcWe1P9FtlCR0dgBGjo,1308
|
250
|
+
instaui/vars/event_extend.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
251
|
+
instaui/vars/js_computed.py,sha256=hZtU7XXmr1GAx118k9QyFWJnxpQPx5P7DWSfif2nfns,2712
|
252
|
+
instaui/vars/mixin_types/common_type.py,sha256=4KduANLCUCeGTA1ClEsbFzEzd8Mgve3693Wxf9H7Gmw,176
|
253
|
+
instaui/vars/mixin_types/element_binding.py,sha256=4suqqLT3zn5y7LvqVo2QrEgI1uUFS_5sv8vtTUCzkTc,235
|
254
|
+
instaui/vars/mixin_types/observable.py,sha256=h2cox7BwQtLOWqCTaWnNU0TsgYJKuoNUuuEqwj-KXpU,141
|
255
|
+
instaui/vars/mixin_types/pathable.py,sha256=40H5f1gCDtKs4Qor0C-moB821T7Df8DOgUcntjxgums,302
|
256
|
+
instaui/vars/mixin_types/py_binding.py,sha256=VIVSrHrjcltsP5ADKHtMSZBpi2qKyameXqoEevdfqk8,237
|
257
|
+
instaui/vars/mixin_types/str_format_binding.py,sha256=i2jXm1RKddPnGrCxEyz0tkDrBU2FfjR0EviQ0RKZsbY,257
|
258
|
+
instaui/vars/mixin_types/var_type.py,sha256=FQj1TEkjT7HopDPztt0-J6eQVGHjem3KBFsjZwvcvYg,57
|
259
|
+
instaui/vars/path_var.py,sha256=DOgYHoajWKcMHMKYMSBiEOA99mmHIaMH-HRDvAKTZyE,2820
|
260
|
+
instaui/vars/ref.py,sha256=iMwKRYI8ygy2cOpXJgqUYJCpzJCQskDl4lRYTACZWnA,2567
|
261
|
+
instaui/vars/slot_prop.py,sha256=qBVQ0Ze0T8-Wsy__8qEuqVESIrLX69Bmy21Kuxrg_GQ,1198
|
262
|
+
instaui/vars/state.py,sha256=N6yLcVkiyCpK5oR8C2KbggFmLwpgBgzylp11JgFiab8,2630
|
263
|
+
instaui/vars/types.py,sha256=K0QTajlzHaDvFoVMCHAhY_rVvrBm3FsC92BFPOgdBog,511
|
264
|
+
instaui/vars/vfor_item.py,sha256=cVrpErh8OrycYjDLm7PTuE2kIcC2M6ThAQlwvTXG8x0,5490
|
265
|
+
instaui/vars/vue_computed.py,sha256=6ZpxCQc2TJfh0vxTxcj6yNPjTVPo3CmsHq028xtiv8Y,2416
|
266
|
+
instaui/vars/web_computed.py,sha256=JyWkCN3NHNCxp2QcSm3gRdgd64XOUG_zaLW6zABrFjY,4363
|
267
|
+
instaui/vars/web_view_computed.py,sha256=bFFVE9jRKczNy4HhmegWoC6KOL_Nrej-ag37DAIDzaA,36
|
268
|
+
instaui/version.py,sha256=to8l16EjNe4jmzK316s5ZIotjv554tqF0VfwA1tBhQk,87
|
269
|
+
instaui/watch/_types.py,sha256=HJ_eAID0NsEJ_S8PhcYWxpVWhYLjjqKlbNWwqdqS4IU,73
|
270
|
+
instaui/watch/_utils.py,sha256=mTITHG8hp0pyfQXUERQKXMDna5Au02bhuASCV32eXHI,124
|
271
|
+
instaui/watch/js_watch.py,sha256=k9lgtyUGZ8a549QITcNie2kGbT0BJuYqfouoOex0Dqs,2182
|
272
|
+
instaui/watch/vue_watch.py,sha256=Vd3nsRyf9ufrXLFTjaSvglwnkoWyE32fOV0qOogWPt4,2013
|
273
|
+
instaui/watch/web_watch.py,sha256=6VOeXPHQM6UcCaOnrsZ-c5AiCNaUqL5nOkw4-G_2frE,3728
|
274
|
+
instaui/webview/__init__.py,sha256=1yUBPkgYvuQk9cDYXzGE9WcUHyM0Af8Er632GtgQeuo,35
|
275
|
+
instaui/webview/_utils.py,sha256=pqARVv37h-8p7CLOpvqLV8O_az4EV2VD9G-beUVqjD8,172
|
276
|
+
instaui/webview/api.py,sha256=9xuG3EKpmOOy1dvIrS9C9z9ukQDRnIdZLrGFD5FLyvU,2071
|
277
|
+
instaui/webview/func.py,sha256=Igrf7U5qL5jJvhwIRJ3JqRjXxX_S2O_nQ9oy1HLFtYo,3422
|
278
|
+
instaui/webview/index.py,sha256=0uUU2addq2Bu4Cb41iYSvVzLsJXWzzEI5vzb7rzIc0o,5821
|
279
|
+
instaui/webview/resource.py,sha256=kFT6N5UZK5GLE0KmW3TrEYDNlViw9DL2OshRh41wBXs,5566
|
280
|
+
instaui/zero/__init__.py,sha256=N0LuRUAcaurxHSspcEDuwZg62W2S3qL4VtrMKxOivBE,49
|
281
|
+
instaui/zero/func.py,sha256=8cA_wJMtRmoAARjWY8yY5MmLXDAQ7hyVW6f1Vbejtoc,3576
|
282
|
+
instaui/zero/scope.py,sha256=HGohYOqnpRGVkkoz_gvR6-DgCc48AtJAcDwbOnnGHLM,3753
|
283
|
+
instaui-0.1.6.dist-info/LICENSE,sha256=_JjnAWrikJ6qkwT7PazeFNRlcIu8q_RH3mYcHTxEF5c,1094
|
284
|
+
instaui-0.1.6.dist-info/METADATA,sha256=ztDw7jTs04ieDWynNLuO7mmf7tORrao4ThU51OhU4ic,3636
|
285
|
+
instaui-0.1.6.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
286
|
+
instaui-0.1.6.dist-info/RECORD,,
|
@@ -1,63 +0,0 @@
|
|
1
|
-
import { h, onMounted, ref, computed, watch } from "vue";
|
2
|
-
import hljs from 'highlight.js/lib/core.min.js'
|
3
|
-
|
4
|
-
async function registerLanguage(language) {
|
5
|
-
const langModule = await import(`highlight.js/languages/${language}.min.js`);
|
6
|
-
hljs.registerLanguage(language, langModule.default);
|
7
|
-
}
|
8
|
-
|
9
|
-
|
10
|
-
export default {
|
11
|
-
props: ['code', 'language'],
|
12
|
-
setup(props) {
|
13
|
-
const language = ref(props.language ?? hljs.getLanguage(props.code))
|
14
|
-
|
15
|
-
watch(() => props.language, (newLanguage) => {
|
16
|
-
language.value = newLanguage
|
17
|
-
})
|
18
|
-
|
19
|
-
watch(language, async (newLanguage) => {
|
20
|
-
ready.value = false
|
21
|
-
await registerLanguage(language.value)
|
22
|
-
ready.value = true
|
23
|
-
})
|
24
|
-
|
25
|
-
const ready = ref(false)
|
26
|
-
|
27
|
-
onMounted(async () => {
|
28
|
-
await registerLanguage(language.value)
|
29
|
-
ready.value = true
|
30
|
-
})
|
31
|
-
|
32
|
-
const highlightedCode = computed(() => {
|
33
|
-
if (!ready.value) {
|
34
|
-
return ''
|
35
|
-
}
|
36
|
-
|
37
|
-
if (!language.value) {
|
38
|
-
const result = hljs.highlightAuto(props.code)
|
39
|
-
return result.value
|
40
|
-
}
|
41
|
-
|
42
|
-
const result = hljs.highlight(props.code, { language: language.value })
|
43
|
-
return result.value
|
44
|
-
})
|
45
|
-
|
46
|
-
const classes = computed(() => {
|
47
|
-
if (!ready.value) {
|
48
|
-
return ''
|
49
|
-
}
|
50
|
-
|
51
|
-
return `hljs language-${language.value}`
|
52
|
-
|
53
|
-
})
|
54
|
-
|
55
|
-
|
56
|
-
return () => h("div", { class: classes.value },
|
57
|
-
h('pre', {},
|
58
|
-
h('code', { innerHTML: highlightedCode.value }))
|
59
|
-
);
|
60
|
-
}
|
61
|
-
|
62
|
-
}
|
63
|
-
|
@@ -1,117 +0,0 @@
|
|
1
|
-
from pathlib import Path
|
2
|
-
from typing import ClassVar, Iterable, List, Union
|
3
|
-
from warnings import warn
|
4
|
-
from instaui import ui
|
5
|
-
from instaui.runtime import get_app_slot
|
6
|
-
|
7
|
-
_STATIC_DIR = Path(__file__).parent / "static"
|
8
|
-
_STYLES_DIR = _STATIC_DIR / "styles"
|
9
|
-
_LANGUAGE_DIR = _STATIC_DIR / "languages"
|
10
|
-
_CORE_JS_FILE = _STATIC_DIR / "core.min.js"
|
11
|
-
|
12
|
-
_LANGUAGE_IMPORT_NAME = "highlight.js/languages/"
|
13
|
-
_CORE_JS_IMPORT_NAME_ZERO_MODE = "highlight.js/lib/core.min.js"
|
14
|
-
|
15
|
-
_IMPORT_MAPS = {
|
16
|
-
"highlight.js/lib/": _STATIC_DIR,
|
17
|
-
_LANGUAGE_IMPORT_NAME: _LANGUAGE_DIR,
|
18
|
-
}
|
19
|
-
|
20
|
-
|
21
|
-
class Code(
|
22
|
-
ui.element,
|
23
|
-
esm="./code.js",
|
24
|
-
externals=_IMPORT_MAPS,
|
25
|
-
css=[_STYLES_DIR],
|
26
|
-
):
|
27
|
-
_language_folder: ClassVar[Path] = _LANGUAGE_DIR
|
28
|
-
|
29
|
-
def __init__(
|
30
|
-
self,
|
31
|
-
code: ui.TMaybeRef[str],
|
32
|
-
*,
|
33
|
-
language: ui.TMaybeRef[str] = "python",
|
34
|
-
theme: str = "default",
|
35
|
-
):
|
36
|
-
super().__init__()
|
37
|
-
self.props({"code": code})
|
38
|
-
|
39
|
-
mode = get_app_slot().mode
|
40
|
-
|
41
|
-
if language:
|
42
|
-
self.props({"language": language})
|
43
|
-
|
44
|
-
if mode == "zero":
|
45
|
-
_try_update_dependencies_by_zero(self, language)
|
46
|
-
|
47
|
-
self.update_dependencies(css=[_STYLES_DIR / f"{theme}.min.css"])
|
48
|
-
|
49
|
-
@classmethod
|
50
|
-
def reset_language_folder(cls, folder: Path):
|
51
|
-
"""Reset the language folder for all js files.
|
52
|
-
|
53
|
-
Args:
|
54
|
-
folder (Path): The new language folder.
|
55
|
-
|
56
|
-
Examples
|
57
|
-
.. code-block:: python
|
58
|
-
from instaui import ui
|
59
|
-
|
60
|
-
# must be called outside of page function
|
61
|
-
ui.code.reset_language_folder(Path("my_lang_folder"))
|
62
|
-
"""
|
63
|
-
assert cls.dependency
|
64
|
-
cls.dependency.externals.update({_LANGUAGE_IMPORT_NAME: folder})
|
65
|
-
cls._language_folder = folder
|
66
|
-
|
67
|
-
@classmethod
|
68
|
-
def specified_language_by_zero_mode(
|
69
|
-
cls, folder_or_files: Union[Path, Iterable[Path]]
|
70
|
-
):
|
71
|
-
"""Specify the language files for zero mode.
|
72
|
-
|
73
|
-
Args:
|
74
|
-
folder_or_files (Union[Path, Iterable[Path]]): The folder or files to be imported.
|
75
|
-
|
76
|
-
Examples
|
77
|
-
.. code-block:: python
|
78
|
-
from instaui import ui,zero
|
79
|
-
|
80
|
-
def page():
|
81
|
-
...
|
82
|
-
|
83
|
-
with zero() as z:
|
84
|
-
ui.code.specified_language_by_zero_mode(Path("my_lang_folder"))
|
85
|
-
page()
|
86
|
-
"""
|
87
|
-
if not isinstance(folder_or_files, Iterable):
|
88
|
-
is_dir = folder_or_files.is_dir()
|
89
|
-
files = (
|
90
|
-
list(folder_or_files.glob("*.min.js")) if is_dir else [folder_or_files]
|
91
|
-
)
|
92
|
-
|
93
|
-
else:
|
94
|
-
files = folder_or_files
|
95
|
-
|
96
|
-
externals = {}
|
97
|
-
for file in files:
|
98
|
-
language = file.stem
|
99
|
-
externals[f"{_LANGUAGE_IMPORT_NAME}{language}.min.js"] = file
|
100
|
-
|
101
|
-
cls.dependency.externals.update(externals) # type: ignore
|
102
|
-
|
103
|
-
|
104
|
-
def _try_update_dependencies_by_zero(code: Code, language: ui.TMaybeRef[str]):
|
105
|
-
if isinstance(language, str):
|
106
|
-
code.update_dependencies(
|
107
|
-
externals={
|
108
|
-
f"{_LANGUAGE_IMPORT_NAME}{language}.min.js": code._language_folder
|
109
|
-
/ f"{language}.min.js",
|
110
|
-
_CORE_JS_IMPORT_NAME_ZERO_MODE: _CORE_JS_FILE,
|
111
|
-
}
|
112
|
-
)
|
113
|
-
else:
|
114
|
-
warn(
|
115
|
-
"language must be a string in zero mode , or you can call specified_language_by_zero_mode() to specify the language files",
|
116
|
-
stacklevel=2,
|
117
|
-
)
|