ex4nicegui 0.4.1__py3-none-any.whl → 0.4.2__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/__init__.py +1 -1
- ex4nicegui/bi/elements/text.py +1 -1
- ex4nicegui/reactive/__index.py +1 -2
- ex4nicegui/reactive/drawer.py +1 -1
- ex4nicegui/reactive/officials/aggrid.py +1 -1
- ex4nicegui/reactive/officials/base.py +1 -1
- ex4nicegui/reactive/officials/button.py +1 -1
- ex4nicegui/reactive/officials/checkbox.py +1 -1
- ex4nicegui/reactive/officials/color_picker.py +2 -1
- ex4nicegui/reactive/officials/date.py +2 -1
- ex4nicegui/reactive/officials/drawer.py +2 -6
- ex4nicegui/reactive/officials/echarts.py +2 -1
- ex4nicegui/reactive/officials/html.py +2 -1
- ex4nicegui/reactive/officials/icon.py +2 -1
- ex4nicegui/reactive/officials/image.py +2 -1
- ex4nicegui/reactive/officials/input.py +2 -1
- ex4nicegui/reactive/officials/label.py +1 -1
- ex4nicegui/reactive/officials/number.py +2 -1
- ex4nicegui/reactive/officials/radio.py +2 -1
- ex4nicegui/reactive/officials/select.py +2 -1
- ex4nicegui/reactive/officials/slider.py +2 -1
- ex4nicegui/reactive/officials/switch.py +2 -1
- ex4nicegui/reactive/officials/table.py +1 -2
- ex4nicegui/reactive/officials/textarea.py +1 -1
- ex4nicegui/reactive/q_pagination.py +2 -5
- ex4nicegui/utils/signals.py +6 -0
- {ex4nicegui-0.4.1.dist-info → ex4nicegui-0.4.2.dist-info}/METADATA +1 -1
- {ex4nicegui-0.4.1.dist-info → ex4nicegui-0.4.2.dist-info}/RECORD +31 -31
- {ex4nicegui-0.4.1.dist-info → ex4nicegui-0.4.2.dist-info}/LICENSE +0 -0
- {ex4nicegui-0.4.1.dist-info → ex4nicegui-0.4.2.dist-info}/WHEEL +0 -0
- {ex4nicegui-0.4.1.dist-info → ex4nicegui-0.4.2.dist-info}/top_level.txt +0 -0
ex4nicegui/__init__.py
CHANGED
ex4nicegui/bi/elements/text.py
CHANGED
ex4nicegui/reactive/__index.py
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
from .officials import *
|
|
2
2
|
from .q_pagination import QPagination as q_pagination
|
|
3
3
|
from .local_file_picker import local_file_picker
|
|
4
|
-
from ex4nicegui.utils.signals import ref_computed
|
|
5
|
-
from signe import effect
|
|
4
|
+
from ex4nicegui.utils.signals import ref_computed, effect
|
|
6
5
|
from .UseDraggable.UseDraggable import use_draggable
|
|
7
6
|
from .useMouse.UseMouse import use_mouse
|
|
8
7
|
|
ex4nicegui/reactive/drawer.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from typing_extensions import Literal
|
|
2
2
|
from nicegui import ui
|
|
3
3
|
from ex4nicegui.reactive.officials import DrawerBindableUi
|
|
4
|
-
from
|
|
4
|
+
from ex4nicegui.utils.signals import effect
|
|
5
5
|
from typing import Union, Optional
|
|
6
6
|
|
|
7
7
|
_TDrawerSide = Literal["left", "right"]
|
|
@@ -11,13 +11,13 @@ from typing import (
|
|
|
11
11
|
overload,
|
|
12
12
|
)
|
|
13
13
|
from typing_extensions import Self
|
|
14
|
-
from signe import effect
|
|
15
14
|
from ex4nicegui.utils.signals import (
|
|
16
15
|
ReadonlyRef,
|
|
17
16
|
Ref,
|
|
18
17
|
to_ref,
|
|
19
18
|
ref_computed,
|
|
20
19
|
_TMaybeRef as TMaybeRef,
|
|
20
|
+
effect,
|
|
21
21
|
)
|
|
22
22
|
from nicegui import Tailwind, ui
|
|
23
23
|
from nicegui.elements.mixins.color_elements import (
|
|
@@ -3,11 +3,11 @@ from typing import (
|
|
|
3
3
|
Callable,
|
|
4
4
|
Optional,
|
|
5
5
|
)
|
|
6
|
-
from signe import effect
|
|
7
6
|
from ex4nicegui.utils.signals import (
|
|
8
7
|
ReadonlyRef,
|
|
9
8
|
is_ref,
|
|
10
9
|
_TMaybeRef as TMaybeRef,
|
|
10
|
+
effect,
|
|
11
11
|
)
|
|
12
12
|
from nicegui import ui
|
|
13
13
|
from .base import SingleValueBindableUi, _bind_color, DisableableBindableUi
|
|
@@ -5,11 +5,11 @@ from typing import (
|
|
|
5
5
|
TypeVar,
|
|
6
6
|
cast,
|
|
7
7
|
)
|
|
8
|
-
from signe import effect
|
|
9
8
|
from ex4nicegui.utils.signals import (
|
|
10
9
|
ReadonlyRef,
|
|
11
10
|
is_ref,
|
|
12
11
|
_TMaybeRef as TMaybeRef,
|
|
12
|
+
effect,
|
|
13
13
|
)
|
|
14
14
|
from nicegui import ui
|
|
15
15
|
from nicegui.elements.mixins.value_element import ValueElement
|
|
@@ -4,11 +4,12 @@ from typing import (
|
|
|
4
4
|
Optional,
|
|
5
5
|
Union,
|
|
6
6
|
)
|
|
7
|
-
|
|
7
|
+
|
|
8
8
|
from ex4nicegui.utils.signals import (
|
|
9
9
|
ReadonlyRef,
|
|
10
10
|
is_ref,
|
|
11
11
|
_TMaybeRef as TMaybeRef,
|
|
12
|
+
effect,
|
|
12
13
|
)
|
|
13
14
|
from nicegui import ui
|
|
14
15
|
from .base import SingleValueBindableUi
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
from typing import Any, Callable, List, Optional, TypeVar, cast
|
|
2
2
|
from typing_extensions import TypedDict
|
|
3
|
-
|
|
3
|
+
|
|
4
4
|
from ex4nicegui.utils.signals import (
|
|
5
5
|
ReadonlyRef,
|
|
6
6
|
is_ref,
|
|
7
7
|
_TMaybeRef as TMaybeRef,
|
|
8
|
+
effect,
|
|
8
9
|
)
|
|
9
10
|
from nicegui import ui
|
|
10
11
|
from .base import SingleValueBindableUi
|
|
@@ -2,12 +2,8 @@ from typing import (
|
|
|
2
2
|
Any,
|
|
3
3
|
)
|
|
4
4
|
from typing_extensions import Literal
|
|
5
|
-
|
|
6
|
-
from ex4nicegui.utils.signals import
|
|
7
|
-
to_value,
|
|
8
|
-
is_ref,
|
|
9
|
-
_TMaybeRef as TMaybeRef,
|
|
10
|
-
)
|
|
5
|
+
|
|
6
|
+
from ex4nicegui.utils.signals import to_value, is_ref, _TMaybeRef as TMaybeRef, effect
|
|
11
7
|
from nicegui import ui
|
|
12
8
|
from nicegui.page_layout import Drawer
|
|
13
9
|
from .base import SingleValueBindableUi
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
from typing import Any, Callable, Dict, List, Union, cast, Optional
|
|
2
2
|
from typing_extensions import Literal
|
|
3
|
-
|
|
3
|
+
|
|
4
4
|
from ex4nicegui.utils.signals import (
|
|
5
5
|
ReadonlyRef,
|
|
6
6
|
is_ref,
|
|
7
7
|
ref_computed,
|
|
8
8
|
_TMaybeRef as TMaybeRef,
|
|
9
9
|
to_ref,
|
|
10
|
+
effect,
|
|
10
11
|
)
|
|
11
12
|
from .base import BindableUi
|
|
12
13
|
from .utils import _convert_kws_ref2value
|
|
@@ -2,11 +2,12 @@ from typing import (
|
|
|
2
2
|
Optional,
|
|
3
3
|
cast,
|
|
4
4
|
)
|
|
5
|
-
|
|
5
|
+
|
|
6
6
|
from ex4nicegui.utils.signals import (
|
|
7
7
|
ReadonlyRef,
|
|
8
8
|
is_ref,
|
|
9
9
|
_TMaybeRef as TMaybeRef,
|
|
10
|
+
effect,
|
|
10
11
|
)
|
|
11
12
|
from nicegui import ui
|
|
12
13
|
from nicegui.elements.mixins.color_elements import (
|
|
@@ -2,11 +2,12 @@ from pathlib import Path
|
|
|
2
2
|
from typing import (
|
|
3
3
|
Union,
|
|
4
4
|
)
|
|
5
|
-
|
|
5
|
+
|
|
6
6
|
from ex4nicegui.utils.signals import (
|
|
7
7
|
ReadonlyRef,
|
|
8
8
|
is_ref,
|
|
9
9
|
_TMaybeRef as TMaybeRef,
|
|
10
|
+
effect,
|
|
10
11
|
)
|
|
11
12
|
from nicegui import ui
|
|
12
13
|
from .base import SingleValueBindableUi
|
|
@@ -5,11 +5,12 @@ from typing import (
|
|
|
5
5
|
Optional,
|
|
6
6
|
Dict,
|
|
7
7
|
)
|
|
8
|
-
|
|
8
|
+
|
|
9
9
|
from ex4nicegui.utils.signals import (
|
|
10
10
|
ReadonlyRef,
|
|
11
11
|
is_ref,
|
|
12
12
|
_TMaybeRef as TMaybeRef,
|
|
13
|
+
effect,
|
|
13
14
|
)
|
|
14
15
|
from nicegui import ui
|
|
15
16
|
from .base import SingleValueBindableUi, DisableableBindableUi
|
|
@@ -8,11 +8,12 @@ from typing import (
|
|
|
8
8
|
Dict,
|
|
9
9
|
Union,
|
|
10
10
|
)
|
|
11
|
-
|
|
11
|
+
|
|
12
12
|
from ex4nicegui.utils.signals import (
|
|
13
13
|
ReadonlyRef,
|
|
14
14
|
is_ref,
|
|
15
15
|
_TMaybeRef as TMaybeRef,
|
|
16
|
+
effect,
|
|
16
17
|
)
|
|
17
18
|
from nicegui import ui
|
|
18
19
|
from nicegui.elements.mixins.value_element import ValueElement
|
|
@@ -8,11 +8,12 @@ from typing import (
|
|
|
8
8
|
Dict,
|
|
9
9
|
Union,
|
|
10
10
|
)
|
|
11
|
-
|
|
11
|
+
|
|
12
12
|
from ex4nicegui.utils.signals import (
|
|
13
13
|
ReadonlyRef,
|
|
14
14
|
is_ref,
|
|
15
15
|
_TMaybeRef as TMaybeRef,
|
|
16
|
+
effect,
|
|
16
17
|
)
|
|
17
18
|
from nicegui import ui
|
|
18
19
|
from nicegui.elements.mixins.value_element import ValueElement
|
|
@@ -4,11 +4,12 @@ from typing import (
|
|
|
4
4
|
Optional,
|
|
5
5
|
TypeVar,
|
|
6
6
|
)
|
|
7
|
-
|
|
7
|
+
|
|
8
8
|
from ex4nicegui.utils.signals import (
|
|
9
9
|
ReadonlyRef,
|
|
10
10
|
is_ref,
|
|
11
11
|
_TMaybeRef as TMaybeRef,
|
|
12
|
+
effect,
|
|
12
13
|
)
|
|
13
14
|
from nicegui import ui
|
|
14
15
|
from .base import SingleValueBindableUi, DisableableBindableUi
|
|
@@ -5,11 +5,12 @@ from typing import (
|
|
|
5
5
|
TypeVar,
|
|
6
6
|
cast,
|
|
7
7
|
)
|
|
8
|
-
|
|
8
|
+
|
|
9
9
|
from ex4nicegui.utils.signals import (
|
|
10
10
|
ReadonlyRef,
|
|
11
11
|
is_ref,
|
|
12
12
|
_TMaybeRef as TMaybeRef,
|
|
13
|
+
effect,
|
|
13
14
|
)
|
|
14
15
|
from nicegui import ui
|
|
15
16
|
from nicegui.elements.mixins.value_element import ValueElement
|
|
@@ -8,13 +8,12 @@ from typing import (
|
|
|
8
8
|
)
|
|
9
9
|
from typing_extensions import Literal
|
|
10
10
|
import ex4nicegui.utils.common as utils_common
|
|
11
|
-
from signe import effect
|
|
12
11
|
from ex4nicegui.utils.signals import (
|
|
13
12
|
ReadonlyRef,
|
|
14
13
|
is_ref,
|
|
15
14
|
ref_computed,
|
|
16
15
|
to_ref,
|
|
17
|
-
|
|
16
|
+
effect,
|
|
18
17
|
_TMaybeRef as TMaybeRef,
|
|
19
18
|
)
|
|
20
19
|
from nicegui import ui
|
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
from typing import
|
|
1
|
+
from typing import cast
|
|
2
2
|
from nicegui.element import Element
|
|
3
|
-
from signe import effect
|
|
4
3
|
from ex4nicegui.utils.signals import (
|
|
5
4
|
Ref,
|
|
6
|
-
|
|
7
|
-
to_ref,
|
|
8
|
-
is_ref,
|
|
5
|
+
effect,
|
|
9
6
|
to_value,
|
|
10
7
|
_TMaybeRef as TMaybeRef,
|
|
11
8
|
)
|
ex4nicegui/utils/signals.py
CHANGED
|
@@ -248,13 +248,19 @@ class effect_refreshable:
|
|
|
248
248
|
def on(
|
|
249
249
|
refs: Union[ReadonlyRef, Sequence[ReadonlyRef]],
|
|
250
250
|
onchanges=False,
|
|
251
|
+
priority_level=1,
|
|
251
252
|
effect_kws: Optional[Dict[str, Any]] = None,
|
|
252
253
|
):
|
|
254
|
+
effect_kws = effect_kws or {}
|
|
253
255
|
if not isinstance(refs, Sequence):
|
|
254
256
|
refs = [refs]
|
|
255
257
|
|
|
256
258
|
getters = [getattr(r, "_ReadonlyRef___getter") for r in refs]
|
|
257
259
|
|
|
260
|
+
effect_kws.update(
|
|
261
|
+
{"scope": _CLIENT_SCOPE_MANAGER.get_scope(), "priority_level": priority_level}
|
|
262
|
+
)
|
|
263
|
+
|
|
258
264
|
def wrap(fn: Callable):
|
|
259
265
|
return signe_on(getters, fn, onchanges=onchanges, effect_kws=effect_kws)
|
|
260
266
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
ex4nicegui/__init__.py,sha256=
|
|
1
|
+
ex4nicegui/__init__.py,sha256=_krvHdQcLg1s2q3c4MOuGEQKePZst_1S9_vLeo4J95I,396
|
|
2
2
|
ex4nicegui/bi/__init__.py,sha256=eu-2CuzzrcHCyKQOfoo87v6C9nSwFDdeLhjY0cRV13M,315
|
|
3
3
|
ex4nicegui/bi/dataSource.py,sha256=Ezu-kg2UayVJ8CVBegn8AIowvk7MV34nzuRBSsMauPM,6212
|
|
4
4
|
ex4nicegui/bi/dataSourceFacade.py,sha256=RyglhsZVJT7qBTqER5kuQ7qKhMHrlo8oSybM6VtLR70,4786
|
|
@@ -9,7 +9,7 @@ ex4nicegui/bi/elements/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
|
|
|
9
9
|
ex4nicegui/bi/elements/containers.py,sha256=5a9ZkzyVNLnK7DftDYdbVRo0bQFvuMHRI9LBGR__YuI,358
|
|
10
10
|
ex4nicegui/bi/elements/layouts.py,sha256=teb0Vp-fgsByBNPTiW73kXEu2JponRRj4QQanaalcA0,898
|
|
11
11
|
ex4nicegui/bi/elements/models.py,sha256=l1sEeapYsub2Cgm8X6Mb3pBhim6JyV-N6MD53CuXnRQ,1436
|
|
12
|
-
ex4nicegui/bi/elements/text.py,sha256=
|
|
12
|
+
ex4nicegui/bi/elements/text.py,sha256=5TNyTPyFFEWRPb0zqPLb5MrKEaJRfokN47z7weif_Yc,815
|
|
13
13
|
ex4nicegui/bi/elements/ui_aggrid.py,sha256=zfP5gbFL_MvTWMxDVzvXjqJeG9w4eJnbIXHRdm8rC8M,1170
|
|
14
14
|
ex4nicegui/bi/elements/ui_date_picker.js,sha256=Tk6NACKVsCnqhWZtuNA6Xt2e-AWI54AnjfHPIldaM5A,852
|
|
15
15
|
ex4nicegui/bi/elements/ui_date_picker.py,sha256=UfUioMmVQyZMzp_hZLQi96xbP0Hk1UGRRQUL1p8r8H0,2238
|
|
@@ -29,12 +29,12 @@ ex4nicegui/layout/gridFlex/utils.py,sha256=hBuusveBRaHSubIr2q38AP033-VtXDFE_fDzZ
|
|
|
29
29
|
ex4nicegui/layout/rxFlex/__init__.py,sha256=dllXV6cri1oOZkOCGJpI9AlUjIZ3oB99ckLIYRW8faM,38
|
|
30
30
|
ex4nicegui/layout/rxFlex/index.py,sha256=XeAsxfy35RJBE2g2WGzKgskf43K4We0d2mBzWb0kbB8,3509
|
|
31
31
|
ex4nicegui/layout/rxFlex/types.py,sha256=OQBo3kkmtXhMo3BDI0GjX36HPJLDV1Cm67hPZGb1k2Q,1411
|
|
32
|
-
ex4nicegui/reactive/__index.py,sha256=
|
|
32
|
+
ex4nicegui/reactive/__index.py,sha256=pa0iyTX-u5rYjlnET4MHmJaFEqLUAxiJMd5vGbAou60,482
|
|
33
33
|
ex4nicegui/reactive/__init__.py,sha256=NZUgvItxqqgzHKrt4oGZnxxV9dlEudGiv4J3fhJdvdQ,24
|
|
34
|
-
ex4nicegui/reactive/drawer.py,sha256=
|
|
34
|
+
ex4nicegui/reactive/drawer.py,sha256=lh8msoI8I16rsyfjWPCNQqHPlQgk2d-nHiQUSnA6VuA,1375
|
|
35
35
|
ex4nicegui/reactive/fileWatcher.py,sha256=elocr0CKrdqxhrtAwgw8qaomdL0tSPIHtJHvRs1vi-I,1477
|
|
36
36
|
ex4nicegui/reactive/local_file_picker.py,sha256=DWNzm_IP02sY-nZWN6WEWJxlwpABW6tNLZ7HA9E88B4,6093
|
|
37
|
-
ex4nicegui/reactive/q_pagination.py,sha256=
|
|
37
|
+
ex4nicegui/reactive/q_pagination.py,sha256=wWB_RCHHZfycu0BgEUELUPFHgQUkRzfOlOoQF64_AKE,1122
|
|
38
38
|
ex4nicegui/reactive/rxui.py,sha256=NZUgvItxqqgzHKrt4oGZnxxV9dlEudGiv4J3fhJdvdQ,24
|
|
39
39
|
ex4nicegui/reactive/usePagination.py,sha256=IP1NeLxaH3413KTEjtbyuzq0FVdtnKQsTZqM-W7iEgY,2468
|
|
40
40
|
ex4nicegui/reactive/EChartsComponent/ECharts.js,sha256=zRGimuINdBLzKDFKv01EpTPxdXQX0gIkiaaUPM2hGtw,1414
|
|
@@ -61,31 +61,31 @@ ex4nicegui/reactive/mermaid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
|
61
61
|
ex4nicegui/reactive/mermaid/mermaid.js,sha256=Ds5VevGWZE1_N0WKf-uITd8xSCO9gQzVUsmb80EajNY,2308
|
|
62
62
|
ex4nicegui/reactive/mermaid/mermaid.py,sha256=6bJHK0hjkHKlGZRi994jj3az7Ym30vmyCelYCE2E5TI,2058
|
|
63
63
|
ex4nicegui/reactive/officials/__init__.py,sha256=8xPx079EFXpEWtEc1vCbgQJt1TRZuRf91YOaqhkyRIo,1527
|
|
64
|
-
ex4nicegui/reactive/officials/aggrid.py,sha256=
|
|
65
|
-
ex4nicegui/reactive/officials/base.py,sha256=
|
|
66
|
-
ex4nicegui/reactive/officials/button.py,sha256=
|
|
64
|
+
ex4nicegui/reactive/officials/aggrid.py,sha256=uy3oYPHeMOvRjpgIxt3VTEU_8Ix7_wYpWm0UhmvVIuU,2395
|
|
65
|
+
ex4nicegui/reactive/officials/base.py,sha256=g2xWcsmmRcmE3mewSExjQ3TE9zHfIpP0AGOeXpp7Zpc,5645
|
|
66
|
+
ex4nicegui/reactive/officials/button.py,sha256=wWupfLQHcDMobPZgKs73yxXoHUaE0YWwjWyidQVmWr0,1951
|
|
67
67
|
ex4nicegui/reactive/officials/card.py,sha256=8-tBwm3xfVybolQ87i8lAYUpBV6FdaVdeSH6xu0736U,1275
|
|
68
|
-
ex4nicegui/reactive/officials/checkbox.py,sha256=
|
|
69
|
-
ex4nicegui/reactive/officials/color_picker.py,sha256=
|
|
68
|
+
ex4nicegui/reactive/officials/checkbox.py,sha256=i7IhJJLHAuEPxv55kQmeJTwXWtV7vlUj1KTT1rkYL3Q,1855
|
|
69
|
+
ex4nicegui/reactive/officials/color_picker.py,sha256=ijdqVDPjrPwbuD2bSjtBIsQI4qsDUxeKEZCk2d6nqrU,2733
|
|
70
70
|
ex4nicegui/reactive/officials/column.py,sha256=3RLvVKNaDtOb8df4uS3xRfwJJPuH1ndXk_Y4Gry0Tjo,413
|
|
71
|
-
ex4nicegui/reactive/officials/date.py,sha256=
|
|
72
|
-
ex4nicegui/reactive/officials/drawer.py,sha256=
|
|
73
|
-
ex4nicegui/reactive/officials/echarts.py,sha256=
|
|
71
|
+
ex4nicegui/reactive/officials/date.py,sha256=Ht3j1DAbzHDzxrVb71pLBKJoTK9gmlhwiJM0kIBrM4o,2718
|
|
72
|
+
ex4nicegui/reactive/officials/drawer.py,sha256=QXFhuDGzlGapd-AXe_KQYxvmcODpfXifdOMudW0UwnA,2372
|
|
73
|
+
ex4nicegui/reactive/officials/echarts.py,sha256=dxCo6QeLeOuH_pZzPyLmAoc1W-_BiGoX65IRNH2iXFE,4855
|
|
74
74
|
ex4nicegui/reactive/officials/expansion.py,sha256=Z2aKsrtUpkO0Z4kO9kPwcu7piBcE_d62OAC2oVDFTGE,1528
|
|
75
75
|
ex4nicegui/reactive/officials/grid.py,sha256=6brGijR9ZLqOhe5r2w4BF81R8I4kJPZxZVkbQjXwlOU,925
|
|
76
|
-
ex4nicegui/reactive/officials/html.py,sha256=
|
|
77
|
-
ex4nicegui/reactive/officials/icon.py,sha256=
|
|
78
|
-
ex4nicegui/reactive/officials/image.py,sha256=
|
|
79
|
-
ex4nicegui/reactive/officials/input.py,sha256=
|
|
80
|
-
ex4nicegui/reactive/officials/label.py,sha256=
|
|
81
|
-
ex4nicegui/reactive/officials/number.py,sha256=
|
|
82
|
-
ex4nicegui/reactive/officials/radio.py,sha256=
|
|
76
|
+
ex4nicegui/reactive/officials/html.py,sha256=tHN3Vu30ckkVoT4X3MKlzUgE1p_2Ewo3IrmS-XwixdM,1676
|
|
77
|
+
ex4nicegui/reactive/officials/icon.py,sha256=5IwapbWHTeW30blen4BTmRQkrW5dppAbtMCnM0UfHBo,1589
|
|
78
|
+
ex4nicegui/reactive/officials/image.py,sha256=UUM87GuV3y78p9TpZgYkve7cHzGQLFsaQf02UtaDINk,1507
|
|
79
|
+
ex4nicegui/reactive/officials/input.py,sha256=uYjuY4WM7lRyrXn42CQAiPMG8e7HufLrr2ZmQ-JfC8s,3419
|
|
80
|
+
ex4nicegui/reactive/officials/label.py,sha256=bOWoDiPCHJJc2x_LWYq64PytjODpMmVSn3X9Mr5HVMY,1735
|
|
81
|
+
ex4nicegui/reactive/officials/number.py,sha256=mf2a-mPrvr6jhRQG-LiDRM-PLtYVAuh6CDFrzsfUAiA,2047
|
|
82
|
+
ex4nicegui/reactive/officials/radio.py,sha256=AdJ56RwEvvauA6tMCmJnl0rZF69zvcuTj4_SmT0aD7g,2290
|
|
83
83
|
ex4nicegui/reactive/officials/row.py,sha256=ZBPITfHbJmAdAWuIZFl2H1XFS9pJam57PJ_zDZWhueE,404
|
|
84
|
-
ex4nicegui/reactive/officials/select.py,sha256=
|
|
85
|
-
ex4nicegui/reactive/officials/slider.py,sha256=
|
|
86
|
-
ex4nicegui/reactive/officials/switch.py,sha256=
|
|
87
|
-
ex4nicegui/reactive/officials/table.py,sha256=
|
|
88
|
-
ex4nicegui/reactive/officials/textarea.py,sha256=
|
|
84
|
+
ex4nicegui/reactive/officials/select.py,sha256=YuNa0-AikwtxJPCJqmAA_Bl0skfK6LEfyYzLFXBkPDw,3208
|
|
85
|
+
ex4nicegui/reactive/officials/slider.py,sha256=FTLdh1-YWi9mpWOm_T4FpWvrNcoL7Vo6dqeCptAaH88,2696
|
|
86
|
+
ex4nicegui/reactive/officials/switch.py,sha256=iWftxOebHptztujMFsVzGJL2qIgbKPuFnPdx9k0xGIw,1997
|
|
87
|
+
ex4nicegui/reactive/officials/table.py,sha256=wOU41kk05cf7Ns4sfZjxSV0FhLnU59efoVzlr9T5r80,5292
|
|
88
|
+
ex4nicegui/reactive/officials/textarea.py,sha256=svHXwd5_KzvEZfdsboqhsaNePf_N8pVjk-p0UVU0n_g,2744
|
|
89
89
|
ex4nicegui/reactive/officials/upload.py,sha256=uk5qfgGXIV8ThTR7hg5IUdOYRT9iQedogJnrVIK69z0,2337
|
|
90
90
|
ex4nicegui/reactive/officials/utils.py,sha256=9Kbhw7jFPGRyGQ6jN8GgWg2FISz-Ee4dbZtgK44PTzs,205
|
|
91
91
|
ex4nicegui/reactive/useMouse/UseMouse.js,sha256=6FjcYozJK5zFwK1kBP8JlfMyTUwKVK3k_0wSdhapaZs,2722
|
|
@@ -96,9 +96,9 @@ ex4nicegui/tools/debug.py,sha256=HCKlVzhHx5av-983ADgwgMkScKwTreSluLA7uikGYa0,488
|
|
|
96
96
|
ex4nicegui/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
97
97
|
ex4nicegui/utils/clientScope.py,sha256=gciC34QDwHlhln8dkS5IJS0YnzHE8grJRp1uFlqlLVA,1143
|
|
98
98
|
ex4nicegui/utils/common.py,sha256=5fsaOkoj-Ild1LGsInZXra66gJLVoVcZGAIG6YOeM6E,430
|
|
99
|
-
ex4nicegui/utils/signals.py,sha256=
|
|
100
|
-
ex4nicegui-0.4.
|
|
101
|
-
ex4nicegui-0.4.
|
|
102
|
-
ex4nicegui-0.4.
|
|
103
|
-
ex4nicegui-0.4.
|
|
104
|
-
ex4nicegui-0.4.
|
|
99
|
+
ex4nicegui/utils/signals.py,sha256=conh5tuLT69U8LptTfFQRiAxGaSZpgfmaoUPnV17gz8,6343
|
|
100
|
+
ex4nicegui-0.4.2.dist-info/LICENSE,sha256=0KDDElS2dl-HIsWvbpy8ywbLzJMBFzXLev57LnMIZXs,1094
|
|
101
|
+
ex4nicegui-0.4.2.dist-info/METADATA,sha256=oNb32XyWodLvvrG-iYdv4RiAYtLNpz0KdGKvVSHNtSI,513
|
|
102
|
+
ex4nicegui-0.4.2.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
103
|
+
ex4nicegui-0.4.2.dist-info/top_level.txt,sha256=VFwMiO9AFjj5rfLMJwN1ipLRASk9fJXB8tM6DNrpvPQ,11
|
|
104
|
+
ex4nicegui-0.4.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|