@firecms/ui 3.0.0-canary.85 → 3.0.0-canary.86

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@firecms/ui",
3
3
  "type": "module",
4
- "version": "3.0.0-canary.85",
4
+ "version": "3.0.0-canary.86",
5
5
  "description": "Awesome Firebase/Firestore-based headless open-source CMS",
6
6
  "funding": {
7
7
  "url": "https://github.com/sponsors/firecmsco"
@@ -102,7 +102,7 @@
102
102
  "src",
103
103
  "tailwind.config.js"
104
104
  ],
105
- "gitHead": "e7ba408552dfc57dbbdb5a49ad7415f1f1381256",
105
+ "gitHead": "33cba1151b6e92dd0dd3b8ac36d428fed4f1f155",
106
106
  "publishConfig": {
107
107
  "access": "public"
108
108
  }
@@ -180,9 +180,9 @@ export function Select({
180
180
  <SelectPrimitive.Portal>
181
181
  <SelectPrimitive.Content
182
182
  position={position}
183
- className="z-50 relative overflow-y-auto max-h-[10rem] border border-slate-200 dark:border-slate-800 bg-white dark:bg-slate-800 p-2 rounded-lg shadow-lg">
183
+ className="z-50 relative overflow-hidden border border-slate-200 dark:border-slate-800 bg-white dark:bg-slate-800 p-2 rounded-lg shadow-lg">
184
184
  <SelectPrimitive.Viewport
185
- className={"p-1 overflow-y-auto max-h-[10rem]"}
185
+ className={"p-1"}
186
186
  style={{
187
187
  maxHeight: "var(--radix-select-content-available-height)"
188
188
  }}>
@@ -20,7 +20,7 @@ export function Skeleton({
20
20
  className={
21
21
  cls(
22
22
  "block",
23
- "bg-slate-200 dark:bg-slate-800 rounded",
23
+ "bg-slate-200 dark:bg-slate-800 rounded-md",
24
24
  "animate-pulse",
25
25
  "max-w-full max-h-full",
26
26
  className)