@algorithm-shift/design-system 1.2.995 → 1.2.997
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 +56 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +248 -143
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +257 -152
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -7
package/dist/index.css
CHANGED
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
--color-red-50: oklch(97.1% 0.013 17.38);
|
|
25
25
|
--color-red-500: oklch(63.7% 0.237 25.331);
|
|
26
26
|
--color-red-600: oklch(57.7% 0.245 27.325);
|
|
27
|
+
--color-red-700: oklch(50.5% 0.213 27.518);
|
|
27
28
|
--color-red-800: oklch(44.4% 0.177 26.899);
|
|
28
29
|
--color-yellow-400: oklch(85.2% 0.199 91.936);
|
|
29
30
|
--color-green-50: oklch(98.2% 0.018 155.826);
|
|
@@ -577,6 +578,10 @@
|
|
|
577
578
|
width: calc(var(--spacing) * 2);
|
|
578
579
|
height: calc(var(--spacing) * 2);
|
|
579
580
|
}
|
|
581
|
+
.size-2\.5 {
|
|
582
|
+
width: calc(var(--spacing) * 2.5);
|
|
583
|
+
height: calc(var(--spacing) * 2.5);
|
|
584
|
+
}
|
|
580
585
|
.size-3\.5 {
|
|
581
586
|
width: calc(var(--spacing) * 3.5);
|
|
582
587
|
height: calc(var(--spacing) * 3.5);
|
|
@@ -839,6 +844,12 @@
|
|
|
839
844
|
.max-w-\[90\%\] {
|
|
840
845
|
max-width: 90%;
|
|
841
846
|
}
|
|
847
|
+
.max-w-\[150px\] {
|
|
848
|
+
max-width: 150px;
|
|
849
|
+
}
|
|
850
|
+
.max-w-\[400px\] {
|
|
851
|
+
max-width: 400px;
|
|
852
|
+
}
|
|
842
853
|
.max-w-\[calc\(100\%-2rem\)\] {
|
|
843
854
|
max-width: calc(100% - 2rem);
|
|
844
855
|
}
|
|
@@ -902,6 +913,9 @@
|
|
|
902
913
|
.origin-\(--radix-select-content-transform-origin\) {
|
|
903
914
|
transform-origin: var(--radix-select-content-transform-origin);
|
|
904
915
|
}
|
|
916
|
+
.origin-\(--radix-tooltip-content-transform-origin\) {
|
|
917
|
+
transform-origin: var(--radix-tooltip-content-transform-origin);
|
|
918
|
+
}
|
|
905
919
|
.-translate-x-1\/2 {
|
|
906
920
|
--tw-translate-x: calc(calc(1/2 * 100%) * -1);
|
|
907
921
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -926,9 +940,19 @@
|
|
|
926
940
|
--tw-translate-y: -50%;
|
|
927
941
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
928
942
|
}
|
|
943
|
+
.translate-y-\[calc\(-50\%_-_2px\)\] {
|
|
944
|
+
--tw-translate-y: calc(-50% - 2px);
|
|
945
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
946
|
+
}
|
|
947
|
+
.rotate-45 {
|
|
948
|
+
rotate: 45deg;
|
|
949
|
+
}
|
|
929
950
|
.transform {
|
|
930
951
|
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
931
952
|
}
|
|
953
|
+
.animate-in {
|
|
954
|
+
animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
955
|
+
}
|
|
932
956
|
.animate-pulse {
|
|
933
957
|
animation: var(--animate-pulse);
|
|
934
958
|
}
|
|
@@ -1098,6 +1122,9 @@
|
|
|
1098
1122
|
.rounded {
|
|
1099
1123
|
border-radius: 0.25rem;
|
|
1100
1124
|
}
|
|
1125
|
+
.rounded-\[2px\] {
|
|
1126
|
+
border-radius: 2px;
|
|
1127
|
+
}
|
|
1101
1128
|
.rounded-\[4px\] {
|
|
1102
1129
|
border-radius: 4px;
|
|
1103
1130
|
}
|
|
@@ -1231,6 +1258,9 @@
|
|
|
1231
1258
|
.border-red-500 {
|
|
1232
1259
|
border-color: var(--color-red-500);
|
|
1233
1260
|
}
|
|
1261
|
+
.border-red-700 {
|
|
1262
|
+
border-color: var(--color-red-700);
|
|
1263
|
+
}
|
|
1234
1264
|
.border-teal-200 {
|
|
1235
1265
|
border-color: var(--color-teal-200);
|
|
1236
1266
|
}
|
|
@@ -1303,6 +1333,9 @@
|
|
|
1303
1333
|
.bg-destructive {
|
|
1304
1334
|
background-color: var(--destructive);
|
|
1305
1335
|
}
|
|
1336
|
+
.bg-foreground {
|
|
1337
|
+
background-color: var(--foreground);
|
|
1338
|
+
}
|
|
1306
1339
|
.bg-gray-50 {
|
|
1307
1340
|
background-color: var(--color-gray-50);
|
|
1308
1341
|
}
|
|
@@ -1492,6 +1525,9 @@
|
|
|
1492
1525
|
.fill-current {
|
|
1493
1526
|
fill: currentcolor;
|
|
1494
1527
|
}
|
|
1528
|
+
.fill-foreground {
|
|
1529
|
+
fill: var(--foreground);
|
|
1530
|
+
}
|
|
1495
1531
|
.fill-primary {
|
|
1496
1532
|
fill: var(--primary);
|
|
1497
1533
|
}
|
|
@@ -1729,9 +1765,15 @@
|
|
|
1729
1765
|
--tw-tracking: var(--tracking-widest);
|
|
1730
1766
|
letter-spacing: var(--tracking-widest);
|
|
1731
1767
|
}
|
|
1768
|
+
.text-balance {
|
|
1769
|
+
text-wrap: balance;
|
|
1770
|
+
}
|
|
1732
1771
|
.break-words {
|
|
1733
1772
|
overflow-wrap: break-word;
|
|
1734
1773
|
}
|
|
1774
|
+
.text-ellipsis {
|
|
1775
|
+
text-overflow: ellipsis;
|
|
1776
|
+
}
|
|
1735
1777
|
.whitespace-normal {
|
|
1736
1778
|
white-space: normal;
|
|
1737
1779
|
}
|
|
@@ -1759,6 +1801,9 @@
|
|
|
1759
1801
|
.text-accent-foreground {
|
|
1760
1802
|
color: var(--accent-foreground);
|
|
1761
1803
|
}
|
|
1804
|
+
.text-background {
|
|
1805
|
+
color: var(--background);
|
|
1806
|
+
}
|
|
1762
1807
|
.text-black {
|
|
1763
1808
|
color: var(--color-black);
|
|
1764
1809
|
}
|
|
@@ -1822,6 +1867,9 @@
|
|
|
1822
1867
|
.text-red-600 {
|
|
1823
1868
|
color: var(--color-red-600);
|
|
1824
1869
|
}
|
|
1870
|
+
.text-red-700 {
|
|
1871
|
+
color: var(--color-red-700);
|
|
1872
|
+
}
|
|
1825
1873
|
.text-secondary-foreground {
|
|
1826
1874
|
color: var(--secondary-foreground);
|
|
1827
1875
|
}
|
|
@@ -2044,6 +2092,10 @@
|
|
|
2044
2092
|
--tw-duration: 200ms;
|
|
2045
2093
|
transition-duration: 200ms;
|
|
2046
2094
|
}
|
|
2095
|
+
.fade-in-0 {
|
|
2096
|
+
--tw-enter-opacity: calc(0/100);
|
|
2097
|
+
--tw-enter-opacity: 0;
|
|
2098
|
+
}
|
|
2047
2099
|
.outline-none {
|
|
2048
2100
|
--tw-outline-style: none;
|
|
2049
2101
|
outline-style: none;
|
|
@@ -2052,6 +2104,10 @@
|
|
|
2052
2104
|
-webkit-user-select: none;
|
|
2053
2105
|
user-select: none;
|
|
2054
2106
|
}
|
|
2107
|
+
.zoom-in-95 {
|
|
2108
|
+
--tw-enter-scale: calc(95*1%);
|
|
2109
|
+
--tw-enter-scale: .95;
|
|
2110
|
+
}
|
|
2055
2111
|
.\[--cell-size\:--spacing\(8\)\] {
|
|
2056
2112
|
--cell-size: calc(var(--spacing) * 8);
|
|
2057
2113
|
}
|