qt-ui-kit 1.0.76 → 1.0.77

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.mjs CHANGED
@@ -15231,7 +15231,7 @@ function SenderSourceRow({
15231
15231
  /* @__PURE__ */ jsxs9("div", { className: "flex gap-[4px] place-items-center", children: [
15232
15232
  /* @__PURE__ */ jsx12("div", { className: "body-small-bold break-all line-clamp-1", children: leftText }),
15233
15233
  /* @__PURE__ */ jsx12("div", { className: "body-smal text-center", children: seperator }),
15234
- /* @__PURE__ */ jsx12("div", { className: "body-small-bold text-center line-clamp-1", children: rightText }),
15234
+ /* @__PURE__ */ jsx12("div", { className: "body-small-bold text-center", children: rightText }),
15235
15235
  /* @__PURE__ */ jsx12("div", { className: "label-3 flex", children: date && formatCustomRelative(date) })
15236
15236
  ] }),
15237
15237
  /* @__PURE__ */ jsx12("div", { onClick, children: /* @__PURE__ */ jsx12(ExternalLink, { size: shrunk ? 16 : 24 }) })
@@ -16489,7 +16489,7 @@ function EventCard({
16489
16489
  urgencyExplanation: d.urgencyText,
16490
16490
  service: d.service,
16491
16491
  body: d.eventBody,
16492
- startExpanded: i == 0,
16492
+ startExpanded: i == eventData.length - 1,
16493
16493
  sender: d.sender,
16494
16494
  source: d.source,
16495
16495
  subjectLine: d.subjectLine,
@@ -16505,7 +16505,7 @@ function EventCard({
16505
16505
  urgency: d.urgency,
16506
16506
  service: d.service,
16507
16507
  body: d.eventBody,
16508
- startExpanded: i == 0,
16508
+ startExpanded: i == eventData.length - 1,
16509
16509
  sender: d.sender,
16510
16510
  source: d.source,
16511
16511
  subjectLine: d.subjectLine,
@@ -16648,7 +16648,7 @@ function ChatBubble({
16648
16648
  "div",
16649
16649
  {
16650
16650
  className: clsx10(
16651
- "w-full p-4 bg-qtneutral-100 rounded-t-3xl flex flex-col gap-2",
16651
+ "w-full p-4 bg-white rounded-t-3xl flex flex-col gap-2",
16652
16652
  outbound ? "border-2 border-qtpurple-300" : "",
16653
16653
  outbound ? "rounded-bl-3xl" : "rounded-br-3xl"
16654
16654
  ),