ex4nicegui 0.8.10__py3-none-any.whl → 0.9.0__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.
- ex4nicegui/bi/dataSource.py +1 -2
- ex4nicegui/bi/elements/ui_aggrid.py +1 -2
- ex4nicegui/layout/rxFlex/index.py +0 -1
- ex4nicegui/reactive/EChartsComponent/ECharts.js +1 -1
- ex4nicegui/reactive/EChartsComponent/ECharts.py +1 -5
- ex4nicegui/reactive/__init__.py +2 -3
- ex4nicegui/reactive/_vmodel.py +150 -0
- ex4nicegui/reactive/base.py +2 -3
- ex4nicegui/reactive/deferredTask.py +2 -5
- ex4nicegui/reactive/mermaid/mermaid.js +1 -1
- ex4nicegui/reactive/mermaid/mermaid.py +0 -5
- ex4nicegui/reactive/vfor.py +1 -0
- ex4nicegui/toolbox/core/vue_use.py +1 -1
- ex4nicegui/utils/clientScope.py +5 -8
- ex4nicegui/utils/proxy/descriptor.py +0 -1
- ex4nicegui/utils/signals.py +2 -1
- {ex4nicegui-0.8.10.dist-info → ex4nicegui-0.9.0.dist-info}/METADATA +11 -21
- {ex4nicegui-0.8.10.dist-info → ex4nicegui-0.9.0.dist-info}/RECORD +45 -73
- {ex4nicegui-0.8.10.dist-info → ex4nicegui-0.9.0.dist-info}/WHEEL +1 -1
- ex4nicegui/gsap/__init__.py +0 -23
- ex4nicegui/gsap/gsap.py +0 -145
- ex4nicegui/gsap/timeline.js +0 -56
- ex4nicegui/gsap/timeline.py +0 -78
- ex4nicegui/gsap/wrapGsap.js +0 -48
- ex4nicegui/libs/gsap/.DS_Store +0 -0
- ex4nicegui/libs/gsap/CSSPlugin.js +0 -1577
- ex4nicegui/libs/gsap/CSSRulePlugin.js +0 -134
- ex4nicegui/libs/gsap/CustomEase.js +0 -371
- ex4nicegui/libs/gsap/Draggable.js +0 -2699
- ex4nicegui/libs/gsap/EasePack.js +0 -212
- ex4nicegui/libs/gsap/EaselPlugin.js +0 -341
- ex4nicegui/libs/gsap/Flip.js +0 -1518
- ex4nicegui/libs/gsap/MotionPathPlugin.js +0 -368
- ex4nicegui/libs/gsap/Observer.js +0 -686
- ex4nicegui/libs/gsap/PixiPlugin.js +0 -461
- ex4nicegui/libs/gsap/ScrollToPlugin.js +0 -273
- ex4nicegui/libs/gsap/ScrollTrigger.js +0 -2658
- ex4nicegui/libs/gsap/TextPlugin.js +0 -166
- ex4nicegui/libs/gsap/__init__.py +0 -0
- ex4nicegui/libs/gsap/all.js +0 -31
- ex4nicegui/libs/gsap/gsap-core.js +0 -4487
- ex4nicegui/libs/gsap/gsap.mjs +0 -6
- ex4nicegui/libs/gsap/utils/__init__.py +0 -0
- ex4nicegui/libs/gsap/utils/matrix.js +0 -420
- ex4nicegui/libs/gsap/utils/paths.js +0 -1487
- ex4nicegui/libs/gsap/utils/strings.js +0 -107
- ex4nicegui/reactive/local_file_picker.py +0 -208
- ex4nicegui/reactive/vmodel.py +0 -237
- {ex4nicegui-0.8.10.dist-info → ex4nicegui-0.9.0.dist-info/licenses}/LICENSE +0 -0
ex4nicegui/bi/dataSource.py
CHANGED
|
@@ -182,8 +182,7 @@ class DataSource:
|
|
|
182
182
|
|
|
183
183
|
@ng_client.on_disconnect
|
|
184
184
|
def _(e: Client):
|
|
185
|
-
|
|
186
|
-
self._component_map.remove_client(e.id)
|
|
185
|
+
self._component_map.remove_client(e.id)
|
|
187
186
|
|
|
188
187
|
info = ComponentInfo(
|
|
189
188
|
ComponentInfoKey(client_id, element_id), update_callback, uiResult=ui_result
|
|
@@ -57,8 +57,7 @@ def ui_aggrid(
|
|
|
57
57
|
data = self._dataSource.get_filtered_data(cp)
|
|
58
58
|
new_opts = self._dataSource._idataSource.get_aggrid_options(data)
|
|
59
59
|
options = _merge_options(fixed_options, new_opts)
|
|
60
|
-
cp.
|
|
61
|
-
cp.update()
|
|
60
|
+
cp.options = {**options, "theme": kwargs.get("theme", "quartz")}
|
|
62
61
|
|
|
63
62
|
self._dataSource._register_component(cp.id, on_source_update)
|
|
64
63
|
|
|
@@ -11,18 +11,14 @@ from nicegui.events import handle_event, UiEventArguments, GenericEventArguments
|
|
|
11
11
|
from nicegui.element import Element
|
|
12
12
|
from nicegui.awaitable_response import AwaitableResponse
|
|
13
13
|
from pathlib import Path
|
|
14
|
-
import nicegui
|
|
15
14
|
|
|
16
15
|
from .types import (
|
|
17
16
|
_T_event_name,
|
|
18
17
|
)
|
|
19
18
|
from .utils import get_bound_event_args, create_event_handler_args
|
|
20
19
|
|
|
21
|
-
NG_ROOT = Path(nicegui.__file__).parent / "elements"
|
|
22
|
-
libraries = [NG_ROOT / "lib/echarts/echarts.min.js"]
|
|
23
20
|
|
|
24
|
-
|
|
25
|
-
class echarts(Element, component="ECharts.js", dependencies=libraries): # type: ignore
|
|
21
|
+
class echarts(Element, component="ECharts.js"):
|
|
26
22
|
def __init__(
|
|
27
23
|
self,
|
|
28
24
|
options: Optional[dict] = None,
|
ex4nicegui/reactive/__init__.py
CHANGED
|
@@ -63,7 +63,7 @@ from .officials.range import LazyRangeBindableUi as lazy_range
|
|
|
63
63
|
from .officials.tree import TreeBindableUi as tree
|
|
64
64
|
from .officials.spinner import SpinnerBindableUi as spinner
|
|
65
65
|
|
|
66
|
-
|
|
66
|
+
|
|
67
67
|
from .UseDraggable.UseDraggable import use_draggable
|
|
68
68
|
from .useMouse.UseMouse import use_mouse
|
|
69
69
|
|
|
@@ -73,7 +73,7 @@ from .fileWatcher import FilesWatcher
|
|
|
73
73
|
from .mermaid.mermaid import Mermaid as mermaid
|
|
74
74
|
from .officials.dialog import DialogBindableUi as dialog
|
|
75
75
|
from .vfor import vfor, VforStore
|
|
76
|
-
from .
|
|
76
|
+
from ._vmodel import vmodel
|
|
77
77
|
from .view_model import ViewModel, var, cached_var, list_var, dict_var
|
|
78
78
|
|
|
79
79
|
pagination = q_pagination
|
|
@@ -89,7 +89,6 @@ __all__ = [
|
|
|
89
89
|
"circular_progress",
|
|
90
90
|
"knob",
|
|
91
91
|
"UploadResult",
|
|
92
|
-
"local_file_picker",
|
|
93
92
|
"use_draggable",
|
|
94
93
|
"use_mouse",
|
|
95
94
|
"use_pagination",
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
import warnings
|
|
3
|
+
from ex4nicegui.utils.signals import (
|
|
4
|
+
RefWrapper,
|
|
5
|
+
TRef,
|
|
6
|
+
to_raw,
|
|
7
|
+
to_ref_wrapper,
|
|
8
|
+
to_value,
|
|
9
|
+
is_reactive,
|
|
10
|
+
is_ref,
|
|
11
|
+
)
|
|
12
|
+
from typing import (
|
|
13
|
+
Any,
|
|
14
|
+
Union,
|
|
15
|
+
cast,
|
|
16
|
+
Tuple,
|
|
17
|
+
)
|
|
18
|
+
|
|
19
|
+
from ex4nicegui.reactive.systems.object_system import get_attribute, set_attribute
|
|
20
|
+
from ex4nicegui.utils.types import _TMaybeRef as TMaybeRef, Ref
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
def create_writeable_wrapper(ref_obj: TRef, attrs: Tuple[Union[str, int], ...]):
|
|
24
|
+
if not attrs:
|
|
25
|
+
|
|
26
|
+
def maybe_ref_getter():
|
|
27
|
+
return to_value(ref_obj)
|
|
28
|
+
|
|
29
|
+
def reactive_getter():
|
|
30
|
+
return to_raw(ref_obj)
|
|
31
|
+
|
|
32
|
+
def setter(value):
|
|
33
|
+
pass
|
|
34
|
+
|
|
35
|
+
wrapper = to_ref_wrapper(
|
|
36
|
+
reactive_getter if is_reactive(ref_obj) else maybe_ref_getter,
|
|
37
|
+
setter,
|
|
38
|
+
)
|
|
39
|
+
wrapper._is_readonly = False
|
|
40
|
+
return wrapper
|
|
41
|
+
|
|
42
|
+
def getter():
|
|
43
|
+
obj = get_attribute(to_value(ref_obj), attrs[0])
|
|
44
|
+
for attr in attrs[1:]:
|
|
45
|
+
obj = get_attribute(obj, attr)
|
|
46
|
+
|
|
47
|
+
return obj
|
|
48
|
+
|
|
49
|
+
def setter(value):
|
|
50
|
+
obj = to_value(ref_obj)
|
|
51
|
+
|
|
52
|
+
for attr in attrs[:-1]:
|
|
53
|
+
obj = get_attribute(obj, attr)
|
|
54
|
+
|
|
55
|
+
set_attribute(obj, attrs[-1], value)
|
|
56
|
+
|
|
57
|
+
wrapper = to_ref_wrapper(
|
|
58
|
+
getter,
|
|
59
|
+
setter,
|
|
60
|
+
)
|
|
61
|
+
wrapper._is_readonly = False
|
|
62
|
+
return wrapper
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
def vmodel(ref_obj: Union[TRef[Any], Any], *attrs: Union[str, int]) -> Any:
|
|
66
|
+
"""Create a two-way binding on a form input element or a component.
|
|
67
|
+
|
|
68
|
+
@see - https://github.com/CrystalWindSnake/ex4nicegui/blob/main/README.en.md#vmodel
|
|
69
|
+
@中文文档 - https://gitee.com/carson_add/ex4nicegui/tree/main/#vmodel
|
|
70
|
+
|
|
71
|
+
Args:
|
|
72
|
+
expr (Any): _description_
|
|
73
|
+
|
|
74
|
+
## Examples
|
|
75
|
+
|
|
76
|
+
.. code-block:: python
|
|
77
|
+
from ex4nicegui.reactive import rxui
|
|
78
|
+
from ex4nicegui import deep_ref
|
|
79
|
+
|
|
80
|
+
data = deep_ref({"a": 1, "b": [1, 2, 3, 4]})
|
|
81
|
+
|
|
82
|
+
rxui.label(lambda: f"{data.value=!s}")
|
|
83
|
+
|
|
84
|
+
# No binding effect
|
|
85
|
+
rxui.input(value=data.value["a"])
|
|
86
|
+
|
|
87
|
+
# readonly binding
|
|
88
|
+
rxui.input(value=lambda: data.value["a"])
|
|
89
|
+
|
|
90
|
+
# two-way binding
|
|
91
|
+
rxui.input(value=rxui.vmodel(data.value,'a'))
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
"""
|
|
95
|
+
|
|
96
|
+
if not is_ref(ref_obj):
|
|
97
|
+
result = cast(Any, ref_obj)
|
|
98
|
+
for attr in attrs:
|
|
99
|
+
result = result[attr]
|
|
100
|
+
|
|
101
|
+
return result
|
|
102
|
+
|
|
103
|
+
if isinstance(ref_obj, RefWrapper):
|
|
104
|
+
ref_obj._is_readonly = False
|
|
105
|
+
|
|
106
|
+
if attrs:
|
|
107
|
+
wrapper = create_writeable_wrapper(ref_obj, attrs)
|
|
108
|
+
|
|
109
|
+
return cast(
|
|
110
|
+
TRef,
|
|
111
|
+
wrapper,
|
|
112
|
+
)
|
|
113
|
+
else:
|
|
114
|
+
warnings.warn(
|
|
115
|
+
"""Maybe you don't need to use vmodel""",
|
|
116
|
+
stacklevel=2,
|
|
117
|
+
)
|
|
118
|
+
|
|
119
|
+
return cast(
|
|
120
|
+
TRef,
|
|
121
|
+
ref_obj,
|
|
122
|
+
)
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
def vmodel_with_index(ref: Ref, index: TMaybeRef[int], *keys: Union[str, int]) -> Ref:
|
|
126
|
+
proxy = ref.value
|
|
127
|
+
|
|
128
|
+
def getter():
|
|
129
|
+
item = proxy[to_value(index)]
|
|
130
|
+
result = item
|
|
131
|
+
|
|
132
|
+
for k in keys:
|
|
133
|
+
result = get_attribute(result, k)
|
|
134
|
+
return result
|
|
135
|
+
|
|
136
|
+
def setter(value):
|
|
137
|
+
item = proxy[to_value(index)]
|
|
138
|
+
|
|
139
|
+
if len(keys) == 1:
|
|
140
|
+
set_attribute(item, keys[0], value)
|
|
141
|
+
return
|
|
142
|
+
|
|
143
|
+
obj = get_attribute(item, keys[0])
|
|
144
|
+
|
|
145
|
+
for k in keys[1:-1]:
|
|
146
|
+
set_attribute(obj, k, get_attribute(obj, k))
|
|
147
|
+
|
|
148
|
+
set_attribute(obj, keys[-1], value)
|
|
149
|
+
|
|
150
|
+
return RefWrapper(getter, setter) # type: ignore
|
ex4nicegui/reactive/base.py
CHANGED
|
@@ -25,7 +25,7 @@ from ex4nicegui.utils.signals import (
|
|
|
25
25
|
)
|
|
26
26
|
from ex4nicegui.utils.clientScope import new_scope
|
|
27
27
|
from ex4nicegui.utils.types import _TMaybeRef as TMaybeRef
|
|
28
|
-
from nicegui import
|
|
28
|
+
from nicegui import ui
|
|
29
29
|
from nicegui.elements.mixins.text_element import TextElement
|
|
30
30
|
from nicegui.elements.mixins.value_element import ValueElement
|
|
31
31
|
from ex4nicegui.reactive.services.reactive_service import inject_handle_delete
|
|
@@ -58,7 +58,6 @@ class BindableUi(Generic[TWidget]):
|
|
|
58
58
|
def __init__(self, element: TWidget) -> None:
|
|
59
59
|
self._element = element
|
|
60
60
|
inject_handle_delete(self.element, self._on_element_delete)
|
|
61
|
-
self.tailwind = Tailwind(cast(ui.element, self._element))
|
|
62
61
|
self._effect_scope = new_scope()
|
|
63
62
|
self.__used_scope_style = False
|
|
64
63
|
|
|
@@ -185,7 +184,7 @@ class BindableUi(Generic[TWidget]):
|
|
|
185
184
|
|
|
186
185
|
def props_str():
|
|
187
186
|
props_dict = (
|
|
188
|
-
f"""{name if isinstance(raw_value,bool) else f"{name}='{raw_value}'"}"""
|
|
187
|
+
f"""{name if isinstance(raw_value, bool) else f"{name}='{raw_value}'"}"""
|
|
189
188
|
for name, value in props.items()
|
|
190
189
|
if (raw_value := to_value(value))
|
|
191
190
|
)
|
|
@@ -15,11 +15,8 @@ class DeferredTask:
|
|
|
15
15
|
task()
|
|
16
16
|
|
|
17
17
|
# Avoid events becoming ineffective due to page refresh when sharing the client.
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
# note:https://github.com/CrystalWindSnake/ex4nicegui/issues/227
|
|
21
|
-
self._tasks.clear()
|
|
22
|
-
client.connect_handlers.remove(on_client_connect) # type: ignore
|
|
18
|
+
self._tasks.clear()
|
|
19
|
+
client.connect_handlers.remove(on_client_connect) # type: ignore
|
|
23
20
|
|
|
24
21
|
ui.context.client.on_connect(on_client_connect)
|
|
25
22
|
|
|
@@ -1,19 +1,14 @@
|
|
|
1
1
|
from typing import Callable, List, Optional
|
|
2
2
|
from nicegui.elements.mixins.content_element import ContentElement
|
|
3
3
|
from pathlib import Path
|
|
4
|
-
import nicegui
|
|
5
4
|
from dataclasses import dataclass
|
|
6
5
|
from nicegui.events import UiEventArguments
|
|
7
6
|
from nicegui.dataclasses import KWONLY_SLOTS
|
|
8
7
|
|
|
9
|
-
NG_ROOT = Path(nicegui.__file__).parent / "elements"
|
|
10
|
-
|
|
11
8
|
EX4_LIBS_ROOT = Path(__file__).parent.parent.parent / "libs"
|
|
12
9
|
|
|
13
10
|
dependencies = [
|
|
14
|
-
NG_ROOT / "lib/mermaid/mermaid.esm.min.mjs",
|
|
15
11
|
EX4_LIBS_ROOT / "d3/*.js",
|
|
16
|
-
NG_ROOT / "lib/mermaid/*.js",
|
|
17
12
|
]
|
|
18
13
|
|
|
19
14
|
|
ex4nicegui/reactive/vfor.py
CHANGED
ex4nicegui/utils/clientScope.py
CHANGED
|
@@ -34,14 +34,11 @@ class NgClientScopeManager:
|
|
|
34
34
|
if client.id not in self._client_scope_map:
|
|
35
35
|
self._client_scope_map[client.id] = NgScopeSuite()
|
|
36
36
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
if e.id in self._client_scope_map:
|
|
43
|
-
self._client_scope_map[e.id]._top_scope.dispose() # type: ignore
|
|
44
|
-
del self._client_scope_map[e.id]
|
|
37
|
+
@client.on_disconnect
|
|
38
|
+
def _(e: Client):
|
|
39
|
+
if e.id in self._client_scope_map:
|
|
40
|
+
self._client_scope_map[e.id]._top_scope.dispose() # type: ignore
|
|
41
|
+
del self._client_scope_map[e.id]
|
|
45
42
|
|
|
46
43
|
return self._client_scope_map[client.id]
|
|
47
44
|
|
ex4nicegui/utils/signals.py
CHANGED
|
@@ -3,6 +3,7 @@ import inspect
|
|
|
3
3
|
import signe
|
|
4
4
|
from signe.core.scope import Scope
|
|
5
5
|
from .clientScope import _CLIENT_SCOPE_MANAGER
|
|
6
|
+
from typing_extensions import TypeIs
|
|
6
7
|
from typing import (
|
|
7
8
|
Any,
|
|
8
9
|
Dict,
|
|
@@ -48,7 +49,7 @@ def is_setter_ref(obj):
|
|
|
48
49
|
return isinstance(obj, (signe.Signal, RefWrapper))
|
|
49
50
|
|
|
50
51
|
|
|
51
|
-
def is_ref(obj: Any):
|
|
52
|
+
def is_ref(obj: Any) -> TypeIs[Ref[T]]:
|
|
52
53
|
"""Checks if a value is a ref object."""
|
|
53
54
|
return signe.is_signal(obj) or isinstance(obj, (RefWrapper))
|
|
54
55
|
|
|
@@ -1,24 +1,15 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: ex4nicegui
|
|
3
|
-
Version: 0.
|
|
4
|
-
Summary: Extension library based on nicegui, providing data responsive,BI functionality modules
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
Requires-Python: >=3.
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
-
Requires-Dist: executing (>=2.0.1,<3.0.0)
|
|
19
|
-
Requires-Dist: nicegui (>=2.21.1,<3.0.0)
|
|
20
|
-
Requires-Dist: signe (>=0.4.22,<0.5.0)
|
|
21
|
-
Project-URL: Repository, https://github.com/CrystalWindSnake/ex4nicegui
|
|
3
|
+
Version: 0.9.0
|
|
4
|
+
Summary: Extension library based on nicegui, providing data responsive,BI functionality modules.
|
|
5
|
+
Author-email: CrystalWindSnake <568166495@qq.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Keywords: ex4nicegui,gui,nicegui,ui,web,webui
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Requires-Dist: executing~=2.0.1
|
|
11
|
+
Requires-Dist: nicegui~=3.0.0
|
|
12
|
+
Requires-Dist: signe~=0.4.22
|
|
22
13
|
Description-Content-Type: text/markdown
|
|
23
14
|
|
|
24
15
|
# ex4nicegui
|
|
@@ -1915,4 +1906,3 @@ rxui.input(value=text)
|
|
|
1915
1906
|
rxui.image(qr_code.code).classes("w-20 h-20").props("no-transition")
|
|
1916
1907
|
```
|
|
1917
1908
|
|
|
1918
|
-
|
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
ex4nicegui/__init__.py,sha256=uLZbmhk7iRVcT61bKRDjOZ00XMwffPaiEjzOpGiqo6U,1236
|
|
2
|
+
ex4nicegui/version.py,sha256=NE7u1piESstg3xCtf5hhV4iedGs2qJQw9SiC3ZSpiio,90
|
|
2
3
|
ex4nicegui/bi/__init__.py,sha256=eu-2CuzzrcHCyKQOfoo87v6C9nSwFDdeLhjY0cRV13M,315
|
|
3
|
-
ex4nicegui/bi/dataSource.py,sha256=
|
|
4
|
+
ex4nicegui/bi/dataSource.py,sha256=BAlrBP4-K_maqMD9RoXwBxwXwenaEHFnooEyjGF9vA0,7606
|
|
4
5
|
ex4nicegui/bi/dataSourceFacade.py,sha256=6p4gXxEd8pGHoM8w4h8Ojy-_ZxIUqlJHIdbGwdNdh5U,8248
|
|
6
|
+
ex4nicegui/bi/index.py,sha256=orzOh-5AN4gq2xsqaLs711pjrueUA9YJd4alQGloCP0,2121
|
|
7
|
+
ex4nicegui/bi/protocols.py,sha256=SjwYrS21L6dcNfYrLvh5pESya0NIa6ihQ6URMU6z-6Q,4529
|
|
8
|
+
ex4nicegui/bi/types.py,sha256=PGPUXr17iRmxxYHxHKJSdxp5CdAkHWb2_9nJ1GwYRlc,355
|
|
5
9
|
ex4nicegui/bi/elements/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
10
|
ex4nicegui/bi/elements/containers.py,sha256=5a9ZkzyVNLnK7DftDYdbVRo0bQFvuMHRI9LBGR__YuI,358
|
|
7
11
|
ex4nicegui/bi/elements/layouts.py,sha256=teb0Vp-fgsByBNPTiW73kXEu2JponRRj4QQanaalcA0,898
|
|
8
12
|
ex4nicegui/bi/elements/models.py,sha256=YfQlW1n9sNRHT2nBfA07n_1xqwJ7GfJCmXxgDYtbzSc,1534
|
|
9
13
|
ex4nicegui/bi/elements/text.py,sha256=oX7S1cVQL6YGMOlQG_cdwK9duzOHCPG0lOi9qTZwo6s,808
|
|
10
|
-
ex4nicegui/bi/elements/ui_aggrid.py,sha256=
|
|
14
|
+
ex4nicegui/bi/elements/ui_aggrid.py,sha256=HBcus96hwQ0Oo9NYIEcDio0R-Zz7Jik5H0XldV3-K6Q,2022
|
|
11
15
|
ex4nicegui/bi/elements/ui_date_picker.js,sha256=Tk6NACKVsCnqhWZtuNA6Xt2e-AWI54AnjfHPIldaM5A,852
|
|
12
16
|
ex4nicegui/bi/elements/ui_date_picker.py,sha256=PGv8gsgc4hkvWa-EN19qznEllV7DAzz7v4aTwdx9do4,2260
|
|
13
17
|
ex4nicegui/bi/elements/ui_echarts.py,sha256=B-YCMLzb4Wr3sQIMbtTZAoVXfPqTBvbZk-CU4vFBbBk,2248
|
|
@@ -16,26 +20,18 @@ ex4nicegui/bi/elements/ui_range.py,sha256=1tnka-a0jVfqTwvypKIRgHb6EzYGn3DmsWr3yv
|
|
|
16
20
|
ex4nicegui/bi/elements/ui_select.py,sha256=yOab3YrHCZ5kkU3bmDdr-LIAMhOunUsCbtctR8WpnLI,3872
|
|
17
21
|
ex4nicegui/bi/elements/ui_slider.py,sha256=-b1k3i1v8Z9WIwRaI0PJoYxR3Nbq1GUEyjmQnq9jIeo,2165
|
|
18
22
|
ex4nicegui/bi/elements/ui_table.py,sha256=aKL26xbiCIQG_-KFEozXjbB4G88FdOK25k2H0k24bys,1810
|
|
19
|
-
ex4nicegui/bi/index.py,sha256=orzOh-5AN4gq2xsqaLs711pjrueUA9YJd4alQGloCP0,2121
|
|
20
|
-
ex4nicegui/bi/protocols.py,sha256=SjwYrS21L6dcNfYrLvh5pESya0NIa6ihQ6URMU6z-6Q,4529
|
|
21
|
-
ex4nicegui/bi/types.py,sha256=PGPUXr17iRmxxYHxHKJSdxp5CdAkHWb2_9nJ1GwYRlc,355
|
|
22
23
|
ex4nicegui/experimental_/__init__.py,sha256=HODL0f70HUzVrfRwUzdCwxTp_9mYr4D1nnzd8jevlMw,69
|
|
23
24
|
ex4nicegui/experimental_/gridLayout/__init__.py,sha256=c9k-zykhKW3Ol6QECUoKqJW9QEuhA9xPi8s4Dm4m7SU,125
|
|
24
25
|
ex4nicegui/experimental_/gridLayout/index.py,sha256=zFXuvFroo5EC1CFjt-b4hMiEy67hGP5J1GYTKH6kpUU,4737
|
|
25
|
-
ex4nicegui/gsap/__init__.py,sha256=hoLf8K7_-W4WMx1SGCVe3JGl9DzX9wtJmvj5lOqMWS4,439
|
|
26
|
-
ex4nicegui/gsap/gsap.py,sha256=JM3xM9OjjmUMSV-be5-H-geiw61xDU3ZljDyl8yyZAU,4638
|
|
27
|
-
ex4nicegui/gsap/timeline.js,sha256=CB300drH7UUSfy_WDeuWHSNh3WX-vwbRtKBLL1Ak43o,1241
|
|
28
|
-
ex4nicegui/gsap/timeline.py,sha256=EfJ3Iom3EbJMML8PnRDAO_nn58j2bone3uWrd3UubeU,2390
|
|
29
|
-
ex4nicegui/gsap/wrapGsap.js,sha256=0Iz7qh8aA-h3svV7fW4U5k_pX7zXCcIdHDaG7NNvgLU,1045
|
|
30
26
|
ex4nicegui/helper/__init__.py,sha256=a-9skUII1iofsWU8xlieQrmeKYb9PjVsqF5TTO34wn8,98
|
|
31
27
|
ex4nicegui/helper/client_instance_locker.py,sha256=d-T5M0SFM8zOcr1paTn6gN5MVciGToL-fri4vJ7iY08,1027
|
|
32
28
|
ex4nicegui/layout/__init__.py,sha256=YT76Ec7p4aFOGms6wc19207flBeyI6jrq7Kg_FQ2wnQ,278
|
|
33
|
-
ex4nicegui/layout/gridFlex/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
34
29
|
ex4nicegui/layout/gridFlex/GridFlex.js,sha256=ljkxGFucBUIPksMAT5w_35sxGogC7OzxzXnOw21Z3_k,4468
|
|
30
|
+
ex4nicegui/layout/gridFlex/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
35
31
|
ex4nicegui/layout/gridFlex/gridFlex.py,sha256=pSLaKOiAzKAt_ih2TRe0E8SKrwJVyaTtdnsiWcy--Mk,7194
|
|
36
32
|
ex4nicegui/layout/gridFlex/utils.py,sha256=hBuusveBRaHSubIr2q38AP033-VtXDFE_fDzZtg4h44,1236
|
|
37
33
|
ex4nicegui/layout/rxFlex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
-
ex4nicegui/layout/rxFlex/index.py,sha256=
|
|
34
|
+
ex4nicegui/layout/rxFlex/index.py,sha256=gpmNTqSKISO9aBlZe_cpOQOtL4FWJ6g3UdnStiNl4m0,3637
|
|
39
35
|
ex4nicegui/layout/rxFlex/types.py,sha256=OQBo3kkmtXhMo3BDI0GjX36HPJLDV1Cm67hPZGb1k2Q,1411
|
|
40
36
|
ex4nicegui/libs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
37
|
ex4nicegui/libs/d3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -48,44 +44,34 @@ ex4nicegui/libs/d3/d3-selection.ems.js,sha256=_8j6eHkhpnEBrXj2QPqw42EYNHBrJEQ6vG
|
|
|
48
44
|
ex4nicegui/libs/d3/d3-timer.ems.js,sha256=3qORYuBkFKrqKQKastbcW5RieGc3o2zypRuQ2GqHVX4,2320
|
|
49
45
|
ex4nicegui/libs/d3/d3-transition.ems.js,sha256=AXOV8uptby8hVfOabGwGXRsI8f-U2lHT7szmhya74mk,14024
|
|
50
46
|
ex4nicegui/libs/d3/d3-zoom.ems.js,sha256=It5XGvRB3NAtiDi1m84BDxLicw-7i_oFhctc79zfXpk,11599
|
|
51
|
-
ex4nicegui/
|
|
52
|
-
ex4nicegui/
|
|
53
|
-
ex4nicegui/
|
|
54
|
-
ex4nicegui/
|
|
55
|
-
ex4nicegui/libs/gsap/CSSRulePlugin.js,sha256=2aRcUJfxlxIhZbm9SZr3KZu3q94kAxCcT9W3hxUb50k,3674
|
|
56
|
-
ex4nicegui/libs/gsap/CustomEase.js,sha256=9PDSy4tVE9kcWzkKxA6heX9veNacvFDhywHl0lFXBqg,11588
|
|
57
|
-
ex4nicegui/libs/gsap/Draggable.js,sha256=HclA35uJXDlfggooraZp_2NGA0_Ym5frY48w-NA6ngc,103102
|
|
58
|
-
ex4nicegui/libs/gsap/EaselPlugin.js,sha256=1daaL5aA-P6pA0Id1MEcUfdgUaV9u3NNG_dnDDSrstk,9125
|
|
59
|
-
ex4nicegui/libs/gsap/EasePack.js,sha256=5BDAP1LFH9orIeU3it_GC0YO4h7sOclCu66wXWN6YHo,5530
|
|
60
|
-
ex4nicegui/libs/gsap/Flip.js,sha256=DpRgrk7EBVksoULjHpIYAY3CHilKN36CPIOBHiHS_n0,48981
|
|
61
|
-
ex4nicegui/libs/gsap/gsap-core.js,sha256=2O-pRpBDvVdGSGS5fJGlWwHCr6LRMWYJJUor05OXt8w,175009
|
|
62
|
-
ex4nicegui/libs/gsap/gsap.mjs,sha256=aH-Oixtsb_uFmNI--C4LG_7pRUW2lo5whoXQT7Sx9zg,669
|
|
63
|
-
ex4nicegui/libs/gsap/MotionPathPlugin.js,sha256=jyr69z9prICDUDFkSyNTeSp0QoZ5S2ZxzlvDHXEichA,12852
|
|
64
|
-
ex4nicegui/libs/gsap/Observer.js,sha256=qRK3v1VmC3aurzHq-j_qyxISwPSKrq1NnyFg1qT91XM,26112
|
|
65
|
-
ex4nicegui/libs/gsap/PixiPlugin.js,sha256=lYX5Kxv226-k5OlBizUMTdMEXu2qbeKXTCFqQWcHWp4,15404
|
|
66
|
-
ex4nicegui/libs/gsap/ScrollToPlugin.js,sha256=6dnkJlGqlra1D3yZYcDM6-k31qpcEfuUuw9_MRKJ3q8,9217
|
|
67
|
-
ex4nicegui/libs/gsap/ScrollTrigger.js,sha256=GpWUR3MjYhOuIif4oyHyqtS4MaZFN8QYkR6tUTmlobE,112584
|
|
68
|
-
ex4nicegui/libs/gsap/TextPlugin.js,sha256=TJf7THczBCBLGosa_avxN-xq2JU8Qv2LFeDHUYIECM4,4877
|
|
69
|
-
ex4nicegui/libs/gsap/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
70
|
-
ex4nicegui/libs/gsap/utils/matrix.js,sha256=77scrxbQZXx4ex5HkvnT9IkhMG1rQoDNp4TSYgUeYVk,15235
|
|
71
|
-
ex4nicegui/libs/gsap/utils/paths.js,sha256=2SPaRHQ7zgba9cH8hGhkTYPCZdrrEhE2qhh6ECAEvSA,49314
|
|
72
|
-
ex4nicegui/libs/gsap/utils/strings.js,sha256=47G9slz5ltG9mDSwrfQDtWzzdV5QJ-AIMLRMNK0VSiM,10472
|
|
73
|
-
ex4nicegui/reactive/__init__.py,sha256=Mzt4pXWcj5abJuUfqyy_oGex-jTmaXiH3fiB972JprY,4695
|
|
74
|
-
ex4nicegui/reactive/base.py,sha256=CQmWhrKHNMF2ql7O6VOKEOBdEcc3-yagOcERpnUPYus,16323
|
|
75
|
-
ex4nicegui/reactive/deferredTask.py,sha256=g78TTG1EIkBxjPih01xmrCZw9OxQG93veSVSELWKfcU,987
|
|
76
|
-
ex4nicegui/reactive/dropZone/dropZone.js,sha256=7rSpFJX-Fk_W_NGZhOTyuEw0bzR-YUc8ZYPzQG9KzE0,2713
|
|
77
|
-
ex4nicegui/reactive/dropZone/dropZone.py,sha256=hg9UKTayff8v8Ek-n38h_3wX1Qmiotvdyv1Hsqilh5Y,2590
|
|
78
|
-
ex4nicegui/reactive/EChartsComponent/ECharts.js,sha256=Dhsfzlio9zO2T3LhK5cI7IdPXHtWhbBXMdlL3uvkU24,4110
|
|
79
|
-
ex4nicegui/reactive/EChartsComponent/ECharts.py,sha256=AwUvuAMHtzK4iXPG2TqmNUvppkEAlY_axDl9nh1lqTA,4907
|
|
80
|
-
ex4nicegui/reactive/EChartsComponent/events.py,sha256=ln10cNw5ODiSmdKVi6KBZ6JMR3YIZ6itYZcMgNAlKhA,741
|
|
81
|
-
ex4nicegui/reactive/EChartsComponent/types.py,sha256=_7AekG0IyzRpDEBZMtKRiZ3o3dUCcn6btegBk8c9Fig,1001
|
|
82
|
-
ex4nicegui/reactive/EChartsComponent/utils.py,sha256=YqxodbGD_lk_Bp-K8s8XvgqSXRf_CIHmzeubrqFRuVM,1013
|
|
47
|
+
ex4nicegui/reactive/__init__.py,sha256=3uG0MP0A0qVvxFm2gudCOYtl6urjCRu6pvrTqlsecC8,4622
|
|
48
|
+
ex4nicegui/reactive/_vmodel.py,sha256=cWkn84YXOBjQXS4K3tq33j9gmoRIP_wXCrWE5Dc8mxc,3561
|
|
49
|
+
ex4nicegui/reactive/base.py,sha256=NLZf-r2lpJkoIMX3Lr5I8q4lzV6_jEBoc8F7U1qyRQY,16247
|
|
50
|
+
ex4nicegui/reactive/deferredTask.py,sha256=PYId2Ey-rLqehBJUeEvDeRCgoYfOPQZwFWLZq2O43Sk,783
|
|
83
51
|
ex4nicegui/reactive/empty.js,sha256=Y-caS4CN8jUq59LgGgcvgfkndze-RgWF_ZMmAcxOrbw,50
|
|
84
52
|
ex4nicegui/reactive/empty.py,sha256=kB851B12V1_VCNsFKW6OmjcdIiuZqGEGjLgA6k6yug8,132
|
|
85
53
|
ex4nicegui/reactive/fileWatcher.py,sha256=gjeZhgar02f-qGQa47Tj5SMaCP_ftRtSU898XUmXl1U,1472
|
|
86
|
-
ex4nicegui/reactive/
|
|
87
|
-
ex4nicegui/reactive/
|
|
88
|
-
ex4nicegui/reactive/
|
|
54
|
+
ex4nicegui/reactive/q_pagination.py,sha256=nUszZ4fvCf4leQ1DpS70laCDf40RprbOex7SISbAEek,1555
|
|
55
|
+
ex4nicegui/reactive/rxui.py,sha256=gZ8ZEjGuJFKcedEZhcm4PIZguNkY-Wv5yQx80QnsBKI,31
|
|
56
|
+
ex4nicegui/reactive/scopedStyle.js,sha256=RtpfUwkpjMv_cbplkr2UtydKAxB5Dz7Sm6jRgPHRhow,1569
|
|
57
|
+
ex4nicegui/reactive/scopedStyle.py,sha256=aYP4sIFzAmPaLyZV8m9jqyuGmOcJnC-5s07UQnoNSag,738
|
|
58
|
+
ex4nicegui/reactive/transitionGroup.js,sha256=rbfNU3Jrz9WFDQih3BgZOgC1MBr6j9cODZ9XggMAaTs,898
|
|
59
|
+
ex4nicegui/reactive/transitionGroup.py,sha256=VWyYL3QUfX6YQXuxwBFF4sJ4P5VP1S-bCjLKUr28KEY,597
|
|
60
|
+
ex4nicegui/reactive/usePagination.py,sha256=8YLqcZ_ecuX0FdQ0ct-XdEFfMAVkubAS_K02YOhg5oo,2584
|
|
61
|
+
ex4nicegui/reactive/vfor.js,sha256=sCy3KR5Aeyx68yh9VI6I9Vj7bnVuir_LUYKZBe_ePTg,908
|
|
62
|
+
ex4nicegui/reactive/vfor.py,sha256=ZFGkzb33ap9oJo1Zw_WLxaLOu1ctDCBOybSLMZ8OKKc,7951
|
|
63
|
+
ex4nicegui/reactive/view_model.py,sha256=OSOnOTc86JgYqO6pb3J_IrOdDKP0MyEIeSHYX4P3EOI,9904
|
|
64
|
+
ex4nicegui/reactive/EChartsComponent/ECharts.js,sha256=6SHk9ZJi6Gl2TJcg-UM2iXdoF8oxIv8aLoFjI-81Il0,4135
|
|
65
|
+
ex4nicegui/reactive/EChartsComponent/ECharts.py,sha256=rc-6Ba0xeBtKuxjzE59x__WPMhJa2G5Bc0edZc5KBy4,4741
|
|
66
|
+
ex4nicegui/reactive/EChartsComponent/events.py,sha256=ln10cNw5ODiSmdKVi6KBZ6JMR3YIZ6itYZcMgNAlKhA,741
|
|
67
|
+
ex4nicegui/reactive/EChartsComponent/types.py,sha256=_7AekG0IyzRpDEBZMtKRiZ3o3dUCcn6btegBk8c9Fig,1001
|
|
68
|
+
ex4nicegui/reactive/EChartsComponent/utils.py,sha256=YqxodbGD_lk_Bp-K8s8XvgqSXRf_CIHmzeubrqFRuVM,1013
|
|
69
|
+
ex4nicegui/reactive/UseDraggable/UseDraggable.js,sha256=xZm_g_L2lamxAjiAeGPDR0CNmjlvgzuiJ6gH77pNrg4,5473
|
|
70
|
+
ex4nicegui/reactive/UseDraggable/UseDraggable.py,sha256=Zh6NfQPSf3nMvCL8wDA4tjhyH7jfqt9cnbJ7L4cI-SU,3929
|
|
71
|
+
ex4nicegui/reactive/dropZone/dropZone.js,sha256=7rSpFJX-Fk_W_NGZhOTyuEw0bzR-YUc8ZYPzQG9KzE0,2713
|
|
72
|
+
ex4nicegui/reactive/dropZone/dropZone.py,sha256=hg9UKTayff8v8Ek-n38h_3wX1Qmiotvdyv1Hsqilh5Y,2590
|
|
73
|
+
ex4nicegui/reactive/mermaid/mermaid.js,sha256=uWQOhbjhzLHPDRez-ljNRHmb-z4B9fr1PayyUpJEZzo,2320
|
|
74
|
+
ex4nicegui/reactive/mermaid/mermaid.py,sha256=teBF4qwMChbWKYl1PpDYR0eqmADIblC3-yfsW_tgPgA,1894
|
|
89
75
|
ex4nicegui/reactive/mixins/backgroundColor.py,sha256=KO0aP8jKo84KMW5fMKaxVLxKMP8VFX2YTyCYsH8iJt0,1077
|
|
90
76
|
ex4nicegui/reactive/mixins/disableable.py,sha256=1PqtxDoOobdaWHo379nLSywTVCoxf_VKjORYoU9YHBg,1075
|
|
91
77
|
ex4nicegui/reactive/mixins/flexLayout.py,sha256=FfFzaMCuiu5GwzIPMtcZjkj7vZu6iB5yYCN3HKbCcQI,1329
|
|
@@ -135,29 +121,16 @@ ex4nicegui/reactive/officials/toggle.py,sha256=qpTcoQHZ0Uw2OGRU6XIYP1SHJgXqB7giP
|
|
|
135
121
|
ex4nicegui/reactive/officials/tooltip.py,sha256=lkDOf5Z6vpDsO9Y-nsRRwdhmYVFb9YrWv7lQUNY4_Ho,1136
|
|
136
122
|
ex4nicegui/reactive/officials/tree.py,sha256=qNgAU8rPfORXlz432wZihWEEtuLrWp8SaBZKZJsYIU4,3684
|
|
137
123
|
ex4nicegui/reactive/officials/upload.py,sha256=5SX2CFkf3s_4bPcnx0bmKRA4eYVlm0S8RBeQ7qHnqck,2395
|
|
138
|
-
ex4nicegui/reactive/q_pagination.py,sha256=nUszZ4fvCf4leQ1DpS70laCDf40RprbOex7SISbAEek,1555
|
|
139
|
-
ex4nicegui/reactive/rxui.py,sha256=gZ8ZEjGuJFKcedEZhcm4PIZguNkY-Wv5yQx80QnsBKI,31
|
|
140
|
-
ex4nicegui/reactive/scopedStyle.js,sha256=RtpfUwkpjMv_cbplkr2UtydKAxB5Dz7Sm6jRgPHRhow,1569
|
|
141
|
-
ex4nicegui/reactive/scopedStyle.py,sha256=aYP4sIFzAmPaLyZV8m9jqyuGmOcJnC-5s07UQnoNSag,738
|
|
142
124
|
ex4nicegui/reactive/services/pandas_service.py,sha256=XOoy6tZr4TpTyhewAH59eiSwVFxqwOipdM_j-mkGpdM,1043
|
|
143
125
|
ex4nicegui/reactive/services/reactive_service.py,sha256=FT8tWCC_aMD1YK6V4jQreyGmQAbcWzKbaGGZ4ME-bKw,3659
|
|
144
126
|
ex4nicegui/reactive/systems/color_system.py,sha256=qXRTczxfILduHAVlNJqLSed-0x-LN6TyBSegYwW9vfk,4352
|
|
145
127
|
ex4nicegui/reactive/systems/object_system.py,sha256=bja9YNb4v5fVZl5gJvVA4HbwRssRp-2yFy3JBzNeKxA,752
|
|
146
128
|
ex4nicegui/reactive/systems/reactive_system.py,sha256=s4mOfaMD0Dzv_-HjzzTMcqeo5YWMF4NSDN8hIbhPAoM,973
|
|
147
|
-
ex4nicegui/reactive/transitionGroup.js,sha256=rbfNU3Jrz9WFDQih3BgZOgC1MBr6j9cODZ9XggMAaTs,898
|
|
148
|
-
ex4nicegui/reactive/transitionGroup.py,sha256=VWyYL3QUfX6YQXuxwBFF4sJ4P5VP1S-bCjLKUr28KEY,597
|
|
149
|
-
ex4nicegui/reactive/UseDraggable/UseDraggable.js,sha256=xZm_g_L2lamxAjiAeGPDR0CNmjlvgzuiJ6gH77pNrg4,5473
|
|
150
|
-
ex4nicegui/reactive/UseDraggable/UseDraggable.py,sha256=Zh6NfQPSf3nMvCL8wDA4tjhyH7jfqt9cnbJ7L4cI-SU,3929
|
|
151
129
|
ex4nicegui/reactive/useMouse/UseMouse.js,sha256=6FjcYozJK5zFwK1kBP8JlfMyTUwKVK3k_0wSdhapaZs,2722
|
|
152
130
|
ex4nicegui/reactive/useMouse/UseMouse.py,sha256=cFNlso7_BneyAfGmWbl-N9vQwGleV2ArsqdRBv_yS6Y,2126
|
|
153
|
-
ex4nicegui/reactive/usePagination.py,sha256=8YLqcZ_ecuX0FdQ0ct-XdEFfMAVkubAS_K02YOhg5oo,2584
|
|
154
|
-
ex4nicegui/reactive/vfor.js,sha256=sCy3KR5Aeyx68yh9VI6I9Vj7bnVuir_LUYKZBe_ePTg,908
|
|
155
|
-
ex4nicegui/reactive/vfor.py,sha256=SSu3X2DLZeCveTrcLANYNMNpLv34cJonLCp_9W0HFlY,7931
|
|
156
|
-
ex4nicegui/reactive/view_model.py,sha256=OSOnOTc86JgYqO6pb3J_IrOdDKP0MyEIeSHYX4P3EOI,9904
|
|
157
|
-
ex4nicegui/reactive/vmodel.py,sha256=ymrUpC_68jaHF76ivKmgz-C4Xl6i65c_41uMc0ffEhY,5936
|
|
158
131
|
ex4nicegui/toolbox/__init__.py,sha256=Q5pIvMJX5Ugf2dLcffU4wK6DFQW_qsKV5iTJPoALvTQ,235
|
|
159
|
-
ex4nicegui/toolbox/core/vue_use.py,sha256=0wzNJTDuZ08BNEVs0ibXiinje8SQIpeqEJIoug25iwg,969
|
|
160
132
|
ex4nicegui/toolbox/core/VueUse.js,sha256=TUpTJEygebNLgn-JvTf1rVQL0Ro-vw6Ej28_YxKRCTc,51127
|
|
133
|
+
ex4nicegui/toolbox/core/vue_use.py,sha256=nayrrd06hgQEF7I-GvS9nAmAiUhY31nQEZz_CCvGJa8,963
|
|
161
134
|
ex4nicegui/toolbox/functions/breakpoint.py,sha256=mBFBmLCJrzxV6h9jzVrMfcHdA7QiM8EC7y2y0T39uAQ,4059
|
|
162
135
|
ex4nicegui/toolbox/functions/dark.py,sha256=XqvTqu2CCEQZrpYVou1G1wOWysqmowRNoFBHpcPxaNw,3141
|
|
163
136
|
ex4nicegui/toolbox/functions/qr_code.py,sha256=4DQkjFczU9D4SFYx1Wj4VHROsUm3hbVUkqMVNQTgHbE,2502
|
|
@@ -166,27 +139,26 @@ ex4nicegui/tools/debug.py,sha256=h9iYHxw7jWWvmiExSpGi2hQl1PfhPZgC2KNS_GTuHSw,486
|
|
|
166
139
|
ex4nicegui/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
167
140
|
ex4nicegui/utils/apiEffect.py,sha256=uwIi-R4Q0MaGSVmvhEFIL0O8pjBWobB_8brGAe19Qm4,2645
|
|
168
141
|
ex4nicegui/utils/asyncComputed.py,sha256=LPb4ytvzsUEV4sKQ9bQASJn2VPB_pjZzeKcHVwcvb_c,1672
|
|
169
|
-
ex4nicegui/utils/clientScope.py,sha256=
|
|
142
|
+
ex4nicegui/utils/clientScope.py,sha256=XFfY7emzI2MYtGp7PPD5BlXcIlVCOttxvzA35eWnhvE,1601
|
|
170
143
|
ex4nicegui/utils/common.py,sha256=7P0vboDadLun6EMxNi3br9rKJgKt0QT4sy_66cHEwb4,994
|
|
171
144
|
ex4nicegui/utils/effect.py,sha256=LTtPTxx8-sP4VtZaFQjERB-ef3L2y5hu95GvTdj-nLo,2400
|
|
145
|
+
ex4nicegui/utils/refComputed.py,sha256=Vb7fyi0wNieFeLfCjXl6wSzpws3i6_aeCka1s9dsc8E,4232
|
|
146
|
+
ex4nicegui/utils/refWrapper.py,sha256=gX5sdfC1P4UXmMYM6FwdImfLD39y02kq7Af6dIMDrZ8,1472
|
|
147
|
+
ex4nicegui/utils/scheduler.py,sha256=1gyq7Y2BkbwmPK_Q9kpRpc1MOC9H7xcpxuix-RZhN9k,1787
|
|
148
|
+
ex4nicegui/utils/signals.py,sha256=qWn8AiZZoJL3aGuor05AHRl8T4P-u9jXk5fAIT9HDOA,8211
|
|
149
|
+
ex4nicegui/utils/types.py,sha256=pE5WOSbcTHxaAhnT24FaZEd1B2Z_lTcsd46w0OKiMyc,359
|
|
172
150
|
ex4nicegui/utils/proxy/__init__.py,sha256=L0SO_32i33Unue0fCFVpHdyZljuykWHjll3DmdecWnU,362
|
|
173
151
|
ex4nicegui/utils/proxy/base.py,sha256=g_7308xGAB3bB3EiEf_-0JKfUzImwt5_T9XVyT7zJJg,128
|
|
174
152
|
ex4nicegui/utils/proxy/bool.py,sha256=KQ2Sp2r4nLScif9DhupDmkpRhbsuXdpXTkxSrtFYtDE,1774
|
|
175
153
|
ex4nicegui/utils/proxy/date.py,sha256=wS0M4nfGVQ7A1u9tJkPqilEhDwcMKBjtTC9VjUsOqac,2356
|
|
176
|
-
ex4nicegui/utils/proxy/descriptor.py,sha256=
|
|
154
|
+
ex4nicegui/utils/proxy/descriptor.py,sha256=JghSrStOZyIT7u4gMoBtFKcuZVMMuWcXWt6rJNWbDI0,5355
|
|
177
155
|
ex4nicegui/utils/proxy/dict.py,sha256=MPtx-09ylf_bHXnkr1c7PmJeaq2KpDp-_Shyw5YjOLU,3046
|
|
178
156
|
ex4nicegui/utils/proxy/float.py,sha256=fdMUS7_xwypdDNscuZaUn3NA0vx8LGswAOc9kw0jK0c,5271
|
|
179
157
|
ex4nicegui/utils/proxy/int.py,sha256=0Y7L924Zzq6LWRZEmaTmoXf0J6kC0o5EtW--2Lk7SNw,7381
|
|
180
158
|
ex4nicegui/utils/proxy/list.py,sha256=bmjBMlO8UfJekL1nfGypMO21RKraIj1jw46-8QwfptE,4913
|
|
181
159
|
ex4nicegui/utils/proxy/string.py,sha256=BFZ5Uba47S68mMSoJFYFZqKjivJDz80vmEozxxfhUok,13861
|
|
182
160
|
ex4nicegui/utils/proxy/utils.py,sha256=8LawrZ8KmzP64iCmweFJh4kmwEvRxOp7MwV7AsnEMJM,148
|
|
183
|
-
ex4nicegui/
|
|
184
|
-
ex4nicegui/
|
|
185
|
-
ex4nicegui/
|
|
186
|
-
ex4nicegui
|
|
187
|
-
ex4nicegui/utils/types.py,sha256=pE5WOSbcTHxaAhnT24FaZEd1B2Z_lTcsd46w0OKiMyc,359
|
|
188
|
-
ex4nicegui/version.py,sha256=NE7u1piESstg3xCtf5hhV4iedGs2qJQw9SiC3ZSpiio,90
|
|
189
|
-
ex4nicegui-0.8.10.dist-info/LICENSE,sha256=0KDDElS2dl-HIsWvbpy8ywbLzJMBFzXLev57LnMIZXs,1094
|
|
190
|
-
ex4nicegui-0.8.10.dist-info/METADATA,sha256=Xu91UiZHZ6gemCwKXGXbPjmjyiypP-LjopE9PhkS7sQ,46834
|
|
191
|
-
ex4nicegui-0.8.10.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
|
192
|
-
ex4nicegui-0.8.10.dist-info/RECORD,,
|
|
161
|
+
ex4nicegui-0.9.0.dist-info/METADATA,sha256=arnF1arxhzOnOaA8g12GHTEcPl0qOpnR1CESG1fD5B0,46360
|
|
162
|
+
ex4nicegui-0.9.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
163
|
+
ex4nicegui-0.9.0.dist-info/licenses/LICENSE,sha256=0KDDElS2dl-HIsWvbpy8ywbLzJMBFzXLev57LnMIZXs,1094
|
|
164
|
+
ex4nicegui-0.9.0.dist-info/RECORD,,
|
ex4nicegui/gsap/__init__.py
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
from .gsap import set_defaults, from_, to, new, run_script
|
|
2
|
-
from .timeline import Timeline as timeline
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import warnings
|
|
6
|
-
|
|
7
|
-
RED = "\033[91m"
|
|
8
|
-
RESET = "\033[0m"
|
|
9
|
-
|
|
10
|
-
warnings.warn(
|
|
11
|
-
f"{RED}The gsap module is deprecated and will be removed in the next major version.{RESET}",
|
|
12
|
-
DeprecationWarning,
|
|
13
|
-
stacklevel=2,
|
|
14
|
-
)
|
|
15
|
-
|
|
16
|
-
__all__ = [
|
|
17
|
-
"set_defaults",
|
|
18
|
-
"from_",
|
|
19
|
-
"to",
|
|
20
|
-
"new",
|
|
21
|
-
"run_script",
|
|
22
|
-
"timeline",
|
|
23
|
-
]
|