WebGUIAPI 1.2604.2901__tar.gz → 1.2605.801__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.2604.2901
3
+ Version: 1.2605.801
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,10 @@ Dynamic: license-file
34
34
  #WebGUIAPI
35
35
 
36
36
  ## History of version
37
+ Version 1.2605.0801: 2026/05/08<BR>
38
+ Fixed problem: TPanel, TImage layer
39
+ Fixed container : TVLayout
40
+
37
41
  Version 1.2604.2901: 2026/04/29<BR>
38
42
  Fixed TCheckBox problem.
39
43
 
@@ -1,6 +1,10 @@
1
1
  #WebGUIAPI
2
2
 
3
3
  ## History of version
4
+ Version 1.2605.0801: 2026/05/08<BR>
5
+ Fixed problem: TPanel, TImage layer
6
+ Fixed container : TVLayout
7
+
4
8
  Version 1.2604.2901: 2026/04/29<BR>
5
9
  Fixed TCheckBox problem.
6
10
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "WebGUIAPI"
7
- version = "1.2604.2901"
7
+ version = "1.2605.0801"
8
8
  requires-python = ">=3.10"
9
9
  description = "WebGUIAPI Python package"
10
10
  authors = [
@@ -49,9 +49,9 @@ class TLabel(TComponent):
49
49
  ui: Incomplete
50
50
  def __init__(self, parent=None, caption: str = '') -> None: ...
51
51
  @property
52
- def caption(self): ...
53
- @caption.setter
54
- def caption(self, value) -> None: ...
52
+ def Caption(self): ...
53
+ @Caption.setter
54
+ def Caption(self, value) -> None: ...
55
55
 
56
56
  class TEdit(TComponent):
57
57
  onChange: Incomplete
@@ -80,9 +80,9 @@ class TButton(TComponent):
80
80
  @Shape.setter
81
81
  def Shape(self, v: TButtonShape): ...
82
82
  @property
83
- def caption(self): ...
84
- @caption.setter
85
- def caption(self, value) -> None: ...
83
+ def Caption(self): ...
84
+ @Caption.setter
85
+ def Caption(self, value) -> None: ...
86
86
 
87
87
  class TCheckBox(TComponent):
88
88
  ui: Incomplete
@@ -129,8 +129,11 @@ class TPanel(TComponent):
129
129
  class TImage(TComponent):
130
130
  Align: Incomplete
131
131
  Stretch: bool
132
+ wrapper: Incomplete
133
+ img_obj: Incomplete
132
134
  ui: Incomplete
133
135
  def __init__(self, parent=None, src: str = '', width=None, height=None) -> None: ...
136
+ def add_child_style(self, child) -> None: ...
134
137
  def LoadImage(self, src) -> None: ...
135
138
  @property
136
139
  def Width(self): ...
@@ -222,6 +225,6 @@ class TCheckBox(TComponent):
222
225
  @Checked.setter
223
226
  def Checked(self, v: bool): ...
224
227
  @property
225
- def caption(self): ...
226
- @caption.setter
228
+ def Caption(self): ...
229
+ @Caption.setter
227
230
  def caption(self, value) -> None: ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: WebGUIAPI
3
- Version: 1.2604.2901
3
+ Version: 1.2605.801
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,10 @@ Dynamic: license-file
34
34
  #WebGUIAPI
35
35
 
36
36
  ## History of version
37
+ Version 1.2605.0801: 2026/05/08<BR>
38
+ Fixed problem: TPanel, TImage layer
39
+ Fixed container : TVLayout
40
+
37
41
  Version 1.2604.2901: 2026/04/29<BR>
38
42
  Fixed TCheckBox problem.
39
43
 
File without changes