@copilotz/admin 0.9.39 → 0.9.41

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,24 @@
363
363
  .ml-auto {
364
364
  margin-left: auto;
365
365
  }
366
+ .line-clamp-2 {
367
+ overflow: hidden;
368
+ display: -webkit-box;
369
+ -webkit-box-orient: vertical;
370
+ -webkit-line-clamp: 2;
371
+ }
372
+ .line-clamp-3 {
373
+ overflow: hidden;
374
+ display: -webkit-box;
375
+ -webkit-box-orient: vertical;
376
+ -webkit-line-clamp: 3;
377
+ }
378
+ .line-clamp-4 {
379
+ overflow: hidden;
380
+ display: -webkit-box;
381
+ -webkit-box-orient: vertical;
382
+ -webkit-line-clamp: 4;
383
+ }
366
384
  .block {
367
385
  display: block;
368
386
  }
@@ -455,6 +473,9 @@
455
473
  .h-\[320px\] {
456
474
  height: 320px;
457
475
  }
476
+ .h-\[380px\] {
477
+ height: 380px;
478
+ }
458
479
  .h-\[420px\] {
459
480
  height: 420px;
460
481
  }
@@ -500,6 +521,9 @@
500
521
  .min-h-\[220px\] {
501
522
  min-height: 220px;
502
523
  }
524
+ .min-h-\[300px\] {
525
+ min-height: 300px;
526
+ }
503
527
  .min-h-\[360px\] {
504
528
  min-height: 360px;
505
529
  }
@@ -608,12 +632,15 @@
608
632
  .max-w-\[180px\] {
609
633
  max-width: 180px;
610
634
  }
611
- .max-w-\[360px\] {
612
- max-width: 360px;
635
+ .max-w-\[420px\] {
636
+ max-width: 420px;
613
637
  }
614
638
  .max-w-\[1600px\] {
615
639
  max-width: 1600px;
616
640
  }
641
+ .max-w-full {
642
+ max-width: 100%;
643
+ }
617
644
  .max-w-lg {
618
645
  max-width: var(--container-lg);
619
646
  }
@@ -956,6 +983,12 @@
956
983
  .bg-destructive {
957
984
  background-color: var(--color-destructive);
958
985
  }
986
+ .bg-destructive\/5 {
987
+ background-color: color-mix(in srgb, hsl(var(--destructive)) 5%, transparent);
988
+ @supports (color: color-mix(in lab, red, red)) {
989
+ background-color: color-mix(in oklab, var(--color-destructive) 5%, transparent);
990
+ }
991
+ }
959
992
  .bg-destructive\/10 {
960
993
  background-color: color-mix(in srgb, hsl(var(--destructive)) 10%, transparent);
961
994
  @supports (color: color-mix(in lab, red, red)) {
@@ -1163,6 +1196,10 @@
1163
1196
  .text-\[11px\] {
1164
1197
  font-size: 11px;
1165
1198
  }
1199
+ .leading-5 {
1200
+ --tw-leading: calc(var(--spacing) * 5);
1201
+ line-height: calc(var(--spacing) * 5);
1202
+ }
1166
1203
  .leading-6 {
1167
1204
  --tw-leading: calc(var(--spacing) * 6);
1168
1205
  line-height: calc(var(--spacing) * 6);
@@ -1701,6 +1738,16 @@
1701
1738
  }
1702
1739
  }
1703
1740
  }
1741
+ .hover\:bg-muted\/40 {
1742
+ &:hover {
1743
+ @media (hover: hover) {
1744
+ background-color: color-mix(in srgb, hsl(var(--muted)) 40%, transparent);
1745
+ @supports (color: color-mix(in lab, red, red)) {
1746
+ background-color: color-mix(in oklab, var(--color-muted) 40%, transparent);
1747
+ }
1748
+ }
1749
+ }
1750
+ }
1704
1751
  .hover\:bg-muted\/50 {
1705
1752
  &:hover {
1706
1753
  @media (hover: hover) {
@@ -1711,6 +1758,16 @@
1711
1758
  }
1712
1759
  }
1713
1760
  }
1761
+ .hover\:bg-muted\/60 {
1762
+ &:hover {
1763
+ @media (hover: hover) {
1764
+ background-color: color-mix(in srgb, hsl(var(--muted)) 60%, transparent);
1765
+ @supports (color: color-mix(in lab, red, red)) {
1766
+ background-color: color-mix(in oklab, var(--color-muted) 60%, transparent);
1767
+ }
1768
+ }
1769
+ }
1770
+ }
1714
1771
  .hover\:bg-primary\/90 {
1715
1772
  &:hover {
1716
1773
  @media (hover: hover) {
@@ -2192,6 +2249,11 @@
2192
2249
  grid-template-columns: repeat(3, minmax(0, 1fr));
2193
2250
  }
2194
2251
  }
2252
+ .sm\:px-4 {
2253
+ @media (width >= 40rem) {
2254
+ padding-inline: calc(var(--spacing) * 4);
2255
+ }
2256
+ }
2195
2257
  .md\:block {
2196
2258
  @media (width >= 48rem) {
2197
2259
  display: block;
@@ -2284,6 +2346,23 @@
2284
2346
  grid-template-columns: 240px minmax(0,1fr);
2285
2347
  }
2286
2348
  }
2349
+ .lg\:grid-cols-\[minmax\(0\,1\.5fr\)_320px\] {
2350
+ @media (width >= 64rem) {
2351
+ grid-template-columns: minmax(0,1.5fr) 320px;
2352
+ }
2353
+ }
2354
+ .lg\:border-t-0 {
2355
+ @media (width >= 64rem) {
2356
+ border-top-style: var(--tw-border-style);
2357
+ border-top-width: 0px;
2358
+ }
2359
+ }
2360
+ .lg\:border-l {
2361
+ @media (width >= 64rem) {
2362
+ border-left-style: var(--tw-border-style);
2363
+ border-left-width: 1px;
2364
+ }
2365
+ }
2287
2366
  .lg\:p-5 {
2288
2367
  @media (width >= 64rem) {
2289
2368
  padding: calc(var(--spacing) * 5);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@copilotz/admin",
3
- "version": "0.9.39",
3
+ "version": "0.9.41",
4
4
  "description": "Copilotz admin dashboard components",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",