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.mjs
CHANGED
|
@@ -21050,12 +21050,12 @@ function AsyncStateCard({
|
|
|
21050
21050
|
className
|
|
21051
21051
|
}) {
|
|
21052
21052
|
const isError = type === "error";
|
|
21053
|
-
return /* @__PURE__ */ jsx(
|
|
21053
|
+
return /* @__PURE__ */ jsx(
|
|
21054
21054
|
Card_default,
|
|
21055
21055
|
{
|
|
21056
21056
|
ghost: true,
|
|
21057
21057
|
borderVariant: isError ? "danger" : "secondary",
|
|
21058
|
-
styles: cn("w-full
|
|
21058
|
+
styles: cn("w-full", className),
|
|
21059
21059
|
children: /* @__PURE__ */ jsx(CardContent_default, { children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center gap-5 px-4 py-8 text-center", children: [
|
|
21060
21060
|
/* @__PURE__ */ jsx(
|
|
21061
21061
|
"div",
|
|
@@ -21085,7 +21085,7 @@ function AsyncStateCard({
|
|
|
21085
21085
|
)
|
|
21086
21086
|
] }) })
|
|
21087
21087
|
}
|
|
21088
|
-
)
|
|
21088
|
+
);
|
|
21089
21089
|
}
|
|
21090
21090
|
var AsyncStateCard_default = React2.memo(AsyncStateCard);
|
|
21091
21091
|
|