@copilotz/admin 0.9.37 → 0.9.39
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 +996 -418
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +89 -1
- package/dist/index.d.ts +89 -1
- package/dist/index.js +950 -366
- package/dist/index.js.map +1 -1
- package/dist/styles.css +25 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -455,6 +455,9 @@
|
|
|
455
455
|
.h-\[320px\] {
|
|
456
456
|
height: 320px;
|
|
457
457
|
}
|
|
458
|
+
.h-\[420px\] {
|
|
459
|
+
height: 420px;
|
|
460
|
+
}
|
|
458
461
|
.h-\[var\(--radix-select-trigger-height\)\] {
|
|
459
462
|
height: var(--radix-select-trigger-height);
|
|
460
463
|
}
|
|
@@ -497,6 +500,9 @@
|
|
|
497
500
|
.min-h-\[220px\] {
|
|
498
501
|
min-height: 220px;
|
|
499
502
|
}
|
|
503
|
+
.min-h-\[360px\] {
|
|
504
|
+
min-height: 360px;
|
|
505
|
+
}
|
|
500
506
|
.min-h-\[400px\] {
|
|
501
507
|
min-height: 400px;
|
|
502
508
|
}
|
|
@@ -596,6 +602,15 @@
|
|
|
596
602
|
.max-w-80 {
|
|
597
603
|
max-width: calc(var(--spacing) * 80);
|
|
598
604
|
}
|
|
605
|
+
.max-w-\[160px\] {
|
|
606
|
+
max-width: 160px;
|
|
607
|
+
}
|
|
608
|
+
.max-w-\[180px\] {
|
|
609
|
+
max-width: 180px;
|
|
610
|
+
}
|
|
611
|
+
.max-w-\[360px\] {
|
|
612
|
+
max-width: 360px;
|
|
613
|
+
}
|
|
599
614
|
.max-w-\[1600px\] {
|
|
600
615
|
max-width: 1600px;
|
|
601
616
|
}
|
|
@@ -707,6 +722,9 @@
|
|
|
707
722
|
.grid-cols-\[0\.6rem_1fr_auto\] {
|
|
708
723
|
grid-template-columns: 0.6rem 1fr auto;
|
|
709
724
|
}
|
|
725
|
+
.grid-cols-\[110px_minmax\(0\,1fr\)\] {
|
|
726
|
+
grid-template-columns: 110px minmax(0,1fr);
|
|
727
|
+
}
|
|
710
728
|
.grid-rows-\[auto_auto\] {
|
|
711
729
|
grid-template-rows: auto auto;
|
|
712
730
|
}
|
|
@@ -983,6 +1001,9 @@
|
|
|
983
1001
|
.bg-transparent {
|
|
984
1002
|
background-color: transparent;
|
|
985
1003
|
}
|
|
1004
|
+
.fill-muted-foreground {
|
|
1005
|
+
fill: var(--color-muted-foreground);
|
|
1006
|
+
}
|
|
986
1007
|
.fill-primary {
|
|
987
1008
|
fill: var(--color-primary);
|
|
988
1009
|
}
|
|
@@ -1142,6 +1163,10 @@
|
|
|
1142
1163
|
.text-\[11px\] {
|
|
1143
1164
|
font-size: 11px;
|
|
1144
1165
|
}
|
|
1166
|
+
.leading-6 {
|
|
1167
|
+
--tw-leading: calc(var(--spacing) * 6);
|
|
1168
|
+
line-height: calc(var(--spacing) * 6);
|
|
1169
|
+
}
|
|
1145
1170
|
.leading-none {
|
|
1146
1171
|
--tw-leading: 1;
|
|
1147
1172
|
line-height: 1;
|