@copilotz/admin 0.3.7 → 0.3.8
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 +1224 -337
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +38 -2
- package/dist/index.d.ts +38 -2
- package/dist/index.js +1150 -269
- package/dist/index.js.map +1 -1
- package/dist/styles.css +67 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -7,10 +7,12 @@
|
|
|
7
7
|
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
8
8
|
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
9
9
|
"Courier New", monospace;
|
|
10
|
+
--color-emerald-600: oklch(59.6% 0.145 163.225);
|
|
10
11
|
--color-black: #000;
|
|
11
12
|
--color-white: #fff;
|
|
12
13
|
--spacing: 0.25rem;
|
|
13
14
|
--container-sm: 24rem;
|
|
15
|
+
--container-lg: 32rem;
|
|
14
16
|
--text-xs: 0.75rem;
|
|
15
17
|
--text-xs--line-height: calc(1 / 0.75);
|
|
16
18
|
--text-sm: 0.875rem;
|
|
@@ -21,6 +23,8 @@
|
|
|
21
23
|
--text-lg--line-height: calc(1.75 / 1.125);
|
|
22
24
|
--text-xl: 1.25rem;
|
|
23
25
|
--text-xl--line-height: calc(1.75 / 1.25);
|
|
26
|
+
--text-2xl: 1.5rem;
|
|
27
|
+
--text-2xl--line-height: calc(2 / 1.5);
|
|
24
28
|
--text-3xl: 1.875rem;
|
|
25
29
|
--text-3xl--line-height: calc(2.25 / 1.875);
|
|
26
30
|
--font-weight-medium: 500;
|
|
@@ -324,12 +328,18 @@
|
|
|
324
328
|
.mt-3 {
|
|
325
329
|
margin-top: calc(var(--spacing) * 3);
|
|
326
330
|
}
|
|
331
|
+
.mt-4 {
|
|
332
|
+
margin-top: calc(var(--spacing) * 4);
|
|
333
|
+
}
|
|
327
334
|
.mt-auto {
|
|
328
335
|
margin-top: auto;
|
|
329
336
|
}
|
|
330
337
|
.mr-2 {
|
|
331
338
|
margin-right: calc(var(--spacing) * 2);
|
|
332
339
|
}
|
|
340
|
+
.mb-1 {
|
|
341
|
+
margin-bottom: calc(var(--spacing) * 1);
|
|
342
|
+
}
|
|
333
343
|
.mb-4 {
|
|
334
344
|
margin-bottom: calc(var(--spacing) * 4);
|
|
335
345
|
}
|
|
@@ -339,6 +349,9 @@
|
|
|
339
349
|
.ml-2 {
|
|
340
350
|
margin-left: calc(var(--spacing) * 2);
|
|
341
351
|
}
|
|
352
|
+
.block {
|
|
353
|
+
display: block;
|
|
354
|
+
}
|
|
342
355
|
.flex {
|
|
343
356
|
display: flex;
|
|
344
357
|
}
|
|
@@ -418,6 +431,9 @@
|
|
|
418
431
|
.h-svh {
|
|
419
432
|
height: 100svh;
|
|
420
433
|
}
|
|
434
|
+
.max-h-40 {
|
|
435
|
+
max-height: calc(var(--spacing) * 40);
|
|
436
|
+
}
|
|
421
437
|
.max-h-60 {
|
|
422
438
|
max-height: calc(var(--spacing) * 60);
|
|
423
439
|
}
|
|
@@ -430,6 +446,9 @@
|
|
|
430
446
|
.min-h-\[200px\] {
|
|
431
447
|
min-height: 200px;
|
|
432
448
|
}
|
|
449
|
+
.min-h-\[400px\] {
|
|
450
|
+
min-height: 400px;
|
|
451
|
+
}
|
|
433
452
|
.min-h-svh {
|
|
434
453
|
min-height: 100svh;
|
|
435
454
|
}
|
|
@@ -460,6 +479,9 @@
|
|
|
460
479
|
.w-8 {
|
|
461
480
|
width: calc(var(--spacing) * 8);
|
|
462
481
|
}
|
|
482
|
+
.w-10 {
|
|
483
|
+
width: calc(var(--spacing) * 10);
|
|
484
|
+
}
|
|
463
485
|
.w-\[90px\] {
|
|
464
486
|
width: 90px;
|
|
465
487
|
}
|
|
@@ -478,6 +500,9 @@
|
|
|
478
500
|
.max-w-44 {
|
|
479
501
|
max-width: calc(var(--spacing) * 44);
|
|
480
502
|
}
|
|
503
|
+
.max-w-lg {
|
|
504
|
+
max-width: var(--container-lg);
|
|
505
|
+
}
|
|
481
506
|
.max-w-sm {
|
|
482
507
|
max-width: var(--container-sm);
|
|
483
508
|
}
|
|
@@ -544,6 +569,9 @@
|
|
|
544
569
|
.cursor-pointer {
|
|
545
570
|
cursor: pointer;
|
|
546
571
|
}
|
|
572
|
+
.resize-y {
|
|
573
|
+
resize: vertical;
|
|
574
|
+
}
|
|
547
575
|
.auto-rows-min {
|
|
548
576
|
grid-auto-rows: min-content;
|
|
549
577
|
}
|
|
@@ -881,6 +909,13 @@
|
|
|
881
909
|
.text-right {
|
|
882
910
|
text-align: right;
|
|
883
911
|
}
|
|
912
|
+
.font-mono {
|
|
913
|
+
font-family: var(--font-mono);
|
|
914
|
+
}
|
|
915
|
+
.text-2xl {
|
|
916
|
+
font-size: var(--text-2xl);
|
|
917
|
+
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
|
918
|
+
}
|
|
884
919
|
.text-3xl {
|
|
885
920
|
font-size: var(--text-3xl);
|
|
886
921
|
line-height: var(--tw-leading, var(--text-3xl--line-height));
|
|
@@ -949,6 +984,9 @@
|
|
|
949
984
|
.text-destructive {
|
|
950
985
|
color: var(--color-destructive);
|
|
951
986
|
}
|
|
987
|
+
.text-emerald-600 {
|
|
988
|
+
color: var(--color-emerald-600);
|
|
989
|
+
}
|
|
952
990
|
.text-foreground {
|
|
953
991
|
color: var(--color-foreground);
|
|
954
992
|
}
|
|
@@ -985,6 +1023,9 @@
|
|
|
985
1023
|
.text-white {
|
|
986
1024
|
color: var(--color-white);
|
|
987
1025
|
}
|
|
1026
|
+
.capitalize {
|
|
1027
|
+
text-transform: capitalize;
|
|
1028
|
+
}
|
|
988
1029
|
.uppercase {
|
|
989
1030
|
text-transform: uppercase;
|
|
990
1031
|
}
|
|
@@ -1148,6 +1189,11 @@
|
|
|
1148
1189
|
margin-top: calc(var(--spacing) * -8);
|
|
1149
1190
|
}
|
|
1150
1191
|
}
|
|
1192
|
+
.group-data-\[collapsible\=icon\]\:flex {
|
|
1193
|
+
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1194
|
+
display: flex;
|
|
1195
|
+
}
|
|
1196
|
+
}
|
|
1151
1197
|
.group-data-\[collapsible\=icon\]\:hidden {
|
|
1152
1198
|
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1153
1199
|
display: none;
|
|
@@ -1556,6 +1602,12 @@
|
|
|
1556
1602
|
}
|
|
1557
1603
|
}
|
|
1558
1604
|
}
|
|
1605
|
+
.focus\:outline-none {
|
|
1606
|
+
&:focus {
|
|
1607
|
+
--tw-outline-style: none;
|
|
1608
|
+
outline-style: none;
|
|
1609
|
+
}
|
|
1610
|
+
}
|
|
1559
1611
|
.focus-visible\:border-ring {
|
|
1560
1612
|
&:focus-visible {
|
|
1561
1613
|
border-color: var(--color-ring);
|
|
@@ -1869,6 +1921,16 @@
|
|
|
1869
1921
|
max-width: var(--container-sm);
|
|
1870
1922
|
}
|
|
1871
1923
|
}
|
|
1924
|
+
.sm\:grid-cols-2 {
|
|
1925
|
+
@media (width >= 40rem) {
|
|
1926
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1927
|
+
}
|
|
1928
|
+
}
|
|
1929
|
+
.sm\:grid-cols-3 {
|
|
1930
|
+
@media (width >= 40rem) {
|
|
1931
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1932
|
+
}
|
|
1933
|
+
}
|
|
1872
1934
|
.md\:block {
|
|
1873
1935
|
@media (width >= 48rem) {
|
|
1874
1936
|
display: block;
|
|
@@ -1884,6 +1946,11 @@
|
|
|
1884
1946
|
height: 100vh;
|
|
1885
1947
|
}
|
|
1886
1948
|
}
|
|
1949
|
+
.md\:grid-cols-2 {
|
|
1950
|
+
@media (width >= 48rem) {
|
|
1951
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1952
|
+
}
|
|
1953
|
+
}
|
|
1887
1954
|
.md\:grid-cols-3 {
|
|
1888
1955
|
@media (width >= 48rem) {
|
|
1889
1956
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|