qt-ui-kit 1.0.116 → 1.0.118
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.
- package/dist/index.d.mts +53 -45
- package/dist/index.d.ts +53 -45
- package/dist/index.js +413 -146
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +439 -173
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +24 -3
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
--font-weight-semibold: 600;
|
|
33
33
|
--font-weight-bold: 700;
|
|
34
34
|
--tracking-wide: 0.025em;
|
|
35
|
+
--leading-tight: 1.25;
|
|
35
36
|
--radius-md: 0.375rem;
|
|
36
37
|
--radius-lg: 0.5rem;
|
|
37
38
|
--radius-xl: 0.75rem;
|
|
@@ -285,6 +286,9 @@
|
|
|
285
286
|
.z-999 {
|
|
286
287
|
z-index: 999;
|
|
287
288
|
}
|
|
289
|
+
.z-\[9999\] {
|
|
290
|
+
z-index: 9999;
|
|
291
|
+
}
|
|
288
292
|
.col-span-2 {
|
|
289
293
|
grid-column: span 2 / span 2;
|
|
290
294
|
}
|
|
@@ -677,6 +681,9 @@
|
|
|
677
681
|
.overflow-visible {
|
|
678
682
|
overflow: visible;
|
|
679
683
|
}
|
|
684
|
+
.overflow-x-auto {
|
|
685
|
+
overflow-x: auto;
|
|
686
|
+
}
|
|
680
687
|
.overflow-x-hidden {
|
|
681
688
|
overflow-x: hidden;
|
|
682
689
|
}
|
|
@@ -838,6 +845,12 @@
|
|
|
838
845
|
.bg-black {
|
|
839
846
|
background-color: var(--color-black);
|
|
840
847
|
}
|
|
848
|
+
.bg-black\/90 {
|
|
849
|
+
background-color: color-mix(in srgb, #000 90%, transparent);
|
|
850
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
851
|
+
background-color: color-mix(in oklab, var(--color-black) 90%, transparent);
|
|
852
|
+
}
|
|
853
|
+
}
|
|
841
854
|
.bg-blue-500 {
|
|
842
855
|
background-color: var(--color-blue-500);
|
|
843
856
|
}
|
|
@@ -1018,6 +1031,10 @@
|
|
|
1018
1031
|
--tw-leading: 1;
|
|
1019
1032
|
line-height: 1;
|
|
1020
1033
|
}
|
|
1034
|
+
.leading-tight {
|
|
1035
|
+
--tw-leading: var(--leading-tight);
|
|
1036
|
+
line-height: var(--leading-tight);
|
|
1037
|
+
}
|
|
1021
1038
|
.font-bold {
|
|
1022
1039
|
--tw-font-weight: var(--font-weight-bold);
|
|
1023
1040
|
font-weight: var(--font-weight-bold);
|
|
@@ -1034,9 +1051,6 @@
|
|
|
1034
1051
|
--tw-tracking: var(--tracking-wide);
|
|
1035
1052
|
letter-spacing: var(--tracking-wide);
|
|
1036
1053
|
}
|
|
1037
|
-
.text-nowrap {
|
|
1038
|
-
text-wrap: nowrap;
|
|
1039
|
-
}
|
|
1040
1054
|
.break-words {
|
|
1041
1055
|
overflow-wrap: break-word;
|
|
1042
1056
|
}
|
|
@@ -1046,6 +1060,9 @@
|
|
|
1046
1060
|
.break-all {
|
|
1047
1061
|
word-break: break-all;
|
|
1048
1062
|
}
|
|
1063
|
+
.whitespace-nowrap {
|
|
1064
|
+
white-space: nowrap;
|
|
1065
|
+
}
|
|
1049
1066
|
.whitespace-pre-line {
|
|
1050
1067
|
white-space: pre-line;
|
|
1051
1068
|
}
|
|
@@ -1140,6 +1157,10 @@
|
|
|
1140
1157
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1141
1158
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1142
1159
|
}
|
|
1160
|
+
.duration-150 {
|
|
1161
|
+
--tw-duration: 150ms;
|
|
1162
|
+
transition-duration: 150ms;
|
|
1163
|
+
}
|
|
1143
1164
|
.duration-300 {
|
|
1144
1165
|
--tw-duration: 300ms;
|
|
1145
1166
|
transition-duration: 300ms;
|