qt-ui-kit 1.0.115 → 1.0.117

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
@@ -7,13 +7,17 @@
7
7
  --font-mono: var(--font-geist-mono);
8
8
  --color-green-100: oklch(96.2% 0.044 156.743);
9
9
  --color-green-700: oklch(52.7% 0.154 150.069);
10
+ --color-blue-500: oklch(62.3% 0.214 259.815);
10
11
  --color-indigo-600: oklch(51.1% 0.262 276.966);
11
12
  --color-gray-100: oklch(96.7% 0.003 264.542);
12
13
  --color-gray-200: oklch(92.8% 0.006 264.531);
13
14
  --color-gray-400: oklch(70.7% 0.022 261.325);
15
+ --color-gray-600: oklch(44.6% 0.03 256.802);
14
16
  --color-gray-700: oklch(37.3% 0.034 259.733);
15
17
  --color-gray-800: oklch(27.8% 0.033 256.848);
16
18
  --color-gray-900: oklch(21% 0.034 264.665);
19
+ --color-neutral-400: oklch(70.8% 0 0);
20
+ --color-neutral-500: oklch(55.6% 0 0);
17
21
  --color-neutral-900: oklch(20.5% 0 0);
18
22
  --color-black: #000;
19
23
  --color-white: #fff;
@@ -28,11 +32,13 @@
28
32
  --font-weight-semibold: 600;
29
33
  --font-weight-bold: 700;
30
34
  --tracking-wide: 0.025em;
35
+ --leading-tight: 1.25;
31
36
  --radius-md: 0.375rem;
32
37
  --radius-lg: 0.5rem;
33
38
  --radius-xl: 0.75rem;
34
39
  --radius-2xl: 1rem;
35
40
  --radius-3xl: 1.5rem;
41
+ --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
36
42
  --default-transition-duration: 150ms;
37
43
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
38
44
  --default-font-family: var(--font-sans);
@@ -250,18 +256,12 @@
250
256
  .top-\[2px\] {
251
257
  top: 2px;
252
258
  }
253
- .top-\[140\%\] {
254
- top: 140%;
255
- }
256
259
  .right-\[-6px\] {
257
260
  right: -6px;
258
261
  }
259
262
  .right-\[-7px\] {
260
263
  right: -7px;
261
264
  }
262
- .right-\[56\%\] {
263
- right: 56%;
264
- }
265
265
  .bottom-0 {
266
266
  bottom: calc(var(--spacing) * 0);
267
267
  }
@@ -286,9 +286,15 @@
286
286
  .z-999 {
287
287
  z-index: 999;
288
288
  }
289
+ .z-\[9999\] {
290
+ z-index: 9999;
291
+ }
289
292
  .col-span-2 {
290
293
  grid-column: span 2 / span 2;
291
294
  }
295
+ .-m-1 {
296
+ margin: calc(var(--spacing) * -1);
297
+ }
292
298
  .m-1 {
293
299
  margin: calc(var(--spacing) * 1);
294
300
  }
@@ -301,6 +307,9 @@
301
307
  .mb-2 {
302
308
  margin-bottom: calc(var(--spacing) * 2);
303
309
  }
310
+ .ml-0\.5 {
311
+ margin-left: calc(var(--spacing) * 0.5);
312
+ }
304
313
  .line-clamp-1 {
305
314
  overflow: hidden;
306
315
  display: -webkit-box;
@@ -349,6 +358,14 @@
349
358
  .table {
350
359
  display: table;
351
360
  }
361
+ .size-4 {
362
+ width: calc(var(--spacing) * 4);
363
+ height: calc(var(--spacing) * 4);
364
+ }
365
+ .size-\[16px\] {
366
+ width: 16px;
367
+ height: 16px;
368
+ }
352
369
  .h-3\.5 {
353
370
  height: calc(var(--spacing) * 3.5);
354
371
  }
@@ -358,6 +375,9 @@
358
375
  .h-6 {
359
376
  height: calc(var(--spacing) * 6);
360
377
  }
378
+ .h-10 {
379
+ height: calc(var(--spacing) * 10);
380
+ }
361
381
  .h-\[17px\] {
362
382
  height: 17px;
363
383
  }
@@ -398,6 +418,9 @@
398
418
  .min-h-0 {
399
419
  min-height: calc(var(--spacing) * 0);
400
420
  }
421
+ .min-h-\[150px\] {
422
+ min-height: 150px;
423
+ }
401
424
  .w-3\.5 {
402
425
  width: calc(var(--spacing) * 3.5);
403
426
  }
@@ -428,11 +451,8 @@
428
451
  .w-\[66px\] {
429
452
  width: 66px;
430
453
  }
431
- .w-\[100px\] {
432
- width: 100px;
433
- }
434
- .w-\[409px\] {
435
- width: 409px;
454
+ .w-auto {
455
+ width: auto;
436
456
  }
437
457
  .w-full {
438
458
  width: 100%;
@@ -511,6 +531,9 @@
511
531
  .list-disc {
512
532
  list-style-type: disc;
513
533
  }
534
+ .grid-flow-col {
535
+ grid-auto-flow: column;
536
+ }
514
537
  .grid-cols-1 {
515
538
  grid-template-columns: repeat(1, minmax(0, 1fr));
516
539
  }
@@ -529,12 +552,12 @@
529
552
  .grid-cols-8 {
530
553
  grid-template-columns: repeat(8, minmax(0, 1fr));
531
554
  }
532
- .grid-cols-13 {
533
- grid-template-columns: repeat(13, minmax(0, 1fr));
534
- }
535
555
  .grid-cols-14 {
536
556
  grid-template-columns: repeat(14, minmax(0, 1fr));
537
557
  }
558
+ .grid-rows-4 {
559
+ grid-template-rows: repeat(4, minmax(0, 1fr));
560
+ }
538
561
  .flex-col {
539
562
  flex-direction: column;
540
563
  }
@@ -601,6 +624,9 @@
601
624
  .gap-8 {
602
625
  gap: calc(var(--spacing) * 8);
603
626
  }
627
+ .gap-10 {
628
+ gap: calc(var(--spacing) * 10);
629
+ }
604
630
  .gap-\[4px\] {
605
631
  gap: 4px;
606
632
  }
@@ -628,6 +654,36 @@
628
654
  margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
629
655
  }
630
656
  }
657
+ .space-y-4 {
658
+ :where(& > :not(:last-child)) {
659
+ --tw-space-y-reverse: 0;
660
+ margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
661
+ margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
662
+ }
663
+ }
664
+ .space-y-6 {
665
+ :where(& > :not(:last-child)) {
666
+ --tw-space-y-reverse: 0;
667
+ margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
668
+ margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
669
+ }
670
+ }
671
+ .space-x-2 {
672
+ :where(& > :not(:last-child)) {
673
+ --tw-space-x-reverse: 0;
674
+ margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
675
+ margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
676
+ }
677
+ }
678
+ .overflow-clip {
679
+ overflow: clip;
680
+ }
681
+ .overflow-visible {
682
+ overflow: visible;
683
+ }
684
+ .overflow-x-auto {
685
+ overflow-x: auto;
686
+ }
631
687
  .overflow-x-hidden {
632
688
  overflow-x: hidden;
633
689
  }
@@ -646,6 +702,9 @@
646
702
  .rounded-3xl {
647
703
  border-radius: var(--radius-3xl);
648
704
  }
705
+ .rounded-\[4px\] {
706
+ border-radius: 4px;
707
+ }
649
708
  .rounded-full {
650
709
  border-radius: calc(infinity * 1px);
651
710
  }
@@ -671,12 +730,18 @@
671
730
  border-bottom-right-radius: var(--radius-2xl);
672
731
  border-bottom-left-radius: var(--radius-2xl);
673
732
  }
733
+ .rounded-br-2xl {
734
+ border-bottom-right-radius: var(--radius-2xl);
735
+ }
674
736
  .rounded-br-3xl {
675
737
  border-bottom-right-radius: var(--radius-3xl);
676
738
  }
677
739
  .rounded-br-md {
678
740
  border-bottom-right-radius: var(--radius-md);
679
741
  }
742
+ .rounded-bl-2xl {
743
+ border-bottom-left-radius: var(--radius-2xl);
744
+ }
680
745
  .rounded-bl-3xl {
681
746
  border-bottom-left-radius: var(--radius-3xl);
682
747
  }
@@ -735,6 +800,12 @@
735
800
  .border-neutral-6 {
736
801
  border-color: var(--color-neutral-6);
737
802
  }
803
+ .border-neutral-400 {
804
+ border-color: var(--color-neutral-400);
805
+ }
806
+ .border-neutral-500 {
807
+ border-color: var(--color-neutral-500);
808
+ }
738
809
  .border-qtgreen-300 {
739
810
  border-color: var(--color-qtgreen-300);
740
811
  }
@@ -774,6 +845,15 @@
774
845
  .bg-black {
775
846
  background-color: var(--color-black);
776
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
+ }
854
+ .bg-blue-500 {
855
+ background-color: var(--color-blue-500);
856
+ }
777
857
  .bg-gray-100 {
778
858
  background-color: var(--color-gray-100);
779
859
  }
@@ -840,6 +920,9 @@
840
920
  .p-0 {
841
921
  padding: calc(var(--spacing) * 0);
842
922
  }
923
+ .p-1 {
924
+ padding: calc(var(--spacing) * 1);
925
+ }
843
926
  .p-2 {
844
927
  padding: calc(var(--spacing) * 2);
845
928
  }
@@ -852,6 +935,9 @@
852
935
  .p-6 {
853
936
  padding: calc(var(--spacing) * 6);
854
937
  }
938
+ .p-8 {
939
+ padding: calc(var(--spacing) * 8);
940
+ }
855
941
  .p-\[0\] {
856
942
  padding: 0;
857
943
  }
@@ -945,6 +1031,10 @@
945
1031
  --tw-leading: 1;
946
1032
  line-height: 1;
947
1033
  }
1034
+ .leading-tight {
1035
+ --tw-leading: var(--leading-tight);
1036
+ line-height: var(--leading-tight);
1037
+ }
948
1038
  .font-bold {
949
1039
  --tw-font-weight: var(--font-weight-bold);
950
1040
  font-weight: var(--font-weight-bold);
@@ -970,9 +1060,15 @@
970
1060
  .break-all {
971
1061
  word-break: break-all;
972
1062
  }
1063
+ .whitespace-nowrap {
1064
+ white-space: nowrap;
1065
+ }
973
1066
  .whitespace-pre-line {
974
1067
  white-space: pre-line;
975
1068
  }
1069
+ .text-gray-600 {
1070
+ color: var(--color-gray-600);
1071
+ }
976
1072
  .text-gray-700 {
977
1073
  color: var(--color-gray-700);
978
1074
  }
@@ -1027,9 +1123,15 @@
1027
1123
  .underline {
1028
1124
  text-decoration-line: underline;
1029
1125
  }
1126
+ .opacity-0 {
1127
+ opacity: 0%;
1128
+ }
1030
1129
  .opacity-50 {
1031
1130
  opacity: 50%;
1032
1131
  }
1132
+ .opacity-100 {
1133
+ opacity: 100%;
1134
+ }
1033
1135
  .shadow-lg {
1034
1136
  --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1035
1137
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
@@ -1055,6 +1157,18 @@
1055
1157
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1056
1158
  transition-duration: var(--tw-duration, var(--default-transition-duration));
1057
1159
  }
1160
+ .duration-150 {
1161
+ --tw-duration: 150ms;
1162
+ transition-duration: 150ms;
1163
+ }
1164
+ .duration-300 {
1165
+ --tw-duration: 300ms;
1166
+ transition-duration: 300ms;
1167
+ }
1168
+ .ease-in-out {
1169
+ --tw-ease: var(--ease-in-out);
1170
+ transition-timing-function: var(--ease-in-out);
1171
+ }
1058
1172
  .outline-none {
1059
1173
  --tw-outline-style: none;
1060
1174
  outline-style: none;
@@ -1143,13 +1257,6 @@
1143
1257
  }
1144
1258
  }
1145
1259
  }
1146
- .hover\:bg-white {
1147
- &:hover {
1148
- @media (hover: hover) {
1149
- background-color: var(--color-white);
1150
- }
1151
- }
1152
- }
1153
1260
  .hover\:text-qtpurple-500 {
1154
1261
  &:hover {
1155
1262
  @media (hover: hover) {
@@ -1411,6 +1518,11 @@
1411
1518
  inherits: false;
1412
1519
  initial-value: 0;
1413
1520
  }
1521
+ @property --tw-space-x-reverse {
1522
+ syntax: "*";
1523
+ inherits: false;
1524
+ initial-value: 0;
1525
+ }
1414
1526
  @property --tw-border-style {
1415
1527
  syntax: "*";
1416
1528
  inherits: false;
@@ -1546,6 +1658,14 @@
1546
1658
  syntax: "*";
1547
1659
  inherits: false;
1548
1660
  }
1661
+ @property --tw-duration {
1662
+ syntax: "*";
1663
+ inherits: false;
1664
+ }
1665
+ @property --tw-ease {
1666
+ syntax: "*";
1667
+ inherits: false;
1668
+ }
1549
1669
  @layer properties {
1550
1670
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1551
1671
  *, ::before, ::after, ::backdrop {
@@ -1558,6 +1678,7 @@
1558
1678
  --tw-skew-x: initial;
1559
1679
  --tw-skew-y: initial;
1560
1680
  --tw-space-y-reverse: 0;
1681
+ --tw-space-x-reverse: 0;
1561
1682
  --tw-border-style: solid;
1562
1683
  --tw-leading: initial;
1563
1684
  --tw-font-weight: initial;
@@ -1589,6 +1710,8 @@
1589
1710
  --tw-drop-shadow-color: initial;
1590
1711
  --tw-drop-shadow-alpha: 100%;
1591
1712
  --tw-drop-shadow-size: initial;
1713
+ --tw-duration: initial;
1714
+ --tw-ease: initial;
1592
1715
  }
1593
1716
  }
1594
1717
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qt-ui-kit",
3
- "version": "1.0.115",
3
+ "version": "1.0.117",
4
4
  "description": "Reusable component library with Tailwind v4 and custom CSS",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",