@copilotz/admin 0.9.38 → 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/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
  }
@@ -455,6 +461,9 @@
455
461
  .h-\[320px\] {
456
462
  height: 320px;
457
463
  }
464
+ .h-\[420px\] {
465
+ height: 420px;
466
+ }
458
467
  .h-\[var\(--radix-select-trigger-height\)\] {
459
468
  height: var(--radix-select-trigger-height);
460
469
  }
@@ -497,6 +506,9 @@
497
506
  .min-h-\[220px\] {
498
507
  min-height: 220px;
499
508
  }
509
+ .min-h-\[360px\] {
510
+ min-height: 360px;
511
+ }
500
512
  .min-h-\[400px\] {
501
513
  min-height: 400px;
502
514
  }
@@ -596,12 +608,21 @@
596
608
  .max-w-80 {
597
609
  max-width: calc(var(--spacing) * 80);
598
610
  }
611
+ .max-w-\[160px\] {
612
+ max-width: 160px;
613
+ }
599
614
  .max-w-\[180px\] {
600
615
  max-width: 180px;
601
616
  }
617
+ .max-w-\[360px\] {
618
+ max-width: 360px;
619
+ }
602
620
  .max-w-\[1600px\] {
603
621
  max-width: 1600px;
604
622
  }
623
+ .max-w-full {
624
+ max-width: 100%;
625
+ }
605
626
  .max-w-lg {
606
627
  max-width: var(--container-lg);
607
628
  }
@@ -710,6 +731,9 @@
710
731
  .grid-cols-\[0\.6rem_1fr_auto\] {
711
732
  grid-template-columns: 0.6rem 1fr auto;
712
733
  }
734
+ .grid-cols-\[110px_minmax\(0\,1fr\)\] {
735
+ grid-template-columns: 110px minmax(0,1fr);
736
+ }
713
737
  .grid-rows-\[auto_auto\] {
714
738
  grid-template-rows: auto auto;
715
739
  }
@@ -941,6 +965,12 @@
941
965
  .bg-destructive {
942
966
  background-color: var(--color-destructive);
943
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
+ }
944
974
  .bg-destructive\/10 {
945
975
  background-color: color-mix(in srgb, hsl(var(--destructive)) 10%, transparent);
946
976
  @supports (color: color-mix(in lab, red, red)) {
@@ -986,6 +1016,9 @@
986
1016
  .bg-transparent {
987
1017
  background-color: transparent;
988
1018
  }
1019
+ .fill-muted-foreground {
1020
+ fill: var(--color-muted-foreground);
1021
+ }
989
1022
  .fill-primary {
990
1023
  fill: var(--color-primary);
991
1024
  }
@@ -1145,6 +1178,14 @@
1145
1178
  .text-\[11px\] {
1146
1179
  font-size: 11px;
1147
1180
  }
1181
+ .leading-5 {
1182
+ --tw-leading: calc(var(--spacing) * 5);
1183
+ line-height: calc(var(--spacing) * 5);
1184
+ }
1185
+ .leading-6 {
1186
+ --tw-leading: calc(var(--spacing) * 6);
1187
+ line-height: calc(var(--spacing) * 6);
1188
+ }
1148
1189
  .leading-none {
1149
1190
  --tw-leading: 1;
1150
1191
  line-height: 1;
@@ -1679,6 +1720,16 @@
1679
1720
  }
1680
1721
  }
1681
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
+ }
1682
1733
  .hover\:bg-muted\/50 {
1683
1734
  &:hover {
1684
1735
  @media (hover: hover) {
@@ -1689,6 +1740,16 @@
1689
1740
  }
1690
1741
  }
1691
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
+ }
1692
1753
  .hover\:bg-primary\/90 {
1693
1754
  &:hover {
1694
1755
  @media (hover: hover) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@copilotz/admin",
3
- "version": "0.9.38",
3
+ "version": "0.9.40",
4
4
  "description": "Copilotz admin dashboard components",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",