qt-ui-kit 1.0.16 → 1.0.18

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 CHANGED
@@ -13094,7 +13094,6 @@ function SlackIcon({
13094
13094
  // src/components/atoms/icons/brand_icons/brand_icon.tsx
13095
13095
  var import_jsx_runtime7 = require("react/jsx-runtime");
13096
13096
  function BrandIcon({ size = 24, className, service }) {
13097
- console.log("ser", service);
13098
13097
  function getBrandIcon(service2, size2) {
13099
13098
  switch (service2) {
13100
13099
  case "slack" /* SLACK */:
@@ -14941,7 +14940,7 @@ function MetadataRow({ metadata }) {
14941
14940
  }
14942
14941
 
14943
14942
  // src/components/organisms/preview_card/preview_card.tsx
14944
- var import_clsx4 = __toESM(require("clsx"));
14943
+ var import_clsx5 = __toESM(require("clsx"));
14945
14944
 
14946
14945
  // src/components/molecules/checkboxes/main_checkbox/secondary_checkbox.tsx
14947
14946
  var import_clsx2 = __toESM(require("clsx"));
@@ -15113,8 +15112,17 @@ function CategoryIconButton({ icon, label, active }) {
15113
15112
  );
15114
15113
  }
15115
15114
 
15116
- // src/components/organisms/preview_card/preview_card.tsx
15115
+ // src/util/utilcomponents.tsx
15116
+ var import_clsx4 = __toESM(require("clsx"));
15117
+ var import_react_markdown = __toESM(require("react-markdown"));
15118
+ var import_remark_gfm = __toESM(require("remark-gfm"));
15117
15119
  var import_jsx_runtime17 = require("react/jsx-runtime");
15120
+ function MarkdownRenderer({ content, truncated }) {
15121
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: (0, import_clsx4.default)("flex markdown", truncated && "line-clamp-3"), children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(import_react_markdown.default, { remarkPlugins: [import_remark_gfm.default], children: content }) });
15122
+ }
15123
+
15124
+ // src/components/organisms/preview_card/preview_card.tsx
15125
+ var import_jsx_runtime18 = require("react/jsx-runtime");
15118
15126
  function PreviewCard({
15119
15127
  onRead,
15120
15128
  onSelected,
@@ -15168,10 +15176,10 @@ function PreviewCard({
15168
15176
  return void 0;
15169
15177
  }
15170
15178
  }
15171
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
15179
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
15172
15180
  "div",
15173
15181
  {
15174
- className: (0, import_clsx4.default)(
15182
+ className: (0, import_clsx5.default)(
15175
15183
  "flex gap-4 h-min w-[409px] bg-neutral-6 rounded-3xl p-4 border-[2px] preview-card-shadow",
15176
15184
  selected ? "bg-qtpurple-200 border-qtpurple-200" : "",
15177
15185
  !read ? "border-qtpurple-500" : "border-neutral-6"
@@ -15184,16 +15192,16 @@ function PreviewCard({
15184
15192
  }
15185
15193
  },
15186
15194
  children: [
15187
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "flex flex-col gap-4 place-items-center", children: [
15188
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
15195
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "flex flex-col gap-4 place-items-center", children: [
15196
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15189
15197
  SecondaryCheckBox,
15190
15198
  {
15191
15199
  active: checked,
15192
15200
  onClick: () => setChecked(!checked)
15193
15201
  }
15194
15202
  ),
15195
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(BrandIcon, { service, size: 24 }),
15196
- urgencyLevel && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
15203
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(BrandIcon, { service, size: 24 }),
15204
+ urgencyLevel && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15197
15205
  CategoryIconButton,
15198
15206
  {
15199
15207
  active: true,
@@ -15203,7 +15211,7 @@ function PreviewCard({
15203
15211
  )
15204
15212
  }
15205
15213
  ),
15206
- alert && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
15214
+ alert && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15207
15215
  CategoryIconButton,
15208
15216
  {
15209
15217
  active: true,
@@ -15211,9 +15219,9 @@ function PreviewCard({
15211
15219
  }
15212
15220
  )
15213
15221
  ] }),
15214
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "flex flex-col gap-2", children: [
15215
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "flex flex-col ", children: [
15216
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
15222
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "flex flex-col gap-2", children: [
15223
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "flex flex-col ", children: [
15224
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15217
15225
  SenderSourceRow,
15218
15226
  {
15219
15227
  leftText: sender,
@@ -15223,10 +15231,10 @@ function PreviewCard({
15223
15231
  onClick: onClickGoToSource
15224
15232
  }
15225
15233
  ),
15226
- subjectLine && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(SubjectLineRow, { text: subjectLine }),
15227
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(MetadataRow, { metadata })
15234
+ subjectLine && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(SubjectLineRow, { text: subjectLine }),
15235
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(MetadataRow, { metadata })
15228
15236
  ] }),
15229
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "bg-white flex flex-none flex-col gap-2 h-[136px] rounded-2xl text-sm p-4 leading-[120%] font-normal", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { className: "line-clamp-6", children: body }) })
15237
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "bg-white flex flex-none flex-col gap-2 h-[136px] rounded-2xl text-sm p-4 leading-[120%] font-normal debug", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(MarkdownRenderer, { content: body || "", truncated: true }) })
15230
15238
  ] })
15231
15239
  ]
15232
15240
  }
@@ -15234,7 +15242,7 @@ function PreviewCard({
15234
15242
  }
15235
15243
 
15236
15244
  // src/components/atoms/icons/base_icons/Gear.tsx
15237
- var import_jsx_runtime18 = require("react/jsx-runtime");
15245
+ var import_jsx_runtime19 = require("react/jsx-runtime");
15238
15246
  function Gear({
15239
15247
  size = 24,
15240
15248
  color = "#1D1D1F",
@@ -15245,8 +15253,8 @@ function Gear({
15245
15253
  case 16:
15246
15254
  return {
15247
15255
  viewBox: "0 0 16 16",
15248
- path: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_jsx_runtime18.Fragment, { children: [
15249
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15256
+ path: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(import_jsx_runtime19.Fragment, { children: [
15257
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15250
15258
  "path",
15251
15259
  {
15252
15260
  d: "M6.88309 2.87821C7.16735 1.70726 8.83265 1.70726 9.11692 2.87821C9.30055 3.63462 10.1672 3.99358 10.8319 3.58857C11.8609 2.96159 13.0384 4.13914 12.4114 5.16812C12.0064 5.83284 12.3654 6.69945 13.1218 6.88308C14.2927 7.16735 14.2927 8.83265 13.1218 9.11692C12.3654 9.30055 12.0064 10.1672 12.4114 10.8319C13.0384 11.8609 11.8609 13.0384 10.8319 12.4114C10.1672 12.0064 9.30055 12.3654 9.11692 13.1218C8.83265 14.2927 7.16735 14.2927 6.88309 13.1218C6.69945 12.3654 5.83284 12.0064 5.16812 12.4114C4.13914 13.0384 2.96159 11.8609 3.58857 10.8319C3.99358 10.1672 3.63462 9.30055 2.87821 9.11692C1.70726 8.83265 1.70726 7.16735 2.87821 6.88308C3.63462 6.69945 3.99358 5.83284 3.58857 5.16812C2.96159 4.13914 4.13914 2.96159 5.16812 3.58857C5.83284 3.99358 6.69945 3.63462 6.88309 2.87821Z",
@@ -15256,7 +15264,7 @@ function Gear({
15256
15264
  "stroke-linejoin": "round"
15257
15265
  }
15258
15266
  ),
15259
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15267
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15260
15268
  "path",
15261
15269
  {
15262
15270
  d: "M10 8C10 9.10457 9.10457 10 8 10C6.89543 10 6 9.10457 6 8C6 6.89543 6.89543 6 8 6C9.10457 6 10 6.89543 10 8Z",
@@ -15271,8 +15279,8 @@ function Gear({
15271
15279
  case 20:
15272
15280
  return {
15273
15281
  viewBox: "0 0 20 20",
15274
- path: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_jsx_runtime18.Fragment, { children: [
15275
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15282
+ path: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(import_jsx_runtime19.Fragment, { children: [
15283
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15276
15284
  "path",
15277
15285
  {
15278
15286
  d: "M8.60386 3.59776C8.95919 2.13408 11.0408 2.13408 11.3961 3.59776C11.6257 4.54327 12.709 4.99198 13.5398 4.48571C14.8261 3.70199 16.298 5.17392 15.5143 6.46015C15.008 7.29105 15.4567 8.37431 16.4022 8.60386C17.8659 8.95919 17.8659 11.0408 16.4022 11.3961C15.4567 11.6257 15.008 12.709 15.5143 13.5398C16.298 14.8261 14.8261 16.298 13.5398 15.5143C12.709 15.008 11.6257 15.4567 11.3961 16.4022C11.0408 17.8659 8.95919 17.8659 8.60386 16.4022C8.37431 15.4567 7.29105 15.008 6.46016 15.5143C5.17392 16.298 3.70199 14.8261 4.48571 13.5398C4.99198 12.709 4.54327 11.6257 3.59776 11.3961C2.13408 11.0408 2.13408 8.95919 3.59776 8.60386C4.54327 8.37431 4.99198 7.29105 4.48571 6.46015C3.70199 5.17392 5.17392 3.70199 6.46015 4.48571C7.29105 4.99198 8.37431 4.54327 8.60386 3.59776Z",
@@ -15282,7 +15290,7 @@ function Gear({
15282
15290
  "stroke-linejoin": "round"
15283
15291
  }
15284
15292
  ),
15285
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15293
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15286
15294
  "path",
15287
15295
  {
15288
15296
  d: "M12.5 10C12.5 11.3807 11.3807 12.5 10 12.5C8.61929 12.5 7.5 11.3807 7.5 10C7.5 8.61929 8.61929 7.5 10 7.5C11.3807 7.5 12.5 8.61929 12.5 10Z",
@@ -15297,8 +15305,8 @@ function Gear({
15297
15305
  case 24:
15298
15306
  return {
15299
15307
  viewBox: "0 0 24 24",
15300
- path: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_jsx_runtime18.Fragment, { children: [
15301
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15308
+ path: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(import_jsx_runtime19.Fragment, { children: [
15309
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15302
15310
  "path",
15303
15311
  {
15304
15312
  d: "M10.3246 4.31731C10.751 2.5609 13.249 2.5609 13.6754 4.31731C13.9508 5.45193 15.2507 5.99038 16.2478 5.38285C17.7913 4.44239 19.5576 6.2087 18.6172 7.75218C18.0096 8.74925 18.5481 10.0492 19.6827 10.3246C21.4391 10.751 21.4391 13.249 19.6827 13.6754C18.5481 13.9508 18.0096 15.2507 18.6172 16.2478C19.5576 17.7913 17.7913 19.5576 16.2478 18.6172C15.2507 18.0096 13.9508 18.5481 13.6754 19.6827C13.249 21.4391 10.751 21.4391 10.3246 19.6827C10.0492 18.5481 8.74926 18.0096 7.75219 18.6172C6.2087 19.5576 4.44239 17.7913 5.38285 16.2478C5.99038 15.2507 5.45193 13.9508 4.31731 13.6754C2.5609 13.249 2.5609 10.751 4.31731 10.3246C5.45193 10.0492 5.99037 8.74926 5.38285 7.75218C4.44239 6.2087 6.2087 4.44239 7.75219 5.38285C8.74926 5.99037 10.0492 5.45193 10.3246 4.31731Z",
@@ -15308,7 +15316,7 @@ function Gear({
15308
15316
  "stroke-linejoin": "round"
15309
15317
  }
15310
15318
  ),
15311
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15319
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15312
15320
  "path",
15313
15321
  {
15314
15322
  d: "M15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12Z",
@@ -15323,8 +15331,8 @@ function Gear({
15323
15331
  case 36:
15324
15332
  return {
15325
15333
  viewBox: "0 0 36 36",
15326
- path: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_jsx_runtime18.Fragment, { children: [
15327
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15334
+ path: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(import_jsx_runtime19.Fragment, { children: [
15335
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15328
15336
  "path",
15329
15337
  {
15330
15338
  d: "M15.4869 6.47596C16.1265 3.84134 19.8735 3.84135 20.5131 6.47596C20.9262 8.17789 22.8761 8.98556 24.3717 8.07427C26.6869 6.66359 29.3364 9.31305 27.9257 11.6283C27.0144 13.1239 27.8221 15.0738 29.524 15.4869C32.1587 16.1265 32.1587 19.8735 29.524 20.5131C27.8221 20.9262 27.0144 22.8761 27.9257 24.3717C29.3364 26.6869 26.6869 29.3364 24.3717 27.9257C22.8761 27.0144 20.9262 27.8221 20.5131 29.524C19.8735 32.1587 16.1265 32.1587 15.4869 29.524C15.0738 27.8221 13.1239 27.0144 11.6283 27.9257C9.31306 29.3364 6.66359 26.6869 8.07428 24.3717C8.98556 22.8761 8.17789 20.9262 6.47596 20.5131C3.84135 19.8735 3.84134 16.1265 6.47596 15.4869C8.17789 15.0738 8.98556 13.1239 8.07427 11.6283C6.66358 9.31305 9.31305 6.66358 11.6283 8.07427C13.1239 8.98556 15.0738 8.17789 15.4869 6.47596Z",
@@ -15334,7 +15342,7 @@ function Gear({
15334
15342
  "stroke-linejoin": "round"
15335
15343
  }
15336
15344
  ),
15337
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15345
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15338
15346
  "path",
15339
15347
  {
15340
15348
  d: "M22.5 18C22.5 20.4853 20.4853 22.5 18 22.5C15.5147 22.5 13.5 20.4853 13.5 18C13.5 15.5147 15.5147 13.5 18 13.5C20.4853 13.5 22.5 15.5147 22.5 18Z",
@@ -15349,7 +15357,7 @@ function Gear({
15349
15357
  }
15350
15358
  };
15351
15359
  const { viewBox, path } = getIconData();
15352
- return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15360
+ return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15353
15361
  "svg",
15354
15362
  {
15355
15363
  width: size,
@@ -15363,7 +15371,7 @@ function Gear({
15363
15371
  }
15364
15372
 
15365
15373
  // src/components/atoms/icons/base_icons/Logout.tsx
15366
- var import_jsx_runtime19 = require("react/jsx-runtime");
15374
+ var import_jsx_runtime20 = require("react/jsx-runtime");
15367
15375
  function Logout({
15368
15376
  size = 24,
15369
15377
  color = "#1D1D1F",
@@ -15374,27 +15382,27 @@ function Logout({
15374
15382
  case 16:
15375
15383
  return {
15376
15384
  viewBox: "0 0 16 16",
15377
- path: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M11.3333 10.6666L14 7.99996M14 7.99996L11.3333 5.33329M14 7.99996L4.66667 7.99996M8.66667 10.6666V11.3333C8.66667 12.4379 7.77124 13.3333 6.66667 13.3333H4C2.89543 13.3333 2 12.4379 2 11.3333V4.66663C2 3.56206 2.89543 2.66663 4 2.66663H6.66667C7.77124 2.66663 8.66667 3.56206 8.66667 4.66663V5.33329", stroke: color, "stroke-width": "1.25", "stroke-linecap": "round", "stroke-linejoin": "round" })
15385
+ path: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M11.3333 10.6666L14 7.99996M14 7.99996L11.3333 5.33329M14 7.99996L4.66667 7.99996M8.66667 10.6666V11.3333C8.66667 12.4379 7.77124 13.3333 6.66667 13.3333H4C2.89543 13.3333 2 12.4379 2 11.3333V4.66663C2 3.56206 2.89543 2.66663 4 2.66663H6.66667C7.77124 2.66663 8.66667 3.56206 8.66667 4.66663V5.33329", stroke: color, "stroke-width": "1.25", "stroke-linecap": "round", "stroke-linejoin": "round" })
15378
15386
  };
15379
15387
  case 20:
15380
15388
  return {
15381
15389
  viewBox: "0 0 20 20",
15382
- path: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M14.1667 13.3334L17.5 10M17.5 10L14.1667 6.66671M17.5 10L5.83333 10M10.8333 13.3334V14.1667C10.8333 15.5474 9.71405 16.6667 8.33333 16.6667H5C3.61929 16.6667 2.5 15.5474 2.5 14.1667V5.83337C2.5 4.45266 3.61929 3.33337 5 3.33337H8.33333C9.71405 3.33337 10.8333 4.45266 10.8333 5.83337V6.66671", stroke: color, "stroke-width": "1.5", "stroke-linecap": "round", "stroke-linejoin": "round" })
15390
+ path: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M14.1667 13.3334L17.5 10M17.5 10L14.1667 6.66671M17.5 10L5.83333 10M10.8333 13.3334V14.1667C10.8333 15.5474 9.71405 16.6667 8.33333 16.6667H5C3.61929 16.6667 2.5 15.5474 2.5 14.1667V5.83337C2.5 4.45266 3.61929 3.33337 5 3.33337H8.33333C9.71405 3.33337 10.8333 4.45266 10.8333 5.83337V6.66671", stroke: color, "stroke-width": "1.5", "stroke-linecap": "round", "stroke-linejoin": "round" })
15383
15391
  };
15384
15392
  case 24:
15385
15393
  return {
15386
15394
  viewBox: "0 0 24 24",
15387
- path: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M17 16L21 12M21 12L17 8M21 12L7 12M13 16V17C13 18.6569 11.6569 20 10 20H6C4.34315 20 3 18.6569 3 17V7C3 5.34315 4.34315 4 6 4H10C11.6569 4 13 5.34315 13 7V8", stroke: color, "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round" })
15395
+ path: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M17 16L21 12M21 12L17 8M21 12L7 12M13 16V17C13 18.6569 11.6569 20 10 20H6C4.34315 20 3 18.6569 3 17V7C3 5.34315 4.34315 4 6 4H10C11.6569 4 13 5.34315 13 7V8", stroke: color, "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round" })
15388
15396
  };
15389
15397
  case 36:
15390
15398
  return {
15391
15399
  viewBox: "0 0 36 36",
15392
- path: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M25.5 24L31.5 18M31.5 18L25.5 12M31.5 18L10.5 18M19.5 24V25.5C19.5 27.9853 17.4853 30 15 30H9C6.51472 30 4.5 27.9853 4.5 25.5V10.5C4.5 8.01472 6.51472 6 9 6H15C17.4853 6 19.5 8.01472 19.5 10.5V12", stroke: color, "stroke-width": "2.25", "stroke-linecap": "round", "stroke-linejoin": "round" })
15400
+ path: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M25.5 24L31.5 18M31.5 18L25.5 12M31.5 18L10.5 18M19.5 24V25.5C19.5 27.9853 17.4853 30 15 30H9C6.51472 30 4.5 27.9853 4.5 25.5V10.5C4.5 8.01472 6.51472 6 9 6H15C17.4853 6 19.5 8.01472 19.5 10.5V12", stroke: color, "stroke-width": "2.25", "stroke-linecap": "round", "stroke-linejoin": "round" })
15393
15401
  };
15394
15402
  }
15395
15403
  };
15396
15404
  const { viewBox, path } = getIconData();
15397
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15405
+ return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15398
15406
  "svg",
15399
15407
  {
15400
15408
  width: size,
@@ -15408,7 +15416,7 @@ function Logout({
15408
15416
  }
15409
15417
 
15410
15418
  // src/components/atoms/icons/base_icons/Queue.tsx
15411
- var import_jsx_runtime20 = require("react/jsx-runtime");
15419
+ var import_jsx_runtime21 = require("react/jsx-runtime");
15412
15420
  function Queue({
15413
15421
  size = 24,
15414
15422
  color = "#1D1D1F",
@@ -15419,8 +15427,8 @@ function Queue({
15419
15427
  case 16:
15420
15428
  return {
15421
15429
  viewBox: "0 0 16 16",
15422
- path: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_jsx_runtime20.Fragment, { children: [
15423
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15430
+ path: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_jsx_runtime21.Fragment, { children: [
15431
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15424
15432
  "path",
15425
15433
  {
15426
15434
  d: "M6.86628 11.4002H5.73294C5.10702 11.4002 4.59961 10.8928 4.59961 10.2669V5.73355C4.59961 5.10763 5.10702 4.60022 5.73294 4.60022H10.2663C10.8922 4.60022 11.3996 5.10763 11.3996 5.73355V6.86689M7.99961 13.6669H12.5329C13.1589 13.6669 13.6663 13.1595 13.6663 12.5336V8.00022C13.6663 7.3743 13.1589 6.86689 12.5329 6.86689H7.99961C7.37369 6.86689 6.86628 7.3743 6.86628 8.00022V12.5336C6.86628 13.1595 7.37369 13.6669 7.99961 13.6669Z",
@@ -15430,7 +15438,7 @@ function Queue({
15430
15438
  "stroke-linejoin": "round"
15431
15439
  }
15432
15440
  ),
15433
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15441
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15434
15442
  "path",
15435
15443
  {
15436
15444
  d: "M4.59967 9.13325H3.46634C2.84042 9.13325 2.33301 8.62584 2.33301 7.99992V3.46659C2.33301 2.84066 2.84042 2.33325 3.46634 2.33325H7.99967C8.6256 2.33325 9.13301 2.84066 9.13301 3.46659V4.59992M11.4626 6.74066L11.3997 5.73325C11.3997 5.10733 10.8923 4.59992 10.2663 4.59992H5.73301C5.10709 4.59992 4.59967 5.10733 4.59967 5.73325V10.2666C4.59967 10.8925 5.10709 11.3999 5.73301 11.3999H6.74042",
@@ -15440,7 +15448,7 @@ function Queue({
15440
15448
  "stroke-linejoin": "round"
15441
15449
  }
15442
15450
  ),
15443
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15451
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15444
15452
  "path",
15445
15453
  {
15446
15454
  d: "M6.86621 7.99918C6.86621 7.37326 7.37362 6.86584 7.99954 6.86584H12.5329C13.1588 6.86584 13.6662 7.37326 13.6662 7.99918V12.5325C13.6662 13.1584 13.1588 13.6658 12.5329 13.6658H7.99954C7.37362 13.6658 6.86621 13.1584 6.86621 12.5325V7.99918Z",
@@ -15455,8 +15463,8 @@ function Queue({
15455
15463
  case 20:
15456
15464
  return {
15457
15465
  viewBox: "0 0 20 20",
15458
- path: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_jsx_runtime20.Fragment, { children: [
15459
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15466
+ path: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_jsx_runtime21.Fragment, { children: [
15467
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15460
15468
  "path",
15461
15469
  {
15462
15470
  d: "M8.58333 14.2501H7.16667C6.38426 14.2501 5.75 13.6159 5.75 12.8335V7.16679C5.75 6.38439 6.38426 5.75012 7.16667 5.75012H12.8333C13.6157 5.75012 14.25 6.38439 14.25 7.16679V8.58346M10 17.0835H15.6667C16.4491 17.0835 17.0833 16.4492 17.0833 15.6668V10.0001C17.0833 9.21772 16.4491 8.58346 15.6667 8.58346H10C9.2176 8.58346 8.58333 9.21772 8.58333 10.0001V15.6668C8.58333 16.4492 9.2176 17.0835 10 17.0835Z",
@@ -15466,7 +15474,7 @@ function Queue({
15466
15474
  "stroke-linejoin": "round"
15467
15475
  }
15468
15476
  ),
15469
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15477
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15470
15478
  "path",
15471
15479
  {
15472
15480
  d: "M5.75033 11.4165H4.33366C3.55126 11.4165 2.91699 10.7822 2.91699 9.99984V4.33317C2.91699 3.55077 3.55126 2.9165 4.33366 2.9165H10.0003C10.7827 2.9165 11.417 3.55077 11.417 4.33317V5.74984M14.329 8.42576L14.2503 7.1665C14.2503 6.3841 13.6161 5.74984 12.8337 5.74984H7.16699C6.38459 5.74984 5.75033 6.3841 5.75033 7.1665V12.8332C5.75033 13.6156 6.38459 14.2498 7.16699 14.2498H8.42625",
@@ -15476,7 +15484,7 @@ function Queue({
15476
15484
  "stroke-linejoin": "round"
15477
15485
  }
15478
15486
  ),
15479
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15487
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15480
15488
  "path",
15481
15489
  {
15482
15490
  d: "M8.58398 9.99882C8.58398 9.21642 9.21825 8.58215 10.0007 8.58215H15.6673C16.4497 8.58215 17.084 9.21642 17.084 9.99882V15.6655C17.084 16.4479 16.4497 17.0822 15.6673 17.0822H10.0007C9.21825 17.0822 8.58398 16.4479 8.58398 15.6655V9.99882Z",
@@ -15491,8 +15499,8 @@ function Queue({
15491
15499
  case 24:
15492
15500
  return {
15493
15501
  viewBox: "0 0 24 24",
15494
- path: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_jsx_runtime20.Fragment, { children: [
15495
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15502
+ path: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_jsx_runtime21.Fragment, { children: [
15503
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15496
15504
  "path",
15497
15505
  {
15498
15506
  d: "M10.2994 17.0997H8.59941C7.66053 17.0997 6.89941 16.3385 6.89941 15.3997V8.59966C6.89941 7.66077 7.66053 6.89966 8.59941 6.89966H15.3994C16.3383 6.89966 17.0994 7.66077 17.0994 8.59966V10.2997M11.9994 20.4997H18.7994C19.7383 20.4997 20.4994 19.7385 20.4994 18.7997V11.9997C20.4994 11.0608 19.7383 10.2997 18.7994 10.2997H11.9994C11.0605 10.2997 10.2994 11.0608 10.2994 11.9997V18.7997C10.2994 19.7385 11.0605 20.4997 11.9994 20.4997Z",
@@ -15502,7 +15510,7 @@ function Queue({
15502
15510
  "stroke-linejoin": "round"
15503
15511
  }
15504
15512
  ),
15505
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15513
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15506
15514
  "path",
15507
15515
  {
15508
15516
  d: "M6.9 13.7H5.2C4.26112 13.7 3.5 12.9389 3.5 12V5.2C3.5 4.26112 4.26112 3.5 5.2 3.5H12C12.9389 3.5 13.7 4.26112 13.7 5.2V6.9M17.1944 10.1111L17.1 8.6C17.1 7.66112 16.3389 6.9 15.4 6.9H8.6C7.66112 6.9 6.9 7.66112 6.9 8.6V15.4C6.9 16.3389 7.66112 17.1 8.6 17.1H10.1111",
@@ -15512,7 +15520,7 @@ function Queue({
15512
15520
  "stroke-linejoin": "round"
15513
15521
  }
15514
15522
  ),
15515
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15523
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15516
15524
  "path",
15517
15525
  {
15518
15526
  d: "M10.2998 11.9993C10.2998 11.0604 11.0609 10.2993 11.9998 10.2993H18.7998C19.7387 10.2993 20.4998 11.0604 20.4998 11.9993V18.7993C20.4998 19.7382 19.7387 20.4993 18.7998 20.4993H11.9998C11.0609 20.4993 10.2998 19.7382 10.2998 18.7993V11.9993Z",
@@ -15527,8 +15535,8 @@ function Queue({
15527
15535
  case 36:
15528
15536
  return {
15529
15537
  viewBox: "0 0 36 36",
15530
- path: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_jsx_runtime20.Fragment, { children: [
15531
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15538
+ path: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_jsx_runtime21.Fragment, { children: [
15539
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15532
15540
  "path",
15533
15541
  {
15534
15542
  d: "M15.4496 25.6511H12.8996C11.4913 25.6511 10.3496 24.5094 10.3496 23.1011V12.9011C10.3496 11.4927 11.4913 10.3511 12.8996 10.3511H23.0996C24.5079 10.3511 25.6496 11.4927 25.6496 12.9011V15.4511M17.9996 30.7511H28.1996C29.6079 30.7511 30.7496 29.6094 30.7496 28.2011V18.0011C30.7496 16.5927 29.6079 15.4511 28.1996 15.4511H17.9996C16.5913 15.4511 15.4496 16.5927 15.4496 18.0011V28.2011C15.4496 29.6094 16.5913 30.7511 17.9996 30.7511Z",
@@ -15538,7 +15546,7 @@ function Queue({
15538
15546
  "stroke-linejoin": "round"
15539
15547
  }
15540
15548
  ),
15541
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15549
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15542
15550
  "path",
15543
15551
  {
15544
15552
  d: "M10.35 20.549H7.8C6.39167 20.549 5.25 19.4073 5.25 17.999V7.79902C5.25 6.3907 6.39167 5.24902 7.8 5.24902H18C19.4083 5.24902 20.55 6.3907 20.55 7.79902V10.349M25.7917 15.1657L25.65 12.899C25.65 11.4907 24.5083 10.349 23.1 10.349H12.9C11.4917 10.349 10.35 11.4907 10.35 12.899V23.099C10.35 24.5073 11.4917 25.649 12.9 25.649H15.1667",
@@ -15548,7 +15556,7 @@ function Queue({
15548
15556
  "stroke-linejoin": "round"
15549
15557
  }
15550
15558
  ),
15551
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15559
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15552
15560
  "path",
15553
15561
  {
15554
15562
  d: "M15.4492 17.9987C15.4492 16.5904 16.5909 15.4487 17.9992 15.4487H28.1992C29.6075 15.4487 30.7492 16.5904 30.7492 17.9987V28.1987C30.7492 29.6071 29.6075 30.7487 28.1992 30.7487H17.9992C16.5909 30.7487 15.4492 29.6071 15.4492 28.1987V17.9987Z",
@@ -15563,7 +15571,7 @@ function Queue({
15563
15571
  }
15564
15572
  };
15565
15573
  const { viewBox, path } = getIconData();
15566
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15574
+ return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15567
15575
  "svg",
15568
15576
  {
15569
15577
  width: size,
@@ -15577,17 +15585,17 @@ function Queue({
15577
15585
  }
15578
15586
 
15579
15587
  // src/components/atoms/qtalo_logo/qtalo_logo.tsx
15580
- var import_jsx_runtime21 = require("react/jsx-runtime");
15588
+ var import_jsx_runtime22 = require("react/jsx-runtime");
15581
15589
  function QTLogo({ variant }) {
15582
15590
  if (variant == "monogram") {
15583
- return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15591
+ return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15584
15592
  "svg",
15585
15593
  {
15586
15594
  xmlns: "http://www.w3.org/2000/svg",
15587
15595
  width: "40",
15588
15596
  height: "40",
15589
15597
  viewBox: "0 0 40 40",
15590
- children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15598
+ children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15591
15599
  "image",
15592
15600
  {
15593
15601
  href: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAAXNSR0IArs4c6QAABApJREFUWEfNWV1SGkEQ/npXTcUnvAGeIHKCyAnUEwguIsmLeILgCcSXhL9VPIF6ArmBeoJwg1CpPEV2O9ULu7WsuzOzSCWZKl5gpvubnu6vfyAsuRoNLk5/Y98mfGDGLhMKBBREHAMTAsby8Rn39gZGnQ6Nl1FFeQ41m1z49RMVm7DHwG6eswCemHHZv6JhnnPGAE8cPvWBVmilPEoSe8fMODcFqgUoT8kvuF7CYro7jK11lHVPrwT4yeHDKdBegdWywIpfnvVcusvakAlQnpSBts4Mq/jdBirfXLpJk5UK8G+CC0FlgXwF8PiYd8jHo6lliDBiH/dsY2TbmATnpij6PnbIwp5QkKmsNQulr316iu9fACgB4b/gAUBRJ5SAy/ceWu0hzUBlrEaFi76NFoBDnUwA400PpbjMBYAnDku0VlSCAgImVDsDGhkojLbUHd4n4IJ1lye0ewM6Cw9GAOfW+64F56HcGS6XFcSabONBBzL+1BFAE+tZHraXBRde3MTHCbjrunQgZwKAJtYD4bw3IPGlN696jVtgfFEJ2vSwJb4YADw+4goRrhVkOe66tP1mZHMBlQoX3tl4VD414aw3IEkSwInD4heZdGAxqp2cSV53GZ0VCRh1XSoHAOsOs0rgKnwvKV+suGHjh0LvpOfSFn0+5p2pgpiFiLsDKusssszv9Ro/grGTdVaimYSfANwq/O+y61JzGQC6M3WHpTbMJHC2UCVdgKwyepOAdX4YADTZ1O/nq4J1los4UcMeYpx/CrBe4yYYF5kXEoD//xPrg2TYdalq+mx59p04fMuABGnqsghlmpdDqiJh3MuZRcLuT7SubeAuq+8wopk5UQthBj1t2rLWsa1rbsJzkte9FzzG+5i0atkg/8+Iep7qlKbOQzVZVkmC1FVPBNx3XZIaUl8sAJhsetjWVc+6tBmCNKncw/wfAJznRfHDzGdGotLNcoe6wyp3maxZKHs+pGNUVe6RQaKCVUfYAkjVHoaAdanTJMoJiJgjAmhkRQRdW1XVaAuAxhFXfEV9qQE5sTyUwsp9oWmqH3ETpGD2UDKj1buic5UiY1lJIYnK/VVfrCteY/K0QyATt4njI8JTd0Clhe+SFzDtvOJApfr1GM80cwGZDxZkbugDQhPZgRcTErSzKR1j6uhj3nlJA28k3MTxDfYcpPl25vBIQFo+hMC1UwYD5SZbAgpSjj5W8NwmQFR7XuV97QAzyDQOS/t3+lbtJueTAyQjgAG3zcYWMlvJLI9MAEgT5s8CKvXCUmLF5z7GAEPl4bSKgI85/FMmBDdEuAuVp72KRHJyQJAbYNxKjRrvBnNAQhGEDxGPU/A3xIQ9PMvcsJ+Y+UVpscYtYhwKLQkH0hTV5OznD06t70w92gcAAAAAAElFTkSuQmCC",
@@ -15600,14 +15608,14 @@ function QTLogo({ variant }) {
15600
15608
  }
15601
15609
  );
15602
15610
  } else {
15603
- return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15611
+ return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15604
15612
  "svg",
15605
15613
  {
15606
15614
  xmlns: "http://www.w3.org/2000/svg",
15607
15615
  width: "140",
15608
15616
  height: "40",
15609
15617
  viewBox: "0 0 140 40",
15610
- children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15618
+ children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15611
15619
  "image",
15612
15620
  {
15613
15621
  href: "data:image/png;base64,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",
@@ -15623,48 +15631,48 @@ function QTLogo({ variant }) {
15623
15631
  }
15624
15632
 
15625
15633
  // src/components/molecules/buttons/nav_button/main_nav_button/main_nav_button.tsx
15626
- var import_clsx5 = __toESM(require("clsx"));
15627
- var import_jsx_runtime22 = require("react/jsx-runtime");
15634
+ var import_clsx6 = __toESM(require("clsx"));
15635
+ var import_jsx_runtime23 = require("react/jsx-runtime");
15628
15636
  function MainNavButton({ icon, label, active }) {
15629
- return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("div", { className: "w-min h-min flex flex-none flex-col place-items-center gap-2", children: [
15630
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15637
+ return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("div", { className: "w-min h-min flex flex-none flex-col place-items-center gap-2", children: [
15638
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
15631
15639
  "div",
15632
15640
  {
15633
- className: (0, import_clsx5.default)(
15641
+ className: (0, import_clsx6.default)(
15634
15642
  "w-[44px] h-[44px] flex flex-none flex-col place-items-center place-content-center rounded-xl border-2 hover:border-qtpurple-500",
15635
15643
  active ? "border-qtpurple-500 qt-drop-shadow-100 bg-qtpurple-200" : "border-qtpurple-300 bg-white"
15636
15644
  ),
15637
15645
  children: icon
15638
15646
  }
15639
15647
  ),
15640
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("div", { className: "label-3-bold text-qtpurple-500", children: label })
15648
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("div", { className: "label-3-bold text-qtpurple-500", children: label })
15641
15649
  ] });
15642
15650
  }
15643
15651
 
15644
15652
  // src/components/organisms/nav_bar/nav_bar.tsx
15645
- var import_jsx_runtime23 = require("react/jsx-runtime");
15653
+ var import_jsx_runtime24 = require("react/jsx-runtime");
15646
15654
  function NavBar({}) {
15647
- return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("div", { className: "flex flex-col w-[66px] bg-qtneutral-100 navbar-shadow h-full py-12 place-items-center place-content-between gap-8", children: [
15648
- /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("div", { className: "flex flex-col gap-8", children: [
15649
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(QTLogo, { variant: "monogram" }),
15650
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(MainNavButton, { active: true, label: "Queue", icon: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Queue, { color: "#6558FD" }) })
15655
+ return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("div", { className: "flex flex-col w-[66px] bg-qtneutral-100 navbar-shadow h-full py-12 place-items-center place-content-between gap-8", children: [
15656
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("div", { className: "flex flex-col gap-8", children: [
15657
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(QTLogo, { variant: "monogram" }),
15658
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(MainNavButton, { active: true, label: "Queue", icon: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(Queue, { color: "#6558FD" }) })
15651
15659
  ] }),
15652
- /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("div", { className: "flex flex-col gap-8", children: [
15653
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(MainNavButton, { label: "Account", icon: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Gear, { color: "#6558FD" }) }),
15654
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(MainNavButton, { label: "Logout", icon: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Logout, { color: "#6558FD" }) })
15660
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("div", { className: "flex flex-col gap-8", children: [
15661
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(MainNavButton, { label: "Account", icon: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(Gear, { color: "#6558FD" }) }),
15662
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(MainNavButton, { label: "Logout", icon: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(Logout, { color: "#6558FD" }) })
15655
15663
  ] })
15656
15664
  ] });
15657
15665
  }
15658
15666
 
15659
15667
  // src/components/atoms/icons/category_icons/category_icon.tsx
15660
- var import_jsx_runtime24 = require("react/jsx-runtime");
15668
+ var import_jsx_runtime25 = require("react/jsx-runtime");
15661
15669
  function CategoryIcon({ size = 24, icon, variant }) {
15662
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
15670
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
15663
15671
  "div",
15664
15672
  {
15665
15673
  className: `flex-none`,
15666
15674
  style: { width: `${size}px`, height: `${size}px` },
15667
- children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: "w-full h-full", children: icon && getCategoryIcon(icon, variant, size) })
15675
+ children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: "w-full h-full", children: icon && getCategoryIcon(icon, variant, size) })
15668
15676
  }
15669
15677
  );
15670
15678
  }
@@ -15673,13 +15681,13 @@ function CategoryIcon({ size = 24, icon, variant }) {
15673
15681
  var import_react2 = require("react");
15674
15682
 
15675
15683
  // src/components/organisms/intel_card/intel_card.tsx
15676
- var import_clsx6 = __toESM(require("clsx"));
15684
+ var import_clsx7 = __toESM(require("clsx"));
15677
15685
 
15678
15686
  // src/components/molecules/text_content/intel_row/intel_row.tsx
15679
- var import_jsx_runtime25 = require("react/jsx-runtime");
15687
+ var import_jsx_runtime26 = require("react/jsx-runtime");
15680
15688
  function IntelRow({ boldText, text }) {
15681
- return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: "flex w-max body-small text-neutral-1 gap-2 max-w-full", children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: "flex break-words", children: /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("p", { children: [
15682
- /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("strong", { className: "body-small-bold", children: [
15689
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("div", { className: "flex w-max body-small text-neutral-1 gap-2 max-w-full", children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("div", { className: "flex break-words", children: /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("p", { children: [
15690
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("strong", { className: "body-small-bold", children: [
15683
15691
  boldText,
15684
15692
  ":"
15685
15693
  ] }),
@@ -15689,7 +15697,7 @@ function IntelRow({ boldText, text }) {
15689
15697
  }
15690
15698
 
15691
15699
  // src/components/organisms/intel_card/intel_card.tsx
15692
- var import_jsx_runtime26 = require("react/jsx-runtime");
15700
+ var import_jsx_runtime27 = require("react/jsx-runtime");
15693
15701
  function IntelCard({
15694
15702
  onRead,
15695
15703
  onSelected,
@@ -15710,10 +15718,10 @@ function IntelCard({
15710
15718
  return "";
15711
15719
  }
15712
15720
  };
15713
- return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
15721
+ return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
15714
15722
  "div",
15715
15723
  {
15716
- className: (0, import_clsx6.default)(
15724
+ className: (0, import_clsx7.default)(
15717
15725
  "flex flex-none gap-2 h-min w-full py-4 px-2",
15718
15726
  urgency == void 0 && "border-qtneutral-400",
15719
15727
  urgency == "low" && "bg-qtgreen-50 border-qtgreen-300",
@@ -15723,10 +15731,10 @@ function IntelCard({
15723
15731
  reversed ? "rounded-b-2xl border-t-[2px]" : "rounded-t-2xl border-b-[2px]"
15724
15732
  ),
15725
15733
  children: [
15726
- /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("div", { className: "flex flex-col gap-4 place-items-center" }),
15727
- /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("div", { className: "flex flex-col gap-2 max-w-full", children: [
15728
- urgency && /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(IntelRow, { boldText: urgencyPrefix(), text: urgencyText }),
15729
- /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(IntelRow, { boldText: "Summary", text: summary })
15734
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: "flex flex-col gap-4 place-items-center" }),
15735
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { className: "flex flex-col gap-2 max-w-full", children: [
15736
+ urgency && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(IntelRow, { boldText: urgencyPrefix(), text: urgencyText }),
15737
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(IntelRow, { boldText: "Summary", text: summary })
15730
15738
  ] })
15731
15739
  ]
15732
15740
  }
@@ -15734,7 +15742,7 @@ function IntelCard({
15734
15742
  }
15735
15743
 
15736
15744
  // src/components/organisms/emails/single_event.tsx
15737
- var import_jsx_runtime27 = require("react/jsx-runtime");
15745
+ var import_jsx_runtime28 = require("react/jsx-runtime");
15738
15746
  function SingleEvent({
15739
15747
  urgency,
15740
15748
  service,
@@ -15748,21 +15756,21 @@ function SingleEvent({
15748
15756
  setExpanded(true);
15749
15757
  }
15750
15758
  }, [startExpanded]);
15751
- return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
15759
+ return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
15752
15760
  "div",
15753
15761
  {
15754
15762
  className: "flex flex-col rounded-3xl bg-qtneutral-200 py-4 px-4 gap-4 h-min",
15755
15763
  onClick: () => setExpanded(!expanded),
15756
15764
  children: [
15757
- /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { className: "flex gap-2 place-items-center", children: [
15758
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
15765
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { className: "flex gap-2 place-items-center", children: [
15766
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
15759
15767
  SecondaryCheckBox,
15760
15768
  {
15761
15769
  active: selected,
15762
15770
  onClick: () => setSelected(!selected)
15763
15771
  }
15764
15772
  ),
15765
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
15773
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
15766
15774
  CategoryIcon,
15767
15775
  {
15768
15776
  size: 30,
@@ -15770,8 +15778,8 @@ function SingleEvent({
15770
15778
  variant: urgency == "high" ? void 0 : urgency == "medium" ? "#FFD481" /* YELLOW */ : urgency == void 0 ? "none" /* OUTLINED */ : void 0
15771
15779
  }
15772
15780
  ),
15773
- /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { className: "flex flex-col w-full h-min", children: [
15774
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
15781
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { className: "flex flex-col w-full h-min", children: [
15782
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
15775
15783
  SenderSourceRow,
15776
15784
  {
15777
15785
  leftText: "Sender",
@@ -15780,15 +15788,15 @@ function SingleEvent({
15780
15788
  shrunk: true
15781
15789
  }
15782
15790
  ),
15783
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(SubjectLineRow, { text: "Subject Line" })
15791
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(SubjectLineRow, { text: "Subject Line" })
15784
15792
  ] })
15785
15793
  ] }),
15786
- expanded && /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(import_jsx_runtime27.Fragment, { children: [
15787
- /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { children: [
15788
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(IntelCard, { summary: "summary", urgency }),
15794
+ expanded && /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(import_jsx_runtime28.Fragment, { children: [
15795
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { children: [
15796
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(IntelCard, { summary: "summary", urgency }),
15789
15797
  body
15790
15798
  ] }),
15791
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(BrandIcon, { service })
15799
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(BrandIcon, { service })
15792
15800
  ] })
15793
15801
  ]
15794
15802
  }
@@ -15796,8 +15804,8 @@ function SingleEvent({
15796
15804
  }
15797
15805
 
15798
15806
  // src/components/organisms/event_card/event_card.tsx
15799
- var import_clsx7 = __toESM(require("clsx"));
15800
- var import_jsx_runtime28 = require("react/jsx-runtime");
15807
+ var import_clsx8 = __toESM(require("clsx"));
15808
+ var import_jsx_runtime29 = require("react/jsx-runtime");
15801
15809
  function EventCard({
15802
15810
  eventType,
15803
15811
  eventData,
@@ -15808,9 +15816,9 @@ function EventCard({
15808
15816
  function getEventBody() {
15809
15817
  switch (eventType) {
15810
15818
  case "message" /* MESSAGE */:
15811
- return eventData ? eventData[0].eventBody : /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(import_jsx_runtime28.Fragment, {});
15819
+ return eventData ? eventData[0].eventBody : /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_jsx_runtime29.Fragment, {});
15812
15820
  case "email" /* EMAIL */:
15813
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(import_jsx_runtime28.Fragment, { children: eventData ? eventData.map((d, i) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
15821
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_jsx_runtime29.Fragment, { children: eventData ? eventData.map((d, i) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
15814
15822
  SingleEvent,
15815
15823
  {
15816
15824
  urgency: d.urgency,
@@ -15818,9 +15826,9 @@ function EventCard({
15818
15826
  body: d.eventBody,
15819
15827
  startExpanded: i == eventData.length - 1
15820
15828
  }
15821
- )) : /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(import_jsx_runtime28.Fragment, { children: " " }) });
15829
+ )) : /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_jsx_runtime29.Fragment, { children: " " }) });
15822
15830
  case "ticket" /* TICKET */:
15823
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(import_jsx_runtime28.Fragment, { children: eventData ? eventData.map((d, i) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
15831
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_jsx_runtime29.Fragment, { children: eventData ? eventData.map((d, i) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
15824
15832
  SingleEvent,
15825
15833
  {
15826
15834
  urgency: d.urgency,
@@ -15828,21 +15836,21 @@ function EventCard({
15828
15836
  body: d.eventBody,
15829
15837
  startExpanded: i == eventData.length - 1
15830
15838
  }
15831
- )) : /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(import_jsx_runtime28.Fragment, { children: " " }) });
15839
+ )) : /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_jsx_runtime29.Fragment, { children: " " }) });
15832
15840
  default:
15833
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(import_jsx_runtime28.Fragment, {});
15841
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_jsx_runtime29.Fragment, {});
15834
15842
  }
15835
15843
  }
15836
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
15844
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
15837
15845
  "div",
15838
15846
  {
15839
- className: (0, import_clsx7.default)(
15847
+ className: (0, import_clsx8.default)(
15840
15848
  "flex flex-col rounded-2xl max-w-[765px] w-full max-h-[950px] h-min border-qtneutral-500 border-[2px] gap-8",
15841
15849
  eventType == "message" /* MESSAGE */ ? "bg-qtneutral-200" : "bg-white py-4 pl-4 pr-2"
15842
15850
  ),
15843
15851
  children: [
15844
- /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { className: "overflow-auto flex flex-col gap-4 w-full", children: getEventBody() }),
15845
- eventType == "message" /* MESSAGE */ && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
15852
+ /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { className: "overflow-auto flex flex-col gap-4 w-full", children: getEventBody() }),
15853
+ eventType == "message" /* MESSAGE */ && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
15846
15854
  IntelCard,
15847
15855
  {
15848
15856
  urgency: groupUrgency,
@@ -15857,7 +15865,7 @@ function EventCard({
15857
15865
  }
15858
15866
 
15859
15867
  // src/components/organisms/message_body/email_body.tsx
15860
- var import_jsx_runtime29 = require("react/jsx-runtime");
15868
+ var import_jsx_runtime30 = require("react/jsx-runtime");
15861
15869
  function EmailBody({
15862
15870
  subjectLine,
15863
15871
  to,
@@ -15868,18 +15876,18 @@ function EmailBody({
15868
15876
  attachments,
15869
15877
  body
15870
15878
  }) {
15871
- return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("div", { className: "flex flex-col gap-4 bg-white p-4 rounded-b-2xl", children: [
15872
- /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("div", { className: "flex flex-col gap-0.5", children: [
15873
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(MetadataRow, { metadata: [`Subject: ${subjectLine}`] }),
15874
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(MetadataRow, { metadata: [`To: ${to}`] }),
15875
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(MetadataRow, { metadata: [`Date: ${date}`] }),
15876
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(MetadataRow, { metadata: [`from: ${from}`] }),
15877
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(MetadataRow, { metadata: [`CC: ${CC}`] }),
15878
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(MetadataRow, { metadata: [`BCC: ${BCC}`] }),
15879
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(MetadataRow, { metadata: [`Attachments: ${attachments}`] })
15879
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("div", { className: "flex flex-col gap-4 bg-white p-4 rounded-b-2xl", children: [
15880
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("div", { className: "flex flex-col gap-0.5", children: [
15881
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MetadataRow, { metadata: [`Subject: ${subjectLine}`] }),
15882
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MetadataRow, { metadata: [`To: ${to}`] }),
15883
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MetadataRow, { metadata: [`Date: ${date}`] }),
15884
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MetadataRow, { metadata: [`from: ${from}`] }),
15885
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MetadataRow, { metadata: [`CC: ${CC}`] }),
15886
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MetadataRow, { metadata: [`BCC: ${BCC}`] }),
15887
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MetadataRow, { metadata: [`Attachments: ${attachments}`] })
15880
15888
  ] }),
15881
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("hr", { className: "text-qtneutral-500" }),
15882
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { className: "body-medium", children: body })
15889
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("hr", { className: "text-qtneutral-500" }),
15890
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: "body-medium", children: body })
15883
15891
  ] });
15884
15892
  }
15885
15893
 
@@ -15889,23 +15897,14 @@ var import_react3 = require("react");
15889
15897
 
15890
15898
  // src/components/atoms/emoji_pill/emoji_pill.tsx
15891
15899
  var import_emoji_dictionary = __toESM(require_lib7());
15892
- var import_jsx_runtime30 = require("react/jsx-runtime");
15900
+ var import_jsx_runtime31 = require("react/jsx-runtime");
15893
15901
  function EmojiPill({ emoji, count }) {
15894
- return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("div", { className: "flex rounded-2xl bg-qtneutral-300 w-min py-0.5 px-4 place-items-center place-content-center gap-1", children: [
15902
+ return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("div", { className: "flex rounded-2xl bg-qtneutral-300 w-min py-0.5 px-4 place-items-center place-content-center gap-1", children: [
15895
15903
  emoji && import_emoji_dictionary.default.getUnicode(emoji),
15896
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: "label-3-bold text-qtneutral-900", children: count })
15904
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("div", { className: "label-3-bold text-qtneutral-900", children: count })
15897
15905
  ] });
15898
15906
  }
15899
15907
 
15900
- // src/util/utilcomponents.tsx
15901
- var import_clsx8 = __toESM(require("clsx"));
15902
- var import_react_markdown = __toESM(require("react-markdown"));
15903
- var import_remark_gfm = __toESM(require("remark-gfm"));
15904
- var import_jsx_runtime31 = require("react/jsx-runtime");
15905
- function MarkdownRenderer({ content, truncated }) {
15906
- return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("div", { className: (0, import_clsx8.default)(" markdown", truncated && "line-clamp-3"), children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(import_react_markdown.default, { remarkPlugins: [import_remark_gfm.default], children: content }) });
15907
- }
15908
-
15909
15908
  // src/components/organisms/chat_messages/chat_bubble/chat_bubble.tsx
15910
15909
  var import_jsx_runtime32 = require("react/jsx-runtime");
15911
15910
  function ChatBubble({