elseware-ui 2.27.0 → 2.27.2
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/build/index.es.js +2 -2
- package/build/index.js +2 -2
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -3688,7 +3688,7 @@ const TitleBanner = ({ title = "Title", level = 1, rightSection, className, ...r
|
|
|
3688
3688
|
};
|
|
3689
3689
|
|
|
3690
3690
|
function Brand({ src, alt, className, ...rest }) {
|
|
3691
|
-
const content = src ? jsx("img", { src: src, alt: alt }) : "Brand";
|
|
3691
|
+
const content = src ? jsx("img", { src: src, alt: alt }) : alt || "Brand";
|
|
3692
3692
|
return (jsx("div", { ...rest, className: cn$1("inline-flex h-12", className), children: content }));
|
|
3693
3693
|
}
|
|
3694
3694
|
|
|
@@ -145339,7 +145339,7 @@ function MarkdownViewer({ value }) {
|
|
|
145339
145339
|
}, 0);
|
|
145340
145340
|
return () => clearTimeout(timeout);
|
|
145341
145341
|
}, [headings, setActiveHeading]);
|
|
145342
|
-
return (jsx("div", { className: theme === "dark" ? "dark" : "", children: jsx(MDXEditor, { markdown: markdown, readOnly: true, className: "
|
|
145342
|
+
return (jsx("div", { className: theme === "dark" ? "dark" : "", children: jsx(MDXEditor, { markdown: markdown, readOnly: true, className: "markdown-body max-w-none", plugins: [
|
|
145343
145343
|
headingsPlugin(),
|
|
145344
145344
|
linkPlugin(),
|
|
145345
145345
|
listsPlugin(),
|
package/build/index.js
CHANGED
|
@@ -3715,7 +3715,7 @@ const TitleBanner = ({ title = "Title", level = 1, rightSection, className, ...r
|
|
|
3715
3715
|
};
|
|
3716
3716
|
|
|
3717
3717
|
function Brand({ src, alt, className, ...rest }) {
|
|
3718
|
-
const content = src ? jsxRuntime.jsx("img", { src: src, alt: alt }) : "Brand";
|
|
3718
|
+
const content = src ? jsxRuntime.jsx("img", { src: src, alt: alt }) : alt || "Brand";
|
|
3719
3719
|
return (jsxRuntime.jsx("div", { ...rest, className: cn$1("inline-flex h-12", className), children: content }));
|
|
3720
3720
|
}
|
|
3721
3721
|
|
|
@@ -145366,7 +145366,7 @@ function MarkdownViewer({ value }) {
|
|
|
145366
145366
|
}, 0);
|
|
145367
145367
|
return () => clearTimeout(timeout);
|
|
145368
145368
|
}, [headings, setActiveHeading]);
|
|
145369
|
-
return (jsxRuntime.jsx("div", { className: theme === "dark" ? "dark" : "", children: jsxRuntime.jsx(MDXEditor, { markdown: markdown, readOnly: true, className: "
|
|
145369
|
+
return (jsxRuntime.jsx("div", { className: theme === "dark" ? "dark" : "", children: jsxRuntime.jsx(MDXEditor, { markdown: markdown, readOnly: true, className: "markdown-body max-w-none", plugins: [
|
|
145370
145370
|
headingsPlugin(),
|
|
145371
145371
|
linkPlugin(),
|
|
145372
145372
|
listsPlugin(),
|