qt-ui-kit 1.0.17 → 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
@@ -14940,7 +14940,7 @@ function MetadataRow({ metadata }) {
14940
14940
  }
14941
14941
 
14942
14942
  // src/components/organisms/preview_card/preview_card.tsx
14943
- var import_clsx4 = __toESM(require("clsx"));
14943
+ var import_clsx5 = __toESM(require("clsx"));
14944
14944
 
14945
14945
  // src/components/molecules/checkboxes/main_checkbox/secondary_checkbox.tsx
14946
14946
  var import_clsx2 = __toESM(require("clsx"));
@@ -15112,8 +15112,17 @@ function CategoryIconButton({ icon, label, active }) {
15112
15112
  );
15113
15113
  }
15114
15114
 
15115
- // 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"));
15116
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");
15117
15126
  function PreviewCard({
15118
15127
  onRead,
15119
15128
  onSelected,
@@ -15167,10 +15176,10 @@ function PreviewCard({
15167
15176
  return void 0;
15168
15177
  }
15169
15178
  }
15170
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
15179
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
15171
15180
  "div",
15172
15181
  {
15173
- className: (0, import_clsx4.default)(
15182
+ className: (0, import_clsx5.default)(
15174
15183
  "flex gap-4 h-min w-[409px] bg-neutral-6 rounded-3xl p-4 border-[2px] preview-card-shadow",
15175
15184
  selected ? "bg-qtpurple-200 border-qtpurple-200" : "",
15176
15185
  !read ? "border-qtpurple-500" : "border-neutral-6"
@@ -15183,16 +15192,16 @@ function PreviewCard({
15183
15192
  }
15184
15193
  },
15185
15194
  children: [
15186
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "flex flex-col gap-4 place-items-center", children: [
15187
- /* @__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)(
15188
15197
  SecondaryCheckBox,
15189
15198
  {
15190
15199
  active: checked,
15191
15200
  onClick: () => setChecked(!checked)
15192
15201
  }
15193
15202
  ),
15194
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(BrandIcon, { service, size: 24 }),
15195
- 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)(
15196
15205
  CategoryIconButton,
15197
15206
  {
15198
15207
  active: true,
@@ -15202,7 +15211,7 @@ function PreviewCard({
15202
15211
  )
15203
15212
  }
15204
15213
  ),
15205
- alert && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
15214
+ alert && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15206
15215
  CategoryIconButton,
15207
15216
  {
15208
15217
  active: true,
@@ -15210,9 +15219,9 @@ function PreviewCard({
15210
15219
  }
15211
15220
  )
15212
15221
  ] }),
15213
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "flex flex-col gap-2", children: [
15214
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "flex flex-col ", children: [
15215
- /* @__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)(
15216
15225
  SenderSourceRow,
15217
15226
  {
15218
15227
  leftText: sender,
@@ -15222,10 +15231,10 @@ function PreviewCard({
15222
15231
  onClick: onClickGoToSource
15223
15232
  }
15224
15233
  ),
15225
- subjectLine && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(SubjectLineRow, { text: subjectLine }),
15226
- /* @__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 })
15227
15236
  ] }),
15228
- /* @__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 }) })
15229
15238
  ] })
15230
15239
  ]
15231
15240
  }
@@ -15233,7 +15242,7 @@ function PreviewCard({
15233
15242
  }
15234
15243
 
15235
15244
  // src/components/atoms/icons/base_icons/Gear.tsx
15236
- var import_jsx_runtime18 = require("react/jsx-runtime");
15245
+ var import_jsx_runtime19 = require("react/jsx-runtime");
15237
15246
  function Gear({
15238
15247
  size = 24,
15239
15248
  color = "#1D1D1F",
@@ -15244,8 +15253,8 @@ function Gear({
15244
15253
  case 16:
15245
15254
  return {
15246
15255
  viewBox: "0 0 16 16",
15247
- path: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_jsx_runtime18.Fragment, { children: [
15248
- /* @__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)(
15249
15258
  "path",
15250
15259
  {
15251
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",
@@ -15255,7 +15264,7 @@ function Gear({
15255
15264
  "stroke-linejoin": "round"
15256
15265
  }
15257
15266
  ),
15258
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15267
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15259
15268
  "path",
15260
15269
  {
15261
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",
@@ -15270,8 +15279,8 @@ function Gear({
15270
15279
  case 20:
15271
15280
  return {
15272
15281
  viewBox: "0 0 20 20",
15273
- path: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_jsx_runtime18.Fragment, { children: [
15274
- /* @__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)(
15275
15284
  "path",
15276
15285
  {
15277
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",
@@ -15281,7 +15290,7 @@ function Gear({
15281
15290
  "stroke-linejoin": "round"
15282
15291
  }
15283
15292
  ),
15284
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15293
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15285
15294
  "path",
15286
15295
  {
15287
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",
@@ -15296,8 +15305,8 @@ function Gear({
15296
15305
  case 24:
15297
15306
  return {
15298
15307
  viewBox: "0 0 24 24",
15299
- path: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_jsx_runtime18.Fragment, { children: [
15300
- /* @__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)(
15301
15310
  "path",
15302
15311
  {
15303
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",
@@ -15307,7 +15316,7 @@ function Gear({
15307
15316
  "stroke-linejoin": "round"
15308
15317
  }
15309
15318
  ),
15310
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15319
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15311
15320
  "path",
15312
15321
  {
15313
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",
@@ -15322,8 +15331,8 @@ function Gear({
15322
15331
  case 36:
15323
15332
  return {
15324
15333
  viewBox: "0 0 36 36",
15325
- path: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_jsx_runtime18.Fragment, { children: [
15326
- /* @__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)(
15327
15336
  "path",
15328
15337
  {
15329
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",
@@ -15333,7 +15342,7 @@ function Gear({
15333
15342
  "stroke-linejoin": "round"
15334
15343
  }
15335
15344
  ),
15336
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15345
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15337
15346
  "path",
15338
15347
  {
15339
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",
@@ -15348,7 +15357,7 @@ function Gear({
15348
15357
  }
15349
15358
  };
15350
15359
  const { viewBox, path } = getIconData();
15351
- return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15360
+ return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15352
15361
  "svg",
15353
15362
  {
15354
15363
  width: size,
@@ -15362,7 +15371,7 @@ function Gear({
15362
15371
  }
15363
15372
 
15364
15373
  // src/components/atoms/icons/base_icons/Logout.tsx
15365
- var import_jsx_runtime19 = require("react/jsx-runtime");
15374
+ var import_jsx_runtime20 = require("react/jsx-runtime");
15366
15375
  function Logout({
15367
15376
  size = 24,
15368
15377
  color = "#1D1D1F",
@@ -15373,27 +15382,27 @@ function Logout({
15373
15382
  case 16:
15374
15383
  return {
15375
15384
  viewBox: "0 0 16 16",
15376
- 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" })
15377
15386
  };
15378
15387
  case 20:
15379
15388
  return {
15380
15389
  viewBox: "0 0 20 20",
15381
- 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" })
15382
15391
  };
15383
15392
  case 24:
15384
15393
  return {
15385
15394
  viewBox: "0 0 24 24",
15386
- 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" })
15387
15396
  };
15388
15397
  case 36:
15389
15398
  return {
15390
15399
  viewBox: "0 0 36 36",
15391
- 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" })
15392
15401
  };
15393
15402
  }
15394
15403
  };
15395
15404
  const { viewBox, path } = getIconData();
15396
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15405
+ return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15397
15406
  "svg",
15398
15407
  {
15399
15408
  width: size,
@@ -15407,7 +15416,7 @@ function Logout({
15407
15416
  }
15408
15417
 
15409
15418
  // src/components/atoms/icons/base_icons/Queue.tsx
15410
- var import_jsx_runtime20 = require("react/jsx-runtime");
15419
+ var import_jsx_runtime21 = require("react/jsx-runtime");
15411
15420
  function Queue({
15412
15421
  size = 24,
15413
15422
  color = "#1D1D1F",
@@ -15418,8 +15427,8 @@ function Queue({
15418
15427
  case 16:
15419
15428
  return {
15420
15429
  viewBox: "0 0 16 16",
15421
- path: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_jsx_runtime20.Fragment, { children: [
15422
- /* @__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)(
15423
15432
  "path",
15424
15433
  {
15425
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",
@@ -15429,7 +15438,7 @@ function Queue({
15429
15438
  "stroke-linejoin": "round"
15430
15439
  }
15431
15440
  ),
15432
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15441
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15433
15442
  "path",
15434
15443
  {
15435
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",
@@ -15439,7 +15448,7 @@ function Queue({
15439
15448
  "stroke-linejoin": "round"
15440
15449
  }
15441
15450
  ),
15442
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15451
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15443
15452
  "path",
15444
15453
  {
15445
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",
@@ -15454,8 +15463,8 @@ function Queue({
15454
15463
  case 20:
15455
15464
  return {
15456
15465
  viewBox: "0 0 20 20",
15457
- path: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_jsx_runtime20.Fragment, { children: [
15458
- /* @__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)(
15459
15468
  "path",
15460
15469
  {
15461
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",
@@ -15465,7 +15474,7 @@ function Queue({
15465
15474
  "stroke-linejoin": "round"
15466
15475
  }
15467
15476
  ),
15468
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15477
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15469
15478
  "path",
15470
15479
  {
15471
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",
@@ -15475,7 +15484,7 @@ function Queue({
15475
15484
  "stroke-linejoin": "round"
15476
15485
  }
15477
15486
  ),
15478
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15487
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15479
15488
  "path",
15480
15489
  {
15481
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",
@@ -15490,8 +15499,8 @@ function Queue({
15490
15499
  case 24:
15491
15500
  return {
15492
15501
  viewBox: "0 0 24 24",
15493
- path: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_jsx_runtime20.Fragment, { children: [
15494
- /* @__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)(
15495
15504
  "path",
15496
15505
  {
15497
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",
@@ -15501,7 +15510,7 @@ function Queue({
15501
15510
  "stroke-linejoin": "round"
15502
15511
  }
15503
15512
  ),
15504
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15513
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15505
15514
  "path",
15506
15515
  {
15507
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",
@@ -15511,7 +15520,7 @@ function Queue({
15511
15520
  "stroke-linejoin": "round"
15512
15521
  }
15513
15522
  ),
15514
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15523
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15515
15524
  "path",
15516
15525
  {
15517
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",
@@ -15526,8 +15535,8 @@ function Queue({
15526
15535
  case 36:
15527
15536
  return {
15528
15537
  viewBox: "0 0 36 36",
15529
- path: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_jsx_runtime20.Fragment, { children: [
15530
- /* @__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)(
15531
15540
  "path",
15532
15541
  {
15533
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",
@@ -15537,7 +15546,7 @@ function Queue({
15537
15546
  "stroke-linejoin": "round"
15538
15547
  }
15539
15548
  ),
15540
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15549
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15541
15550
  "path",
15542
15551
  {
15543
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",
@@ -15547,7 +15556,7 @@ function Queue({
15547
15556
  "stroke-linejoin": "round"
15548
15557
  }
15549
15558
  ),
15550
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15559
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15551
15560
  "path",
15552
15561
  {
15553
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",
@@ -15562,7 +15571,7 @@ function Queue({
15562
15571
  }
15563
15572
  };
15564
15573
  const { viewBox, path } = getIconData();
15565
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15574
+ return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15566
15575
  "svg",
15567
15576
  {
15568
15577
  width: size,
@@ -15576,17 +15585,17 @@ function Queue({
15576
15585
  }
15577
15586
 
15578
15587
  // src/components/atoms/qtalo_logo/qtalo_logo.tsx
15579
- var import_jsx_runtime21 = require("react/jsx-runtime");
15588
+ var import_jsx_runtime22 = require("react/jsx-runtime");
15580
15589
  function QTLogo({ variant }) {
15581
15590
  if (variant == "monogram") {
15582
- return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15591
+ return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15583
15592
  "svg",
15584
15593
  {
15585
15594
  xmlns: "http://www.w3.org/2000/svg",
15586
15595
  width: "40",
15587
15596
  height: "40",
15588
15597
  viewBox: "0 0 40 40",
15589
- children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15598
+ children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15590
15599
  "image",
15591
15600
  {
15592
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",
@@ -15599,14 +15608,14 @@ function QTLogo({ variant }) {
15599
15608
  }
15600
15609
  );
15601
15610
  } else {
15602
- return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15611
+ return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15603
15612
  "svg",
15604
15613
  {
15605
15614
  xmlns: "http://www.w3.org/2000/svg",
15606
15615
  width: "140",
15607
15616
  height: "40",
15608
15617
  viewBox: "0 0 140 40",
15609
- children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15618
+ children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15610
15619
  "image",
15611
15620
  {
15612
15621
  href: "data:image/png;base64,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",
@@ -15622,48 +15631,48 @@ function QTLogo({ variant }) {
15622
15631
  }
15623
15632
 
15624
15633
  // src/components/molecules/buttons/nav_button/main_nav_button/main_nav_button.tsx
15625
- var import_clsx5 = __toESM(require("clsx"));
15626
- var import_jsx_runtime22 = require("react/jsx-runtime");
15634
+ var import_clsx6 = __toESM(require("clsx"));
15635
+ var import_jsx_runtime23 = require("react/jsx-runtime");
15627
15636
  function MainNavButton({ icon, label, active }) {
15628
- return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("div", { className: "w-min h-min flex flex-none flex-col place-items-center gap-2", children: [
15629
- /* @__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)(
15630
15639
  "div",
15631
15640
  {
15632
- className: (0, import_clsx5.default)(
15641
+ className: (0, import_clsx6.default)(
15633
15642
  "w-[44px] h-[44px] flex flex-none flex-col place-items-center place-content-center rounded-xl border-2 hover:border-qtpurple-500",
15634
15643
  active ? "border-qtpurple-500 qt-drop-shadow-100 bg-qtpurple-200" : "border-qtpurple-300 bg-white"
15635
15644
  ),
15636
15645
  children: icon
15637
15646
  }
15638
15647
  ),
15639
- /* @__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 })
15640
15649
  ] });
15641
15650
  }
15642
15651
 
15643
15652
  // src/components/organisms/nav_bar/nav_bar.tsx
15644
- var import_jsx_runtime23 = require("react/jsx-runtime");
15653
+ var import_jsx_runtime24 = require("react/jsx-runtime");
15645
15654
  function NavBar({}) {
15646
- 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: [
15647
- /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("div", { className: "flex flex-col gap-8", children: [
15648
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(QTLogo, { variant: "monogram" }),
15649
- /* @__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" }) })
15650
15659
  ] }),
15651
- /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("div", { className: "flex flex-col gap-8", children: [
15652
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(MainNavButton, { label: "Account", icon: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Gear, { color: "#6558FD" }) }),
15653
- /* @__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" }) })
15654
15663
  ] })
15655
15664
  ] });
15656
15665
  }
15657
15666
 
15658
15667
  // src/components/atoms/icons/category_icons/category_icon.tsx
15659
- var import_jsx_runtime24 = require("react/jsx-runtime");
15668
+ var import_jsx_runtime25 = require("react/jsx-runtime");
15660
15669
  function CategoryIcon({ size = 24, icon, variant }) {
15661
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
15670
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
15662
15671
  "div",
15663
15672
  {
15664
15673
  className: `flex-none`,
15665
15674
  style: { width: `${size}px`, height: `${size}px` },
15666
- 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) })
15667
15676
  }
15668
15677
  );
15669
15678
  }
@@ -15672,13 +15681,13 @@ function CategoryIcon({ size = 24, icon, variant }) {
15672
15681
  var import_react2 = require("react");
15673
15682
 
15674
15683
  // src/components/organisms/intel_card/intel_card.tsx
15675
- var import_clsx6 = __toESM(require("clsx"));
15684
+ var import_clsx7 = __toESM(require("clsx"));
15676
15685
 
15677
15686
  // src/components/molecules/text_content/intel_row/intel_row.tsx
15678
- var import_jsx_runtime25 = require("react/jsx-runtime");
15687
+ var import_jsx_runtime26 = require("react/jsx-runtime");
15679
15688
  function IntelRow({ boldText, text }) {
15680
- 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: [
15681
- /* @__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: [
15682
15691
  boldText,
15683
15692
  ":"
15684
15693
  ] }),
@@ -15688,7 +15697,7 @@ function IntelRow({ boldText, text }) {
15688
15697
  }
15689
15698
 
15690
15699
  // src/components/organisms/intel_card/intel_card.tsx
15691
- var import_jsx_runtime26 = require("react/jsx-runtime");
15700
+ var import_jsx_runtime27 = require("react/jsx-runtime");
15692
15701
  function IntelCard({
15693
15702
  onRead,
15694
15703
  onSelected,
@@ -15709,10 +15718,10 @@ function IntelCard({
15709
15718
  return "";
15710
15719
  }
15711
15720
  };
15712
- return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
15721
+ return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
15713
15722
  "div",
15714
15723
  {
15715
- className: (0, import_clsx6.default)(
15724
+ className: (0, import_clsx7.default)(
15716
15725
  "flex flex-none gap-2 h-min w-full py-4 px-2",
15717
15726
  urgency == void 0 && "border-qtneutral-400",
15718
15727
  urgency == "low" && "bg-qtgreen-50 border-qtgreen-300",
@@ -15722,10 +15731,10 @@ function IntelCard({
15722
15731
  reversed ? "rounded-b-2xl border-t-[2px]" : "rounded-t-2xl border-b-[2px]"
15723
15732
  ),
15724
15733
  children: [
15725
- /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("div", { className: "flex flex-col gap-4 place-items-center" }),
15726
- /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("div", { className: "flex flex-col gap-2 max-w-full", children: [
15727
- urgency && /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(IntelRow, { boldText: urgencyPrefix(), text: urgencyText }),
15728
- /* @__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 })
15729
15738
  ] })
15730
15739
  ]
15731
15740
  }
@@ -15733,7 +15742,7 @@ function IntelCard({
15733
15742
  }
15734
15743
 
15735
15744
  // src/components/organisms/emails/single_event.tsx
15736
- var import_jsx_runtime27 = require("react/jsx-runtime");
15745
+ var import_jsx_runtime28 = require("react/jsx-runtime");
15737
15746
  function SingleEvent({
15738
15747
  urgency,
15739
15748
  service,
@@ -15747,21 +15756,21 @@ function SingleEvent({
15747
15756
  setExpanded(true);
15748
15757
  }
15749
15758
  }, [startExpanded]);
15750
- return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
15759
+ return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
15751
15760
  "div",
15752
15761
  {
15753
15762
  className: "flex flex-col rounded-3xl bg-qtneutral-200 py-4 px-4 gap-4 h-min",
15754
15763
  onClick: () => setExpanded(!expanded),
15755
15764
  children: [
15756
- /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { className: "flex gap-2 place-items-center", children: [
15757
- /* @__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)(
15758
15767
  SecondaryCheckBox,
15759
15768
  {
15760
15769
  active: selected,
15761
15770
  onClick: () => setSelected(!selected)
15762
15771
  }
15763
15772
  ),
15764
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
15773
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
15765
15774
  CategoryIcon,
15766
15775
  {
15767
15776
  size: 30,
@@ -15769,8 +15778,8 @@ function SingleEvent({
15769
15778
  variant: urgency == "high" ? void 0 : urgency == "medium" ? "#FFD481" /* YELLOW */ : urgency == void 0 ? "none" /* OUTLINED */ : void 0
15770
15779
  }
15771
15780
  ),
15772
- /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { className: "flex flex-col w-full h-min", children: [
15773
- /* @__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)(
15774
15783
  SenderSourceRow,
15775
15784
  {
15776
15785
  leftText: "Sender",
@@ -15779,15 +15788,15 @@ function SingleEvent({
15779
15788
  shrunk: true
15780
15789
  }
15781
15790
  ),
15782
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(SubjectLineRow, { text: "Subject Line" })
15791
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(SubjectLineRow, { text: "Subject Line" })
15783
15792
  ] })
15784
15793
  ] }),
15785
- expanded && /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(import_jsx_runtime27.Fragment, { children: [
15786
- /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { children: [
15787
- /* @__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 }),
15788
15797
  body
15789
15798
  ] }),
15790
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(BrandIcon, { service })
15799
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(BrandIcon, { service })
15791
15800
  ] })
15792
15801
  ]
15793
15802
  }
@@ -15795,8 +15804,8 @@ function SingleEvent({
15795
15804
  }
15796
15805
 
15797
15806
  // src/components/organisms/event_card/event_card.tsx
15798
- var import_clsx7 = __toESM(require("clsx"));
15799
- var import_jsx_runtime28 = require("react/jsx-runtime");
15807
+ var import_clsx8 = __toESM(require("clsx"));
15808
+ var import_jsx_runtime29 = require("react/jsx-runtime");
15800
15809
  function EventCard({
15801
15810
  eventType,
15802
15811
  eventData,
@@ -15807,9 +15816,9 @@ function EventCard({
15807
15816
  function getEventBody() {
15808
15817
  switch (eventType) {
15809
15818
  case "message" /* MESSAGE */:
15810
- 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, {});
15811
15820
  case "email" /* EMAIL */:
15812
- 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)(
15813
15822
  SingleEvent,
15814
15823
  {
15815
15824
  urgency: d.urgency,
@@ -15817,9 +15826,9 @@ function EventCard({
15817
15826
  body: d.eventBody,
15818
15827
  startExpanded: i == eventData.length - 1
15819
15828
  }
15820
- )) : /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(import_jsx_runtime28.Fragment, { children: " " }) });
15829
+ )) : /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_jsx_runtime29.Fragment, { children: " " }) });
15821
15830
  case "ticket" /* TICKET */:
15822
- 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)(
15823
15832
  SingleEvent,
15824
15833
  {
15825
15834
  urgency: d.urgency,
@@ -15827,21 +15836,21 @@ function EventCard({
15827
15836
  body: d.eventBody,
15828
15837
  startExpanded: i == eventData.length - 1
15829
15838
  }
15830
- )) : /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(import_jsx_runtime28.Fragment, { children: " " }) });
15839
+ )) : /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_jsx_runtime29.Fragment, { children: " " }) });
15831
15840
  default:
15832
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(import_jsx_runtime28.Fragment, {});
15841
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_jsx_runtime29.Fragment, {});
15833
15842
  }
15834
15843
  }
15835
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
15844
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
15836
15845
  "div",
15837
15846
  {
15838
- className: (0, import_clsx7.default)(
15847
+ className: (0, import_clsx8.default)(
15839
15848
  "flex flex-col rounded-2xl max-w-[765px] w-full max-h-[950px] h-min border-qtneutral-500 border-[2px] gap-8",
15840
15849
  eventType == "message" /* MESSAGE */ ? "bg-qtneutral-200" : "bg-white py-4 pl-4 pr-2"
15841
15850
  ),
15842
15851
  children: [
15843
- /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { className: "overflow-auto flex flex-col gap-4 w-full", children: getEventBody() }),
15844
- 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)(
15845
15854
  IntelCard,
15846
15855
  {
15847
15856
  urgency: groupUrgency,
@@ -15856,7 +15865,7 @@ function EventCard({
15856
15865
  }
15857
15866
 
15858
15867
  // src/components/organisms/message_body/email_body.tsx
15859
- var import_jsx_runtime29 = require("react/jsx-runtime");
15868
+ var import_jsx_runtime30 = require("react/jsx-runtime");
15860
15869
  function EmailBody({
15861
15870
  subjectLine,
15862
15871
  to,
@@ -15867,18 +15876,18 @@ function EmailBody({
15867
15876
  attachments,
15868
15877
  body
15869
15878
  }) {
15870
- return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("div", { className: "flex flex-col gap-4 bg-white p-4 rounded-b-2xl", children: [
15871
- /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("div", { className: "flex flex-col gap-0.5", children: [
15872
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(MetadataRow, { metadata: [`Subject: ${subjectLine}`] }),
15873
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(MetadataRow, { metadata: [`To: ${to}`] }),
15874
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(MetadataRow, { metadata: [`Date: ${date}`] }),
15875
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(MetadataRow, { metadata: [`from: ${from}`] }),
15876
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(MetadataRow, { metadata: [`CC: ${CC}`] }),
15877
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(MetadataRow, { metadata: [`BCC: ${BCC}`] }),
15878
- /* @__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}`] })
15879
15888
  ] }),
15880
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("hr", { className: "text-qtneutral-500" }),
15881
- /* @__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 })
15882
15891
  ] });
15883
15892
  }
15884
15893
 
@@ -15888,23 +15897,14 @@ var import_react3 = require("react");
15888
15897
 
15889
15898
  // src/components/atoms/emoji_pill/emoji_pill.tsx
15890
15899
  var import_emoji_dictionary = __toESM(require_lib7());
15891
- var import_jsx_runtime30 = require("react/jsx-runtime");
15900
+ var import_jsx_runtime31 = require("react/jsx-runtime");
15892
15901
  function EmojiPill({ emoji, count }) {
15893
- 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: [
15894
15903
  emoji && import_emoji_dictionary.default.getUnicode(emoji),
15895
- /* @__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 })
15896
15905
  ] });
15897
15906
  }
15898
15907
 
15899
- // src/util/utilcomponents.tsx
15900
- var import_clsx8 = __toESM(require("clsx"));
15901
- var import_react_markdown = __toESM(require("react-markdown"));
15902
- var import_remark_gfm = __toESM(require("remark-gfm"));
15903
- var import_jsx_runtime31 = require("react/jsx-runtime");
15904
- function MarkdownRenderer({ content, truncated }) {
15905
- 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 }) });
15906
- }
15907
-
15908
15908
  // src/components/organisms/chat_messages/chat_bubble/chat_bubble.tsx
15909
15909
  var import_jsx_runtime32 = require("react/jsx-runtime");
15910
15910
  function ChatBubble({