@copilotz/admin 0.9.28 → 0.9.30

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
@@ -467,6 +467,9 @@
467
467
  .min-h-\[400px\] {
468
468
  min-height: 400px;
469
469
  }
470
+ .min-h-\[760px\] {
471
+ min-height: 760px;
472
+ }
470
473
  .min-h-svh {
471
474
  min-height: 100svh;
472
475
  }
@@ -542,9 +545,6 @@
542
545
  .max-w-80 {
543
546
  max-width: calc(var(--spacing) * 80);
544
547
  }
545
- .max-w-full {
546
- max-width: 100%;
547
- }
548
548
  .max-w-lg {
549
549
  max-width: var(--container-lg);
550
550
  }
@@ -563,12 +563,18 @@
563
563
  .min-w-\[8rem\] {
564
564
  min-width: 8rem;
565
565
  }
566
+ .min-w-\[180px\] {
567
+ min-width: 180px;
568
+ }
566
569
  .min-w-\[240px\] {
567
570
  min-width: 240px;
568
571
  }
569
572
  .min-w-\[940px\] {
570
573
  min-width: 940px;
571
574
  }
575
+ .min-w-\[min\(100\%\,520px\)\] {
576
+ min-width: min(100%, 520px);
577
+ }
572
578
  .min-w-\[var\(--radix-select-trigger-width\)\] {
573
579
  min-width: var(--radix-select-trigger-width);
574
580
  }
@@ -638,8 +644,8 @@
638
644
  .grid-rows-\[auto_auto\] {
639
645
  grid-template-rows: auto auto;
640
646
  }
641
- .grid-rows-\[auto_minmax\(0\,4fr\)_minmax\(0\,5fr\)\] {
642
- grid-template-rows: auto minmax(0,4fr) minmax(0,5fr);
647
+ .grid-rows-\[auto_minmax\(280px\,4fr\)_minmax\(260px\,5fr\)\] {
648
+ grid-template-rows: auto minmax(280px,4fr) minmax(260px,5fr);
643
649
  }
644
650
  .flex-col {
645
651
  flex-direction: column;
@@ -2047,21 +2053,6 @@
2047
2053
  grid-template-columns: repeat(3, minmax(0, 1fr));
2048
2054
  }
2049
2055
  }
2050
- .sm\:flex-row {
2051
- @media (width >= 40rem) {
2052
- flex-direction: row;
2053
- }
2054
- }
2055
- .sm\:items-center {
2056
- @media (width >= 40rem) {
2057
- align-items: center;
2058
- }
2059
- }
2060
- .sm\:justify-between {
2061
- @media (width >= 40rem) {
2062
- justify-content: space-between;
2063
- }
2064
- }
2065
2056
  .md\:block {
2066
2057
  @media (width >= 48rem) {
2067
2058
  display: block;
@@ -2087,21 +2078,6 @@
2087
2078
  grid-template-columns: repeat(3, minmax(0, 1fr));
2088
2079
  }
2089
2080
  }
2090
- .md\:flex-row {
2091
- @media (width >= 48rem) {
2092
- flex-direction: row;
2093
- }
2094
- }
2095
- .md\:items-start {
2096
- @media (width >= 48rem) {
2097
- align-items: flex-start;
2098
- }
2099
- }
2100
- .md\:justify-between {
2101
- @media (width >= 48rem) {
2102
- justify-content: space-between;
2103
- }
2104
- }
2105
2081
  .md\:text-sm {
2106
2082
  @media (width >= 48rem) {
2107
2083
  font-size: var(--text-sm);
@@ -2169,21 +2145,6 @@
2169
2145
  padding-inline: calc(var(--spacing) * 4);
2170
2146
  }
2171
2147
  }
2172
- .xl\:flex-row {
2173
- @media (width >= 80rem) {
2174
- flex-direction: row;
2175
- }
2176
- }
2177
- .xl\:items-end {
2178
- @media (width >= 80rem) {
2179
- align-items: flex-end;
2180
- }
2181
- }
2182
- .xl\:justify-between {
2183
- @media (width >= 80rem) {
2184
- justify-content: space-between;
2185
- }
2186
- }
2187
2148
  .dark\:border-input {
2188
2149
  &:is(.dark *) {
2189
2150
  border-color: var(--color-input);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@copilotz/admin",
3
- "version": "0.9.28",
3
+ "version": "0.9.30",
4
4
  "description": "Copilotz admin dashboard components",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",