qt-ui-kit 1.0.56 → 1.0.58

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.d.mts CHANGED
@@ -57,6 +57,7 @@ type EventGroup = {
57
57
  sender?: string;
58
58
  source?: string;
59
59
  subjectLine?: string;
60
+ link?: string;
60
61
  };
61
62
  type TicketComment = {
62
63
  name?: string;
@@ -230,6 +231,8 @@ interface EventSummaryParts {
230
231
  "potential impact": string;
231
232
  "potential next steps": string;
232
233
  risk: string;
234
+ summary: string;
235
+ "subject line": string;
233
236
  }
234
237
  type BaseEventFields = {
235
238
  eventID: string;
package/dist/index.d.ts CHANGED
@@ -57,6 +57,7 @@ type EventGroup = {
57
57
  sender?: string;
58
58
  source?: string;
59
59
  subjectLine?: string;
60
+ link?: string;
60
61
  };
61
62
  type TicketComment = {
62
63
  name?: string;
@@ -230,6 +231,8 @@ interface EventSummaryParts {
230
231
  "potential impact": string;
231
232
  "potential next steps": string;
232
233
  risk: string;
234
+ summary: string;
235
+ "subject line": string;
233
236
  }
234
237
  type BaseEventFields = {
235
238
  eventID: string;
package/dist/index.js CHANGED
@@ -16440,7 +16440,8 @@ function EventCard({
16440
16440
  startExpanded: i == eventData.length - 1,
16441
16441
  sender: d.sender,
16442
16442
  source: d.source,
16443
- subjectLine: d.subjectLine
16443
+ subjectLine: d.subjectLine,
16444
+ onExternal: () => window.open(d.link, "_blank")
16444
16445
  }
16445
16446
  )) : /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_jsx_runtime32.Fragment, { children: " " }) });
16446
16447
  case "ticket" /* TICKET */:
@@ -16453,7 +16454,8 @@ function EventCard({
16453
16454
  startExpanded: i == eventData.length - 1,
16454
16455
  sender: d.sender,
16455
16456
  source: d.source,
16456
- subjectLine: d.subjectLine
16457
+ subjectLine: d.subjectLine,
16458
+ onExternal: () => window.open(d.link, "_blank")
16457
16459
  }
16458
16460
  )) : /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_jsx_runtime32.Fragment, { children: " " }) });
16459
16461
  default:
@@ -16665,7 +16667,8 @@ function ChatBody({ messages }) {
16665
16667
  image: msg.image,
16666
16668
  name: msg.name,
16667
16669
  timestamp: msg.timeStamp,
16668
- emojis: msg.emojis
16670
+ emojis: msg.emojis,
16671
+ onExternal: () => window.open(msg.link, "_blank")
16669
16672
  }
16670
16673
  );
16671
16674
  }) }) });