qt-ui-kit 1.0.60 → 1.0.62
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 +47 -42
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +47 -42
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +9 -6
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -15229,10 +15229,10 @@ function SenderSourceRow({
|
|
|
15229
15229
|
}) {
|
|
15230
15230
|
return /* @__PURE__ */ jsxs9("div", { className: "flex w-full place-content-between text-neutral-1 text-[14px] leading-[130%] flex-nowrap", children: [
|
|
15231
15231
|
/* @__PURE__ */ jsxs9("div", { className: "flex gap-[4px] place-items-center", children: [
|
|
15232
|
-
/* @__PURE__ */ jsx12("div", { className: "body-small-bold
|
|
15233
|
-
/* @__PURE__ */ jsx12("div", { className: "body-
|
|
15234
|
-
/* @__PURE__ */ jsx12("div", { className: "body-small-bold text-
|
|
15235
|
-
/* @__PURE__ */ jsx12("div", { className: "label-3 flex
|
|
15232
|
+
/* @__PURE__ */ jsx12("div", { className: "body-small-bold line-clamp-1", children: leftText }),
|
|
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 }),
|
|
15235
|
+
/* @__PURE__ */ jsx12("div", { className: "label-3 flex flex-nowrap", children: date && formatCustomRelative(date) })
|
|
15236
15236
|
] }),
|
|
15237
15237
|
/* @__PURE__ */ jsx12("div", { onClick, children: /* @__PURE__ */ jsx12(ExternalLink, { size: shrunk ? 16 : 24 }) })
|
|
15238
15238
|
] });
|
|
@@ -15247,7 +15247,7 @@ function SubjectLineRow({ text }) {
|
|
|
15247
15247
|
// src/components/molecules/text_content/metadata_row/metadata_row.tsx
|
|
15248
15248
|
import { jsx as jsx14, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
15249
15249
|
function MetadataRow({ metadata }) {
|
|
15250
|
-
return /* @__PURE__ */ jsxs10("div", { className: "flex
|
|
15250
|
+
return /* @__PURE__ */ jsxs10("div", { className: "flex w-full flex-wrap break-all body-small text-neutral-900 gap-2", children: [
|
|
15251
15251
|
metadata && /* @__PURE__ */ jsx14("div", { children: metadata[0] + (metadata.length == 2 ? "," : "") }),
|
|
15252
15252
|
metadata?.length == 2 && /* @__PURE__ */ jsx14("div", { children: metadata[1] })
|
|
15253
15253
|
] });
|
|
@@ -15726,26 +15726,32 @@ function PreviewCard({
|
|
|
15726
15726
|
}
|
|
15727
15727
|
)
|
|
15728
15728
|
] }),
|
|
15729
|
-
/* @__PURE__ */ jsxs14(
|
|
15730
|
-
|
|
15731
|
-
|
|
15732
|
-
|
|
15733
|
-
|
|
15734
|
-
|
|
15735
|
-
|
|
15736
|
-
|
|
15737
|
-
|
|
15738
|
-
|
|
15739
|
-
|
|
15740
|
-
|
|
15741
|
-
|
|
15742
|
-
|
|
15743
|
-
|
|
15744
|
-
|
|
15745
|
-
|
|
15746
|
-
|
|
15747
|
-
|
|
15748
|
-
|
|
15729
|
+
/* @__PURE__ */ jsxs14(
|
|
15730
|
+
"div",
|
|
15731
|
+
{
|
|
15732
|
+
className: "flex flex-col gap-2 w-full\n \n ",
|
|
15733
|
+
children: [
|
|
15734
|
+
/* @__PURE__ */ jsxs14("div", { className: "flex flex-col w-full gap-1", children: [
|
|
15735
|
+
/* @__PURE__ */ jsx21(
|
|
15736
|
+
SenderSourceRow,
|
|
15737
|
+
{
|
|
15738
|
+
leftText: sender,
|
|
15739
|
+
seperator: "via",
|
|
15740
|
+
rightText: source,
|
|
15741
|
+
date,
|
|
15742
|
+
onClick: onClickGoToSource
|
|
15743
|
+
}
|
|
15744
|
+
),
|
|
15745
|
+
subjectLine && /* @__PURE__ */ jsx21(SubjectLineRow, { text: subjectLine }),
|
|
15746
|
+
/* @__PURE__ */ jsx21(MetadataRow, { metadata })
|
|
15747
|
+
] }),
|
|
15748
|
+
body && /* @__PURE__ */ jsxs14("div", { className: "bg-white flex flex-col max-w-full w-full gap-2 wrap-anywhere rounded-2xl text-sm p-4 leading-[120%] font-normal", children: [
|
|
15749
|
+
/* @__PURE__ */ jsx21("p", { className: "line-clamp-4", children: body }),
|
|
15750
|
+
/* @__PURE__ */ jsx21(ThumbGroup, {})
|
|
15751
|
+
] })
|
|
15752
|
+
]
|
|
15753
|
+
}
|
|
15754
|
+
)
|
|
15749
15755
|
]
|
|
15750
15756
|
}
|
|
15751
15757
|
);
|
|
@@ -16329,7 +16335,8 @@ function SingleEvent({
|
|
|
16329
16335
|
source,
|
|
16330
16336
|
subjectLine,
|
|
16331
16337
|
onExternal,
|
|
16332
|
-
summary
|
|
16338
|
+
summary,
|
|
16339
|
+
urgencyExplanation
|
|
16333
16340
|
}) {
|
|
16334
16341
|
const [selected, setSelected] = useState3(false);
|
|
16335
16342
|
const [expanded, setExpanded] = useState3(false);
|
|
@@ -16380,7 +16387,14 @@ function SingleEvent({
|
|
|
16380
16387
|
] }),
|
|
16381
16388
|
expanded && /* @__PURE__ */ jsxs21(Fragment11, { children: [
|
|
16382
16389
|
/* @__PURE__ */ jsxs21("div", { children: [
|
|
16383
|
-
/* @__PURE__ */ jsx31(
|
|
16390
|
+
/* @__PURE__ */ jsx31(
|
|
16391
|
+
IntelCard,
|
|
16392
|
+
{
|
|
16393
|
+
urgencyText: urgencyExplanation,
|
|
16394
|
+
summary,
|
|
16395
|
+
urgency
|
|
16396
|
+
}
|
|
16397
|
+
),
|
|
16384
16398
|
body
|
|
16385
16399
|
] }),
|
|
16386
16400
|
/* @__PURE__ */ jsx31(BrandIcon, { service })
|
|
@@ -16409,9 +16423,10 @@ function EventCard({
|
|
|
16409
16423
|
SingleEvent,
|
|
16410
16424
|
{
|
|
16411
16425
|
urgency: d.urgency,
|
|
16426
|
+
urgencyExplanation: d.urgencyText,
|
|
16412
16427
|
service: d.service,
|
|
16413
16428
|
body: d.eventBody,
|
|
16414
|
-
startExpanded: i ==
|
|
16429
|
+
startExpanded: i == 0,
|
|
16415
16430
|
sender: d.sender,
|
|
16416
16431
|
source: d.source,
|
|
16417
16432
|
subjectLine: d.subjectLine,
|
|
@@ -16426,7 +16441,7 @@ function EventCard({
|
|
|
16426
16441
|
urgency: d.urgency,
|
|
16427
16442
|
service: d.service,
|
|
16428
16443
|
body: d.eventBody,
|
|
16429
|
-
startExpanded: i ==
|
|
16444
|
+
startExpanded: i == 0,
|
|
16430
16445
|
sender: d.sender,
|
|
16431
16446
|
source: d.source,
|
|
16432
16447
|
subjectLine: d.subjectLine,
|
|
@@ -16462,11 +16477,7 @@ function EventCard({
|
|
|
16462
16477
|
}
|
|
16463
16478
|
|
|
16464
16479
|
// src/components/organisms/message_body/email_body.tsx
|
|
16465
|
-
import DOMPurify from "dompurify";
|
|
16466
16480
|
import { jsx as jsx33, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
16467
|
-
function isHtml(content) {
|
|
16468
|
-
return /<\/?[a-z][\s\S]*>/i.test(content);
|
|
16469
|
-
}
|
|
16470
16481
|
function EmailBody({
|
|
16471
16482
|
subjectLine,
|
|
16472
16483
|
to,
|
|
@@ -16477,6 +16488,7 @@ function EmailBody({
|
|
|
16477
16488
|
attachments,
|
|
16478
16489
|
body
|
|
16479
16490
|
}) {
|
|
16491
|
+
body = "Hi Greg,\n\nJust checking in on the milestone for Project Alpha this week. We\u2019re hoping to see visible progress by Friday, per the plan. Can you confirm we\u2019re still on track?\n\nThanks so much,\nDana\n\nDirector Major Projects\nAmtryx Co.";
|
|
16480
16492
|
return /* @__PURE__ */ jsxs23("div", { className: "flex flex-col gap-4 bg-white p-4 rounded-b-2xl", children: [
|
|
16481
16493
|
/* @__PURE__ */ jsxs23("div", { className: "flex flex-col gap-0.5", children: [
|
|
16482
16494
|
/* @__PURE__ */ jsx33(MetadataRow, { metadata: [`Subject: ${subjectLine}`] }),
|
|
@@ -16488,14 +16500,7 @@ function EmailBody({
|
|
|
16488
16500
|
/* @__PURE__ */ jsx33(MetadataRow, { metadata: [`Attachments: ${attachments}`] })
|
|
16489
16501
|
] }),
|
|
16490
16502
|
/* @__PURE__ */ jsx33("hr", { className: "text-qtneutral-500" }),
|
|
16491
|
-
/* @__PURE__ */ jsx33("div", { className: "body-medium prose break-all", children: body
|
|
16492
|
-
"div",
|
|
16493
|
-
{
|
|
16494
|
-
dangerouslySetInnerHTML: {
|
|
16495
|
-
__html: DOMPurify.sanitize(body)
|
|
16496
|
-
}
|
|
16497
|
-
}
|
|
16498
|
-
) : /* @__PURE__ */ jsx33("pre", { className: "whitespace-pre-wrap", children: body }) : null })
|
|
16503
|
+
/* @__PURE__ */ jsx33("div", { className: "body-medium prose break-all", children: body && /* @__PURE__ */ jsx33("pre", { className: "whitespace-pre-wrap", children: body }) })
|
|
16499
16504
|
] });
|
|
16500
16505
|
}
|
|
16501
16506
|
|
|
@@ -16668,7 +16673,7 @@ function TicketBody({
|
|
|
16668
16673
|
description,
|
|
16669
16674
|
comments
|
|
16670
16675
|
}) {
|
|
16671
|
-
return /* @__PURE__ */ jsxs26("div", { className: "flex flex-col gap-4 bg-white p-4 rounded-b-2xl", children: [
|
|
16676
|
+
return /* @__PURE__ */ jsxs26("div", { className: "flex flex-col gap-4 bg-white p-4 rounded-b-2xl max-w-full", children: [
|
|
16672
16677
|
/* @__PURE__ */ jsxs26("div", { className: "flex flex-col gap-0.5", children: [
|
|
16673
16678
|
/* @__PURE__ */ jsx38(MetadataRow, { metadata: [`Issue: ${issueNumber}`] }),
|
|
16674
16679
|
/* @__PURE__ */ jsx38(MetadataRow, { metadata: [`Notification: ${notification}`] }),
|