WebGUIAPI 1.2604.2810__tar.gz → 1.2604.2811__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.2810
3
+ Version: 1.2604.2811
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.2604.2811: 2026/04/28<BR>
38
+ Fixed TVLayout/THLayout/TGridLayout Undefined error.
39
+
40
+
37
41
  Version 1.2604.2810: 2026/04/28<BR>
38
42
  Add TPageControl, TGroupBox, TRadioButton, TCheckBox
39
43
 
@@ -1,6 +1,10 @@
1
1
  #WebGUIAPI
2
2
 
3
3
  ## History of version
4
+ Version 1.2604.2811: 2026/04/28<BR>
5
+ Fixed TVLayout/THLayout/TGridLayout Undefined error.
6
+
7
+
4
8
  Version 1.2604.2810: 2026/04/28<BR>
5
9
  Add TPageControl, TGroupBox, TRadioButton, TCheckBox
6
10
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "WebGUIAPI"
7
- version = "1.2604.2810"
7
+ version = "1.2604.2811"
8
8
  requires-python = ">=3.10"
9
9
  description = "WebGUIAPI Python package"
10
10
  authors = [
@@ -35,11 +35,37 @@ class TComponent:
35
35
  @Color.setter
36
36
  def Color(self, v) -> None: ...
37
37
 
38
+ class TVCLLayoutBase(TComponent): ...
39
+
40
+ class THLayout(TVCLLayoutBase):
41
+ ui: Incomplete
42
+ def __init__(self, parent=None) -> None: ...
43
+ def add_child_style(self, child) -> None: ...
44
+
45
+ class TVLayout(TVCLLayoutBase):
46
+ ui: Incomplete
47
+ def __init__(self, parent=None) -> None: ...
48
+ def add_child_style(self, child) -> None: ...
49
+
50
+ class TGridLayout(TVCLLayoutBase):
51
+ ui: Incomplete
52
+ def __init__(self, parent=None) -> None: ...
53
+ @property
54
+ def Cols(self): ...
55
+ @Cols.setter
56
+ def Cols(self, v) -> None: ...
57
+ @property
58
+ def Rows(self): ...
59
+ @Rows.setter
60
+ def Rows(self, v) -> None: ...
61
+ def Grid(self, row, col): ...
62
+ def add_child_style(self, child) -> None: ...
63
+
38
64
  class TForm(TComponent):
39
65
  url: Incomplete
40
66
  is_kiosk: Incomplete
41
67
  ui: Incomplete
42
- def __init__(self, url: str = '/', title: str = 'VCL Form', kiosk: bool = False) -> None: ...
68
+ def __init__(self, url: str = '/', title: str = 'Untitle Web Form', kiosk: bool = False) -> None: ...
43
69
  def Kiosk_Mode(self) -> None: ...
44
70
  def Show(self, new_tab: bool = False) -> None: ...
45
71
  def Close(self) -> None: ...
@@ -191,29 +217,3 @@ class TTabSheet(TVLayout):
191
217
  def caption(self): ...
192
218
  @caption.setter
193
219
  def caption(self, value) -> None: ...
194
-
195
- class TVCLLayoutBase(TComponent): ...
196
-
197
- class THLayout(TVCLLayoutBase):
198
- ui: Incomplete
199
- def __init__(self, parent=None) -> None: ...
200
- def add_child_style(self, child) -> None: ...
201
-
202
- class TVLayout(TVCLLayoutBase):
203
- ui: Incomplete
204
- def __init__(self, parent=None) -> None: ...
205
- def add_child_style(self, child) -> None: ...
206
-
207
- class TGridLayout(TVCLLayoutBase):
208
- ui: Incomplete
209
- def __init__(self, parent=None) -> None: ...
210
- @property
211
- def Cols(self): ...
212
- @Cols.setter
213
- def Cols(self, v) -> None: ...
214
- @property
215
- def Rows(self): ...
216
- @Rows.setter
217
- def Rows(self, v) -> None: ...
218
- def Grid(self, row, col): ...
219
- def add_child_style(self, child) -> None: ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: WebGUIAPI
3
- Version: 1.2604.2810
3
+ Version: 1.2604.2811
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.2604.2811: 2026/04/28<BR>
38
+ Fixed TVLayout/THLayout/TGridLayout Undefined error.
39
+
40
+
37
41
  Version 1.2604.2810: 2026/04/28<BR>
38
42
  Add TPageControl, TGroupBox, TRadioButton, TCheckBox
39
43
 
File without changes