elseware-ui 2.36.8 → 2.36.9
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.css +0 -9
- package/dist/index.css.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -21078,12 +21078,12 @@ function AsyncStateCard({
|
|
|
21078
21078
|
className
|
|
21079
21079
|
}) {
|
|
21080
21080
|
const isError = type === "error";
|
|
21081
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
21081
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
21082
21082
|
Card_default,
|
|
21083
21083
|
{
|
|
21084
21084
|
ghost: true,
|
|
21085
21085
|
borderVariant: isError ? "danger" : "secondary",
|
|
21086
|
-
styles: cn("w-full
|
|
21086
|
+
styles: cn("w-full", className),
|
|
21087
21087
|
children: /* @__PURE__ */ jsxRuntime.jsx(CardContent_default, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col items-center justify-center gap-5 px-4 py-8 text-center", children: [
|
|
21088
21088
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
21089
21089
|
"div",
|
|
@@ -21113,7 +21113,7 @@ function AsyncStateCard({
|
|
|
21113
21113
|
)
|
|
21114
21114
|
] }) })
|
|
21115
21115
|
}
|
|
21116
|
-
)
|
|
21116
|
+
);
|
|
21117
21117
|
}
|
|
21118
21118
|
var AsyncStateCard_default = React2__default.default.memo(AsyncStateCard);
|
|
21119
21119
|
|