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 CHANGED
@@ -15461,8 +15461,8 @@ function PreviewCard({
15461
15461
  "div",
15462
15462
  {
15463
15463
  className: (0, import_clsx4.default)(
15464
- "flex gap-4 h-min w-[409px] bg-white rounded-3xl p-4 border-[2px] preview-card-shadow",
15465
- selected ? "bg-qtpurple-200 border-qtpurple-200" : "",
15464
+ "flex gap-4 h-min w-[409px] rounded-3xl p-4 border-[2px] preview-card-shadow",
15465
+ selected ? "bg-qtpurple-200 border-qtpurple-200" : "bg-white",
15466
15466
  !read ? "border-qtpurple-500" : "border-neutral-6"
15467
15467
  ),
15468
15468
  onClick: (e) => {
@@ -16453,7 +16453,7 @@ function ChatBubble({
16453
16453
  // src/components/organisms/message_body/chat_body.tsx
16454
16454
  var import_jsx_runtime35 = require("react/jsx-runtime");
16455
16455
  function ChatBody({ messages }) {
16456
- return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { className: "p-4 rounded-2xl w-full", children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { className: "flex flex-col place-content-center gap-4", children: messages && messages.map((msg) => {
16456
+ return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { className: "p-4 rounded-2xl w-full", children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { className: "flex flex-col place-content-center gap-4", children: messages && Array.from(messages).map((msg) => {
16457
16457
  return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
16458
16458
  ChatBubble,
16459
16459
  {