qt-ui-kit 1.0.42 → 1.0.43
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.js +7 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -15954,7 +15954,13 @@ import ReactMarkdown from "react-markdown";
|
|
|
15954
15954
|
import remarkGfm from "remark-gfm";
|
|
15955
15955
|
import { jsx as jsx31 } from "react/jsx-runtime";
|
|
15956
15956
|
function MarkdownRenderer({ content, truncated }) {
|
|
15957
|
-
return /* @__PURE__ */ jsx31(
|
|
15957
|
+
return /* @__PURE__ */ jsx31(
|
|
15958
|
+
"div",
|
|
15959
|
+
{
|
|
15960
|
+
className: clsx8("flex flex-col markdown", truncated && "line-clamp-3"),
|
|
15961
|
+
children: /* @__PURE__ */ jsx31(ReactMarkdown, { remarkPlugins: [remarkGfm], children: content })
|
|
15962
|
+
}
|
|
15963
|
+
);
|
|
15958
15964
|
}
|
|
15959
15965
|
|
|
15960
15966
|
// src/components/organisms/chat_messages/chat_bubble/chat_bubble.tsx
|