qt-ui-kit 1.0.70 → 1.0.72

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
@@ -15281,7 +15281,7 @@ function MetadataRow({ metadata }) {
15281
15281
  }
15282
15282
 
15283
15283
  // src/components/organisms/preview_card/preview_card.tsx
15284
- var import_clsx4 = __toESM(require("clsx"));
15284
+ var import_clsx5 = __toESM(require("clsx"));
15285
15285
 
15286
15286
  // src/components/molecules/buttons/thumb_group/thumb_group.tsx
15287
15287
  var import_react = require("react");
@@ -15681,8 +15681,46 @@ function CategoryIconButton({ icon, label, active }) {
15681
15681
  );
15682
15682
  }
15683
15683
 
15684
- // src/components/organisms/preview_card/preview_card.tsx
15684
+ // src/components/molecules/dropdown/dropdown.tsx
15685
+ var import_clsx4 = __toESM(require("clsx"));
15685
15686
  var import_jsx_runtime21 = require("react/jsx-runtime");
15687
+ function DropDown({
15688
+ title,
15689
+ items,
15690
+ activeItem,
15691
+ direction = "left",
15692
+ onItemClick
15693
+ }) {
15694
+ return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "relative inline-block", children: [
15695
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15696
+ "div",
15697
+ {
15698
+ className: (0, import_clsx4.default)(
15699
+ "absolute w-3.5 h-3.5 bg-black rotate-45 shadow-md z-0",
15700
+ direction === "left" ? "left-[-6px] top-3" : "right-0 top-3"
15701
+ )
15702
+ }
15703
+ ),
15704
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "bg-white rounded-2xl shadow-lg w-48 py-3 px-4 relative z-10", children: [
15705
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "text-xs font-bold text-gray-900 tracking-wide mb-2", children: title.toUpperCase() }),
15706
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("ul", { className: "text-sm text-gray-800 space-y-2", children: items.map((item) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15707
+ "li",
15708
+ {
15709
+ onClick: () => onItemClick?.(item),
15710
+ className: (0, import_clsx4.default)(
15711
+ "border-t border-gray-200 pt-2 cursor-pointer label-2 text-qtneutral-800 hover:text-qtpurple-500 !hover:label-2-bold",
15712
+ activeItem === item ? "text-indigo-600 font-semibold" : ""
15713
+ ),
15714
+ children: item
15715
+ },
15716
+ item
15717
+ )) })
15718
+ ] })
15719
+ ] });
15720
+ }
15721
+
15722
+ // src/components/organisms/preview_card/preview_card.tsx
15723
+ var import_jsx_runtime22 = require("react/jsx-runtime");
15686
15724
  function PreviewCard({
15687
15725
  eventID,
15688
15726
  onSelected,
@@ -15698,9 +15736,11 @@ function PreviewCard({
15698
15736
  onClickGoToSource,
15699
15737
  urgencyLevel,
15700
15738
  alert,
15701
- read
15739
+ read,
15740
+ onOverride
15702
15741
  }) {
15703
15742
  const [checked, setChecked] = (0, import_react2.useState)(false);
15743
+ const [overrideMenuOpen, setoverrideMenuOpen] = (0, import_react2.useState)(false);
15704
15744
  function getColorVariant(urgency) {
15705
15745
  switch (urgency) {
15706
15746
  case "high" /* HIGH */:
@@ -15719,10 +15759,10 @@ function PreviewCard({
15719
15759
  onChecked(eventID);
15720
15760
  }
15721
15761
  }
15722
- return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
15762
+ return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
15723
15763
  "div",
15724
15764
  {
15725
- className: (0, import_clsx4.default)(
15765
+ className: (0, import_clsx5.default)(
15726
15766
  " flex gap-4 h-min w-[409px] bg-neutral-6 rounded-3xl p-4 border-[2px] preview-card-shadow",
15727
15767
  selected ? "bg-qtpurple-200 border-qtpurple-200" : "",
15728
15768
  !read ? "border-qtpurple-500" : "border-neutral-6"
@@ -15732,20 +15772,41 @@ function PreviewCard({
15732
15772
  onSelected && onSelected(eventID);
15733
15773
  },
15734
15774
  children: [
15735
- /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "flex flex-col gap-4 place-items-center", children: [
15736
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(SecondaryCheckBox, { active: checked, onClick: toggleChecked }),
15737
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(BrandIcon, { service, size: 24 }),
15738
- urgencyLevel && /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15739
- CategoryIconButton,
15740
- {
15741
- active: true,
15742
- icon: getCategoryIcon(
15743
- "fire" /* FIRE */,
15744
- getColorVariant(urgencyLevel)
15745
- )
15746
- }
15747
- ),
15748
- alert && /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15775
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("div", { className: "flex flex-col gap-4 place-items-center", children: [
15776
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(SecondaryCheckBox, { active: checked, onClick: toggleChecked }),
15777
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(BrandIcon, { service, size: 24 }),
15778
+ urgencyLevel && /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("div", { className: "relative", children: [
15779
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15780
+ "div",
15781
+ {
15782
+ onClick: () => {
15783
+ setoverrideMenuOpen(!overrideMenuOpen);
15784
+ },
15785
+ children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15786
+ CategoryIconButton,
15787
+ {
15788
+ active: true,
15789
+ icon: getCategoryIcon(
15790
+ "fire" /* FIRE */,
15791
+ getColorVariant(urgencyLevel)
15792
+ )
15793
+ }
15794
+ )
15795
+ }
15796
+ ),
15797
+ overrideMenuOpen && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("div", { className: "absolute left-full top-0 ml-2 z-50", children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15798
+ DropDown,
15799
+ {
15800
+ items: ["Fire", "Clear"],
15801
+ title: "Set Urgency",
15802
+ onItemClick: (item) => {
15803
+ onOverride && onOverride(eventID, item);
15804
+ setoverrideMenuOpen(false);
15805
+ }
15806
+ }
15807
+ ) })
15808
+ ] }),
15809
+ alert && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15749
15810
  CategoryIconButton,
15750
15811
  {
15751
15812
  active: true,
@@ -15753,9 +15814,9 @@ function PreviewCard({
15753
15814
  }
15754
15815
  )
15755
15816
  ] }),
15756
- /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "flex flex-col gap-2 grow ", children: [
15757
- /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "flex flex-col grow gap-1", children: [
15758
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
15817
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("div", { className: "flex flex-col gap-2 grow ", children: [
15818
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("div", { className: "flex flex-col grow gap-1", children: [
15819
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15759
15820
  SenderSourceRow,
15760
15821
  {
15761
15822
  leftText: sender,
@@ -15765,12 +15826,12 @@ function PreviewCard({
15765
15826
  onClick: onClickGoToSource
15766
15827
  }
15767
15828
  ),
15768
- subjectLine && /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(SubjectLineRow, { text: subjectLine }),
15769
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(MetadataRow, { metadata })
15829
+ subjectLine && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(SubjectLineRow, { text: subjectLine }),
15830
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(MetadataRow, { metadata })
15770
15831
  ] }),
15771
- body && /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "bg-white flex flex-col max-w-full w-full gap-2 wrap-anywhere rounded-2xl text-sm p-4 leading-[120%] font-normal", children: [
15772
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("p", { className: "line-clamp-4", children: body }),
15773
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(ThumbGroup, {})
15832
+ body && /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("div", { className: "bg-white flex flex-col max-w-full w-full gap-2 wrap-anywhere rounded-2xl text-sm p-4 leading-[120%] font-normal", children: [
15833
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("p", { className: "line-clamp-4", children: body }),
15834
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(ThumbGroup, {})
15774
15835
  ] })
15775
15836
  ] })
15776
15837
  ]
@@ -15779,7 +15840,7 @@ function PreviewCard({
15779
15840
  }
15780
15841
 
15781
15842
  // src/components/atoms/icons/base_icons/Gear.tsx
15782
- var import_jsx_runtime22 = require("react/jsx-runtime");
15843
+ var import_jsx_runtime23 = require("react/jsx-runtime");
15783
15844
  function Gear({
15784
15845
  size = 24,
15785
15846
  color = "#1D1D1F",
@@ -15790,8 +15851,8 @@ function Gear({
15790
15851
  case 16:
15791
15852
  return {
15792
15853
  viewBox: "0 0 16 16",
15793
- path: /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(import_jsx_runtime22.Fragment, { children: [
15794
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15854
+ path: /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(import_jsx_runtime23.Fragment, { children: [
15855
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
15795
15856
  "path",
15796
15857
  {
15797
15858
  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",
@@ -15801,7 +15862,7 @@ function Gear({
15801
15862
  strokeLinejoin: "round"
15802
15863
  }
15803
15864
  ),
15804
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15865
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
15805
15866
  "path",
15806
15867
  {
15807
15868
  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",
@@ -15816,8 +15877,8 @@ function Gear({
15816
15877
  case 20:
15817
15878
  return {
15818
15879
  viewBox: "0 0 20 20",
15819
- path: /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(import_jsx_runtime22.Fragment, { children: [
15820
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15880
+ path: /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(import_jsx_runtime23.Fragment, { children: [
15881
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
15821
15882
  "path",
15822
15883
  {
15823
15884
  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",
@@ -15827,7 +15888,7 @@ function Gear({
15827
15888
  strokeLinejoin: "round"
15828
15889
  }
15829
15890
  ),
15830
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15891
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
15831
15892
  "path",
15832
15893
  {
15833
15894
  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",
@@ -15842,8 +15903,8 @@ function Gear({
15842
15903
  case 24:
15843
15904
  return {
15844
15905
  viewBox: "0 0 24 24",
15845
- path: /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(import_jsx_runtime22.Fragment, { children: [
15846
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15906
+ path: /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(import_jsx_runtime23.Fragment, { children: [
15907
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
15847
15908
  "path",
15848
15909
  {
15849
15910
  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",
@@ -15853,7 +15914,7 @@ function Gear({
15853
15914
  strokeLinejoin: "round"
15854
15915
  }
15855
15916
  ),
15856
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15917
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
15857
15918
  "path",
15858
15919
  {
15859
15920
  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",
@@ -15868,8 +15929,8 @@ function Gear({
15868
15929
  case 36:
15869
15930
  return {
15870
15931
  viewBox: "0 0 36 36",
15871
- path: /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(import_jsx_runtime22.Fragment, { children: [
15872
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15932
+ path: /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(import_jsx_runtime23.Fragment, { children: [
15933
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
15873
15934
  "path",
15874
15935
  {
15875
15936
  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",
@@ -15879,7 +15940,7 @@ function Gear({
15879
15940
  strokeLinejoin: "round"
15880
15941
  }
15881
15942
  ),
15882
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15943
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
15883
15944
  "path",
15884
15945
  {
15885
15946
  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",
@@ -15894,7 +15955,7 @@ function Gear({
15894
15955
  }
15895
15956
  };
15896
15957
  const { viewBox, path } = getIconData();
15897
- return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
15958
+ return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
15898
15959
  "svg",
15899
15960
  {
15900
15961
  width: size,
@@ -15908,7 +15969,7 @@ function Gear({
15908
15969
  }
15909
15970
 
15910
15971
  // src/components/atoms/icons/base_icons/Logout.tsx
15911
- var import_jsx_runtime23 = require("react/jsx-runtime");
15972
+ var import_jsx_runtime24 = require("react/jsx-runtime");
15912
15973
  function Logout({
15913
15974
  size = 24,
15914
15975
  color = "#1D1D1F",
@@ -15919,7 +15980,7 @@ function Logout({
15919
15980
  case 16:
15920
15981
  return {
15921
15982
  viewBox: "0 0 16 16",
15922
- path: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
15983
+ path: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
15923
15984
  "path",
15924
15985
  {
15925
15986
  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",
@@ -15933,7 +15994,7 @@ function Logout({
15933
15994
  case 20:
15934
15995
  return {
15935
15996
  viewBox: "0 0 20 20",
15936
- path: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
15997
+ path: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
15937
15998
  "path",
15938
15999
  {
15939
16000
  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",
@@ -15947,7 +16008,7 @@ function Logout({
15947
16008
  case 24:
15948
16009
  return {
15949
16010
  viewBox: "0 0 24 24",
15950
- path: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
16011
+ path: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
15951
16012
  "path",
15952
16013
  {
15953
16014
  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",
@@ -15961,7 +16022,7 @@ function Logout({
15961
16022
  case 36:
15962
16023
  return {
15963
16024
  viewBox: "0 0 36 36",
15964
- path: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
16025
+ path: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
15965
16026
  "path",
15966
16027
  {
15967
16028
  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",
@@ -15975,7 +16036,7 @@ function Logout({
15975
16036
  }
15976
16037
  };
15977
16038
  const { viewBox, path } = getIconData();
15978
- return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
16039
+ return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
15979
16040
  "svg",
15980
16041
  {
15981
16042
  width: size,
@@ -15989,7 +16050,7 @@ function Logout({
15989
16050
  }
15990
16051
 
15991
16052
  // src/components/atoms/icons/base_icons/Queue.tsx
15992
- var import_jsx_runtime24 = require("react/jsx-runtime");
16053
+ var import_jsx_runtime25 = require("react/jsx-runtime");
15993
16054
  function Queue({
15994
16055
  size = 24,
15995
16056
  color = "#1D1D1F",
@@ -16000,8 +16061,8 @@ function Queue({
16000
16061
  case 16:
16001
16062
  return {
16002
16063
  viewBox: "0 0 16 16",
16003
- path: /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(import_jsx_runtime24.Fragment, { children: [
16004
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
16064
+ path: /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(import_jsx_runtime25.Fragment, { children: [
16065
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
16005
16066
  "path",
16006
16067
  {
16007
16068
  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",
@@ -16011,7 +16072,7 @@ function Queue({
16011
16072
  strokeLinejoin: "round"
16012
16073
  }
16013
16074
  ),
16014
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
16075
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
16015
16076
  "path",
16016
16077
  {
16017
16078
  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",
@@ -16021,7 +16082,7 @@ function Queue({
16021
16082
  strokeLinejoin: "round"
16022
16083
  }
16023
16084
  ),
16024
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
16085
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
16025
16086
  "path",
16026
16087
  {
16027
16088
  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",
@@ -16036,8 +16097,8 @@ function Queue({
16036
16097
  case 20:
16037
16098
  return {
16038
16099
  viewBox: "0 0 20 20",
16039
- path: /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(import_jsx_runtime24.Fragment, { children: [
16040
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
16100
+ path: /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(import_jsx_runtime25.Fragment, { children: [
16101
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
16041
16102
  "path",
16042
16103
  {
16043
16104
  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",
@@ -16047,7 +16108,7 @@ function Queue({
16047
16108
  strokeLinejoin: "round"
16048
16109
  }
16049
16110
  ),
16050
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
16111
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
16051
16112
  "path",
16052
16113
  {
16053
16114
  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",
@@ -16057,7 +16118,7 @@ function Queue({
16057
16118
  strokeLinejoin: "round"
16058
16119
  }
16059
16120
  ),
16060
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
16121
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
16061
16122
  "path",
16062
16123
  {
16063
16124
  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",
@@ -16072,8 +16133,8 @@ function Queue({
16072
16133
  case 24:
16073
16134
  return {
16074
16135
  viewBox: "0 0 24 24",
16075
- path: /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(import_jsx_runtime24.Fragment, { children: [
16076
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
16136
+ path: /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(import_jsx_runtime25.Fragment, { children: [
16137
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
16077
16138
  "path",
16078
16139
  {
16079
16140
  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",
@@ -16083,7 +16144,7 @@ function Queue({
16083
16144
  strokeLinejoin: "round"
16084
16145
  }
16085
16146
  ),
16086
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
16147
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
16087
16148
  "path",
16088
16149
  {
16089
16150
  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",
@@ -16093,7 +16154,7 @@ function Queue({
16093
16154
  strokeLinejoin: "round"
16094
16155
  }
16095
16156
  ),
16096
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
16157
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
16097
16158
  "path",
16098
16159
  {
16099
16160
  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",
@@ -16108,8 +16169,8 @@ function Queue({
16108
16169
  case 36:
16109
16170
  return {
16110
16171
  viewBox: "0 0 36 36",
16111
- path: /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(import_jsx_runtime24.Fragment, { children: [
16112
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
16172
+ path: /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(import_jsx_runtime25.Fragment, { children: [
16173
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
16113
16174
  "path",
16114
16175
  {
16115
16176
  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",
@@ -16119,7 +16180,7 @@ function Queue({
16119
16180
  strokeLinejoin: "round"
16120
16181
  }
16121
16182
  ),
16122
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
16183
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
16123
16184
  "path",
16124
16185
  {
16125
16186
  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",
@@ -16129,7 +16190,7 @@ function Queue({
16129
16190
  strokeLinejoin: "round"
16130
16191
  }
16131
16192
  ),
16132
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
16193
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
16133
16194
  "path",
16134
16195
  {
16135
16196
  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",
@@ -16144,7 +16205,7 @@ function Queue({
16144
16205
  }
16145
16206
  };
16146
16207
  const { viewBox, path } = getIconData();
16147
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
16208
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
16148
16209
  "svg",
16149
16210
  {
16150
16211
  width: size,
@@ -16158,17 +16219,17 @@ function Queue({
16158
16219
  }
16159
16220
 
16160
16221
  // src/components/atoms/qtalo_logo/qtalo_logo.tsx
16161
- var import_jsx_runtime25 = require("react/jsx-runtime");
16222
+ var import_jsx_runtime26 = require("react/jsx-runtime");
16162
16223
  function QTLogo({ variant }) {
16163
16224
  if (variant == "monogram") {
16164
- return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
16225
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
16165
16226
  "svg",
16166
16227
  {
16167
16228
  xmlns: "http://www.w3.org/2000/svg",
16168
16229
  width: "40",
16169
16230
  height: "40",
16170
16231
  viewBox: "0 0 40 40",
16171
- children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
16232
+ children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
16172
16233
  "image",
16173
16234
  {
16174
16235
  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",
@@ -16181,14 +16242,14 @@ function QTLogo({ variant }) {
16181
16242
  }
16182
16243
  );
16183
16244
  } else {
16184
- return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
16245
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
16185
16246
  "svg",
16186
16247
  {
16187
16248
  xmlns: "http://www.w3.org/2000/svg",
16188
16249
  width: "140",
16189
16250
  height: "40",
16190
16251
  viewBox: "0 0 140 40",
16191
- children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
16252
+ children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
16192
16253
  "image",
16193
16254
  {
16194
16255
  href: "data:image/png;base64,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",
@@ -16204,63 +16265,63 @@ function QTLogo({ variant }) {
16204
16265
  }
16205
16266
 
16206
16267
  // src/components/molecules/buttons/nav_button/main_nav_button/main_nav_button.tsx
16207
- var import_clsx5 = __toESM(require("clsx"));
16208
- var import_jsx_runtime26 = require("react/jsx-runtime");
16268
+ var import_clsx6 = __toESM(require("clsx"));
16269
+ var import_jsx_runtime27 = require("react/jsx-runtime");
16209
16270
  function MainNavButton({ icon, label, active, onClick }) {
16210
- return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
16271
+ return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
16211
16272
  "div",
16212
16273
  {
16213
16274
  className: "w-min h-min flex flex-none flex-col place-items-center gap-2",
16214
16275
  onClick,
16215
16276
  children: [
16216
- /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
16277
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
16217
16278
  "div",
16218
16279
  {
16219
- className: (0, import_clsx5.default)(
16280
+ className: (0, import_clsx6.default)(
16220
16281
  "w-[44px] h-[44px] flex flex-none flex-col place-items-center place-content-center rounded-xl border-2 hover:border-qtpurple-500",
16221
16282
  active ? "border-qtpurple-500 qt-drop-shadow-100 bg-qtpurple-200" : "border-qtpurple-300 bg-white"
16222
16283
  ),
16223
16284
  children: icon
16224
16285
  }
16225
16286
  ),
16226
- /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("div", { className: "label-3-bold text-qtpurple-500 select-none", children: label })
16287
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: "label-3-bold text-qtpurple-500 select-none", children: label })
16227
16288
  ]
16228
16289
  }
16229
16290
  );
16230
16291
  }
16231
16292
 
16232
16293
  // src/components/organisms/nav_bar/nav_bar.tsx
16233
- var import_jsx_runtime27 = require("react/jsx-runtime");
16294
+ var import_jsx_runtime28 = require("react/jsx-runtime");
16234
16295
  function NavBar({ buttons = {} }) {
16235
- return /* @__PURE__ */ (0, import_jsx_runtime27.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: [
16236
- /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { className: "flex flex-col gap-8", children: [
16237
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(QTLogo, { variant: "monogram" }),
16238
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
16296
+ return /* @__PURE__ */ (0, import_jsx_runtime28.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: [
16297
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { className: "flex flex-col gap-8", children: [
16298
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(QTLogo, { variant: "monogram" }),
16299
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
16239
16300
  MainNavButton,
16240
16301
  {
16241
16302
  active: buttons.queue?.active,
16242
16303
  label: "Queue",
16243
- icon: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(Queue, { color: "#6558FD" }),
16304
+ icon: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(Queue, { color: "#6558FD" }),
16244
16305
  onClick: buttons.queue?.onClick
16245
16306
  }
16246
16307
  )
16247
16308
  ] }),
16248
- /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { className: "flex flex-col gap-8", children: [
16249
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
16309
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { className: "flex flex-col gap-8", children: [
16310
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
16250
16311
  MainNavButton,
16251
16312
  {
16252
16313
  active: buttons.account?.active,
16253
16314
  label: "Account",
16254
- icon: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(Gear, { color: "#6558FD" }),
16315
+ icon: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(Gear, { color: "#6558FD" }),
16255
16316
  onClick: buttons.account?.onClick
16256
16317
  }
16257
16318
  ),
16258
- /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
16319
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
16259
16320
  MainNavButton,
16260
16321
  {
16261
16322
  active: buttons.logout?.active,
16262
16323
  label: "Logout",
16263
- icon: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(Logout, { color: "#6558FD" }),
16324
+ icon: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(Logout, { color: "#6558FD" }),
16264
16325
  onClick: buttons.logout?.onClick
16265
16326
  }
16266
16327
  )
@@ -16269,14 +16330,14 @@ function NavBar({ buttons = {} }) {
16269
16330
  }
16270
16331
 
16271
16332
  // src/components/atoms/icons/category_icons/category_icon.tsx
16272
- var import_jsx_runtime28 = require("react/jsx-runtime");
16333
+ var import_jsx_runtime29 = require("react/jsx-runtime");
16273
16334
  function CategoryIcon({ size = 24, icon, variant }) {
16274
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
16335
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
16275
16336
  "div",
16276
16337
  {
16277
16338
  className: `flex-none`,
16278
16339
  style: { width: `${size}px`, height: `${size}px` },
16279
- children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { className: "w-full h-full", children: icon && getCategoryIcon(icon, variant, size) })
16340
+ children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { className: "w-full h-full", children: icon && getCategoryIcon(icon, variant, size) })
16280
16341
  }
16281
16342
  );
16282
16343
  }
@@ -16285,13 +16346,13 @@ function CategoryIcon({ size = 24, icon, variant }) {
16285
16346
  var import_react3 = require("react");
16286
16347
 
16287
16348
  // src/components/organisms/intel_card/intel_card.tsx
16288
- var import_clsx6 = __toESM(require("clsx"));
16349
+ var import_clsx7 = __toESM(require("clsx"));
16289
16350
 
16290
16351
  // src/components/molecules/text_content/intel_row/intel_row.tsx
16291
- var import_jsx_runtime29 = require("react/jsx-runtime");
16352
+ var import_jsx_runtime30 = require("react/jsx-runtime");
16292
16353
  function IntelRow({ boldText, text }) {
16293
- return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { className: "flex w-max body-small text-neutral-1 gap-2 max-w-full", children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { className: "flex break-words", children: /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("p", { children: [
16294
- /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("strong", { className: "body-small-bold", children: [
16354
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: "flex w-max body-small text-neutral-1 gap-2 max-w-full", children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: "flex break-words", children: /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("p", { children: [
16355
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("strong", { className: "body-small-bold", children: [
16295
16356
  boldText,
16296
16357
  ":"
16297
16358
  ] }),
@@ -16301,7 +16362,7 @@ function IntelRow({ boldText, text }) {
16301
16362
  }
16302
16363
 
16303
16364
  // src/components/organisms/intel_card/intel_card.tsx
16304
- var import_jsx_runtime30 = require("react/jsx-runtime");
16365
+ var import_jsx_runtime31 = require("react/jsx-runtime");
16305
16366
  function IntelCard({
16306
16367
  onRead,
16307
16368
  onSelected,
@@ -16322,10 +16383,10 @@ function IntelCard({
16322
16383
  return "";
16323
16384
  }
16324
16385
  };
16325
- return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
16386
+ return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
16326
16387
  "div",
16327
16388
  {
16328
- className: (0, import_clsx6.default)(
16389
+ className: (0, import_clsx7.default)(
16329
16390
  "flex flex-none gap-2 h-min w-full py-4 px-2",
16330
16391
  urgency == void 0 && "border-qtneutral-400",
16331
16392
  urgency == "low" && "bg-qtgreen-50 border-qtgreen-300",
@@ -16335,10 +16396,10 @@ function IntelCard({
16335
16396
  reversed ? "rounded-b-2xl border-t-[2px]" : "rounded-t-2xl border-b-[2px]"
16336
16397
  ),
16337
16398
  children: [
16338
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: "flex flex-col gap-4 place-items-center" }),
16339
- /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("div", { className: "flex flex-col gap-2 max-w-full", children: [
16340
- urgency && /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(IntelRow, { boldText: urgencyPrefix(), text: urgencyText }),
16341
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(IntelRow, { boldText: "Summary", text: summary })
16399
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("div", { className: "flex flex-col gap-4 place-items-center" }),
16400
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("div", { className: "flex flex-col gap-2 max-w-full", children: [
16401
+ urgency && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(IntelRow, { boldText: urgencyPrefix(), text: urgencyText }),
16402
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(IntelRow, { boldText: "Summary", text: summary })
16342
16403
  ] })
16343
16404
  ]
16344
16405
  }
@@ -16346,7 +16407,7 @@ function IntelCard({
16346
16407
  }
16347
16408
 
16348
16409
  // src/components/organisms/emails/single_event.tsx
16349
- var import_jsx_runtime31 = require("react/jsx-runtime");
16410
+ var import_jsx_runtime32 = require("react/jsx-runtime");
16350
16411
  function SingleEvent({
16351
16412
  urgency,
16352
16413
  service,
@@ -16366,7 +16427,7 @@ function SingleEvent({
16366
16427
  setExpanded(true);
16367
16428
  }
16368
16429
  }, [startExpanded]);
16369
- return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
16430
+ return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
16370
16431
  "div",
16371
16432
  {
16372
16433
  className: "flex flex-col rounded-3xl bg-qtneutral-200 py-4 px-4 gap-4 h-min",
@@ -16376,15 +16437,15 @@ function SingleEvent({
16376
16437
  }
16377
16438
  },
16378
16439
  children: [
16379
- /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("div", { className: "flex gap-2 place-items-center", children: [
16380
- /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
16440
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("div", { className: "flex gap-2 place-items-center", children: [
16441
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
16381
16442
  SecondaryCheckBox,
16382
16443
  {
16383
16444
  active: selected,
16384
16445
  onClick: () => setSelected(!selected)
16385
16446
  }
16386
16447
  ),
16387
- /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
16448
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
16388
16449
  CategoryIcon,
16389
16450
  {
16390
16451
  size: 30,
@@ -16392,8 +16453,8 @@ function SingleEvent({
16392
16453
  variant: urgency == "high" ? void 0 : urgency == "medium" ? "#FFD481" /* YELLOW */ : urgency == void 0 ? "none" /* OUTLINED */ : void 0
16393
16454
  }
16394
16455
  ),
16395
- /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("div", { className: "flex flex-col w-full h-min", children: [
16396
- /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
16456
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("div", { className: "flex flex-col w-full h-min", children: [
16457
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
16397
16458
  SenderSourceRow,
16398
16459
  {
16399
16460
  leftText: sender,
@@ -16403,12 +16464,12 @@ function SingleEvent({
16403
16464
  onClick: onExternal
16404
16465
  }
16405
16466
  ),
16406
- /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(SubjectLineRow, { text: subjectLine })
16467
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(SubjectLineRow, { text: subjectLine })
16407
16468
  ] })
16408
16469
  ] }),
16409
- expanded && /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(import_jsx_runtime31.Fragment, { children: [
16410
- /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("div", { children: [
16411
- /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
16470
+ expanded && /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(import_jsx_runtime32.Fragment, { children: [
16471
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("div", { children: [
16472
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
16412
16473
  IntelCard,
16413
16474
  {
16414
16475
  urgencyText: urgencyExplanation,
@@ -16418,7 +16479,7 @@ function SingleEvent({
16418
16479
  ),
16419
16480
  body
16420
16481
  ] }),
16421
- /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(BrandIcon, { service })
16482
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(BrandIcon, { service })
16422
16483
  ] })
16423
16484
  ]
16424
16485
  }
@@ -16426,8 +16487,8 @@ function SingleEvent({
16426
16487
  }
16427
16488
 
16428
16489
  // src/components/organisms/event_card/event_card.tsx
16429
- var import_clsx7 = __toESM(require("clsx"));
16430
- var import_jsx_runtime32 = require("react/jsx-runtime");
16490
+ var import_clsx8 = __toESM(require("clsx"));
16491
+ var import_jsx_runtime33 = require("react/jsx-runtime");
16431
16492
  function EventCard({
16432
16493
  eventType,
16433
16494
  eventData,
@@ -16438,9 +16499,9 @@ function EventCard({
16438
16499
  function getEventBody() {
16439
16500
  switch (eventType) {
16440
16501
  case "message" /* MESSAGE */:
16441
- return eventData ? eventData[0].eventBody : /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_jsx_runtime32.Fragment, {});
16502
+ return eventData ? eventData[0].eventBody : /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(import_jsx_runtime33.Fragment, {});
16442
16503
  case "email" /* EMAIL */:
16443
- return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_jsx_runtime32.Fragment, { children: eventData ? eventData.map((d, i) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
16504
+ return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(import_jsx_runtime33.Fragment, { children: eventData ? eventData.map((d, i) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
16444
16505
  SingleEvent,
16445
16506
  {
16446
16507
  urgency: d.urgency,
@@ -16455,9 +16516,9 @@ function EventCard({
16455
16516
  summary: d.summary
16456
16517
  },
16457
16518
  d.subjectLine
16458
- )) : /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_jsx_runtime32.Fragment, { children: " " }) });
16519
+ )) : /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(import_jsx_runtime33.Fragment, { children: " " }) });
16459
16520
  case "ticket" /* TICKET */:
16460
- return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_jsx_runtime32.Fragment, { children: eventData ? eventData.map((d, i) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
16521
+ return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(import_jsx_runtime33.Fragment, { children: eventData ? eventData.map((d, i) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
16461
16522
  SingleEvent,
16462
16523
  {
16463
16524
  urgency: d.urgency,
@@ -16470,21 +16531,21 @@ function EventCard({
16470
16531
  onExternal: () => window.open(d.link, "_blank"),
16471
16532
  summary: d.summary
16472
16533
  }
16473
- )) : /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_jsx_runtime32.Fragment, { children: " " }) });
16534
+ )) : /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(import_jsx_runtime33.Fragment, { children: " " }) });
16474
16535
  default:
16475
- return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_jsx_runtime32.Fragment, {});
16536
+ return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(import_jsx_runtime33.Fragment, {});
16476
16537
  }
16477
16538
  }
16478
- return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
16539
+ return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(
16479
16540
  "div",
16480
16541
  {
16481
- className: (0, import_clsx7.default)(
16542
+ className: (0, import_clsx8.default)(
16482
16543
  "flex flex-col rounded-2xl max-w-[765px] w-full max-h-full border-qtneutral-500 border-[2px] gap-8",
16483
16544
  eventType == "message" /* MESSAGE */ ? "bg-qtneutral-200" : "bg-white py-4 pl-4 pr-2"
16484
16545
  ),
16485
16546
  children: [
16486
- /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { className: "overflow-y-auto flex flex-col gap-4 w-full", children: getEventBody() }),
16487
- eventType == "message" /* MESSAGE */ && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
16547
+ /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("div", { className: "overflow-y-auto flex flex-col gap-4 w-full", children: getEventBody() }),
16548
+ eventType == "message" /* MESSAGE */ && /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
16488
16549
  IntelCard,
16489
16550
  {
16490
16551
  urgency: groupUrgency,
@@ -16502,7 +16563,7 @@ function EventCard({
16502
16563
  var import_dompurify = __toESM(require("dompurify"));
16503
16564
  var import_react_markdown = __toESM(require("react-markdown"));
16504
16565
  var import_rehype_raw = __toESM(require("rehype-raw"));
16505
- var import_jsx_runtime33 = require("react/jsx-runtime");
16566
+ var import_jsx_runtime34 = require("react/jsx-runtime");
16506
16567
  function EmailBody({
16507
16568
  subjectLine,
16508
16569
  to,
@@ -16514,24 +16575,25 @@ function EmailBody({
16514
16575
  body
16515
16576
  }) {
16516
16577
  const clean = import_dompurify.default.sanitize(body ?? "");
16517
- return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("div", { className: "flex flex-col gap-4 bg-white p-4 rounded-b-2xl overflow-auto", children: [
16518
- /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("div", { className: "flex flex-col gap-0.5", children: [
16519
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(MetadataRow, { metadata: [`Subject: ${subjectLine}`] }),
16520
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(MetadataRow, { metadata: [`To: ${to}`] }),
16521
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(MetadataRow, { metadata: [`Date: ${date}`] }),
16522
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(MetadataRow, { metadata: [`From: ${from}`] }),
16523
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(MetadataRow, { metadata: [`CC: ${CC}`] }),
16524
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(MetadataRow, { metadata: [`BCC: ${BCC}`] }),
16525
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(MetadataRow, { metadata: [`Attachments: ${attachments}`] })
16578
+ body = "Alex \u2014 this is getting flagged higher up. Please send me a status update on Project Alpha ASAP so I can respond accordingly.\n\n\u2014 Greg";
16579
+ return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("div", { className: "flex flex-col gap-4 bg-white p-4 rounded-b-2xl overflow-auto", children: [
16580
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("div", { className: "flex flex-col gap-0.5", children: [
16581
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(MetadataRow, { metadata: [`Subject: ${subjectLine}`] }),
16582
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(MetadataRow, { metadata: [`To: ${to}`] }),
16583
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(MetadataRow, { metadata: [`Date: ${date}`] }),
16584
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(MetadataRow, { metadata: [`From: ${from}`] }),
16585
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(MetadataRow, { metadata: [`CC: ${CC}`] }),
16586
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(MetadataRow, { metadata: [`BCC: ${BCC}`] }),
16587
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(MetadataRow, { metadata: [`Attachments: ${attachments}`] })
16526
16588
  ] }),
16527
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("hr", { className: "text-qtneutral-500" }),
16528
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("div", { className: "body-medium prose break-all whitespace-pre-line", children: body && /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
16589
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("hr", { className: "text-qtneutral-500" }),
16590
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { className: "body-medium prose break-all whitespace-pre-line", children: body && /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
16529
16591
  import_react_markdown.default,
16530
16592
  {
16531
16593
  children: body,
16532
16594
  rehypePlugins: [import_rehype_raw.default],
16533
16595
  components: {
16534
- img: ({ node, ...props }) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("img", { style: { maxWidth: "100%" }, ...props })
16596
+ img: ({ node, ...props }) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("img", { style: { maxWidth: "100%" }, ...props })
16535
16597
  // Apply custom components/styling
16536
16598
  }
16537
16599
  }
@@ -16540,39 +16602,39 @@ function EmailBody({
16540
16602
  }
16541
16603
 
16542
16604
  // src/components/organisms/chat_messages/chat_bubble/chat_bubble.tsx
16543
- var import_clsx9 = __toESM(require("clsx"));
16605
+ var import_clsx10 = __toESM(require("clsx"));
16544
16606
  var import_react4 = require("react");
16545
16607
 
16546
16608
  // src/components/atoms/emoji_pill/emoji_pill.tsx
16547
16609
  var import_emoji_dictionary = __toESM(require_lib7());
16548
- var import_jsx_runtime34 = require("react/jsx-runtime");
16610
+ var import_jsx_runtime35 = require("react/jsx-runtime");
16549
16611
  function EmojiPill({ emoji, count }) {
16550
- return /* @__PURE__ */ (0, import_jsx_runtime34.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: [
16612
+ return /* @__PURE__ */ (0, import_jsx_runtime35.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: [
16551
16613
  emoji && import_emoji_dictionary.default.getUnicode(emoji),
16552
- /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { className: "label-3-bold text-qtneutral-900", children: count })
16614
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { className: "label-3-bold text-qtneutral-900", children: count })
16553
16615
  ] });
16554
16616
  }
16555
16617
 
16556
16618
  // src/util/utilcomponents.tsx
16557
- var import_clsx8 = __toESM(require("clsx"));
16619
+ var import_clsx9 = __toESM(require("clsx"));
16558
16620
  var import_react_markdown2 = __toESM(require("react-markdown"));
16559
16621
  var import_remark_gfm = __toESM(require("remark-gfm"));
16560
- var import_jsx_runtime35 = require("react/jsx-runtime");
16622
+ var import_jsx_runtime36 = require("react/jsx-runtime");
16561
16623
  function MarkdownRenderer({ content, truncated }) {
16562
- return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
16624
+ return /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
16563
16625
  "div",
16564
16626
  {
16565
- className: (0, import_clsx8.default)(
16627
+ className: (0, import_clsx9.default)(
16566
16628
  "flex flex-col markdown break-all",
16567
16629
  truncated && "line-clamp-3"
16568
16630
  ),
16569
- children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(import_react_markdown2.default, { remarkPlugins: [import_remark_gfm.default], children: content })
16631
+ children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(import_react_markdown2.default, { remarkPlugins: [import_remark_gfm.default], children: content })
16570
16632
  }
16571
16633
  );
16572
16634
  }
16573
16635
 
16574
16636
  // src/components/organisms/chat_messages/chat_bubble/chat_bubble.tsx
16575
- var import_jsx_runtime36 = require("react/jsx-runtime");
16637
+ var import_jsx_runtime37 = require("react/jsx-runtime");
16576
16638
  function ChatBubble({
16577
16639
  summary,
16578
16640
  text,
@@ -16602,38 +16664,38 @@ function ChatBubble({
16602
16664
  setUniqueEmojis(ue);
16603
16665
  }
16604
16666
  }, [emojis]);
16605
- return /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("div", { className: (0, import_clsx9.default)(outbound ? "pl-8" : "pr-8"), children: /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
16667
+ return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: (0, import_clsx10.default)(outbound ? "pl-8" : "pr-8"), children: /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
16606
16668
  "div",
16607
16669
  {
16608
- className: (0, import_clsx9.default)(
16670
+ className: (0, import_clsx10.default)(
16609
16671
  "w-full p-4 bg-qtneutral-100 rounded-t-3xl flex flex-col gap-2",
16610
16672
  outbound ? "border-2 border-qtpurple-300" : "",
16611
16673
  outbound ? "rounded-bl-3xl" : "rounded-br-3xl"
16612
16674
  ),
16613
16675
  children: [
16614
- /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { className: "flex place-content-between", children: [
16615
- /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { className: "flex gap-2 place-items-center", children: [
16616
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("div", { className: "body-small-bold", children: name }),
16617
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("div", { className: "text-qtneutral-700 label-3", children: timestamp })
16676
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: "flex place-content-between", children: [
16677
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: "flex gap-2 place-items-center", children: [
16678
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: "body-small-bold", children: name }),
16679
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: "text-qtneutral-700 label-3", children: timestamp })
16618
16680
  ] }),
16619
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("div", { onClick: onExternal, children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(ExternalLink, { size: 16 }) })
16681
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { onClick: onExternal, children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(ExternalLink, { size: 16 }) })
16620
16682
  ] }),
16621
- /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { className: (0, import_clsx9.default)("flex flex-col gap-2", !expanded && " "), children: [
16622
- summary && truncatedText && /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { children: [
16623
- /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("p", { className: "body-small mb-2", children: [
16624
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("strong", { className: "body-small-bold", children: "Summary:" }),
16683
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: (0, import_clsx10.default)("flex flex-col gap-2", !expanded && " "), children: [
16684
+ summary && truncatedText && /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { children: [
16685
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("p", { className: "body-small mb-2", children: [
16686
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("strong", { className: "body-small-bold", children: "Summary:" }),
16625
16687
  " ",
16626
16688
  summary
16627
16689
  ] }),
16628
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("hr", { className: "border-qtneutral-500" })
16690
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("hr", { className: "border-qtneutral-500" })
16629
16691
  ] }),
16630
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
16692
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
16631
16693
  "div",
16632
16694
  {
16633
- className: (0, import_clsx9.default)(
16695
+ className: (0, import_clsx10.default)(
16634
16696
  "flex flex-none text-qtneutral-900 body-medium w-full"
16635
16697
  ),
16636
- children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
16698
+ children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
16637
16699
  MarkdownRenderer,
16638
16700
  {
16639
16701
  content: text || "",
@@ -16643,7 +16705,7 @@ function ChatBubble({
16643
16705
  }
16644
16706
  )
16645
16707
  ] }),
16646
- truncatedText && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
16708
+ truncatedText && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
16647
16709
  "div",
16648
16710
  {
16649
16711
  className: "qt-link select-none",
@@ -16651,19 +16713,19 @@ function ChatBubble({
16651
16713
  children: `${!expanded ? "Show" : "Hide"} full message`
16652
16714
  }
16653
16715
  ),
16654
- image && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("img", { src: image, alt: "", className: "rounded-xl" }),
16655
- /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { className: "flex gap-2", children: [
16656
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
16716
+ image && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("img", { src: image, alt: "", className: "rounded-xl" }),
16717
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: "flex gap-2", children: [
16718
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
16657
16719
  "div",
16658
16720
  {
16659
- className: (0, import_clsx9.default)(
16721
+ className: (0, import_clsx10.default)(
16660
16722
  "h-[24px] w-[24px] rounded-t-md bg-qtneutral-500 text-qtneutral-200 flex place-items-center place-content-center font-bold text-xs",
16661
16723
  outbound ? "rounded-bl-md" : "rounded-br-md"
16662
16724
  ),
16663
16725
  children: name ? name[0].toUpperCase() : ""
16664
16726
  }
16665
16727
  ),
16666
- uniqueEmojis.entries().map(([e, c]) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(EmojiPill, { emoji: e, count: c }))
16728
+ uniqueEmojis.entries().map(([e, c]) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(EmojiPill, { emoji: e, count: c }))
16667
16729
  ] })
16668
16730
  ]
16669
16731
  }
@@ -16671,10 +16733,10 @@ function ChatBubble({
16671
16733
  }
16672
16734
 
16673
16735
  // src/components/organisms/message_body/chat_body.tsx
16674
- var import_jsx_runtime37 = require("react/jsx-runtime");
16736
+ var import_jsx_runtime38 = require("react/jsx-runtime");
16675
16737
  function ChatBody({ messages }) {
16676
- return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: "p-4 rounded-2xl w-full", children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: "flex flex-col place-content-center gap-4", children: messages && messages.map((msg) => {
16677
- return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
16738
+ return /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { className: "p-4 rounded-2xl w-full", children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { className: "flex flex-col place-content-center gap-4", children: messages && messages.map((msg) => {
16739
+ return /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
16678
16740
  ChatBubble,
16679
16741
  {
16680
16742
  summary: msg.summary,
@@ -16691,8 +16753,8 @@ function ChatBody({ messages }) {
16691
16753
  }
16692
16754
 
16693
16755
  // src/components/organisms/message_body/ticket_body.tsx
16694
- var import_clsx10 = __toESM(require("clsx"));
16695
- var import_jsx_runtime38 = require("react/jsx-runtime");
16756
+ var import_clsx11 = __toESM(require("clsx"));
16757
+ var import_jsx_runtime39 = require("react/jsx-runtime");
16696
16758
  function TicketBody({
16697
16759
  issueNumber,
16698
16760
  notification,
@@ -16708,56 +16770,56 @@ function TicketBody({
16708
16770
  description,
16709
16771
  comments
16710
16772
  }) {
16711
- return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("div", { className: "flex flex-col gap-4 bg-white p-4 rounded-b-2xl max-w-full", children: [
16712
- /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("div", { className: "flex flex-col gap-0.5", children: [
16713
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(MetadataRow, { metadata: [`Issue: ${issueNumber}`] }),
16714
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(MetadataRow, { metadata: [`Notification: ${notification}`] }),
16715
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(MetadataRow, { metadata: [`Project: ${project}`] }),
16716
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(MetadataRow, { metadata: [`Task: ${task}`] })
16773
+ return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: "flex flex-col gap-4 bg-white p-4 rounded-b-2xl max-w-full", children: [
16774
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: "flex flex-col gap-0.5", children: [
16775
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(MetadataRow, { metadata: [`Issue: ${issueNumber}`] }),
16776
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(MetadataRow, { metadata: [`Notification: ${notification}`] }),
16777
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(MetadataRow, { metadata: [`Project: ${project}`] }),
16778
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(MetadataRow, { metadata: [`Task: ${task}`] })
16717
16779
  ] }),
16718
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("hr", { className: "text-qtneutral-500" }),
16719
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { className: "body-bold", children: "Issue" }),
16720
- /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("div", { className: "grid grid-cols-2 gap-4 body-small", children: [
16721
- /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("div", { className: "", children: [
16722
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children: "Due Date: " }),
16723
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children: "Start Date: " }),
16724
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children: "Assignees: " }),
16725
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children: "Reporter: " }),
16726
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children: "Team: " }),
16727
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children: "Location: " }),
16728
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children: "Related: " }),
16729
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children: "Description: " })
16780
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("hr", { className: "text-qtneutral-500" }),
16781
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { className: "body-bold", children: "Issue" }),
16782
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: "grid grid-cols-2 gap-4 body-small", children: [
16783
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: "", children: [
16784
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { children: "Due Date: " }),
16785
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { children: "Start Date: " }),
16786
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { children: "Assignees: " }),
16787
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { children: "Reporter: " }),
16788
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { children: "Team: " }),
16789
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { children: "Location: " }),
16790
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { children: "Related: " }),
16791
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { children: "Description: " })
16730
16792
  ] }),
16731
- /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("div", { className: "", children: [
16732
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children: dueDate || "None" }),
16733
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children: startDate || "None" }),
16734
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children: assignees || "None" }),
16735
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children: reporter || "None" }),
16736
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children: team || "None" }),
16737
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children: location || "None" }),
16738
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children: related || "None" }),
16739
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children: description || "None" })
16793
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: "", children: [
16794
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { children: dueDate || "None" }),
16795
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { children: startDate || "None" }),
16796
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { children: assignees || "None" }),
16797
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { children: reporter || "None" }),
16798
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { children: team || "None" }),
16799
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { children: location || "None" }),
16800
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { children: related || "None" }),
16801
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { children: description || "None" })
16740
16802
  ] }),
16741
16803
  comments && comments.map((c, i) => {
16742
- return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("div", { className: "flex col-span-2 flex-col gap-2 w-full", children: [
16743
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("hr", { className: "text-qtneutral-500" }),
16744
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { className: `${i == 0 ? "body-bold" : "body "}`, children: `${i == 0 ? "New" : ""} Comment` }),
16745
- /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
16804
+ return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: "flex col-span-2 flex-col gap-2 w-full", children: [
16805
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("hr", { className: "text-qtneutral-500" }),
16806
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { className: `${i == 0 ? "body-bold" : "body "}`, children: `${i == 0 ? "New" : ""} Comment` }),
16807
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
16746
16808
  "div",
16747
16809
  {
16748
16810
  className: `flex gap-2 ${i == 0 ? "body-small-bold" : "body-small"}`,
16749
16811
  children: [
16750
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children: c.name }),
16751
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children: c.timestamp })
16812
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { children: c.name }),
16813
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { children: c.timestamp })
16752
16814
  ]
16753
16815
  }
16754
16816
  ),
16755
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { children: c.text }),
16756
- /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("div", { className: "flex gap-2", children: [
16757
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
16817
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { children: c.text }),
16818
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: "flex gap-2", children: [
16819
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
16758
16820
  "div",
16759
16821
  {
16760
- className: (0, import_clsx10.default)(
16822
+ className: (0, import_clsx11.default)(
16761
16823
  "h-[24px] w-[24px] rounded-t-md rounded-br-md bg-qtneutral-500 text-qtneutral-200 flex place-items-center place-content-center font-bold text-xs"
16762
16824
  ),
16763
16825
  children: c.name ? c.name[0].toUpperCase() : ""
@@ -16767,7 +16829,7 @@ function TicketBody({
16767
16829
  acc.set(str, (acc.get(str) || 0) + 1);
16768
16830
  return acc;
16769
16831
  }, /* @__PURE__ */ new Map()).entries().map(([e, c2]) => {
16770
- return /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(EmojiPill, { emoji: e, count: c2 });
16832
+ return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(EmojiPill, { emoji: e, count: c2 });
16771
16833
  })
16772
16834
  ] })
16773
16835
  ] });
@@ -16777,7 +16839,7 @@ function TicketBody({
16777
16839
  }
16778
16840
 
16779
16841
  // src/components/atoms/icons/base_icons/CircleX.tsx
16780
- var import_jsx_runtime39 = require("react/jsx-runtime");
16842
+ var import_jsx_runtime40 = require("react/jsx-runtime");
16781
16843
  function CircleX({
16782
16844
  size = 24,
16783
16845
  color = "#1D1D1F",
@@ -16788,27 +16850,27 @@ function CircleX({
16788
16850
  case 16:
16789
16851
  return {
16790
16852
  viewBox: "0 0 16 16",
16791
- path: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "M6.66667 9.33333L8 8M8 8L9.33333 6.66667M8 8L6.66667 6.66667M8 8L9.33333 9.33333M14 8C14 8.78793 13.8448 9.56815 13.5433 10.2961C13.2417 11.0241 12.7998 11.6855 12.2426 12.2426C11.6855 12.7998 11.0241 13.2417 10.2961 13.5433C9.56815 13.8448 8.78793 14 8 14C7.21207 14 6.43185 13.8448 5.7039 13.5433C4.97595 13.2417 4.31451 12.7998 3.75736 12.2426C3.20021 11.6855 2.75825 11.0241 2.45672 10.2961C2.15519 9.56815 2 8.78793 2 8C2 6.4087 2.63214 4.88258 3.75736 3.75736C4.88258 2.63214 6.4087 2 8 2C9.5913 2 11.1174 2.63214 12.2426 3.75736C13.3679 4.88258 14 6.4087 14 8Z", stroke: color, "stroke-width": "1.25", "stroke-linecap": "round", "stroke-linejoin": "round" })
16853
+ path: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("path", { d: "M6.66667 9.33333L8 8M8 8L9.33333 6.66667M8 8L6.66667 6.66667M8 8L9.33333 9.33333M14 8C14 8.78793 13.8448 9.56815 13.5433 10.2961C13.2417 11.0241 12.7998 11.6855 12.2426 12.2426C11.6855 12.7998 11.0241 13.2417 10.2961 13.5433C9.56815 13.8448 8.78793 14 8 14C7.21207 14 6.43185 13.8448 5.7039 13.5433C4.97595 13.2417 4.31451 12.7998 3.75736 12.2426C3.20021 11.6855 2.75825 11.0241 2.45672 10.2961C2.15519 9.56815 2 8.78793 2 8C2 6.4087 2.63214 4.88258 3.75736 3.75736C4.88258 2.63214 6.4087 2 8 2C9.5913 2 11.1174 2.63214 12.2426 3.75736C13.3679 4.88258 14 6.4087 14 8Z", stroke: color, "stroke-width": "1.25", "stroke-linecap": "round", "stroke-linejoin": "round" })
16792
16854
  };
16793
16855
  case 20:
16794
16856
  return {
16795
16857
  viewBox: "0 0 20 20",
16796
- path: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "M8.33333 11.6667L10 10M10 10L11.6667 8.33333M10 10L8.33333 8.33333M10 10L11.6667 11.6667M17.5 10C17.5 10.9849 17.306 11.9602 16.9291 12.8701C16.5522 13.7801 15.9997 14.6069 15.3033 15.3033C14.6069 15.9997 13.7801 16.5522 12.8701 16.9291C11.9602 17.306 10.9849 17.5 10 17.5C9.01509 17.5 8.03982 17.306 7.12987 16.9291C6.21993 16.5522 5.39314 15.9997 4.6967 15.3033C4.00026 14.6069 3.44781 13.7801 3.0709 12.8701C2.69399 11.9602 2.5 10.9849 2.5 10C2.5 8.01088 3.29018 6.10322 4.6967 4.6967C6.10322 3.29018 8.01088 2.5 10 2.5C11.9891 2.5 13.8968 3.29018 15.3033 4.6967C16.7098 6.10322 17.5 8.01088 17.5 10Z", stroke: color, "stroke-width": "1.5", "stroke-linecap": "round", "stroke-linejoin": "round" })
16858
+ path: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("path", { d: "M8.33333 11.6667L10 10M10 10L11.6667 8.33333M10 10L8.33333 8.33333M10 10L11.6667 11.6667M17.5 10C17.5 10.9849 17.306 11.9602 16.9291 12.8701C16.5522 13.7801 15.9997 14.6069 15.3033 15.3033C14.6069 15.9997 13.7801 16.5522 12.8701 16.9291C11.9602 17.306 10.9849 17.5 10 17.5C9.01509 17.5 8.03982 17.306 7.12987 16.9291C6.21993 16.5522 5.39314 15.9997 4.6967 15.3033C4.00026 14.6069 3.44781 13.7801 3.0709 12.8701C2.69399 11.9602 2.5 10.9849 2.5 10C2.5 8.01088 3.29018 6.10322 4.6967 4.6967C6.10322 3.29018 8.01088 2.5 10 2.5C11.9891 2.5 13.8968 3.29018 15.3033 4.6967C16.7098 6.10322 17.5 8.01088 17.5 10Z", stroke: color, "stroke-width": "1.5", "stroke-linecap": "round", "stroke-linejoin": "round" })
16797
16859
  };
16798
16860
  case 24:
16799
16861
  return {
16800
16862
  viewBox: "0 0 24 24",
16801
- path: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "M10 14L12 12M12 12L14 10M12 12L10 10M12 12L14 14M21 12C21 13.1819 20.7672 14.3522 20.3149 15.4442C19.8626 16.5361 19.1997 17.5282 18.364 18.364C17.5282 19.1997 16.5361 19.8626 15.4442 20.3149C14.3522 20.7672 13.1819 21 12 21C10.8181 21 9.64778 20.7672 8.55585 20.3149C7.46392 19.8626 6.47177 19.1997 5.63604 18.364C4.80031 17.5282 4.13738 16.5361 3.68508 15.4442C3.23279 14.3522 3 13.1819 3 12C3 9.61305 3.94821 7.32387 5.63604 5.63604C7.32387 3.94821 9.61305 3 12 3C14.3869 3 16.6761 3.94821 18.364 5.63604C20.0518 7.32387 21 9.61305 21 12Z", stroke: color, "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round" })
16863
+ path: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("path", { d: "M10 14L12 12M12 12L14 10M12 12L10 10M12 12L14 14M21 12C21 13.1819 20.7672 14.3522 20.3149 15.4442C19.8626 16.5361 19.1997 17.5282 18.364 18.364C17.5282 19.1997 16.5361 19.8626 15.4442 20.3149C14.3522 20.7672 13.1819 21 12 21C10.8181 21 9.64778 20.7672 8.55585 20.3149C7.46392 19.8626 6.47177 19.1997 5.63604 18.364C4.80031 17.5282 4.13738 16.5361 3.68508 15.4442C3.23279 14.3522 3 13.1819 3 12C3 9.61305 3.94821 7.32387 5.63604 5.63604C7.32387 3.94821 9.61305 3 12 3C14.3869 3 16.6761 3.94821 18.364 5.63604C20.0518 7.32387 21 9.61305 21 12Z", stroke: color, "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round" })
16802
16864
  };
16803
16865
  case 36:
16804
16866
  return {
16805
16867
  viewBox: "0 0 36 36",
16806
- path: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "M15 21L18 18M18 18L21 15M18 18L15 15M18 18L21 21M31.5 18C31.5 19.7728 31.1508 21.5283 30.4724 23.1662C29.7939 24.8041 28.7995 26.2923 27.5459 27.5459C26.2923 28.7995 24.8041 29.7939 23.1662 30.4724C21.5283 31.1508 19.7728 31.5 18 31.5C16.2272 31.5 14.4717 31.1508 12.8338 30.4724C11.1959 29.7939 9.70765 28.7995 8.45406 27.5459C7.20047 26.2923 6.20606 24.8041 5.52763 23.1662C4.84919 21.5283 4.5 19.7728 4.5 18C4.5 14.4196 5.92232 10.9858 8.45406 8.45406C10.9858 5.92232 14.4196 4.5 18 4.5C21.5804 4.5 25.0142 5.92232 27.5459 8.45406C30.0777 10.9858 31.5 14.4196 31.5 18Z", stroke: color, "stroke-width": "2.25", "stroke-linecap": "round", "stroke-linejoin": "round" })
16868
+ path: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("path", { d: "M15 21L18 18M18 18L21 15M18 18L15 15M18 18L21 21M31.5 18C31.5 19.7728 31.1508 21.5283 30.4724 23.1662C29.7939 24.8041 28.7995 26.2923 27.5459 27.5459C26.2923 28.7995 24.8041 29.7939 23.1662 30.4724C21.5283 31.1508 19.7728 31.5 18 31.5C16.2272 31.5 14.4717 31.1508 12.8338 30.4724C11.1959 29.7939 9.70765 28.7995 8.45406 27.5459C7.20047 26.2923 6.20606 24.8041 5.52763 23.1662C4.84919 21.5283 4.5 19.7728 4.5 18C4.5 14.4196 5.92232 10.9858 8.45406 8.45406C10.9858 5.92232 14.4196 4.5 18 4.5C21.5804 4.5 25.0142 5.92232 27.5459 8.45406C30.0777 10.9858 31.5 14.4196 31.5 18Z", stroke: color, "stroke-width": "2.25", "stroke-linecap": "round", "stroke-linejoin": "round" })
16807
16869
  };
16808
16870
  }
16809
16871
  };
16810
16872
  const { viewBox, path } = getIconData();
16811
- return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
16873
+ return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
16812
16874
  "svg",
16813
16875
  {
16814
16876
  width: size,
@@ -16822,7 +16884,7 @@ function CircleX({
16822
16884
  }
16823
16885
 
16824
16886
  // src/components/atoms/icons/base_icons/Loading.tsx
16825
- var import_jsx_runtime40 = require("react/jsx-runtime");
16887
+ var import_jsx_runtime41 = require("react/jsx-runtime");
16826
16888
  function Loading({
16827
16889
  size = 24,
16828
16890
  color = "#1D1D1F",
@@ -16833,8 +16895,8 @@ function Loading({
16833
16895
  case 16:
16834
16896
  return {
16835
16897
  viewBox: "0 0 16 16",
16836
- path: /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(import_jsx_runtime40.Fragment, { children: [
16837
- /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
16898
+ path: /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(import_jsx_runtime41.Fragment, { children: [
16899
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
16838
16900
  "path",
16839
16901
  {
16840
16902
  d: "M11.4209 4.85221C10.466 3.81296 9.13351 3.19329 7.72528 3.13377C6.31705 3.07424 4.93704 3.57926 3.89779 4.53422C2.85854 5.48917 2.23887 6.82165 2.17935 8.22988C2.11983 9.63811 2.62485 11.0181 3.5798 12.0574C4.05501 12.5745 4.62461 12.9868 5.26063 13.2835C5.89665 13.5802 6.581 13.7417 7.28038 13.7713C7.97977 13.8008 8.68023 13.6932 9.33409 13.4557C9.99289 13.2137 10.5952 12.851 11.1124 12.3758C11.6296 11.9005 12.0418 11.3309 12.3385 10.6949C12.6353 10.0589 12.7968 9.37456 12.8263 8.67517",
@@ -16844,7 +16906,7 @@ function Loading({
16844
16906
  "stroke-linejoin": "round"
16845
16907
  }
16846
16908
  ),
16847
- /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
16909
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
16848
16910
  "path",
16849
16911
  {
16850
16912
  d: "M10.4362 5.7666L12.3556 5.49268L12.0771 3.56836",
@@ -16859,8 +16921,8 @@ function Loading({
16859
16921
  case 20:
16860
16922
  return {
16861
16923
  viewBox: "0 0 20 20",
16862
- path: /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(import_jsx_runtime40.Fragment, { children: [
16863
- /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
16924
+ path: /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(import_jsx_runtime41.Fragment, { children: [
16925
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
16864
16926
  "path",
16865
16927
  {
16866
16928
  d: "M14.2757 6.06538C13.082 4.76633 11.4164 3.99174 9.65611 3.91733C7.89583 3.84293 6.17081 4.4742 4.87175 5.6679C3.57269 6.86159 2.7981 8.52718 2.7237 10.2875C2.64929 12.0478 3.28057 13.7728 4.47426 15.0718C5.06828 15.7183 5.78027 16.2336 6.5753 16.6045C7.37033 16.9754 8.22576 17.1773 9.09999 17.2142C9.97423 17.2512 10.8498 17.1166 11.6671 16.8197C12.4906 16.5172 13.2436 16.0638 13.89 15.4698C14.5365 14.8758 15.0518 14.1638 15.4227 13.3688C15.7936 12.5738 15.9955 11.7183 16.0324 10.8441",
@@ -16870,7 +16932,7 @@ function Loading({
16870
16932
  "stroke-linejoin": "round"
16871
16933
  }
16872
16934
  ),
16873
- /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
16935
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
16874
16936
  "path",
16875
16937
  {
16876
16938
  d: "M13.0445 7.20838L15.4438 6.86597L15.0957 4.46057",
@@ -16885,8 +16947,8 @@ function Loading({
16885
16947
  case 24:
16886
16948
  return {
16887
16949
  viewBox: "0 0 24 24",
16888
- path: /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(import_jsx_runtime40.Fragment, { children: [
16889
- /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
16950
+ path: /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(import_jsx_runtime41.Fragment, { children: [
16951
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
16890
16952
  "path",
16891
16953
  {
16892
16954
  d: "M17.1304 7.27831C15.698 5.71944 13.6993 4.78994 11.5869 4.70065C9.4746 4.61137 7.40458 5.3689 5.84571 6.80133C4.28684 8.23376 3.35733 10.2325 3.26805 12.3448C3.17876 14.4572 3.93629 16.5272 5.36872 18.086C6.08155 18.8618 6.93594 19.4802 7.88997 19.9253C8.844 20.3704 9.87052 20.6126 10.9196 20.6569C11.9687 20.7013 13.0194 20.5397 14.0002 20.1835C14.9884 19.8206 15.8919 19.2765 16.6676 18.5636C17.4434 17.8508 18.0618 16.9964 18.5068 16.0424C18.9519 15.0884 19.1942 14.0618 19.2385 13.0128",
@@ -16896,7 +16958,7 @@ function Loading({
16896
16958
  "stroke-linejoin": "round"
16897
16959
  }
16898
16960
  ),
16899
- /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
16961
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
16900
16962
  "path",
16901
16963
  {
16902
16964
  d: "M15.6528 8.65003L18.5319 8.23914L18.1143 5.35266",
@@ -16911,8 +16973,8 @@ function Loading({
16911
16973
  case 36:
16912
16974
  return {
16913
16975
  viewBox: "0 0 36 36",
16914
- path: /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(import_jsx_runtime40.Fragment, { children: [
16915
- /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
16976
+ path: /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(import_jsx_runtime41.Fragment, { children: [
16977
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
16916
16978
  "path",
16917
16979
  {
16918
16980
  d: "M25.6966 10.9176C23.548 8.57929 20.5499 7.18503 17.3814 7.0511C14.2129 6.91717 11.1078 8.05347 8.76954 10.2021C6.43124 12.3508 5.03697 15.3488 4.90305 18.5173C4.76912 21.6859 5.90541 24.7909 8.05406 27.1292C9.1233 28.2928 10.4049 29.2204 11.8359 29.888C13.267 30.5557 14.8068 30.919 16.3804 30.9855C17.954 31.052 19.53 30.8097 21.0012 30.2754C22.4835 29.7309 23.8388 28.9148 25.0024 27.8456C26.166 26.7763 27.0936 25.4948 27.7612 24.0637C28.4289 22.6327 28.7922 21.0929 28.8587 19.5193",
@@ -16922,7 +16984,7 @@ function Loading({
16922
16984
  "stroke-linejoin": "round"
16923
16985
  }
16924
16986
  ),
16925
- /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
16987
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
16926
16988
  "path",
16927
16989
  {
16928
16990
  d: "M23.4797 12.975L27.7984 12.3587L27.1719 8.02893",
@@ -16937,7 +16999,7 @@ function Loading({
16937
16999
  }
16938
17000
  };
16939
17001
  const { viewBox, path } = getIconData();
16940
- return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
17002
+ return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
16941
17003
  "svg",
16942
17004
  {
16943
17005
  width: size,
@@ -16951,7 +17013,7 @@ function Loading({
16951
17013
  }
16952
17014
 
16953
17015
  // src/components/atoms/icons/base_icons/Search.tsx
16954
- var import_jsx_runtime41 = require("react/jsx-runtime");
17016
+ var import_jsx_runtime42 = require("react/jsx-runtime");
16955
17017
  function Search({
16956
17018
  size = 24,
16957
17019
  color = "#1D1D1F",
@@ -16962,7 +17024,7 @@ function Search({
16962
17024
  case 16:
16963
17025
  return {
16964
17026
  viewBox: "0 0 16 16",
16965
- path: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
17027
+ path: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
16966
17028
  "path",
16967
17029
  {
16968
17030
  d: "M14 14L10 10M11.3333 6.66667C11.3333 9.244 9.244 11.3333 6.66667 11.3333C4.08934 11.3333 2 9.244 2 6.66667C2 4.08934 4.08934 2 6.66667 2C9.244 2 11.3333 4.08934 11.3333 6.66667Z",
@@ -16976,7 +17038,7 @@ function Search({
16976
17038
  case 20:
16977
17039
  return {
16978
17040
  viewBox: "0 0 20 20",
16979
- path: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
17041
+ path: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
16980
17042
  "path",
16981
17043
  {
16982
17044
  d: "M17.5 17.5L12.5 12.5M14.1667 8.33333C14.1667 11.555 11.555 14.1667 8.33333 14.1667C5.11167 14.1667 2.5 11.555 2.5 8.33333C2.5 5.11167 5.11167 2.5 8.33333 2.5C11.555 2.5 14.1667 5.11167 14.1667 8.33333Z",
@@ -16990,7 +17052,7 @@ function Search({
16990
17052
  case 24:
16991
17053
  return {
16992
17054
  viewBox: "0 0 24 24",
16993
- path: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
17055
+ path: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
16994
17056
  "path",
16995
17057
  {
16996
17058
  d: "M21 21L15 15M17 10C17 13.866 13.866 17 10 17C6.13401 17 3 13.866 3 10C3 6.13401 6.13401 3 10 3C13.866 3 17 6.13401 17 10Z",
@@ -17004,7 +17066,7 @@ function Search({
17004
17066
  case 36:
17005
17067
  return {
17006
17068
  viewBox: "0 0 36 36",
17007
- path: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
17069
+ path: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
17008
17070
  "path",
17009
17071
  {
17010
17072
  d: "M31.5 31.5L22.5 22.5M25.5 15C25.5 20.799 20.799 25.5 15 25.5C9.20101 25.5 4.5 20.799 4.5 15C4.5 9.20101 9.20101 4.5 15 4.5C20.799 4.5 25.5 9.20101 25.5 15Z",
@@ -17018,7 +17080,7 @@ function Search({
17018
17080
  }
17019
17081
  };
17020
17082
  const { viewBox, path } = getIconData();
17021
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
17083
+ return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
17022
17084
  "svg",
17023
17085
  {
17024
17086
  width: size,
@@ -17033,7 +17095,7 @@ function Search({
17033
17095
 
17034
17096
  // src/components/organisms/search_bar/search_bar.tsx
17035
17097
  var import_react5 = require("react");
17036
- var import_jsx_runtime42 = require("react/jsx-runtime");
17098
+ var import_jsx_runtime43 = require("react/jsx-runtime");
17037
17099
  function SearchBar({ loading, results, onUpdate }) {
17038
17100
  const [query, setQuery] = (0, import_react5.useState)("");
17039
17101
  (0, import_react5.useEffect)(() => {
@@ -17045,10 +17107,10 @@ function SearchBar({ loading, results, onUpdate }) {
17045
17107
  const clearQuery = () => {
17046
17108
  setQuery("");
17047
17109
  };
17048
- return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)("div", { className: "w-full space-y-3", children: [
17049
- /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)("div", { className: "flex items-center px-4 py-2 rounded-full bg-gray-100 gap-2 text-gray-900", children: [
17050
- loading ? /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(Loading, {}) : /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(Search, {}),
17051
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
17110
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)("div", { className: "w-full space-y-3", children: [
17111
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)("div", { className: "flex items-center px-4 py-2 rounded-full bg-gray-100 gap-2 text-gray-900", children: [
17112
+ loading ? /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(Loading, {}) : /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(Search, {}),
17113
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
17052
17114
  "input",
17053
17115
  {
17054
17116
  type: "text",
@@ -17058,15 +17120,15 @@ function SearchBar({ loading, results, onUpdate }) {
17058
17120
  onChange: (e) => setQuery(e.target.value)
17059
17121
  }
17060
17122
  ),
17061
- query && /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("button", { onClick: clearQuery, children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(CircleX, {}) })
17123
+ query && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("button", { onClick: clearQuery, children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(CircleX, {}) })
17062
17124
  ] }),
17063
- results && /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)("div", { className: "text-sm", children: [
17064
- /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)("p", { className: "text-gray-700 font-medium", children: [
17125
+ results && /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)("div", { className: "text-sm", children: [
17126
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)("p", { className: "text-gray-700 font-medium", children: [
17065
17127
  "Search results (",
17066
17128
  results.reduce((acc, r) => acc + r.count, 0),
17067
17129
  "):"
17068
17130
  ] }),
17069
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("div", { className: "flex flex-wrap gap-2 mt-2", children: results.map((r) => /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
17131
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { className: "flex flex-wrap gap-2 mt-2", children: results.map((r) => /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
17070
17132
  "span",
17071
17133
  {
17072
17134
  className: "px-3 py-1 rounded-full bg-gray-100 text-gray-700",
@@ -17084,7 +17146,7 @@ function SearchBar({ loading, results, onUpdate }) {
17084
17146
  }
17085
17147
 
17086
17148
  // src/components/atoms/icons/base_icons/Mail.tsx
17087
- var import_jsx_runtime43 = require("react/jsx-runtime");
17149
+ var import_jsx_runtime44 = require("react/jsx-runtime");
17088
17150
  function Mail({
17089
17151
  size = 24,
17090
17152
  color = "#1D1D1F",
@@ -17095,7 +17157,7 @@ function Mail({
17095
17157
  case 16:
17096
17158
  return {
17097
17159
  viewBox: "0 0 16 16",
17098
- path: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
17160
+ path: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
17099
17161
  "path",
17100
17162
  {
17101
17163
  d: "M2 5.33337L7.2604 8.84031C7.70827 9.13888 8.29173 9.13888 8.7396 8.84031L14 5.33337M3.33333 12.6667H12.6667C13.403 12.6667 14 12.0698 14 11.3334V4.66671C14 3.93033 13.403 3.33337 12.6667 3.33337H3.33333C2.59695 3.33337 2 3.93033 2 4.66671V11.3334C2 12.0698 2.59695 12.6667 3.33333 12.6667Z",
@@ -17109,7 +17171,7 @@ function Mail({
17109
17171
  case 20:
17110
17172
  return {
17111
17173
  viewBox: "0 0 20 20",
17112
- path: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
17174
+ path: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
17113
17175
  "path",
17114
17176
  {
17115
17177
  d: "M2.5 6.66663L9.0755 11.0503C9.63533 11.4235 10.3647 11.4235 10.9245 11.0503L17.5 6.66663M4.16667 15.8333H15.8333C16.7538 15.8333 17.5 15.0871 17.5 14.1666V5.83329C17.5 4.91282 16.7538 4.16663 15.8333 4.16663H4.16667C3.24619 4.16663 2.5 4.91282 2.5 5.83329V14.1666C2.5 15.0871 3.24619 15.8333 4.16667 15.8333Z",
@@ -17123,7 +17185,7 @@ function Mail({
17123
17185
  case 24:
17124
17186
  return {
17125
17187
  viewBox: "0 0 24 24",
17126
- path: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
17188
+ path: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
17127
17189
  "path",
17128
17190
  {
17129
17191
  d: "M3 8L10.8906 13.2604C11.5624 13.7083 12.4376 13.7083 13.1094 13.2604L21 8M5 19H19C20.1046 19 21 18.1046 21 17V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19Z",
@@ -17137,7 +17199,7 @@ function Mail({
17137
17199
  case 36:
17138
17200
  return {
17139
17201
  viewBox: "0 0 36 36",
17140
- path: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
17202
+ path: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
17141
17203
  "path",
17142
17204
  {
17143
17205
  d: "M4.5 12L16.3359 19.8906C17.3436 20.5624 18.6564 20.5624 19.6641 19.8906L31.5 12M7.5 28.5H28.5C30.1569 28.5 31.5 27.1569 31.5 25.5V10.5C31.5 8.84315 30.1569 7.5 28.5 7.5H7.5C5.84315 7.5 4.5 8.84315 4.5 10.5V25.5C4.5 27.1569 5.84315 28.5 7.5 28.5Z",
@@ -17151,7 +17213,7 @@ function Mail({
17151
17213
  }
17152
17214
  };
17153
17215
  const { viewBox, path } = getIconData();
17154
- return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
17216
+ return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
17155
17217
  "svg",
17156
17218
  {
17157
17219
  width: size,
@@ -17165,7 +17227,7 @@ function Mail({
17165
17227
  }
17166
17228
 
17167
17229
  // src/components/atoms/icons/base_icons/PlusLarge.tsx
17168
- var import_jsx_runtime44 = require("react/jsx-runtime");
17230
+ var import_jsx_runtime45 = require("react/jsx-runtime");
17169
17231
  function PlusLarge({
17170
17232
  size = 24,
17171
17233
  color = "#1D1D1F",
@@ -17176,7 +17238,7 @@ function PlusLarge({
17176
17238
  case 16:
17177
17239
  return {
17178
17240
  viewBox: "0 0 16 16",
17179
- path: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
17241
+ path: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
17180
17242
  "path",
17181
17243
  {
17182
17244
  d: "M8.00033 2.66663V13.3333M13.3337 7.99996L2.66699 7.99996",
@@ -17190,7 +17252,7 @@ function PlusLarge({
17190
17252
  case 20:
17191
17253
  return {
17192
17254
  viewBox: "0 0 20 20",
17193
- path: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
17255
+ path: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
17194
17256
  "path",
17195
17257
  {
17196
17258
  d: "M9.99967 3.33337V16.6667M16.6663 10L3.33301 10",
@@ -17204,7 +17266,7 @@ function PlusLarge({
17204
17266
  case 24:
17205
17267
  return {
17206
17268
  viewBox: "0 0 24 24",
17207
- path: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
17269
+ path: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
17208
17270
  "path",
17209
17271
  {
17210
17272
  d: "M12 4V20M20 12L4 12",
@@ -17218,7 +17280,7 @@ function PlusLarge({
17218
17280
  case 36:
17219
17281
  return {
17220
17282
  viewBox: "0 0 36 36",
17221
- path: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
17283
+ path: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
17222
17284
  "path",
17223
17285
  {
17224
17286
  d: "M18 6V30M30 18L6 18",
@@ -17232,7 +17294,7 @@ function PlusLarge({
17232
17294
  }
17233
17295
  };
17234
17296
  const { viewBox, path } = getIconData();
17235
- return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
17297
+ return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
17236
17298
  "svg",
17237
17299
  {
17238
17300
  width: size,
@@ -17246,38 +17308,38 @@ function PlusLarge({
17246
17308
  }
17247
17309
 
17248
17310
  // src/components/molecules/buttons/nav_button/filter_nav_button/filter_nav_button.tsx
17249
- var import_clsx11 = __toESM(require("clsx"));
17250
- var import_jsx_runtime45 = require("react/jsx-runtime");
17311
+ var import_clsx12 = __toESM(require("clsx"));
17312
+ var import_jsx_runtime46 = require("react/jsx-runtime");
17251
17313
  function FilterNavButton({ icon, label, active, onClick }) {
17252
- return /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)(
17314
+ return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
17253
17315
  "div",
17254
17316
  {
17255
17317
  className: "w-min h-min flex flex-none flex-col place-items-center gap-2",
17256
17318
  onClick,
17257
17319
  children: [
17258
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
17320
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
17259
17321
  "div",
17260
17322
  {
17261
- className: (0, import_clsx11.default)(
17323
+ className: (0, import_clsx12.default)(
17262
17324
  "w-[44px] h-[44px] flex flex-none flex-col place-items-center place-content-center rounded-xl hover:bg-qtneutral-200 hover:border-2 hover:border-qtneutral-500"
17263
17325
  ),
17264
17326
  children: icon
17265
17327
  }
17266
17328
  ),
17267
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: "font-medium text-[9px] text-qtneutral-900 w-full text-center", children: label })
17329
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("div", { className: "font-medium text-[9px] text-qtneutral-900 w-full text-center", children: label })
17268
17330
  ]
17269
17331
  }
17270
17332
  );
17271
17333
  }
17272
17334
 
17273
17335
  // src/components/organisms/filter_bar/filter_bar.tsx
17274
- var import_jsx_runtime46 = require("react/jsx-runtime");
17336
+ var import_jsx_runtime47 = require("react/jsx-runtime");
17275
17337
  function FilterBar({ buttons }) {
17276
- return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)("div", { className: "flex flex-col w-[54px] place-items-center gap-4", children: [
17277
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
17338
+ return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: "flex flex-col w-[54px] place-items-center gap-4", children: [
17339
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
17278
17340
  FilterNavButton,
17279
17341
  {
17280
- icon: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
17342
+ icon: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
17281
17343
  FireIcon,
17282
17344
  {
17283
17345
  variant: buttons?.fires?.active ? void 0 : "none" /* OUTLINED */
@@ -17287,10 +17349,10 @@ function FilterBar({ buttons }) {
17287
17349
  onClick: buttons?.fires?.onClick
17288
17350
  }
17289
17351
  ),
17290
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
17352
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
17291
17353
  FilterNavButton,
17292
17354
  {
17293
- icon: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
17355
+ icon: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
17294
17356
  Mail,
17295
17357
  {
17296
17358
  size: 36,
@@ -17301,10 +17363,10 @@ function FilterBar({ buttons }) {
17301
17363
  onClick: buttons?.unread?.onClick
17302
17364
  }
17303
17365
  ),
17304
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
17366
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
17305
17367
  FilterNavButton,
17306
17368
  {
17307
- icon: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
17369
+ icon: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
17308
17370
  CheckBox,
17309
17371
  {
17310
17372
  size: 36,
@@ -17315,57 +17377,57 @@ function FilterBar({ buttons }) {
17315
17377
  onClick: buttons?.incomplete?.onClick
17316
17378
  }
17317
17379
  ),
17318
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("hr", { className: "w-full border-0.5 text-qtneutral-700" }),
17319
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
17380
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("hr", { className: "w-full border-0.5 text-qtneutral-700" }),
17381
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
17320
17382
  FilterNavButton,
17321
17383
  {
17322
- icon: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("div", { className: buttons?.slack?.active ? "" : "grayscale", children: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(SlackIcon, {}) }),
17384
+ icon: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: buttons?.slack?.active ? "" : "grayscale", children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(SlackIcon, {}) }),
17323
17385
  onClick: buttons?.slack?.onClick
17324
17386
  }
17325
17387
  ),
17326
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
17388
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
17327
17389
  FilterNavButton,
17328
17390
  {
17329
- icon: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("div", { className: buttons?.google_mail?.active ? "" : "grayscale", children: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(GoogleMailIcon, {}) }),
17391
+ icon: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: buttons?.google_mail?.active ? "" : "grayscale", children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(GoogleMailIcon, {}) }),
17330
17392
  onClick: buttons?.google_mail?.onClick
17331
17393
  }
17332
17394
  ),
17333
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
17395
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
17334
17396
  FilterNavButton,
17335
17397
  {
17336
- icon: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("div", { className: buttons?.google_calendar?.active ? "" : "grayscale", children: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(GoogleCalendarIcon, {}) }),
17398
+ icon: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: buttons?.google_calendar?.active ? "" : "grayscale", children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(GoogleCalendarIcon, {}) }),
17337
17399
  onClick: buttons?.google_calendar?.onClick
17338
17400
  }
17339
17401
  ),
17340
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
17402
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
17341
17403
  FilterNavButton,
17342
17404
  {
17343
- icon: /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)("div", { className: buttons?.atlassian_jira?.active ? "" : "grayscale", children: [
17344
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(AtlassianIcon, {}),
17405
+ icon: /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: buttons?.atlassian_jira?.active ? "" : "grayscale", children: [
17406
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(AtlassianIcon, {}),
17345
17407
  " "
17346
17408
  ] }),
17347
17409
  onClick: buttons?.atlassian_jira?.onClick
17348
17410
  }
17349
17411
  ),
17350
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
17412
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
17351
17413
  FilterNavButton,
17352
17414
  {
17353
- icon: /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)("div", { className: buttons?.microsoft_teams?.active ? "" : "grayscale", children: [
17354
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(MicrosoftTeamsIcon, {}),
17415
+ icon: /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: buttons?.microsoft_teams?.active ? "" : "grayscale", children: [
17416
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(MicrosoftTeamsIcon, {}),
17355
17417
  " "
17356
17418
  ] }),
17357
17419
  onClick: buttons?.microsoft_teams?.onClick
17358
17420
  }
17359
17421
  ),
17360
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
17422
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
17361
17423
  FilterNavButton,
17362
17424
  {
17363
- icon: /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
17425
+ icon: /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
17364
17426
  "div",
17365
17427
  {
17366
17428
  className: buttons?.microsoft_calendar?.active || buttons?.microsoft_mail?.active ? "" : "grayscale",
17367
17429
  children: [
17368
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(MicrosoftOutlookMailIcon, {}),
17430
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(MicrosoftOutlookMailIcon, {}),
17369
17431
  " "
17370
17432
  ]
17371
17433
  }
@@ -17373,15 +17435,15 @@ function FilterBar({ buttons }) {
17373
17435
  onClick: buttons?.microsoft_mail?.onClick || buttons?.microsoft_calendar?.onClick
17374
17436
  }
17375
17437
  ),
17376
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
17438
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
17377
17439
  FilterNavButton,
17378
17440
  {
17379
- icon: /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
17441
+ icon: /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
17380
17442
  "div",
17381
17443
  {
17382
17444
  className: buttons?.clickup?.active || buttons?.clickup?.active ? "" : "grayscale",
17383
17445
  children: [
17384
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(ClickupIcon, {}),
17446
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(ClickupIcon, {}),
17385
17447
  " "
17386
17448
  ]
17387
17449
  }
@@ -17389,8 +17451,8 @@ function FilterBar({ buttons }) {
17389
17451
  onClick: buttons?.clickup?.onClick
17390
17452
  }
17391
17453
  ),
17392
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("hr", { className: "w-full border-0.5 text-qtneutral-700" }),
17393
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("div", { onClick: buttons?.more?.onClick, children: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(FilterNavButton, { icon: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(PlusLarge, { size: 36 }) }) })
17454
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("hr", { className: "w-full border-0.5 text-qtneutral-700" }),
17455
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { onClick: buttons?.more?.onClick, children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(FilterNavButton, { icon: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(PlusLarge, { size: 36 }) }) })
17394
17456
  ] });
17395
17457
  }
17396
17458