@copilotz/admin 0.9.39 → 0.9.40
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.cjs +230 -27
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +33 -1
- package/dist/index.d.ts +33 -1
- package/dist/index.js +231 -27
- package/dist/index.js.map +1 -1
- package/dist/styles.css +39 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -363,6 +363,12 @@
|
|
|
363
363
|
.ml-auto {
|
|
364
364
|
margin-left: auto;
|
|
365
365
|
}
|
|
366
|
+
.line-clamp-3 {
|
|
367
|
+
overflow: hidden;
|
|
368
|
+
display: -webkit-box;
|
|
369
|
+
-webkit-box-orient: vertical;
|
|
370
|
+
-webkit-line-clamp: 3;
|
|
371
|
+
}
|
|
366
372
|
.block {
|
|
367
373
|
display: block;
|
|
368
374
|
}
|
|
@@ -614,6 +620,9 @@
|
|
|
614
620
|
.max-w-\[1600px\] {
|
|
615
621
|
max-width: 1600px;
|
|
616
622
|
}
|
|
623
|
+
.max-w-full {
|
|
624
|
+
max-width: 100%;
|
|
625
|
+
}
|
|
617
626
|
.max-w-lg {
|
|
618
627
|
max-width: var(--container-lg);
|
|
619
628
|
}
|
|
@@ -956,6 +965,12 @@
|
|
|
956
965
|
.bg-destructive {
|
|
957
966
|
background-color: var(--color-destructive);
|
|
958
967
|
}
|
|
968
|
+
.bg-destructive\/5 {
|
|
969
|
+
background-color: color-mix(in srgb, hsl(var(--destructive)) 5%, transparent);
|
|
970
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
971
|
+
background-color: color-mix(in oklab, var(--color-destructive) 5%, transparent);
|
|
972
|
+
}
|
|
973
|
+
}
|
|
959
974
|
.bg-destructive\/10 {
|
|
960
975
|
background-color: color-mix(in srgb, hsl(var(--destructive)) 10%, transparent);
|
|
961
976
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1163,6 +1178,10 @@
|
|
|
1163
1178
|
.text-\[11px\] {
|
|
1164
1179
|
font-size: 11px;
|
|
1165
1180
|
}
|
|
1181
|
+
.leading-5 {
|
|
1182
|
+
--tw-leading: calc(var(--spacing) * 5);
|
|
1183
|
+
line-height: calc(var(--spacing) * 5);
|
|
1184
|
+
}
|
|
1166
1185
|
.leading-6 {
|
|
1167
1186
|
--tw-leading: calc(var(--spacing) * 6);
|
|
1168
1187
|
line-height: calc(var(--spacing) * 6);
|
|
@@ -1701,6 +1720,16 @@
|
|
|
1701
1720
|
}
|
|
1702
1721
|
}
|
|
1703
1722
|
}
|
|
1723
|
+
.hover\:bg-muted\/40 {
|
|
1724
|
+
&:hover {
|
|
1725
|
+
@media (hover: hover) {
|
|
1726
|
+
background-color: color-mix(in srgb, hsl(var(--muted)) 40%, transparent);
|
|
1727
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1728
|
+
background-color: color-mix(in oklab, var(--color-muted) 40%, transparent);
|
|
1729
|
+
}
|
|
1730
|
+
}
|
|
1731
|
+
}
|
|
1732
|
+
}
|
|
1704
1733
|
.hover\:bg-muted\/50 {
|
|
1705
1734
|
&:hover {
|
|
1706
1735
|
@media (hover: hover) {
|
|
@@ -1711,6 +1740,16 @@
|
|
|
1711
1740
|
}
|
|
1712
1741
|
}
|
|
1713
1742
|
}
|
|
1743
|
+
.hover\:bg-muted\/60 {
|
|
1744
|
+
&:hover {
|
|
1745
|
+
@media (hover: hover) {
|
|
1746
|
+
background-color: color-mix(in srgb, hsl(var(--muted)) 60%, transparent);
|
|
1747
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1748
|
+
background-color: color-mix(in oklab, var(--color-muted) 60%, transparent);
|
|
1749
|
+
}
|
|
1750
|
+
}
|
|
1751
|
+
}
|
|
1752
|
+
}
|
|
1714
1753
|
.hover\:bg-primary\/90 {
|
|
1715
1754
|
&:hover {
|
|
1716
1755
|
@media (hover: hover) {
|