ex4nicegui 0.7.1__py3-none-any.whl → 0.8.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/reactive/EChartsComponent/ECharts.js +2 -3
- ex4nicegui/reactive/EChartsComponent/ECharts.py +2 -4
- ex4nicegui/reactive/mermaid/mermaid.py +2 -5
- ex4nicegui/reactive/mixins/flexLayout.py +51 -0
- ex4nicegui/reactive/mixins/value_element.py +27 -0
- ex4nicegui/reactive/officials/card.py +32 -2
- ex4nicegui/reactive/officials/checkbox.py +7 -11
- ex4nicegui/reactive/officials/chip.py +11 -1
- ex4nicegui/reactive/officials/circular_progress.py +7 -11
- ex4nicegui/reactive/officials/color_picker.py +4 -10
- ex4nicegui/reactive/officials/column.py +19 -11
- ex4nicegui/reactive/officials/date.py +4 -11
- ex4nicegui/reactive/officials/dialog.py +4 -11
- ex4nicegui/reactive/officials/echarts.py +9 -7
- ex4nicegui/reactive/officials/expansion.py +4 -11
- ex4nicegui/reactive/officials/input.py +12 -12
- ex4nicegui/reactive/officials/knob.py +4 -13
- ex4nicegui/reactive/officials/linear_progress.py +6 -11
- ex4nicegui/reactive/officials/number.py +7 -11
- ex4nicegui/reactive/officials/radio.py +4 -12
- ex4nicegui/reactive/officials/row.py +18 -11
- ex4nicegui/reactive/officials/slider.py +4 -12
- ex4nicegui/reactive/officials/switch.py +5 -12
- ex4nicegui/reactive/officials/tab_panels.py +4 -8
- ex4nicegui/reactive/officials/tabs.py +4 -9
- ex4nicegui/reactive/officials/textarea.py +4 -10
- {ex4nicegui-0.7.1.dist-info → ex4nicegui-0.8.0.dist-info}/METADATA +153 -118
- {ex4nicegui-0.7.1.dist-info → ex4nicegui-0.8.0.dist-info}/RECORD +30 -28
- {ex4nicegui-0.7.1.dist-info → ex4nicegui-0.8.0.dist-info}/LICENSE +0 -0
- {ex4nicegui-0.7.1.dist-info → ex4nicegui-0.8.0.dist-info}/WHEEL +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ex4nicegui
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.8.0
|
|
4
4
|
Summary: Extension library based on nicegui, providing data responsive,BI functionality modules
|
|
5
5
|
Home-page: https://github.com/CrystalWindSnake/ex4nicegui
|
|
6
6
|
License: MIT
|
|
@@ -16,7 +16,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.12
|
|
18
18
|
Requires-Dist: executing (>=2.0.1,<3.0.0)
|
|
19
|
-
Requires-Dist: nicegui (>=
|
|
19
|
+
Requires-Dist: nicegui (>=2.0.0,<3.0.0)
|
|
20
20
|
Requires-Dist: signe (>=0.4.20,<0.5.0)
|
|
21
21
|
Project-URL: Repository, https://github.com/CrystalWindSnake/ex4nicegui
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
@@ -32,7 +32,7 @@ Description-Content-Type: text/markdown
|
|
|
32
32
|
- [教程](#教程)
|
|
33
33
|
- [安装](#-安装)
|
|
34
34
|
- [使用](#-使用)
|
|
35
|
-
- [
|
|
35
|
+
- [图表](#-图表)
|
|
36
36
|
- [BI 模块](#bi-模块)
|
|
37
37
|
|
|
38
38
|
对 [nicegui](https://github.com/zauberzeug/nicegui) 做的扩展库。内置响应式组件,完全实现数据响应式界面编程。
|
|
@@ -63,10 +63,10 @@ pip install ex4nicegui -U
|
|
|
63
63
|
|
|
64
64
|
## 🦄 使用
|
|
65
65
|
|
|
66
|
+

|
|
66
67
|
```python
|
|
67
68
|
from nicegui import ui
|
|
68
|
-
from ex4nicegui import ref_computed, effect, to_ref
|
|
69
|
-
from ex4nicegui.reactive import rxui
|
|
69
|
+
from ex4nicegui import rxui, ref_computed, effect, to_ref
|
|
70
70
|
|
|
71
71
|
# 定义响应式数据
|
|
72
72
|
r_input = to_ref("")
|
|
@@ -77,127 +77,41 @@ rxui.label(r_input)
|
|
|
77
77
|
|
|
78
78
|
ui.run()
|
|
79
79
|
```
|
|
80
|
-

|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
### 提供 echarts 图表组件
|
|
84
|
-
|
|
85
|
-
```python
|
|
86
|
-
from nicegui import ui
|
|
87
|
-
from ex4nicegui import ref_computed, effect, to_ref
|
|
88
|
-
from ex4nicegui.reactive import rxui
|
|
89
|
-
|
|
90
|
-
r_input = to_ref("")
|
|
91
|
-
|
|
92
|
-
# ref_computed 创建只读响应式变量
|
|
93
|
-
# 函数中使用任意其他响应式变量,会自动关联
|
|
94
|
-
@ref_computed
|
|
95
|
-
def cp_echarts_opts():
|
|
96
|
-
return {
|
|
97
|
-
"title": {"text": r_input.value}, #字典中使用任意响应式变量,通过 .value 获取值
|
|
98
|
-
"xAxis": {
|
|
99
|
-
"type": "category",
|
|
100
|
-
"data": ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
|
|
101
|
-
},
|
|
102
|
-
"yAxis": {"type": "value"},
|
|
103
|
-
"series": [
|
|
104
|
-
{
|
|
105
|
-
"data": [120, 200, 150, 80, 70, 110, 130],
|
|
106
|
-
"type": "bar",
|
|
107
|
-
"showBackground": True,
|
|
108
|
-
"backgroundStyle": {"color": "rgba(180, 180, 180, 0.2)"},
|
|
109
|
-
}
|
|
110
|
-
],
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
input = rxui.input("输入内容,图表标题会同步", value=r_input)
|
|
114
|
-
# 通过响应式组件对象的 element 属性,获取原生 nicegui 组件对象
|
|
115
|
-
input.element.classes("w-full")
|
|
116
|
-
|
|
117
|
-
rxui.echarts(cp_echarts_opts)
|
|
118
|
-
|
|
119
|
-
ui.run()
|
|
120
|
-
```
|
|
121
|
-

|
|
122
80
|
|
|
123
81
|
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
`on` 函数参数 `event_name` 以及 `query` 使用,查看[echarts 事件中文文档](https://echarts.apache.org/handbook/zh/concepts/event/)
|
|
82
|
+
---
|
|
127
83
|
|
|
84
|
+

|
|
128
85
|
|
|
129
|
-
以下例子绑定鼠标单击事件
|
|
130
86
|
```python
|
|
131
87
|
from nicegui import ui
|
|
132
|
-
from ex4nicegui
|
|
133
|
-
|
|
134
|
-
opts = {
|
|
135
|
-
"xAxis": {"type": "value", "boundaryGap": [0, 0.01]},
|
|
136
|
-
"yAxis": {
|
|
137
|
-
"type": "category",
|
|
138
|
-
"data": ["Brazil", "Indonesia", "USA", "India", "China", "World"],
|
|
139
|
-
},
|
|
140
|
-
"series": [
|
|
141
|
-
{
|
|
142
|
-
"name": "first",
|
|
143
|
-
"type": "bar",
|
|
144
|
-
"data": [18203, 23489, 29034, 104970, 131744, 630230],
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
"name": "second",
|
|
148
|
-
"type": "bar",
|
|
149
|
-
"data": [19325, 23438, 31000, 121594, 134141, 681807],
|
|
150
|
-
},
|
|
151
|
-
],
|
|
152
|
-
}
|
|
88
|
+
from ex4nicegui import rxui, to_ref
|
|
153
89
|
|
|
154
|
-
|
|
90
|
+
ui.radio.default_props("inline")
|
|
155
91
|
|
|
156
|
-
|
|
157
|
-
|
|
92
|
+
# 定义视图数据
|
|
93
|
+
colors = ["red", "green", "blue", "yellow", "purple", "white"]
|
|
94
|
+
color = to_ref("blue")
|
|
95
|
+
bg_color = to_ref("red")
|
|
158
96
|
|
|
159
97
|
|
|
160
|
-
|
|
161
|
-
|
|
98
|
+
## 函数中通过访问 `ref` 或其他关联函数获取值,一切会自动同步更新
|
|
99
|
+
def bg_text():
|
|
100
|
+
return f"Current background color is {bg_color.value}"
|
|
162
101
|
|
|
163
102
|
|
|
164
|
-
|
|
165
|
-
```python
|
|
166
|
-
from nicegui import ui
|
|
167
|
-
from ex4nicegui.reactive import rxui
|
|
103
|
+
# 界面
|
|
168
104
|
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
"data": ["Brazil", "Indonesia", "USA", "India", "China", "World"],
|
|
174
|
-
},
|
|
175
|
-
"series": [
|
|
176
|
-
{
|
|
177
|
-
"name": "first",
|
|
178
|
-
"type": "bar",
|
|
179
|
-
"data": [18203, 23489, 29034, 104970, 131744, 630230],
|
|
180
|
-
},
|
|
181
|
-
{
|
|
182
|
-
"name": "second",
|
|
183
|
-
"type": "bar",
|
|
184
|
-
"data": [19325, 23438, 31000, 121594, 134141, 681807],
|
|
185
|
-
},
|
|
186
|
-
],
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
bar = rxui.echarts(opts)
|
|
190
|
-
|
|
191
|
-
def on_first_series_mouseover(e: rxui.echarts.EChartsMouseEventArguments):
|
|
192
|
-
ui.notify(f"on_first_series_mouseover:{e.seriesName}:{e.name}:{e.value}")
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
bar.on("mouseover", on_first_series_mouseover, query={"seriesName": "first"})
|
|
105
|
+
with ui.row(align_items="center"):
|
|
106
|
+
rxui.radio(colors, value=color)
|
|
107
|
+
## 可以使用 lambda
|
|
108
|
+
rxui.label(lambda: f"Font color is {color.value}").bind_style({"color": color})
|
|
196
109
|
|
|
197
|
-
ui.
|
|
110
|
+
with ui.row(align_items="center"):
|
|
111
|
+
rxui.radio(colors, value=bg_color)
|
|
112
|
+
## 直接绑定函数
|
|
113
|
+
rxui.label(bg_text).bind_style({"background-color": bg_color})
|
|
198
114
|
```
|
|
199
|
-
---
|
|
200
|
-
|
|
201
115
|
|
|
202
116
|
|
|
203
117
|
## ViewModel
|
|
@@ -268,19 +182,18 @@ class Home(rxui.ViewModel):
|
|
|
268
182
|
通过 `number` 组件修改年龄,一切都会自动更新。
|
|
269
183
|
|
|
270
184
|
```python
|
|
185
|
+
from typing import List
|
|
271
186
|
from ex4nicegui import rxui, Ref
|
|
272
187
|
from itertools import count
|
|
188
|
+
from nicegui import ui
|
|
273
189
|
|
|
274
190
|
id_generator = count()
|
|
275
191
|
|
|
276
192
|
class Person(rxui.ViewModel):
|
|
277
|
-
name
|
|
278
|
-
age = rxui.var(0)
|
|
279
|
-
|
|
280
|
-
def __init__(self, name: str = "", age: int = 0):
|
|
193
|
+
def __init__(self, name: str, age: int):
|
|
281
194
|
super().__init__()
|
|
282
|
-
self.name
|
|
283
|
-
self.age
|
|
195
|
+
self.name = rxui.var(name)
|
|
196
|
+
self.age = rxui.var(age)
|
|
284
197
|
self.id = next(id_generator)
|
|
285
198
|
|
|
286
199
|
|
|
@@ -322,6 +235,7 @@ with ui.row():
|
|
|
322
235
|
rxui.input(value=person.name, placeholder="名字")
|
|
323
236
|
rxui.number(value=person.age, min=1, max=100, step=1, placeholder="年龄")
|
|
324
237
|
|
|
238
|
+
ui.run()
|
|
325
239
|
```
|
|
326
240
|
|
|
327
241
|
如果你觉得 `rxui.vfor` 代码过于复杂,可以使用 `effect_refreshable` 装饰器代替。
|
|
@@ -330,7 +244,7 @@ with ui.row():
|
|
|
330
244
|
from ex4nicegui import rxui, Ref,effect_refreshable
|
|
331
245
|
...
|
|
332
246
|
|
|
333
|
-
# 明确指定监控 home.persons
|
|
247
|
+
# 明确指定监控 home.persons 变化,可以避免意外刷新
|
|
334
248
|
@effect_refreshable.on(home.persons)
|
|
335
249
|
def _():
|
|
336
250
|
|
|
@@ -347,6 +261,127 @@ def _():
|
|
|
347
261
|
|
|
348
262
|
---
|
|
349
263
|
|
|
264
|
+
## 图表
|
|
265
|
+
|
|
266
|
+
### 提供 echarts 图表组件
|
|
267
|
+
|
|
268
|
+
```python
|
|
269
|
+
from nicegui import ui
|
|
270
|
+
from ex4nicegui import ref_computed, effect, to_ref
|
|
271
|
+
from ex4nicegui.reactive import rxui
|
|
272
|
+
|
|
273
|
+
r_input = to_ref("")
|
|
274
|
+
|
|
275
|
+
# ref_computed 创建只读响应式变量
|
|
276
|
+
# 函数中使用任意其他响应式变量,会自动关联
|
|
277
|
+
@ref_computed
|
|
278
|
+
def cp_echarts_opts():
|
|
279
|
+
return {
|
|
280
|
+
"title": {"text": r_input.value}, #字典中使用任意响应式变量,通过 .value 获取值
|
|
281
|
+
"xAxis": {
|
|
282
|
+
"type": "category",
|
|
283
|
+
"data": ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
|
|
284
|
+
},
|
|
285
|
+
"yAxis": {"type": "value"},
|
|
286
|
+
"series": [
|
|
287
|
+
{
|
|
288
|
+
"data": [120, 200, 150, 80, 70, 110, 130],
|
|
289
|
+
"type": "bar",
|
|
290
|
+
"showBackground": True,
|
|
291
|
+
"backgroundStyle": {"color": "rgba(180, 180, 180, 0.2)"},
|
|
292
|
+
}
|
|
293
|
+
],
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
input = rxui.input("输入内容,图表标题会同步", value=r_input)
|
|
297
|
+
# 通过响应式组件对象的 element 属性,获取原生 nicegui 组件对象
|
|
298
|
+
input.element.classes("w-full")
|
|
299
|
+
|
|
300
|
+
rxui.echarts(cp_echarts_opts)
|
|
301
|
+
|
|
302
|
+
ui.run()
|
|
303
|
+
```
|
|
304
|
+

|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
### echarts 图表鼠标事件
|
|
308
|
+
|
|
309
|
+
`on` 函数参数 `event_name` 以及 `query` 使用,查看[echarts 事件中文文档](https://echarts.apache.org/handbook/zh/concepts/event/)
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
以下例子绑定鼠标单击事件
|
|
313
|
+
```python
|
|
314
|
+
from nicegui import ui
|
|
315
|
+
from ex4nicegui.reactive import rxui
|
|
316
|
+
|
|
317
|
+
opts = {
|
|
318
|
+
"xAxis": {"type": "value", "boundaryGap": [0, 0.01]},
|
|
319
|
+
"yAxis": {
|
|
320
|
+
"type": "category",
|
|
321
|
+
"data": ["Brazil", "Indonesia", "USA", "India", "China", "World"],
|
|
322
|
+
},
|
|
323
|
+
"series": [
|
|
324
|
+
{
|
|
325
|
+
"name": "first",
|
|
326
|
+
"type": "bar",
|
|
327
|
+
"data": [18203, 23489, 29034, 104970, 131744, 630230],
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"name": "second",
|
|
331
|
+
"type": "bar",
|
|
332
|
+
"data": [19325, 23438, 31000, 121594, 134141, 681807],
|
|
333
|
+
},
|
|
334
|
+
],
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
bar = rxui.echarts(opts)
|
|
338
|
+
|
|
339
|
+
def on_click(e: rxui.echarts.EChartsMouseEventArguments):
|
|
340
|
+
ui.notify(f"on_click:{e.seriesName}:{e.name}:{e.value}")
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
bar.on("click", on_click)
|
|
344
|
+
```
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
以下例子只针对指定系列触发鼠标划过事件
|
|
348
|
+
```python
|
|
349
|
+
from nicegui import ui
|
|
350
|
+
from ex4nicegui.reactive import rxui
|
|
351
|
+
|
|
352
|
+
opts = {
|
|
353
|
+
"xAxis": {"type": "value", "boundaryGap": [0, 0.01]},
|
|
354
|
+
"yAxis": {
|
|
355
|
+
"type": "category",
|
|
356
|
+
"data": ["Brazil", "Indonesia", "USA", "India", "China", "World"],
|
|
357
|
+
},
|
|
358
|
+
"series": [
|
|
359
|
+
{
|
|
360
|
+
"name": "first",
|
|
361
|
+
"type": "bar",
|
|
362
|
+
"data": [18203, 23489, 29034, 104970, 131744, 630230],
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"name": "second",
|
|
366
|
+
"type": "bar",
|
|
367
|
+
"data": [19325, 23438, 31000, 121594, 134141, 681807],
|
|
368
|
+
},
|
|
369
|
+
],
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
bar = rxui.echarts(opts)
|
|
373
|
+
|
|
374
|
+
def on_first_series_mouseover(e: rxui.echarts.EChartsMouseEventArguments):
|
|
375
|
+
ui.notify(f"on_first_series_mouseover:{e.seriesName}:{e.name}:{e.value}")
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
bar.on("mouseover", on_first_series_mouseover, query={"seriesName": "first"})
|
|
379
|
+
|
|
380
|
+
ui.run()
|
|
381
|
+
```
|
|
382
|
+
---
|
|
383
|
+
|
|
384
|
+
|
|
350
385
|
## 响应式
|
|
351
386
|
|
|
352
387
|
```python
|
|
@@ -75,8 +75,8 @@ ex4nicegui/reactive/base.py,sha256=iqkGcy7BCfZOoMGaq74EYjdI6S44EGzagqIo2sUKGGw,1
|
|
|
75
75
|
ex4nicegui/reactive/deferredTask.py,sha256=g78TTG1EIkBxjPih01xmrCZw9OxQG93veSVSELWKfcU,987
|
|
76
76
|
ex4nicegui/reactive/dropZone/dropZone.js,sha256=7rSpFJX-Fk_W_NGZhOTyuEw0bzR-YUc8ZYPzQG9KzE0,2713
|
|
77
77
|
ex4nicegui/reactive/dropZone/dropZone.py,sha256=hg9UKTayff8v8Ek-n38h_3wX1Qmiotvdyv1Hsqilh5Y,2590
|
|
78
|
-
ex4nicegui/reactive/EChartsComponent/ECharts.js,sha256=
|
|
79
|
-
ex4nicegui/reactive/EChartsComponent/ECharts.py,sha256=
|
|
78
|
+
ex4nicegui/reactive/EChartsComponent/ECharts.js,sha256=dFv4WPZO32mikf3TN9l84ByvBFvVQfbHQdxqTnaAF0M,3594
|
|
79
|
+
ex4nicegui/reactive/EChartsComponent/ECharts.py,sha256=mIjixc_miaPKuNP6kR_t7-1O27ob0WvOYMNNAenUvbo,4292
|
|
80
80
|
ex4nicegui/reactive/EChartsComponent/events.py,sha256=_BtmLRcAIZciDQT5i1eFc-r3e0pBnAabW1BSl6uzhCc,570
|
|
81
81
|
ex4nicegui/reactive/EChartsComponent/types.py,sha256=_7AekG0IyzRpDEBZMtKRiZ3o3dUCcn6btegBk8c9Fig,1001
|
|
82
82
|
ex4nicegui/reactive/EChartsComponent/utils.py,sha256=a5r2fghC6IIZbyfUUR8TEkpLj9HPbcf8QHEBatXaL2M,1463
|
|
@@ -85,48 +85,50 @@ ex4nicegui/reactive/empty.py,sha256=kB851B12V1_VCNsFKW6OmjcdIiuZqGEGjLgA6k6yug8,
|
|
|
85
85
|
ex4nicegui/reactive/fileWatcher.py,sha256=gjeZhgar02f-qGQa47Tj5SMaCP_ftRtSU898XUmXl1U,1472
|
|
86
86
|
ex4nicegui/reactive/local_file_picker.py,sha256=MoInXSauFdCuhYi_CmNKZwxAtsOqXh8roWWdqNwjPBY,6199
|
|
87
87
|
ex4nicegui/reactive/mermaid/mermaid.js,sha256=Ds5VevGWZE1_N0WKf-uITd8xSCO9gQzVUsmb80EajNY,2308
|
|
88
|
-
ex4nicegui/reactive/mermaid/mermaid.py,sha256=
|
|
88
|
+
ex4nicegui/reactive/mermaid/mermaid.py,sha256=nD_f55RdtgjQ5wIbJrtyhILEoJFPz_ts--KYcqxeZG0,2051
|
|
89
89
|
ex4nicegui/reactive/mixins/backgroundColor.py,sha256=ReW-clrdjqYLVXjrx8lo9h3JAvXPXpOJDl3b6GuBovA,1135
|
|
90
90
|
ex4nicegui/reactive/mixins/disableable.py,sha256=bqhhU5XTT3E60-I0dr_mT0Gk9uX5-aKouAsu6MwCeV0,1133
|
|
91
|
+
ex4nicegui/reactive/mixins/flexLayout.py,sha256=FfFzaMCuiu5GwzIPMtcZjkj7vZu6iB5yYCN3HKbCcQI,1329
|
|
91
92
|
ex4nicegui/reactive/mixins/textColor.py,sha256=_OsiuybNyNX1qNdk-9DwhcdovtvvNCDKA_UsmDrejeU,1823
|
|
93
|
+
ex4nicegui/reactive/mixins/value_element.py,sha256=c8Liiq5KYUBBHOb0xak1WxblzU8X_a8Ivy2LrOo3nzA,794
|
|
92
94
|
ex4nicegui/reactive/officials/aggrid.py,sha256=GWxDfTzhcnlyzPhLzBI5ay6RtPcE2zOCMwZhMX5WBck,2973
|
|
93
95
|
ex4nicegui/reactive/officials/avatar.py,sha256=bAZ73B4wQWchGVFblc7r1QItrml9_VIwKQT-Lqtx1eA,3323
|
|
94
96
|
ex4nicegui/reactive/officials/badge.py,sha256=0OFKCfjdoZZf2v-MwZPLC5C-2TU4-dCACGOwAZlQDdg,3212
|
|
95
97
|
ex4nicegui/reactive/officials/base.py,sha256=SVJz0UYPvlpSHN193X-EFCNT-lAP2LYEo8HJBQ0i8Tg,153
|
|
96
98
|
ex4nicegui/reactive/officials/button.py,sha256=C1x-gwCKH6VWk0QqY2pUebAsaLLkMBx8GInk9KZg1K0,2666
|
|
97
|
-
ex4nicegui/reactive/officials/card.py,sha256=
|
|
98
|
-
ex4nicegui/reactive/officials/checkbox.py,sha256=
|
|
99
|
-
ex4nicegui/reactive/officials/chip.py,sha256=
|
|
100
|
-
ex4nicegui/reactive/officials/circular_progress.py,sha256=
|
|
101
|
-
ex4nicegui/reactive/officials/color_picker.py,sha256=
|
|
102
|
-
ex4nicegui/reactive/officials/column.py,sha256=
|
|
103
|
-
ex4nicegui/reactive/officials/date.py,sha256
|
|
104
|
-
ex4nicegui/reactive/officials/dialog.py,sha256=
|
|
99
|
+
ex4nicegui/reactive/officials/card.py,sha256=tBOON5Pc1V7XM4qHA2rj_Ue3HySCjTkPTfIOkwcPlE8,2644
|
|
100
|
+
ex4nicegui/reactive/officials/checkbox.py,sha256=2zhZ0FustIiyTDlE4lfkhufrDs2ix-FKd4IWr1BaVcU,1458
|
|
101
|
+
ex4nicegui/reactive/officials/chip.py,sha256=J2-8O_hUql6s43fOuhn5ZIVyDzduXdQUookZyBC1g8I,3523
|
|
102
|
+
ex4nicegui/reactive/officials/circular_progress.py,sha256=Nk33UMytSULZpISyDzghqHleVqYs1b-veRqBEpOKDeg,1897
|
|
103
|
+
ex4nicegui/reactive/officials/color_picker.py,sha256=tA6qZxGt_cs4WaQaeZYH6eE7LFzGJaicyUIgibEIvB0,3351
|
|
104
|
+
ex4nicegui/reactive/officials/column.py,sha256=fllKknMEUw7uNhmP7w4pgBT7HTDbpkN-dqwHOldahzs,1406
|
|
105
|
+
ex4nicegui/reactive/officials/date.py,sha256=lRiJNrgs_oNo9AZTfTX_66dYL7az4co5rfRyIzvGAIo,2440
|
|
106
|
+
ex4nicegui/reactive/officials/dialog.py,sha256=3dyrvsUwM1Q7jr_PgLKt92KDA6Hris0DH90-sKamfFE,1297
|
|
105
107
|
ex4nicegui/reactive/officials/drawer.py,sha256=_Ro6stOh8U3igYMeDwI4omBgi1nld5berrAk9Dv5RVw,2346
|
|
106
|
-
ex4nicegui/reactive/officials/echarts.py,sha256=
|
|
108
|
+
ex4nicegui/reactive/officials/echarts.py,sha256=rGVd-ewP9vlGjVUdtVoW4jjsJ4oUp-HZ059kqdoFBe4,10142
|
|
107
109
|
ex4nicegui/reactive/officials/element.py,sha256=-qsHcxfF3fMfU0sJlKtTksX_wYPMIPJ_AgFcZbbI754,412
|
|
108
|
-
ex4nicegui/reactive/officials/expansion.py,sha256=
|
|
110
|
+
ex4nicegui/reactive/officials/expansion.py,sha256=8xwJa0SpsVhFxbYwYRZtf1ul9m4oYTjgmtrRI_lqF_0,1822
|
|
109
111
|
ex4nicegui/reactive/officials/grid.py,sha256=Bq83jejsxQSYVc9O1IE6JUgUndUm1uexb4fq9EZWjHQ,921
|
|
110
112
|
ex4nicegui/reactive/officials/html.js,sha256=lyvRAdMKZGOc7MPEapeU6WbOzq_MVzqzUJEhKuC8zWc,119
|
|
111
113
|
ex4nicegui/reactive/officials/html.py,sha256=XrOpGoAJDo8dtTnZVLSmi7H5iHffmYpeZ94lXxHjBwI,629
|
|
112
114
|
ex4nicegui/reactive/officials/icon.py,sha256=Um1yS681pcbsZ4o7GU_2w1NCfwFVXNu1a4asB2hzYUg,1374
|
|
113
115
|
ex4nicegui/reactive/officials/image.py,sha256=ySu2gqVQIuLMUTItcp233Iqnx86P0q0MU8EVq07yuMk,1141
|
|
114
|
-
ex4nicegui/reactive/officials/input.py,sha256=
|
|
115
|
-
ex4nicegui/reactive/officials/knob.py,sha256=
|
|
116
|
+
ex4nicegui/reactive/officials/input.py,sha256=LCt_3TtL-mARMNU-8BRyFlSekyJP389OvmwcjccNOh4,4057
|
|
117
|
+
ex4nicegui/reactive/officials/knob.py,sha256=TPKrquOBD9fBI9aBipE0qYy22dQJCcX9wNZQGplRs8M,2227
|
|
116
118
|
ex4nicegui/reactive/officials/label.py,sha256=kCair4NpFB7bvsPukMFcDBqDXk2BxOLzBQXSNx5EWuw,1428
|
|
117
|
-
ex4nicegui/reactive/officials/linear_progress.py,sha256=
|
|
118
|
-
ex4nicegui/reactive/officials/number.py,sha256=
|
|
119
|
-
ex4nicegui/reactive/officials/radio.py,sha256=
|
|
120
|
-
ex4nicegui/reactive/officials/row.py,sha256=
|
|
119
|
+
ex4nicegui/reactive/officials/linear_progress.py,sha256=T-z8_68FxSwdFH0hBFMA2X0JEeLoVFpJyya5RHlf7U8,2045
|
|
120
|
+
ex4nicegui/reactive/officials/number.py,sha256=L_uMY-t5SONENI3b44DjSi7JwcdfYAldGZCvqX1h6Dw,2796
|
|
121
|
+
ex4nicegui/reactive/officials/radio.py,sha256=G94-H7bVN7mqw5tywy80fK53BEmTpr9m2l0kg_c4YE0,1812
|
|
122
|
+
ex4nicegui/reactive/officials/row.py,sha256=ZWJnb6nC9XMfmRmzeVKnHwUnxrCpbxaEBJ3lSVj5m5s,1384
|
|
121
123
|
ex4nicegui/reactive/officials/select.py,sha256=zA9OG6Sll0g6yC15-YtOO5mGioua60yQIQvb2TfgSKM,3053
|
|
122
|
-
ex4nicegui/reactive/officials/slider.py,sha256=
|
|
123
|
-
ex4nicegui/reactive/officials/switch.py,sha256=
|
|
124
|
+
ex4nicegui/reactive/officials/slider.py,sha256=9pA7CHlfkKY-kLQGWn4VOnMa2-tXHI04R1YA4xENIWI,2871
|
|
125
|
+
ex4nicegui/reactive/officials/switch.py,sha256=XMUdOVP357gGVNU_tjrBtxw5Xuk5MyhLhHI-6sTtCcc,1456
|
|
124
126
|
ex4nicegui/reactive/officials/tab.py,sha256=nyB7Ksc_tWG-RaAXiu3TTIJvkNeSa9AZdwHXuL2SsOE,1433
|
|
125
127
|
ex4nicegui/reactive/officials/tab_panel.py,sha256=Y05XTIOE6qXYZjcCoVIPm9lruyR7av58McRLmPc2yxg,650
|
|
126
|
-
ex4nicegui/reactive/officials/tab_panels.py,sha256=
|
|
128
|
+
ex4nicegui/reactive/officials/tab_panels.py,sha256=Y97OYyHfxHYnlOJeSXAiaBCff6-mfCWqHanFLXC8um8,6011
|
|
127
129
|
ex4nicegui/reactive/officials/table.py,sha256=B_nX19UxwyxGKsxLuu2x4UNwxsapjTBw70RMBWDI8w0,6206
|
|
128
|
-
ex4nicegui/reactive/officials/tabs.py,sha256=
|
|
129
|
-
ex4nicegui/reactive/officials/textarea.py,sha256=
|
|
130
|
+
ex4nicegui/reactive/officials/tabs.py,sha256=kvAXeZkgi8USCyxislvjPmmWofZ31DMfiHqEObANpYU,1247
|
|
131
|
+
ex4nicegui/reactive/officials/textarea.py,sha256=i-9OwE-WUVvYQ18OJXYL-1IVB99dKgj__SPTbMFjbzE,2976
|
|
130
132
|
ex4nicegui/reactive/officials/toggle.py,sha256=H0NLosMcKbTkH94yV4h4b_WOuCStZpOJMlkYgOqpyYY,2663
|
|
131
133
|
ex4nicegui/reactive/officials/tooltip.py,sha256=lkDOf5Z6vpDsO9Y-nsRRwdhmYVFb9YrWv7lQUNY4_Ho,1136
|
|
132
134
|
ex4nicegui/reactive/officials/upload.py,sha256=5SX2CFkf3s_4bPcnx0bmKRA4eYVlm0S8RBeQ7qHnqck,2395
|
|
@@ -164,7 +166,7 @@ ex4nicegui/utils/scheduler.py,sha256=1gyq7Y2BkbwmPK_Q9kpRpc1MOC9H7xcpxuix-RZhN9k
|
|
|
164
166
|
ex4nicegui/utils/signals.py,sha256=Q2aaYct1U1DAW4neLiq1_iUdBGiPLNxpXQcuW1KiaDg,7106
|
|
165
167
|
ex4nicegui/utils/types.py,sha256=pE5WOSbcTHxaAhnT24FaZEd1B2Z_lTcsd46w0OKiMyc,359
|
|
166
168
|
ex4nicegui/version.py,sha256=NE7u1piESstg3xCtf5hhV4iedGs2qJQw9SiC3ZSpiio,90
|
|
167
|
-
ex4nicegui-0.
|
|
168
|
-
ex4nicegui-0.
|
|
169
|
-
ex4nicegui-0.
|
|
170
|
-
ex4nicegui-0.
|
|
169
|
+
ex4nicegui-0.8.0.dist-info/LICENSE,sha256=0KDDElS2dl-HIsWvbpy8ywbLzJMBFzXLev57LnMIZXs,1094
|
|
170
|
+
ex4nicegui-0.8.0.dist-info/METADATA,sha256=qXJN6ZePiACRgnoZ6aGGJAoa4ZQoiQyN2VOpcQa7nwQ,35933
|
|
171
|
+
ex4nicegui-0.8.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
172
|
+
ex4nicegui-0.8.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|