qt-ui-kit 1.0.41 → 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 +8 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -2
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +3 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -15888,7 +15888,7 @@ function EventCard({
|
|
|
15888
15888
|
"div",
|
|
15889
15889
|
{
|
|
15890
15890
|
className: clsx7(
|
|
15891
|
-
"flex flex-col rounded-2xl max-w-[765px] w-full h-min border-qtneutral-500 border-[2px] gap-8",
|
|
15891
|
+
"flex flex-col rounded-2xl max-w-[765px] w-full h-min max-h-full border-qtneutral-500 border-[2px] gap-8",
|
|
15892
15892
|
eventType == "message" /* MESSAGE */ ? "bg-qtneutral-200" : "bg-white py-4 pl-4 pr-2"
|
|
15893
15893
|
),
|
|
15894
15894
|
children: [
|
|
@@ -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
|