@copilotz/admin 0.9.38 → 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/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,9 +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
+ }
599
608
  .max-w-\[180px\] {
600
609
  max-width: 180px;
601
610
  }
611
+ .max-w-\[360px\] {
612
+ max-width: 360px;
613
+ }
602
614
  .max-w-\[1600px\] {
603
615
  max-width: 1600px;
604
616
  }
@@ -710,6 +722,9 @@
710
722
  .grid-cols-\[0\.6rem_1fr_auto\] {
711
723
  grid-template-columns: 0.6rem 1fr auto;
712
724
  }
725
+ .grid-cols-\[110px_minmax\(0\,1fr\)\] {
726
+ grid-template-columns: 110px minmax(0,1fr);
727
+ }
713
728
  .grid-rows-\[auto_auto\] {
714
729
  grid-template-rows: auto auto;
715
730
  }
@@ -986,6 +1001,9 @@
986
1001
  .bg-transparent {
987
1002
  background-color: transparent;
988
1003
  }
1004
+ .fill-muted-foreground {
1005
+ fill: var(--color-muted-foreground);
1006
+ }
989
1007
  .fill-primary {
990
1008
  fill: var(--color-primary);
991
1009
  }
@@ -1145,6 +1163,10 @@
1145
1163
  .text-\[11px\] {
1146
1164
  font-size: 11px;
1147
1165
  }
1166
+ .leading-6 {
1167
+ --tw-leading: calc(var(--spacing) * 6);
1168
+ line-height: calc(var(--spacing) * 6);
1169
+ }
1148
1170
  .leading-none {
1149
1171
  --tw-leading: 1;
1150
1172
  line-height: 1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@copilotz/admin",
3
- "version": "0.9.38",
3
+ "version": "0.9.39",
4
4
  "description": "Copilotz admin dashboard components",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",