WebGUIAPI 1.2604.2802__tar.gz → 1.2604.2805__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.2802
3
+ Version: 1.2604.2805
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,15 @@ Dynamic: license-file
34
34
  #WebGUIAPI
35
35
 
36
36
  ## History of version
37
+ Version 1.2604.2805: 2026/04/28<BR>
38
+ Re-write&design TListBox code
39
+ Fix problem:TComboBox compatible with vcl framework<BR>
40
+ remove option and value property.
41
+
42
+ Version 1.2604.2803: 2026/04/28<BR>
43
+ Fix problem:
44
+ TEdit component err --> NameError: name 'v' is not defined
45
+
37
46
  Version 1.2604.2802: 2026/04/28<BR>
38
47
  1.Add TListBox component.
39
48
  2.Improve TButton add TButtonShape property.
@@ -0,0 +1,18 @@
1
+ #WebGUIAPI
2
+
3
+ ## History of version
4
+ Version 1.2604.2805: 2026/04/28<BR>
5
+ Re-write&design TListBox code
6
+ Fix problem:TComboBox compatible with vcl framework<BR>
7
+ remove option and value property.
8
+
9
+ Version 1.2604.2803: 2026/04/28<BR>
10
+ Fix problem:
11
+ TEdit component err --> NameError: name 'v' is not defined
12
+
13
+ Version 1.2604.2802: 2026/04/28<BR>
14
+ 1.Add TListBox component.
15
+ 2.Improve TButton add TButtonShape property.
16
+
17
+ Version 1.2604.2801: 2026/04/28<BR>
18
+ Create WebGUI component for VCL framework like.
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "WebGUIAPI"
7
- version = "1.2604.2802"
7
+ version = "1.2604.2805"
8
8
  requires-python = ">=3.10"
9
9
  description = "WebGUIAPI Python package"
10
10
  authors = [
@@ -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 value(self): ...
100
- @value.setter
101
- def value(self, v) -> None: ...
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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: WebGUIAPI
3
- Version: 1.2604.2802
3
+ Version: 1.2604.2805
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,15 @@ Dynamic: license-file
34
34
  #WebGUIAPI
35
35
 
36
36
  ## History of version
37
+ Version 1.2604.2805: 2026/04/28<BR>
38
+ Re-write&design TListBox code
39
+ Fix problem:TComboBox compatible with vcl framework<BR>
40
+ remove option and value property.
41
+
42
+ Version 1.2604.2803: 2026/04/28<BR>
43
+ Fix problem:
44
+ TEdit component err --> NameError: name 'v' is not defined
45
+
37
46
  Version 1.2604.2802: 2026/04/28<BR>
38
47
  1.Add TListBox component.
39
48
  2.Improve TButton add TButtonShape property.
@@ -1,9 +0,0 @@
1
- #WebGUIAPI
2
-
3
- ## History of version
4
- Version 1.2604.2802: 2026/04/28<BR>
5
- 1.Add TListBox component.
6
- 2.Improve TButton add TButtonShape property.
7
-
8
- Version 1.2604.2801: 2026/04/28<BR>
9
- Create WebGUI component for VCL framework like.
File without changes