jbqt 0.1.4__py3-none-any.whl → 0.1.6__py3-none-any.whl
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.
jbqt/common/consts.py
CHANGED
jbqt/widgets/chip_button.py
CHANGED
|
@@ -151,12 +151,13 @@ class ChipButton(IChipButton):
|
|
|
151
151
|
|
|
152
152
|
def toggle_hidden(self, hide: bool = True) -> None:
|
|
153
153
|
for widget in self.widgets:
|
|
154
|
-
|
|
154
|
+
if widget:
|
|
155
|
+
is_input = widget in self.input_widgets
|
|
155
156
|
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
157
|
+
if hide == is_input:
|
|
158
|
+
widget.hide()
|
|
159
|
+
else:
|
|
160
|
+
widget.show()
|
|
160
161
|
|
|
161
162
|
def cancel(self) -> None:
|
|
162
163
|
self.toggle_hidden()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
jbqt/__init__.py,sha256=JThPqSDraggKWluruHIXeE1-Kzgu6zJin-IXxX1GnLg,243
|
|
2
2
|
jbqt/common/__init__.py,sha256=WkP7IRKAuScLZpGP3AgARlegLke714OlrgihUVHMHMs,317
|
|
3
|
-
jbqt/common/consts.py,sha256=
|
|
3
|
+
jbqt/common/consts.py,sha256=00fLELOQ8KzWnQyvnf_9NDynZFsSHSb6Tx6jNzRBCWU,5599
|
|
4
4
|
jbqt/common/qt_utils.py,sha256=d81MXUIs7JTpXOaPIoGHTLZYwhry7xhCWRy9BxitlzA,2297
|
|
5
5
|
jbqt/dialogs/__init__.py,sha256=DZi-qwW75JKfTLk33bowjt9Nhn1mpOO6kmP7mSMGz0o,245
|
|
6
6
|
jbqt/dialogs/file_dialog.py,sha256=QMUxgSNt1IGLqgPgKqrEwlPjKIQ7D5qrY2cJCXmW654,1830
|
|
@@ -11,12 +11,12 @@ jbqt/models/chip_button.py,sha256=nV5hVaYKStTOTGEa0WnVi1FolxrjnLQ1E3cSCQx-YkA,28
|
|
|
11
11
|
jbqt/models/chips.py,sha256=ou9RJxDSm6MI10CDnWrNi1DTRMKfqIIEowLVbyoFJZg,652
|
|
12
12
|
jbqt/view_icons.py,sha256=dwAAtDbqs3mwtmUxsjlFYdTsD2mi5m9BRmBQm6HpU9E,6389
|
|
13
13
|
jbqt/widgets/__init__.py,sha256=WxDWM5MDnB9NkvaYxE4AiT7tFjGB9fBirEx2iZUujeU,523
|
|
14
|
-
jbqt/widgets/chip_button.py,sha256=
|
|
14
|
+
jbqt/widgets/chip_button.py,sha256=G3WMkPmLwmNvH88dPwtqjAUKVOAA6Xl_QA4c2mhtWqc,6265
|
|
15
15
|
jbqt/widgets/chips.py,sha256=DxZln3JdseEJRzmWWhrcR560ZOHCchmZqnjjUnEUZ_M,7743
|
|
16
16
|
jbqt/widgets/multiselect.py,sha256=84DYA12FBZvBBsPqlxiWMjY8lsQN0MkpJwqYN3nyz8Y,6981
|
|
17
17
|
jbqt/widgets/simple.py,sha256=-JVvNYiL05Ip7qSkt9rRFbdb-Jff6AbnuXPXOXdXoUw,1750
|
|
18
18
|
jbqt/widgets/toast.py,sha256=S85PgcydbmICnjSY5VR6KUG_UZv4UERjvE_mP_zE9GA,1179
|
|
19
19
|
jbqt/widgets/widget_utils.py,sha256=W8HkKJvTjGOB6wRR2D1sFzd673yEpPHNn-njjkM-1HE,2225
|
|
20
|
-
jbqt-0.1.
|
|
21
|
-
jbqt-0.1.
|
|
22
|
-
jbqt-0.1.
|
|
20
|
+
jbqt-0.1.6.dist-info/METADATA,sha256=KP0QOv7SUQCdkYEL6yoRwSwU7ShZ9O9L8jpxYcQqoJg,462
|
|
21
|
+
jbqt-0.1.6.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
22
|
+
jbqt-0.1.6.dist-info/RECORD,,
|
|
File without changes
|