jbqt 0.1.2__py3-none-any.whl → 0.1.3__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.

Potentially problematic release.


This version of jbqt might be problematic. Click here for more details.

jbqt/__init__.py CHANGED
@@ -0,0 +1,12 @@
1
+ """Common exports for jbqt"""
2
+
3
+ from jbqt.common import consts, qt_utils
4
+ from jbqt.common.consts import GlobalRefs
5
+ from jbqt.common.qt_utils import register_app
6
+
7
+ __all__ = [
8
+ "GlobalRefs",
9
+ "consts",
10
+ "qt_utils",
11
+ "register_app",
12
+ ]
jbqt/common/__init__.py CHANGED
@@ -1,6 +1,16 @@
1
1
  """Const exports"""
2
2
 
3
+ from jbqt.common import consts, qt_utils
3
4
  from jbqt.common.consts import COLORS, STYLES, SIZES, GlobalRefs, ICONS
4
5
  from jbqt.common.qt_utils import register_app
5
6
 
6
- __all__ = ["COLORS", "STYLES", "SIZES", "GlobalRefs", "ICONS", "register_app"]
7
+ __all__ = [
8
+ "COLORS",
9
+ "consts",
10
+ "GlobalRefs",
11
+ "ICONS",
12
+ "qt_utils",
13
+ "register_app",
14
+ "SIZES",
15
+ "STYLES",
16
+ ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: jbqt
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary:
5
5
  Author: Joseph Bochinski
6
6
  Author-email: stirgejr@gmail.com
@@ -1,5 +1,5 @@
1
- jbqt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- jbqt/common/__init__.py,sha256=zW8Bre-RNMnwQs9IIAhVygK12D2Hp3lu5wLRrg-AYvE,219
1
+ jbqt/__init__.py,sha256=JThPqSDraggKWluruHIXeE1-Kzgu6zJin-IXxX1GnLg,243
2
+ jbqt/common/__init__.py,sha256=WkP7IRKAuScLZpGP3AgARlegLke714OlrgihUVHMHMs,317
3
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
@@ -17,6 +17,6 @@ jbqt/widgets/multiselect.py,sha256=84DYA12FBZvBBsPqlxiWMjY8lsQN0MkpJwqYN3nyz8Y,6
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.2.dist-info/METADATA,sha256=C7L5ApaQn6jBbMU-TKdZRx0qANiCbC7qkBcbFG_G02k,462
21
- jbqt-0.1.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
22
- jbqt-0.1.2.dist-info/RECORD,,
20
+ jbqt-0.1.3.dist-info/METADATA,sha256=BW4PXOspaUE0OLFW9m9vtcXoQEHcDepKuC348PQm0Uc,462
21
+ jbqt-0.1.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
22
+ jbqt-0.1.3.dist-info/RECORD,,
File without changes