qt-ui-kit 1.0.78 → 1.0.80

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/style.css CHANGED
@@ -20,7 +20,6 @@
20
20
  --text-xs--line-height: calc(1 / 0.75);
21
21
  --text-sm: 0.875rem;
22
22
  --text-sm--line-height: calc(1.25 / 0.875);
23
- --font-weight-normal: 400;
24
23
  --font-weight-medium: 500;
25
24
  --font-weight-semibold: 600;
26
25
  --font-weight-bold: 700;
@@ -45,6 +44,7 @@
45
44
  --color-qtpurple-300: #D8D7FF;
46
45
  --color-qtpurple-200: #EFEEFF;
47
46
  --color-qtpurple-500: #6558FD;
47
+ --color-qtpurple-600: #4F3ED0;
48
48
  --color-qtpurple-800: #4D4273;
49
49
  --color-qtgreen-300: #D2F8B6;
50
50
  --color-qtgreen-200: #E8FE99;
@@ -220,42 +220,42 @@
220
220
  .relative {
221
221
  position: relative;
222
222
  }
223
+ .-top-2 {
224
+ top: calc(var(--spacing) * -2);
225
+ }
223
226
  .top-0 {
224
227
  top: calc(var(--spacing) * 0);
225
228
  }
226
229
  .top-1\/2 {
227
230
  top: calc(1/2 * 100%);
228
231
  }
229
- .top-3 {
230
- top: calc(var(--spacing) * 3);
231
- }
232
- .right-0 {
233
- right: calc(var(--spacing) * 0);
232
+ .top-\[140\%\] {
233
+ top: 140%;
234
234
  }
235
235
  .right-\[-6px\] {
236
236
  right: -6px;
237
237
  }
238
+ .right-\[56\%\] {
239
+ right: 56%;
240
+ }
238
241
  .bottom-0 {
239
242
  bottom: calc(var(--spacing) * 0);
240
243
  }
241
244
  .left-1\/2 {
242
245
  left: calc(1/2 * 100%);
243
246
  }
247
+ .left-22 {
248
+ left: calc(var(--spacing) * 22);
249
+ }
244
250
  .left-\[-6px\] {
245
251
  left: -6px;
246
252
  }
247
- .left-full {
248
- left: 100%;
249
- }
250
253
  .z-0 {
251
254
  z-index: 0;
252
255
  }
253
256
  .z-10 {
254
257
  z-index: 10;
255
258
  }
256
- .z-50 {
257
- z-index: 50;
258
- }
259
259
  .col-span-2 {
260
260
  grid-column: span 2 / span 2;
261
261
  }
@@ -268,9 +268,6 @@
268
268
  .mb-2 {
269
269
  margin-bottom: calc(var(--spacing) * 2);
270
270
  }
271
- .ml-2 {
272
- margin-left: calc(var(--spacing) * 2);
273
- }
274
271
  .line-clamp-1 {
275
272
  overflow: hidden;
276
273
  display: -webkit-box;
@@ -289,12 +286,6 @@
289
286
  -webkit-box-orient: vertical;
290
287
  -webkit-line-clamp: 3;
291
288
  }
292
- .line-clamp-4 {
293
- overflow: hidden;
294
- display: -webkit-box;
295
- -webkit-box-orient: vertical;
296
- -webkit-line-clamp: 4;
297
- }
298
289
  .line-clamp-5 {
299
290
  overflow: hidden;
300
291
  display: -webkit-box;
@@ -322,6 +313,9 @@
322
313
  .h-4 {
323
314
  height: calc(var(--spacing) * 4);
324
315
  }
316
+ .h-6 {
317
+ height: calc(var(--spacing) * 6);
318
+ }
325
319
  .h-\[17px\] {
326
320
  height: 17px;
327
321
  }
@@ -389,6 +383,9 @@
389
383
  .w-\[66px\] {
390
384
  width: 66px;
391
385
  }
386
+ .w-\[100px\] {
387
+ width: 100px;
388
+ }
392
389
  .w-\[409px\] {
393
390
  width: 409px;
394
391
  }
@@ -469,6 +466,12 @@
469
466
  .flex-col {
470
467
  flex-direction: column;
471
468
  }
469
+ .flex-col-reverse {
470
+ flex-direction: column-reverse;
471
+ }
472
+ .flex-nowrap {
473
+ flex-wrap: nowrap;
474
+ }
472
475
  .flex-wrap {
473
476
  flex-wrap: wrap;
474
477
  }
@@ -496,6 +499,9 @@
496
499
  .gap-4 {
497
500
  gap: calc(var(--spacing) * 4);
498
501
  }
502
+ .gap-6 {
503
+ gap: calc(var(--spacing) * 6);
504
+ }
499
505
  .gap-8 {
500
506
  gap: calc(var(--spacing) * 8);
501
507
  }
@@ -572,6 +578,10 @@
572
578
  border-style: var(--tw-border-style);
573
579
  border-width: 2px;
574
580
  }
581
+ .border-\[1\.5px\] {
582
+ border-style: var(--tw-border-style);
583
+ border-width: 1.5px;
584
+ }
575
585
  .border-\[2px\] {
576
586
  border-style: var(--tw-border-style);
577
587
  border-width: 2px;
@@ -610,6 +620,9 @@
610
620
  .border-qtneutral-500 {
611
621
  border-color: var(--color-qtneutral-500);
612
622
  }
623
+ .border-qtneutral-700 {
624
+ border-color: var(--color-qtneutral-700);
625
+ }
613
626
  .border-qtorange-300 {
614
627
  border-color: var(--color-qtorange-300);
615
628
  }
@@ -634,9 +647,6 @@
634
647
  .bg-gray-100 {
635
648
  background-color: var(--color-gray-100);
636
649
  }
637
- .bg-neutral-6 {
638
- background-color: var(--color-neutral-6);
639
- }
640
650
  .bg-qtgreen-50 {
641
651
  background-color: var(--color-qtgreen-50);
642
652
  }
@@ -741,17 +751,6 @@
741
751
  .text-\[9px\] {
742
752
  font-size: 9px;
743
753
  }
744
- .text-\[14px\] {
745
- font-size: 14px;
746
- }
747
- .leading-\[120\%\] {
748
- --tw-leading: 120%;
749
- line-height: 120%;
750
- }
751
- .leading-\[130\%\] {
752
- --tw-leading: 130%;
753
- line-height: 130%;
754
- }
755
754
  .font-bold {
756
755
  --tw-font-weight: var(--font-weight-bold);
757
756
  font-weight: var(--font-weight-bold);
@@ -760,10 +759,6 @@
760
759
  --tw-font-weight: var(--font-weight-medium);
761
760
  font-weight: var(--font-weight-medium);
762
761
  }
763
- .font-normal {
764
- --tw-font-weight: var(--font-weight-normal);
765
- font-weight: var(--font-weight-normal);
766
- }
767
762
  .font-semibold {
768
763
  --tw-font-weight: var(--font-weight-semibold);
769
764
  font-weight: var(--font-weight-semibold);
@@ -820,6 +815,9 @@
820
815
  .text-qtpurple-500 {
821
816
  color: var(--color-qtpurple-500);
822
817
  }
818
+ .text-qtpurple-600 {
819
+ color: var(--color-qtpurple-600);
820
+ }
823
821
  .text-white {
824
822
  color: var(--color-white);
825
823
  }
@@ -888,6 +886,13 @@
888
886
  }
889
887
  }
890
888
  }
889
+ .hover\:bg-white {
890
+ &:hover {
891
+ @media (hover: hover) {
892
+ background-color: var(--color-white);
893
+ }
894
+ }
895
+ }
891
896
  .hover\:text-qtpurple-500 {
892
897
  &:hover {
893
898
  @media (hover: hover) {
@@ -908,6 +913,14 @@
908
913
  :root {
909
914
  --font-sans: 'Inter', sans-serif;
910
915
  }
916
+ .category-badge-text {
917
+ font-family: Inter;
918
+ font-weight: 600;
919
+ font-style: Semi Bold;
920
+ font-size: 12px;
921
+ line-height: 120%;
922
+ letter-spacing: 1%;
923
+ }
911
924
  .label-2 {
912
925
  font-family: Inter;
913
926
  font-weight: 500;
@@ -1099,10 +1112,6 @@
1099
1112
  inherits: false;
1100
1113
  initial-value: solid;
1101
1114
  }
1102
- @property --tw-leading {
1103
- syntax: "*";
1104
- inherits: false;
1105
- }
1106
1115
  @property --tw-font-weight {
1107
1116
  syntax: "*";
1108
1117
  inherits: false;
@@ -1242,7 +1251,6 @@
1242
1251
  --tw-skew-y: initial;
1243
1252
  --tw-space-y-reverse: 0;
1244
1253
  --tw-border-style: solid;
1245
- --tw-leading: initial;
1246
1254
  --tw-font-weight: initial;
1247
1255
  --tw-tracking: initial;
1248
1256
  --tw-shadow: 0 0 #0000;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qt-ui-kit",
3
- "version": "1.0.78",
3
+ "version": "1.0.80",
4
4
  "description": "Reusable component library with Tailwind v4 and custom CSS",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",