WebGUIAPI 1.2605.802__tar.gz → 1.2605.1202__tar.gz
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.
- {webguiapi-1.2605.802/src/WebGUIAPI.egg-info → webguiapi-1.2605.1202}/PKG-INFO +11 -1
- {webguiapi-1.2605.802 → webguiapi-1.2605.1202}/README.md +7 -0
- {webguiapi-1.2605.802 → webguiapi-1.2605.1202}/pyproject.toml +5 -2
- webguiapi-1.2605.1202/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2605.802 → webguiapi-1.2605.1202}/src/WebGUIAPI/WebGUIvcl.pyi +32 -0
- {webguiapi-1.2605.802 → webguiapi-1.2605.1202/src/WebGUIAPI.egg-info}/PKG-INFO +11 -1
- webguiapi-1.2605.1202/src/WebGUIAPI.egg-info/requires.txt +4 -0
- webguiapi-1.2605.802/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- webguiapi-1.2605.802/src/WebGUIAPI.egg-info/requires.txt +0 -1
- {webguiapi-1.2605.802 → webguiapi-1.2605.1202}/LICENSE +0 -0
- {webguiapi-1.2605.802 → webguiapi-1.2605.1202}/MANIFEST.in +0 -0
- {webguiapi-1.2605.802 → webguiapi-1.2605.1202}/setup.cfg +0 -0
- {webguiapi-1.2605.802 → webguiapi-1.2605.1202}/src/WebGUIAPI.egg-info/SOURCES.txt +0 -0
- {webguiapi-1.2605.802 → webguiapi-1.2605.1202}/src/WebGUIAPI.egg-info/dependency_links.txt +0 -0
- {webguiapi-1.2605.802 → webguiapi-1.2605.1202}/src/WebGUIAPI.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: WebGUIAPI
|
|
3
|
-
Version: 1.2605.
|
|
3
|
+
Version: 1.2605.1202
|
|
4
4
|
Summary: WebGUIAPI Python package
|
|
5
5
|
Author-email: James Lin <tylin123@ms27.hinet.net>
|
|
6
6
|
License: Copyright (c) 2025 James Lin
|
|
@@ -29,11 +29,21 @@ Requires-Python: >=3.10
|
|
|
29
29
|
Description-Content-Type: text/markdown
|
|
30
30
|
License-File: LICENSE
|
|
31
31
|
Requires-Dist: nicegui
|
|
32
|
+
Requires-Dist: tzdata
|
|
33
|
+
Requires-Dist: python-multipart
|
|
34
|
+
Requires-Dist: uvicorn
|
|
32
35
|
Dynamic: license-file
|
|
33
36
|
|
|
34
37
|
#WebGUIAPI
|
|
35
38
|
|
|
36
39
|
## History of version
|
|
40
|
+
Version 1.2605.1202: 2026/05/12<BR>
|
|
41
|
+
Fixed:Prevent flash exit in different os.
|
|
42
|
+
|
|
43
|
+
Version 1.2605.1201: 2026/05/12<BR>
|
|
44
|
+
Modify TVlayout/THlayout: Include property Gap_xxx
|
|
45
|
+
Modify TComponent: include WidthR/HeightR (Auto resize by ratio)
|
|
46
|
+
|
|
37
47
|
Version 1.2605.0802: 2026/05/08<BR>
|
|
38
48
|
Add TMediaPlayer, TProgressBar
|
|
39
49
|
|
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
#WebGUIAPI
|
|
2
2
|
|
|
3
3
|
## History of version
|
|
4
|
+
Version 1.2605.1202: 2026/05/12<BR>
|
|
5
|
+
Fixed:Prevent flash exit in different os.
|
|
6
|
+
|
|
7
|
+
Version 1.2605.1201: 2026/05/12<BR>
|
|
8
|
+
Modify TVlayout/THlayout: Include property Gap_xxx
|
|
9
|
+
Modify TComponent: include WidthR/HeightR (Auto resize by ratio)
|
|
10
|
+
|
|
4
11
|
Version 1.2605.0802: 2026/05/08<BR>
|
|
5
12
|
Add TMediaPlayer, TProgressBar
|
|
6
13
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "WebGUIAPI"
|
|
7
|
-
version = "1.2605.
|
|
7
|
+
version = "1.2605.1202"
|
|
8
8
|
requires-python = ">=3.10"
|
|
9
9
|
description = "WebGUIAPI Python package"
|
|
10
10
|
authors = [
|
|
@@ -13,7 +13,10 @@ authors = [
|
|
|
13
13
|
readme = "README.md"
|
|
14
14
|
license = { file = "LICENSE" }
|
|
15
15
|
dependencies = [
|
|
16
|
-
"nicegui"
|
|
16
|
+
"nicegui",
|
|
17
|
+
"tzdata",
|
|
18
|
+
"python-multipart",
|
|
19
|
+
"uvicorn",
|
|
17
20
|
]
|
|
18
21
|
|
|
19
22
|
[project.urls]
|
|
Binary file
|
|
@@ -29,6 +29,22 @@ class TComponent:
|
|
|
29
29
|
def Height(self): ...
|
|
30
30
|
@Height.setter
|
|
31
31
|
def Height(self, v) -> None: ...
|
|
32
|
+
@property
|
|
33
|
+
def WidthR(self): ...
|
|
34
|
+
@WidthR.setter
|
|
35
|
+
def WidthR(self, v) -> None: ...
|
|
36
|
+
@property
|
|
37
|
+
def HeightR(self): ...
|
|
38
|
+
@HeightR.setter
|
|
39
|
+
def HeightR(self, v) -> None: ...
|
|
40
|
+
@property
|
|
41
|
+
def Width(self): ...
|
|
42
|
+
@Width.setter
|
|
43
|
+
def Width(self, v) -> None: ...
|
|
44
|
+
@property
|
|
45
|
+
def Height(self): ...
|
|
46
|
+
@Height.setter
|
|
47
|
+
def Height(self, v) -> None: ...
|
|
32
48
|
|
|
33
49
|
class TForm:
|
|
34
50
|
url: Incomplete
|
|
@@ -170,6 +186,22 @@ class TVCLLayoutBase(TComponent):
|
|
|
170
186
|
def Color(self): ...
|
|
171
187
|
@Color.setter
|
|
172
188
|
def Color(self, value) -> None: ...
|
|
189
|
+
@property
|
|
190
|
+
def Gap_Top(self): ...
|
|
191
|
+
@Gap_Top.setter
|
|
192
|
+
def Gap_Top(self, v) -> None: ...
|
|
193
|
+
@property
|
|
194
|
+
def Gap_Bottom(self): ...
|
|
195
|
+
@Gap_Bottom.setter
|
|
196
|
+
def Gap_Bottom(self, v) -> None: ...
|
|
197
|
+
@property
|
|
198
|
+
def Gap_Left(self): ...
|
|
199
|
+
@Gap_Left.setter
|
|
200
|
+
def Gap_Left(self, v) -> None: ...
|
|
201
|
+
@property
|
|
202
|
+
def Gap_Right(self): ...
|
|
203
|
+
@Gap_Right.setter
|
|
204
|
+
def Gap_Right(self, v) -> None: ...
|
|
173
205
|
|
|
174
206
|
class THLayout(TVCLLayoutBase):
|
|
175
207
|
ui: Incomplete
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: WebGUIAPI
|
|
3
|
-
Version: 1.2605.
|
|
3
|
+
Version: 1.2605.1202
|
|
4
4
|
Summary: WebGUIAPI Python package
|
|
5
5
|
Author-email: James Lin <tylin123@ms27.hinet.net>
|
|
6
6
|
License: Copyright (c) 2025 James Lin
|
|
@@ -29,11 +29,21 @@ Requires-Python: >=3.10
|
|
|
29
29
|
Description-Content-Type: text/markdown
|
|
30
30
|
License-File: LICENSE
|
|
31
31
|
Requires-Dist: nicegui
|
|
32
|
+
Requires-Dist: tzdata
|
|
33
|
+
Requires-Dist: python-multipart
|
|
34
|
+
Requires-Dist: uvicorn
|
|
32
35
|
Dynamic: license-file
|
|
33
36
|
|
|
34
37
|
#WebGUIAPI
|
|
35
38
|
|
|
36
39
|
## History of version
|
|
40
|
+
Version 1.2605.1202: 2026/05/12<BR>
|
|
41
|
+
Fixed:Prevent flash exit in different os.
|
|
42
|
+
|
|
43
|
+
Version 1.2605.1201: 2026/05/12<BR>
|
|
44
|
+
Modify TVlayout/THlayout: Include property Gap_xxx
|
|
45
|
+
Modify TComponent: include WidthR/HeightR (Auto resize by ratio)
|
|
46
|
+
|
|
37
47
|
Version 1.2605.0802: 2026/05/08<BR>
|
|
38
48
|
Add TMediaPlayer, TProgressBar
|
|
39
49
|
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
nicegui
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|