qt-ui-kit 1.0.75 → 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.js CHANGED
@@ -15258,7 +15258,7 @@ function SenderSourceRow({
15258
15258
  /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "flex gap-[4px] place-items-center", children: [
15259
15259
  /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "body-small-bold break-all line-clamp-1", children: leftText }),
15260
15260
  /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "body-smal text-center", children: seperator }),
15261
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "body-small-bold text-center line-clamp-1", children: rightText }),
15261
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "body-small-bold text-center", children: rightText }),
15262
15262
  /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "label-3 flex", children: date && formatCustomRelative(date) })
15263
15263
  ] }),
15264
15264
  /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { onClick, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(ExternalLink, { size: shrunk ? 16 : 24 }) })
@@ -16516,7 +16516,7 @@ function EventCard({
16516
16516
  urgencyExplanation: d.urgencyText,
16517
16517
  service: d.service,
16518
16518
  body: d.eventBody,
16519
- startExpanded: i == 0,
16519
+ startExpanded: i == eventData.length - 1,
16520
16520
  sender: d.sender,
16521
16521
  source: d.source,
16522
16522
  subjectLine: d.subjectLine,
@@ -16532,7 +16532,7 @@ function EventCard({
16532
16532
  urgency: d.urgency,
16533
16533
  service: d.service,
16534
16534
  body: d.eventBody,
16535
- startExpanded: i == 0,
16535
+ startExpanded: i == eventData.length - 1,
16536
16536
  sender: d.sender,
16537
16537
  source: d.source,
16538
16538
  subjectLine: d.subjectLine,
@@ -16583,7 +16583,6 @@ function EmailBody({
16583
16583
  body
16584
16584
  }) {
16585
16585
  const clean = import_dompurify.default.sanitize(body ?? "");
16586
- body = "Alex \u2014 this is getting flagged higher up. Please send me a status update on Project Alpha ASAP so I can respond accordingly.\n\n\u2014 Greg";
16587
16586
  return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("div", { className: "flex flex-col gap-4 bg-white p-4 rounded-b-2xl overflow-auto", children: [
16588
16587
  /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("div", { className: "flex flex-col gap-0.5", children: [
16589
16588
  /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(MetadataRow, { metadata: [`Subject: ${subjectLine}`] }),
@@ -16676,7 +16675,7 @@ function ChatBubble({
16676
16675
  "div",
16677
16676
  {
16678
16677
  className: (0, import_clsx10.default)(
16679
- "w-full p-4 bg-qtneutral-100 rounded-t-3xl flex flex-col gap-2",
16678
+ "w-full p-4 bg-white rounded-t-3xl flex flex-col gap-2",
16680
16679
  outbound ? "border-2 border-qtpurple-300" : "",
16681
16680
  outbound ? "rounded-bl-3xl" : "rounded-br-3xl"
16682
16681
  ),