@firecms/ui 3.0.0-canary.55 → 3.0.0-canary.56
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/index.es.js +17 -10
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +3 -3
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
- package/src/components/Badge.tsx +1 -1
- package/src/components/Skeleton.tsx +6 -3
package/dist/index.es.js
CHANGED
@@ -17449,7 +17449,7 @@ const je = `
|
|
17449
17449
|
color: n = "primary",
|
17450
17450
|
invisible: t = !1,
|
17451
17451
|
children: r
|
17452
|
-
}) => /* @__PURE__ */ p("div", { className: "relative inline-block", children: [
|
17452
|
+
}) => /* @__PURE__ */ p("div", { className: "relative inline-block w-fit", children: [
|
17453
17453
|
r,
|
17454
17454
|
/* @__PURE__ */ e(
|
17455
17455
|
"span",
|
@@ -17485,15 +17485,22 @@ function ntn({
|
|
17485
17485
|
height: t,
|
17486
17486
|
className: r
|
17487
17487
|
}) {
|
17488
|
-
return /* @__PURE__ */ e(
|
17489
|
-
"
|
17490
|
-
|
17491
|
-
|
17492
|
-
|
17493
|
-
|
17494
|
-
|
17495
|
-
|
17496
|
-
|
17488
|
+
return /* @__PURE__ */ e(
|
17489
|
+
"span",
|
17490
|
+
{
|
17491
|
+
style: {
|
17492
|
+
width: n ? `${n}px` : "100%",
|
17493
|
+
height: t ? `${t}px` : "12px"
|
17494
|
+
},
|
17495
|
+
className: _(
|
17496
|
+
"block",
|
17497
|
+
"bg-slate-200 dark:bg-slate-800 rounded",
|
17498
|
+
"animate-pulse",
|
17499
|
+
"max-w-full max-h-full",
|
17500
|
+
r
|
17501
|
+
)
|
17502
|
+
}
|
17503
|
+
);
|
17497
17504
|
}
|
17498
17505
|
export {
|
17499
17506
|
Pt as AbcIcon,
|