instaui 0.1.18__py2.py3-none-any.whl → 0.1.19__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- instaui/components/component.py +0 -2
- instaui/components/element.py +0 -16
- instaui/components/match.py +4 -6
- instaui/components/vfor.py +2 -4
- instaui/components/vif.py +2 -4
- instaui/event/js_event.py +0 -2
- instaui/event/vue_event.py +0 -3
- instaui/event/web_event.py +0 -3
- instaui/runtime/_app.py +2 -2
- instaui/runtime/scope.py +74 -33
- instaui/spa_router/_route_model.py +5 -6
- instaui/static/insta-ui.esm-browser.prod.js +1010 -984
- instaui/static/insta-ui.js.map +1 -1
- instaui/vars/data.py +5 -7
- instaui/vars/js_computed.py +6 -22
- instaui/vars/mixin_types/element_binding.py +1 -13
- instaui/vars/ref.py +5 -7
- instaui/vars/vue_computed.py +6 -21
- instaui/vars/web_computed.py +6 -23
- instaui/watch/js_watch.py +0 -2
- instaui/watch/web_watch.py +0 -2
- {instaui-0.1.18.dist-info → instaui-0.1.19.dist-info}/METADATA +1 -1
- {instaui-0.1.18.dist-info → instaui-0.1.19.dist-info}/RECORD +25 -25
- {instaui-0.1.18.dist-info → instaui-0.1.19.dist-info}/WHEEL +0 -0
- {instaui-0.1.18.dist-info → instaui-0.1.19.dist-info}/licenses/LICENSE +0 -0
instaui/vars/data.py
CHANGED
@@ -31,15 +31,13 @@ class ConstData(
|
|
31
31
|
self.value = value # type: ignore
|
32
32
|
|
33
33
|
scope = get_current_scope()
|
34
|
-
scope.
|
35
|
-
self._sid = scope.id
|
36
|
-
self._id = scope.generate_vars_id()
|
34
|
+
self.__register_info = scope.register_data_task(self)
|
37
35
|
|
38
36
|
def __to_binding_config(self):
|
39
37
|
return {
|
40
38
|
"type": self.BIND_TYPE,
|
41
|
-
"id": self.
|
42
|
-
"sid": self.
|
39
|
+
"id": self.__register_info.var_id,
|
40
|
+
"sid": self.__register_info.scope_id,
|
43
41
|
}
|
44
42
|
|
45
43
|
def _to_pathable_binding_config(self) -> Dict:
|
@@ -59,8 +57,8 @@ class ConstData(
|
|
59
57
|
|
60
58
|
def _to_json_dict(self):
|
61
59
|
data = super()._to_json_dict()
|
62
|
-
data["sid"] = self.
|
63
|
-
data["id"] = self.
|
60
|
+
data["sid"] = self.__register_info.scope_id
|
61
|
+
data["id"] = self.__register_info.var_id
|
64
62
|
|
65
63
|
return data
|
66
64
|
|
instaui/vars/js_computed.py
CHANGED
@@ -6,10 +6,7 @@ from instaui.common.jsonable import Jsonable
|
|
6
6
|
from instaui.runtime._app import get_current_scope
|
7
7
|
from instaui.vars.path_var import PathVar
|
8
8
|
from instaui.vars.mixin_types.var_type import VarMixin
|
9
|
-
from instaui.vars.mixin_types.element_binding import
|
10
|
-
ElementBindingMixin,
|
11
|
-
_try_mark_inputs_used,
|
12
|
-
)
|
9
|
+
from instaui.vars.mixin_types.element_binding import ElementBindingMixin
|
13
10
|
from instaui.vars.mixin_types.py_binding import CanInputMixin
|
14
11
|
from instaui.vars.mixin_types.pathable import CanPathPropMixin
|
15
12
|
from instaui.vars.mixin_types.str_format_binding import StrFormatBindingMixin
|
@@ -61,9 +58,7 @@ class JsComputed(
|
|
61
58
|
self._org_inputs = inputs or []
|
62
59
|
|
63
60
|
scope = get_current_scope()
|
64
|
-
scope.
|
65
|
-
self._sid = scope.id
|
66
|
-
self._id = scope.generate_vars_id()
|
61
|
+
self.__register_info = scope.register_js_computed_task(self)
|
67
62
|
|
68
63
|
self._inputs, self._is_slient_inputs, self._is_data = (
|
69
64
|
observable_helper.analyze_observable_inputs(list(inputs or []))
|
@@ -71,13 +66,12 @@ class JsComputed(
|
|
71
66
|
|
72
67
|
self._async_init_value = async_init_value
|
73
68
|
self._deep_compare_on_input = deep_compare_on_input
|
74
|
-
self.__be_used = False
|
75
69
|
|
76
70
|
def __to_binding_config(self):
|
77
71
|
return {
|
78
72
|
"type": self.BIND_TYPE,
|
79
|
-
"id": self.
|
80
|
-
"sid": self.
|
73
|
+
"id": self.__register_info.var_id,
|
74
|
+
"sid": self.__register_info.scope_id,
|
81
75
|
}
|
82
76
|
|
83
77
|
def _to_input_config(self):
|
@@ -95,21 +89,11 @@ class JsComputed(
|
|
95
89
|
def _to_observable_config(self):
|
96
90
|
return self.__to_binding_config()
|
97
91
|
|
98
|
-
def _mark_used(self):
|
99
|
-
if self.__be_used:
|
100
|
-
return
|
101
|
-
|
102
|
-
self.__be_used = True
|
103
|
-
_try_mark_inputs_used(self._org_inputs)
|
104
|
-
|
105
|
-
def _is_used(self):
|
106
|
-
return self.__be_used
|
107
|
-
|
108
92
|
def _to_json_dict(self):
|
109
93
|
data = super()._to_json_dict()
|
110
94
|
|
111
|
-
data["sid"] = self.
|
112
|
-
data["id"] = self.
|
95
|
+
data["sid"] = self.__register_info.scope_id
|
96
|
+
data["id"] = self.__register_info.var_id
|
113
97
|
|
114
98
|
if self._inputs:
|
115
99
|
data["inputs"] = self._inputs
|
@@ -1,4 +1,4 @@
|
|
1
|
-
from typing import Dict, Generic,
|
1
|
+
from typing import Dict, Generic, TypeVar
|
2
2
|
from abc import ABC, abstractmethod
|
3
3
|
|
4
4
|
T = TypeVar("T")
|
@@ -8,15 +8,3 @@ class ElementBindingMixin(ABC, Generic[T]):
|
|
8
8
|
@abstractmethod
|
9
9
|
def _to_element_binding_config(self) -> Dict:
|
10
10
|
pass
|
11
|
-
|
12
|
-
def _mark_used(self):
|
13
|
-
pass
|
14
|
-
|
15
|
-
def _is_used(self):
|
16
|
-
return True
|
17
|
-
|
18
|
-
|
19
|
-
def _try_mark_inputs_used(inputs: Iterable):
|
20
|
-
for input_ in inputs:
|
21
|
-
if isinstance(input_, ElementBindingMixin):
|
22
|
-
input_._mark_used()
|
instaui/vars/ref.py
CHANGED
@@ -42,10 +42,8 @@ class Ref(
|
|
42
42
|
) -> None:
|
43
43
|
self.value = value # type: ignore
|
44
44
|
scope = get_current_scope()
|
45
|
-
scope.
|
45
|
+
self.__register_info = scope.register_ref_task(self)
|
46
46
|
|
47
|
-
self._sid = scope.id
|
48
|
-
self._id = scope.generate_vars_id()
|
49
47
|
self._deep_compare = deep_compare
|
50
48
|
self._debounced = None
|
51
49
|
|
@@ -56,8 +54,8 @@ class Ref(
|
|
56
54
|
def __to_binding_config(self):
|
57
55
|
return {
|
58
56
|
"type": self.VAR_TYPE,
|
59
|
-
"id": self.
|
60
|
-
"sid": self.
|
57
|
+
"id": self.__register_info.var_id,
|
58
|
+
"sid": self.__register_info.scope_id,
|
61
59
|
}
|
62
60
|
|
63
61
|
def _to_pathable_binding_config(self) -> Dict:
|
@@ -80,8 +78,8 @@ class Ref(
|
|
80
78
|
|
81
79
|
def _to_json_dict(self):
|
82
80
|
data = super()._to_json_dict()
|
83
|
-
data["sid"] = self.
|
84
|
-
data["id"] = self.
|
81
|
+
data["sid"] = self.__register_info.scope_id
|
82
|
+
data["id"] = self.__register_info.var_id
|
85
83
|
|
86
84
|
if self._debounced is not None:
|
87
85
|
data["debounced"] = self._debounced
|
instaui/vars/vue_computed.py
CHANGED
@@ -6,10 +6,7 @@ from instaui.common.jsonable import Jsonable
|
|
6
6
|
from instaui.runtime._app import get_current_scope
|
7
7
|
from instaui.vars.path_var import PathVar
|
8
8
|
from instaui.vars.mixin_types.var_type import VarMixin
|
9
|
-
from instaui.vars.mixin_types.element_binding import
|
10
|
-
ElementBindingMixin,
|
11
|
-
_try_mark_inputs_used,
|
12
|
-
)
|
9
|
+
from instaui.vars.mixin_types.element_binding import ElementBindingMixin
|
13
10
|
from instaui.vars.mixin_types.py_binding import CanInputMixin
|
14
11
|
from instaui.vars.mixin_types.pathable import CanPathPropMixin
|
15
12
|
from instaui.vars.mixin_types.str_format_binding import StrFormatBindingMixin
|
@@ -36,11 +33,10 @@ class VueComputed(
|
|
36
33
|
self.code = fn_code
|
37
34
|
self._bindings = bindings
|
38
35
|
scope = get_current_scope()
|
39
|
-
scope.
|
36
|
+
self.__register_info = scope.register_vue_computed_task(self)
|
40
37
|
|
41
38
|
self._sid = scope.id
|
42
39
|
self._id = scope.generate_vars_id()
|
43
|
-
self.__be_used = False
|
44
40
|
|
45
41
|
if bindings:
|
46
42
|
const_bind = []
|
@@ -57,8 +53,8 @@ class VueComputed(
|
|
57
53
|
def __to_binding_config(self):
|
58
54
|
return {
|
59
55
|
"type": self.BIND_TYPE,
|
60
|
-
"id": self.
|
61
|
-
"sid": self.
|
56
|
+
"id": self.__register_info.var_id,
|
57
|
+
"sid": self.__register_info.scope_id,
|
62
58
|
}
|
63
59
|
|
64
60
|
def _to_input_config(self):
|
@@ -76,21 +72,10 @@ class VueComputed(
|
|
76
72
|
def _to_observable_config(self):
|
77
73
|
return self.__to_binding_config()
|
78
74
|
|
79
|
-
def _mark_used(self):
|
80
|
-
if self.__be_used:
|
81
|
-
return
|
82
|
-
|
83
|
-
self.__be_used = True
|
84
|
-
_try_mark_inputs_used((self._bindings or {}).values())
|
85
|
-
|
86
|
-
def _is_used(self):
|
87
|
-
return self.__be_used
|
88
|
-
|
89
75
|
def _to_json_dict(self):
|
90
76
|
data = super()._to_json_dict()
|
91
|
-
data["sid"] = self.
|
92
|
-
data["id"] = self.
|
93
|
-
_try_mark_inputs_used((self._bindings or {}).values())
|
77
|
+
data["sid"] = self.__register_info.scope_id
|
78
|
+
data["id"] = self.__register_info.var_id
|
94
79
|
return data
|
95
80
|
|
96
81
|
|
instaui/vars/web_computed.py
CHANGED
@@ -17,10 +17,7 @@ from instaui.handlers import watch_handler
|
|
17
17
|
|
18
18
|
from instaui.vars.path_var import PathVar
|
19
19
|
from instaui.vars.mixin_types.py_binding import CanInputMixin, CanOutputMixin
|
20
|
-
from instaui.vars.mixin_types.element_binding import
|
21
|
-
ElementBindingMixin,
|
22
|
-
_try_mark_inputs_used,
|
23
|
-
)
|
20
|
+
from instaui.vars.mixin_types.element_binding import ElementBindingMixin
|
24
21
|
from instaui.vars.mixin_types.pathable import CanPathPropMixin
|
25
22
|
from instaui.vars.mixin_types.str_format_binding import StrFormatBindingMixin
|
26
23
|
from instaui.vars.mixin_types.observable import ObservableMixin
|
@@ -58,10 +55,7 @@ class WebComputed(
|
|
58
55
|
) -> None:
|
59
56
|
scope = get_current_scope()
|
60
57
|
|
61
|
-
self.
|
62
|
-
self._id = scope.generate_vars_id()
|
63
|
-
get_current_scope().register_web_computed(self)
|
64
|
-
|
58
|
+
self.__register_info = scope.register_computed_task(self)
|
65
59
|
self._org_inputs = inputs or []
|
66
60
|
|
67
61
|
self._inputs, self._is_slient_inputs, self._is_data = (
|
@@ -72,7 +66,6 @@ class WebComputed(
|
|
72
66
|
self._init_value = init_value
|
73
67
|
self._evaluating = evaluating
|
74
68
|
self._deep_compare_on_input = deep_compare_on_input
|
75
|
-
self.__be_used = False
|
76
69
|
|
77
70
|
if debug_info is not None:
|
78
71
|
self.debug = debug_info
|
@@ -92,8 +85,8 @@ class WebComputed(
|
|
92
85
|
|
93
86
|
watch_handler.register_handler(hkey, self._fn, len(self._outputs) + 1)
|
94
87
|
|
95
|
-
data["id"] = self.
|
96
|
-
data["sid"] = self.
|
88
|
+
data["id"] = self.__register_info.var_id
|
89
|
+
data["sid"] = self.__register_info.scope_id
|
97
90
|
|
98
91
|
if self._inputs:
|
99
92
|
data["inputs"] = self._inputs
|
@@ -125,8 +118,8 @@ class WebComputed(
|
|
125
118
|
def __to_binding_config(self):
|
126
119
|
return {
|
127
120
|
"type": self.BIND_TYPE,
|
128
|
-
"id": self.
|
129
|
-
"sid": self.
|
121
|
+
"id": self.__register_info.var_id,
|
122
|
+
"sid": self.__register_info.scope_id,
|
130
123
|
}
|
131
124
|
|
132
125
|
def _to_pathable_binding_config(self) -> Dict:
|
@@ -144,16 +137,6 @@ class WebComputed(
|
|
144
137
|
def _to_observable_config(self):
|
145
138
|
return self.__to_binding_config()
|
146
139
|
|
147
|
-
def _mark_used(self):
|
148
|
-
if self.__be_used:
|
149
|
-
return
|
150
|
-
|
151
|
-
self.__be_used = True
|
152
|
-
_try_mark_inputs_used(self._org_inputs)
|
153
|
-
|
154
|
-
def _is_used(self):
|
155
|
-
return self.__be_used
|
156
|
-
|
157
140
|
|
158
141
|
def web_computed(
|
159
142
|
*,
|
instaui/watch/js_watch.py
CHANGED
@@ -6,7 +6,6 @@ from instaui.common.jsonable import Jsonable
|
|
6
6
|
from instaui.runtime._app import get_current_scope
|
7
7
|
|
8
8
|
from instaui.vars.mixin_types.py_binding import CanOutputMixin
|
9
|
-
from instaui.vars.mixin_types.element_binding import _try_mark_inputs_used
|
10
9
|
from instaui.vars.mixin_types.common_type import TObservableInput
|
11
10
|
from instaui._helper import observable_helper
|
12
11
|
|
@@ -22,7 +21,6 @@ class JsWatch(Jsonable):
|
|
22
21
|
once: bool = False,
|
23
22
|
flush: typing.Optional[_types.TFlush] = None,
|
24
23
|
) -> None:
|
25
|
-
_try_mark_inputs_used(inputs or [])
|
26
24
|
inputs = observable_helper.auto_made_inputs_to_slient(inputs, outputs)
|
27
25
|
|
28
26
|
get_current_scope().register_js_watch(self)
|
instaui/watch/web_watch.py
CHANGED
@@ -10,7 +10,6 @@ from instaui.runtime._app import get_app_slot, get_current_scope
|
|
10
10
|
from instaui.handlers import watch_handler
|
11
11
|
|
12
12
|
from instaui.vars.mixin_types.py_binding import CanOutputMixin
|
13
|
-
from instaui.vars.mixin_types.element_binding import _try_mark_inputs_used
|
14
13
|
from instaui.vars.mixin_types.common_type import TObservableInput
|
15
14
|
from instaui._helper import observable_helper
|
16
15
|
|
@@ -33,7 +32,6 @@ class WebWatch(Jsonable, typing.Generic[P, R]):
|
|
33
32
|
flush: typing.Optional[_types.TFlush] = None,
|
34
33
|
_debug: typing.Optional[typing.Any] = None,
|
35
34
|
) -> None:
|
36
|
-
_try_mark_inputs_used(inputs or [])
|
37
35
|
inputs = observable_helper.auto_made_inputs_to_slient(inputs, outputs)
|
38
36
|
|
39
37
|
get_current_scope().register_web_watch(self)
|
@@ -105,19 +105,19 @@ instaui/arco/static/instaui-arco.js,sha256=PktbvZE6yids2NyfSKo81g--fCo-AiNEdOgvv
|
|
105
105
|
instaui/common/jsonable.py,sha256=efzn_IvfrsaNKjc3B3UzshoMvsqSsB-jnD2Aia8YMYM,902
|
106
106
|
instaui/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
107
107
|
instaui/components/column.py,sha256=t_kDAelb-5_aqx4hv19sOm8zcQpRmn-slTMcwZfMOLk,848
|
108
|
-
instaui/components/component.py,sha256=
|
108
|
+
instaui/components/component.py,sha256=cfKWlhxATdvERSzsVzvLtm61f72_gblhLJXIrXLGQrk,1284
|
109
109
|
instaui/components/content.py,sha256=f6dm0GukYJk4RRNJzuvOGqBrStLWkJQbLkV7M5fJ63k,1094
|
110
110
|
instaui/components/directive.py,sha256=bHSOWXNhzWRVNqLXwhc_hY3R3g-JAQ5DWIqpZkI6_wI,1411
|
111
|
-
instaui/components/element.py,sha256=
|
111
|
+
instaui/components/element.py,sha256=XS87h5oWYcye1S2omEDw6uPj4i-RREEI7gIJNDgUbOg,17122
|
112
112
|
instaui/components/grid.py,sha256=h9Lzxqiw4HB-8VG2JGHVz-KGn4bHTtsibtUb8UCgHO4,7529
|
113
113
|
instaui/components/label.py,sha256=Fp7malMB2i6MjJjZnxdIl2tg6rb33-1PdgxEhGecoTM,118
|
114
|
-
instaui/components/match.py,sha256
|
114
|
+
instaui/components/match.py,sha256=rQ74OV9V5rJvK8taHfpD-VDPXF0raxvNKjD_5nWnjXM,2778
|
115
115
|
instaui/components/row.py,sha256=c0dxJwt955EF7PXlrFpqIoQNZ59tJm-UvZlx_zjeuBg,570
|
116
116
|
instaui/components/slot.py,sha256=RT0eU7wH7ffFDkl5ucfrNXB1nbsKDq688Hp920TZaoo,2287
|
117
117
|
instaui/components/transition_group.py,sha256=H9zx9NTlCoQnBArWfmxmh7CMKb5hZn8vKrFe4OFxPrE,201
|
118
118
|
instaui/components/value_element.py,sha256=wRIAaR3_Cq9qLNJw2KPhWt7dJmclj1mrttzlGpb01Y0,1412
|
119
|
-
instaui/components/vfor.py,sha256=
|
120
|
-
instaui/components/vif.py,sha256=
|
119
|
+
instaui/components/vfor.py,sha256=uUaePBf-Z2utV0C0j0KuMe5eebAUA6vG-2q77qOZ_UI,4033
|
120
|
+
instaui/components/vif.py,sha256=vn-tZ_ejVm5S5NjR1s9HPVCRXKPbi-tAzUBkz4PTdxs,1237
|
121
121
|
instaui/components/html/__init__.py,sha256=B1BDIbeHexH3dEg1Gwx3HwZgR0JnxWhNcNlVUp5VeE4,1137
|
122
122
|
instaui/components/html/_mixins.py,sha256=5dcSM9h1PswIKL6_eiqUxqW4H2OCuyNeCuRZq3gDGOc,876
|
123
123
|
instaui/components/html/_preset.py,sha256=c5rTj3r8W7UP0UHFLUW-ZSPedIa-gzrsU1goi60l20Q,94
|
@@ -161,9 +161,9 @@ instaui/components/timer/timer.py,sha256=49J_xHd5Ck4Ma9uhLXFigGq7kZZWuIdYmFYmWkJ
|
|
161
161
|
instaui/dependencies/component_dependency.py,sha256=V9L9YmM0_d1bQFMea3aH8qYG_mvGsAVPhmz0UHZa3PQ,672
|
162
162
|
instaui/dependencies/plugin_dependency.py,sha256=6u562ihKbiL3DE4hBrGjauS2nzYEC2glOVN0fwEVNVc,806
|
163
163
|
instaui/event/event_mixin.py,sha256=cN0Wh95e1wX183mGnGFm8BK_aEHWJ8WNx3Upy75mU_4,286
|
164
|
-
instaui/event/js_event.py,sha256=
|
165
|
-
instaui/event/vue_event.py,sha256=
|
166
|
-
instaui/event/web_event.py,sha256=
|
164
|
+
instaui/event/js_event.py,sha256=CGegLXP3QldJp0jN-lNY0XSG8fLuaitFqKkgGEfI7yE,2868
|
165
|
+
instaui/event/vue_event.py,sha256=NRwEcAromivjyPtgMq5SEqHqx8GEc1OJZsRL2Nj43RY,2187
|
166
|
+
instaui/event/web_event.py,sha256=sojugqfXyF0q4gDCQsVjcfdBcuELVGeucZveFTDno10,3607
|
167
167
|
instaui/experimental/__init__.py,sha256=nKvudMaBaDsxflSZQ00ck8Cc4hmrF0f6Xzs4mhIYa08,75
|
168
168
|
instaui/experimental/debug.py,sha256=UGUWgNZ3ShanpuxfuPdx52TgQrkO9hByABYMnPZEIiE,1325
|
169
169
|
instaui/extra_libs/_echarts.py,sha256=HCF4mxmzVyKRtxHuehiqf7kmBq7G14_dc2m9XQEM-fQ,78
|
@@ -185,13 +185,13 @@ instaui/handlers/event_handler.py,sha256=hjxi_nDh0yjk9EmRgew1USXk-Egd4pR8YnUiOcJ
|
|
185
185
|
instaui/handlers/watch_handler.py,sha256=Ay4lubEdRnZcWSqWLwxQyS_uWiF0gu-E9PrNGCAHvL0,1600
|
186
186
|
instaui/js/fn.py,sha256=3y5nQvEjQtsaFYfTcS1-1v5b4bM20NLkk0HFl_3fewE,1186
|
187
187
|
instaui/runtime/__init__.py,sha256=4aYTDsKaloRMQns8ttdfSx5xLmcN0Ot6tMqELbjIDZg,667
|
188
|
-
instaui/runtime/_app.py,sha256=
|
188
|
+
instaui/runtime/_app.py,sha256=xT1KirhO5NuJrv0w_voDDugNnOk1NtCSyuP86jt6ptI,7704
|
189
189
|
instaui/runtime/_inner_helper.py,sha256=Aw7S_KtCuOlpd8NP2RuQvNTL1GJtpxQGLsKdc3VXQFY,326
|
190
190
|
instaui/runtime/_link_manager.py,sha256=sVdqm3gdCl6i9UXa8WwckfYVf1vmESm7hvdagT_-OZI,2271
|
191
191
|
instaui/runtime/context.py,sha256=MXwyKnX1X13peHOUbYzwAMflaA1WoQrNkGbi5C_0ErU,1086
|
192
192
|
instaui/runtime/dataclass.py,sha256=dr3hN4YjFXPzckRX9HR87t1-gPjT9RNq9YV-0uJnjHo,587
|
193
193
|
instaui/runtime/resource.py,sha256=8I47HZHRHIzIDrYcfSiHA2RWwb3-ZIsVFMsat8jgV-8,2363
|
194
|
-
instaui/runtime/scope.py,sha256=
|
194
|
+
instaui/runtime/scope.py,sha256=CtjXNV5Ap43hxn6tN5XJxA2jxQYvlmVLbFS56J5rVhw,6329
|
195
195
|
instaui/runtime/ui_state_scope.py,sha256=g48VpQj0BboooUrPr5VIWvcQoJe0bIQARMwRyVEE0I8,314
|
196
196
|
instaui/settings/__init__.py,sha256=nK_xDrlq7CPjm9x3EKsKUW5qWBg_1d-xbqAp_i5G8cc,70
|
197
197
|
instaui/settings/__settings.py,sha256=DWzRvs9bBqjoNA2MvGAyz3GRrSV8H6lMLF1H3iJyoyA,385
|
@@ -202,16 +202,16 @@ instaui/spa_router/_components.py,sha256=vPo4JuRtbD_5ll0LkGwU1p8l_pxNfCSdFLDzMXs
|
|
202
202
|
instaui/spa_router/_file_base_utils.py,sha256=fdZJxi8h9oEf9olks4m-0rTe9Fqn7lq3uIDyFFt07xU,8805
|
203
203
|
instaui/spa_router/_functions.py,sha256=6EDwXLHnmRrB_CUcbRNPblfOUPF8orob9PXrWm2RfSI,3227
|
204
204
|
instaui/spa_router/_install.py,sha256=X9p7wtuGxo6B5F47UTY4ndOSRzENXkoK1XdkNo3F_YA,291
|
205
|
-
instaui/spa_router/_route_model.py,sha256=
|
205
|
+
instaui/spa_router/_route_model.py,sha256=qtRDoTqWjEWxV5bFDsLGgw6c5mET-o9Ks5oDnU1Czd8,3997
|
206
206
|
instaui/spa_router/_router_box.py,sha256=Ez0vWWEYH_FHuFDvcAVhhfrlMRnDpT0_7tjmMZRMWZg,1163
|
207
207
|
instaui/spa_router/_router_output.py,sha256=Nc6N8yO_9IrUbaYbPZMkOX_9VlwBKzyXMahaPp5GFGg,528
|
208
208
|
instaui/spa_router/_router_param_var.py,sha256=KCy54xBZxGMqLO3Zlbzr6XV8ts-M6jCOKunL2gz5IUc,1455
|
209
209
|
instaui/spa_router/_types.py,sha256=KuGuv5C6qivwllfdmV5qrvM0S_GWJ6u8OOTkCNmJImU,81
|
210
210
|
instaui/spa_router/templates/page_routes,sha256=8VjM_8f6pjFb01QbU9z5HNqpcNRdCiX3X0OqNHLq8fo,1355
|
211
211
|
instaui/static/insta-ui.css,sha256=EFA-_5bytZzwbe9w_kaAskE-bpdtwKbBRAyS4iw7NvU,292
|
212
|
-
instaui/static/insta-ui.esm-browser.prod.js,sha256=
|
212
|
+
instaui/static/insta-ui.esm-browser.prod.js,sha256=8DFn3kGjXs3FDdrATFCUeKSOLuDcmqiJS8RAmnCIL7Q,110148
|
213
213
|
instaui/static/insta-ui.ico,sha256=08FJg4qWolvOjfodoh8IJLStslrvd8sDyuRcTUDq5ak,1150
|
214
|
-
instaui/static/insta-ui.js.map,sha256=
|
214
|
+
instaui/static/insta-ui.js.map,sha256=ZopVR83bDks_gfzqGpFAzdOUsO02KV-492Nke-Iyidk,664965
|
215
215
|
instaui/static/instaui-tools-browser.js,sha256=cLHKNXYaYMZriMxV-yKGAHTrHSdNRUlDVZmv6uc6mMw,14455
|
216
216
|
instaui/static/vue.esm-browser.prod.js,sha256=vwQkXANuVYQuEFc0VgiokJdhNyMmvxMKyb1FmrYrNb4,162662
|
217
217
|
instaui/static/vue.global.prod.js,sha256=YO-UVLcXWjFOKfGU2uRrIMYpliGY2y48OmEjV464Z7M,157933
|
@@ -245,22 +245,22 @@ instaui/ui_functions/str_format.py,sha256=ECWttA4LlNHlvdT_73wGF_I68soWNEXTP_Hosm
|
|
245
245
|
instaui/ui_functions/ui_page.py,sha256=WVm1qoQ9IxE3kWKKnAU8WVI8drsqxxlLucYKfEZ712s,367
|
246
246
|
instaui/ui_functions/ui_types.py,sha256=J5tqFFkoZJMuoLeTqU52KNgw3kdB_IfcrhaBmyI6NAA,505
|
247
247
|
instaui/vars/_types.py,sha256=wthCk1fcxj1SZ5y6b84W9gFpoi8j2PYnfmaPj4Am72s,308
|
248
|
-
instaui/vars/data.py,sha256=
|
248
|
+
instaui/vars/data.py,sha256=zetw3wloheoh45gyuXQ_FZsy_UE6JIt04sYrM5RkFHs,1799
|
249
249
|
instaui/vars/element_ref.py,sha256=qC-Kb1hBGz_Y6WKjKxRvYR8jdvWW4VeAAGzJ2wSrGgI,1059
|
250
250
|
instaui/vars/event_context.py,sha256=3ML6nyF6Q1hbFvdeu6E2QVOIVcWe1P9FtlCR0dgBGjo,1308
|
251
251
|
instaui/vars/event_extend.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
252
|
-
instaui/vars/js_computed.py,sha256=
|
252
|
+
instaui/vars/js_computed.py,sha256=MTCafS01I2CDJBoaz1NCmTy1QHVs74-S-LDiJEt-Cp4,3715
|
253
253
|
instaui/vars/path_var.py,sha256=znIvxaNHwQzXflEqwB2xjrI7Bk5_QjwYlhdl4qvtyws,2811
|
254
|
-
instaui/vars/ref.py,sha256=
|
254
|
+
instaui/vars/ref.py,sha256=aGihjRDdEoles_RVFnmufaPu0g2Rv6IokW1xP3EndPo,2906
|
255
255
|
instaui/vars/slot_prop.py,sha256=qBVQ0Ze0T8-Wsy__8qEuqVESIrLX69Bmy21Kuxrg_GQ,1198
|
256
256
|
instaui/vars/state.py,sha256=x6qeTliE1J7qoFmAG7huJ-sNQ4VcFgy0IlJoNodqRe0,3190
|
257
257
|
instaui/vars/types.py,sha256=K0QTajlzHaDvFoVMCHAhY_rVvrBm3FsC92BFPOgdBog,511
|
258
258
|
instaui/vars/vfor_item.py,sha256=cVrpErh8OrycYjDLm7PTuE2kIcC2M6ThAQlwvTXG8x0,5490
|
259
|
-
instaui/vars/vue_computed.py,sha256=
|
260
|
-
instaui/vars/web_computed.py,sha256=
|
259
|
+
instaui/vars/vue_computed.py,sha256=XIgwnVuIaC8RZsgH3LYW88cpqcaIcO5V6UWR_sJ2fks,2557
|
260
|
+
instaui/vars/web_computed.py,sha256=l84nUW_EVzDXmw-vwyz9k_2PSyUvSpNXiP9N6RohH3s,6058
|
261
261
|
instaui/vars/web_view_computed.py,sha256=bFFVE9jRKczNy4HhmegWoC6KOL_Nrej-ag37DAIDzaA,36
|
262
262
|
instaui/vars/mixin_types/common_type.py,sha256=4KduANLCUCeGTA1ClEsbFzEzd8Mgve3693Wxf9H7Gmw,176
|
263
|
-
instaui/vars/mixin_types/element_binding.py,sha256=
|
263
|
+
instaui/vars/mixin_types/element_binding.py,sha256=4suqqLT3zn5y7LvqVo2QrEgI1uUFS_5sv8vtTUCzkTc,235
|
264
264
|
instaui/vars/mixin_types/observable.py,sha256=h2cox7BwQtLOWqCTaWnNU0TsgYJKuoNUuuEqwj-KXpU,141
|
265
265
|
instaui/vars/mixin_types/pathable.py,sha256=40H5f1gCDtKs4Qor0C-moB821T7Df8DOgUcntjxgums,302
|
266
266
|
instaui/vars/mixin_types/py_binding.py,sha256=VIVSrHrjcltsP5ADKHtMSZBpi2qKyameXqoEevdfqk8,237
|
@@ -268,9 +268,9 @@ instaui/vars/mixin_types/str_format_binding.py,sha256=i2jXm1RKddPnGrCxEyz0tkDrBU
|
|
268
268
|
instaui/vars/mixin_types/var_type.py,sha256=FQj1TEkjT7HopDPztt0-J6eQVGHjem3KBFsjZwvcvYg,57
|
269
269
|
instaui/watch/_types.py,sha256=HJ_eAID0NsEJ_S8PhcYWxpVWhYLjjqKlbNWwqdqS4IU,73
|
270
270
|
instaui/watch/_utils.py,sha256=mTITHG8hp0pyfQXUERQKXMDna5Au02bhuASCV32eXHI,124
|
271
|
-
instaui/watch/js_watch.py,sha256=
|
271
|
+
instaui/watch/js_watch.py,sha256=8lVINBauHBRiDX3-F1V6V5_1CN9j1EMCROjcD9LRCD8,4230
|
272
272
|
instaui/watch/vue_watch.py,sha256=Vd3nsRyf9ufrXLFTjaSvglwnkoWyE32fOV0qOogWPt4,2013
|
273
|
-
instaui/watch/web_watch.py,sha256=
|
273
|
+
instaui/watch/web_watch.py,sha256=Z0xevG6Zwp-9yPSGBZFlbwtd0yP4j29F0GV-yksZVV0,6031
|
274
274
|
instaui/webview/__init__.py,sha256=_L8B0Ym7i1Q8eonQ81fC54EXn7oZuc6zE1KqeAEPHEg,65
|
275
275
|
instaui/webview/_utils.py,sha256=pqARVv37h-8p7CLOpvqLV8O_az4EV2VD9G-beUVqjD8,172
|
276
276
|
instaui/webview/api.py,sha256=9xuG3EKpmOOy1dvIrS9C9z9ukQDRnIdZLrGFD5FLyvU,2071
|
@@ -280,7 +280,7 @@ instaui/webview/resource.py,sha256=kFT6N5UZK5GLE0KmW3TrEYDNlViw9DL2OshRh41wBXs,5
|
|
280
280
|
instaui/zero/__init__.py,sha256=N0LuRUAcaurxHSspcEDuwZg62W2S3qL4VtrMKxOivBE,49
|
281
281
|
instaui/zero/func.py,sha256=8cA_wJMtRmoAARjWY8yY5MmLXDAQ7hyVW6f1Vbejtoc,3576
|
282
282
|
instaui/zero/scope.py,sha256=HGohYOqnpRGVkkoz_gvR6-DgCc48AtJAcDwbOnnGHLM,3753
|
283
|
-
instaui-0.1.
|
284
|
-
instaui-0.1.
|
285
|
-
instaui-0.1.
|
286
|
-
instaui-0.1.
|
283
|
+
instaui-0.1.19.dist-info/METADATA,sha256=t-xqTl3zZ7KvlW4WSMAFDNseLTmwUlvxZ7sJ1-dAjsE,3562
|
284
|
+
instaui-0.1.19.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
|
285
|
+
instaui-0.1.19.dist-info/licenses/LICENSE,sha256=_JjnAWrikJ6qkwT7PazeFNRlcIu8q_RH3mYcHTxEF5c,1094
|
286
|
+
instaui-0.1.19.dist-info/RECORD,,
|
File without changes
|
File without changes
|