qt-ui-kit 1.0.17 → 1.0.19

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,16 @@ 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] wrap-anywhere rounded-2xl text-sm p-4 leading-[120%] font-normal debug", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15238
+ MarkdownRenderer,
15239
+ {
15240
+ content: "<pre>Sparkle icon AI meeting summary fromGrain logo Product Team Design Approval Process May 05, 2025 \u2022 50 mins \u2022 Participants: Suzanne & Shaan +1 other Key Takeaways \u2022 Implement a pull request process for code changes, allowing for comments and approvals before escalation to development or production. This ensures accountability and clarity in the approval process. 01:20 (https://grain.com/share/recording/6ca5773e-b3df-474c-8fae-705eaff02e96/bcYI0Ktp43MXvz4JSAsEc5OBSEssmDuEI92xU0Am?t=80438) \u2022 Use Storybook for visual comparisons and feedback on design elements, allowing designers to communicate specific changes without needing to understand the code. 24:51 (https://grain.com/share/recording/6ca5773e-b3df-474c-8fae-705eaff02e96/bcYI0Ktp43MXvz4JSAsEc5OBSEssmDuEI92xU0Am?t=1491568) \u2022 Create JIRA tickets for minor design changes to track ongoing adjustments and ensure nothing falls through the cracks. 32:50 (https://grain.com/share/recording/6ca5773e-b3df-474c-8fae-705eaff02e96/bcYI0Ktp43MXvz4JSAsEc5OBSEssmDuEI92xU0Am?t=1970382) \u2022 Establish a synchronization point for design and development to align expectations and facilitate smoother iterations moving forward. 46:58 (https://grain.com/share/recording/6ca5773e-b3df-474c-8fae-705eaff02e96/bcYI0Ktp43MXvz4JSAsEc5OBSEssmDuEI92xU0Am?t=2818130) Discussion Topics Design Approval ProcessRegular sync-ups can help bridge gaps between design and development. (https://grain.com/share/recording/6ca5773e-b3df-474c-8fae-705eaff02e96/bcYI0Ktp43MXvz4JSAsEc5OBSEssmDuEI92xU0Am?t=2203614)Visual comparisons between design and code can enhance understanding and communication. (https://grain.com/share/recording/6ca5773e-b3df-474c-8fae-705eaff02e96/bcYI0Ktp43MXvz4JSAsEc5OBSEssmDuEI92xU0Am?t=1562114)Comments in code can help clarify design intentions during the approval process. Designers can provide context for changes directly in the code, bridging the gap between design and development perspectives. (https://grain.com/share/recording/6c",
15241
+ truncated: true
15242
+ }
15243
+ ) })
15229
15244
  ] })
15230
15245
  ]
15231
15246
  }
@@ -15233,7 +15248,7 @@ function PreviewCard({
15233
15248
  }
15234
15249
 
15235
15250
  // src/components/atoms/icons/base_icons/Gear.tsx
15236
- var import_jsx_runtime18 = require("react/jsx-runtime");
15251
+ var import_jsx_runtime19 = require("react/jsx-runtime");
15237
15252
  function Gear({
15238
15253
  size = 24,
15239
15254
  color = "#1D1D1F",
@@ -15244,8 +15259,8 @@ function Gear({
15244
15259
  case 16:
15245
15260
  return {
15246
15261
  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)(
15262
+ path: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(import_jsx_runtime19.Fragment, { children: [
15263
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15249
15264
  "path",
15250
15265
  {
15251
15266
  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 +15270,7 @@ function Gear({
15255
15270
  "stroke-linejoin": "round"
15256
15271
  }
15257
15272
  ),
15258
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15273
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15259
15274
  "path",
15260
15275
  {
15261
15276
  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 +15285,8 @@ function Gear({
15270
15285
  case 20:
15271
15286
  return {
15272
15287
  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)(
15288
+ path: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(import_jsx_runtime19.Fragment, { children: [
15289
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15275
15290
  "path",
15276
15291
  {
15277
15292
  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 +15296,7 @@ function Gear({
15281
15296
  "stroke-linejoin": "round"
15282
15297
  }
15283
15298
  ),
15284
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15299
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15285
15300
  "path",
15286
15301
  {
15287
15302
  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 +15311,8 @@ function Gear({
15296
15311
  case 24:
15297
15312
  return {
15298
15313
  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)(
15314
+ path: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(import_jsx_runtime19.Fragment, { children: [
15315
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15301
15316
  "path",
15302
15317
  {
15303
15318
  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 +15322,7 @@ function Gear({
15307
15322
  "stroke-linejoin": "round"
15308
15323
  }
15309
15324
  ),
15310
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15325
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15311
15326
  "path",
15312
15327
  {
15313
15328
  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 +15337,8 @@ function Gear({
15322
15337
  case 36:
15323
15338
  return {
15324
15339
  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)(
15340
+ path: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(import_jsx_runtime19.Fragment, { children: [
15341
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15327
15342
  "path",
15328
15343
  {
15329
15344
  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 +15348,7 @@ function Gear({
15333
15348
  "stroke-linejoin": "round"
15334
15349
  }
15335
15350
  ),
15336
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15351
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15337
15352
  "path",
15338
15353
  {
15339
15354
  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 +15363,7 @@ function Gear({
15348
15363
  }
15349
15364
  };
15350
15365
  const { viewBox, path } = getIconData();
15351
- return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
15366
+ return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15352
15367
  "svg",
15353
15368
  {
15354
15369
  width: size,
@@ -15362,7 +15377,7 @@ function Gear({
15362
15377
  }
15363
15378
 
15364
15379
  // src/components/atoms/icons/base_icons/Logout.tsx
15365
- var import_jsx_runtime19 = require("react/jsx-runtime");
15380
+ var import_jsx_runtime20 = require("react/jsx-runtime");
15366
15381
  function Logout({
15367
15382
  size = 24,
15368
15383
  color = "#1D1D1F",
@@ -15373,27 +15388,27 @@ function Logout({
15373
15388
  case 16:
15374
15389
  return {
15375
15390
  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" })
15391
+ 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
15392
  };
15378
15393
  case 20:
15379
15394
  return {
15380
15395
  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" })
15396
+ 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
15397
  };
15383
15398
  case 24:
15384
15399
  return {
15385
15400
  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" })
15401
+ 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
15402
  };
15388
15403
  case 36:
15389
15404
  return {
15390
15405
  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" })
15406
+ 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
15407
  };
15393
15408
  }
15394
15409
  };
15395
15410
  const { viewBox, path } = getIconData();
15396
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
15411
+ return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15397
15412
  "svg",
15398
15413
  {
15399
15414
  width: size,
@@ -15407,7 +15422,7 @@ function Logout({
15407
15422
  }
15408
15423
 
15409
15424
  // src/components/atoms/icons/base_icons/Queue.tsx
15410
- var import_jsx_runtime20 = require("react/jsx-runtime");
15425
+ var import_jsx_runtime21 = require("react/jsx-runtime");
15411
15426
  function Queue({
15412
15427
  size = 24,
15413
15428
  color = "#1D1D1F",
@@ -15418,8 +15433,8 @@ function Queue({
15418
15433
  case 16:
15419
15434
  return {
15420
15435
  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)(
15436
+ path: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_jsx_runtime21.Fragment, { children: [
15437
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15423
15438
  "path",
15424
15439
  {
15425
15440
  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 +15444,7 @@ function Queue({
15429
15444
  "stroke-linejoin": "round"
15430
15445
  }
15431
15446
  ),
15432
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15447
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15433
15448
  "path",
15434
15449
  {
15435
15450
  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 +15454,7 @@ function Queue({
15439
15454
  "stroke-linejoin": "round"
15440
15455
  }
15441
15456
  ),
15442
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15457
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15443
15458
  "path",
15444
15459
  {
15445
15460
  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 +15469,8 @@ function Queue({
15454
15469
  case 20:
15455
15470
  return {
15456
15471
  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)(
15472
+ path: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_jsx_runtime21.Fragment, { children: [
15473
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15459
15474
  "path",
15460
15475
  {
15461
15476
  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 +15480,7 @@ function Queue({
15465
15480
  "stroke-linejoin": "round"
15466
15481
  }
15467
15482
  ),
15468
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15483
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15469
15484
  "path",
15470
15485
  {
15471
15486
  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 +15490,7 @@ function Queue({
15475
15490
  "stroke-linejoin": "round"
15476
15491
  }
15477
15492
  ),
15478
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15493
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15479
15494
  "path",
15480
15495
  {
15481
15496
  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 +15505,8 @@ function Queue({
15490
15505
  case 24:
15491
15506
  return {
15492
15507
  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)(
15508
+ path: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_jsx_runtime21.Fragment, { children: [
15509
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15495
15510
  "path",
15496
15511
  {
15497
15512
  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 +15516,7 @@ function Queue({
15501
15516
  "stroke-linejoin": "round"
15502
15517
  }
15503
15518
  ),
15504
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15519
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15505
15520
  "path",
15506
15521
  {
15507
15522
  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 +15526,7 @@ function Queue({
15511
15526
  "stroke-linejoin": "round"
15512
15527
  }
15513
15528
  ),
15514
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15529
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15515
15530
  "path",
15516
15531
  {
15517
15532
  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 +15541,8 @@ function Queue({
15526
15541
  case 36:
15527
15542
  return {
15528
15543
  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)(
15544
+ path: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_jsx_runtime21.Fragment, { children: [
15545
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15531
15546
  "path",
15532
15547
  {
15533
15548
  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 +15552,7 @@ function Queue({
15537
15552
  "stroke-linejoin": "round"
15538
15553
  }
15539
15554
  ),
15540
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15555
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15541
15556
  "path",
15542
15557
  {
15543
15558
  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 +15562,7 @@ function Queue({
15547
15562
  "stroke-linejoin": "round"
15548
15563
  }
15549
15564
  ),
15550
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15565
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15551
15566
  "path",
15552
15567
  {
15553
15568
  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 +15577,7 @@ function Queue({
15562
15577
  }
15563
15578
  };
15564
15579
  const { viewBox, path } = getIconData();
15565
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
15580
+ return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15566
15581
  "svg",
15567
15582
  {
15568
15583
  width: size,
@@ -15576,17 +15591,17 @@ function Queue({
15576
15591
  }
15577
15592
 
15578
15593
  // src/components/atoms/qtalo_logo/qtalo_logo.tsx
15579
- var import_jsx_runtime21 = require("react/jsx-runtime");
15594
+ var import_jsx_runtime22 = require("react/jsx-runtime");
15580
15595
  function QTLogo({ variant }) {
15581
15596
  if (variant == "monogram") {
15582
- return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15597
+ return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15583
15598
  "svg",
15584
15599
  {
15585
15600
  xmlns: "http://www.w3.org/2000/svg",
15586
15601
  width: "40",
15587
15602
  height: "40",
15588
15603
  viewBox: "0 0 40 40",
15589
- children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15604
+ children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15590
15605
  "image",
15591
15606
  {
15592
15607
  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 +15614,14 @@ function QTLogo({ variant }) {
15599
15614
  }
15600
15615
  );
15601
15616
  } else {
15602
- return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15617
+ return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15603
15618
  "svg",
15604
15619
  {
15605
15620
  xmlns: "http://www.w3.org/2000/svg",
15606
15621
  width: "140",
15607
15622
  height: "40",
15608
15623
  viewBox: "0 0 140 40",
15609
- children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15624
+ children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15610
15625
  "image",
15611
15626
  {
15612
15627
  href: "data:image/png;base64,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",
@@ -15622,48 +15637,48 @@ function QTLogo({ variant }) {
15622
15637
  }
15623
15638
 
15624
15639
  // 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");
15640
+ var import_clsx6 = __toESM(require("clsx"));
15641
+ var import_jsx_runtime23 = require("react/jsx-runtime");
15627
15642
  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)(
15643
+ return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("div", { className: "w-min h-min flex flex-none flex-col place-items-center gap-2", children: [
15644
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
15630
15645
  "div",
15631
15646
  {
15632
- className: (0, import_clsx5.default)(
15647
+ className: (0, import_clsx6.default)(
15633
15648
  "w-[44px] h-[44px] flex flex-none flex-col place-items-center place-content-center rounded-xl border-2 hover:border-qtpurple-500",
15634
15649
  active ? "border-qtpurple-500 qt-drop-shadow-100 bg-qtpurple-200" : "border-qtpurple-300 bg-white"
15635
15650
  ),
15636
15651
  children: icon
15637
15652
  }
15638
15653
  ),
15639
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("div", { className: "label-3-bold text-qtpurple-500", children: label })
15654
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("div", { className: "label-3-bold text-qtpurple-500", children: label })
15640
15655
  ] });
15641
15656
  }
15642
15657
 
15643
15658
  // src/components/organisms/nav_bar/nav_bar.tsx
15644
- var import_jsx_runtime23 = require("react/jsx-runtime");
15659
+ var import_jsx_runtime24 = require("react/jsx-runtime");
15645
15660
  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" }) })
15661
+ 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: [
15662
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("div", { className: "flex flex-col gap-8", children: [
15663
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(QTLogo, { variant: "monogram" }),
15664
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(MainNavButton, { active: true, label: "Queue", icon: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(Queue, { color: "#6558FD" }) })
15650
15665
  ] }),
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" }) })
15666
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("div", { className: "flex flex-col gap-8", children: [
15667
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(MainNavButton, { label: "Account", icon: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(Gear, { color: "#6558FD" }) }),
15668
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(MainNavButton, { label: "Logout", icon: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(Logout, { color: "#6558FD" }) })
15654
15669
  ] })
15655
15670
  ] });
15656
15671
  }
15657
15672
 
15658
15673
  // src/components/atoms/icons/category_icons/category_icon.tsx
15659
- var import_jsx_runtime24 = require("react/jsx-runtime");
15674
+ var import_jsx_runtime25 = require("react/jsx-runtime");
15660
15675
  function CategoryIcon({ size = 24, icon, variant }) {
15661
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
15676
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
15662
15677
  "div",
15663
15678
  {
15664
15679
  className: `flex-none`,
15665
15680
  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) })
15681
+ children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: "w-full h-full", children: icon && getCategoryIcon(icon, variant, size) })
15667
15682
  }
15668
15683
  );
15669
15684
  }
@@ -15672,13 +15687,13 @@ function CategoryIcon({ size = 24, icon, variant }) {
15672
15687
  var import_react2 = require("react");
15673
15688
 
15674
15689
  // src/components/organisms/intel_card/intel_card.tsx
15675
- var import_clsx6 = __toESM(require("clsx"));
15690
+ var import_clsx7 = __toESM(require("clsx"));
15676
15691
 
15677
15692
  // src/components/molecules/text_content/intel_row/intel_row.tsx
15678
- var import_jsx_runtime25 = require("react/jsx-runtime");
15693
+ var import_jsx_runtime26 = require("react/jsx-runtime");
15679
15694
  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: [
15695
+ 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: [
15696
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("strong", { className: "body-small-bold", children: [
15682
15697
  boldText,
15683
15698
  ":"
15684
15699
  ] }),
@@ -15688,7 +15703,7 @@ function IntelRow({ boldText, text }) {
15688
15703
  }
15689
15704
 
15690
15705
  // src/components/organisms/intel_card/intel_card.tsx
15691
- var import_jsx_runtime26 = require("react/jsx-runtime");
15706
+ var import_jsx_runtime27 = require("react/jsx-runtime");
15692
15707
  function IntelCard({
15693
15708
  onRead,
15694
15709
  onSelected,
@@ -15709,10 +15724,10 @@ function IntelCard({
15709
15724
  return "";
15710
15725
  }
15711
15726
  };
15712
- return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
15727
+ return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
15713
15728
  "div",
15714
15729
  {
15715
- className: (0, import_clsx6.default)(
15730
+ className: (0, import_clsx7.default)(
15716
15731
  "flex flex-none gap-2 h-min w-full py-4 px-2",
15717
15732
  urgency == void 0 && "border-qtneutral-400",
15718
15733
  urgency == "low" && "bg-qtgreen-50 border-qtgreen-300",
@@ -15722,10 +15737,10 @@ function IntelCard({
15722
15737
  reversed ? "rounded-b-2xl border-t-[2px]" : "rounded-t-2xl border-b-[2px]"
15723
15738
  ),
15724
15739
  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 })
15740
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: "flex flex-col gap-4 place-items-center" }),
15741
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { className: "flex flex-col gap-2 max-w-full", children: [
15742
+ urgency && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(IntelRow, { boldText: urgencyPrefix(), text: urgencyText }),
15743
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(IntelRow, { boldText: "Summary", text: summary })
15729
15744
  ] })
15730
15745
  ]
15731
15746
  }
@@ -15733,7 +15748,7 @@ function IntelCard({
15733
15748
  }
15734
15749
 
15735
15750
  // src/components/organisms/emails/single_event.tsx
15736
- var import_jsx_runtime27 = require("react/jsx-runtime");
15751
+ var import_jsx_runtime28 = require("react/jsx-runtime");
15737
15752
  function SingleEvent({
15738
15753
  urgency,
15739
15754
  service,
@@ -15747,21 +15762,21 @@ function SingleEvent({
15747
15762
  setExpanded(true);
15748
15763
  }
15749
15764
  }, [startExpanded]);
15750
- return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
15765
+ return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
15751
15766
  "div",
15752
15767
  {
15753
15768
  className: "flex flex-col rounded-3xl bg-qtneutral-200 py-4 px-4 gap-4 h-min",
15754
15769
  onClick: () => setExpanded(!expanded),
15755
15770
  children: [
15756
- /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { className: "flex gap-2 place-items-center", children: [
15757
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
15771
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { className: "flex gap-2 place-items-center", children: [
15772
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
15758
15773
  SecondaryCheckBox,
15759
15774
  {
15760
15775
  active: selected,
15761
15776
  onClick: () => setSelected(!selected)
15762
15777
  }
15763
15778
  ),
15764
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
15779
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
15765
15780
  CategoryIcon,
15766
15781
  {
15767
15782
  size: 30,
@@ -15769,8 +15784,8 @@ function SingleEvent({
15769
15784
  variant: urgency == "high" ? void 0 : urgency == "medium" ? "#FFD481" /* YELLOW */ : urgency == void 0 ? "none" /* OUTLINED */ : void 0
15770
15785
  }
15771
15786
  ),
15772
- /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { className: "flex flex-col w-full h-min", children: [
15773
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
15787
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { className: "flex flex-col w-full h-min", children: [
15788
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
15774
15789
  SenderSourceRow,
15775
15790
  {
15776
15791
  leftText: "Sender",
@@ -15779,15 +15794,15 @@ function SingleEvent({
15779
15794
  shrunk: true
15780
15795
  }
15781
15796
  ),
15782
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(SubjectLineRow, { text: "Subject Line" })
15797
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(SubjectLineRow, { text: "Subject Line" })
15783
15798
  ] })
15784
15799
  ] }),
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 }),
15800
+ expanded && /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(import_jsx_runtime28.Fragment, { children: [
15801
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { children: [
15802
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(IntelCard, { summary: "summary", urgency }),
15788
15803
  body
15789
15804
  ] }),
15790
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(BrandIcon, { service })
15805
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(BrandIcon, { service })
15791
15806
  ] })
15792
15807
  ]
15793
15808
  }
@@ -15795,8 +15810,8 @@ function SingleEvent({
15795
15810
  }
15796
15811
 
15797
15812
  // src/components/organisms/event_card/event_card.tsx
15798
- var import_clsx7 = __toESM(require("clsx"));
15799
- var import_jsx_runtime28 = require("react/jsx-runtime");
15813
+ var import_clsx8 = __toESM(require("clsx"));
15814
+ var import_jsx_runtime29 = require("react/jsx-runtime");
15800
15815
  function EventCard({
15801
15816
  eventType,
15802
15817
  eventData,
@@ -15807,9 +15822,9 @@ function EventCard({
15807
15822
  function getEventBody() {
15808
15823
  switch (eventType) {
15809
15824
  case "message" /* MESSAGE */:
15810
- return eventData ? eventData[0].eventBody : /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(import_jsx_runtime28.Fragment, {});
15825
+ return eventData ? eventData[0].eventBody : /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_jsx_runtime29.Fragment, {});
15811
15826
  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)(
15827
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_jsx_runtime29.Fragment, { children: eventData ? eventData.map((d, i) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
15813
15828
  SingleEvent,
15814
15829
  {
15815
15830
  urgency: d.urgency,
@@ -15817,9 +15832,9 @@ function EventCard({
15817
15832
  body: d.eventBody,
15818
15833
  startExpanded: i == eventData.length - 1
15819
15834
  }
15820
- )) : /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(import_jsx_runtime28.Fragment, { children: " " }) });
15835
+ )) : /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_jsx_runtime29.Fragment, { children: " " }) });
15821
15836
  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)(
15837
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_jsx_runtime29.Fragment, { children: eventData ? eventData.map((d, i) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
15823
15838
  SingleEvent,
15824
15839
  {
15825
15840
  urgency: d.urgency,
@@ -15827,21 +15842,21 @@ function EventCard({
15827
15842
  body: d.eventBody,
15828
15843
  startExpanded: i == eventData.length - 1
15829
15844
  }
15830
- )) : /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(import_jsx_runtime28.Fragment, { children: " " }) });
15845
+ )) : /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_jsx_runtime29.Fragment, { children: " " }) });
15831
15846
  default:
15832
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(import_jsx_runtime28.Fragment, {});
15847
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_jsx_runtime29.Fragment, {});
15833
15848
  }
15834
15849
  }
15835
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
15850
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
15836
15851
  "div",
15837
15852
  {
15838
- className: (0, import_clsx7.default)(
15853
+ className: (0, import_clsx8.default)(
15839
15854
  "flex flex-col rounded-2xl max-w-[765px] w-full max-h-[950px] h-min border-qtneutral-500 border-[2px] gap-8",
15840
15855
  eventType == "message" /* MESSAGE */ ? "bg-qtneutral-200" : "bg-white py-4 pl-4 pr-2"
15841
15856
  ),
15842
15857
  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)(
15858
+ /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { className: "overflow-auto flex flex-col gap-4 w-full", children: getEventBody() }),
15859
+ eventType == "message" /* MESSAGE */ && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
15845
15860
  IntelCard,
15846
15861
  {
15847
15862
  urgency: groupUrgency,
@@ -15856,7 +15871,7 @@ function EventCard({
15856
15871
  }
15857
15872
 
15858
15873
  // src/components/organisms/message_body/email_body.tsx
15859
- var import_jsx_runtime29 = require("react/jsx-runtime");
15874
+ var import_jsx_runtime30 = require("react/jsx-runtime");
15860
15875
  function EmailBody({
15861
15876
  subjectLine,
15862
15877
  to,
@@ -15867,18 +15882,18 @@ function EmailBody({
15867
15882
  attachments,
15868
15883
  body
15869
15884
  }) {
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}`] })
15885
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("div", { className: "flex flex-col gap-4 bg-white p-4 rounded-b-2xl", children: [
15886
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("div", { className: "flex flex-col gap-0.5", children: [
15887
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MetadataRow, { metadata: [`Subject: ${subjectLine}`] }),
15888
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MetadataRow, { metadata: [`To: ${to}`] }),
15889
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MetadataRow, { metadata: [`Date: ${date}`] }),
15890
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MetadataRow, { metadata: [`from: ${from}`] }),
15891
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MetadataRow, { metadata: [`CC: ${CC}`] }),
15892
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MetadataRow, { metadata: [`BCC: ${BCC}`] }),
15893
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MetadataRow, { metadata: [`Attachments: ${attachments}`] })
15879
15894
  ] }),
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 })
15895
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("hr", { className: "text-qtneutral-500" }),
15896
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: "body-medium", children: body })
15882
15897
  ] });
15883
15898
  }
15884
15899
 
@@ -15888,23 +15903,14 @@ var import_react3 = require("react");
15888
15903
 
15889
15904
  // src/components/atoms/emoji_pill/emoji_pill.tsx
15890
15905
  var import_emoji_dictionary = __toESM(require_lib7());
15891
- var import_jsx_runtime30 = require("react/jsx-runtime");
15906
+ var import_jsx_runtime31 = require("react/jsx-runtime");
15892
15907
  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: [
15908
+ 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
15909
  emoji && import_emoji_dictionary.default.getUnicode(emoji),
15895
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: "label-3-bold text-qtneutral-900", children: count })
15910
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("div", { className: "label-3-bold text-qtneutral-900", children: count })
15896
15911
  ] });
15897
15912
  }
15898
15913
 
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
15914
  // src/components/organisms/chat_messages/chat_bubble/chat_bubble.tsx
15909
15915
  var import_jsx_runtime32 = require("react/jsx-runtime");
15910
15916
  function ChatBubble({