WebGUIAPI 1.2605.2101__tar.gz → 1.2605.2102__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.2101/src/WebGUIAPI.egg-info → webguiapi-1.2605.2102}/PKG-INFO +5 -1
- {webguiapi-1.2605.2101 → webguiapi-1.2605.2102}/README.md +4 -0
- {webguiapi-1.2605.2101 → webguiapi-1.2605.2102}/pyproject.toml +1 -1
- webguiapi-1.2605.2102/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2605.2101 → webguiapi-1.2605.2102}/src/WebGUIAPI/WebGUIvcl.pyi +20 -0
- {webguiapi-1.2605.2101 → webguiapi-1.2605.2102/src/WebGUIAPI.egg-info}/PKG-INFO +5 -1
- webguiapi-1.2605.2101/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2605.2101 → webguiapi-1.2605.2102}/LICENSE +0 -0
- {webguiapi-1.2605.2101 → webguiapi-1.2605.2102}/MANIFEST.in +0 -0
- {webguiapi-1.2605.2101 → webguiapi-1.2605.2102}/setup.cfg +0 -0
- {webguiapi-1.2605.2101 → webguiapi-1.2605.2102}/src/WebGUIAPI.egg-info/SOURCES.txt +0 -0
- {webguiapi-1.2605.2101 → webguiapi-1.2605.2102}/src/WebGUIAPI.egg-info/dependency_links.txt +0 -0
- {webguiapi-1.2605.2101 → webguiapi-1.2605.2102}/src/WebGUIAPI.egg-info/requires.txt +0 -0
- {webguiapi-1.2605.2101 → webguiapi-1.2605.2102}/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.2102
|
|
4
4
|
Summary: WebGUIAPI Python package
|
|
5
5
|
Author-email: James Lin <tylin123@ms27.hinet.net>
|
|
6
6
|
License: Copyright (c) 2025 James Lin
|
|
@@ -37,6 +37,10 @@ Dynamic: license-file
|
|
|
37
37
|
#WebGUIAPI
|
|
38
38
|
|
|
39
39
|
## History of version
|
|
40
|
+
Version 1.2605.2102: 2026/05/21<BR>
|
|
41
|
+
Fixed TComponent::TTabSheet Enabled bug
|
|
42
|
+
|
|
43
|
+
|
|
40
44
|
Version 1.2605.2101: 2026/05/21<BR>
|
|
41
45
|
Add new TPanel
|
|
42
46
|
Add new properties: Enabled, Visible for TComponent
|
|
Binary file
|
|
@@ -51,6 +51,14 @@ class TComponent:
|
|
|
51
51
|
@property
|
|
52
52
|
def ClassName(self): ...
|
|
53
53
|
@property
|
|
54
|
+
def Enabled(self): ...
|
|
55
|
+
@Enabled.setter
|
|
56
|
+
def Enabled(self, v: bool): ...
|
|
57
|
+
@property
|
|
58
|
+
def Visible(self): ...
|
|
59
|
+
@Visible.setter
|
|
60
|
+
def Visible(self, v: bool): ...
|
|
61
|
+
@property
|
|
54
62
|
def Align(self): ...
|
|
55
63
|
@Align.setter
|
|
56
64
|
def Align(self, v) -> None: ...
|
|
@@ -221,6 +229,14 @@ class TPanel(TComponent):
|
|
|
221
229
|
ui: Incomplete
|
|
222
230
|
def __init__(self, parent=None, width: int = 300, height: int = 200) -> None: ...
|
|
223
231
|
@property
|
|
232
|
+
def Visible(self): ...
|
|
233
|
+
@Visible.setter
|
|
234
|
+
def Visible(self, v: bool): ...
|
|
235
|
+
@property
|
|
236
|
+
def Sizeable(self): ...
|
|
237
|
+
@Sizeable.setter
|
|
238
|
+
def Sizeable(self, v: bool): ...
|
|
239
|
+
@property
|
|
224
240
|
def DragDrop(self): ...
|
|
225
241
|
@DragDrop.setter
|
|
226
242
|
def DragDrop(self, value: bool): ...
|
|
@@ -506,6 +522,10 @@ class TPageControl(TComponent):
|
|
|
506
522
|
ActivePageIndex: int
|
|
507
523
|
def NewTabSheet(self, caption: str = 'New Page'): ...
|
|
508
524
|
@property
|
|
525
|
+
def Enabled(self): ...
|
|
526
|
+
@Enabled.setter
|
|
527
|
+
def Enabled(self, v: bool): ...
|
|
528
|
+
@property
|
|
509
529
|
def FocusColor(self): ...
|
|
510
530
|
@FocusColor.setter
|
|
511
531
|
def FocusColor(self, value) -> None: ...
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: WebGUIAPI
|
|
3
|
-
Version: 1.2605.
|
|
3
|
+
Version: 1.2605.2102
|
|
4
4
|
Summary: WebGUIAPI Python package
|
|
5
5
|
Author-email: James Lin <tylin123@ms27.hinet.net>
|
|
6
6
|
License: Copyright (c) 2025 James Lin
|
|
@@ -37,6 +37,10 @@ Dynamic: license-file
|
|
|
37
37
|
#WebGUIAPI
|
|
38
38
|
|
|
39
39
|
## History of version
|
|
40
|
+
Version 1.2605.2102: 2026/05/21<BR>
|
|
41
|
+
Fixed TComponent::TTabSheet Enabled bug
|
|
42
|
+
|
|
43
|
+
|
|
40
44
|
Version 1.2605.2101: 2026/05/21<BR>
|
|
41
45
|
Add new TPanel
|
|
42
46
|
Add new properties: Enabled, Visible for TComponent
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|