jbqt 0.1.1__py3-none-any.whl → 0.1.2__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/common/consts.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import os
|
|
2
2
|
import re
|
|
3
3
|
|
|
4
|
-
import
|
|
4
|
+
import jbutils
|
|
5
5
|
|
|
6
6
|
from PyQt6.QtWidgets import QApplication, QMainWindow, QScrollArea, QWidget
|
|
7
7
|
from PyQt6.QtCore import Qt, QSize
|
|
@@ -10,8 +10,8 @@ from PyQt6.QtGui import QIcon, QPixmap, QPainter, QColor
|
|
|
10
10
|
TAG_RE = re.compile(r"^\((.+)\)(\d+\.\d+)$")
|
|
11
11
|
LIST_ITEM_ROLE = Qt.ItemDataRole.UserRole - 1
|
|
12
12
|
|
|
13
|
-
STYLES =
|
|
14
|
-
COLORS =
|
|
13
|
+
STYLES = jbutils.STYLES
|
|
14
|
+
COLORS = jbutils.COLORS
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
class GlobalRefs:
|
jbqt/widgets/chips.py
CHANGED
jbqt/widgets/multiselect.py
CHANGED
|
@@ -4,7 +4,7 @@ from PyQt6.QtCore import QObject, pyqtSignal, Qt
|
|
|
4
4
|
from PyQt6.QtGui import QCursor, QMouseEvent, QWheelEvent
|
|
5
5
|
from PyQt6.QtWidgets import QComboBox, QListWidget, QListWidgetItem
|
|
6
6
|
|
|
7
|
-
import
|
|
7
|
+
import jbutils as utils
|
|
8
8
|
from jbqt.common import consts, qt_utils
|
|
9
9
|
|
|
10
10
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: jbqt
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary:
|
|
5
5
|
Author: Joseph Bochinski
|
|
6
6
|
Author-email: stirgejr@gmail.com
|
|
@@ -8,7 +8,7 @@ Requires-Python: >=3.12,<4.0
|
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
9
|
Classifier: Programming Language :: Python :: 3.12
|
|
10
10
|
Requires-Dist: fuzzywuzzy (>=0.18.0,<0.19.0)
|
|
11
|
-
Requires-Dist:
|
|
11
|
+
Requires-Dist: jbutils (>=0.1.1,<0.2.0)
|
|
12
12
|
Requires-Dist: pyqt6 (>=6.9.0,<7.0.0)
|
|
13
13
|
Requires-Dist: python-levenshtein (>=0.27.1,<0.28.0)
|
|
14
14
|
Description-Content-Type: text/markdown
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
jbqt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
jbqt/common/__init__.py,sha256=zW8Bre-RNMnwQs9IIAhVygK12D2Hp3lu5wLRrg-AYvE,219
|
|
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=xBUaxykAe3ajLJRgmykViKxTWyGfLIWJrfW4M8RP2lY,969
|
|
@@ -12,11 +12,11 @@ jbqt/models/chips.py,sha256=ou9RJxDSm6MI10CDnWrNi1DTRMKfqIIEowLVbyoFJZg,652
|
|
|
12
12
|
jbqt/view_icons.py,sha256=dwAAtDbqs3mwtmUxsjlFYdTsD2mi5m9BRmBQm6HpU9E,6389
|
|
13
13
|
jbqt/widgets/__init__.py,sha256=SBq_n_iVaRBPaav_sPsemrNT3yjh8zcQnhaRRbv4y8k,420
|
|
14
14
|
jbqt/widgets/chip_button.py,sha256=w_slazW-a4qmQDmdqSwtuPXLqA8rntjgHK3Tvgu3fDg,6222
|
|
15
|
-
jbqt/widgets/chips.py,sha256=
|
|
16
|
-
jbqt/widgets/multiselect.py,sha256=
|
|
15
|
+
jbqt/widgets/chips.py,sha256=DxZln3JdseEJRzmWWhrcR560ZOHCchmZqnjjUnEUZ_M,7743
|
|
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.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,,
|
|
File without changes
|