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