WebGUIAPI 1.2604.2803__tar.gz → 1.2604.2806__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.2604.2803/src/WebGUIAPI.egg-info → webguiapi-1.2604.2806}/PKG-INFO +9 -1
- webguiapi-1.2604.2806/README.md +21 -0
- {webguiapi-1.2604.2803 → webguiapi-1.2604.2806}/pyproject.toml +1 -1
- webguiapi-1.2604.2806/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2604.2803 → webguiapi-1.2604.2806}/src/WebGUIAPI/WebGUIvcl.pyi +5 -7
- {webguiapi-1.2604.2803 → webguiapi-1.2604.2806/src/WebGUIAPI.egg-info}/PKG-INFO +9 -1
- webguiapi-1.2604.2803/README.md +0 -13
- webguiapi-1.2604.2803/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2604.2803 → webguiapi-1.2604.2806}/LICENSE +0 -0
- {webguiapi-1.2604.2803 → webguiapi-1.2604.2806}/MANIFEST.in +0 -0
- {webguiapi-1.2604.2803 → webguiapi-1.2604.2806}/setup.cfg +0 -0
- {webguiapi-1.2604.2803 → webguiapi-1.2604.2806}/src/WebGUIAPI.egg-info/SOURCES.txt +0 -0
- {webguiapi-1.2604.2803 → webguiapi-1.2604.2806}/src/WebGUIAPI.egg-info/dependency_links.txt +0 -0
- {webguiapi-1.2604.2803 → webguiapi-1.2604.2806}/src/WebGUIAPI.egg-info/requires.txt +0 -0
- {webguiapi-1.2604.2803 → webguiapi-1.2604.2806}/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.2604.
|
|
3
|
+
Version: 1.2604.2806
|
|
4
4
|
Summary: WebGUIAPI Python package
|
|
5
5
|
Author-email: James Lin <tylin123@ms27.hinet.net>
|
|
6
6
|
License: Copyright (c) 2025 James Lin
|
|
@@ -34,6 +34,14 @@ Dynamic: license-file
|
|
|
34
34
|
#WebGUIAPI
|
|
35
35
|
|
|
36
36
|
## History of version
|
|
37
|
+
Version 1.2604.2806: 2026/04/28<BR>
|
|
38
|
+
Fixed: TListBox-->Remove _onclick()
|
|
39
|
+
|
|
40
|
+
Version 1.2604.2805: 2026/04/28<BR>
|
|
41
|
+
Re-write&design TListBox code
|
|
42
|
+
Fix problem:TComboBox compatible with vcl framework<BR>
|
|
43
|
+
remove option and value property.
|
|
44
|
+
|
|
37
45
|
Version 1.2604.2803: 2026/04/28<BR>
|
|
38
46
|
Fix problem:
|
|
39
47
|
TEdit component err --> NameError: name 'v' is not defined
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#WebGUIAPI
|
|
2
|
+
|
|
3
|
+
## History of version
|
|
4
|
+
Version 1.2604.2806: 2026/04/28<BR>
|
|
5
|
+
Fixed: TListBox-->Remove _onclick()
|
|
6
|
+
|
|
7
|
+
Version 1.2604.2805: 2026/04/28<BR>
|
|
8
|
+
Re-write&design TListBox code
|
|
9
|
+
Fix problem:TComboBox compatible with vcl framework<BR>
|
|
10
|
+
remove option and value property.
|
|
11
|
+
|
|
12
|
+
Version 1.2604.2803: 2026/04/28<BR>
|
|
13
|
+
Fix problem:
|
|
14
|
+
TEdit component err --> NameError: name 'v' is not defined
|
|
15
|
+
|
|
16
|
+
Version 1.2604.2802: 2026/04/28<BR>
|
|
17
|
+
1.Add TListBox component.
|
|
18
|
+
2.Improve TButton add TButtonShape property.
|
|
19
|
+
|
|
20
|
+
Version 1.2604.2801: 2026/04/28<BR>
|
|
21
|
+
Create WebGUI component for VCL framework like.
|
|
Binary file
|
|
@@ -93,16 +93,13 @@ class TCheckBox(TComponent):
|
|
|
93
93
|
def checked(self, value) -> None: ...
|
|
94
94
|
|
|
95
95
|
class TComboBox(TComponent):
|
|
96
|
+
onChange: Incomplete
|
|
96
97
|
ui: Incomplete
|
|
97
98
|
def __init__(self, parent=None, items=None) -> None: ...
|
|
98
99
|
@property
|
|
99
|
-
def
|
|
100
|
-
@
|
|
101
|
-
def
|
|
102
|
-
@property
|
|
103
|
-
def options(self): ...
|
|
104
|
-
@options.setter
|
|
105
|
-
def options(self, v) -> None: ...
|
|
100
|
+
def ItemIndex(self): ...
|
|
101
|
+
@ItemIndex.setter
|
|
102
|
+
def ItemIndex(self, index) -> None: ...
|
|
106
103
|
|
|
107
104
|
class TStringGrid(TComponent):
|
|
108
105
|
ui: Incomplete
|
|
@@ -199,6 +196,7 @@ class TStrings:
|
|
|
199
196
|
class TListBox(TComponent):
|
|
200
197
|
onClick: Incomplete
|
|
201
198
|
ui: Incomplete
|
|
199
|
+
list_container: Incomplete
|
|
202
200
|
Items: Incomplete
|
|
203
201
|
def __init__(self, parent=None) -> None: ...
|
|
204
202
|
@property
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: WebGUIAPI
|
|
3
|
-
Version: 1.2604.
|
|
3
|
+
Version: 1.2604.2806
|
|
4
4
|
Summary: WebGUIAPI Python package
|
|
5
5
|
Author-email: James Lin <tylin123@ms27.hinet.net>
|
|
6
6
|
License: Copyright (c) 2025 James Lin
|
|
@@ -34,6 +34,14 @@ Dynamic: license-file
|
|
|
34
34
|
#WebGUIAPI
|
|
35
35
|
|
|
36
36
|
## History of version
|
|
37
|
+
Version 1.2604.2806: 2026/04/28<BR>
|
|
38
|
+
Fixed: TListBox-->Remove _onclick()
|
|
39
|
+
|
|
40
|
+
Version 1.2604.2805: 2026/04/28<BR>
|
|
41
|
+
Re-write&design TListBox code
|
|
42
|
+
Fix problem:TComboBox compatible with vcl framework<BR>
|
|
43
|
+
remove option and value property.
|
|
44
|
+
|
|
37
45
|
Version 1.2604.2803: 2026/04/28<BR>
|
|
38
46
|
Fix problem:
|
|
39
47
|
TEdit component err --> NameError: name 'v' is not defined
|
webguiapi-1.2604.2803/README.md
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
#WebGUIAPI
|
|
2
|
-
|
|
3
|
-
## History of version
|
|
4
|
-
Version 1.2604.2803: 2026/04/28<BR>
|
|
5
|
-
Fix problem:
|
|
6
|
-
TEdit component err --> NameError: name 'v' is not defined
|
|
7
|
-
|
|
8
|
-
Version 1.2604.2802: 2026/04/28<BR>
|
|
9
|
-
1.Add TListBox component.
|
|
10
|
-
2.Improve TButton add TButtonShape property.
|
|
11
|
-
|
|
12
|
-
Version 1.2604.2801: 2026/04/28<BR>
|
|
13
|
-
Create WebGUI component for VCL framework like.
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|