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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: WebGUIAPI
3
- Version: 1.2605.2101
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
@@ -1,6 +1,10 @@
1
1
  #WebGUIAPI
2
2
 
3
3
  ## History of version
4
+ Version 1.2605.2102: 2026/05/21<BR>
5
+ Fixed TComponent::TTabSheet Enabled bug
6
+
7
+
4
8
  Version 1.2605.2101: 2026/05/21<BR>
5
9
  Add new TPanel
6
10
  Add new properties: Enabled, Visible for TComponent
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "WebGUIAPI"
7
- version = "1.2605.2101"
7
+ version = "1.2605.2102"
8
8
  requires-python = ">=3.10"
9
9
  description = "WebGUIAPI Python package"
10
10
  authors = [
@@ -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.2101
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
File without changes