WebGUIAPI 1.2605.1201__tar.gz → 1.2605.1401__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.1201
3
+ Version: 1.2605.1401
4
4
  Summary: WebGUIAPI Python package
5
5
  Author-email: James Lin <tylin123@ms27.hinet.net>
6
6
  License: Copyright (c) 2025 James Lin
@@ -29,16 +29,30 @@ Requires-Python: >=3.10
29
29
  Description-Content-Type: text/markdown
30
30
  License-File: LICENSE
31
31
  Requires-Dist: nicegui
32
+ Requires-Dist: tzdata
33
+ Requires-Dist: python-multipart
34
+ Requires-Dist: uvicorn
32
35
  Dynamic: license-file
33
36
 
34
37
  #WebGUIAPI
35
38
 
36
39
  ## History of version
40
+ Version 1.2605.1401: 2026/05/14<BR>
41
+ Add Components:
42
+ TDateComboBox, TTimeComboBox, TRadioButton
43
+ Improve Function:
44
+ TMemo: Add OnChange Event
45
+ TComponent:
46
+ Add OnClick Event
47
+
48
+
49
+ Version 1.2605.1202: 2026/05/12<BR>
50
+ Fixed:Prevent flash exit in different os.
51
+
37
52
  Version 1.2605.1201: 2026/05/12<BR>
38
53
  Modify TVlayout/THlayout: Include property Gap_xxx
39
54
  Modify TComponent: include WidthR/HeightR (Auto resize by ratio)
40
55
 
41
-
42
56
  Version 1.2605.0802: 2026/05/08<BR>
43
57
  Add TMediaPlayer, TProgressBar
44
58
 
@@ -1,11 +1,22 @@
1
1
  #WebGUIAPI
2
2
 
3
3
  ## History of version
4
+ Version 1.2605.1401: 2026/05/14<BR>
5
+ Add Components:
6
+ TDateComboBox, TTimeComboBox, TRadioButton
7
+ Improve Function:
8
+ TMemo: Add OnChange Event
9
+ TComponent:
10
+ Add OnClick Event
11
+
12
+
13
+ Version 1.2605.1202: 2026/05/12<BR>
14
+ Fixed:Prevent flash exit in different os.
15
+
4
16
  Version 1.2605.1201: 2026/05/12<BR>
5
17
  Modify TVlayout/THlayout: Include property Gap_xxx
6
18
  Modify TComponent: include WidthR/HeightR (Auto resize by ratio)
7
19
 
8
-
9
20
  Version 1.2605.0802: 2026/05/08<BR>
10
21
  Add TMediaPlayer, TProgressBar
11
22
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "WebGUIAPI"
7
- version = "1.2605.1201"
7
+ version = "1.2605.1401"
8
8
  requires-python = ">=3.10"
9
9
  description = "WebGUIAPI Python package"
10
10
  authors = [
@@ -13,7 +13,10 @@ authors = [
13
13
  readme = "README.md"
14
14
  license = { file = "LICENSE" }
15
15
  dependencies = [
16
- "nicegui"
16
+ "nicegui",
17
+ "tzdata",
18
+ "python-multipart",
19
+ "uvicorn",
17
20
  ]
18
21
 
19
22
  [project.urls]
@@ -4,6 +4,7 @@ from enum import Enum
4
4
  class TComponent:
5
5
  parent: Incomplete
6
6
  children: Incomplete
7
+ Tag: int
7
8
  def __init__(self, parent=None) -> None: ...
8
9
  @property
9
10
  def FontName(self): ...
@@ -66,6 +67,7 @@ class TForm:
66
67
  def icon(self, url) -> None: ...
67
68
 
68
69
  class TLabel(TComponent):
70
+ onClick: Incomplete
69
71
  ui: Incomplete
70
72
  def __init__(self, parent=None, caption: str = '') -> None: ...
71
73
  @property
@@ -83,8 +85,14 @@ class TEdit(TComponent):
83
85
  def text(self, value) -> None: ...
84
86
 
85
87
  class TMemo(TComponent):
88
+ onChange: Incomplete
86
89
  ui: Incomplete
90
+ Lines: Incomplete
87
91
  def __init__(self, parent=None) -> None: ...
92
+ @property
93
+ def Text(self): ...
94
+ @Text.setter
95
+ def Text(self, value) -> None: ...
88
96
 
89
97
  class TButtonShape(Enum):
90
98
  Rectangle = 'Rectangle'
@@ -105,12 +113,36 @@ class TButton(TComponent):
105
113
  def Caption(self, value) -> None: ...
106
114
 
107
115
  class TCheckBox(TComponent):
116
+ onChange: Incomplete
117
+ onCLick: Incomplete
108
118
  ui: Incomplete
109
- def __init__(self, parent=None, caption: str = '') -> None: ...
119
+ def __init__(self, parent=None, caption: str = 'CheckBox') -> None: ...
120
+ @property
121
+ def Checked(self) -> bool: ...
122
+ @Checked.setter
123
+ def Checked(self, v: bool): ...
124
+ @property
125
+ def Caption(self): ...
126
+ @Caption.setter
127
+ def Caption(self, value) -> None: ...
128
+
129
+ class TRadioButton(TComponent):
130
+ onClick: Incomplete
131
+ Tag: int
132
+ ui: Incomplete
133
+ def __init__(self, parent=None, caption: str = 'RadioButton') -> None: ...
134
+ @property
135
+ def ButtonColor(self): ...
136
+ @ButtonColor.setter
137
+ def ButtonColor(self, value) -> None: ...
138
+ @property
139
+ def Checked(self) -> bool: ...
140
+ @Checked.setter
141
+ def Checked(self, v: bool): ...
110
142
  @property
111
- def checked(self): ...
112
- @checked.setter
113
- def checked(self, value) -> None: ...
143
+ def Caption(self): ...
144
+ @Caption.setter
145
+ def Caption(self, value) -> None: ...
114
146
 
115
147
  class TComboBox(TComponent):
116
148
  onChange: Incomplete
@@ -147,6 +179,9 @@ class TPanel(TComponent):
147
179
  def Image(self, src) -> None: ...
148
180
 
149
181
  class TImage(TComponent):
182
+ onClick: Incomplete
183
+ onLoadImage: Incomplete
184
+ onLoadImageFinish: Incomplete
150
185
  Align: Incomplete
151
186
  Stretch: bool
152
187
  wrapper: Incomplete
@@ -165,10 +200,16 @@ class TImage(TComponent):
165
200
  def Height(self, value) -> None: ...
166
201
 
167
202
  class TTimer:
168
- interval: Incomplete
169
203
  onTimer: Incomplete
170
- enabled: bool
171
204
  def __init__(self, interval: float = 1.0) -> None: ...
205
+ @property
206
+ def Enabled(self): ...
207
+ @Enabled.setter
208
+ def Enabled(self, value: bool): ...
209
+ @property
210
+ def Interval(self): ...
211
+ @Interval.setter
212
+ def Interval(self, value) -> None: ...
172
213
  def start(self) -> None: ...
173
214
  def stop(self) -> None: ...
174
215
 
@@ -326,3 +367,37 @@ class TProgressBar(TComponent):
326
367
  def BarColor(self): ...
327
368
  @BarColor.setter
328
369
  def BarColor(self, v) -> None: ...
370
+
371
+ class TDateComboBox(TComponent):
372
+ onChange: Incomplete
373
+ Tag: int
374
+ PopupWidth: str
375
+ PopupHeight: str
376
+ icon: Incomplete
377
+ ui: Incomplete
378
+ date_picker: Incomplete
379
+ def __init__(self, parent=None, date_str: str = '', caption: str = '') -> None: ...
380
+ @property
381
+ def Caption(self): ...
382
+ @Caption.setter
383
+ def Caption(self, value) -> None: ...
384
+ @property
385
+ def Date(self): ...
386
+ @Date.setter
387
+ def Date(self, value) -> None: ...
388
+
389
+ class TTimeComboBox(TComponent):
390
+ onChange: Incomplete
391
+ Tag: int
392
+ ui: Incomplete
393
+ icon: Incomplete
394
+ time_picker: Incomplete
395
+ def __init__(self, parent=None, time_str: str = '', caption: str = '') -> None: ...
396
+ @property
397
+ def Caption(self): ...
398
+ @Caption.setter
399
+ def Caption(self, value) -> None: ...
400
+ @property
401
+ def Time(self): ...
402
+ @Time.setter
403
+ def Time(self, value) -> None: ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: WebGUIAPI
3
- Version: 1.2605.1201
3
+ Version: 1.2605.1401
4
4
  Summary: WebGUIAPI Python package
5
5
  Author-email: James Lin <tylin123@ms27.hinet.net>
6
6
  License: Copyright (c) 2025 James Lin
@@ -29,16 +29,30 @@ Requires-Python: >=3.10
29
29
  Description-Content-Type: text/markdown
30
30
  License-File: LICENSE
31
31
  Requires-Dist: nicegui
32
+ Requires-Dist: tzdata
33
+ Requires-Dist: python-multipart
34
+ Requires-Dist: uvicorn
32
35
  Dynamic: license-file
33
36
 
34
37
  #WebGUIAPI
35
38
 
36
39
  ## History of version
40
+ Version 1.2605.1401: 2026/05/14<BR>
41
+ Add Components:
42
+ TDateComboBox, TTimeComboBox, TRadioButton
43
+ Improve Function:
44
+ TMemo: Add OnChange Event
45
+ TComponent:
46
+ Add OnClick Event
47
+
48
+
49
+ Version 1.2605.1202: 2026/05/12<BR>
50
+ Fixed:Prevent flash exit in different os.
51
+
37
52
  Version 1.2605.1201: 2026/05/12<BR>
38
53
  Modify TVlayout/THlayout: Include property Gap_xxx
39
54
  Modify TComponent: include WidthR/HeightR (Auto resize by ratio)
40
55
 
41
-
42
56
  Version 1.2605.0802: 2026/05/08<BR>
43
57
  Add TMediaPlayer, TProgressBar
44
58
 
@@ -0,0 +1,4 @@
1
+ nicegui
2
+ tzdata
3
+ python-multipart
4
+ uvicorn
@@ -1 +0,0 @@
1
- nicegui
File without changes