@algorithm-shift/design-system 1.2.62 → 1.2.63
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 +78 -18
- package/dist/index.css.map +1 -1
- package/dist/index.js +292 -159
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +325 -189
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -338,6 +338,9 @@
|
|
|
338
338
|
.z-\[50\] {
|
|
339
339
|
z-index: 50;
|
|
340
340
|
}
|
|
341
|
+
.z-\[200\] {
|
|
342
|
+
z-index: 200;
|
|
343
|
+
}
|
|
341
344
|
.col-span-12 {
|
|
342
345
|
grid-column: span 12 / span 12;
|
|
343
346
|
}
|
|
@@ -584,6 +587,12 @@
|
|
|
584
587
|
.w-30 {
|
|
585
588
|
width: calc(var(--spacing) * 30);
|
|
586
589
|
}
|
|
590
|
+
.w-48 {
|
|
591
|
+
width: calc(var(--spacing) * 48);
|
|
592
|
+
}
|
|
593
|
+
.w-50 {
|
|
594
|
+
width: calc(var(--spacing) * 50);
|
|
595
|
+
}
|
|
587
596
|
.w-56 {
|
|
588
597
|
width: calc(var(--spacing) * 56);
|
|
589
598
|
}
|
|
@@ -635,9 +644,6 @@
|
|
|
635
644
|
.min-w-\[8rem\] {
|
|
636
645
|
min-width: 8rem;
|
|
637
646
|
}
|
|
638
|
-
.min-w-\[100px\] {
|
|
639
|
-
min-width: 100px;
|
|
640
|
-
}
|
|
641
647
|
.min-w-\[120px\] {
|
|
642
648
|
min-width: 120px;
|
|
643
649
|
}
|
|
@@ -740,6 +746,13 @@
|
|
|
740
746
|
.gap-4 {
|
|
741
747
|
gap: calc(var(--spacing) * 4);
|
|
742
748
|
}
|
|
749
|
+
.space-y-2 {
|
|
750
|
+
:where(& > :not(:last-child)) {
|
|
751
|
+
--tw-space-y-reverse: 0;
|
|
752
|
+
margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
|
|
753
|
+
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
754
|
+
}
|
|
755
|
+
}
|
|
743
756
|
.space-y-3 {
|
|
744
757
|
:where(& > :not(:last-child)) {
|
|
745
758
|
--tw-space-y-reverse: 0;
|
|
@@ -1043,12 +1056,18 @@
|
|
|
1043
1056
|
.pr-\[10px\] {
|
|
1044
1057
|
padding-right: 10px;
|
|
1045
1058
|
}
|
|
1059
|
+
.pb-2 {
|
|
1060
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
1061
|
+
}
|
|
1046
1062
|
.pb-\[10px\] {
|
|
1047
1063
|
padding-bottom: 10px;
|
|
1048
1064
|
}
|
|
1049
1065
|
.pl-2 {
|
|
1050
1066
|
padding-left: calc(var(--spacing) * 2);
|
|
1051
1067
|
}
|
|
1068
|
+
.pl-5 {
|
|
1069
|
+
padding-left: calc(var(--spacing) * 5);
|
|
1070
|
+
}
|
|
1052
1071
|
.pl-8 {
|
|
1053
1072
|
padding-left: calc(var(--spacing) * 8);
|
|
1054
1073
|
}
|
|
@@ -1116,10 +1135,6 @@
|
|
|
1116
1135
|
--tw-leading: 1;
|
|
1117
1136
|
line-height: 1;
|
|
1118
1137
|
}
|
|
1119
|
-
.font-\[400\] {
|
|
1120
|
-
--tw-font-weight: 400;
|
|
1121
|
-
font-weight: 400;
|
|
1122
|
-
}
|
|
1123
1138
|
.font-\[500\] {
|
|
1124
1139
|
--tw-font-weight: 500;
|
|
1125
1140
|
font-weight: 500;
|
|
@@ -1321,6 +1336,9 @@
|
|
|
1321
1336
|
outline-style: var(--tw-outline-style);
|
|
1322
1337
|
outline-width: 1px;
|
|
1323
1338
|
}
|
|
1339
|
+
.filter {
|
|
1340
|
+
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
1341
|
+
}
|
|
1324
1342
|
.transition {
|
|
1325
1343
|
transition-property:
|
|
1326
1344
|
color,
|
|
@@ -1401,10 +1419,6 @@
|
|
|
1401
1419
|
--tw-duration: 200ms;
|
|
1402
1420
|
transition-duration: 200ms;
|
|
1403
1421
|
}
|
|
1404
|
-
.duration-300 {
|
|
1405
|
-
--tw-duration: 300ms;
|
|
1406
|
-
transition-duration: 300ms;
|
|
1407
|
-
}
|
|
1408
1422
|
.outline-none {
|
|
1409
1423
|
--tw-outline-style: none;
|
|
1410
1424
|
outline-style: none;
|
|
@@ -1416,13 +1430,6 @@
|
|
|
1416
1430
|
.\[--cell-size\:--spacing\(8\)\] {
|
|
1417
1431
|
--cell-size: calc(var(--spacing) * 8);
|
|
1418
1432
|
}
|
|
1419
|
-
.group-hover\:opacity-100 {
|
|
1420
|
-
&:is(:where(.group):hover *) {
|
|
1421
|
-
@media (hover: hover) {
|
|
1422
|
-
opacity: 100%;
|
|
1423
|
-
}
|
|
1424
|
-
}
|
|
1425
|
-
}
|
|
1426
1433
|
.group-data-\[disabled\=true\]\:pointer-events-none {
|
|
1427
1434
|
&:is(:where(.group)[data-disabled=true] *) {
|
|
1428
1435
|
pointer-events: none;
|
|
@@ -1674,6 +1681,11 @@
|
|
|
1674
1681
|
}
|
|
1675
1682
|
}
|
|
1676
1683
|
}
|
|
1684
|
+
.focus\:border-gray-300 {
|
|
1685
|
+
&:focus {
|
|
1686
|
+
border-color: var(--color-gray-300);
|
|
1687
|
+
}
|
|
1688
|
+
}
|
|
1677
1689
|
.focus\:bg-accent {
|
|
1678
1690
|
&:focus {
|
|
1679
1691
|
background-color: var(--accent);
|
|
@@ -1706,11 +1718,27 @@
|
|
|
1706
1718
|
outline-style: none;
|
|
1707
1719
|
}
|
|
1708
1720
|
}
|
|
1721
|
+
.focus-visible\:border-gray-300 {
|
|
1722
|
+
&:focus-visible {
|
|
1723
|
+
border-color: var(--color-gray-300);
|
|
1724
|
+
}
|
|
1725
|
+
}
|
|
1709
1726
|
.focus-visible\:border-ring {
|
|
1710
1727
|
&:focus-visible {
|
|
1711
1728
|
border-color: var(--ring);
|
|
1712
1729
|
}
|
|
1713
1730
|
}
|
|
1731
|
+
.focus-visible\:ring-0 {
|
|
1732
|
+
&:focus-visible {
|
|
1733
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1734
|
+
box-shadow:
|
|
1735
|
+
var(--tw-inset-shadow),
|
|
1736
|
+
var(--tw-inset-ring-shadow),
|
|
1737
|
+
var(--tw-ring-offset-shadow),
|
|
1738
|
+
var(--tw-ring-shadow),
|
|
1739
|
+
var(--tw-shadow);
|
|
1740
|
+
}
|
|
1741
|
+
}
|
|
1714
1742
|
.focus-visible\:ring-\[3px\] {
|
|
1715
1743
|
&:focus-visible {
|
|
1716
1744
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
@@ -1738,6 +1766,12 @@
|
|
|
1738
1766
|
}
|
|
1739
1767
|
}
|
|
1740
1768
|
}
|
|
1769
|
+
.focus-visible\:outline-none {
|
|
1770
|
+
&:focus-visible {
|
|
1771
|
+
--tw-outline-style: none;
|
|
1772
|
+
outline-style: none;
|
|
1773
|
+
}
|
|
1774
|
+
}
|
|
1741
1775
|
.disabled\:pointer-events-none {
|
|
1742
1776
|
&:disabled {
|
|
1743
1777
|
pointer-events: none;
|
|
@@ -2716,6 +2750,19 @@
|
|
|
2716
2750
|
@property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
|
|
2717
2751
|
@property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
|
|
2718
2752
|
@property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
|
|
2753
|
+
@property --tw-blur { syntax: "*"; inherits: false; }
|
|
2754
|
+
@property --tw-brightness { syntax: "*"; inherits: false; }
|
|
2755
|
+
@property --tw-contrast { syntax: "*"; inherits: false; }
|
|
2756
|
+
@property --tw-grayscale { syntax: "*"; inherits: false; }
|
|
2757
|
+
@property --tw-hue-rotate { syntax: "*"; inherits: false; }
|
|
2758
|
+
@property --tw-invert { syntax: "*"; inherits: false; }
|
|
2759
|
+
@property --tw-opacity { syntax: "*"; inherits: false; }
|
|
2760
|
+
@property --tw-saturate { syntax: "*"; inherits: false; }
|
|
2761
|
+
@property --tw-sepia { syntax: "*"; inherits: false; }
|
|
2762
|
+
@property --tw-drop-shadow { syntax: "*"; inherits: false; }
|
|
2763
|
+
@property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
|
|
2764
|
+
@property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
|
|
2765
|
+
@property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
|
|
2719
2766
|
@property --tw-duration { syntax: "*"; inherits: false; }
|
|
2720
2767
|
@keyframes enter {
|
|
2721
2768
|
from {
|
|
@@ -2766,6 +2813,19 @@
|
|
|
2766
2813
|
--tw-ring-offset-color: #fff;
|
|
2767
2814
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
2768
2815
|
--tw-outline-style: solid;
|
|
2816
|
+
--tw-blur: initial;
|
|
2817
|
+
--tw-brightness: initial;
|
|
2818
|
+
--tw-contrast: initial;
|
|
2819
|
+
--tw-grayscale: initial;
|
|
2820
|
+
--tw-hue-rotate: initial;
|
|
2821
|
+
--tw-invert: initial;
|
|
2822
|
+
--tw-opacity: initial;
|
|
2823
|
+
--tw-saturate: initial;
|
|
2824
|
+
--tw-sepia: initial;
|
|
2825
|
+
--tw-drop-shadow: initial;
|
|
2826
|
+
--tw-drop-shadow-color: initial;
|
|
2827
|
+
--tw-drop-shadow-alpha: 100%;
|
|
2828
|
+
--tw-drop-shadow-size: initial;
|
|
2769
2829
|
--tw-duration: initial;
|
|
2770
2830
|
--tw-animation-delay: 0s;
|
|
2771
2831
|
--tw-animation-direction: normal;
|