qt-ui-kit 1.0.82 → 1.0.84
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 +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
|
@@ -15434,8 +15434,8 @@ function PreviewCard({
|
|
|
15434
15434
|
"div",
|
|
15435
15435
|
{
|
|
15436
15436
|
className: clsx4(
|
|
15437
|
-
"flex gap-4 h-min w-[409px]
|
|
15438
|
-
selected ? "bg-qtpurple-200 border-qtpurple-200" : "",
|
|
15437
|
+
"flex gap-4 h-min w-[409px] rounded-3xl p-4 border-[2px] preview-card-shadow",
|
|
15438
|
+
selected ? "bg-qtpurple-200 border-qtpurple-200" : "bg-white",
|
|
15439
15439
|
!read ? "border-qtpurple-500" : "border-neutral-6"
|
|
15440
15440
|
),
|
|
15441
15441
|
onClick: (e) => {
|
|
@@ -16426,7 +16426,7 @@ function ChatBubble({
|
|
|
16426
16426
|
// src/components/organisms/message_body/chat_body.tsx
|
|
16427
16427
|
import { jsx as jsx35 } from "react/jsx-runtime";
|
|
16428
16428
|
function ChatBody({ messages }) {
|
|
16429
|
-
return /* @__PURE__ */ jsx35("div", { className: "p-4 rounded-2xl w-full", children: /* @__PURE__ */ jsx35("div", { className: "flex flex-col place-content-center gap-4", children: messages && messages.map((msg) => {
|
|
16429
|
+
return /* @__PURE__ */ jsx35("div", { className: "p-4 rounded-2xl w-full", children: /* @__PURE__ */ jsx35("div", { className: "flex flex-col place-content-center gap-4", children: messages && Array.from(messages).map((msg) => {
|
|
16430
16430
|
return /* @__PURE__ */ jsx35(
|
|
16431
16431
|
ChatBubble,
|
|
16432
16432
|
{
|