@algorithm-shift/design-system 1.2.78 → 1.2.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/index.css +142 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +880 -371
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +863 -354
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -2
package/dist/index.css
CHANGED
|
@@ -23,9 +23,12 @@
|
|
|
23
23
|
monospace;
|
|
24
24
|
--color-red-500: oklch(63.7% 0.237 25.331);
|
|
25
25
|
--color-red-800: oklch(44.4% 0.177 26.899);
|
|
26
|
+
--color-yellow-400: oklch(85.2% 0.199 91.936);
|
|
26
27
|
--color-teal-200: oklch(91% 0.096 180.426);
|
|
27
28
|
--color-teal-600: oklch(60% 0.118 184.704);
|
|
28
29
|
--color-teal-700: oklch(51.1% 0.096 186.391);
|
|
30
|
+
--color-blue-50: oklch(97% 0.014 254.604);
|
|
31
|
+
--color-blue-100: oklch(93.2% 0.032 255.585);
|
|
29
32
|
--color-blue-500: oklch(62.3% 0.214 259.815);
|
|
30
33
|
--color-blue-600: oklch(54.6% 0.245 262.881);
|
|
31
34
|
--color-blue-700: oklch(48.8% 0.243 264.376);
|
|
@@ -67,6 +70,7 @@
|
|
|
67
70
|
--font-weight-bold: 700;
|
|
68
71
|
--tracking-widest: 0.1em;
|
|
69
72
|
--radius-xs: 0.125rem;
|
|
73
|
+
--animate-spin: spin 1s linear infinite;
|
|
70
74
|
--animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
71
75
|
--default-transition-duration: 150ms;
|
|
72
76
|
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -323,6 +327,9 @@
|
|
|
323
327
|
.top-4 {
|
|
324
328
|
top: calc(var(--spacing) * 4);
|
|
325
329
|
}
|
|
330
|
+
.top-\[2px\] {
|
|
331
|
+
top: 2px;
|
|
332
|
+
}
|
|
326
333
|
.top-\[50\%\] {
|
|
327
334
|
top: 50%;
|
|
328
335
|
}
|
|
@@ -347,6 +354,9 @@
|
|
|
347
354
|
.left-3 {
|
|
348
355
|
left: calc(var(--spacing) * 3);
|
|
349
356
|
}
|
|
357
|
+
.left-\[2px\] {
|
|
358
|
+
left: 2px;
|
|
359
|
+
}
|
|
350
360
|
.left-\[50\%\] {
|
|
351
361
|
left: 50%;
|
|
352
362
|
}
|
|
@@ -368,12 +378,33 @@
|
|
|
368
378
|
.z-\[200\] {
|
|
369
379
|
z-index: 200;
|
|
370
380
|
}
|
|
381
|
+
.z-\[9999\] {
|
|
382
|
+
z-index: 9999;
|
|
383
|
+
}
|
|
371
384
|
.col-span-12 {
|
|
372
385
|
grid-column: span 12 / span 12;
|
|
373
386
|
}
|
|
374
387
|
.col-start-1 {
|
|
375
388
|
grid-column-start: 1;
|
|
376
389
|
}
|
|
390
|
+
.container {
|
|
391
|
+
width: 100%;
|
|
392
|
+
@media (width >= 40rem) {
|
|
393
|
+
max-width: 40rem;
|
|
394
|
+
}
|
|
395
|
+
@media (width >= 48rem) {
|
|
396
|
+
max-width: 48rem;
|
|
397
|
+
}
|
|
398
|
+
@media (width >= 64rem) {
|
|
399
|
+
max-width: 64rem;
|
|
400
|
+
}
|
|
401
|
+
@media (width >= 80rem) {
|
|
402
|
+
max-width: 80rem;
|
|
403
|
+
}
|
|
404
|
+
@media (width >= 96rem) {
|
|
405
|
+
max-width: 96rem;
|
|
406
|
+
}
|
|
407
|
+
}
|
|
377
408
|
.m-0 {
|
|
378
409
|
margin: calc(var(--spacing) * 0);
|
|
379
410
|
}
|
|
@@ -494,6 +525,9 @@
|
|
|
494
525
|
.h-2 {
|
|
495
526
|
height: calc(var(--spacing) * 2);
|
|
496
527
|
}
|
|
528
|
+
.h-3 {
|
|
529
|
+
height: calc(var(--spacing) * 3);
|
|
530
|
+
}
|
|
497
531
|
.h-4 {
|
|
498
532
|
height: calc(var(--spacing) * 4);
|
|
499
533
|
}
|
|
@@ -569,6 +603,9 @@
|
|
|
569
603
|
.max-h-0 {
|
|
570
604
|
max-height: calc(var(--spacing) * 0);
|
|
571
605
|
}
|
|
606
|
+
.max-h-60 {
|
|
607
|
+
max-height: calc(var(--spacing) * 60);
|
|
608
|
+
}
|
|
572
609
|
.max-h-\[90vh\] {
|
|
573
610
|
max-height: 90vh;
|
|
574
611
|
}
|
|
@@ -608,6 +645,9 @@
|
|
|
608
645
|
.w-3 {
|
|
609
646
|
width: calc(var(--spacing) * 3);
|
|
610
647
|
}
|
|
648
|
+
.w-3\/4 {
|
|
649
|
+
width: calc(3/4 * 100%);
|
|
650
|
+
}
|
|
611
651
|
.w-4 {
|
|
612
652
|
width: calc(var(--spacing) * 4);
|
|
613
653
|
}
|
|
@@ -623,6 +663,9 @@
|
|
|
623
663
|
.w-8 {
|
|
624
664
|
width: calc(var(--spacing) * 8);
|
|
625
665
|
}
|
|
666
|
+
.w-9 {
|
|
667
|
+
width: calc(var(--spacing) * 9);
|
|
668
|
+
}
|
|
626
669
|
.w-10 {
|
|
627
670
|
width: calc(var(--spacing) * 10);
|
|
628
671
|
}
|
|
@@ -710,6 +753,9 @@
|
|
|
710
753
|
.min-w-\[var\(--radix-select-trigger-width\)\] {
|
|
711
754
|
min-width: var(--radix-select-trigger-width);
|
|
712
755
|
}
|
|
756
|
+
.min-w-full {
|
|
757
|
+
min-width: 100%;
|
|
758
|
+
}
|
|
713
759
|
.flex-1 {
|
|
714
760
|
flex: 1;
|
|
715
761
|
}
|
|
@@ -757,9 +803,15 @@
|
|
|
757
803
|
.animate-pulse {
|
|
758
804
|
animation: var(--animate-pulse);
|
|
759
805
|
}
|
|
806
|
+
.animate-spin {
|
|
807
|
+
animation: var(--animate-spin);
|
|
808
|
+
}
|
|
760
809
|
.cursor-default {
|
|
761
810
|
cursor: default;
|
|
762
811
|
}
|
|
812
|
+
.cursor-not-allowed {
|
|
813
|
+
cursor: not-allowed;
|
|
814
|
+
}
|
|
763
815
|
.cursor-pointer {
|
|
764
816
|
cursor: pointer;
|
|
765
817
|
}
|
|
@@ -994,6 +1046,9 @@
|
|
|
994
1046
|
.border-transparent {
|
|
995
1047
|
border-color: transparent;
|
|
996
1048
|
}
|
|
1049
|
+
.border-t-blue-500 {
|
|
1050
|
+
border-top-color: var(--color-blue-500);
|
|
1051
|
+
}
|
|
997
1052
|
.border-b-white {
|
|
998
1053
|
border-bottom-color: var(--color-white);
|
|
999
1054
|
}
|
|
@@ -1030,9 +1085,15 @@
|
|
|
1030
1085
|
background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
|
|
1031
1086
|
}
|
|
1032
1087
|
}
|
|
1088
|
+
.bg-blue-100 {
|
|
1089
|
+
background-color: var(--color-blue-100);
|
|
1090
|
+
}
|
|
1033
1091
|
.bg-blue-500 {
|
|
1034
1092
|
background-color: var(--color-blue-500);
|
|
1035
1093
|
}
|
|
1094
|
+
.bg-blue-600 {
|
|
1095
|
+
background-color: var(--color-blue-600);
|
|
1096
|
+
}
|
|
1036
1097
|
.bg-border {
|
|
1037
1098
|
background-color: var(--border);
|
|
1038
1099
|
}
|
|
@@ -1045,6 +1106,9 @@
|
|
|
1045
1106
|
.bg-gray-100 {
|
|
1046
1107
|
background-color: var(--color-gray-100);
|
|
1047
1108
|
}
|
|
1109
|
+
.bg-gray-200 {
|
|
1110
|
+
background-color: var(--color-gray-200);
|
|
1111
|
+
}
|
|
1048
1112
|
.bg-gray-300 {
|
|
1049
1113
|
background-color: var(--color-gray-300);
|
|
1050
1114
|
}
|
|
@@ -1090,6 +1154,9 @@
|
|
|
1090
1154
|
.fill-primary {
|
|
1091
1155
|
fill: var(--primary);
|
|
1092
1156
|
}
|
|
1157
|
+
.object-cover {
|
|
1158
|
+
object-fit: cover;
|
|
1159
|
+
}
|
|
1093
1160
|
.p-0 {
|
|
1094
1161
|
padding: calc(var(--spacing) * 0);
|
|
1095
1162
|
}
|
|
@@ -1147,6 +1214,9 @@
|
|
|
1147
1214
|
.py-6 {
|
|
1148
1215
|
padding-block: calc(var(--spacing) * 6);
|
|
1149
1216
|
}
|
|
1217
|
+
.py-10 {
|
|
1218
|
+
padding-block: calc(var(--spacing) * 10);
|
|
1219
|
+
}
|
|
1150
1220
|
.pt-\[10px\] {
|
|
1151
1221
|
padding-top: 10px;
|
|
1152
1222
|
}
|
|
@@ -1192,6 +1262,9 @@
|
|
|
1192
1262
|
.text-left {
|
|
1193
1263
|
text-align: left;
|
|
1194
1264
|
}
|
|
1265
|
+
.text-right {
|
|
1266
|
+
text-align: right;
|
|
1267
|
+
}
|
|
1195
1268
|
.align-middle {
|
|
1196
1269
|
vertical-align: middle;
|
|
1197
1270
|
}
|
|
@@ -1303,6 +1376,9 @@
|
|
|
1303
1376
|
.text-black {
|
|
1304
1377
|
color: var(--color-black);
|
|
1305
1378
|
}
|
|
1379
|
+
.text-blue-500 {
|
|
1380
|
+
color: var(--color-blue-500);
|
|
1381
|
+
}
|
|
1306
1382
|
.text-blue-600 {
|
|
1307
1383
|
color: var(--color-blue-600);
|
|
1308
1384
|
}
|
|
@@ -1315,6 +1391,9 @@
|
|
|
1315
1391
|
.text-foreground {
|
|
1316
1392
|
color: var(--foreground);
|
|
1317
1393
|
}
|
|
1394
|
+
.text-gray-300 {
|
|
1395
|
+
color: var(--color-gray-300);
|
|
1396
|
+
}
|
|
1318
1397
|
.text-gray-400 {
|
|
1319
1398
|
color: var(--color-gray-400);
|
|
1320
1399
|
}
|
|
@@ -1354,9 +1433,22 @@
|
|
|
1354
1433
|
.text-white {
|
|
1355
1434
|
color: var(--color-white);
|
|
1356
1435
|
}
|
|
1436
|
+
.text-yellow-400 {
|
|
1437
|
+
color: var(--color-yellow-400);
|
|
1438
|
+
}
|
|
1439
|
+
.lowercase {
|
|
1440
|
+
text-transform: lowercase;
|
|
1441
|
+
}
|
|
1442
|
+
.uppercase {
|
|
1443
|
+
text-transform: uppercase;
|
|
1444
|
+
}
|
|
1357
1445
|
.italic {
|
|
1358
1446
|
font-style: italic;
|
|
1359
1447
|
}
|
|
1448
|
+
.tabular-nums {
|
|
1449
|
+
--tw-numeric-spacing: tabular-nums;
|
|
1450
|
+
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
1451
|
+
}
|
|
1360
1452
|
.underline {
|
|
1361
1453
|
text-decoration-line: underline;
|
|
1362
1454
|
}
|
|
@@ -1603,6 +1695,17 @@
|
|
|
1603
1695
|
}
|
|
1604
1696
|
}
|
|
1605
1697
|
}
|
|
1698
|
+
.peer-checked\:translate-x-4 {
|
|
1699
|
+
&:is(:where(.peer):checked ~ *) {
|
|
1700
|
+
--tw-translate-x: calc(var(--spacing) * 4);
|
|
1701
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1702
|
+
}
|
|
1703
|
+
}
|
|
1704
|
+
.peer-checked\:bg-blue-600 {
|
|
1705
|
+
&:is(:where(.peer):checked ~ *) {
|
|
1706
|
+
background-color: var(--color-blue-600);
|
|
1707
|
+
}
|
|
1708
|
+
}
|
|
1606
1709
|
.peer-disabled\:cursor-not-allowed {
|
|
1607
1710
|
&:is(:where(.peer):disabled ~ *) {
|
|
1608
1711
|
cursor: not-allowed;
|
|
@@ -1707,6 +1810,20 @@
|
|
|
1707
1810
|
}
|
|
1708
1811
|
}
|
|
1709
1812
|
}
|
|
1813
|
+
.hover\:bg-blue-50 {
|
|
1814
|
+
&:hover {
|
|
1815
|
+
@media (hover: hover) {
|
|
1816
|
+
background-color: var(--color-blue-50);
|
|
1817
|
+
}
|
|
1818
|
+
}
|
|
1819
|
+
}
|
|
1820
|
+
.hover\:bg-blue-700 {
|
|
1821
|
+
&:hover {
|
|
1822
|
+
@media (hover: hover) {
|
|
1823
|
+
background-color: var(--color-blue-700);
|
|
1824
|
+
}
|
|
1825
|
+
}
|
|
1826
|
+
}
|
|
1710
1827
|
.hover\:bg-destructive\/90 {
|
|
1711
1828
|
&:hover {
|
|
1712
1829
|
@media (hover: hover) {
|
|
@@ -1831,6 +1948,11 @@
|
|
|
1831
1948
|
}
|
|
1832
1949
|
}
|
|
1833
1950
|
}
|
|
1951
|
+
.focus\:border-blue-500 {
|
|
1952
|
+
&:focus {
|
|
1953
|
+
border-color: var(--color-blue-500);
|
|
1954
|
+
}
|
|
1955
|
+
}
|
|
1834
1956
|
.focus\:border-gray-300 {
|
|
1835
1957
|
&:focus {
|
|
1836
1958
|
border-color: var(--color-gray-300);
|
|
@@ -1889,6 +2011,11 @@
|
|
|
1889
2011
|
--tw-ring-color: #12715B;
|
|
1890
2012
|
}
|
|
1891
2013
|
}
|
|
2014
|
+
.focus\:ring-blue-500 {
|
|
2015
|
+
&:focus {
|
|
2016
|
+
--tw-ring-color: var(--color-blue-500);
|
|
2017
|
+
}
|
|
2018
|
+
}
|
|
1892
2019
|
.focus\:ring-ring {
|
|
1893
2020
|
&:focus {
|
|
1894
2021
|
--tw-ring-color: var(--ring);
|
|
@@ -3107,6 +3234,11 @@
|
|
|
3107
3234
|
@property --tw-leading { syntax: "*"; inherits: false; }
|
|
3108
3235
|
@property --tw-font-weight { syntax: "*"; inherits: false; }
|
|
3109
3236
|
@property --tw-tracking { syntax: "*"; inherits: false; }
|
|
3237
|
+
@property --tw-ordinal { syntax: "*"; inherits: false; }
|
|
3238
|
+
@property --tw-slashed-zero { syntax: "*"; inherits: false; }
|
|
3239
|
+
@property --tw-numeric-figure { syntax: "*"; inherits: false; }
|
|
3240
|
+
@property --tw-numeric-spacing { syntax: "*"; inherits: false; }
|
|
3241
|
+
@property --tw-numeric-fraction { syntax: "*"; inherits: false; }
|
|
3110
3242
|
@property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
|
|
3111
3243
|
@property --tw-shadow-color { syntax: "*"; inherits: false; }
|
|
3112
3244
|
@property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
|
|
@@ -3136,6 +3268,11 @@
|
|
|
3136
3268
|
@property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
|
|
3137
3269
|
@property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
|
|
3138
3270
|
@property --tw-duration { syntax: "*"; inherits: false; }
|
|
3271
|
+
@keyframes spin {
|
|
3272
|
+
to {
|
|
3273
|
+
transform: rotate(360deg);
|
|
3274
|
+
}
|
|
3275
|
+
}
|
|
3139
3276
|
@keyframes pulse {
|
|
3140
3277
|
50% {
|
|
3141
3278
|
opacity: 0.5;
|
|
@@ -3175,6 +3312,11 @@
|
|
|
3175
3312
|
--tw-leading: initial;
|
|
3176
3313
|
--tw-font-weight: initial;
|
|
3177
3314
|
--tw-tracking: initial;
|
|
3315
|
+
--tw-ordinal: initial;
|
|
3316
|
+
--tw-slashed-zero: initial;
|
|
3317
|
+
--tw-numeric-figure: initial;
|
|
3318
|
+
--tw-numeric-spacing: initial;
|
|
3319
|
+
--tw-numeric-fraction: initial;
|
|
3178
3320
|
--tw-shadow: 0 0 #0000;
|
|
3179
3321
|
--tw-shadow-color: initial;
|
|
3180
3322
|
--tw-shadow-alpha: 100%;
|