qt-ui-kit 1.0.71 → 1.0.73

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -15254,7 +15254,7 @@ function MetadataRow({ metadata }) {
15254
15254
  }
15255
15255
 
15256
15256
  // src/components/organisms/preview_card/preview_card.tsx
15257
- import clsx4 from "clsx";
15257
+ import clsx5 from "clsx";
15258
15258
 
15259
15259
  // src/components/molecules/buttons/thumb_group/thumb_group.tsx
15260
15260
  import { useState } from "react";
@@ -15654,8 +15654,49 @@ function CategoryIconButton({ icon, label, active }) {
15654
15654
  );
15655
15655
  }
15656
15656
 
15657
- // src/components/organisms/preview_card/preview_card.tsx
15657
+ // src/components/molecules/dropdown/dropdown.tsx
15658
+ import clsx4 from "clsx";
15658
15659
  import { jsx as jsx21, jsxs as jsxs14 } from "react/jsx-runtime";
15660
+ function DropDown({
15661
+ title,
15662
+ items,
15663
+ activeItem,
15664
+ direction = "left",
15665
+ onItemClick
15666
+ }) {
15667
+ return /* @__PURE__ */ jsxs14("div", { className: "relative inline-block", children: [
15668
+ /* @__PURE__ */ jsx21(
15669
+ "div",
15670
+ {
15671
+ className: clsx4(
15672
+ "absolute w-3.5 h-3.5 bg-black rotate-45 shadow-md z-0",
15673
+ direction === "left" ? "left-[-6px] top-3" : "right-0 top-3"
15674
+ )
15675
+ }
15676
+ ),
15677
+ /* @__PURE__ */ jsxs14("div", { className: "bg-white rounded-2xl shadow-lg w-48 py-3 px-4 relative z-10", children: [
15678
+ /* @__PURE__ */ jsx21("div", { className: "text-xs font-bold text-gray-900 tracking-wide mb-2", children: title.toUpperCase() }),
15679
+ /* @__PURE__ */ jsx21("ul", { className: "text-sm text-gray-800 space-y-2", children: items.map((item) => /* @__PURE__ */ jsx21(
15680
+ "li",
15681
+ {
15682
+ onClick: (e) => {
15683
+ e.stopPropagation();
15684
+ onItemClick?.(item);
15685
+ },
15686
+ className: clsx4(
15687
+ "border-t border-gray-200 pt-2 cursor-pointer label-2 text-qtneutral-800 hover:text-qtpurple-500 !hover:label-2-bold",
15688
+ activeItem === item ? "text-indigo-600 font-semibold" : ""
15689
+ ),
15690
+ children: item
15691
+ },
15692
+ item
15693
+ )) })
15694
+ ] })
15695
+ ] });
15696
+ }
15697
+
15698
+ // src/components/organisms/preview_card/preview_card.tsx
15699
+ import { jsx as jsx22, jsxs as jsxs15 } from "react/jsx-runtime";
15659
15700
  function PreviewCard({
15660
15701
  eventID,
15661
15702
  onSelected,
@@ -15671,9 +15712,11 @@ function PreviewCard({
15671
15712
  onClickGoToSource,
15672
15713
  urgencyLevel,
15673
15714
  alert,
15674
- read
15715
+ read,
15716
+ onOverride
15675
15717
  }) {
15676
15718
  const [checked, setChecked] = useState2(false);
15719
+ const [overrideMenuOpen, setoverrideMenuOpen] = useState2(false);
15677
15720
  function getColorVariant(urgency) {
15678
15721
  switch (urgency) {
15679
15722
  case "high" /* HIGH */:
@@ -15692,10 +15735,10 @@ function PreviewCard({
15692
15735
  onChecked(eventID);
15693
15736
  }
15694
15737
  }
15695
- return /* @__PURE__ */ jsxs14(
15738
+ return /* @__PURE__ */ jsxs15(
15696
15739
  "div",
15697
15740
  {
15698
- className: clsx4(
15741
+ className: clsx5(
15699
15742
  " flex gap-4 h-min w-[409px] bg-neutral-6 rounded-3xl p-4 border-[2px] preview-card-shadow",
15700
15743
  selected ? "bg-qtpurple-200 border-qtpurple-200" : "",
15701
15744
  !read ? "border-qtpurple-500" : "border-neutral-6"
@@ -15705,20 +15748,42 @@ function PreviewCard({
15705
15748
  onSelected && onSelected(eventID);
15706
15749
  },
15707
15750
  children: [
15708
- /* @__PURE__ */ jsxs14("div", { className: "flex flex-col gap-4 place-items-center", children: [
15709
- /* @__PURE__ */ jsx21(SecondaryCheckBox, { active: checked, onClick: toggleChecked }),
15710
- /* @__PURE__ */ jsx21(BrandIcon, { service, size: 24 }),
15711
- urgencyLevel && /* @__PURE__ */ jsx21(
15712
- CategoryIconButton,
15713
- {
15714
- active: true,
15715
- icon: getCategoryIcon(
15716
- "fire" /* FIRE */,
15717
- getColorVariant(urgencyLevel)
15718
- )
15719
- }
15720
- ),
15721
- alert && /* @__PURE__ */ jsx21(
15751
+ /* @__PURE__ */ jsxs15("div", { className: "flex flex-col gap-4 place-items-center", children: [
15752
+ /* @__PURE__ */ jsx22(SecondaryCheckBox, { active: checked, onClick: toggleChecked }),
15753
+ /* @__PURE__ */ jsx22(BrandIcon, { service, size: 24 }),
15754
+ urgencyLevel && /* @__PURE__ */ jsxs15("div", { className: "relative", children: [
15755
+ /* @__PURE__ */ jsx22(
15756
+ "div",
15757
+ {
15758
+ onClick: (e) => {
15759
+ e.stopPropagation();
15760
+ setoverrideMenuOpen(!overrideMenuOpen);
15761
+ },
15762
+ children: /* @__PURE__ */ jsx22(
15763
+ CategoryIconButton,
15764
+ {
15765
+ active: true,
15766
+ icon: getCategoryIcon(
15767
+ "fire" /* FIRE */,
15768
+ getColorVariant(urgencyLevel)
15769
+ )
15770
+ }
15771
+ )
15772
+ }
15773
+ ),
15774
+ overrideMenuOpen && /* @__PURE__ */ jsx22("div", { className: "absolute left-full top-0 ml-2 z-50", children: /* @__PURE__ */ jsx22(
15775
+ DropDown,
15776
+ {
15777
+ items: ["Fire", "Clear"],
15778
+ title: "Set Urgency",
15779
+ onItemClick: (item) => {
15780
+ onOverride && onOverride(eventID, item);
15781
+ setoverrideMenuOpen(false);
15782
+ }
15783
+ }
15784
+ ) })
15785
+ ] }),
15786
+ alert && /* @__PURE__ */ jsx22(
15722
15787
  CategoryIconButton,
15723
15788
  {
15724
15789
  active: true,
@@ -15726,9 +15791,9 @@ function PreviewCard({
15726
15791
  }
15727
15792
  )
15728
15793
  ] }),
15729
- /* @__PURE__ */ jsxs14("div", { className: "flex flex-col gap-2 grow ", children: [
15730
- /* @__PURE__ */ jsxs14("div", { className: "flex flex-col grow gap-1", children: [
15731
- /* @__PURE__ */ jsx21(
15794
+ /* @__PURE__ */ jsxs15("div", { className: "flex flex-col gap-2 grow ", children: [
15795
+ /* @__PURE__ */ jsxs15("div", { className: "flex flex-col grow gap-1", children: [
15796
+ /* @__PURE__ */ jsx22(
15732
15797
  SenderSourceRow,
15733
15798
  {
15734
15799
  leftText: sender,
@@ -15738,12 +15803,12 @@ function PreviewCard({
15738
15803
  onClick: onClickGoToSource
15739
15804
  }
15740
15805
  ),
15741
- subjectLine && /* @__PURE__ */ jsx21(SubjectLineRow, { text: subjectLine }),
15742
- /* @__PURE__ */ jsx21(MetadataRow, { metadata })
15806
+ subjectLine && /* @__PURE__ */ jsx22(SubjectLineRow, { text: subjectLine }),
15807
+ /* @__PURE__ */ jsx22(MetadataRow, { metadata })
15743
15808
  ] }),
15744
- body && /* @__PURE__ */ jsxs14("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: [
15745
- /* @__PURE__ */ jsx21("p", { className: "line-clamp-4", children: body }),
15746
- /* @__PURE__ */ jsx21(ThumbGroup, {})
15809
+ body && /* @__PURE__ */ jsxs15("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: [
15810
+ /* @__PURE__ */ jsx22("p", { className: "line-clamp-4", children: body }),
15811
+ /* @__PURE__ */ jsx22(ThumbGroup, {})
15747
15812
  ] })
15748
15813
  ] })
15749
15814
  ]
@@ -15752,7 +15817,7 @@ function PreviewCard({
15752
15817
  }
15753
15818
 
15754
15819
  // src/components/atoms/icons/base_icons/Gear.tsx
15755
- import { Fragment as Fragment9, jsx as jsx22, jsxs as jsxs15 } from "react/jsx-runtime";
15820
+ import { Fragment as Fragment9, jsx as jsx23, jsxs as jsxs16 } from "react/jsx-runtime";
15756
15821
  function Gear({
15757
15822
  size = 24,
15758
15823
  color = "#1D1D1F",
@@ -15763,8 +15828,8 @@ function Gear({
15763
15828
  case 16:
15764
15829
  return {
15765
15830
  viewBox: "0 0 16 16",
15766
- path: /* @__PURE__ */ jsxs15(Fragment9, { children: [
15767
- /* @__PURE__ */ jsx22(
15831
+ path: /* @__PURE__ */ jsxs16(Fragment9, { children: [
15832
+ /* @__PURE__ */ jsx23(
15768
15833
  "path",
15769
15834
  {
15770
15835
  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",
@@ -15774,7 +15839,7 @@ function Gear({
15774
15839
  strokeLinejoin: "round"
15775
15840
  }
15776
15841
  ),
15777
- /* @__PURE__ */ jsx22(
15842
+ /* @__PURE__ */ jsx23(
15778
15843
  "path",
15779
15844
  {
15780
15845
  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",
@@ -15789,8 +15854,8 @@ function Gear({
15789
15854
  case 20:
15790
15855
  return {
15791
15856
  viewBox: "0 0 20 20",
15792
- path: /* @__PURE__ */ jsxs15(Fragment9, { children: [
15793
- /* @__PURE__ */ jsx22(
15857
+ path: /* @__PURE__ */ jsxs16(Fragment9, { children: [
15858
+ /* @__PURE__ */ jsx23(
15794
15859
  "path",
15795
15860
  {
15796
15861
  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",
@@ -15800,7 +15865,7 @@ function Gear({
15800
15865
  strokeLinejoin: "round"
15801
15866
  }
15802
15867
  ),
15803
- /* @__PURE__ */ jsx22(
15868
+ /* @__PURE__ */ jsx23(
15804
15869
  "path",
15805
15870
  {
15806
15871
  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",
@@ -15815,8 +15880,8 @@ function Gear({
15815
15880
  case 24:
15816
15881
  return {
15817
15882
  viewBox: "0 0 24 24",
15818
- path: /* @__PURE__ */ jsxs15(Fragment9, { children: [
15819
- /* @__PURE__ */ jsx22(
15883
+ path: /* @__PURE__ */ jsxs16(Fragment9, { children: [
15884
+ /* @__PURE__ */ jsx23(
15820
15885
  "path",
15821
15886
  {
15822
15887
  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",
@@ -15826,7 +15891,7 @@ function Gear({
15826
15891
  strokeLinejoin: "round"
15827
15892
  }
15828
15893
  ),
15829
- /* @__PURE__ */ jsx22(
15894
+ /* @__PURE__ */ jsx23(
15830
15895
  "path",
15831
15896
  {
15832
15897
  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",
@@ -15841,8 +15906,8 @@ function Gear({
15841
15906
  case 36:
15842
15907
  return {
15843
15908
  viewBox: "0 0 36 36",
15844
- path: /* @__PURE__ */ jsxs15(Fragment9, { children: [
15845
- /* @__PURE__ */ jsx22(
15909
+ path: /* @__PURE__ */ jsxs16(Fragment9, { children: [
15910
+ /* @__PURE__ */ jsx23(
15846
15911
  "path",
15847
15912
  {
15848
15913
  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",
@@ -15852,7 +15917,7 @@ function Gear({
15852
15917
  strokeLinejoin: "round"
15853
15918
  }
15854
15919
  ),
15855
- /* @__PURE__ */ jsx22(
15920
+ /* @__PURE__ */ jsx23(
15856
15921
  "path",
15857
15922
  {
15858
15923
  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",
@@ -15867,7 +15932,7 @@ function Gear({
15867
15932
  }
15868
15933
  };
15869
15934
  const { viewBox, path } = getIconData();
15870
- return /* @__PURE__ */ jsx22(
15935
+ return /* @__PURE__ */ jsx23(
15871
15936
  "svg",
15872
15937
  {
15873
15938
  width: size,
@@ -15881,7 +15946,7 @@ function Gear({
15881
15946
  }
15882
15947
 
15883
15948
  // src/components/atoms/icons/base_icons/Logout.tsx
15884
- import { jsx as jsx23 } from "react/jsx-runtime";
15949
+ import { jsx as jsx24 } from "react/jsx-runtime";
15885
15950
  function Logout({
15886
15951
  size = 24,
15887
15952
  color = "#1D1D1F",
@@ -15892,7 +15957,7 @@ function Logout({
15892
15957
  case 16:
15893
15958
  return {
15894
15959
  viewBox: "0 0 16 16",
15895
- path: /* @__PURE__ */ jsx23(
15960
+ path: /* @__PURE__ */ jsx24(
15896
15961
  "path",
15897
15962
  {
15898
15963
  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",
@@ -15906,7 +15971,7 @@ function Logout({
15906
15971
  case 20:
15907
15972
  return {
15908
15973
  viewBox: "0 0 20 20",
15909
- path: /* @__PURE__ */ jsx23(
15974
+ path: /* @__PURE__ */ jsx24(
15910
15975
  "path",
15911
15976
  {
15912
15977
  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",
@@ -15920,7 +15985,7 @@ function Logout({
15920
15985
  case 24:
15921
15986
  return {
15922
15987
  viewBox: "0 0 24 24",
15923
- path: /* @__PURE__ */ jsx23(
15988
+ path: /* @__PURE__ */ jsx24(
15924
15989
  "path",
15925
15990
  {
15926
15991
  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",
@@ -15934,7 +15999,7 @@ function Logout({
15934
15999
  case 36:
15935
16000
  return {
15936
16001
  viewBox: "0 0 36 36",
15937
- path: /* @__PURE__ */ jsx23(
16002
+ path: /* @__PURE__ */ jsx24(
15938
16003
  "path",
15939
16004
  {
15940
16005
  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",
@@ -15948,7 +16013,7 @@ function Logout({
15948
16013
  }
15949
16014
  };
15950
16015
  const { viewBox, path } = getIconData();
15951
- return /* @__PURE__ */ jsx23(
16016
+ return /* @__PURE__ */ jsx24(
15952
16017
  "svg",
15953
16018
  {
15954
16019
  width: size,
@@ -15962,7 +16027,7 @@ function Logout({
15962
16027
  }
15963
16028
 
15964
16029
  // src/components/atoms/icons/base_icons/Queue.tsx
15965
- import { Fragment as Fragment10, jsx as jsx24, jsxs as jsxs16 } from "react/jsx-runtime";
16030
+ import { Fragment as Fragment10, jsx as jsx25, jsxs as jsxs17 } from "react/jsx-runtime";
15966
16031
  function Queue({
15967
16032
  size = 24,
15968
16033
  color = "#1D1D1F",
@@ -15973,8 +16038,8 @@ function Queue({
15973
16038
  case 16:
15974
16039
  return {
15975
16040
  viewBox: "0 0 16 16",
15976
- path: /* @__PURE__ */ jsxs16(Fragment10, { children: [
15977
- /* @__PURE__ */ jsx24(
16041
+ path: /* @__PURE__ */ jsxs17(Fragment10, { children: [
16042
+ /* @__PURE__ */ jsx25(
15978
16043
  "path",
15979
16044
  {
15980
16045
  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",
@@ -15984,7 +16049,7 @@ function Queue({
15984
16049
  strokeLinejoin: "round"
15985
16050
  }
15986
16051
  ),
15987
- /* @__PURE__ */ jsx24(
16052
+ /* @__PURE__ */ jsx25(
15988
16053
  "path",
15989
16054
  {
15990
16055
  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",
@@ -15994,7 +16059,7 @@ function Queue({
15994
16059
  strokeLinejoin: "round"
15995
16060
  }
15996
16061
  ),
15997
- /* @__PURE__ */ jsx24(
16062
+ /* @__PURE__ */ jsx25(
15998
16063
  "path",
15999
16064
  {
16000
16065
  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",
@@ -16009,8 +16074,8 @@ function Queue({
16009
16074
  case 20:
16010
16075
  return {
16011
16076
  viewBox: "0 0 20 20",
16012
- path: /* @__PURE__ */ jsxs16(Fragment10, { children: [
16013
- /* @__PURE__ */ jsx24(
16077
+ path: /* @__PURE__ */ jsxs17(Fragment10, { children: [
16078
+ /* @__PURE__ */ jsx25(
16014
16079
  "path",
16015
16080
  {
16016
16081
  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",
@@ -16020,7 +16085,7 @@ function Queue({
16020
16085
  strokeLinejoin: "round"
16021
16086
  }
16022
16087
  ),
16023
- /* @__PURE__ */ jsx24(
16088
+ /* @__PURE__ */ jsx25(
16024
16089
  "path",
16025
16090
  {
16026
16091
  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",
@@ -16030,7 +16095,7 @@ function Queue({
16030
16095
  strokeLinejoin: "round"
16031
16096
  }
16032
16097
  ),
16033
- /* @__PURE__ */ jsx24(
16098
+ /* @__PURE__ */ jsx25(
16034
16099
  "path",
16035
16100
  {
16036
16101
  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",
@@ -16045,8 +16110,8 @@ function Queue({
16045
16110
  case 24:
16046
16111
  return {
16047
16112
  viewBox: "0 0 24 24",
16048
- path: /* @__PURE__ */ jsxs16(Fragment10, { children: [
16049
- /* @__PURE__ */ jsx24(
16113
+ path: /* @__PURE__ */ jsxs17(Fragment10, { children: [
16114
+ /* @__PURE__ */ jsx25(
16050
16115
  "path",
16051
16116
  {
16052
16117
  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",
@@ -16056,7 +16121,7 @@ function Queue({
16056
16121
  strokeLinejoin: "round"
16057
16122
  }
16058
16123
  ),
16059
- /* @__PURE__ */ jsx24(
16124
+ /* @__PURE__ */ jsx25(
16060
16125
  "path",
16061
16126
  {
16062
16127
  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",
@@ -16066,7 +16131,7 @@ function Queue({
16066
16131
  strokeLinejoin: "round"
16067
16132
  }
16068
16133
  ),
16069
- /* @__PURE__ */ jsx24(
16134
+ /* @__PURE__ */ jsx25(
16070
16135
  "path",
16071
16136
  {
16072
16137
  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",
@@ -16081,8 +16146,8 @@ function Queue({
16081
16146
  case 36:
16082
16147
  return {
16083
16148
  viewBox: "0 0 36 36",
16084
- path: /* @__PURE__ */ jsxs16(Fragment10, { children: [
16085
- /* @__PURE__ */ jsx24(
16149
+ path: /* @__PURE__ */ jsxs17(Fragment10, { children: [
16150
+ /* @__PURE__ */ jsx25(
16086
16151
  "path",
16087
16152
  {
16088
16153
  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",
@@ -16092,7 +16157,7 @@ function Queue({
16092
16157
  strokeLinejoin: "round"
16093
16158
  }
16094
16159
  ),
16095
- /* @__PURE__ */ jsx24(
16160
+ /* @__PURE__ */ jsx25(
16096
16161
  "path",
16097
16162
  {
16098
16163
  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",
@@ -16102,7 +16167,7 @@ function Queue({
16102
16167
  strokeLinejoin: "round"
16103
16168
  }
16104
16169
  ),
16105
- /* @__PURE__ */ jsx24(
16170
+ /* @__PURE__ */ jsx25(
16106
16171
  "path",
16107
16172
  {
16108
16173
  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",
@@ -16117,7 +16182,7 @@ function Queue({
16117
16182
  }
16118
16183
  };
16119
16184
  const { viewBox, path } = getIconData();
16120
- return /* @__PURE__ */ jsx24(
16185
+ return /* @__PURE__ */ jsx25(
16121
16186
  "svg",
16122
16187
  {
16123
16188
  width: size,
@@ -16131,17 +16196,17 @@ function Queue({
16131
16196
  }
16132
16197
 
16133
16198
  // src/components/atoms/qtalo_logo/qtalo_logo.tsx
16134
- import { jsx as jsx25 } from "react/jsx-runtime";
16199
+ import { jsx as jsx26 } from "react/jsx-runtime";
16135
16200
  function QTLogo({ variant }) {
16136
16201
  if (variant == "monogram") {
16137
- return /* @__PURE__ */ jsx25(
16202
+ return /* @__PURE__ */ jsx26(
16138
16203
  "svg",
16139
16204
  {
16140
16205
  xmlns: "http://www.w3.org/2000/svg",
16141
16206
  width: "40",
16142
16207
  height: "40",
16143
16208
  viewBox: "0 0 40 40",
16144
- children: /* @__PURE__ */ jsx25(
16209
+ children: /* @__PURE__ */ jsx26(
16145
16210
  "image",
16146
16211
  {
16147
16212
  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",
@@ -16154,14 +16219,14 @@ function QTLogo({ variant }) {
16154
16219
  }
16155
16220
  );
16156
16221
  } else {
16157
- return /* @__PURE__ */ jsx25(
16222
+ return /* @__PURE__ */ jsx26(
16158
16223
  "svg",
16159
16224
  {
16160
16225
  xmlns: "http://www.w3.org/2000/svg",
16161
16226
  width: "140",
16162
16227
  height: "40",
16163
16228
  viewBox: "0 0 140 40",
16164
- children: /* @__PURE__ */ jsx25(
16229
+ children: /* @__PURE__ */ jsx26(
16165
16230
  "image",
16166
16231
  {
16167
16232
  href: "data:image/png;base64,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",
@@ -16177,63 +16242,63 @@ function QTLogo({ variant }) {
16177
16242
  }
16178
16243
 
16179
16244
  // src/components/molecules/buttons/nav_button/main_nav_button/main_nav_button.tsx
16180
- import clsx5 from "clsx";
16181
- import { jsx as jsx26, jsxs as jsxs17 } from "react/jsx-runtime";
16245
+ import clsx6 from "clsx";
16246
+ import { jsx as jsx27, jsxs as jsxs18 } from "react/jsx-runtime";
16182
16247
  function MainNavButton({ icon, label, active, onClick }) {
16183
- return /* @__PURE__ */ jsxs17(
16248
+ return /* @__PURE__ */ jsxs18(
16184
16249
  "div",
16185
16250
  {
16186
16251
  className: "w-min h-min flex flex-none flex-col place-items-center gap-2",
16187
16252
  onClick,
16188
16253
  children: [
16189
- /* @__PURE__ */ jsx26(
16254
+ /* @__PURE__ */ jsx27(
16190
16255
  "div",
16191
16256
  {
16192
- className: clsx5(
16257
+ className: clsx6(
16193
16258
  "w-[44px] h-[44px] flex flex-none flex-col place-items-center place-content-center rounded-xl border-2 hover:border-qtpurple-500",
16194
16259
  active ? "border-qtpurple-500 qt-drop-shadow-100 bg-qtpurple-200" : "border-qtpurple-300 bg-white"
16195
16260
  ),
16196
16261
  children: icon
16197
16262
  }
16198
16263
  ),
16199
- /* @__PURE__ */ jsx26("div", { className: "label-3-bold text-qtpurple-500 select-none", children: label })
16264
+ /* @__PURE__ */ jsx27("div", { className: "label-3-bold text-qtpurple-500 select-none", children: label })
16200
16265
  ]
16201
16266
  }
16202
16267
  );
16203
16268
  }
16204
16269
 
16205
16270
  // src/components/organisms/nav_bar/nav_bar.tsx
16206
- import { jsx as jsx27, jsxs as jsxs18 } from "react/jsx-runtime";
16271
+ import { jsx as jsx28, jsxs as jsxs19 } from "react/jsx-runtime";
16207
16272
  function NavBar({ buttons = {} }) {
16208
- return /* @__PURE__ */ jsxs18("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: [
16209
- /* @__PURE__ */ jsxs18("div", { className: "flex flex-col gap-8", children: [
16210
- /* @__PURE__ */ jsx27(QTLogo, { variant: "monogram" }),
16211
- /* @__PURE__ */ jsx27(
16273
+ return /* @__PURE__ */ jsxs19("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: [
16274
+ /* @__PURE__ */ jsxs19("div", { className: "flex flex-col gap-8", children: [
16275
+ /* @__PURE__ */ jsx28(QTLogo, { variant: "monogram" }),
16276
+ /* @__PURE__ */ jsx28(
16212
16277
  MainNavButton,
16213
16278
  {
16214
16279
  active: buttons.queue?.active,
16215
16280
  label: "Queue",
16216
- icon: /* @__PURE__ */ jsx27(Queue, { color: "#6558FD" }),
16281
+ icon: /* @__PURE__ */ jsx28(Queue, { color: "#6558FD" }),
16217
16282
  onClick: buttons.queue?.onClick
16218
16283
  }
16219
16284
  )
16220
16285
  ] }),
16221
- /* @__PURE__ */ jsxs18("div", { className: "flex flex-col gap-8", children: [
16222
- /* @__PURE__ */ jsx27(
16286
+ /* @__PURE__ */ jsxs19("div", { className: "flex flex-col gap-8", children: [
16287
+ /* @__PURE__ */ jsx28(
16223
16288
  MainNavButton,
16224
16289
  {
16225
16290
  active: buttons.account?.active,
16226
16291
  label: "Account",
16227
- icon: /* @__PURE__ */ jsx27(Gear, { color: "#6558FD" }),
16292
+ icon: /* @__PURE__ */ jsx28(Gear, { color: "#6558FD" }),
16228
16293
  onClick: buttons.account?.onClick
16229
16294
  }
16230
16295
  ),
16231
- /* @__PURE__ */ jsx27(
16296
+ /* @__PURE__ */ jsx28(
16232
16297
  MainNavButton,
16233
16298
  {
16234
16299
  active: buttons.logout?.active,
16235
16300
  label: "Logout",
16236
- icon: /* @__PURE__ */ jsx27(Logout, { color: "#6558FD" }),
16301
+ icon: /* @__PURE__ */ jsx28(Logout, { color: "#6558FD" }),
16237
16302
  onClick: buttons.logout?.onClick
16238
16303
  }
16239
16304
  )
@@ -16242,14 +16307,14 @@ function NavBar({ buttons = {} }) {
16242
16307
  }
16243
16308
 
16244
16309
  // src/components/atoms/icons/category_icons/category_icon.tsx
16245
- import { jsx as jsx28 } from "react/jsx-runtime";
16310
+ import { jsx as jsx29 } from "react/jsx-runtime";
16246
16311
  function CategoryIcon({ size = 24, icon, variant }) {
16247
- return /* @__PURE__ */ jsx28(
16312
+ return /* @__PURE__ */ jsx29(
16248
16313
  "div",
16249
16314
  {
16250
16315
  className: `flex-none`,
16251
16316
  style: { width: `${size}px`, height: `${size}px` },
16252
- children: /* @__PURE__ */ jsx28("div", { className: "w-full h-full", children: icon && getCategoryIcon(icon, variant, size) })
16317
+ children: /* @__PURE__ */ jsx29("div", { className: "w-full h-full", children: icon && getCategoryIcon(icon, variant, size) })
16253
16318
  }
16254
16319
  );
16255
16320
  }
@@ -16258,13 +16323,13 @@ function CategoryIcon({ size = 24, icon, variant }) {
16258
16323
  import { useEffect, useState as useState3 } from "react";
16259
16324
 
16260
16325
  // src/components/organisms/intel_card/intel_card.tsx
16261
- import clsx6 from "clsx";
16326
+ import clsx7 from "clsx";
16262
16327
 
16263
16328
  // src/components/molecules/text_content/intel_row/intel_row.tsx
16264
- import { jsx as jsx29, jsxs as jsxs19 } from "react/jsx-runtime";
16329
+ import { jsx as jsx30, jsxs as jsxs20 } from "react/jsx-runtime";
16265
16330
  function IntelRow({ boldText, text }) {
16266
- return /* @__PURE__ */ jsx29("div", { className: "flex w-max body-small text-neutral-1 gap-2 max-w-full", children: /* @__PURE__ */ jsx29("div", { className: "flex break-words", children: /* @__PURE__ */ jsxs19("p", { children: [
16267
- /* @__PURE__ */ jsxs19("strong", { className: "body-small-bold", children: [
16331
+ return /* @__PURE__ */ jsx30("div", { className: "flex w-max body-small text-neutral-1 gap-2 max-w-full", children: /* @__PURE__ */ jsx30("div", { className: "flex break-words", children: /* @__PURE__ */ jsxs20("p", { children: [
16332
+ /* @__PURE__ */ jsxs20("strong", { className: "body-small-bold", children: [
16268
16333
  boldText,
16269
16334
  ":"
16270
16335
  ] }),
@@ -16274,7 +16339,7 @@ function IntelRow({ boldText, text }) {
16274
16339
  }
16275
16340
 
16276
16341
  // src/components/organisms/intel_card/intel_card.tsx
16277
- import { jsx as jsx30, jsxs as jsxs20 } from "react/jsx-runtime";
16342
+ import { jsx as jsx31, jsxs as jsxs21 } from "react/jsx-runtime";
16278
16343
  function IntelCard({
16279
16344
  onRead,
16280
16345
  onSelected,
@@ -16295,10 +16360,10 @@ function IntelCard({
16295
16360
  return "";
16296
16361
  }
16297
16362
  };
16298
- return /* @__PURE__ */ jsxs20(
16363
+ return /* @__PURE__ */ jsxs21(
16299
16364
  "div",
16300
16365
  {
16301
- className: clsx6(
16366
+ className: clsx7(
16302
16367
  "flex flex-none gap-2 h-min w-full py-4 px-2",
16303
16368
  urgency == void 0 && "border-qtneutral-400",
16304
16369
  urgency == "low" && "bg-qtgreen-50 border-qtgreen-300",
@@ -16308,10 +16373,10 @@ function IntelCard({
16308
16373
  reversed ? "rounded-b-2xl border-t-[2px]" : "rounded-t-2xl border-b-[2px]"
16309
16374
  ),
16310
16375
  children: [
16311
- /* @__PURE__ */ jsx30("div", { className: "flex flex-col gap-4 place-items-center" }),
16312
- /* @__PURE__ */ jsxs20("div", { className: "flex flex-col gap-2 max-w-full", children: [
16313
- urgency && /* @__PURE__ */ jsx30(IntelRow, { boldText: urgencyPrefix(), text: urgencyText }),
16314
- /* @__PURE__ */ jsx30(IntelRow, { boldText: "Summary", text: summary })
16376
+ /* @__PURE__ */ jsx31("div", { className: "flex flex-col gap-4 place-items-center" }),
16377
+ /* @__PURE__ */ jsxs21("div", { className: "flex flex-col gap-2 max-w-full", children: [
16378
+ urgency && /* @__PURE__ */ jsx31(IntelRow, { boldText: urgencyPrefix(), text: urgencyText }),
16379
+ /* @__PURE__ */ jsx31(IntelRow, { boldText: "Summary", text: summary })
16315
16380
  ] })
16316
16381
  ]
16317
16382
  }
@@ -16319,7 +16384,7 @@ function IntelCard({
16319
16384
  }
16320
16385
 
16321
16386
  // src/components/organisms/emails/single_event.tsx
16322
- import { Fragment as Fragment11, jsx as jsx31, jsxs as jsxs21 } from "react/jsx-runtime";
16387
+ import { Fragment as Fragment11, jsx as jsx32, jsxs as jsxs22 } from "react/jsx-runtime";
16323
16388
  function SingleEvent({
16324
16389
  urgency,
16325
16390
  service,
@@ -16339,7 +16404,7 @@ function SingleEvent({
16339
16404
  setExpanded(true);
16340
16405
  }
16341
16406
  }, [startExpanded]);
16342
- return /* @__PURE__ */ jsxs21(
16407
+ return /* @__PURE__ */ jsxs22(
16343
16408
  "div",
16344
16409
  {
16345
16410
  className: "flex flex-col rounded-3xl bg-qtneutral-200 py-4 px-4 gap-4 h-min",
@@ -16349,15 +16414,15 @@ function SingleEvent({
16349
16414
  }
16350
16415
  },
16351
16416
  children: [
16352
- /* @__PURE__ */ jsxs21("div", { className: "flex gap-2 place-items-center", children: [
16353
- /* @__PURE__ */ jsx31(
16417
+ /* @__PURE__ */ jsxs22("div", { className: "flex gap-2 place-items-center", children: [
16418
+ /* @__PURE__ */ jsx32(
16354
16419
  SecondaryCheckBox,
16355
16420
  {
16356
16421
  active: selected,
16357
16422
  onClick: () => setSelected(!selected)
16358
16423
  }
16359
16424
  ),
16360
- /* @__PURE__ */ jsx31(
16425
+ /* @__PURE__ */ jsx32(
16361
16426
  CategoryIcon,
16362
16427
  {
16363
16428
  size: 30,
@@ -16365,8 +16430,8 @@ function SingleEvent({
16365
16430
  variant: urgency == "high" ? void 0 : urgency == "medium" ? "#FFD481" /* YELLOW */ : urgency == void 0 ? "none" /* OUTLINED */ : void 0
16366
16431
  }
16367
16432
  ),
16368
- /* @__PURE__ */ jsxs21("div", { className: "flex flex-col w-full h-min", children: [
16369
- /* @__PURE__ */ jsx31(
16433
+ /* @__PURE__ */ jsxs22("div", { className: "flex flex-col w-full h-min", children: [
16434
+ /* @__PURE__ */ jsx32(
16370
16435
  SenderSourceRow,
16371
16436
  {
16372
16437
  leftText: sender,
@@ -16376,12 +16441,12 @@ function SingleEvent({
16376
16441
  onClick: onExternal
16377
16442
  }
16378
16443
  ),
16379
- /* @__PURE__ */ jsx31(SubjectLineRow, { text: subjectLine })
16444
+ /* @__PURE__ */ jsx32(SubjectLineRow, { text: subjectLine })
16380
16445
  ] })
16381
16446
  ] }),
16382
- expanded && /* @__PURE__ */ jsxs21(Fragment11, { children: [
16383
- /* @__PURE__ */ jsxs21("div", { children: [
16384
- /* @__PURE__ */ jsx31(
16447
+ expanded && /* @__PURE__ */ jsxs22(Fragment11, { children: [
16448
+ /* @__PURE__ */ jsxs22("div", { children: [
16449
+ /* @__PURE__ */ jsx32(
16385
16450
  IntelCard,
16386
16451
  {
16387
16452
  urgencyText: urgencyExplanation,
@@ -16391,7 +16456,7 @@ function SingleEvent({
16391
16456
  ),
16392
16457
  body
16393
16458
  ] }),
16394
- /* @__PURE__ */ jsx31(BrandIcon, { service })
16459
+ /* @__PURE__ */ jsx32(BrandIcon, { service })
16395
16460
  ] })
16396
16461
  ]
16397
16462
  }
@@ -16399,8 +16464,8 @@ function SingleEvent({
16399
16464
  }
16400
16465
 
16401
16466
  // src/components/organisms/event_card/event_card.tsx
16402
- import clsx7 from "clsx";
16403
- import { Fragment as Fragment12, jsx as jsx32, jsxs as jsxs22 } from "react/jsx-runtime";
16467
+ import clsx8 from "clsx";
16468
+ import { Fragment as Fragment12, jsx as jsx33, jsxs as jsxs23 } from "react/jsx-runtime";
16404
16469
  function EventCard({
16405
16470
  eventType,
16406
16471
  eventData,
@@ -16411,9 +16476,9 @@ function EventCard({
16411
16476
  function getEventBody() {
16412
16477
  switch (eventType) {
16413
16478
  case "message" /* MESSAGE */:
16414
- return eventData ? eventData[0].eventBody : /* @__PURE__ */ jsx32(Fragment12, {});
16479
+ return eventData ? eventData[0].eventBody : /* @__PURE__ */ jsx33(Fragment12, {});
16415
16480
  case "email" /* EMAIL */:
16416
- return /* @__PURE__ */ jsx32(Fragment12, { children: eventData ? eventData.map((d, i) => /* @__PURE__ */ jsx32(
16481
+ return /* @__PURE__ */ jsx33(Fragment12, { children: eventData ? eventData.map((d, i) => /* @__PURE__ */ jsx33(
16417
16482
  SingleEvent,
16418
16483
  {
16419
16484
  urgency: d.urgency,
@@ -16428,9 +16493,9 @@ function EventCard({
16428
16493
  summary: d.summary
16429
16494
  },
16430
16495
  d.subjectLine
16431
- )) : /* @__PURE__ */ jsx32(Fragment12, { children: " " }) });
16496
+ )) : /* @__PURE__ */ jsx33(Fragment12, { children: " " }) });
16432
16497
  case "ticket" /* TICKET */:
16433
- return /* @__PURE__ */ jsx32(Fragment12, { children: eventData ? eventData.map((d, i) => /* @__PURE__ */ jsx32(
16498
+ return /* @__PURE__ */ jsx33(Fragment12, { children: eventData ? eventData.map((d, i) => /* @__PURE__ */ jsx33(
16434
16499
  SingleEvent,
16435
16500
  {
16436
16501
  urgency: d.urgency,
@@ -16443,21 +16508,21 @@ function EventCard({
16443
16508
  onExternal: () => window.open(d.link, "_blank"),
16444
16509
  summary: d.summary
16445
16510
  }
16446
- )) : /* @__PURE__ */ jsx32(Fragment12, { children: " " }) });
16511
+ )) : /* @__PURE__ */ jsx33(Fragment12, { children: " " }) });
16447
16512
  default:
16448
- return /* @__PURE__ */ jsx32(Fragment12, {});
16513
+ return /* @__PURE__ */ jsx33(Fragment12, {});
16449
16514
  }
16450
16515
  }
16451
- return /* @__PURE__ */ jsxs22(
16516
+ return /* @__PURE__ */ jsxs23(
16452
16517
  "div",
16453
16518
  {
16454
- className: clsx7(
16519
+ className: clsx8(
16455
16520
  "flex flex-col rounded-2xl max-w-[765px] w-full max-h-full border-qtneutral-500 border-[2px] gap-8",
16456
16521
  eventType == "message" /* MESSAGE */ ? "bg-qtneutral-200" : "bg-white py-4 pl-4 pr-2"
16457
16522
  ),
16458
16523
  children: [
16459
- /* @__PURE__ */ jsx32("div", { className: "overflow-y-auto flex flex-col gap-4 w-full", children: getEventBody() }),
16460
- eventType == "message" /* MESSAGE */ && /* @__PURE__ */ jsx32(
16524
+ /* @__PURE__ */ jsx33("div", { className: "overflow-y-auto flex flex-col gap-4 w-full", children: getEventBody() }),
16525
+ eventType == "message" /* MESSAGE */ && /* @__PURE__ */ jsx33(
16461
16526
  IntelCard,
16462
16527
  {
16463
16528
  urgency: groupUrgency,
@@ -16475,7 +16540,7 @@ function EventCard({
16475
16540
  import DOMPurify from "dompurify";
16476
16541
  import ReactMarkdown from "react-markdown";
16477
16542
  import rehypeRaw from "rehype-raw";
16478
- import { jsx as jsx33, jsxs as jsxs23 } from "react/jsx-runtime";
16543
+ import { jsx as jsx34, jsxs as jsxs24 } from "react/jsx-runtime";
16479
16544
  function EmailBody({
16480
16545
  subjectLine,
16481
16546
  to,
@@ -16488,24 +16553,24 @@ function EmailBody({
16488
16553
  }) {
16489
16554
  const clean = DOMPurify.sanitize(body ?? "");
16490
16555
  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";
16491
- return /* @__PURE__ */ jsxs23("div", { className: "flex flex-col gap-4 bg-white p-4 rounded-b-2xl overflow-auto", children: [
16492
- /* @__PURE__ */ jsxs23("div", { className: "flex flex-col gap-0.5", children: [
16493
- /* @__PURE__ */ jsx33(MetadataRow, { metadata: [`Subject: ${subjectLine}`] }),
16494
- /* @__PURE__ */ jsx33(MetadataRow, { metadata: [`To: ${to}`] }),
16495
- /* @__PURE__ */ jsx33(MetadataRow, { metadata: [`Date: ${date}`] }),
16496
- /* @__PURE__ */ jsx33(MetadataRow, { metadata: [`From: ${from}`] }),
16497
- /* @__PURE__ */ jsx33(MetadataRow, { metadata: [`CC: ${CC}`] }),
16498
- /* @__PURE__ */ jsx33(MetadataRow, { metadata: [`BCC: ${BCC}`] }),
16499
- /* @__PURE__ */ jsx33(MetadataRow, { metadata: [`Attachments: ${attachments}`] })
16556
+ return /* @__PURE__ */ jsxs24("div", { className: "flex flex-col gap-4 bg-white p-4 rounded-b-2xl overflow-auto", children: [
16557
+ /* @__PURE__ */ jsxs24("div", { className: "flex flex-col gap-0.5", children: [
16558
+ /* @__PURE__ */ jsx34(MetadataRow, { metadata: [`Subject: ${subjectLine}`] }),
16559
+ /* @__PURE__ */ jsx34(MetadataRow, { metadata: [`To: ${to}`] }),
16560
+ /* @__PURE__ */ jsx34(MetadataRow, { metadata: [`Date: ${date}`] }),
16561
+ /* @__PURE__ */ jsx34(MetadataRow, { metadata: [`From: ${from}`] }),
16562
+ /* @__PURE__ */ jsx34(MetadataRow, { metadata: [`CC: ${CC}`] }),
16563
+ /* @__PURE__ */ jsx34(MetadataRow, { metadata: [`BCC: ${BCC}`] }),
16564
+ /* @__PURE__ */ jsx34(MetadataRow, { metadata: [`Attachments: ${attachments}`] })
16500
16565
  ] }),
16501
- /* @__PURE__ */ jsx33("hr", { className: "text-qtneutral-500" }),
16502
- /* @__PURE__ */ jsx33("div", { className: "body-medium prose break-all whitespace-pre-line", children: body && /* @__PURE__ */ jsx33(
16566
+ /* @__PURE__ */ jsx34("hr", { className: "text-qtneutral-500" }),
16567
+ /* @__PURE__ */ jsx34("div", { className: "body-medium prose break-all whitespace-pre-line", children: body && /* @__PURE__ */ jsx34(
16503
16568
  ReactMarkdown,
16504
16569
  {
16505
16570
  children: body,
16506
16571
  rehypePlugins: [rehypeRaw],
16507
16572
  components: {
16508
- img: ({ node, ...props }) => /* @__PURE__ */ jsx33("img", { style: { maxWidth: "100%" }, ...props })
16573
+ img: ({ node, ...props }) => /* @__PURE__ */ jsx34("img", { style: { maxWidth: "100%" }, ...props })
16509
16574
  // Apply custom components/styling
16510
16575
  }
16511
16576
  }
@@ -16514,39 +16579,39 @@ function EmailBody({
16514
16579
  }
16515
16580
 
16516
16581
  // src/components/organisms/chat_messages/chat_bubble/chat_bubble.tsx
16517
- import clsx9 from "clsx";
16582
+ import clsx10 from "clsx";
16518
16583
  import { useEffect as useEffect2, useState as useState4 } from "react";
16519
16584
 
16520
16585
  // src/components/atoms/emoji_pill/emoji_pill.tsx
16521
16586
  var import_emoji_dictionary = __toESM(require_lib7());
16522
- import { jsx as jsx34, jsxs as jsxs24 } from "react/jsx-runtime";
16587
+ import { jsx as jsx35, jsxs as jsxs25 } from "react/jsx-runtime";
16523
16588
  function EmojiPill({ emoji, count }) {
16524
- return /* @__PURE__ */ jsxs24("div", { className: "flex rounded-2xl bg-qtneutral-300 w-min py-0.5 px-4 place-items-center place-content-center gap-1", children: [
16589
+ return /* @__PURE__ */ jsxs25("div", { className: "flex rounded-2xl bg-qtneutral-300 w-min py-0.5 px-4 place-items-center place-content-center gap-1", children: [
16525
16590
  emoji && import_emoji_dictionary.default.getUnicode(emoji),
16526
- /* @__PURE__ */ jsx34("div", { className: "label-3-bold text-qtneutral-900", children: count })
16591
+ /* @__PURE__ */ jsx35("div", { className: "label-3-bold text-qtneutral-900", children: count })
16527
16592
  ] });
16528
16593
  }
16529
16594
 
16530
16595
  // src/util/utilcomponents.tsx
16531
- import clsx8 from "clsx";
16596
+ import clsx9 from "clsx";
16532
16597
  import ReactMarkdown2 from "react-markdown";
16533
16598
  import remarkGfm from "remark-gfm";
16534
- import { jsx as jsx35 } from "react/jsx-runtime";
16599
+ import { jsx as jsx36 } from "react/jsx-runtime";
16535
16600
  function MarkdownRenderer({ content, truncated }) {
16536
- return /* @__PURE__ */ jsx35(
16601
+ return /* @__PURE__ */ jsx36(
16537
16602
  "div",
16538
16603
  {
16539
- className: clsx8(
16604
+ className: clsx9(
16540
16605
  "flex flex-col markdown break-all",
16541
16606
  truncated && "line-clamp-3"
16542
16607
  ),
16543
- children: /* @__PURE__ */ jsx35(ReactMarkdown2, { remarkPlugins: [remarkGfm], children: content })
16608
+ children: /* @__PURE__ */ jsx36(ReactMarkdown2, { remarkPlugins: [remarkGfm], children: content })
16544
16609
  }
16545
16610
  );
16546
16611
  }
16547
16612
 
16548
16613
  // src/components/organisms/chat_messages/chat_bubble/chat_bubble.tsx
16549
- import { jsx as jsx36, jsxs as jsxs25 } from "react/jsx-runtime";
16614
+ import { jsx as jsx37, jsxs as jsxs26 } from "react/jsx-runtime";
16550
16615
  function ChatBubble({
16551
16616
  summary,
16552
16617
  text,
@@ -16576,38 +16641,38 @@ function ChatBubble({
16576
16641
  setUniqueEmojis(ue);
16577
16642
  }
16578
16643
  }, [emojis]);
16579
- return /* @__PURE__ */ jsx36("div", { className: clsx9(outbound ? "pl-8" : "pr-8"), children: /* @__PURE__ */ jsxs25(
16644
+ return /* @__PURE__ */ jsx37("div", { className: clsx10(outbound ? "pl-8" : "pr-8"), children: /* @__PURE__ */ jsxs26(
16580
16645
  "div",
16581
16646
  {
16582
- className: clsx9(
16647
+ className: clsx10(
16583
16648
  "w-full p-4 bg-qtneutral-100 rounded-t-3xl flex flex-col gap-2",
16584
16649
  outbound ? "border-2 border-qtpurple-300" : "",
16585
16650
  outbound ? "rounded-bl-3xl" : "rounded-br-3xl"
16586
16651
  ),
16587
16652
  children: [
16588
- /* @__PURE__ */ jsxs25("div", { className: "flex place-content-between", children: [
16589
- /* @__PURE__ */ jsxs25("div", { className: "flex gap-2 place-items-center", children: [
16590
- /* @__PURE__ */ jsx36("div", { className: "body-small-bold", children: name }),
16591
- /* @__PURE__ */ jsx36("div", { className: "text-qtneutral-700 label-3", children: timestamp })
16653
+ /* @__PURE__ */ jsxs26("div", { className: "flex place-content-between", children: [
16654
+ /* @__PURE__ */ jsxs26("div", { className: "flex gap-2 place-items-center", children: [
16655
+ /* @__PURE__ */ jsx37("div", { className: "body-small-bold", children: name }),
16656
+ /* @__PURE__ */ jsx37("div", { className: "text-qtneutral-700 label-3", children: timestamp })
16592
16657
  ] }),
16593
- /* @__PURE__ */ jsx36("div", { onClick: onExternal, children: /* @__PURE__ */ jsx36(ExternalLink, { size: 16 }) })
16658
+ /* @__PURE__ */ jsx37("div", { onClick: onExternal, children: /* @__PURE__ */ jsx37(ExternalLink, { size: 16 }) })
16594
16659
  ] }),
16595
- /* @__PURE__ */ jsxs25("div", { className: clsx9("flex flex-col gap-2", !expanded && " "), children: [
16596
- summary && truncatedText && /* @__PURE__ */ jsxs25("div", { children: [
16597
- /* @__PURE__ */ jsxs25("p", { className: "body-small mb-2", children: [
16598
- /* @__PURE__ */ jsx36("strong", { className: "body-small-bold", children: "Summary:" }),
16660
+ /* @__PURE__ */ jsxs26("div", { className: clsx10("flex flex-col gap-2", !expanded && " "), children: [
16661
+ summary && truncatedText && /* @__PURE__ */ jsxs26("div", { children: [
16662
+ /* @__PURE__ */ jsxs26("p", { className: "body-small mb-2", children: [
16663
+ /* @__PURE__ */ jsx37("strong", { className: "body-small-bold", children: "Summary:" }),
16599
16664
  " ",
16600
16665
  summary
16601
16666
  ] }),
16602
- /* @__PURE__ */ jsx36("hr", { className: "border-qtneutral-500" })
16667
+ /* @__PURE__ */ jsx37("hr", { className: "border-qtneutral-500" })
16603
16668
  ] }),
16604
- /* @__PURE__ */ jsx36(
16669
+ /* @__PURE__ */ jsx37(
16605
16670
  "div",
16606
16671
  {
16607
- className: clsx9(
16672
+ className: clsx10(
16608
16673
  "flex flex-none text-qtneutral-900 body-medium w-full"
16609
16674
  ),
16610
- children: /* @__PURE__ */ jsx36(
16675
+ children: /* @__PURE__ */ jsx37(
16611
16676
  MarkdownRenderer,
16612
16677
  {
16613
16678
  content: text || "",
@@ -16617,7 +16682,7 @@ function ChatBubble({
16617
16682
  }
16618
16683
  )
16619
16684
  ] }),
16620
- truncatedText && /* @__PURE__ */ jsx36(
16685
+ truncatedText && /* @__PURE__ */ jsx37(
16621
16686
  "div",
16622
16687
  {
16623
16688
  className: "qt-link select-none",
@@ -16625,19 +16690,19 @@ function ChatBubble({
16625
16690
  children: `${!expanded ? "Show" : "Hide"} full message`
16626
16691
  }
16627
16692
  ),
16628
- image && /* @__PURE__ */ jsx36("img", { src: image, alt: "", className: "rounded-xl" }),
16629
- /* @__PURE__ */ jsxs25("div", { className: "flex gap-2", children: [
16630
- /* @__PURE__ */ jsx36(
16693
+ image && /* @__PURE__ */ jsx37("img", { src: image, alt: "", className: "rounded-xl" }),
16694
+ /* @__PURE__ */ jsxs26("div", { className: "flex gap-2", children: [
16695
+ /* @__PURE__ */ jsx37(
16631
16696
  "div",
16632
16697
  {
16633
- className: clsx9(
16698
+ className: clsx10(
16634
16699
  "h-[24px] w-[24px] rounded-t-md bg-qtneutral-500 text-qtneutral-200 flex place-items-center place-content-center font-bold text-xs",
16635
16700
  outbound ? "rounded-bl-md" : "rounded-br-md"
16636
16701
  ),
16637
16702
  children: name ? name[0].toUpperCase() : ""
16638
16703
  }
16639
16704
  ),
16640
- uniqueEmojis.entries().map(([e, c]) => /* @__PURE__ */ jsx36(EmojiPill, { emoji: e, count: c }))
16705
+ uniqueEmojis.entries().map(([e, c]) => /* @__PURE__ */ jsx37(EmojiPill, { emoji: e, count: c }))
16641
16706
  ] })
16642
16707
  ]
16643
16708
  }
@@ -16645,10 +16710,10 @@ function ChatBubble({
16645
16710
  }
16646
16711
 
16647
16712
  // src/components/organisms/message_body/chat_body.tsx
16648
- import { jsx as jsx37 } from "react/jsx-runtime";
16713
+ import { jsx as jsx38 } from "react/jsx-runtime";
16649
16714
  function ChatBody({ messages }) {
16650
- return /* @__PURE__ */ jsx37("div", { className: "p-4 rounded-2xl w-full", children: /* @__PURE__ */ jsx37("div", { className: "flex flex-col place-content-center gap-4", children: messages && messages.map((msg) => {
16651
- return /* @__PURE__ */ jsx37(
16715
+ return /* @__PURE__ */ jsx38("div", { className: "p-4 rounded-2xl w-full", children: /* @__PURE__ */ jsx38("div", { className: "flex flex-col place-content-center gap-4", children: messages && messages.map((msg) => {
16716
+ return /* @__PURE__ */ jsx38(
16652
16717
  ChatBubble,
16653
16718
  {
16654
16719
  summary: msg.summary,
@@ -16665,8 +16730,8 @@ function ChatBody({ messages }) {
16665
16730
  }
16666
16731
 
16667
16732
  // src/components/organisms/message_body/ticket_body.tsx
16668
- import clsx10 from "clsx";
16669
- import { jsx as jsx38, jsxs as jsxs26 } from "react/jsx-runtime";
16733
+ import clsx11 from "clsx";
16734
+ import { jsx as jsx39, jsxs as jsxs27 } from "react/jsx-runtime";
16670
16735
  function TicketBody({
16671
16736
  issueNumber,
16672
16737
  notification,
@@ -16682,56 +16747,56 @@ function TicketBody({
16682
16747
  description,
16683
16748
  comments
16684
16749
  }) {
16685
- return /* @__PURE__ */ jsxs26("div", { className: "flex flex-col gap-4 bg-white p-4 rounded-b-2xl max-w-full", children: [
16686
- /* @__PURE__ */ jsxs26("div", { className: "flex flex-col gap-0.5", children: [
16687
- /* @__PURE__ */ jsx38(MetadataRow, { metadata: [`Issue: ${issueNumber}`] }),
16688
- /* @__PURE__ */ jsx38(MetadataRow, { metadata: [`Notification: ${notification}`] }),
16689
- /* @__PURE__ */ jsx38(MetadataRow, { metadata: [`Project: ${project}`] }),
16690
- /* @__PURE__ */ jsx38(MetadataRow, { metadata: [`Task: ${task}`] })
16750
+ return /* @__PURE__ */ jsxs27("div", { className: "flex flex-col gap-4 bg-white p-4 rounded-b-2xl max-w-full", children: [
16751
+ /* @__PURE__ */ jsxs27("div", { className: "flex flex-col gap-0.5", children: [
16752
+ /* @__PURE__ */ jsx39(MetadataRow, { metadata: [`Issue: ${issueNumber}`] }),
16753
+ /* @__PURE__ */ jsx39(MetadataRow, { metadata: [`Notification: ${notification}`] }),
16754
+ /* @__PURE__ */ jsx39(MetadataRow, { metadata: [`Project: ${project}`] }),
16755
+ /* @__PURE__ */ jsx39(MetadataRow, { metadata: [`Task: ${task}`] })
16691
16756
  ] }),
16692
- /* @__PURE__ */ jsx38("hr", { className: "text-qtneutral-500" }),
16693
- /* @__PURE__ */ jsx38("div", { className: "body-bold", children: "Issue" }),
16694
- /* @__PURE__ */ jsxs26("div", { className: "grid grid-cols-2 gap-4 body-small", children: [
16695
- /* @__PURE__ */ jsxs26("div", { className: "", children: [
16696
- /* @__PURE__ */ jsx38("div", { children: "Due Date: " }),
16697
- /* @__PURE__ */ jsx38("div", { children: "Start Date: " }),
16698
- /* @__PURE__ */ jsx38("div", { children: "Assignees: " }),
16699
- /* @__PURE__ */ jsx38("div", { children: "Reporter: " }),
16700
- /* @__PURE__ */ jsx38("div", { children: "Team: " }),
16701
- /* @__PURE__ */ jsx38("div", { children: "Location: " }),
16702
- /* @__PURE__ */ jsx38("div", { children: "Related: " }),
16703
- /* @__PURE__ */ jsx38("div", { children: "Description: " })
16757
+ /* @__PURE__ */ jsx39("hr", { className: "text-qtneutral-500" }),
16758
+ /* @__PURE__ */ jsx39("div", { className: "body-bold", children: "Issue" }),
16759
+ /* @__PURE__ */ jsxs27("div", { className: "grid grid-cols-2 gap-4 body-small", children: [
16760
+ /* @__PURE__ */ jsxs27("div", { className: "", children: [
16761
+ /* @__PURE__ */ jsx39("div", { children: "Due Date: " }),
16762
+ /* @__PURE__ */ jsx39("div", { children: "Start Date: " }),
16763
+ /* @__PURE__ */ jsx39("div", { children: "Assignees: " }),
16764
+ /* @__PURE__ */ jsx39("div", { children: "Reporter: " }),
16765
+ /* @__PURE__ */ jsx39("div", { children: "Team: " }),
16766
+ /* @__PURE__ */ jsx39("div", { children: "Location: " }),
16767
+ /* @__PURE__ */ jsx39("div", { children: "Related: " }),
16768
+ /* @__PURE__ */ jsx39("div", { children: "Description: " })
16704
16769
  ] }),
16705
- /* @__PURE__ */ jsxs26("div", { className: "", children: [
16706
- /* @__PURE__ */ jsx38("div", { children: dueDate || "None" }),
16707
- /* @__PURE__ */ jsx38("div", { children: startDate || "None" }),
16708
- /* @__PURE__ */ jsx38("div", { children: assignees || "None" }),
16709
- /* @__PURE__ */ jsx38("div", { children: reporter || "None" }),
16710
- /* @__PURE__ */ jsx38("div", { children: team || "None" }),
16711
- /* @__PURE__ */ jsx38("div", { children: location || "None" }),
16712
- /* @__PURE__ */ jsx38("div", { children: related || "None" }),
16713
- /* @__PURE__ */ jsx38("div", { children: description || "None" })
16770
+ /* @__PURE__ */ jsxs27("div", { className: "", children: [
16771
+ /* @__PURE__ */ jsx39("div", { children: dueDate || "None" }),
16772
+ /* @__PURE__ */ jsx39("div", { children: startDate || "None" }),
16773
+ /* @__PURE__ */ jsx39("div", { children: assignees || "None" }),
16774
+ /* @__PURE__ */ jsx39("div", { children: reporter || "None" }),
16775
+ /* @__PURE__ */ jsx39("div", { children: team || "None" }),
16776
+ /* @__PURE__ */ jsx39("div", { children: location || "None" }),
16777
+ /* @__PURE__ */ jsx39("div", { children: related || "None" }),
16778
+ /* @__PURE__ */ jsx39("div", { children: description || "None" })
16714
16779
  ] }),
16715
16780
  comments && comments.map((c, i) => {
16716
- return /* @__PURE__ */ jsxs26("div", { className: "flex col-span-2 flex-col gap-2 w-full", children: [
16717
- /* @__PURE__ */ jsx38("hr", { className: "text-qtneutral-500" }),
16718
- /* @__PURE__ */ jsx38("div", { className: `${i == 0 ? "body-bold" : "body "}`, children: `${i == 0 ? "New" : ""} Comment` }),
16719
- /* @__PURE__ */ jsxs26(
16781
+ return /* @__PURE__ */ jsxs27("div", { className: "flex col-span-2 flex-col gap-2 w-full", children: [
16782
+ /* @__PURE__ */ jsx39("hr", { className: "text-qtneutral-500" }),
16783
+ /* @__PURE__ */ jsx39("div", { className: `${i == 0 ? "body-bold" : "body "}`, children: `${i == 0 ? "New" : ""} Comment` }),
16784
+ /* @__PURE__ */ jsxs27(
16720
16785
  "div",
16721
16786
  {
16722
16787
  className: `flex gap-2 ${i == 0 ? "body-small-bold" : "body-small"}`,
16723
16788
  children: [
16724
- /* @__PURE__ */ jsx38("div", { children: c.name }),
16725
- /* @__PURE__ */ jsx38("div", { children: c.timestamp })
16789
+ /* @__PURE__ */ jsx39("div", { children: c.name }),
16790
+ /* @__PURE__ */ jsx39("div", { children: c.timestamp })
16726
16791
  ]
16727
16792
  }
16728
16793
  ),
16729
- /* @__PURE__ */ jsx38("div", { children: c.text }),
16730
- /* @__PURE__ */ jsxs26("div", { className: "flex gap-2", children: [
16731
- /* @__PURE__ */ jsx38(
16794
+ /* @__PURE__ */ jsx39("div", { children: c.text }),
16795
+ /* @__PURE__ */ jsxs27("div", { className: "flex gap-2", children: [
16796
+ /* @__PURE__ */ jsx39(
16732
16797
  "div",
16733
16798
  {
16734
- className: clsx10(
16799
+ className: clsx11(
16735
16800
  "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"
16736
16801
  ),
16737
16802
  children: c.name ? c.name[0].toUpperCase() : ""
@@ -16741,7 +16806,7 @@ function TicketBody({
16741
16806
  acc.set(str, (acc.get(str) || 0) + 1);
16742
16807
  return acc;
16743
16808
  }, /* @__PURE__ */ new Map()).entries().map(([e, c2]) => {
16744
- return /* @__PURE__ */ jsx38(EmojiPill, { emoji: e, count: c2 });
16809
+ return /* @__PURE__ */ jsx39(EmojiPill, { emoji: e, count: c2 });
16745
16810
  })
16746
16811
  ] })
16747
16812
  ] });
@@ -16751,7 +16816,7 @@ function TicketBody({
16751
16816
  }
16752
16817
 
16753
16818
  // src/components/atoms/icons/base_icons/CircleX.tsx
16754
- import { jsx as jsx39 } from "react/jsx-runtime";
16819
+ import { jsx as jsx40 } from "react/jsx-runtime";
16755
16820
  function CircleX({
16756
16821
  size = 24,
16757
16822
  color = "#1D1D1F",
@@ -16762,27 +16827,27 @@ function CircleX({
16762
16827
  case 16:
16763
16828
  return {
16764
16829
  viewBox: "0 0 16 16",
16765
- path: /* @__PURE__ */ jsx39("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" })
16830
+ path: /* @__PURE__ */ jsx40("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" })
16766
16831
  };
16767
16832
  case 20:
16768
16833
  return {
16769
16834
  viewBox: "0 0 20 20",
16770
- path: /* @__PURE__ */ jsx39("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" })
16835
+ path: /* @__PURE__ */ jsx40("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" })
16771
16836
  };
16772
16837
  case 24:
16773
16838
  return {
16774
16839
  viewBox: "0 0 24 24",
16775
- path: /* @__PURE__ */ jsx39("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" })
16840
+ path: /* @__PURE__ */ jsx40("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" })
16776
16841
  };
16777
16842
  case 36:
16778
16843
  return {
16779
16844
  viewBox: "0 0 36 36",
16780
- path: /* @__PURE__ */ jsx39("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" })
16845
+ path: /* @__PURE__ */ jsx40("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" })
16781
16846
  };
16782
16847
  }
16783
16848
  };
16784
16849
  const { viewBox, path } = getIconData();
16785
- return /* @__PURE__ */ jsx39(
16850
+ return /* @__PURE__ */ jsx40(
16786
16851
  "svg",
16787
16852
  {
16788
16853
  width: size,
@@ -16796,7 +16861,7 @@ function CircleX({
16796
16861
  }
16797
16862
 
16798
16863
  // src/components/atoms/icons/base_icons/Loading.tsx
16799
- import { Fragment as Fragment13, jsx as jsx40, jsxs as jsxs27 } from "react/jsx-runtime";
16864
+ import { Fragment as Fragment13, jsx as jsx41, jsxs as jsxs28 } from "react/jsx-runtime";
16800
16865
  function Loading({
16801
16866
  size = 24,
16802
16867
  color = "#1D1D1F",
@@ -16807,8 +16872,8 @@ function Loading({
16807
16872
  case 16:
16808
16873
  return {
16809
16874
  viewBox: "0 0 16 16",
16810
- path: /* @__PURE__ */ jsxs27(Fragment13, { children: [
16811
- /* @__PURE__ */ jsx40(
16875
+ path: /* @__PURE__ */ jsxs28(Fragment13, { children: [
16876
+ /* @__PURE__ */ jsx41(
16812
16877
  "path",
16813
16878
  {
16814
16879
  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",
@@ -16818,7 +16883,7 @@ function Loading({
16818
16883
  "stroke-linejoin": "round"
16819
16884
  }
16820
16885
  ),
16821
- /* @__PURE__ */ jsx40(
16886
+ /* @__PURE__ */ jsx41(
16822
16887
  "path",
16823
16888
  {
16824
16889
  d: "M10.4362 5.7666L12.3556 5.49268L12.0771 3.56836",
@@ -16833,8 +16898,8 @@ function Loading({
16833
16898
  case 20:
16834
16899
  return {
16835
16900
  viewBox: "0 0 20 20",
16836
- path: /* @__PURE__ */ jsxs27(Fragment13, { children: [
16837
- /* @__PURE__ */ jsx40(
16901
+ path: /* @__PURE__ */ jsxs28(Fragment13, { children: [
16902
+ /* @__PURE__ */ jsx41(
16838
16903
  "path",
16839
16904
  {
16840
16905
  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",
@@ -16844,7 +16909,7 @@ function Loading({
16844
16909
  "stroke-linejoin": "round"
16845
16910
  }
16846
16911
  ),
16847
- /* @__PURE__ */ jsx40(
16912
+ /* @__PURE__ */ jsx41(
16848
16913
  "path",
16849
16914
  {
16850
16915
  d: "M13.0445 7.20838L15.4438 6.86597L15.0957 4.46057",
@@ -16859,8 +16924,8 @@ function Loading({
16859
16924
  case 24:
16860
16925
  return {
16861
16926
  viewBox: "0 0 24 24",
16862
- path: /* @__PURE__ */ jsxs27(Fragment13, { children: [
16863
- /* @__PURE__ */ jsx40(
16927
+ path: /* @__PURE__ */ jsxs28(Fragment13, { children: [
16928
+ /* @__PURE__ */ jsx41(
16864
16929
  "path",
16865
16930
  {
16866
16931
  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",
@@ -16870,7 +16935,7 @@ function Loading({
16870
16935
  "stroke-linejoin": "round"
16871
16936
  }
16872
16937
  ),
16873
- /* @__PURE__ */ jsx40(
16938
+ /* @__PURE__ */ jsx41(
16874
16939
  "path",
16875
16940
  {
16876
16941
  d: "M15.6528 8.65003L18.5319 8.23914L18.1143 5.35266",
@@ -16885,8 +16950,8 @@ function Loading({
16885
16950
  case 36:
16886
16951
  return {
16887
16952
  viewBox: "0 0 36 36",
16888
- path: /* @__PURE__ */ jsxs27(Fragment13, { children: [
16889
- /* @__PURE__ */ jsx40(
16953
+ path: /* @__PURE__ */ jsxs28(Fragment13, { children: [
16954
+ /* @__PURE__ */ jsx41(
16890
16955
  "path",
16891
16956
  {
16892
16957
  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",
@@ -16896,7 +16961,7 @@ function Loading({
16896
16961
  "stroke-linejoin": "round"
16897
16962
  }
16898
16963
  ),
16899
- /* @__PURE__ */ jsx40(
16964
+ /* @__PURE__ */ jsx41(
16900
16965
  "path",
16901
16966
  {
16902
16967
  d: "M23.4797 12.975L27.7984 12.3587L27.1719 8.02893",
@@ -16911,7 +16976,7 @@ function Loading({
16911
16976
  }
16912
16977
  };
16913
16978
  const { viewBox, path } = getIconData();
16914
- return /* @__PURE__ */ jsx40(
16979
+ return /* @__PURE__ */ jsx41(
16915
16980
  "svg",
16916
16981
  {
16917
16982
  width: size,
@@ -16925,7 +16990,7 @@ function Loading({
16925
16990
  }
16926
16991
 
16927
16992
  // src/components/atoms/icons/base_icons/Search.tsx
16928
- import { jsx as jsx41 } from "react/jsx-runtime";
16993
+ import { jsx as jsx42 } from "react/jsx-runtime";
16929
16994
  function Search({
16930
16995
  size = 24,
16931
16996
  color = "#1D1D1F",
@@ -16936,7 +17001,7 @@ function Search({
16936
17001
  case 16:
16937
17002
  return {
16938
17003
  viewBox: "0 0 16 16",
16939
- path: /* @__PURE__ */ jsx41(
17004
+ path: /* @__PURE__ */ jsx42(
16940
17005
  "path",
16941
17006
  {
16942
17007
  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",
@@ -16950,7 +17015,7 @@ function Search({
16950
17015
  case 20:
16951
17016
  return {
16952
17017
  viewBox: "0 0 20 20",
16953
- path: /* @__PURE__ */ jsx41(
17018
+ path: /* @__PURE__ */ jsx42(
16954
17019
  "path",
16955
17020
  {
16956
17021
  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",
@@ -16964,7 +17029,7 @@ function Search({
16964
17029
  case 24:
16965
17030
  return {
16966
17031
  viewBox: "0 0 24 24",
16967
- path: /* @__PURE__ */ jsx41(
17032
+ path: /* @__PURE__ */ jsx42(
16968
17033
  "path",
16969
17034
  {
16970
17035
  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",
@@ -16978,7 +17043,7 @@ function Search({
16978
17043
  case 36:
16979
17044
  return {
16980
17045
  viewBox: "0 0 36 36",
16981
- path: /* @__PURE__ */ jsx41(
17046
+ path: /* @__PURE__ */ jsx42(
16982
17047
  "path",
16983
17048
  {
16984
17049
  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",
@@ -16992,7 +17057,7 @@ function Search({
16992
17057
  }
16993
17058
  };
16994
17059
  const { viewBox, path } = getIconData();
16995
- return /* @__PURE__ */ jsx41(
17060
+ return /* @__PURE__ */ jsx42(
16996
17061
  "svg",
16997
17062
  {
16998
17063
  width: size,
@@ -17007,7 +17072,7 @@ function Search({
17007
17072
 
17008
17073
  // src/components/organisms/search_bar/search_bar.tsx
17009
17074
  import { useState as useState5, useEffect as useEffect3 } from "react";
17010
- import { jsx as jsx42, jsxs as jsxs28 } from "react/jsx-runtime";
17075
+ import { jsx as jsx43, jsxs as jsxs29 } from "react/jsx-runtime";
17011
17076
  function SearchBar({ loading, results, onUpdate }) {
17012
17077
  const [query, setQuery] = useState5("");
17013
17078
  useEffect3(() => {
@@ -17019,10 +17084,10 @@ function SearchBar({ loading, results, onUpdate }) {
17019
17084
  const clearQuery = () => {
17020
17085
  setQuery("");
17021
17086
  };
17022
- return /* @__PURE__ */ jsxs28("div", { className: "w-full space-y-3", children: [
17023
- /* @__PURE__ */ jsxs28("div", { className: "flex items-center px-4 py-2 rounded-full bg-gray-100 gap-2 text-gray-900", children: [
17024
- loading ? /* @__PURE__ */ jsx42(Loading, {}) : /* @__PURE__ */ jsx42(Search, {}),
17025
- /* @__PURE__ */ jsx42(
17087
+ return /* @__PURE__ */ jsxs29("div", { className: "w-full space-y-3", children: [
17088
+ /* @__PURE__ */ jsxs29("div", { className: "flex items-center px-4 py-2 rounded-full bg-gray-100 gap-2 text-gray-900", children: [
17089
+ loading ? /* @__PURE__ */ jsx43(Loading, {}) : /* @__PURE__ */ jsx43(Search, {}),
17090
+ /* @__PURE__ */ jsx43(
17026
17091
  "input",
17027
17092
  {
17028
17093
  type: "text",
@@ -17032,15 +17097,15 @@ function SearchBar({ loading, results, onUpdate }) {
17032
17097
  onChange: (e) => setQuery(e.target.value)
17033
17098
  }
17034
17099
  ),
17035
- query && /* @__PURE__ */ jsx42("button", { onClick: clearQuery, children: /* @__PURE__ */ jsx42(CircleX, {}) })
17100
+ query && /* @__PURE__ */ jsx43("button", { onClick: clearQuery, children: /* @__PURE__ */ jsx43(CircleX, {}) })
17036
17101
  ] }),
17037
- results && /* @__PURE__ */ jsxs28("div", { className: "text-sm", children: [
17038
- /* @__PURE__ */ jsxs28("p", { className: "text-gray-700 font-medium", children: [
17102
+ results && /* @__PURE__ */ jsxs29("div", { className: "text-sm", children: [
17103
+ /* @__PURE__ */ jsxs29("p", { className: "text-gray-700 font-medium", children: [
17039
17104
  "Search results (",
17040
17105
  results.reduce((acc, r) => acc + r.count, 0),
17041
17106
  "):"
17042
17107
  ] }),
17043
- /* @__PURE__ */ jsx42("div", { className: "flex flex-wrap gap-2 mt-2", children: results.map((r) => /* @__PURE__ */ jsxs28(
17108
+ /* @__PURE__ */ jsx43("div", { className: "flex flex-wrap gap-2 mt-2", children: results.map((r) => /* @__PURE__ */ jsxs29(
17044
17109
  "span",
17045
17110
  {
17046
17111
  className: "px-3 py-1 rounded-full bg-gray-100 text-gray-700",
@@ -17058,7 +17123,7 @@ function SearchBar({ loading, results, onUpdate }) {
17058
17123
  }
17059
17124
 
17060
17125
  // src/components/atoms/icons/base_icons/Mail.tsx
17061
- import { jsx as jsx43 } from "react/jsx-runtime";
17126
+ import { jsx as jsx44 } from "react/jsx-runtime";
17062
17127
  function Mail({
17063
17128
  size = 24,
17064
17129
  color = "#1D1D1F",
@@ -17069,7 +17134,7 @@ function Mail({
17069
17134
  case 16:
17070
17135
  return {
17071
17136
  viewBox: "0 0 16 16",
17072
- path: /* @__PURE__ */ jsx43(
17137
+ path: /* @__PURE__ */ jsx44(
17073
17138
  "path",
17074
17139
  {
17075
17140
  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",
@@ -17083,7 +17148,7 @@ function Mail({
17083
17148
  case 20:
17084
17149
  return {
17085
17150
  viewBox: "0 0 20 20",
17086
- path: /* @__PURE__ */ jsx43(
17151
+ path: /* @__PURE__ */ jsx44(
17087
17152
  "path",
17088
17153
  {
17089
17154
  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",
@@ -17097,7 +17162,7 @@ function Mail({
17097
17162
  case 24:
17098
17163
  return {
17099
17164
  viewBox: "0 0 24 24",
17100
- path: /* @__PURE__ */ jsx43(
17165
+ path: /* @__PURE__ */ jsx44(
17101
17166
  "path",
17102
17167
  {
17103
17168
  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",
@@ -17111,7 +17176,7 @@ function Mail({
17111
17176
  case 36:
17112
17177
  return {
17113
17178
  viewBox: "0 0 36 36",
17114
- path: /* @__PURE__ */ jsx43(
17179
+ path: /* @__PURE__ */ jsx44(
17115
17180
  "path",
17116
17181
  {
17117
17182
  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",
@@ -17125,7 +17190,7 @@ function Mail({
17125
17190
  }
17126
17191
  };
17127
17192
  const { viewBox, path } = getIconData();
17128
- return /* @__PURE__ */ jsx43(
17193
+ return /* @__PURE__ */ jsx44(
17129
17194
  "svg",
17130
17195
  {
17131
17196
  width: size,
@@ -17139,7 +17204,7 @@ function Mail({
17139
17204
  }
17140
17205
 
17141
17206
  // src/components/atoms/icons/base_icons/PlusLarge.tsx
17142
- import { jsx as jsx44 } from "react/jsx-runtime";
17207
+ import { jsx as jsx45 } from "react/jsx-runtime";
17143
17208
  function PlusLarge({
17144
17209
  size = 24,
17145
17210
  color = "#1D1D1F",
@@ -17150,7 +17215,7 @@ function PlusLarge({
17150
17215
  case 16:
17151
17216
  return {
17152
17217
  viewBox: "0 0 16 16",
17153
- path: /* @__PURE__ */ jsx44(
17218
+ path: /* @__PURE__ */ jsx45(
17154
17219
  "path",
17155
17220
  {
17156
17221
  d: "M8.00033 2.66663V13.3333M13.3337 7.99996L2.66699 7.99996",
@@ -17164,7 +17229,7 @@ function PlusLarge({
17164
17229
  case 20:
17165
17230
  return {
17166
17231
  viewBox: "0 0 20 20",
17167
- path: /* @__PURE__ */ jsx44(
17232
+ path: /* @__PURE__ */ jsx45(
17168
17233
  "path",
17169
17234
  {
17170
17235
  d: "M9.99967 3.33337V16.6667M16.6663 10L3.33301 10",
@@ -17178,7 +17243,7 @@ function PlusLarge({
17178
17243
  case 24:
17179
17244
  return {
17180
17245
  viewBox: "0 0 24 24",
17181
- path: /* @__PURE__ */ jsx44(
17246
+ path: /* @__PURE__ */ jsx45(
17182
17247
  "path",
17183
17248
  {
17184
17249
  d: "M12 4V20M20 12L4 12",
@@ -17192,7 +17257,7 @@ function PlusLarge({
17192
17257
  case 36:
17193
17258
  return {
17194
17259
  viewBox: "0 0 36 36",
17195
- path: /* @__PURE__ */ jsx44(
17260
+ path: /* @__PURE__ */ jsx45(
17196
17261
  "path",
17197
17262
  {
17198
17263
  d: "M18 6V30M30 18L6 18",
@@ -17206,7 +17271,7 @@ function PlusLarge({
17206
17271
  }
17207
17272
  };
17208
17273
  const { viewBox, path } = getIconData();
17209
- return /* @__PURE__ */ jsx44(
17274
+ return /* @__PURE__ */ jsx45(
17210
17275
  "svg",
17211
17276
  {
17212
17277
  width: size,
@@ -17220,38 +17285,38 @@ function PlusLarge({
17220
17285
  }
17221
17286
 
17222
17287
  // src/components/molecules/buttons/nav_button/filter_nav_button/filter_nav_button.tsx
17223
- import clsx11 from "clsx";
17224
- import { jsx as jsx45, jsxs as jsxs29 } from "react/jsx-runtime";
17288
+ import clsx12 from "clsx";
17289
+ import { jsx as jsx46, jsxs as jsxs30 } from "react/jsx-runtime";
17225
17290
  function FilterNavButton({ icon, label, active, onClick }) {
17226
- return /* @__PURE__ */ jsxs29(
17291
+ return /* @__PURE__ */ jsxs30(
17227
17292
  "div",
17228
17293
  {
17229
17294
  className: "w-min h-min flex flex-none flex-col place-items-center gap-2",
17230
17295
  onClick,
17231
17296
  children: [
17232
- /* @__PURE__ */ jsx45(
17297
+ /* @__PURE__ */ jsx46(
17233
17298
  "div",
17234
17299
  {
17235
- className: clsx11(
17300
+ className: clsx12(
17236
17301
  "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"
17237
17302
  ),
17238
17303
  children: icon
17239
17304
  }
17240
17305
  ),
17241
- /* @__PURE__ */ jsx45("div", { className: "font-medium text-[9px] text-qtneutral-900 w-full text-center", children: label })
17306
+ /* @__PURE__ */ jsx46("div", { className: "font-medium text-[9px] text-qtneutral-900 w-full text-center", children: label })
17242
17307
  ]
17243
17308
  }
17244
17309
  );
17245
17310
  }
17246
17311
 
17247
17312
  // src/components/organisms/filter_bar/filter_bar.tsx
17248
- import { jsx as jsx46, jsxs as jsxs30 } from "react/jsx-runtime";
17313
+ import { jsx as jsx47, jsxs as jsxs31 } from "react/jsx-runtime";
17249
17314
  function FilterBar({ buttons }) {
17250
- return /* @__PURE__ */ jsxs30("div", { className: "flex flex-col w-[54px] place-items-center gap-4", children: [
17251
- /* @__PURE__ */ jsx46(
17315
+ return /* @__PURE__ */ jsxs31("div", { className: "flex flex-col w-[54px] place-items-center gap-4", children: [
17316
+ /* @__PURE__ */ jsx47(
17252
17317
  FilterNavButton,
17253
17318
  {
17254
- icon: /* @__PURE__ */ jsx46(
17319
+ icon: /* @__PURE__ */ jsx47(
17255
17320
  FireIcon,
17256
17321
  {
17257
17322
  variant: buttons?.fires?.active ? void 0 : "none" /* OUTLINED */
@@ -17261,10 +17326,10 @@ function FilterBar({ buttons }) {
17261
17326
  onClick: buttons?.fires?.onClick
17262
17327
  }
17263
17328
  ),
17264
- /* @__PURE__ */ jsx46(
17329
+ /* @__PURE__ */ jsx47(
17265
17330
  FilterNavButton,
17266
17331
  {
17267
- icon: /* @__PURE__ */ jsx46(
17332
+ icon: /* @__PURE__ */ jsx47(
17268
17333
  Mail,
17269
17334
  {
17270
17335
  size: 36,
@@ -17275,10 +17340,10 @@ function FilterBar({ buttons }) {
17275
17340
  onClick: buttons?.unread?.onClick
17276
17341
  }
17277
17342
  ),
17278
- /* @__PURE__ */ jsx46(
17343
+ /* @__PURE__ */ jsx47(
17279
17344
  FilterNavButton,
17280
17345
  {
17281
- icon: /* @__PURE__ */ jsx46(
17346
+ icon: /* @__PURE__ */ jsx47(
17282
17347
  CheckBox,
17283
17348
  {
17284
17349
  size: 36,
@@ -17289,57 +17354,57 @@ function FilterBar({ buttons }) {
17289
17354
  onClick: buttons?.incomplete?.onClick
17290
17355
  }
17291
17356
  ),
17292
- /* @__PURE__ */ jsx46("hr", { className: "w-full border-0.5 text-qtneutral-700" }),
17293
- /* @__PURE__ */ jsx46(
17357
+ /* @__PURE__ */ jsx47("hr", { className: "w-full border-0.5 text-qtneutral-700" }),
17358
+ /* @__PURE__ */ jsx47(
17294
17359
  FilterNavButton,
17295
17360
  {
17296
- icon: /* @__PURE__ */ jsx46("div", { className: buttons?.slack?.active ? "" : "grayscale", children: /* @__PURE__ */ jsx46(SlackIcon, {}) }),
17361
+ icon: /* @__PURE__ */ jsx47("div", { className: buttons?.slack?.active ? "" : "grayscale", children: /* @__PURE__ */ jsx47(SlackIcon, {}) }),
17297
17362
  onClick: buttons?.slack?.onClick
17298
17363
  }
17299
17364
  ),
17300
- /* @__PURE__ */ jsx46(
17365
+ /* @__PURE__ */ jsx47(
17301
17366
  FilterNavButton,
17302
17367
  {
17303
- icon: /* @__PURE__ */ jsx46("div", { className: buttons?.google_mail?.active ? "" : "grayscale", children: /* @__PURE__ */ jsx46(GoogleMailIcon, {}) }),
17368
+ icon: /* @__PURE__ */ jsx47("div", { className: buttons?.google_mail?.active ? "" : "grayscale", children: /* @__PURE__ */ jsx47(GoogleMailIcon, {}) }),
17304
17369
  onClick: buttons?.google_mail?.onClick
17305
17370
  }
17306
17371
  ),
17307
- /* @__PURE__ */ jsx46(
17372
+ /* @__PURE__ */ jsx47(
17308
17373
  FilterNavButton,
17309
17374
  {
17310
- icon: /* @__PURE__ */ jsx46("div", { className: buttons?.google_calendar?.active ? "" : "grayscale", children: /* @__PURE__ */ jsx46(GoogleCalendarIcon, {}) }),
17375
+ icon: /* @__PURE__ */ jsx47("div", { className: buttons?.google_calendar?.active ? "" : "grayscale", children: /* @__PURE__ */ jsx47(GoogleCalendarIcon, {}) }),
17311
17376
  onClick: buttons?.google_calendar?.onClick
17312
17377
  }
17313
17378
  ),
17314
- /* @__PURE__ */ jsx46(
17379
+ /* @__PURE__ */ jsx47(
17315
17380
  FilterNavButton,
17316
17381
  {
17317
- icon: /* @__PURE__ */ jsxs30("div", { className: buttons?.atlassian_jira?.active ? "" : "grayscale", children: [
17318
- /* @__PURE__ */ jsx46(AtlassianIcon, {}),
17382
+ icon: /* @__PURE__ */ jsxs31("div", { className: buttons?.atlassian_jira?.active ? "" : "grayscale", children: [
17383
+ /* @__PURE__ */ jsx47(AtlassianIcon, {}),
17319
17384
  " "
17320
17385
  ] }),
17321
17386
  onClick: buttons?.atlassian_jira?.onClick
17322
17387
  }
17323
17388
  ),
17324
- /* @__PURE__ */ jsx46(
17389
+ /* @__PURE__ */ jsx47(
17325
17390
  FilterNavButton,
17326
17391
  {
17327
- icon: /* @__PURE__ */ jsxs30("div", { className: buttons?.microsoft_teams?.active ? "" : "grayscale", children: [
17328
- /* @__PURE__ */ jsx46(MicrosoftTeamsIcon, {}),
17392
+ icon: /* @__PURE__ */ jsxs31("div", { className: buttons?.microsoft_teams?.active ? "" : "grayscale", children: [
17393
+ /* @__PURE__ */ jsx47(MicrosoftTeamsIcon, {}),
17329
17394
  " "
17330
17395
  ] }),
17331
17396
  onClick: buttons?.microsoft_teams?.onClick
17332
17397
  }
17333
17398
  ),
17334
- /* @__PURE__ */ jsx46(
17399
+ /* @__PURE__ */ jsx47(
17335
17400
  FilterNavButton,
17336
17401
  {
17337
- icon: /* @__PURE__ */ jsxs30(
17402
+ icon: /* @__PURE__ */ jsxs31(
17338
17403
  "div",
17339
17404
  {
17340
17405
  className: buttons?.microsoft_calendar?.active || buttons?.microsoft_mail?.active ? "" : "grayscale",
17341
17406
  children: [
17342
- /* @__PURE__ */ jsx46(MicrosoftOutlookMailIcon, {}),
17407
+ /* @__PURE__ */ jsx47(MicrosoftOutlookMailIcon, {}),
17343
17408
  " "
17344
17409
  ]
17345
17410
  }
@@ -17347,15 +17412,15 @@ function FilterBar({ buttons }) {
17347
17412
  onClick: buttons?.microsoft_mail?.onClick || buttons?.microsoft_calendar?.onClick
17348
17413
  }
17349
17414
  ),
17350
- /* @__PURE__ */ jsx46(
17415
+ /* @__PURE__ */ jsx47(
17351
17416
  FilterNavButton,
17352
17417
  {
17353
- icon: /* @__PURE__ */ jsxs30(
17418
+ icon: /* @__PURE__ */ jsxs31(
17354
17419
  "div",
17355
17420
  {
17356
17421
  className: buttons?.clickup?.active || buttons?.clickup?.active ? "" : "grayscale",
17357
17422
  children: [
17358
- /* @__PURE__ */ jsx46(ClickupIcon, {}),
17423
+ /* @__PURE__ */ jsx47(ClickupIcon, {}),
17359
17424
  " "
17360
17425
  ]
17361
17426
  }
@@ -17363,8 +17428,8 @@ function FilterBar({ buttons }) {
17363
17428
  onClick: buttons?.clickup?.onClick
17364
17429
  }
17365
17430
  ),
17366
- /* @__PURE__ */ jsx46("hr", { className: "w-full border-0.5 text-qtneutral-700" }),
17367
- /* @__PURE__ */ jsx46("div", { onClick: buttons?.more?.onClick, children: /* @__PURE__ */ jsx46(FilterNavButton, { icon: /* @__PURE__ */ jsx46(PlusLarge, { size: 36 }) }) })
17431
+ /* @__PURE__ */ jsx47("hr", { className: "w-full border-0.5 text-qtneutral-700" }),
17432
+ /* @__PURE__ */ jsx47("div", { onClick: buttons?.more?.onClick, children: /* @__PURE__ */ jsx47(FilterNavButton, { icon: /* @__PURE__ */ jsx47(PlusLarge, { size: 36 }) }) })
17368
17433
  ] });
17369
17434
  }
17370
17435