qt-ui-kit 1.0.58 → 1.0.60
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 +7 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -16355,7 +16355,8 @@ function SingleEvent({
|
|
|
16355
16355
|
sender,
|
|
16356
16356
|
source,
|
|
16357
16357
|
subjectLine,
|
|
16358
|
-
onExternal
|
|
16358
|
+
onExternal,
|
|
16359
|
+
summary
|
|
16359
16360
|
}) {
|
|
16360
16361
|
const [selected, setSelected] = (0, import_react3.useState)(false);
|
|
16361
16362
|
const [expanded, setExpanded] = (0, import_react3.useState)(false);
|
|
@@ -16406,7 +16407,7 @@ function SingleEvent({
|
|
|
16406
16407
|
] }),
|
|
16407
16408
|
expanded && /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(import_jsx_runtime31.Fragment, { children: [
|
|
16408
16409
|
/* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("div", { children: [
|
|
16409
|
-
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)(IntelCard, { summary
|
|
16410
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)(IntelCard, { summary, urgency }),
|
|
16410
16411
|
body
|
|
16411
16412
|
] }),
|
|
16412
16413
|
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)(BrandIcon, { service })
|
|
@@ -16441,7 +16442,8 @@ function EventCard({
|
|
|
16441
16442
|
sender: d.sender,
|
|
16442
16443
|
source: d.source,
|
|
16443
16444
|
subjectLine: d.subjectLine,
|
|
16444
|
-
onExternal: () => window.open(d.link, "_blank")
|
|
16445
|
+
onExternal: () => window.open(d.link, "_blank"),
|
|
16446
|
+
summary: d.summary
|
|
16445
16447
|
}
|
|
16446
16448
|
)) : /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_jsx_runtime32.Fragment, { children: " " }) });
|
|
16447
16449
|
case "ticket" /* TICKET */:
|
|
@@ -16455,7 +16457,8 @@ function EventCard({
|
|
|
16455
16457
|
sender: d.sender,
|
|
16456
16458
|
source: d.source,
|
|
16457
16459
|
subjectLine: d.subjectLine,
|
|
16458
|
-
onExternal: () => window.open(d.link, "_blank")
|
|
16460
|
+
onExternal: () => window.open(d.link, "_blank"),
|
|
16461
|
+
summary: d.summary
|
|
16459
16462
|
}
|
|
16460
16463
|
)) : /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_jsx_runtime32.Fragment, { children: " " }) });
|
|
16461
16464
|
default:
|