@algorithm-shift/design-system 1.2.23 → 1.2.24

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 CHANGED
@@ -23,6 +23,7 @@
23
23
  monospace;
24
24
  --color-red-500: oklch(63.7% 0.237 25.331);
25
25
  --color-blue-500: oklch(62.3% 0.214 259.815);
26
+ --color-blue-700: oklch(48.8% 0.243 264.376);
26
27
  --color-gray-50: oklch(98.5% 0.002 247.839);
27
28
  --color-gray-100: oklch(96.7% 0.003 264.542);
28
29
  --color-gray-200: oklch(92.8% 0.006 264.531);
@@ -32,17 +33,26 @@
32
33
  --color-gray-600: oklch(44.6% 0.03 256.802);
33
34
  --color-gray-700: oklch(37.3% 0.034 259.733);
34
35
  --color-gray-800: oklch(27.8% 0.033 256.848);
36
+ --color-gray-900: oklch(21% 0.034 264.665);
37
+ --color-black: #000;
35
38
  --color-white: #fff;
36
39
  --spacing: 0.25rem;
40
+ --container-md: 28rem;
41
+ --container-7xl: 80rem;
37
42
  --text-xs: 0.75rem;
38
43
  --text-xs--line-height: calc(1 / 0.75);
39
44
  --text-sm: 0.875rem;
40
45
  --text-sm--line-height: calc(1.25 / 0.875);
41
46
  --text-base: 1rem;
42
47
  --text-base--line-height: calc(1.5 / 1);
48
+ --text-2xl: 1.5rem;
49
+ --text-2xl--line-height: calc(2 / 1.5);
50
+ --text-4xl: 2.25rem;
51
+ --text-4xl--line-height: calc(2.5 / 2.25);
43
52
  --font-weight-normal: 400;
44
53
  --font-weight-medium: 500;
45
54
  --font-weight-semibold: 600;
55
+ --font-weight-bold: 700;
46
56
  --tracking-widest: 0.1em;
47
57
  --default-transition-duration: 150ms;
48
58
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
@@ -252,9 +262,23 @@
252
262
  .visible {
253
263
  visibility: visible;
254
264
  }
265
+ .sr-only {
266
+ position: absolute;
267
+ width: 1px;
268
+ height: 1px;
269
+ padding: 0;
270
+ margin: -1px;
271
+ overflow: hidden;
272
+ clip: rect(0, 0, 0, 0);
273
+ white-space: nowrap;
274
+ border-width: 0;
275
+ }
255
276
  .absolute {
256
277
  position: absolute;
257
278
  }
279
+ .fixed {
280
+ position: fixed;
281
+ }
258
282
  .relative {
259
283
  position: relative;
260
284
  }
@@ -267,12 +291,21 @@
267
291
  .inset-x-0 {
268
292
  inset-inline: calc(var(--spacing) * 0);
269
293
  }
294
+ .-top-1 {
295
+ top: calc(var(--spacing) * -1);
296
+ }
270
297
  .top-0 {
271
298
  top: calc(var(--spacing) * 0);
272
299
  }
273
300
  .top-1\/2 {
274
301
  top: calc(1/2 * 100%);
275
302
  }
303
+ .top-1\/3 {
304
+ top: calc(1/3 * 100%);
305
+ }
306
+ .-right-1 {
307
+ right: calc(var(--spacing) * -1);
308
+ }
276
309
  .right-0 {
277
310
  right: calc(var(--spacing) * 0);
278
311
  }
@@ -291,6 +324,12 @@
291
324
  .z-50 {
292
325
  z-index: 50;
293
326
  }
327
+ .z-90 {
328
+ z-index: 90;
329
+ }
330
+ .z-\[50\] {
331
+ z-index: 50;
332
+ }
294
333
  .col-span-12 {
295
334
  grid-column: span 12 / span 12;
296
335
  }
@@ -300,6 +339,9 @@
300
339
  .-mx-1 {
301
340
  margin-inline: calc(var(--spacing) * -1);
302
341
  }
342
+ .mx-auto {
343
+ margin-inline: auto;
344
+ }
303
345
  .my-1 {
304
346
  margin-block: calc(var(--spacing) * 1);
305
347
  }
@@ -321,6 +363,12 @@
321
363
  .mb-2 {
322
364
  margin-bottom: calc(var(--spacing) * 2);
323
365
  }
366
+ .mb-3 {
367
+ margin-bottom: calc(var(--spacing) * 3);
368
+ }
369
+ .mb-4 {
370
+ margin-bottom: calc(var(--spacing) * 4);
371
+ }
324
372
  .mb-\[20px\] {
325
373
  margin-bottom: 20px;
326
374
  }
@@ -393,9 +441,15 @@
393
441
  .h-\(--cell-size\) {
394
442
  height: var(--cell-size);
395
443
  }
444
+ .h-2 {
445
+ height: calc(var(--spacing) * 2);
446
+ }
396
447
  .h-4 {
397
448
  height: calc(var(--spacing) * 4);
398
449
  }
450
+ .h-5 {
451
+ height: calc(var(--spacing) * 5);
452
+ }
399
453
  .h-6 {
400
454
  height: calc(var(--spacing) * 6);
401
455
  }
@@ -417,21 +471,36 @@
417
471
  .h-50 {
418
472
  height: calc(var(--spacing) * 50);
419
473
  }
474
+ .h-90 {
475
+ height: calc(var(--spacing) * 90);
476
+ }
420
477
  .h-\[1\.15rem\] {
421
478
  height: 1.15rem;
422
479
  }
423
480
  .h-\[10px\] {
424
481
  height: 10px;
425
482
  }
483
+ .h-\[16px\] {
484
+ height: 16px;
485
+ }
426
486
  .h-\[20px\] {
427
487
  height: 20px;
428
488
  }
429
489
  .h-\[34px\] {
430
490
  height: 34px;
431
491
  }
492
+ .h-\[40px\] {
493
+ height: 40px;
494
+ }
432
495
  .h-\[200px\] {
433
496
  height: 200px;
434
497
  }
498
+ .h-\[300px\] {
499
+ height: 300px;
500
+ }
501
+ .h-\[400px\] {
502
+ height: 400px;
503
+ }
435
504
  .h-\[var\(--radix-select-trigger-height\)\] {
436
505
  height: var(--radix-select-trigger-height);
437
506
  }
@@ -450,15 +519,24 @@
450
519
  .min-h-16 {
451
520
  min-height: calc(var(--spacing) * 16);
452
521
  }
522
+ .min-h-80 {
523
+ min-height: calc(var(--spacing) * 80);
524
+ }
453
525
  .w-\(--cell-size\) {
454
526
  width: var(--cell-size);
455
527
  }
528
+ .w-2 {
529
+ width: calc(var(--spacing) * 2);
530
+ }
456
531
  .w-3 {
457
532
  width: calc(var(--spacing) * 3);
458
533
  }
459
534
  .w-4 {
460
535
  width: calc(var(--spacing) * 4);
461
536
  }
537
+ .w-5 {
538
+ width: calc(var(--spacing) * 5);
539
+ }
462
540
  .w-6 {
463
541
  width: calc(var(--spacing) * 6);
464
542
  }
@@ -477,12 +555,18 @@
477
555
  .w-\[10px\] {
478
556
  width: 10px;
479
557
  }
558
+ .w-\[16px\] {
559
+ width: 16px;
560
+ }
480
561
  .w-\[20px\] {
481
562
  width: 20px;
482
563
  }
483
564
  .w-\[34px\] {
484
565
  width: 34px;
485
566
  }
567
+ .w-\[48\%\] {
568
+ width: 48%;
569
+ }
486
570
  .w-\[200px\] {
487
571
  width: 200px;
488
572
  }
@@ -498,6 +582,12 @@
498
582
  .w-full {
499
583
  width: 100%;
500
584
  }
585
+ .max-w-7xl {
586
+ max-width: var(--container-7xl);
587
+ }
588
+ .max-w-md {
589
+ max-width: var(--container-md);
590
+ }
501
591
  .min-w-\(--cell-size\) {
502
592
  min-width: var(--cell-size);
503
593
  }
@@ -570,6 +660,12 @@
570
660
  .flex-col {
571
661
  flex-direction: column;
572
662
  }
663
+ .flex-row {
664
+ flex-direction: row;
665
+ }
666
+ .flex-wrap {
667
+ flex-wrap: wrap;
668
+ }
573
669
  .items-center {
574
670
  align-items: center;
575
671
  }
@@ -579,6 +675,9 @@
579
675
  .justify-center {
580
676
  justify-content: center;
581
677
  }
678
+ .justify-end {
679
+ justify-content: flex-end;
680
+ }
582
681
  .justify-start {
583
682
  justify-content: flex-start;
584
683
  }
@@ -597,6 +696,13 @@
597
696
  .gap-4 {
598
697
  gap: calc(var(--spacing) * 4);
599
698
  }
699
+ .space-y-3 {
700
+ :where(& > :not(:last-child)) {
701
+ --tw-space-y-reverse: 0;
702
+ margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
703
+ margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
704
+ }
705
+ }
600
706
  .space-x-2 {
601
707
  :where(& > :not(:last-child)) {
602
708
  --tw-space-x-reverse: 0;
@@ -604,6 +710,13 @@
604
710
  margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
605
711
  }
606
712
  }
713
+ .space-x-3 {
714
+ :where(& > :not(:last-child)) {
715
+ --tw-space-x-reverse: 0;
716
+ margin-inline-start: calc(calc(var(--spacing) * 3) * var(--tw-space-x-reverse));
717
+ margin-inline-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-x-reverse)));
718
+ }
719
+ }
607
720
  .overflow-hidden {
608
721
  overflow: hidden;
609
722
  }
@@ -681,12 +794,21 @@
681
794
  --tw-border-style: solid;
682
795
  border-style: solid;
683
796
  }
797
+ .border-\[\#12715B\] {
798
+ border-color: #12715B;
799
+ }
684
800
  .border-\[\#E0E0E0\] {
685
801
  border-color: #E0E0E0;
686
802
  }
803
+ .border-\[\#E9E9E9\] {
804
+ border-color: #E9E9E9;
805
+ }
687
806
  .border-gray-200 {
688
807
  border-color: var(--color-gray-200);
689
808
  }
809
+ .border-gray-300 {
810
+ border-color: var(--color-gray-300);
811
+ }
690
812
  .border-gray-400 {
691
813
  border-color: var(--color-gray-400);
692
814
  }
@@ -699,6 +821,9 @@
699
821
  .bg-\[\#000000\] {
700
822
  background-color: #000000;
701
823
  }
824
+ .bg-\[\#12715B\] {
825
+ background-color: #12715B;
826
+ }
702
827
  .bg-\[\#12715b\] {
703
828
  background-color: #12715b;
704
829
  }
@@ -711,6 +836,9 @@
711
836
  .bg-\[\#FF4A4A\] {
712
837
  background-color: #FF4A4A;
713
838
  }
839
+ .bg-\[\#fff\] {
840
+ background-color: #fff;
841
+ }
714
842
  .bg-accent {
715
843
  background-color: var(--accent);
716
844
  }
@@ -732,12 +860,18 @@
732
860
  .bg-gray-300 {
733
861
  background-color: var(--color-gray-300);
734
862
  }
863
+ .bg-muted {
864
+ background-color: var(--muted);
865
+ }
735
866
  .bg-popover {
736
867
  background-color: var(--popover);
737
868
  }
738
869
  .bg-primary {
739
870
  background-color: var(--primary);
740
871
  }
872
+ .bg-red-500 {
873
+ background-color: var(--color-red-500);
874
+ }
741
875
  .bg-secondary {
742
876
  background-color: var(--secondary);
743
877
  }
@@ -780,6 +914,9 @@
780
914
  .px-2 {
781
915
  padding-inline: calc(var(--spacing) * 2);
782
916
  }
917
+ .px-2\.5 {
918
+ padding-inline: calc(var(--spacing) * 2.5);
919
+ }
783
920
  .px-3 {
784
921
  padding-inline: calc(var(--spacing) * 3);
785
922
  }
@@ -831,6 +968,9 @@
831
968
  .pl-8 {
832
969
  padding-left: calc(var(--spacing) * 8);
833
970
  }
971
+ .pl-9 {
972
+ padding-left: calc(var(--spacing) * 9);
973
+ }
834
974
  .pl-\[10px\] {
835
975
  padding-left: 10px;
836
976
  }
@@ -846,6 +986,10 @@
846
986
  .align-middle {
847
987
  vertical-align: middle;
848
988
  }
989
+ .text-2xl {
990
+ font-size: var(--text-2xl);
991
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
992
+ }
849
993
  .text-base {
850
994
  font-size: var(--text-base);
851
995
  line-height: var(--tw-leading, var(--text-base--line-height));
@@ -873,6 +1017,10 @@
873
1017
  .text-\[13px\] {
874
1018
  font-size: 13px;
875
1019
  }
1020
+ .leading-8 {
1021
+ --tw-leading: calc(var(--spacing) * 8);
1022
+ line-height: calc(var(--spacing) * 8);
1023
+ }
876
1024
  .leading-\[20px\] {
877
1025
  --tw-leading: 20px;
878
1026
  line-height: 20px;
@@ -889,6 +1037,10 @@
889
1037
  --tw-font-weight: 500;
890
1038
  font-weight: 500;
891
1039
  }
1040
+ .font-bold {
1041
+ --tw-font-weight: var(--font-weight-bold);
1042
+ font-weight: var(--font-weight-bold);
1043
+ }
892
1044
  .font-medium {
893
1045
  --tw-font-weight: var(--font-weight-medium);
894
1046
  font-weight: var(--font-weight-medium);
@@ -908,9 +1060,18 @@
908
1060
  .whitespace-nowrap {
909
1061
  white-space: nowrap;
910
1062
  }
1063
+ .text-\[\#000\] {
1064
+ color: #000;
1065
+ }
911
1066
  .text-\[\#000000\] {
912
1067
  color: #000000;
913
1068
  }
1069
+ .text-\[\#1C1B1F\] {
1070
+ color: #1C1B1F;
1071
+ }
1072
+ .text-\[\#12715B\] {
1073
+ color: #12715B;
1074
+ }
914
1075
  .text-\[\#383838\] {
915
1076
  color: #383838;
916
1077
  }
@@ -926,9 +1087,18 @@
926
1087
  .text-accent-foreground {
927
1088
  color: var(--accent-foreground);
928
1089
  }
1090
+ .text-black {
1091
+ color: var(--color-black);
1092
+ }
1093
+ .text-blue-700 {
1094
+ color: var(--color-blue-700);
1095
+ }
929
1096
  .text-current {
930
1097
  color: currentcolor;
931
1098
  }
1099
+ .text-gray-400 {
1100
+ color: var(--color-gray-400);
1101
+ }
932
1102
  .text-gray-500 {
933
1103
  color: var(--color-gray-500);
934
1104
  }
@@ -941,6 +1111,9 @@
941
1111
  .text-gray-800 {
942
1112
  color: var(--color-gray-800);
943
1113
  }
1114
+ .text-gray-900 {
1115
+ color: var(--color-gray-900);
1116
+ }
944
1117
  .text-muted-foreground {
945
1118
  color: var(--muted-foreground);
946
1119
  }
@@ -980,6 +1153,15 @@
980
1153
  .opacity-80 {
981
1154
  opacity: 80%;
982
1155
  }
1156
+ .shadow {
1157
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1158
+ box-shadow:
1159
+ var(--tw-inset-shadow),
1160
+ var(--tw-inset-ring-shadow),
1161
+ var(--tw-ring-offset-shadow),
1162
+ var(--tw-ring-shadow),
1163
+ var(--tw-shadow);
1164
+ }
983
1165
  .shadow-lg {
984
1166
  --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));
985
1167
  box-shadow:
@@ -1771,6 +1953,11 @@
1771
1953
  grid-column-start: 1;
1772
1954
  }
1773
1955
  }
1956
+ .sm\:block {
1957
+ @media (width >= 40rem) {
1958
+ display: block;
1959
+ }
1960
+ }
1774
1961
  .sm\:flex {
1775
1962
  @media (width >= 40rem) {
1776
1963
  display: flex;
@@ -1801,6 +1988,11 @@
1801
1988
  padding-top: 10px;
1802
1989
  }
1803
1990
  }
1991
+ .sm\:pr-2\.5 {
1992
+ @media (width >= 40rem) {
1993
+ padding-right: calc(var(--spacing) * 2.5);
1994
+ }
1995
+ }
1804
1996
  .sm\:pr-\[10px\] {
1805
1997
  @media (width >= 40rem) {
1806
1998
  padding-right: 10px;
@@ -1811,6 +2003,11 @@
1811
2003
  padding-bottom: 10px;
1812
2004
  }
1813
2005
  }
2006
+ .sm\:pl-2\.5 {
2007
+ @media (width >= 40rem) {
2008
+ padding-left: calc(var(--spacing) * 2.5);
2009
+ }
2010
+ }
1814
2011
  .sm\:pl-\[10px\] {
1815
2012
  @media (width >= 40rem) {
1816
2013
  padding-left: 10px;
@@ -1836,11 +2033,31 @@
1836
2033
  display: flex;
1837
2034
  }
1838
2035
  }
2036
+ .md\:hidden {
2037
+ @media (width >= 48rem) {
2038
+ display: none;
2039
+ }
2040
+ }
1839
2041
  .md\:h-50 {
1840
2042
  @media (width >= 48rem) {
1841
2043
  height: calc(var(--spacing) * 50);
1842
2044
  }
1843
2045
  }
2046
+ .md\:h-\[400px\] {
2047
+ @media (width >= 48rem) {
2048
+ height: 400px;
2049
+ }
2050
+ }
2051
+ .md\:w-\[70\%\] {
2052
+ @media (width >= 48rem) {
2053
+ width: 70%;
2054
+ }
2055
+ }
2056
+ .md\:w-auto {
2057
+ @media (width >= 48rem) {
2058
+ width: auto;
2059
+ }
2060
+ }
1844
2061
  .md\:grid-cols-12 {
1845
2062
  @media (width >= 48rem) {
1846
2063
  grid-template-columns: repeat(12, minmax(0, 1fr));
@@ -1881,12 +2098,23 @@
1881
2098
  padding-left: 10px;
1882
2099
  }
1883
2100
  }
2101
+ .md\:text-4xl {
2102
+ @media (width >= 48rem) {
2103
+ font-size: var(--text-4xl);
2104
+ line-height: var(--tw-leading, var(--text-4xl--line-height));
2105
+ }
2106
+ }
1884
2107
  .md\:text-sm {
1885
2108
  @media (width >= 48rem) {
1886
2109
  font-size: var(--text-sm);
1887
2110
  line-height: var(--tw-leading, var(--text-sm--line-height));
1888
2111
  }
1889
2112
  }
2113
+ .md\:text-\[13px\] {
2114
+ @media (width >= 48rem) {
2115
+ font-size: 13px;
2116
+ }
2117
+ }
1890
2118
  .dark\:border-input {
1891
2119
  &:is(.dark *) {
1892
2120
  border-color: var(--input);
@@ -2310,6 +2538,7 @@
2310
2538
  @property --tw-rotate-z { syntax: "*"; inherits: false; }
2311
2539
  @property --tw-skew-x { syntax: "*"; inherits: false; }
2312
2540
  @property --tw-skew-y { syntax: "*"; inherits: false; }
2541
+ @property --tw-space-y-reverse { syntax: "*"; inherits: false; initial-value: 0; }
2313
2542
  @property --tw-space-x-reverse { syntax: "*"; inherits: false; initial-value: 0; }
2314
2543
  @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
2315
2544
  @property --tw-leading { syntax: "*"; inherits: false; }
@@ -2359,6 +2588,7 @@
2359
2588
  --tw-rotate-z: initial;
2360
2589
  --tw-skew-x: initial;
2361
2590
  --tw-skew-y: initial;
2591
+ --tw-space-y-reverse: 0;
2362
2592
  --tw-space-x-reverse: 0;
2363
2593
  --tw-border-style: solid;
2364
2594
  --tw-leading: initial;