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 +4 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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
|
|
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 ==
|
|
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 ==
|
|
16508
|
+
startExpanded: i == eventData.length - 1,
|
|
16509
16509
|
sender: d.sender,
|
|
16510
16510
|
source: d.source,
|
|
16511
16511
|
subjectLine: d.subjectLine,
|
|
@@ -16556,7 +16556,6 @@ function EmailBody({
|
|
|
16556
16556
|
body
|
|
16557
16557
|
}) {
|
|
16558
16558
|
const clean = DOMPurify.sanitize(body ?? "");
|
|
16559
|
-
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";
|
|
16560
16559
|
return /* @__PURE__ */ jsxs24("div", { className: "flex flex-col gap-4 bg-white p-4 rounded-b-2xl overflow-auto", children: [
|
|
16561
16560
|
/* @__PURE__ */ jsxs24("div", { className: "flex flex-col gap-0.5", children: [
|
|
16562
16561
|
/* @__PURE__ */ jsx34(MetadataRow, { metadata: [`Subject: ${subjectLine}`] }),
|
|
@@ -16649,7 +16648,7 @@ function ChatBubble({
|
|
|
16649
16648
|
"div",
|
|
16650
16649
|
{
|
|
16651
16650
|
className: clsx10(
|
|
16652
|
-
"w-full p-4 bg-
|
|
16651
|
+
"w-full p-4 bg-white rounded-t-3xl flex flex-col gap-2",
|
|
16653
16652
|
outbound ? "border-2 border-qtpurple-300" : "",
|
|
16654
16653
|
outbound ? "rounded-bl-3xl" : "rounded-br-3xl"
|
|
16655
16654
|
),
|