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.js
CHANGED
|
@@ -15981,7 +15981,13 @@ var import_react_markdown = __toESM(require("react-markdown"));
|
|
|
15981
15981
|
var import_remark_gfm = __toESM(require("remark-gfm"));
|
|
15982
15982
|
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
15983
15983
|
function MarkdownRenderer({ content, truncated }) {
|
|
15984
|
-
return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
15984
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
15985
|
+
"div",
|
|
15986
|
+
{
|
|
15987
|
+
className: (0, import_clsx8.default)("flex flex-col markdown", truncated && "line-clamp-3"),
|
|
15988
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(import_react_markdown.default, { remarkPlugins: [import_remark_gfm.default], children: content })
|
|
15989
|
+
}
|
|
15990
|
+
);
|
|
15985
15991
|
}
|
|
15986
15992
|
|
|
15987
15993
|
// src/components/organisms/chat_messages/chat_bubble/chat_bubble.tsx
|