qt-ui-kit 1.0.56 → 1.0.57

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.mjs CHANGED
@@ -16413,7 +16413,8 @@ function EventCard({
16413
16413
  startExpanded: i == eventData.length - 1,
16414
16414
  sender: d.sender,
16415
16415
  source: d.source,
16416
- subjectLine: d.subjectLine
16416
+ subjectLine: d.subjectLine,
16417
+ onExternal: () => window.open(d.link, "_blank")
16417
16418
  }
16418
16419
  )) : /* @__PURE__ */ jsx32(Fragment12, { children: " " }) });
16419
16420
  case "ticket" /* TICKET */:
@@ -16426,7 +16427,8 @@ function EventCard({
16426
16427
  startExpanded: i == eventData.length - 1,
16427
16428
  sender: d.sender,
16428
16429
  source: d.source,
16429
- subjectLine: d.subjectLine
16430
+ subjectLine: d.subjectLine,
16431
+ onExternal: () => window.open(d.link, "_blank")
16430
16432
  }
16431
16433
  )) : /* @__PURE__ */ jsx32(Fragment12, { children: " " }) });
16432
16434
  default:
@@ -16638,7 +16640,8 @@ function ChatBody({ messages }) {
16638
16640
  image: msg.image,
16639
16641
  name: msg.name,
16640
16642
  timestamp: msg.timeStamp,
16641
- emojis: msg.emojis
16643
+ emojis: msg.emojis,
16644
+ onExternal: () => window.open(msg.link, "_blank")
16642
16645
  }
16643
16646
  );
16644
16647
  }) }) });