@algorithm-shift/design-system 1.2.40 → 1.2.42

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
@@ -22,6 +22,9 @@
22
22
  "Courier New",
23
23
  monospace;
24
24
  --color-red-500: oklch(63.7% 0.237 25.331);
25
+ --color-teal-200: oklch(91% 0.096 180.426);
26
+ --color-teal-600: oklch(60% 0.118 184.704);
27
+ --color-teal-700: oklch(51.1% 0.096 186.391);
25
28
  --color-blue-500: oklch(62.3% 0.214 259.815);
26
29
  --color-blue-700: oklch(48.8% 0.243 264.376);
27
30
  --color-gray-50: oklch(98.5% 0.002 247.839);
@@ -342,12 +345,18 @@
342
345
  .-mx-1 {
343
346
  margin-inline: calc(var(--spacing) * -1);
344
347
  }
348
+ .mx-2 {
349
+ margin-inline: calc(var(--spacing) * 2);
350
+ }
345
351
  .mx-auto {
346
352
  margin-inline: auto;
347
353
  }
348
354
  .my-1 {
349
355
  margin-block: calc(var(--spacing) * 1);
350
356
  }
357
+ .my-2 {
358
+ margin-block: calc(var(--spacing) * 2);
359
+ }
351
360
  .mt-1 {
352
361
  margin-top: calc(var(--spacing) * 1);
353
362
  }
@@ -480,6 +489,9 @@
480
489
  .h-\[1\.15rem\] {
481
490
  height: 1.15rem;
482
491
  }
492
+ .h-\[1px\] {
493
+ height: 1px;
494
+ }
483
495
  .h-\[10px\] {
484
496
  height: 10px;
485
497
  }
@@ -561,6 +573,9 @@
561
573
  .w-30 {
562
574
  width: calc(var(--spacing) * 30);
563
575
  }
576
+ .w-56 {
577
+ width: calc(var(--spacing) * 56);
578
+ }
564
579
  .w-72 {
565
580
  width: calc(var(--spacing) * 72);
566
581
  }
@@ -684,6 +699,9 @@
684
699
  .items-center {
685
700
  align-items: center;
686
701
  }
702
+ .items-start {
703
+ align-items: flex-start;
704
+ }
687
705
  .justify-between {
688
706
  justify-content: space-between;
689
707
  }
@@ -739,6 +757,13 @@
739
757
  margin-inline-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-x-reverse)));
740
758
  }
741
759
  }
760
+ .space-x-6 {
761
+ :where(& > :not(:last-child)) {
762
+ --tw-space-x-reverse: 0;
763
+ margin-inline-start: calc(calc(var(--spacing) * 6) * var(--tw-space-x-reverse));
764
+ margin-inline-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-x-reverse)));
765
+ }
766
+ }
742
767
  .overflow-hidden {
743
768
  overflow: hidden;
744
769
  }
@@ -800,6 +825,10 @@
800
825
  border-top-style: var(--tw-border-style);
801
826
  border-top-width: 1px;
802
827
  }
828
+ .border-r {
829
+ border-right-style: var(--tw-border-style);
830
+ border-right-width: 1px;
831
+ }
803
832
  .border-b {
804
833
  border-bottom-style: var(--tw-border-style);
805
834
  border-bottom-width: 1px;
@@ -840,6 +869,9 @@
840
869
  .border-red-500 {
841
870
  border-color: var(--color-red-500);
842
871
  }
872
+ .border-teal-200 {
873
+ border-color: var(--color-teal-200);
874
+ }
843
875
  .border-transparent {
844
876
  border-color: transparent;
845
877
  }
@@ -852,6 +884,9 @@
852
884
  .bg-\[\#034486\] {
853
885
  background-color: #034486;
854
886
  }
887
+ .bg-\[\#656565\] {
888
+ background-color: #656565;
889
+ }
855
890
  .bg-\[\#E9E9E9\] {
856
891
  background-color: #E9E9E9;
857
892
  }
@@ -900,6 +935,9 @@
900
935
  .bg-secondary {
901
936
  background-color: var(--secondary);
902
937
  }
938
+ .bg-teal-700 {
939
+ background-color: var(--color-teal-700);
940
+ }
903
941
  .bg-transparent {
904
942
  background-color: transparent;
905
943
  }
@@ -1103,9 +1141,6 @@
1103
1141
  .text-\[\#BDBDBD\] {
1104
1142
  color: #BDBDBD;
1105
1143
  }
1106
- .text-\[\#E9E9E9\] {
1107
- color: #E9E9E9;
1108
- }
1109
1144
  .text-\[\#fff\] {
1110
1145
  color: #fff;
1111
1146
  }
@@ -1121,6 +1156,9 @@
1121
1156
  .text-current {
1122
1157
  color: currentcolor;
1123
1158
  }
1159
+ .text-foreground {
1160
+ color: var(--foreground);
1161
+ }
1124
1162
  .text-gray-400 {
1125
1163
  color: var(--color-gray-400);
1126
1164
  }
@@ -1172,6 +1210,9 @@
1172
1210
  .opacity-0 {
1173
1211
  opacity: 0%;
1174
1212
  }
1213
+ .opacity-30 {
1214
+ opacity: 30%;
1215
+ }
1175
1216
  .opacity-50 {
1176
1217
  opacity: 50%;
1177
1218
  }
@@ -1205,6 +1246,15 @@
1205
1246
  var(--tw-ring-shadow),
1206
1247
  var(--tw-shadow);
1207
1248
  }
1249
+ .shadow-none {
1250
+ --tw-shadow: 0 0 #0000;
1251
+ box-shadow:
1252
+ var(--tw-inset-shadow),
1253
+ var(--tw-inset-ring-shadow),
1254
+ var(--tw-ring-offset-shadow),
1255
+ var(--tw-ring-shadow),
1256
+ var(--tw-shadow);
1257
+ }
1208
1258
  .shadow-sm {
1209
1259
  --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));
1210
1260
  box-shadow:
@@ -1538,6 +1588,13 @@
1538
1588
  }
1539
1589
  }
1540
1590
  }
1591
+ .hover\:bg-teal-600 {
1592
+ &:hover {
1593
+ @media (hover: hover) {
1594
+ background-color: var(--color-teal-600);
1595
+ }
1596
+ }
1597
+ }
1541
1598
  .hover\:bg-white\/5 {
1542
1599
  &:hover {
1543
1600
  @media (hover: hover) {
@@ -1555,6 +1612,20 @@
1555
1612
  }
1556
1613
  }
1557
1614
  }
1615
+ .hover\:text-foreground {
1616
+ &:hover {
1617
+ @media (hover: hover) {
1618
+ color: var(--foreground);
1619
+ }
1620
+ }
1621
+ }
1622
+ .hover\:text-gray-900 {
1623
+ &:hover {
1624
+ @media (hover: hover) {
1625
+ color: var(--color-gray-900);
1626
+ }
1627
+ }
1628
+ }
1558
1629
  .hover\:underline {
1559
1630
  &:hover {
1560
1631
  @media (hover: hover) {
@@ -1588,12 +1659,6 @@
1588
1659
  var(--tw-shadow);
1589
1660
  }
1590
1661
  }
1591
- .focus\:ring-offset-0 {
1592
- &:focus {
1593
- --tw-ring-offset-width: 0px;
1594
- --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1595
- }
1596
- }
1597
1662
  .focus\:outline-none {
1598
1663
  &:focus {
1599
1664
  --tw-outline-style: none;
@@ -2009,6 +2074,11 @@
2009
2074
  display: flex;
2010
2075
  }
2011
2076
  }
2077
+ .sm\:hidden {
2078
+ @media (width >= 40rem) {
2079
+ display: none;
2080
+ }
2081
+ }
2012
2082
  .sm\:h-50 {
2013
2083
  @media (width >= 40rem) {
2014
2084
  height: calc(var(--spacing) * 50);