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.
Files changed (283) hide show
  1. instaui/__init__.py +9 -0
  2. instaui/_helper/observable_helper.py +45 -0
  3. instaui/arco/__init__.py +191 -0
  4. instaui/arco/_settings.py +25 -0
  5. instaui/arco/_use_tools/locale.py +50 -0
  6. instaui/arco/component_types.py +1019 -0
  7. instaui/arco/components/_utils.py +22 -0
  8. instaui/arco/components/affix.py +29 -0
  9. instaui/arco/components/alert.py +42 -0
  10. instaui/arco/components/anchor.py +42 -0
  11. instaui/arco/components/auto_complete.py +96 -0
  12. instaui/arco/components/avatar.py +55 -0
  13. instaui/arco/components/back_top.py +14 -0
  14. instaui/arco/components/badge.py +14 -0
  15. instaui/arco/components/breadcrumb.py +14 -0
  16. instaui/arco/components/button.py +43 -0
  17. instaui/arco/components/calendar.py +47 -0
  18. instaui/arco/components/card.py +14 -0
  19. instaui/arco/components/carousel.py +33 -0
  20. instaui/arco/components/cascader.py +111 -0
  21. instaui/arco/components/checkbox.py +32 -0
  22. instaui/arco/components/collapse.py +31 -0
  23. instaui/arco/components/color_picker.py +45 -0
  24. instaui/arco/components/comment.py +14 -0
  25. instaui/arco/components/config_provider.py +13 -0
  26. instaui/arco/components/date_picker.py +111 -0
  27. instaui/arco/components/descriptions.py +14 -0
  28. instaui/arco/components/divider.py +13 -0
  29. instaui/arco/components/drawer.py +98 -0
  30. instaui/arco/components/dropdown.py +45 -0
  31. instaui/arco/components/empty.py +14 -0
  32. instaui/arco/components/form.py +55 -0
  33. instaui/arco/components/icon.py +17 -0
  34. instaui/arco/components/image.py +33 -0
  35. instaui/arco/components/input.py +102 -0
  36. instaui/arco/components/input_number.py +97 -0
  37. instaui/arco/components/input_password.py +38 -0
  38. instaui/arco/components/input_search.py +37 -0
  39. instaui/arco/components/input_tag.py +110 -0
  40. instaui/arco/components/layout.py +13 -0
  41. instaui/arco/components/layout_content.py +6 -0
  42. instaui/arco/components/layout_footer.py +6 -0
  43. instaui/arco/components/layout_header.py +6 -0
  44. instaui/arco/components/layout_sider.py +53 -0
  45. instaui/arco/components/link.py +36 -0
  46. instaui/arco/components/list.py +68 -0
  47. instaui/arco/components/mention.py +97 -0
  48. instaui/arco/components/menu.py +88 -0
  49. instaui/arco/components/modal.py +97 -0
  50. instaui/arco/components/overflow_list.py +29 -0
  51. instaui/arco/components/page_header.py +29 -0
  52. instaui/arco/components/pagination.py +45 -0
  53. instaui/arco/components/pop_confirm.py +58 -0
  54. instaui/arco/components/popover.py +32 -0
  55. instaui/arco/components/progress.py +14 -0
  56. instaui/arco/components/radio.py +40 -0
  57. instaui/arco/components/radio_group.py +42 -0
  58. instaui/arco/components/rate.py +45 -0
  59. instaui/arco/components/resize_box.py +62 -0
  60. instaui/arco/components/result.py +14 -0
  61. instaui/arco/components/select.py +182 -0
  62. instaui/arco/components/skeleton.py +14 -0
  63. instaui/arco/components/slider.py +38 -0
  64. instaui/arco/components/space.py +14 -0
  65. instaui/arco/components/spin.py +14 -0
  66. instaui/arco/components/split.py +76 -0
  67. instaui/arco/components/statistic.py +14 -0
  68. instaui/arco/components/steps.py +32 -0
  69. instaui/arco/components/switch.py +57 -0
  70. instaui/arco/components/tab_pane.py +12 -0
  71. instaui/arco/components/table.py +276 -0
  72. instaui/arco/components/tabs.py +101 -0
  73. instaui/arco/components/tag.py +42 -0
  74. instaui/arco/components/textarea.py +84 -0
  75. instaui/arco/components/time_picker.py +76 -0
  76. instaui/arco/components/timeline.py +14 -0
  77. instaui/arco/components/tooltip.py +29 -0
  78. instaui/arco/components/transfer.py +58 -0
  79. instaui/arco/components/tree.py +120 -0
  80. instaui/arco/components/tree_select.py +86 -0
  81. instaui/arco/components/trigger.py +58 -0
  82. instaui/arco/components/typography.py +142 -0
  83. instaui/arco/components/upload.py +71 -0
  84. instaui/arco/components/verification_code.py +58 -0
  85. instaui/arco/components/watermark.py +14 -0
  86. instaui/arco/locales/__init__.py +4 -0
  87. instaui/arco/locales/_index.py +31 -0
  88. instaui/arco/locales/en_us.py +227 -0
  89. instaui/arco/locales/zh_cn.py +224 -0
  90. instaui/arco/setup.py +36 -0
  91. instaui/arco/static/instaui-arco.css +1 -0
  92. instaui/arco/static/instaui-arco.js +55771 -0
  93. instaui/arco/types.py +24 -0
  94. instaui/boot_info.py +43 -0
  95. instaui/common/jsonable.py +37 -0
  96. instaui/components/__init__.py +0 -0
  97. instaui/components/column.py +26 -0
  98. instaui/components/component.py +47 -0
  99. instaui/components/content.py +34 -0
  100. instaui/components/directive.py +55 -0
  101. instaui/components/element.py +573 -0
  102. instaui/components/grid.py +213 -0
  103. instaui/components/html/__init__.py +49 -0
  104. instaui/components/html/_mixins.py +34 -0
  105. instaui/components/html/_preset.py +4 -0
  106. instaui/components/html/button.py +38 -0
  107. instaui/components/html/checkbox.py +35 -0
  108. instaui/components/html/date.py +28 -0
  109. instaui/components/html/div.py +7 -0
  110. instaui/components/html/form.py +7 -0
  111. instaui/components/html/heading.py +51 -0
  112. instaui/components/html/input.py +28 -0
  113. instaui/components/html/label.py +21 -0
  114. instaui/components/html/li.py +17 -0
  115. instaui/components/html/link.py +31 -0
  116. instaui/components/html/number.py +34 -0
  117. instaui/components/html/paragraph.py +29 -0
  118. instaui/components/html/range.py +48 -0
  119. instaui/components/html/select.py +69 -0
  120. instaui/components/html/span.py +19 -0
  121. instaui/components/html/table.py +36 -0
  122. instaui/components/html/textarea.py +28 -0
  123. instaui/components/html/ul.py +20 -0
  124. instaui/components/label.py +5 -0
  125. instaui/components/markdown/markdown.js +33 -0
  126. instaui/components/markdown/markdown.py +41 -0
  127. instaui/components/markdown/static/github-markdown.css +12 -0
  128. instaui/components/markdown/static/marked.esm.js +2579 -0
  129. instaui/components/match.py +108 -0
  130. instaui/components/row.py +17 -0
  131. instaui/components/shiki_code/shiki_code.js +126 -0
  132. instaui/components/shiki_code/shiki_code.py +99 -0
  133. instaui/components/shiki_code/static/langs/css.mjs +5 -0
  134. instaui/components/shiki_code/static/langs/markdown.mjs +5 -0
  135. instaui/components/shiki_code/static/langs/python.mjs +5 -0
  136. instaui/components/shiki_code/static/langs/shell.mjs +2 -0
  137. instaui/components/shiki_code/static/langs/shellscript.mjs +5 -0
  138. instaui/components/shiki_code/static/shiki-core.js +5784 -0
  139. instaui/components/shiki_code/static/shiki-style.css +179 -0
  140. instaui/components/shiki_code/static/shiki-transformers.js +461 -0
  141. instaui/components/shiki_code/static/themes/vitesse-dark.mjs +2 -0
  142. instaui/components/shiki_code/static/themes/vitesse-light.mjs +2 -0
  143. instaui/components/slot.py +81 -0
  144. instaui/components/transition_group.py +9 -0
  145. instaui/components/value_element.py +52 -0
  146. instaui/components/vfor.py +142 -0
  147. instaui/components/vif.py +42 -0
  148. instaui/consts.py +23 -0
  149. instaui/dependencies/component_dependency.py +22 -0
  150. instaui/dependencies/plugin_dependency.py +28 -0
  151. instaui/event/event_mixin.py +12 -0
  152. instaui/event/js_event.py +82 -0
  153. instaui/event/vue_event.py +66 -0
  154. instaui/event/web_event.py +123 -0
  155. instaui/experimental/__init__.py +3 -0
  156. instaui/experimental/debug.py +48 -0
  157. instaui/extra_libs/_echarts.py +3 -0
  158. instaui/extra_libs/_import_error.py +9 -0
  159. instaui/extra_libs/_mermaid.py +3 -0
  160. instaui/extra_libs/_shiki_code.py +3 -0
  161. instaui/fastapi_server/_utils.py +42 -0
  162. instaui/fastapi_server/_uvicorn.py +37 -0
  163. instaui/fastapi_server/debug_mode_router.py +60 -0
  164. instaui/fastapi_server/dependency_router.py +28 -0
  165. instaui/fastapi_server/event_router.py +58 -0
  166. instaui/fastapi_server/middlewares.py +19 -0
  167. instaui/fastapi_server/request_context.py +19 -0
  168. instaui/fastapi_server/resource.py +30 -0
  169. instaui/fastapi_server/server.py +308 -0
  170. instaui/fastapi_server/watch_router.py +53 -0
  171. instaui/handlers/_utils.py +88 -0
  172. instaui/handlers/event_handler.py +60 -0
  173. instaui/handlers/watch_handler.py +61 -0
  174. instaui/html_tools.py +94 -0
  175. instaui/inject.py +33 -0
  176. instaui/js/__init__.py +4 -0
  177. instaui/js/js_output.py +15 -0
  178. instaui/js/lambda_func.py +35 -0
  179. instaui/launch_collector.py +52 -0
  180. instaui/page_info.py +13 -0
  181. instaui/runtime/__init__.py +29 -0
  182. instaui/runtime/_app.py +234 -0
  183. instaui/runtime/_inner_helper.py +9 -0
  184. instaui/runtime/_link_manager.py +89 -0
  185. instaui/runtime/context.py +47 -0
  186. instaui/runtime/dataclass.py +30 -0
  187. instaui/runtime/resource.py +65 -0
  188. instaui/runtime/scope.py +133 -0
  189. instaui/runtime/ui_state_scope.py +15 -0
  190. instaui/settings/__init__.py +4 -0
  191. instaui/settings/__settings.py +13 -0
  192. instaui/shadcn_classless/_index.py +42 -0
  193. instaui/shadcn_classless/static/shadcn-classless.css +403 -0
  194. instaui/skip.py +12 -0
  195. instaui/spa_router/__init__.py +26 -0
  196. instaui/spa_router/_components.py +35 -0
  197. instaui/spa_router/_file_base_utils.py +273 -0
  198. instaui/spa_router/_functions.py +122 -0
  199. instaui/spa_router/_install.py +11 -0
  200. instaui/spa_router/_route_model.py +117 -0
  201. instaui/spa_router/_router_box.py +40 -0
  202. instaui/spa_router/_router_output.py +22 -0
  203. instaui/spa_router/_router_param_var.py +51 -0
  204. instaui/spa_router/_types.py +4 -0
  205. instaui/spa_router/templates/page_routes +60 -0
  206. instaui/static/insta-ui.css +1 -0
  207. instaui/static/insta-ui.esm-browser.prod.js +3717 -0
  208. instaui/static/insta-ui.ico +0 -0
  209. instaui/static/insta-ui.js.map +1 -0
  210. instaui/static/instaui-tools-browser.js +511 -0
  211. instaui/static/templates/debug/sse.html +117 -0
  212. instaui/static/templates/web.html +74 -0
  213. instaui/static/templates/webview.html +78 -0
  214. instaui/static/templates/zero.html +71 -0
  215. instaui/static/vue.esm-browser.prod.js +9 -0
  216. instaui/static/vue.global.prod.js +9 -0
  217. instaui/static/vue.runtime.esm-browser.prod.js +5 -0
  218. instaui/systems/file_system.py +6 -0
  219. instaui/systems/func_system.py +119 -0
  220. instaui/systems/js_system.py +22 -0
  221. instaui/systems/module_system.py +46 -0
  222. instaui/systems/pydantic_system.py +27 -0
  223. instaui/systems/string_system.py +10 -0
  224. instaui/tailwind/__init__.py +6 -0
  225. instaui/tailwind/_index.py +24 -0
  226. instaui/tailwind/static/tailwindcss-v3.min.js +62 -0
  227. instaui/tailwind/static/tailwindcss-v4.min.js +8 -0
  228. instaui/template/__init__.py +4 -0
  229. instaui/template/_utils.py +23 -0
  230. instaui/template/env.py +7 -0
  231. instaui/template/web_template.py +49 -0
  232. instaui/template/webview_template.py +48 -0
  233. instaui/template/zero_template.py +105 -0
  234. instaui/ui/__init__.py +144 -0
  235. instaui/ui/__init__.pyi +149 -0
  236. instaui/ui/events.py +25 -0
  237. instaui/ui_functions/input_slient_data.py +16 -0
  238. instaui/ui_functions/server.py +15 -0
  239. instaui/ui_functions/str_format.py +36 -0
  240. instaui/ui_functions/ui_page.py +16 -0
  241. instaui/ui_functions/ui_types.py +13 -0
  242. instaui/ui_functions/url_location.py +33 -0
  243. instaui/vars/_types.py +8 -0
  244. instaui/vars/data.py +68 -0
  245. instaui/vars/element_ref.py +40 -0
  246. instaui/vars/event_context.py +49 -0
  247. instaui/vars/event_extend.py +0 -0
  248. instaui/vars/js_computed.py +117 -0
  249. instaui/vars/mixin_types/common_type.py +5 -0
  250. instaui/vars/mixin_types/element_binding.py +16 -0
  251. instaui/vars/mixin_types/observable.py +7 -0
  252. instaui/vars/mixin_types/pathable.py +14 -0
  253. instaui/vars/mixin_types/py_binding.py +13 -0
  254. instaui/vars/mixin_types/str_format_binding.py +8 -0
  255. instaui/vars/mixin_types/var_type.py +5 -0
  256. instaui/vars/path_var.py +90 -0
  257. instaui/vars/ref.py +103 -0
  258. instaui/vars/slot_prop.py +46 -0
  259. instaui/vars/state.py +97 -0
  260. instaui/vars/types.py +24 -0
  261. instaui/vars/vfor_item.py +204 -0
  262. instaui/vars/vue_computed.py +81 -0
  263. instaui/vars/web_computed.py +209 -0
  264. instaui/vars/web_view_computed.py +1 -0
  265. instaui/version.py +3 -0
  266. instaui/watch/_types.py +4 -0
  267. instaui/watch/_utils.py +3 -0
  268. instaui/watch/js_watch.py +110 -0
  269. instaui/watch/vue_watch.py +77 -0
  270. instaui/watch/web_watch.py +181 -0
  271. instaui/webview/__init__.py +2 -0
  272. instaui/webview/_utils.py +8 -0
  273. instaui/webview/api.py +72 -0
  274. instaui/webview/func.py +114 -0
  275. instaui/webview/index.py +161 -0
  276. instaui/webview/resource.py +172 -0
  277. instaui/zero/__init__.py +3 -0
  278. instaui/zero/func.py +123 -0
  279. instaui/zero/scope.py +109 -0
  280. instaui-0.1.15.dist-info/METADATA +152 -0
  281. instaui-0.1.15.dist-info/RECORD +283 -0
  282. instaui-0.1.15.dist-info/WHEEL +5 -0
  283. instaui-0.1.15.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,152 @@
1
+ Metadata-Version: 2.4
2
+ Name: instaui
3
+ Version: 0.1.15
4
+ Summary: insta-ui is a Python-based UI library for rapidly building user interfaces.
5
+ Author-email: CrystalWindSnake <568166495@qq.com>
6
+ License-Expression: MIT
7
+ License-File: LICENSE
8
+ Keywords: gui,ui,web
9
+ Requires-Dist: jinja2>=3.1.6
10
+ Requires-Dist: orjson>=3.10.15
11
+ Requires-Dist: pydantic>=2.10.6
12
+ Requires-Dist: typing-extensions>=4.13.2
13
+ Provides-Extra: all
14
+ Requires-Dist: fastapi[standard]; extra == 'all'
15
+ Requires-Dist: pywebview; extra == 'all'
16
+ Requires-Dist: uvicorn; extra == 'all'
17
+ Provides-Extra: web
18
+ Requires-Dist: fastapi[standard]; extra == 'web'
19
+ Requires-Dist: pydantic<3.0.0,>=2.10.6; extra == 'web'
20
+ Requires-Dist: uvicorn; extra == 'web'
21
+ Provides-Extra: webview
22
+ Requires-Dist: pydantic<3.0.0,>=2.10.6; extra == 'webview'
23
+ Requires-Dist: pywebview; extra == 'webview'
24
+ Description-Content-Type: text/markdown
25
+
26
+ # insta-ui
27
+
28
+ <div align="center">
29
+
30
+ English| [简体中文](./README.md)
31
+
32
+ </div>
33
+
34
+ ## 📖 Introduction
35
+ insta-ui is a Python-based UI library for quickly building user interfaces.
36
+
37
+ ## ⚙️ Features
38
+ Three modes:
39
+
40
+ - Web mode: Generate web (stateless) applications.
41
+ - Web View mode: Generate web view applications that can be packaged as native apps (no need to start a web server).
42
+ - Zero mode: Generate pure HTML files that run directly in browsers without any dependencies.
43
+
44
+
45
+ ## 📦 Installation
46
+
47
+ Zero mode:
48
+
49
+ ```
50
+ pip install instaui -U
51
+ ```
52
+
53
+ web mode
54
+
55
+ ```
56
+ pip install instaui[web] -U
57
+ ```
58
+
59
+ Web View mode
60
+ ```
61
+ pip install instaui[webview] -U
62
+ ```
63
+
64
+
65
+ ## 🖥️ Quick Start
66
+ Below is a simple example of number summation. The result color changes dynamically based on the sum:
67
+
68
+ ```python
69
+ from instaui import ui, arco
70
+ arco.use()
71
+
72
+ @ui.page('/')
73
+ def home():
74
+ num1 = ui.state(0)
75
+ num2 = ui.state(0)
76
+
77
+ # Automatically recalculates result when num1 or num2 changes
78
+ @ui.computed(inputs=[num1, num2])
79
+ def result(num1: int, num2: int):
80
+ return num1 + num2
81
+
82
+ # Automatically updates text_color when result changes
83
+ @ui.computed(inputs=[result])
84
+ def text_color(result: int):
85
+ return "red" if result % 2 == 0 else "blue"
86
+
87
+ # UI components
88
+ arco.input_number(num1)
89
+ ui.label("+")
90
+ arco.input_number(num2)
91
+ ui.label("=")
92
+ ui.label(result).style({"color": text_color})
93
+
94
+ ui.server().run()
95
+ ```
96
+
97
+ Replace `ui.server().run()` with `ui.webview().run()` to switch to Web View mode:
98
+
99
+ ```python
100
+ ...
101
+
102
+ # ui.server().run()
103
+ ui.webview().run()
104
+ ```
105
+
106
+ To execute computations on the client side instead of the server, use `ui.js_computed` instead of `ui.computed`:
107
+
108
+ ```python
109
+ from instaui import ui, arco
110
+ arco.use()
111
+
112
+ @ui.page('/')
113
+ def home():
114
+ num1 = ui.state(0)
115
+ num2 = ui.state(0)
116
+
117
+ result = ui.js_computed(inputs=[num1, num2], code="(num1, num2) => num1 + num2")
118
+ text_color = ui.js_computed(inputs=[result], code="(result) => result % 2 === 0? 'red' : 'blue'")
119
+
120
+ # UI components
121
+ ...
122
+
123
+ ...
124
+
125
+ ```
126
+
127
+ In this case, all interactions will run on the client side. Use `Zero mode` to generate a standalone HTML file:
128
+
129
+ ```python
130
+ from instaui import ui, arco,zero
131
+ arco.use()
132
+
133
+ @ui.page('/')
134
+ def home():
135
+ num1 = ui.state(0)
136
+ num2 = ui.state(0)
137
+
138
+ result = ui.js_computed(inputs=[num1, num2], code="(num1, num2) => num1 + num2")
139
+ text_color = ui.js_computed(inputs=[result], code="(result) => result % 2 === 0? 'red' : 'blue'")
140
+
141
+ # UI components
142
+ arco.input_number(num1)
143
+ ui.label("+")
144
+ arco.input_number(num2)
145
+ ui.label("=")
146
+ ui.label(result).style({"color": text_color})
147
+
148
+ with zero() as z:
149
+ home()
150
+ z.to_html('index.html')
151
+
152
+ ```
@@ -0,0 +1,283 @@
1
+ instaui/__init__.py,sha256=AUc9WcEoBimqYCunwNghawZKuhup_qYd1bor5Go1qmA,161
2
+ instaui/boot_info.py,sha256=2uIkRaNhuUCG6Jbyl2Gb0_1IbVxtfJ8s2j6X1XXdSk0,905
3
+ instaui/consts.py,sha256=3le1YZTV2PM_jXgvEDWlBeGEJz8QIZ2StvA9MZpem_g,967
4
+ instaui/html_tools.py,sha256=VJDnOdPPDzXi_u6bMj5_fqdFjGXG3-HgXQsvD0gfauc,2577
5
+ instaui/inject.py,sha256=NeTcsxoPdo12kZCvGjFU9NNHsVWnsPJfIcNY5_sPGYc,727
6
+ instaui/launch_collector.py,sha256=_YmF3hsNWe-ZxMp_amqUBHkhB6fOuTPfX16BVwn25xg,1731
7
+ instaui/page_info.py,sha256=aJtfLp2h05tCuLzxk2pZ6a9ztyxSdI-g3NBRxbqpS6E,269
8
+ instaui/skip.py,sha256=uqhqusgeChVoivKFMoZd-XePYrlSoLvUzRZDBcUgFmA,149
9
+ instaui/version.py,sha256=to8l16EjNe4jmzK316s5ZIotjv554tqF0VfwA1tBhQk,87
10
+ instaui/_helper/observable_helper.py,sha256=U30PmA8jZ9q48GI_FMNPRYUTKNdl4SsMTAFoq94eRFs,1447
11
+ instaui/arco/__init__.py,sha256=_QuzxGbuQKuq9hjem65NKqYwiKDAP_3ZVPHy75Idw_s,6155
12
+ instaui/arco/_settings.py,sha256=iuWQb-sGNlw4fBxf-Ufj-YGnBXaGVJIDMgPuVg9ZJ38,771
13
+ instaui/arco/component_types.py,sha256=wAJvOw4SGbf8bcC3QTdJonsWk5SsRVui-imsKdg-Nzo,39397
14
+ instaui/arco/setup.py,sha256=iKyb7oDXSkpPUmYNF_4H4wzIG-dZMWjOys97wr6EsG4,996
15
+ instaui/arco/types.py,sha256=3p55fBzYbpw633WmyFS7WdMcosBLme39VT4C1fbtQcg,341
16
+ instaui/arco/_use_tools/locale.py,sha256=30-3dYbTV0aIoA3cMAH-TWreDZA94bf0LrKbJl5vCzk,1295
17
+ instaui/arco/components/_utils.py,sha256=JpofPvCwVJYw_LbN3ZTFOFqT16mj4mF5pS3lgkr_gR4,547
18
+ instaui/arco/components/affix.py,sha256=IHst2isiW4Ujwb5YeLJA7L4GQ2jEI-gGKD0hw6y4t-w,711
19
+ instaui/arco/components/alert.py,sha256=Q8To4MtXMBwU2z6pL8s4Sto0fQVkheoFT8ZeOSAacB4,986
20
+ instaui/arco/components/anchor.py,sha256=Rb-NWInkcNS1f9yysQjC6njaF5K59MIk630bx6bFx3U,981
21
+ instaui/arco/components/auto_complete.py,sha256=pNxh6o_hZp2-Nqf5yQjVapNTjmIapUnjK7kgOnANMCo,2267
22
+ instaui/arco/components/avatar.py,sha256=nUFhBjEYlIHl4kiZKqvsy5t0lwPp1CbHjfDY3ivf85o,1240
23
+ instaui/arco/components/back_top.py,sha256=IQqo0-PQ1deIR13S15QEp9CcT-w9oDLuYxi7AN5yIUM,386
24
+ instaui/arco/components/badge.py,sha256=zvyGcrP425nMfCG-l8Qv5-XhigR-k3kugs_2LSbgqxs,379
25
+ instaui/arco/components/breadcrumb.py,sha256=mJqcYVKwl2YtPoRPKebzSevfmkGi2UG5AoCeQgf3vAc,394
26
+ instaui/arco/components/button.py,sha256=bKW7zNxIaOFhsFmODV2HXxiYylyap4rbJNQXLS-qYGU,1141
27
+ instaui/arco/components/calendar.py,sha256=gvEbL5FaDFkB-wR0bL9eQRxXim7ZpnnhJLY-irwS-3s,1217
28
+ instaui/arco/components/card.py,sha256=tvz_PgSysY9Yesv2gm6AsCZIfA-Uho6lwCq04-iagZw,376
29
+ instaui/arco/components/carousel.py,sha256=n0gIQ3LNdwmxF2z3SziKaTTxuOVqgeOBinz2nne6xi0,948
30
+ instaui/arco/components/cascader.py,sha256=1inR-4Fg5qEh75TR73x6rAksyiuhjyIijpSUAHdgXNw,2616
31
+ instaui/arco/components/checkbox.py,sha256=RPnosvzBbIHP81X6wLLCT6mrtxIQlZvWnmVqtFZtUpM,900
32
+ instaui/arco/components/collapse.py,sha256=_KTRwPJNfe_9H2A2CkPA29_1Ci7VdvqLePHb-ng5a9M,900
33
+ instaui/arco/components/color_picker.py,sha256=zQI59ETb9UKSzto0aIwxYi0mBQqFz16pZdrLjwTWgao,1180
34
+ instaui/arco/components/comment.py,sha256=5i7NBqqxxgCfDyJGobRM_4jnQx7aMwe1VvlZs8yVnZY,385
35
+ instaui/arco/components/config_provider.py,sha256=RCM_XC6vWI9BnxtItLEnMhTIz64RNBbMDwSFxuur8c4,405
36
+ instaui/arco/components/date_picker.py,sha256=rAACVsKUQMkwzKER-VfygWlX_noAj9FDy9keX_btdIw,2577
37
+ instaui/arco/components/descriptions.py,sha256=rQzdUGwBE3IAbmQiyBjg_GtAieL_fB0_ue2p0euRYfY,400
38
+ instaui/arco/components/divider.py,sha256=vADudEVv0p0QtSA1dqtwI6-5ffqQAR2gucjfl_uqHok,383
39
+ instaui/arco/components/drawer.py,sha256=_s6UtS2bGncOPXr_9qEdAIYf895q-4p24NW-YpnT27I,2252
40
+ instaui/arco/components/dropdown.py,sha256=btxc4Wm4wEQa4lxiPg9y6ozXHXs-T5-ppNjrCSZOraY,1208
41
+ instaui/arco/components/empty.py,sha256=Y3QnWMffnYIUZ3vFFI1RpiAKFdpI3JH4DpZVm98pEA8,379
42
+ instaui/arco/components/form.py,sha256=42M2WZPx_2N8KTVE7GyM2j5PboB5etNuKk9TUDtVf9k,1272
43
+ instaui/arco/components/icon.py,sha256=r3ft8SWRMxCWHB8hXYJ8XWhaQyLDw1WMbTGeNNYpqnY,529
44
+ instaui/arco/components/image.py,sha256=AtlSE7rzzUAWbviGRQsxg6byEihr0DmSh3fWk2dO3E0,972
45
+ instaui/arco/components/input.py,sha256=4cwljuQrAonE_6wGBuJGlnruLjk3tvlazdcTzchehFQ,2441
46
+ instaui/arco/components/input_number.py,sha256=-gO0cgVKEXsVlCo6p7-SFuqNKLEDeWYCGOl4uG4HQZM,2233
47
+ instaui/arco/components/input_password.py,sha256=FcZbumYLYGh-s6cOMbfBTGcsPoKBXU_gGupudCKG9Fo,1090
48
+ instaui/arco/components/input_search.py,sha256=oHimoUc3TeJbsfE_YYZqWY92RmKcUj9UDlh9DH2oOYU,965
49
+ instaui/arco/components/input_tag.py,sha256=Yqcjw4pjE77v4xs_sHq4adzBODDMJ1nNX42G7q2nzRo,2504
50
+ instaui/arco/components/layout.py,sha256=qZ0YYFIKx5qVFcBETWDbodW_nFB14ylKg6aIpmyIiN0,380
51
+ instaui/arco/components/layout_content.py,sha256=Vxg9UJbmf8WTIGmqi7MEDC1jxb-GRMdFacEXw5ZSm80,154
52
+ instaui/arco/components/layout_footer.py,sha256=tMLlocxfJi9FQOZ91M5wufprDDKBV7VbTgnmgf9sb00,152
53
+ instaui/arco/components/layout_header.py,sha256=aSMzKHqiL5-o-qFJhhSPqyualbq5joLj9nH0HJ7dkP4,152
54
+ instaui/arco/components/layout_sider.py,sha256=_RHIYiQb5uAl0iTeryrAS-H1ZlqkNuZSNqtqZQs-YSA,1372
55
+ instaui/arco/components/link.py,sha256=Rg_5qhSeG93Bs3Rrx8JqvsWbWuyFTWha6iWXS6WDu_c,946
56
+ instaui/arco/components/list.py,sha256=XgTwO9yVgT-UdLz10VrAiGqbd1dEMMde9pGmwekE3sw,1551
57
+ instaui/arco/components/mention.py,sha256=Jdhfff1qs_29sZLEXNDlQeu1lFt7nQJN4PrxeV9RfPw,2199
58
+ instaui/arco/components/menu.py,sha256=-FR98U7UMRngyluxbl4AAjejjyHQMvVBpNR-gh7dLI0,2226
59
+ instaui/arco/components/modal.py,sha256=SZrN2LuzjylwFawme4NJRLuRuUB2r35YfcbamNg-2t0,2247
60
+ instaui/arco/components/overflow_list.py,sha256=-9MqhVhPW5KPHyitRvz7MSlUmATM-U6q6m5h5QudYGY,733
61
+ instaui/arco/components/page_header.py,sha256=_FyLfzxJpJ1n1u2OoKym7YkOcpGuqnzpdmSbgsC49VA,723
62
+ instaui/arco/components/pagination.py,sha256=SOim-t1TE25OkhH4IRavalXLz1TSVgOfVLSkSFZXXPQ,1205
63
+ instaui/arco/components/pop_confirm.py,sha256=Q96oCK88FjNBesC9VZhv8dWuxlEMTqa-SIBV2fGbNBM,1490
64
+ instaui/arco/components/popover.py,sha256=pfJBqvTOi4BzPGNHw6EjkXs7c7nOjLgeqBpCcwm9IUQ,955
65
+ instaui/arco/components/progress.py,sha256=uB0HnUCug_FZdDaKUGiIkmECwV3jPBOOEpovrxV-Cck,388
66
+ instaui/arco/components/radio.py,sha256=w0v8Uh70MFjRFKzVKZTYa0V7aFW90IW4KAzcCjOBQFI,1096
67
+ instaui/arco/components/radio_group.py,sha256=3LhRaljmD83cR5KAy0492zy62hRde6TTQF-VqkF1Wos,1290
68
+ instaui/arco/components/rate.py,sha256=GLALtLZ1-1xklnnGKZf02KOLJga-IWVB-l_XSrQoQMs,1163
69
+ instaui/arco/components/resize_box.py,sha256=imq3YgcLtaeFChZFvC-jflCaJxq0hY_cnK4TCN7s3j4,1678
70
+ instaui/arco/components/result.py,sha256=QEkQeTujw4P9GtsAziUHDT3UqoRjCcVS2MdZDtT2a8U,382
71
+ instaui/arco/components/select.py,sha256=vTCbEPSIuJzt825Bqq9kh7zes5qsVkfPlIG7yL0AkeQ,4598
72
+ instaui/arco/components/skeleton.py,sha256=08wkK25eBAn5i_j97WcfipJ2Z15ovQ7G0pp92vAbu3s,388
73
+ instaui/arco/components/slider.py,sha256=BG46yKRZYS4o6gQBQDquF1dZWU9-LxEzLSN7rJNig5s,1075
74
+ instaui/arco/components/space.py,sha256=Ml-bWxzMYET0TctKRz_SYE9JIuezD0avTE2KqAZLo68,379
75
+ instaui/arco/components/spin.py,sha256=rd_B0ndmz3xg4ljPIw27IfoWEMPZzvw_E_b0AApiEDY,376
76
+ instaui/arco/components/split.py,sha256=TmsY_jsaYWfOg8n7VnDc8Rs4SP4_P6Rf5j7IrSXQX4c,1942
77
+ instaui/arco/components/statistic.py,sha256=0mrzge0wNbrfK2YYTGzfG5bLljil9Bp86sS1e7d7eJo,391
78
+ instaui/arco/components/steps.py,sha256=k2vJfB8oPtHcwExzGsCAhRtAZBKiAqdHKgQrZ2Q3rg0,903
79
+ instaui/arco/components/switch.py,sha256=TR5q6pBI4W-ulKB1EpFE1x_pKgyIyCPVU1LZ7kXyE9I,1426
80
+ instaui/arco/components/tab_pane.py,sha256=PxMRDgYKf3u_CDLNYmEQirWtxdPf60YG2dzqF-tue7w,357
81
+ instaui/arco/components/table.py,sha256=nVjKxryLHKt1NowYGtzD1LPlqa1PLzqQIRTiQ6jE5LI,6032
82
+ instaui/arco/components/tabs.py,sha256=DH_MYgBQyLgzuzxj3ACLqrMQ1eA6yHi4k4J6TCwt3-c,2672
83
+ instaui/arco/components/tag.py,sha256=AIdYkmGtG_ngahNELIK8HsuvUnpbWII7h8Tsdf3p9Mc,968
84
+ instaui/arco/components/textarea.py,sha256=hj6M4d0IzLwcq5Kk2cllkZiChqQNe5auczQSOBwQLQE,1933
85
+ instaui/arco/components/time_picker.py,sha256=xRWI92v6ZNUdY67JBQ8MBYJ7DNYPKEC4I-pqE022p78,1853
86
+ instaui/arco/components/timeline.py,sha256=mThFeabh3dRucb4trXmQ4nSV8KPWMMD_tcqeFWJhUMM,388
87
+ instaui/arco/components/tooltip.py,sha256=05u84N6WaF_JgSZRvnwFIzmUVBoJHLTn73a8wLw8Z40,745
88
+ instaui/arco/components/transfer.py,sha256=d0YcKEwcMF23Pd3TBJIoB_BeH7HKE4OX-qj8WArusOM,1422
89
+ instaui/arco/components/tree.py,sha256=aa3EVlyM1RHJ_3_d_0mp21y365_FLcwRHOePaDJ8bcQ,2597
90
+ instaui/arco/components/tree_select.py,sha256=xXSSBFOjS_q0QPux97bP7YivWHTBdoUMiiN7xkN0-IU,2097
91
+ instaui/arco/components/trigger.py,sha256=YYnxkAKEDGKjWOECEgmO7_AjTKhPEwAMycfgvKBD5Qw,1482
92
+ instaui/arco/components/typography.py,sha256=j-Hr9yV9jlpF1X3X0KVuqYg2yTYpYXD2fFRylFPnaV8,3661
93
+ instaui/arco/components/upload.py,sha256=LOsFbkz4PaUEkSKnNdf6qM5KTs1EekInhy897JqRC1E,1684
94
+ instaui/arco/components/verification_code.py,sha256=ticp_XwPoSRGLPUd3wwKCH-ZEuwHCk-aI-fIHTOgipA,1432
95
+ instaui/arco/components/watermark.py,sha256=kCgkmvSqsup7BBTTOfHrqGOVStvZsHtUDenoRgoYQq0,391
96
+ instaui/arco/locales/__init__.py,sha256=I4wf2qQymrPU_E_EXKni4_me0m2KSr7Sfx9ZbRR1oOQ,62
97
+ instaui/arco/locales/_index.py,sha256=cZXwVTBWqM5vASvMnlTHjdWfF5eAdCXT53K_JFhEpEU,806
98
+ instaui/arco/locales/en_us.py,sha256=pIU4zBIhoWj5y0PhKoKjSAPZ6y3VSUfIcCGyhce5o08,8294
99
+ instaui/arco/locales/zh_cn.py,sha256=Zeyvm-kh7fhPGe5KZMo_qt8I1s6MkveOk5mMfAYso0k,8182
100
+ instaui/arco/static/instaui-arco.css,sha256=PRnu2GBck04qO-PjCQMoNdETxBlDcxGjA7zHrdBBUfU,399577
101
+ instaui/arco/static/instaui-arco.js,sha256=PktbvZE6yids2NyfSKo81g--fCo-AiNEdOgvv8gmUB8,1664973
102
+ instaui/common/jsonable.py,sha256=efzn_IvfrsaNKjc3B3UzshoMvsqSsB-jnD2Aia8YMYM,902
103
+ instaui/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
104
+ instaui/components/column.py,sha256=t_kDAelb-5_aqx4hv19sOm8zcQpRmn-slTMcwZfMOLk,848
105
+ instaui/components/component.py,sha256=cfKWlhxATdvERSzsVzvLtm61f72_gblhLJXIrXLGQrk,1284
106
+ instaui/components/content.py,sha256=f6dm0GukYJk4RRNJzuvOGqBrStLWkJQbLkV7M5fJ63k,1094
107
+ instaui/components/directive.py,sha256=bHSOWXNhzWRVNqLXwhc_hY3R3g-JAQ5DWIqpZkI6_wI,1411
108
+ instaui/components/element.py,sha256=pPbiJ84D2MZoNE4MZdiMuE_riwuv8PRibOhRbAx7NNA,17691
109
+ instaui/components/grid.py,sha256=h9Lzxqiw4HB-8VG2JGHVz-KGn4bHTtsibtUb8UCgHO4,7529
110
+ instaui/components/label.py,sha256=Fp7malMB2i6MjJjZnxdIl2tg6rb33-1PdgxEhGecoTM,118
111
+ instaui/components/match.py,sha256=-gG9d01LeEHCJNbrpDvdzpU2FoDRjdVZzlBFoVWN3WQ,2852
112
+ instaui/components/row.py,sha256=c0dxJwt955EF7PXlrFpqIoQNZ59tJm-UvZlx_zjeuBg,570
113
+ instaui/components/slot.py,sha256=RT0eU7wH7ffFDkl5ucfrNXB1nbsKDq688Hp920TZaoo,2287
114
+ instaui/components/transition_group.py,sha256=H9zx9NTlCoQnBArWfmxmh7CMKb5hZn8vKrFe4OFxPrE,201
115
+ instaui/components/value_element.py,sha256=wRIAaR3_Cq9qLNJw2KPhWt7dJmclj1mrttzlGpb01Y0,1412
116
+ instaui/components/vfor.py,sha256=1KeJ0-XMmxJuaZIuOqyOZjh6Y5rDAdAewr6HEqL8N_M,4125
117
+ instaui/components/vif.py,sha256=jG0xa-DFU9gegJp-S6Br-FX0TZfg5AdVx7z0sNkFNYk,1313
118
+ instaui/components/html/__init__.py,sha256=9bO1ai0aQCWwj80NKqDeq_3zwMg5gf17mE40a1IESAk,1088
119
+ instaui/components/html/_mixins.py,sha256=5dcSM9h1PswIKL6_eiqUxqW4H2OCuyNeCuRZq3gDGOc,876
120
+ instaui/components/html/_preset.py,sha256=c5rTj3r8W7UP0UHFLUW-ZSPedIa-gzrsU1goi60l20Q,94
121
+ instaui/components/html/button.py,sha256=lB5SYC2Q8b3dOHLBclJW8yaWBuhoe0qNhpKeEifRDJc,820
122
+ instaui/components/html/checkbox.py,sha256=29BTpovcJvrN2uQY280dn8KTyspwBBvLeKSxUv3CxjU,1066
123
+ instaui/components/html/date.py,sha256=MOodsG83JDtb_8l26QWRb7taiPHUAJI6wjt_AjSAJT0,833
124
+ instaui/components/html/div.py,sha256=fF9rBlOBIl-tDvml1DtJK9lFfFY0SBcP5bn36pluis4,167
125
+ instaui/components/html/form.py,sha256=C-QVtwX18zH8ZuVK93weGwlRWfSyTGWY_CYIdGcaslU,169
126
+ instaui/components/html/heading.py,sha256=nYGfUIJFNjeVV_RRwCRuEMblWAEZT-CjNX8eAmtbaaU,1260
127
+ instaui/components/html/input.py,sha256=I9Sbl4THBQuCcaE2HulwD-Hz8Kh2v-rp-HEactlZZBs,894
128
+ instaui/components/html/label.py,sha256=HAH0pGhRdyRG3YwTM4qM8lyF8O3yAfmEyPHj0fQnA-k,507
129
+ instaui/components/html/li.py,sha256=2IS8eudUX4McHjyxT1SOu91xviC2D1NNdYKLjznZ-IA,416
130
+ instaui/components/html/link.py,sha256=eNC2f-twFZUhw_rL-Ggff2Lo8NRU33oF8CfWW_9-ktI,670
131
+ instaui/components/html/number.py,sha256=Y2oIzTMHKWMWpufG55tFz0npEoEFvLhTWpZbMJ8J07s,1069
132
+ instaui/components/html/paragraph.py,sha256=TNMtI9dyQb6hYKE5vGAsSXiOiEqkx7BM6CEoJrg6nz8,914
133
+ instaui/components/html/range.py,sha256=cLGoo3QaARG9YDnh6g3UYtc1yueI5dfMa9-4e-feSn4,1644
134
+ instaui/components/html/select.py,sha256=Bq6mwyKa1qAk7bZiHK0uOg65W2twz4QkcJQTjvFNDP4,2029
135
+ instaui/components/html/span.py,sha256=RJnccwnYEh8PUZ36VTBCKzBNV74M3SMohAejb0ck0UI,440
136
+ instaui/components/html/table.py,sha256=1n46pPOMKkFfEsHB0Qwep-ELShm-jeeCSOfznfY1mSc,1492
137
+ instaui/components/html/textarea.py,sha256=EsVir5nOQDlf5hlmfdWfdfGv-owk-ajPJYOGCbzWVu4,900
138
+ instaui/components/html/ul.py,sha256=YbP2kH0Utlwr194uvVlCNQk1Xfl-5O24nVsDHSM0dqg,545
139
+ instaui/components/markdown/markdown.js,sha256=ZlwxvQJ_0Fq1R-j-unfQTWMRswJ8GsYgLvd-wxVISGc,682
140
+ instaui/components/markdown/markdown.py,sha256=2_ECsZPJ2P5hdP5-Kna0KwoFtHEzk8hgtTZ9rPX5Mds,978
141
+ instaui/components/markdown/static/github-markdown.css,sha256=_uphCFXVa_Hhwyfs7ps-wcpBuzA7_RhkiX7DuxuLIzI,42536
142
+ instaui/components/markdown/static/marked.esm.js,sha256=mgAILO5RXoifHq_HxqoWQ6qcMn_Xw8jYuNHdgoIV-xw,99306
143
+ instaui/components/shiki_code/shiki_code.js,sha256=b4Z_yfKAnZsma7T51aDUljXn45Jd-AJH-Z1vRO1zaQg,3137
144
+ instaui/components/shiki_code/shiki_code.py,sha256=0FonvKvFKrGfz-xWlJJqGZt0TDSkZQr-4u3E9_CEbDk,3100
145
+ instaui/components/shiki_code/static/shiki-core.js,sha256=UL04NBlHkWnjncUOLsNx5mMHCXUUh2t9hVLJPpSOAqs,787821
146
+ instaui/components/shiki_code/static/shiki-style.css,sha256=K4EIv7kBzwf1t6WoqwKrxJDqBVgz1DhzCuEfQGDFUBE,6432
147
+ instaui/components/shiki_code/static/shiki-transformers.js,sha256=JtWn48oj_ppT2-RDbbLnmBjtIvnBRHkgwFcO4hj0yx0,12744
148
+ instaui/components/shiki_code/static/langs/css.mjs,sha256=vCN8-QsQSqpj1kE5F9whUvBr39IsRtC3Ql7RxIGfw2Y,52249
149
+ instaui/components/shiki_code/static/langs/markdown.mjs,sha256=wTkMkPZpF-xRGxiQDtoNHk0KUzYM1nheKGOlyX4P2Sw,61684
150
+ instaui/components/shiki_code/static/langs/python.mjs,sha256=h9AiQgl4T1pP_s9xgMSdTp7UjPs1hpHruOQOqvIGFIQ,77213
151
+ instaui/components/shiki_code/static/langs/shell.mjs,sha256=tFnepW_2H4k-TKg0X2a5eFxSVUu69tvLsBACE8CppPk,91
152
+ instaui/components/shiki_code/static/langs/shellscript.mjs,sha256=hUZDCGMkHhsWI8d8RJwqC5DENXuUoJgFmrgJFnuN_Gw,45548
153
+ instaui/components/shiki_code/static/themes/vitesse-dark.mjs,sha256=OqDIbeBNg40dGoy2Ef02zM7aS7QTcC3bah6ZzvtkpbA,15326
154
+ instaui/components/shiki_code/static/themes/vitesse-light.mjs,sha256=RWgJuEHtO93_BSyNYuenSW6O_x1fv01aiGRO0ZF_qdo,15176
155
+ instaui/dependencies/component_dependency.py,sha256=V9L9YmM0_d1bQFMea3aH8qYG_mvGsAVPhmz0UHZa3PQ,672
156
+ instaui/dependencies/plugin_dependency.py,sha256=6u562ihKbiL3DE4hBrGjauS2nzYEC2glOVN0fwEVNVc,806
157
+ instaui/event/event_mixin.py,sha256=cN0Wh95e1wX183mGnGFm8BK_aEHWJ8WNx3Upy75mU_4,286
158
+ instaui/event/js_event.py,sha256=CGegLXP3QldJp0jN-lNY0XSG8fLuaitFqKkgGEfI7yE,2868
159
+ instaui/event/vue_event.py,sha256=NRwEcAromivjyPtgMq5SEqHqx8GEc1OJZsRL2Nj43RY,2187
160
+ instaui/event/web_event.py,sha256=vilVbw4FtLodkLt0BxQ16dvXv555eWipM53lSkK6tVA,3814
161
+ instaui/experimental/__init__.py,sha256=nKvudMaBaDsxflSZQ00ck8Cc4hmrF0f6Xzs4mhIYa08,75
162
+ instaui/experimental/debug.py,sha256=UGUWgNZ3ShanpuxfuPdx52TgQrkO9hByABYMnPZEIiE,1325
163
+ instaui/extra_libs/_echarts.py,sha256=HCF4mxmzVyKRtxHuehiqf7kmBq7G14_dc2m9XQEM-fQ,78
164
+ instaui/extra_libs/_import_error.py,sha256=qwmDoCoGutqjQpVmvtH5iUkrtyuiTTPZXgEMZzYBAG4,294
165
+ instaui/extra_libs/_mermaid.py,sha256=2b0EymPyHUUBrNadvhK7lRtInh9K-7pzQJFZhj_WkNQ,89
166
+ instaui/extra_libs/_shiki_code.py,sha256=UTC7gvTF8BEgVerhkL45xwpZKY9tPN2_Ddbe0jxFYjQ,79
167
+ instaui/fastapi_server/_utils.py,sha256=MCqbebS4UkBOV8fp3Oy415Tvxnqi2mnMl5Eqe6yJogg,1177
168
+ instaui/fastapi_server/_uvicorn.py,sha256=n-es5ajWepXb6xF9EP0ft2lrEbsyLGWMUE7uVqpkUAs,1174
169
+ instaui/fastapi_server/debug_mode_router.py,sha256=EcYtPxI4FMnUqZcn-CZhZiMLgciHVNZpSRfiSIDRChc,1547
170
+ instaui/fastapi_server/dependency_router.py,sha256=KZISD-0N1a40uXEsjOYlMTOJbItJ4Nyyb5W1VxXvOBA,898
171
+ instaui/fastapi_server/event_router.py,sha256=_b0UNaPiwGwk7ElcF7XQnZfraPyWG2Miv9-wg-RI-PU,1648
172
+ instaui/fastapi_server/middlewares.py,sha256=XyXjdGjH5hJ47ZK8EBeOln4Db1rfRijZpEGl3xmYQqU,643
173
+ instaui/fastapi_server/request_context.py,sha256=EV5ZG4zgI_NPlTxinqO4AIREj6rbb1-HcjKCMa2Unfs,521
174
+ instaui/fastapi_server/resource.py,sha256=2788yiuRjE3GRLqyukuL-x6qN0TSUNzNCm6S51ulNTk,887
175
+ instaui/fastapi_server/server.py,sha256=6NvpWg6CkCjGK21-Pj1WDLI3YjA0nBBNS2v2_vPPiyc,9892
176
+ instaui/fastapi_server/watch_router.py,sha256=KC8AbGNpH2x11PHQMPgc9N5WOlqW05i6r0PTU5A35rI,1599
177
+ instaui/handlers/_utils.py,sha256=uO7WgbNhrykJwDwSEXQxsqsuCR37nx8ehL_urXm-Tks,2830
178
+ instaui/handlers/event_handler.py,sha256=hjxi_nDh0yjk9EmRgew1USXk-Egd4pR8YnUiOcJbbnc,1761
179
+ instaui/handlers/watch_handler.py,sha256=Ay4lubEdRnZcWSqWLwxQyS_uWiF0gu-E9PrNGCAHvL0,1600
180
+ instaui/js/__init__.py,sha256=oIYLPskHpQf8a4SWHLX4DyKjrlDrqWaqbNksIQsLBoA,69
181
+ instaui/js/js_output.py,sha256=a4tZ99P19oen4510qI9LWX6pX0-lH5y37v8va6UY62Y,382
182
+ instaui/js/lambda_func.py,sha256=ulCJ1lzF4h3jGihVTwltS3xEDPbTegjzIN8Al7U4Ank,1004
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=tsf15tmxZ66rsALxN-OLWYSQp7Xr8keAf83cDi0Ua_c,4774
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=ThJK_nVoBTOoyuz2I-w7dgUgXyZRI_HIupHgaz5Pl0Q,10876
196
+ instaui/spa_router/__init__.py,sha256=DGSf0YD6wZFj22kmPSyJWUmm_Lx3_YFg32iOa096T7Y,519
197
+ instaui/spa_router/_components.py,sha256=vPo4JuRtbD_5ll0LkGwU1p8l_pxNfCSdFLDzMXsoEpw,896
198
+ instaui/spa_router/_file_base_utils.py,sha256=fdZJxi8h9oEf9olks4m-0rTe9Fqn7lq3uIDyFFt07xU,8805
199
+ instaui/spa_router/_functions.py,sha256=6EDwXLHnmRrB_CUcbRNPblfOUPF8orob9PXrWm2RfSI,3227
200
+ instaui/spa_router/_install.py,sha256=X9p7wtuGxo6B5F47UTY4ndOSRzENXkoK1XdkNo3F_YA,291
201
+ instaui/spa_router/_route_model.py,sha256=x54tqunkVQSbBKpELiSwcDdBDUzDXFbJl_o6eSu7M7A,4057
202
+ instaui/spa_router/_router_box.py,sha256=Ez0vWWEYH_FHuFDvcAVhhfrlMRnDpT0_7tjmMZRMWZg,1163
203
+ instaui/spa_router/_router_output.py,sha256=Nc6N8yO_9IrUbaYbPZMkOX_9VlwBKzyXMahaPp5GFGg,528
204
+ instaui/spa_router/_router_param_var.py,sha256=KCy54xBZxGMqLO3Zlbzr6XV8ts-M6jCOKunL2gz5IUc,1455
205
+ instaui/spa_router/_types.py,sha256=KuGuv5C6qivwllfdmV5qrvM0S_GWJ6u8OOTkCNmJImU,81
206
+ instaui/spa_router/templates/page_routes,sha256=8VjM_8f6pjFb01QbU9z5HNqpcNRdCiX3X0OqNHLq8fo,1355
207
+ instaui/static/insta-ui.css,sha256=EFA-_5bytZzwbe9w_kaAskE-bpdtwKbBRAyS4iw7NvU,292
208
+ instaui/static/insta-ui.esm-browser.prod.js,sha256=vOYJmB8XMhjNCilar1qXOsjkwoCOVrSw5fsjbQsjYGY,109896
209
+ instaui/static/insta-ui.ico,sha256=08FJg4qWolvOjfodoh8IJLStslrvd8sDyuRcTUDq5ak,1150
210
+ instaui/static/insta-ui.js.map,sha256=cuplnJd5ozaVPCO2Flbf30hmuUJLIk0mo4cu2mMb7Lg,664019
211
+ instaui/static/instaui-tools-browser.js,sha256=cLHKNXYaYMZriMxV-yKGAHTrHSdNRUlDVZmv6uc6mMw,14455
212
+ instaui/static/vue.esm-browser.prod.js,sha256=vwQkXANuVYQuEFc0VgiokJdhNyMmvxMKyb1FmrYrNb4,162662
213
+ instaui/static/vue.global.prod.js,sha256=YO-UVLcXWjFOKfGU2uRrIMYpliGY2y48OmEjV464Z7M,157933
214
+ instaui/static/vue.runtime.esm-browser.prod.js,sha256=74FfP_s9pycfQXWAiGWx6SbjV_oJvMwZLFBkEXeW1Ek,102024
215
+ instaui/static/templates/web.html,sha256=E-CpEyAXV5E9X7CxkiJ8qy1IpudrCT8pQD4l1mFyAGU,1802
216
+ instaui/static/templates/webview.html,sha256=NMISXyV5289WNdJYqL40srYUtjF1bo0jkoE-ouDyrAc,1875
217
+ instaui/static/templates/zero.html,sha256=nDrQhbhZic3VTS3p961iMKHl-kwYgfUhQEq-jFXlluQ,1697
218
+ instaui/static/templates/debug/sse.html,sha256=qw5pzfjbU_XM-hA_SJCt2F8Imbvp17tW5l2dwoSZYjY,3391
219
+ instaui/systems/file_system.py,sha256=q8k_mSHhldkSRYXT73T9s8zvERZZo9HL1U2-4mwau-I,163
220
+ instaui/systems/func_system.py,sha256=CER3Qm5luetdskMNVhJslvZK-QKbLe_n1aIGCe_i6Lc,3174
221
+ instaui/systems/js_system.py,sha256=t_r7SFPmfvTiIrxzuf1YgHyi_Oi_81W0UH_kkC5MwmM,685
222
+ instaui/systems/module_system.py,sha256=dtM7eWV0o5lYozQTXf4T0UycLdiT7wbq5uhJl9bjfn4,1552
223
+ instaui/systems/pydantic_system.py,sha256=qibHh4QqjLNPBzyrCkJVJwCk1dC_H8gEDYYf8Sb-5ps,691
224
+ instaui/systems/string_system.py,sha256=NzB7rgy7BZAYXAYDEWJQSvuYNui2TbLbrc9itVZGLmE,247
225
+ instaui/tailwind/__init__.py,sha256=HNexMZAMG2c0QtkX3oNXmpWnyWDuJPrxuq5IBGvcjVs,75
226
+ instaui/tailwind/_index.py,sha256=Ck8ucB7MrLWYOXZ9HGThDUmNI57596heOEXuU5GSU8U,810
227
+ instaui/tailwind/static/tailwindcss-v3.min.js,sha256=wmOuJX6oR7byZau-Zp2CDXhM6BVK5ZXN55tgExAV4ew,366390
228
+ instaui/tailwind/static/tailwindcss-v4.min.js,sha256=9Ob5VKFT6th87AlCG5pJ90ICCZSsnemVuQ1TzyS2zk4,250319
229
+ instaui/template/__init__.py,sha256=fuua3uCOCmhWb7Q6Sc6pUxfwlxYJTXkdWB1V2fubyyc,141
230
+ instaui/template/_utils.py,sha256=wNIGDWr3z2PpmKsgShYISbCnII4AbKfsLIX_DRWlRbU,670
231
+ instaui/template/env.py,sha256=ZqVsqpfSY1mupbgpBSkvOJytNui8xfNR5kNNC9rv4Ps,150
232
+ instaui/template/web_template.py,sha256=BmZY13q4E_ZP4YVgfBKbbXvPHcGZfOl2f54wp_0DjJA,1603
233
+ instaui/template/webview_template.py,sha256=rd51iPi600QOPQ9PMjgYk61oIxn3L2p3_sJ3eBPG_24,1557
234
+ instaui/template/zero_template.py,sha256=E88VGsyjb1qbHFJlMW-xmLRFkwUXZA7VDoZ_Jd8YubA,3514
235
+ instaui/ui/__init__.py,sha256=4aHnUvEv-0UjpZNu5fU6hvcj1ZGlWwIIobabWUJk-Mc,4818
236
+ instaui/ui/__init__.pyi,sha256=VyyxCXkUhUe7V6lm23o0RYn8SFOE9Jm6aiRNqcCG3A4,4898
237
+ instaui/ui/events.py,sha256=lfhiINwn-Kh0MezsSeLJPttWm6G1aWiwyk3TRo0NrlA,809
238
+ instaui/ui_functions/input_slient_data.py,sha256=0A5DegIt_MqdZgbj1RiVFNmB_RUqgov9FYtkw6VX0DE,511
239
+ instaui/ui_functions/server.py,sha256=B4w8KwBUMGStY19uUG8E4vRG7-L4cedttLkh35xr698,357
240
+ instaui/ui_functions/str_format.py,sha256=ECWttA4LlNHlvdT_73wGF_I68soWNEXTP_Hosmxt-m4,1139
241
+ instaui/ui_functions/ui_page.py,sha256=WVm1qoQ9IxE3kWKKnAU8WVI8drsqxxlLucYKfEZ712s,367
242
+ instaui/ui_functions/ui_types.py,sha256=J5tqFFkoZJMuoLeTqU52KNgw3kdB_IfcrhaBmyI6NAA,505
243
+ instaui/ui_functions/url_location.py,sha256=zyTAJpA-3GBBe7WAiP2IDKQxeQhu0LNgBOxwEzcDaDk,823
244
+ instaui/vars/_types.py,sha256=wthCk1fcxj1SZ5y6b84W9gFpoi8j2PYnfmaPj4Am72s,308
245
+ instaui/vars/data.py,sha256=uxDN-Xa5wO-_QFZYkiYOACnb9Ve8yODSFNIUs-S_E0I,1768
246
+ instaui/vars/element_ref.py,sha256=qC-Kb1hBGz_Y6WKjKxRvYR8jdvWW4VeAAGzJ2wSrGgI,1059
247
+ instaui/vars/event_context.py,sha256=3ML6nyF6Q1hbFvdeu6E2QVOIVcWe1P9FtlCR0dgBGjo,1308
248
+ instaui/vars/event_extend.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
249
+ instaui/vars/js_computed.py,sha256=CYCSR21Je1nTKfFh4camDne7TCHol6JHVZySDT4lCrk,3643
250
+ instaui/vars/path_var.py,sha256=DOgYHoajWKcMHMKYMSBiEOA99mmHIaMH-HRDvAKTZyE,2820
251
+ instaui/vars/ref.py,sha256=iMwKRYI8ygy2cOpXJgqUYJCpzJCQskDl4lRYTACZWnA,2567
252
+ instaui/vars/slot_prop.py,sha256=qBVQ0Ze0T8-Wsy__8qEuqVESIrLX69Bmy21Kuxrg_GQ,1198
253
+ instaui/vars/state.py,sha256=MuiCzR9n348P1J7qdCfFXXratwuOOGELLzg8pu9G6kE,3074
254
+ instaui/vars/types.py,sha256=K0QTajlzHaDvFoVMCHAhY_rVvrBm3FsC92BFPOgdBog,511
255
+ instaui/vars/vfor_item.py,sha256=cVrpErh8OrycYjDLm7PTuE2kIcC2M6ThAQlwvTXG8x0,5490
256
+ instaui/vars/vue_computed.py,sha256=6ZpxCQc2TJfh0vxTxcj6yNPjTVPo3CmsHq028xtiv8Y,2416
257
+ instaui/vars/web_computed.py,sha256=zRlyq1gnuQ5HWS1mh3VYhrRX1EYYYCGIpo3AyW8hu9s,6382
258
+ instaui/vars/web_view_computed.py,sha256=bFFVE9jRKczNy4HhmegWoC6KOL_Nrej-ag37DAIDzaA,36
259
+ instaui/vars/mixin_types/common_type.py,sha256=4KduANLCUCeGTA1ClEsbFzEzd8Mgve3693Wxf9H7Gmw,176
260
+ instaui/vars/mixin_types/element_binding.py,sha256=Mc6rY18y1HlZ9vh62pYKhzyU2XvImZgKcWyKoekTM0s,326
261
+ instaui/vars/mixin_types/observable.py,sha256=h2cox7BwQtLOWqCTaWnNU0TsgYJKuoNUuuEqwj-KXpU,141
262
+ instaui/vars/mixin_types/pathable.py,sha256=40H5f1gCDtKs4Qor0C-moB821T7Df8DOgUcntjxgums,302
263
+ instaui/vars/mixin_types/py_binding.py,sha256=VIVSrHrjcltsP5ADKHtMSZBpi2qKyameXqoEevdfqk8,237
264
+ instaui/vars/mixin_types/str_format_binding.py,sha256=i2jXm1RKddPnGrCxEyz0tkDrBU2FfjR0EviQ0RKZsbY,257
265
+ instaui/vars/mixin_types/var_type.py,sha256=FQj1TEkjT7HopDPztt0-J6eQVGHjem3KBFsjZwvcvYg,57
266
+ instaui/watch/_types.py,sha256=HJ_eAID0NsEJ_S8PhcYWxpVWhYLjjqKlbNWwqdqS4IU,73
267
+ instaui/watch/_utils.py,sha256=mTITHG8hp0pyfQXUERQKXMDna5Au02bhuASCV32eXHI,124
268
+ instaui/watch/js_watch.py,sha256=8lVINBauHBRiDX3-F1V6V5_1CN9j1EMCROjcD9LRCD8,4230
269
+ instaui/watch/vue_watch.py,sha256=Vd3nsRyf9ufrXLFTjaSvglwnkoWyE32fOV0qOogWPt4,2013
270
+ instaui/watch/web_watch.py,sha256=LFzw2Mkm3N6VflxvxebVzEInlG5bP6vImje_TfS-5rE,6285
271
+ instaui/webview/__init__.py,sha256=_L8B0Ym7i1Q8eonQ81fC54EXn7oZuc6zE1KqeAEPHEg,65
272
+ instaui/webview/_utils.py,sha256=pqARVv37h-8p7CLOpvqLV8O_az4EV2VD9G-beUVqjD8,172
273
+ instaui/webview/api.py,sha256=9xuG3EKpmOOy1dvIrS9C9z9ukQDRnIdZLrGFD5FLyvU,2071
274
+ instaui/webview/func.py,sha256=Igrf7U5qL5jJvhwIRJ3JqRjXxX_S2O_nQ9oy1HLFtYo,3422
275
+ instaui/webview/index.py,sha256=lPA1sVd5YzqFW62yvvRqeI0M53oNCoVwweGAakZOu1k,5820
276
+ instaui/webview/resource.py,sha256=kFT6N5UZK5GLE0KmW3TrEYDNlViw9DL2OshRh41wBXs,5566
277
+ instaui/zero/__init__.py,sha256=N0LuRUAcaurxHSspcEDuwZg62W2S3qL4VtrMKxOivBE,49
278
+ instaui/zero/func.py,sha256=8cA_wJMtRmoAARjWY8yY5MmLXDAQ7hyVW6f1Vbejtoc,3576
279
+ instaui/zero/scope.py,sha256=HGohYOqnpRGVkkoz_gvR6-DgCc48AtJAcDwbOnnGHLM,3753
280
+ instaui-0.1.15.dist-info/METADATA,sha256=4xaLjEqZu6_yAQieLp_zOGNvPtsboBvjk7j5SM50_h8,3562
281
+ instaui-0.1.15.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
282
+ instaui-0.1.15.dist-info/licenses/LICENSE,sha256=_JjnAWrikJ6qkwT7PazeFNRlcIu8q_RH3mYcHTxEF5c,1094
283
+ instaui-0.1.15.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: true
4
+ Tag: py2-none-any
5
+ Tag: py3-none-any
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 CrystalWindSnake
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.