@copilotz/admin 0.9.27 → 0.9.29

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
@@ -242,6 +242,9 @@
242
242
  .relative {
243
243
  position: relative;
244
244
  }
245
+ .sticky {
246
+ position: sticky;
247
+ }
245
248
  .inset-0 {
246
249
  inset: calc(var(--spacing) * 0);
247
250
  }
@@ -344,15 +347,15 @@
344
347
  .mb-2 {
345
348
  margin-bottom: calc(var(--spacing) * 2);
346
349
  }
347
- .mb-3 {
348
- margin-bottom: calc(var(--spacing) * 3);
349
- }
350
350
  .-ml-1 {
351
351
  margin-left: calc(var(--spacing) * -1);
352
352
  }
353
353
  .ml-2 {
354
354
  margin-left: calc(var(--spacing) * 2);
355
355
  }
356
+ .ml-auto {
357
+ margin-left: auto;
358
+ }
356
359
  .block {
357
360
  display: block;
358
361
  }
@@ -431,9 +434,6 @@
431
434
  .h-\[100svh\] {
432
435
  height: 100svh;
433
436
  }
434
- .h-\[320px\] {
435
- height: 320px;
436
- }
437
437
  .h-\[var\(--radix-select-trigger-height\)\] {
438
438
  height: var(--radix-select-trigger-height);
439
439
  }
@@ -455,9 +455,15 @@
455
455
  .min-h-0 {
456
456
  min-height: calc(var(--spacing) * 0);
457
457
  }
458
+ .min-h-10 {
459
+ min-height: calc(var(--spacing) * 10);
460
+ }
458
461
  .min-h-\[200px\] {
459
462
  min-height: 200px;
460
463
  }
464
+ .min-h-\[220px\] {
465
+ min-height: 220px;
466
+ }
461
467
  .min-h-\[400px\] {
462
468
  min-height: 400px;
463
469
  }
@@ -494,8 +500,26 @@
494
500
  .w-10 {
495
501
  width: calc(var(--spacing) * 10);
496
502
  }
497
- .w-\[90px\] {
498
- width: 90px;
503
+ .w-\[86px\] {
504
+ width: 86px;
505
+ }
506
+ .w-\[92px\] {
507
+ width: 92px;
508
+ }
509
+ .w-\[94px\] {
510
+ width: 94px;
511
+ }
512
+ .w-\[116px\] {
513
+ width: 116px;
514
+ }
515
+ .w-\[128px\] {
516
+ width: 128px;
517
+ }
518
+ .w-\[132px\] {
519
+ width: 132px;
520
+ }
521
+ .w-\[150px\] {
522
+ width: 150px;
499
523
  }
500
524
  .w-auto {
501
525
  width: auto;
@@ -518,6 +542,9 @@
518
542
  .max-w-80 {
519
543
  max-width: calc(var(--spacing) * 80);
520
544
  }
545
+ .max-w-full {
546
+ max-width: 100%;
547
+ }
521
548
  .max-w-lg {
522
549
  max-width: var(--container-lg);
523
550
  }
@@ -536,6 +563,9 @@
536
563
  .min-w-\[8rem\] {
537
564
  min-width: 8rem;
538
565
  }
566
+ .min-w-\[240px\] {
567
+ min-width: 240px;
568
+ }
539
569
  .min-w-\[940px\] {
540
570
  min-width: 940px;
541
571
  }
@@ -608,6 +638,9 @@
608
638
  .grid-rows-\[auto_auto\] {
609
639
  grid-template-rows: auto auto;
610
640
  }
641
+ .grid-rows-\[auto_minmax\(0\,4fr\)_minmax\(0\,5fr\)\] {
642
+ grid-template-rows: auto minmax(0,4fr) minmax(0,5fr);
643
+ }
611
644
  .flex-col {
612
645
  flex-direction: column;
613
646
  }
@@ -629,6 +662,12 @@
629
662
  .justify-center {
630
663
  justify-content: center;
631
664
  }
665
+ .justify-end {
666
+ justify-content: flex-end;
667
+ }
668
+ .gap-0 {
669
+ gap: calc(var(--spacing) * 0);
670
+ }
632
671
  .gap-1 {
633
672
  gap: calc(var(--spacing) * 1);
634
673
  }
@@ -668,6 +707,13 @@
668
707
  margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
669
708
  }
670
709
  }
710
+ .space-y-3 {
711
+ :where(& > :not(:last-child)) {
712
+ --tw-space-y-reverse: 0;
713
+ margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
714
+ margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
715
+ }
716
+ }
671
717
  .space-y-4 {
672
718
  :where(& > :not(:last-child)) {
673
719
  --tw-space-y-reverse: 0;
@@ -831,12 +877,6 @@
831
877
  background-color: color-mix(in oklab, var(--color-muted) 20%, transparent);
832
878
  }
833
879
  }
834
- .bg-muted\/30 {
835
- background-color: color-mix(in srgb, hsl(var(--muted)) 30%, transparent);
836
- @supports (color: color-mix(in lab, red, red)) {
837
- background-color: color-mix(in oklab, var(--color-muted) 30%, transparent);
838
- }
839
- }
840
880
  .bg-muted\/50 {
841
881
  background-color: color-mix(in srgb, hsl(var(--muted)) 50%, transparent);
842
882
  @supports (color: color-mix(in lab, red, red)) {
@@ -876,6 +916,9 @@
876
916
  .p-1 {
877
917
  padding: calc(var(--spacing) * 1);
878
918
  }
919
+ .p-1\.5 {
920
+ padding: calc(var(--spacing) * 1.5);
921
+ }
879
922
  .p-2 {
880
923
  padding: calc(var(--spacing) * 2);
881
924
  }
@@ -963,6 +1006,9 @@
963
1006
  .pr-8 {
964
1007
  padding-right: calc(var(--spacing) * 8);
965
1008
  }
1009
+ .pb-1 {
1010
+ padding-bottom: calc(var(--spacing) * 1);
1011
+ }
966
1012
  .pb-2 {
967
1013
  padding-bottom: calc(var(--spacing) * 2);
968
1014
  }
@@ -1033,10 +1079,6 @@
1033
1079
  --tw-tracking: 0.12em;
1034
1080
  letter-spacing: 0.12em;
1035
1081
  }
1036
- .tracking-\[0\.16em\] {
1037
- --tw-tracking: 0.16em;
1038
- letter-spacing: 0.16em;
1039
- }
1040
1082
  .tracking-tight {
1041
1083
  --tw-tracking: var(--tracking-tight);
1042
1084
  letter-spacing: var(--tracking-tight);
@@ -1990,11 +2032,6 @@
1990
2032
  display: flex;
1991
2033
  }
1992
2034
  }
1993
- .sm\:w-auto {
1994
- @media (width >= 40rem) {
1995
- width: auto;
1996
- }
1997
- }
1998
2035
  .sm\:max-w-sm {
1999
2036
  @media (width >= 40rem) {
2000
2037
  max-width: var(--container-sm);
@@ -2010,21 +2047,6 @@
2010
2047
  grid-template-columns: repeat(3, minmax(0, 1fr));
2011
2048
  }
2012
2049
  }
2013
- .sm\:flex-row {
2014
- @media (width >= 40rem) {
2015
- flex-direction: row;
2016
- }
2017
- }
2018
- .sm\:items-center {
2019
- @media (width >= 40rem) {
2020
- align-items: center;
2021
- }
2022
- }
2023
- .sm\:justify-between {
2024
- @media (width >= 40rem) {
2025
- justify-content: space-between;
2026
- }
2027
- }
2028
2050
  .md\:block {
2029
2051
  @media (width >= 48rem) {
2030
2052
  display: block;
@@ -2045,19 +2067,9 @@
2045
2067
  grid-template-columns: repeat(2, minmax(0, 1fr));
2046
2068
  }
2047
2069
  }
2048
- .md\:flex-row {
2070
+ .md\:grid-cols-3 {
2049
2071
  @media (width >= 48rem) {
2050
- flex-direction: row;
2051
- }
2052
- }
2053
- .md\:items-start {
2054
- @media (width >= 48rem) {
2055
- align-items: flex-start;
2056
- }
2057
- }
2058
- .md\:justify-between {
2059
- @media (width >= 48rem) {
2060
- justify-content: space-between;
2072
+ grid-template-columns: repeat(3, minmax(0, 1fr));
2061
2073
  }
2062
2074
  }
2063
2075
  .md\:text-sm {
@@ -2122,39 +2134,24 @@
2122
2134
  grid-template-columns: repeat(3, minmax(0, 1fr));
2123
2135
  }
2124
2136
  }
2125
- .lg\:flex-row {
2126
- @media (width >= 64rem) {
2127
- flex-direction: row;
2128
- }
2129
- }
2130
- .lg\:items-start {
2131
- @media (width >= 64rem) {
2132
- align-items: flex-start;
2133
- }
2134
- }
2135
- .lg\:justify-between {
2136
- @media (width >= 64rem) {
2137
- justify-content: space-between;
2138
- }
2139
- }
2140
2137
  .lg\:px-4 {
2141
2138
  @media (width >= 64rem) {
2142
2139
  padding-inline: calc(var(--spacing) * 4);
2143
2140
  }
2144
2141
  }
2145
- .lg\:px-5 {
2146
- @media (width >= 64rem) {
2147
- padding-inline: calc(var(--spacing) * 5);
2142
+ .xl\:flex-row {
2143
+ @media (width >= 80rem) {
2144
+ flex-direction: row;
2148
2145
  }
2149
2146
  }
2150
- .xl\:grid-cols-4 {
2147
+ .xl\:items-start {
2151
2148
  @media (width >= 80rem) {
2152
- grid-template-columns: repeat(4, minmax(0, 1fr));
2149
+ align-items: flex-start;
2153
2150
  }
2154
2151
  }
2155
- .xl\:grid-cols-6 {
2152
+ .xl\:justify-between {
2156
2153
  @media (width >= 80rem) {
2157
- grid-template-columns: repeat(6, minmax(0, 1fr));
2154
+ justify-content: space-between;
2158
2155
  }
2159
2156
  }
2160
2157
  .dark\:border-input {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@copilotz/admin",
3
- "version": "0.9.27",
3
+ "version": "0.9.29",
4
4
  "description": "Copilotz admin dashboard components",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",