@streamoid/ui 0.6.8 → 0.6.9

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
@@ -649,13 +649,13 @@ import { SiconHome } from "@streamoid/icons";
649
649
  // src/SC-radio/ScRadio.module.css
650
650
  var ScRadio_default = {
651
651
  scRadio: "ScRadio_scRadio",
652
- "state-default": "ScRadio_state-default",
653
652
  vector: "ScRadio_vector",
653
+ "state-default": "ScRadio_state-default",
654
654
  "state-selected": "ScRadio_state-selected"
655
655
  };
656
656
 
657
657
  // src/SC-radio/ScRadio.tsx
658
- import { jsx as jsx10 } from "react/jsx-runtime";
658
+ import { jsx as jsx10, jsxs as jsxs10 } from "react/jsx-runtime";
659
659
  var ScRadio = ({
660
660
  state = "default",
661
661
  className,
@@ -667,21 +667,33 @@ var ScRadio = ({
667
667
  {
668
668
  className: ScRadio_default.scRadio + " " + className + " " + variantsClassName,
669
669
  ...props,
670
- children: /* @__PURE__ */ jsx10(
670
+ children: /* @__PURE__ */ jsxs10(
671
671
  "svg",
672
672
  {
673
+ className: ScRadio_default.vector,
673
674
  width: "24",
674
675
  height: "24",
675
676
  viewBox: "0 0 24 24",
676
677
  fill: "none",
677
678
  xmlns: "http://www.w3.org/2000/svg",
678
- children: /* @__PURE__ */ jsx10(
679
- "path",
680
- {
681
- d: "M22.5 12C22.5 6.20101 17.799 1.5 12 1.5C6.20101 1.5 1.5 6.20101 1.5 12C1.5 17.799 6.20101 22.5 12 22.5V24C5.37258 24 0 18.6274 0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24V22.5C17.799 22.5 22.5 17.799 22.5 12Z",
682
- fill: "var(--alias-text-and-icons-muted, #7a7a7a)"
683
- }
684
- )
679
+ children: [
680
+ /* @__PURE__ */ jsx10(
681
+ "path",
682
+ {
683
+ d: "M22.5 12C22.5 6.20101 17.799 1.5 12 1.5C6.20101 1.5 1.5 6.20101 1.5 12C1.5 17.799 6.20101 22.5 12 22.5V24C5.37258 24 0 18.6274 0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24V22.5C17.799 22.5 22.5 17.799 22.5 12Z",
684
+ fill: state === "selected" ? "var(--alias-text-and-icons-primary, #f5f5f5)" : "var(--alias-text-and-icons-muted, #7a7a7a)"
685
+ }
686
+ ),
687
+ state === "selected" && /* @__PURE__ */ jsx10(
688
+ "circle",
689
+ {
690
+ cx: "12",
691
+ cy: "12",
692
+ r: "6",
693
+ fill: "var(--alias-text-and-icons-primary, #f5f5f5)"
694
+ }
695
+ )
696
+ ]
685
697
  }
686
698
  )
687
699
  }
@@ -698,7 +710,7 @@ var ScCheckbox_default = {
698
710
  };
699
711
 
700
712
  // src/SC-checkbox/ScCheckbox.tsx
701
- import { jsx as jsx11, jsxs as jsxs10 } from "react/jsx-runtime";
713
+ import { jsx as jsx11, jsxs as jsxs11 } from "react/jsx-runtime";
702
714
  var ScCheckbox = ({
703
715
  state = "default",
704
716
  checked,
@@ -720,7 +732,7 @@ var ScCheckbox = ({
720
732
  );
721
733
  props.onClick?.(e);
722
734
  },
723
- children: effectiveState === "selected" ? /* @__PURE__ */ jsxs10("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
735
+ children: effectiveState === "selected" ? /* @__PURE__ */ jsxs11("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
724
736
  /* @__PURE__ */ jsx11("rect", { width: "24", height: "24", rx: "6", fill: "var(--alias-fill-base-base, #f5f5f5)" }),
725
737
  /* @__PURE__ */ jsx11("path", { d: "M7.5 12L10.5 15L16.5 9", stroke: "var(--alias-text---icons-inverse, #101010)", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })
726
738
  ] }) : /* @__PURE__ */ jsx11("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx11("rect", { x: "0.75", y: "0.75", width: "22.5", height: "22.5", rx: "5.25", stroke: "var(--alias-border-default, #3e3e3e)", strokeWidth: "1.5" }) })
@@ -729,7 +741,7 @@ var ScCheckbox = ({
729
741
  };
730
742
 
731
743
  // src/SC-Pairtext/ScPairtext.tsx
732
- import { Fragment as Fragment2, jsx as jsx12, jsxs as jsxs11 } from "react/jsx-runtime";
744
+ import { Fragment as Fragment2, jsx as jsx12, jsxs as jsxs12 } from "react/jsx-runtime";
733
745
  var ScPairtext = ({
734
746
  content = "Pairtext",
735
747
  icon = /* @__PURE__ */ jsx12(SiconHome, { className: ScPairtext_default.siconHomeInstance }),
@@ -742,7 +754,7 @@ var ScPairtext = ({
742
754
  }) => {
743
755
  const variantsClassName = ScPairtext_default["icon-position-" + iconPosition] + " " + ScPairtext_default["type-" + type];
744
756
  const derivedState = checked !== void 0 ? checked ? "selected" : "default" : "default";
745
- return /* @__PURE__ */ jsxs11(
757
+ return /* @__PURE__ */ jsxs12(
746
758
  "div",
747
759
  {
748
760
  className: ScPairtext_default.scPairtext + " " + className + " " + variantsClassName,
@@ -751,7 +763,7 @@ var ScPairtext = ({
751
763
  onChange?.(!checked);
752
764
  },
753
765
  children: [
754
- iconPosition === "right" && /* @__PURE__ */ jsx12(Fragment2, { children: /* @__PURE__ */ jsxs11("div", { className: ScPairtext_default.content, children: [
766
+ iconPosition === "right" && /* @__PURE__ */ jsx12(Fragment2, { children: /* @__PURE__ */ jsxs12("div", { className: ScPairtext_default.content, children: [
755
767
  content,
756
768
  " "
757
769
  ] }) }),
@@ -771,7 +783,7 @@ var ScPairtext = ({
771
783
  }
772
784
  ) }),
773
785
  type === "icon" && /* @__PURE__ */ jsx12(Fragment2, { children: icon }),
774
- iconPosition === "left" && /* @__PURE__ */ jsx12(Fragment2, { children: /* @__PURE__ */ jsxs11("div", { className: ScPairtext_default.content, children: [
786
+ iconPosition === "left" && /* @__PURE__ */ jsx12(Fragment2, { children: /* @__PURE__ */ jsxs12("div", { className: ScPairtext_default.content, children: [
775
787
  content,
776
788
  " "
777
789
  ] }) })
@@ -781,7 +793,7 @@ var ScPairtext = ({
781
793
  };
782
794
 
783
795
  // src/SC-BillingHistoryTableList/ScBillingHistoryTableList.tsx
784
- import { jsx as jsx13, jsxs as jsxs12 } from "react/jsx-runtime";
796
+ import { jsx as jsx13, jsxs as jsxs13 } from "react/jsx-runtime";
785
797
  var ScBillingHistoryTableList = ({
786
798
  invoiceNumber = "# INV-2800-2026",
787
799
  amount = "\u20B9320.89",
@@ -791,22 +803,22 @@ var ScBillingHistoryTableList = ({
791
803
  onRowClick,
792
804
  ...props
793
805
  }) => {
794
- return /* @__PURE__ */ jsxs12(
806
+ return /* @__PURE__ */ jsxs13(
795
807
  "div",
796
808
  {
797
809
  className: ScBillingHistoryTableList_default.scBillingHistoryTableList + " " + className,
798
810
  onClick: onRowClick,
799
811
  ...props,
800
812
  children: [
801
- /* @__PURE__ */ jsxs12("div", { className: ScBillingHistoryTableList_default.invoiceNumber, children: [
813
+ /* @__PURE__ */ jsxs13("div", { className: ScBillingHistoryTableList_default.invoiceNumber, children: [
802
814
  invoiceNumber,
803
815
  " "
804
816
  ] }),
805
- /* @__PURE__ */ jsxs12("div", { className: ScBillingHistoryTableList_default.amount, children: [
817
+ /* @__PURE__ */ jsxs13("div", { className: ScBillingHistoryTableList_default.amount, children: [
806
818
  amount,
807
819
  " "
808
820
  ] }),
809
- /* @__PURE__ */ jsxs12("div", { className: ScBillingHistoryTableList_default.date, children: [
821
+ /* @__PURE__ */ jsxs13("div", { className: ScBillingHistoryTableList_default.date, children: [
810
822
  date,
811
823
  " "
812
824
  ] }),
@@ -854,7 +866,7 @@ var ScButton_default = {
854
866
  // src/SC-Button/ScButton.tsx
855
867
  import { SiconHome as SiconHome2 } from "@streamoid/icons";
856
868
  import { useState as useState2, useEffect, isValidElement, cloneElement } from "react";
857
- import { Fragment as Fragment3, jsx as jsx14, jsxs as jsxs13 } from "react/jsx-runtime";
869
+ import { Fragment as Fragment3, jsx as jsx14, jsxs as jsxs14 } from "react/jsx-runtime";
858
870
  if (typeof window !== "undefined" && CSS.registerProperty) {
859
871
  const props = [
860
872
  { name: "--x-0", val: "72%" },
@@ -939,7 +951,7 @@ var ScButton = ({
939
951
  const strokeWidth = size === "sm" ? 1.25 : 1.5;
940
952
  const styledIcon = isValidElement(icon) ? cloneElement(icon, { color: "currentColor", strokeWidth }) : icon;
941
953
  const variantsClassName = ScButton_default["style-variant-" + styleVariant] + " " + ScButton_default["state-" + state] + " " + ScButton_default["variant-" + variant] + " " + ScButton_default["type-" + type] + " " + ScButton_default["size-" + size];
942
- return /* @__PURE__ */ jsxs13(
954
+ return /* @__PURE__ */ jsxs14(
943
955
  "div",
944
956
  {
945
957
  className: ScButton_default.scButton + " " + className + " " + variantsClassName,
@@ -952,9 +964,9 @@ var ScButton = ({
952
964
  style: { backgroundImage: `url(${noiseUrl})` }
953
965
  }
954
966
  ),
955
- /* @__PURE__ */ jsxs13("div", { className: ScButton_default.container, children: [
967
+ /* @__PURE__ */ jsxs14("div", { className: ScButton_default.container, children: [
956
968
  (styleVariant === "icon-left" || styleVariant === "icon-only") && /* @__PURE__ */ jsx14(Fragment3, { children: styledIcon }),
957
- (styleVariant === "default" || styleVariant === "icon-right" || styleVariant === "icon-left") && /* @__PURE__ */ jsx14(Fragment3, { children: /* @__PURE__ */ jsxs13("div", { className: ScButton_default.label, children: [
969
+ (styleVariant === "default" || styleVariant === "icon-right" || styleVariant === "icon-left") && /* @__PURE__ */ jsx14(Fragment3, { children: /* @__PURE__ */ jsxs14("div", { className: ScButton_default.label, children: [
958
970
  text,
959
971
  " "
960
972
  ] }) }),
@@ -1046,7 +1058,7 @@ var ScCalendarDateComps_default = {
1046
1058
  };
1047
1059
 
1048
1060
  // src/SC-Calendar date comps/ScCalendarDateComps.tsx
1049
- import { jsx as jsx16, jsxs as jsxs14 } from "react/jsx-runtime";
1061
+ import { jsx as jsx16, jsxs as jsxs15 } from "react/jsx-runtime";
1050
1062
  var ScCalendarDateComps = ({
1051
1063
  date = "31",
1052
1064
  state = "default",
@@ -1059,7 +1071,7 @@ var ScCalendarDateComps = ({
1059
1071
  {
1060
1072
  className: ScCalendarDateComps_default.scCalendarDateComps + " " + className + " " + variantsClassName,
1061
1073
  ...props,
1062
- children: /* @__PURE__ */ jsxs14("div", { className: ScCalendarDateComps_default.date, children: [
1074
+ children: /* @__PURE__ */ jsxs15("div", { className: ScCalendarDateComps_default.date, children: [
1063
1075
  date,
1064
1076
  " "
1065
1077
  ] })
@@ -1068,7 +1080,7 @@ var ScCalendarDateComps = ({
1068
1080
  };
1069
1081
 
1070
1082
  // src/SC-Calendar/ScCalendar.tsx
1071
- import { jsx as jsx17, jsxs as jsxs15 } from "react/jsx-runtime";
1083
+ import { jsx as jsx17, jsxs as jsxs16 } from "react/jsx-runtime";
1072
1084
  var MONTH_NAMES = [
1073
1085
  "January",
1074
1086
  "February",
@@ -1131,14 +1143,14 @@ var ScCalendar = ({
1131
1143
  }
1132
1144
  return String(dayIndex - firstDayOfMonth + 1);
1133
1145
  };
1134
- return /* @__PURE__ */ jsxs15("div", { className: ScCalendar_default.scCalendar + " " + className, ...props, children: [
1135
- /* @__PURE__ */ jsxs15("div", { className: ScCalendar_default.header, children: [
1136
- /* @__PURE__ */ jsxs15("div", { className: ScCalendar_default.monthYear, children: [
1146
+ return /* @__PURE__ */ jsxs16("div", { className: ScCalendar_default.scCalendar + " " + className, ...props, children: [
1147
+ /* @__PURE__ */ jsxs16("div", { className: ScCalendar_default.header, children: [
1148
+ /* @__PURE__ */ jsxs16("div", { className: ScCalendar_default.monthYear, children: [
1137
1149
  MONTH_NAMES[currentMonth],
1138
1150
  " ",
1139
1151
  currentYear
1140
1152
  ] }),
1141
- /* @__PURE__ */ jsxs15("div", { className: ScCalendar_default.navigation, children: [
1153
+ /* @__PURE__ */ jsxs16("div", { className: ScCalendar_default.navigation, children: [
1142
1154
  /* @__PURE__ */ jsx17(
1143
1155
  SiconLeft,
1144
1156
  {
@@ -1224,7 +1236,7 @@ var ScProgressBar = ({
1224
1236
 
1225
1237
  // src/SC-Credits usage card/ScCreditsUsageCard.tsx
1226
1238
  import { SiconHome as SiconHome3 } from "@streamoid/icons";
1227
- import { jsx as jsx19, jsxs as jsxs16 } from "react/jsx-runtime";
1239
+ import { jsx as jsx19, jsxs as jsxs17 } from "react/jsx-runtime";
1228
1240
  var ScCreditsUsageCard = ({
1229
1241
  usageLabel = "Credits usage",
1230
1242
  usageText = "8,450 / 30,000",
@@ -1239,8 +1251,8 @@ var ScCreditsUsageCard = ({
1239
1251
  }) => {
1240
1252
  const [btnHovered, setBtnHovered] = useState3(false);
1241
1253
  const displayText = btnHovered && buyButtonHoverText ? buyButtonHoverText : buyButtonText;
1242
- return /* @__PURE__ */ jsxs16("div", { className: ScCreditsUsageCard_default.scCreditsUsageCard + " " + className, ...props, children: [
1243
- /* @__PURE__ */ jsxs16("div", { className: ScCreditsUsageCard_default.header, children: [
1254
+ return /* @__PURE__ */ jsxs17("div", { className: ScCreditsUsageCard_default.scCreditsUsageCard + " " + className, ...props, children: [
1255
+ /* @__PURE__ */ jsxs17("div", { className: ScCreditsUsageCard_default.header, children: [
1244
1256
  /* @__PURE__ */ jsx19(
1245
1257
  ScPairtext,
1246
1258
  {
@@ -1249,13 +1261,13 @@ var ScCreditsUsageCard = ({
1249
1261
  className: ScCreditsUsageCard_default.scPairtextInstance
1250
1262
  }
1251
1263
  ),
1252
- /* @__PURE__ */ jsxs16("div", { className: ScCreditsUsageCard_default.usageText, children: [
1264
+ /* @__PURE__ */ jsxs17("div", { className: ScCreditsUsageCard_default.usageText, children: [
1253
1265
  usageText,
1254
1266
  " "
1255
1267
  ] })
1256
1268
  ] }),
1257
1269
  /* @__PURE__ */ jsx19(ScHDivider, { className: ScCreditsUsageCard_default.scHDividerInstance }),
1258
- /* @__PURE__ */ jsxs16("div", { className: ScCreditsUsageCard_default.progressContainer, children: [
1270
+ /* @__PURE__ */ jsxs17("div", { className: ScCreditsUsageCard_default.progressContainer, children: [
1259
1271
  /* @__PURE__ */ jsx19(
1260
1272
  ScProgressBar,
1261
1273
  {
@@ -1263,7 +1275,7 @@ var ScCreditsUsageCard = ({
1263
1275
  className: ScCreditsUsageCard_default.scProgressBarInstance
1264
1276
  }
1265
1277
  ),
1266
- /* @__PURE__ */ jsxs16("div", { className: ScCreditsUsageCard_default.remainingText, children: [
1278
+ /* @__PURE__ */ jsxs17("div", { className: ScCreditsUsageCard_default.remainingText, children: [
1267
1279
  remainingText,
1268
1280
  " "
1269
1281
  ] }),
@@ -1294,7 +1306,7 @@ var ScCreditsUsageCard = ({
1294
1306
  // src/SC-CreditWarningBanner/CreditWarningBanner.tsx
1295
1307
  import { useState as useState4 } from "react";
1296
1308
  import { SiconClose } from "@streamoid/icons";
1297
- import { jsx as jsx20, jsxs as jsxs17 } from "react/jsx-runtime";
1309
+ import { jsx as jsx20, jsxs as jsxs18 } from "react/jsx-runtime";
1298
1310
  var STYLES = {
1299
1311
  warning: {
1300
1312
  bg: "rgba(255, 165, 0, 0.08)",
@@ -1308,7 +1320,7 @@ var STYLES = {
1308
1320
  }
1309
1321
  };
1310
1322
  function WarningIcon({ color }) {
1311
- return /* @__PURE__ */ jsxs17(
1323
+ return /* @__PURE__ */ jsxs18(
1312
1324
  "svg",
1313
1325
  {
1314
1326
  "aria-hidden": "true",
@@ -1385,7 +1397,7 @@ function CreditWarningBanner({
1385
1397
  {
1386
1398
  className: "flex shrink-0 w-full",
1387
1399
  style: { padding: "var(--spacing-3xl) var(--spacing-md)" },
1388
- children: /* @__PURE__ */ jsxs17(
1400
+ children: /* @__PURE__ */ jsxs18(
1389
1401
  "div",
1390
1402
  {
1391
1403
  className: "flex w-full flex-col",
@@ -1397,7 +1409,7 @@ function CreditWarningBanner({
1397
1409
  gap: "var(--spacing-sm, 8px)"
1398
1410
  },
1399
1411
  children: [
1400
- /* @__PURE__ */ jsxs17("div", { className: "flex w-full items-center", style: { gap: 8 }, children: [
1412
+ /* @__PURE__ */ jsxs18("div", { className: "flex w-full items-center", style: { gap: 8 }, children: [
1401
1413
  /* @__PURE__ */ jsx20(WarningIcon, { color }),
1402
1414
  /* @__PURE__ */ jsx20(
1403
1415
  "p",
@@ -1426,7 +1438,7 @@ function CreditWarningBanner({
1426
1438
  }
1427
1439
  )
1428
1440
  ] }),
1429
- /* @__PURE__ */ jsxs17(
1441
+ /* @__PURE__ */ jsxs18(
1430
1442
  "p",
1431
1443
  {
1432
1444
  className: "w-full",
@@ -1535,7 +1547,7 @@ var ScGoogleSignIn_default = {
1535
1547
  };
1536
1548
 
1537
1549
  // src/SC-Google sign in/ScGoogleSignIn.tsx
1538
- import { jsx as jsx22, jsxs as jsxs18 } from "react/jsx-runtime";
1550
+ import { jsx as jsx22, jsxs as jsxs19 } from "react/jsx-runtime";
1539
1551
  var ScGoogleSignIn = ({
1540
1552
  hover = "false",
1541
1553
  googleLogoSrc = "google-logo0.png",
@@ -1544,14 +1556,14 @@ var ScGoogleSignIn = ({
1544
1556
  ...props
1545
1557
  }) => {
1546
1558
  const variantsClassName = ScGoogleSignIn_default["hover-" + hover];
1547
- return /* @__PURE__ */ jsxs18(
1559
+ return /* @__PURE__ */ jsxs19(
1548
1560
  "div",
1549
1561
  {
1550
1562
  className: ScGoogleSignIn_default.scGoogleSignIn + " " + className + " " + variantsClassName,
1551
1563
  ...props,
1552
1564
  children: [
1553
1565
  /* @__PURE__ */ jsx22("img", { className: ScGoogleSignIn_default.googleLogo, src: googleLogoSrc }),
1554
- /* @__PURE__ */ jsxs18("div", { className: ScGoogleSignIn_default.signInText, children: [
1566
+ /* @__PURE__ */ jsxs19("div", { className: ScGoogleSignIn_default.signInText, children: [
1555
1567
  signInText,
1556
1568
  " "
1557
1569
  ] })
@@ -1567,7 +1579,7 @@ var ScIntialProfileCover_default = {
1567
1579
  };
1568
1580
 
1569
1581
  // src/SC-Intial Profile Cover/ScIntialProfileCover.tsx
1570
- import { jsx as jsx23, jsxs as jsxs19 } from "react/jsx-runtime";
1582
+ import { jsx as jsx23, jsxs as jsxs20 } from "react/jsx-runtime";
1571
1583
  var ScIntialProfileCover = ({
1572
1584
  intial = "WS",
1573
1585
  size,
@@ -1579,7 +1591,7 @@ var ScIntialProfileCover = ({
1579
1591
  {
1580
1592
  className: ScIntialProfileCover_default.scIntialProfileCover + " " + className,
1581
1593
  style: sizeStyle,
1582
- children: /* @__PURE__ */ jsxs19("div", { className: ScIntialProfileCover_default.initials, children: [
1594
+ children: /* @__PURE__ */ jsxs20("div", { className: ScIntialProfileCover_default.initials, children: [
1583
1595
  intial,
1584
1596
  " "
1585
1597
  ] })
@@ -1603,14 +1615,14 @@ var ScStrLogo_default = {
1603
1615
  };
1604
1616
 
1605
1617
  // src/SC-strLogo/ScStrLogo.tsx
1606
- import { jsx as jsx24, jsxs as jsxs20 } from "react/jsx-runtime";
1618
+ import { jsx as jsx24, jsxs as jsxs21 } from "react/jsx-runtime";
1607
1619
  var ScStrLogo = ({
1608
1620
  type = "default",
1609
1621
  className,
1610
1622
  ...props
1611
1623
  }) => {
1612
1624
  const variantsClassName = ScStrLogo_default["type-" + type];
1613
- return /* @__PURE__ */ jsxs20(
1625
+ return /* @__PURE__ */ jsxs21(
1614
1626
  "svg",
1615
1627
  {
1616
1628
  className: ScStrLogo_default.scStrLogo + " " + className + " " + variantsClassName,
@@ -1712,7 +1724,7 @@ var ScStrLogo = ({
1712
1724
  fill: "var(--alias-text-and-icons-primary, #f5f5f5)"
1713
1725
  }
1714
1726
  ),
1715
- /* @__PURE__ */ jsx24("defs", { children: /* @__PURE__ */ jsxs20(
1727
+ /* @__PURE__ */ jsx24("defs", { children: /* @__PURE__ */ jsxs21(
1716
1728
  "linearGradient",
1717
1729
  {
1718
1730
  id: "paint0_linear_19_1153",
@@ -1769,7 +1781,7 @@ var ScMenuOptions_default = {
1769
1781
 
1770
1782
  // src/SC-Menu options/ScMenuOptions.tsx
1771
1783
  import { SiconTeam } from "@streamoid/icons";
1772
- import { Fragment as Fragment4, jsx as jsx26, jsxs as jsxs21 } from "react/jsx-runtime";
1784
+ import { Fragment as Fragment4, jsx as jsx26, jsxs as jsxs22 } from "react/jsx-runtime";
1773
1785
  var ScMenuOptions = ({
1774
1786
  icon = /* @__PURE__ */ jsx26(SiconTeam, { className: ScMenuOptions_default.siconTeamInstance }),
1775
1787
  version = "v2.0.21",
@@ -1780,18 +1792,18 @@ var ScMenuOptions = ({
1780
1792
  ...props
1781
1793
  }) => {
1782
1794
  const variantsClassName = ScMenuOptions_default["hover-" + hover] + " " + ScMenuOptions_default["variant-" + variant];
1783
- return /* @__PURE__ */ jsxs21(
1795
+ return /* @__PURE__ */ jsxs22(
1784
1796
  "div",
1785
1797
  {
1786
1798
  className: ScMenuOptions_default.scMenuOptions + " " + className + " " + variantsClassName,
1787
1799
  ...props,
1788
1800
  children: [
1789
1801
  icon,
1790
- /* @__PURE__ */ jsxs21("div", { className: ScMenuOptions_default.content, children: [
1802
+ /* @__PURE__ */ jsxs22("div", { className: ScMenuOptions_default.content, children: [
1791
1803
  text,
1792
1804
  " "
1793
1805
  ] }),
1794
- variant === "with-v" && /* @__PURE__ */ jsx26(Fragment4, { children: /* @__PURE__ */ jsxs21("div", { className: ScMenuOptions_default.content2, children: [
1806
+ variant === "with-v" && /* @__PURE__ */ jsx26(Fragment4, { children: /* @__PURE__ */ jsxs22("div", { className: ScMenuOptions_default.content2, children: [
1795
1807
  version,
1796
1808
  " "
1797
1809
  ] }) })
@@ -1826,7 +1838,7 @@ var ScOnlyIcon = ({
1826
1838
  };
1827
1839
 
1828
1840
  // src/SC-Plan card/ScPlanCard.tsx
1829
- import { jsx as jsx28, jsxs as jsxs22 } from "react/jsx-runtime";
1841
+ import { jsx as jsx28, jsxs as jsxs23 } from "react/jsx-runtime";
1830
1842
  var T2 = {
1831
1843
  neutralplus: "var(--alias-fill-neutral-neutralplus, #151515)",
1832
1844
  surfaceBase: "var(--alias-surface-base, #101010)",
@@ -1956,13 +1968,13 @@ var ScPlanCard = ({
1956
1968
  children: tag
1957
1969
  }
1958
1970
  ) }) : null;
1959
- return /* @__PURE__ */ jsxs22("div", { className, style: cardStyle, children: [
1960
- isFreeOrPopular && /* @__PURE__ */ jsxs22("div", { style: { flex: "1 1 auto", minHeight: 0, display: "flex", flexDirection: "column", gap: "var(--spacing-6xl, 24px)" }, children: [
1961
- /* @__PURE__ */ jsxs22("div", { style: { display: "flex", flexDirection: "column", gap: 14, alignItems: "center" }, children: [
1962
- /* @__PURE__ */ jsxs22("div", { style: { width: "100%", display: "flex", flexDirection: "column", gap: "var(--spacing-md, 8px)", paddingTop: "var(--spacing-md, 8px)", padding: "var(--spacing-md, 8px) var(--spacing-3xl, 16px) 0" }, children: [
1971
+ return /* @__PURE__ */ jsxs23("div", { className, style: cardStyle, children: [
1972
+ isFreeOrPopular && /* @__PURE__ */ jsxs23("div", { style: { flex: "1 1 auto", minHeight: 0, display: "flex", flexDirection: "column", gap: "var(--spacing-6xl, 24px)" }, children: [
1973
+ /* @__PURE__ */ jsxs23("div", { style: { display: "flex", flexDirection: "column", gap: 14, alignItems: "center" }, children: [
1974
+ /* @__PURE__ */ jsxs23("div", { style: { width: "100%", display: "flex", flexDirection: "column", gap: "var(--spacing-md, 8px)", paddingTop: "var(--spacing-md, 8px)", padding: "var(--spacing-md, 8px) var(--spacing-3xl, 16px) 0" }, children: [
1963
1975
  heading,
1964
- /* @__PURE__ */ jsxs22("div", { style: { display: "flex", gap: 4, alignItems: "flex-end" }, children: [
1965
- /* @__PURE__ */ jsxs22("div", { style: { display: "flex", gap: 2, alignItems: "flex-end" }, children: [
1976
+ /* @__PURE__ */ jsxs23("div", { style: { display: "flex", gap: 4, alignItems: "flex-end" }, children: [
1977
+ /* @__PURE__ */ jsxs23("div", { style: { display: "flex", gap: 2, alignItems: "flex-end" }, children: [
1966
1978
  priceSymbol && /* @__PURE__ */ jsx28(
1967
1979
  "span",
1968
1980
  {
@@ -2003,8 +2015,8 @@ var ScPlanCard = ({
2003
2015
  ] }),
2004
2016
  taglineEl
2005
2017
  ] }),
2006
- /* @__PURE__ */ jsxs22("div", { style: { position: "relative", width: "100%" }, children: [
2007
- /* @__PURE__ */ jsxs22(
2018
+ /* @__PURE__ */ jsxs23("div", { style: { position: "relative", width: "100%" }, children: [
2019
+ /* @__PURE__ */ jsxs23(
2008
2020
  "div",
2009
2021
  {
2010
2022
  style: {
@@ -2031,7 +2043,7 @@ var ScPlanCard = ({
2031
2043
  children: credits
2032
2044
  }
2033
2045
  ),
2034
- isPopular && /* @__PURE__ */ jsxs22(
2046
+ isPopular && /* @__PURE__ */ jsxs23(
2035
2047
  "button",
2036
2048
  {
2037
2049
  type: "button",
@@ -2073,7 +2085,7 @@ var ScPlanCard = ({
2073
2085
  creditsDropdown
2074
2086
  ] })
2075
2087
  ] }),
2076
- isCustom && /* @__PURE__ */ jsxs22("div", { style: { flex: "1 1 auto", minHeight: 0, display: "flex", flexDirection: "column", gap: 14 }, children: [
2088
+ isCustom && /* @__PURE__ */ jsxs23("div", { style: { flex: "1 1 auto", minHeight: 0, display: "flex", flexDirection: "column", gap: 14 }, children: [
2077
2089
  /* @__PURE__ */ jsx28("div", { style: { width: "100%", paddingTop: "var(--spacing-md, 8px)", padding: "var(--spacing-md, 8px) var(--spacing-3xl, 16px) 0" }, children: heading }),
2078
2090
  taglineEl
2079
2091
  ] }),
@@ -2083,7 +2095,7 @@ var ScPlanCard = ({
2083
2095
 
2084
2096
  // src/SC-Plan-Comparison/ScPlanComparison.tsx
2085
2097
  import { useState as useState6 } from "react";
2086
- import { jsx as jsx29, jsxs as jsxs23 } from "react/jsx-runtime";
2098
+ import { jsx as jsx29, jsxs as jsxs24 } from "react/jsx-runtime";
2087
2099
  var T3 = {
2088
2100
  borderSubtle: "var(--alias-border-subtle, #242424)",
2089
2101
  canvasBase: "var(--alias-surface-canvasbase, #0e0e0e)",
@@ -2150,7 +2162,7 @@ var ScPlanComparison = ({
2150
2162
  borderBottom: `1px solid ${T3.borderSubtle}`
2151
2163
  };
2152
2164
  const sectionHeaderRow = (header) => /* @__PURE__ */ jsx29("div", { style: { ...rowBase, backgroundColor: T3.canvasBase }, children: /* @__PURE__ */ jsx29("div", { style: { flex: "1 1 0", padding: CELL_PAD }, children: /* @__PURE__ */ jsx29("p", { style: { ...ROW_TEXT }, children: header }) }) });
2153
- const tableBody = /* @__PURE__ */ jsxs23(
2165
+ const tableBody = /* @__PURE__ */ jsxs24(
2154
2166
  "div",
2155
2167
  {
2156
2168
  style: {
@@ -2160,14 +2172,14 @@ var ScPlanComparison = ({
2160
2172
  width: "100%"
2161
2173
  },
2162
2174
  children: [
2163
- /* @__PURE__ */ jsxs23("div", { style: { ...rowBase }, children: [
2175
+ /* @__PURE__ */ jsxs24("div", { style: { ...rowBase }, children: [
2164
2176
  cell(firstColumnLabel, { backgroundColor: T3.canvasBase }),
2165
2177
  columns.map((c, i) => cell(c, valueColBg(i, highlightColumnIndex)))
2166
2178
  ] }),
2167
2179
  note != null && /* @__PURE__ */ jsx29("div", { style: { ...rowBase }, children: /* @__PURE__ */ jsx29("div", { style: { flex: "1 1 0", padding: CELL_PAD, display: "flex", justifyContent: "center", textAlign: "center" }, children: /* @__PURE__ */ jsx29("p", { style: { ...ROW_TEXT, color: T3.textTertiary, textAlign: "center" }, children: note }) }) }),
2168
- sections.map((section, si) => /* @__PURE__ */ jsxs23("div", { children: [
2180
+ sections.map((section, si) => /* @__PURE__ */ jsxs24("div", { children: [
2169
2181
  section.header ? sectionHeaderRow(section.header) : null,
2170
- section.rows.map((row, ri) => /* @__PURE__ */ jsxs23("div", { style: { ...rowBase }, children: [
2182
+ section.rows.map((row, ri) => /* @__PURE__ */ jsxs24("div", { style: { ...rowBase }, children: [
2171
2183
  cell(row.label ?? "", { backgroundColor: T3.canvasBase }),
2172
2184
  row.values.map((v, ci) => cell(v, valueColBg(ci, highlightColumnIndex)))
2173
2185
  ] }, ri))
@@ -2219,12 +2231,12 @@ var ScPlanComparison = ({
2219
2231
  })
2220
2232
  }
2221
2233
  );
2222
- const tabbedBody = /* @__PURE__ */ jsxs23("div", { style: { display: "flex", flexDirection: "column", gap: "var(--spacing-xl, 12px)", width: "100%" }, children: [
2234
+ const tabbedBody = /* @__PURE__ */ jsxs24("div", { style: { display: "flex", flexDirection: "column", gap: "var(--spacing-xl, 12px)", width: "100%" }, children: [
2223
2235
  tabs,
2224
2236
  note != null && /* @__PURE__ */ jsx29("p", { style: { ...ROW_TEXT, color: T3.textTertiary, textAlign: "center", padding: "0 var(--spacing-md, 8px)" }, children: note }),
2225
- /* @__PURE__ */ jsx29("div", { style: { border: `1px solid ${T3.borderSubtle}`, borderRadius: 32, overflow: "hidden", width: "100%" }, children: sections.map((section, si) => /* @__PURE__ */ jsxs23("div", { children: [
2237
+ /* @__PURE__ */ jsx29("div", { style: { border: `1px solid ${T3.borderSubtle}`, borderRadius: 32, overflow: "hidden", width: "100%" }, children: sections.map((section, si) => /* @__PURE__ */ jsxs24("div", { children: [
2226
2238
  section.header ? sectionHeaderRow(section.header) : null,
2227
- section.rows.map((row, ri) => /* @__PURE__ */ jsxs23("div", { style: { ...rowBase }, children: [
2239
+ section.rows.map((row, ri) => /* @__PURE__ */ jsxs24("div", { style: { ...rowBase }, children: [
2228
2240
  cell(row.label ?? "", { backgroundColor: T3.canvasBase }),
2229
2241
  cell(
2230
2242
  row.values[activeCol],
@@ -2233,8 +2245,8 @@ var ScPlanComparison = ({
2233
2245
  ] }, ri))
2234
2246
  ] }, si)) })
2235
2247
  ] });
2236
- return /* @__PURE__ */ jsxs23("div", { className, style: { display: "flex", flexDirection: "column", gap: "var(--spacing-xl, 12px)", width: "100%", fontFamily: T3.fontBody, ...style }, children: [
2237
- /* @__PURE__ */ jsxs23("div", { style: { display: "flex", alignItems: "center", justifyContent: "space-between", width: "100%" }, children: [
2248
+ return /* @__PURE__ */ jsxs24("div", { className, style: { display: "flex", flexDirection: "column", gap: "var(--spacing-xl, 12px)", width: "100%", fontFamily: T3.fontBody, ...style }, children: [
2249
+ /* @__PURE__ */ jsxs24("div", { style: { display: "flex", alignItems: "center", justifyContent: "space-between", width: "100%" }, children: [
2238
2250
  /* @__PURE__ */ jsx29(
2239
2251
  "p",
2240
2252
  {
@@ -2304,7 +2316,7 @@ var ScPlanDetailsCard_default = {
2304
2316
  // src/SC-Plan details card/ScPlanDetailsCard.tsx
2305
2317
  import { SiconBilling } from "@streamoid/icons";
2306
2318
  import { SiconHome as SiconHome4 } from "@streamoid/icons";
2307
- import { Fragment as Fragment5, jsx as jsx30, jsxs as jsxs24 } from "react/jsx-runtime";
2319
+ import { Fragment as Fragment5, jsx as jsx30, jsxs as jsxs25 } from "react/jsx-runtime";
2308
2320
  var ScPlanDetailsCard = ({
2309
2321
  planName = "Free",
2310
2322
  planCredits = "30,000 credits",
@@ -2318,8 +2330,8 @@ var ScPlanDetailsCard = ({
2318
2330
  className,
2319
2331
  ...props
2320
2332
  }) => {
2321
- return /* @__PURE__ */ jsxs24("div", { className: ScPlanDetailsCard_default.scPlanDetailsCard + " " + className, ...props, children: [
2322
- /* @__PURE__ */ jsxs24("div", { className: ScPlanDetailsCard_default.planHeader, children: [
2333
+ return /* @__PURE__ */ jsxs25("div", { className: ScPlanDetailsCard_default.scPlanDetailsCard + " " + className, ...props, children: [
2334
+ /* @__PURE__ */ jsxs25("div", { className: ScPlanDetailsCard_default.planHeader, children: [
2323
2335
  /* @__PURE__ */ jsx30(
2324
2336
  ScPairtext,
2325
2337
  {
@@ -2328,7 +2340,7 @@ var ScPlanDetailsCard = ({
2328
2340
  className: ScPlanDetailsCard_default.scPairtextInstance
2329
2341
  }
2330
2342
  ),
2331
- /* @__PURE__ */ jsx30("div", { className: ScPlanDetailsCard_default.badgeGroup, children: isLoading ? /* @__PURE__ */ jsx30("span", { className: `${ScPlanDetailsCard_default.skeletonPill} ${ScPlanDetailsCard_default.badgeSkeleton}` }) : /* @__PURE__ */ jsxs24(Fragment5, { children: [
2343
+ /* @__PURE__ */ jsx30("div", { className: ScPlanDetailsCard_default.badgeGroup, children: isLoading ? /* @__PURE__ */ jsx30("span", { className: `${ScPlanDetailsCard_default.skeletonPill} ${ScPlanDetailsCard_default.badgeSkeleton}` }) : /* @__PURE__ */ jsxs25(Fragment5, { children: [
2332
2344
  /* @__PURE__ */ jsx30(
2333
2345
  ScBadges,
2334
2346
  {
@@ -2338,22 +2350,22 @@ var ScPlanDetailsCard = ({
2338
2350
  className: ScPlanDetailsCard_default.scBadgesInstance
2339
2351
  }
2340
2352
  ),
2341
- badgeSubText && /* @__PURE__ */ jsxs24(Fragment5, { children: [
2353
+ badgeSubText && /* @__PURE__ */ jsxs25(Fragment5, { children: [
2342
2354
  /* @__PURE__ */ jsx30("span", { className: ScPlanDetailsCard_default.badgeDot }),
2343
2355
  /* @__PURE__ */ jsx30("span", { className: ScPlanDetailsCard_default.badgeSubText, children: badgeSubText })
2344
2356
  ] })
2345
2357
  ] }) })
2346
2358
  ] }),
2347
2359
  /* @__PURE__ */ jsx30(ScHDivider, { className: ScPlanDetailsCard_default.scHDividerInstance }),
2348
- /* @__PURE__ */ jsxs24("div", { className: ScPlanDetailsCard_default.planDetails, children: [
2349
- /* @__PURE__ */ jsx30("div", { className: ScPlanDetailsCard_default.planInfo, children: isLoading ? /* @__PURE__ */ jsxs24(Fragment5, { children: [
2350
- /* @__PURE__ */ jsxs24("div", { className: ScPlanDetailsCard_default.planNameRow, "aria-label": "Loading plan details", children: [
2360
+ /* @__PURE__ */ jsxs25("div", { className: ScPlanDetailsCard_default.planDetails, children: [
2361
+ /* @__PURE__ */ jsx30("div", { className: ScPlanDetailsCard_default.planInfo, children: isLoading ? /* @__PURE__ */ jsxs25(Fragment5, { children: [
2362
+ /* @__PURE__ */ jsxs25("div", { className: ScPlanDetailsCard_default.planNameRow, "aria-label": "Loading plan details", children: [
2351
2363
  /* @__PURE__ */ jsx30("span", { className: `${ScPlanDetailsCard_default.skeletonPill} ${ScPlanDetailsCard_default.planNameSkeleton}` }),
2352
2364
  /* @__PURE__ */ jsx30("span", { className: `${ScPlanDetailsCard_default.skeletonPill} ${ScPlanDetailsCard_default.creditsSkeleton}` })
2353
2365
  ] }),
2354
2366
  /* @__PURE__ */ jsx30("span", { className: `${ScPlanDetailsCard_default.skeletonPill} ${ScPlanDetailsCard_default.priceSkeleton}` })
2355
- ] }) : /* @__PURE__ */ jsxs24(Fragment5, { children: [
2356
- /* @__PURE__ */ jsxs24("div", { className: ScPlanDetailsCard_default.planNameRow, children: [
2367
+ ] }) : /* @__PURE__ */ jsxs25(Fragment5, { children: [
2368
+ /* @__PURE__ */ jsxs25("div", { className: ScPlanDetailsCard_default.planNameRow, children: [
2357
2369
  /* @__PURE__ */ jsx30("span", { className: ScPlanDetailsCard_default.planName, children: planName }),
2358
2370
  /* @__PURE__ */ jsx30("span", { className: ScPlanDetailsCard_default.dotSeparator }),
2359
2371
  /* @__PURE__ */ jsx30("span", { className: ScPlanDetailsCard_default.planName, children: planCredits })
@@ -2385,7 +2397,7 @@ var ScProfile_default = {
2385
2397
  };
2386
2398
 
2387
2399
  // src/SC-Profile/ScProfile.tsx
2388
- import { Fragment as Fragment6, jsx as jsx31, jsxs as jsxs25 } from "react/jsx-runtime";
2400
+ import { Fragment as Fragment6, jsx as jsx31, jsxs as jsxs26 } from "react/jsx-runtime";
2389
2401
  var ScProfile = ({
2390
2402
  name = "Chris Hemsworth",
2391
2403
  subText = "Kepler workspace",
@@ -2395,19 +2407,19 @@ var ScProfile = ({
2395
2407
  ...props
2396
2408
  }) => {
2397
2409
  const variantsClassName = ScProfile_default["collapsed-" + collapsed];
2398
- return /* @__PURE__ */ jsxs25(
2410
+ return /* @__PURE__ */ jsxs26(
2399
2411
  "div",
2400
2412
  {
2401
2413
  className: ScProfile_default.scProfile + " " + className + " " + variantsClassName,
2402
2414
  ...props,
2403
2415
  children: [
2404
2416
  /* @__PURE__ */ jsx31("img", { className: ScProfile_default.profileImage, src: profileImage }),
2405
- collapsed === "false" && /* @__PURE__ */ jsx31(Fragment6, { children: /* @__PURE__ */ jsxs25("div", { className: ScProfile_default.userInfo, children: [
2406
- /* @__PURE__ */ jsxs25("div", { className: ScProfile_default.userName, children: [
2417
+ collapsed === "false" && /* @__PURE__ */ jsx31(Fragment6, { children: /* @__PURE__ */ jsxs26("div", { className: ScProfile_default.userInfo, children: [
2418
+ /* @__PURE__ */ jsxs26("div", { className: ScProfile_default.userName, children: [
2407
2419
  name,
2408
2420
  " "
2409
2421
  ] }),
2410
- /* @__PURE__ */ jsxs25("div", { className: ScProfile_default.userDescription, children: [
2422
+ /* @__PURE__ */ jsxs26("div", { className: ScProfile_default.userDescription, children: [
2411
2423
  subText,
2412
2424
  " "
2413
2425
  ] })
@@ -2459,7 +2471,7 @@ var ScVDivider = ({
2459
2471
  };
2460
2472
 
2461
2473
  // src/SC-Profile Image update/ScProfileImageUpdate.tsx
2462
- import { jsx as jsx33, jsxs as jsxs26 } from "react/jsx-runtime";
2474
+ import { jsx as jsx33, jsxs as jsxs27 } from "react/jsx-runtime";
2463
2475
  var ScProfileImageUpdate = ({
2464
2476
  imageUrl,
2465
2477
  initials = "",
@@ -2479,7 +2491,7 @@ var ScProfileImageUpdate = ({
2479
2491
  }
2480
2492
  e.target.value = "";
2481
2493
  }
2482
- return /* @__PURE__ */ jsxs26("div", { className: ScProfileImageUpdate_default.scProfileImageUpdate + " " + className, ...props, children: [
2494
+ return /* @__PURE__ */ jsxs27("div", { className: ScProfileImageUpdate_default.scProfileImageUpdate + " " + className, ...props, children: [
2483
2495
  /* @__PURE__ */ jsx33(
2484
2496
  "input",
2485
2497
  {
@@ -2491,7 +2503,7 @@ var ScProfileImageUpdate = ({
2491
2503
  }
2492
2504
  ),
2493
2505
  imageUrl ? /* @__PURE__ */ jsx33("img", { className: ScProfileImageUpdate_default.profileImage, src: imageUrl, alt: "profile" }) : /* @__PURE__ */ jsx33("div", { className: ScProfileImageUpdate_default.profileImage + " " + ScProfileImageUpdate_default.profileInitials, children: initials }),
2494
- /* @__PURE__ */ jsxs26("div", { className: ScProfileImageUpdate_default.buttonContainer, children: [
2506
+ /* @__PURE__ */ jsxs27("div", { className: ScProfileImageUpdate_default.buttonContainer, children: [
2495
2507
  /* @__PURE__ */ jsx33(
2496
2508
  ScButton,
2497
2509
  {
@@ -2551,7 +2563,7 @@ var ScWorkspace_default = {
2551
2563
  };
2552
2564
 
2553
2565
  // src/SC-Workspace/ScWorkspace.tsx
2554
- import { Fragment as Fragment7, jsx as jsx34, jsxs as jsxs27 } from "react/jsx-runtime";
2566
+ import { Fragment as Fragment7, jsx as jsx34, jsxs as jsxs28 } from "react/jsx-runtime";
2555
2567
  var ScWorkspace = ({
2556
2568
  collapsed = "false",
2557
2569
  workspaceName = "Kepler",
@@ -2561,19 +2573,19 @@ var ScWorkspace = ({
2561
2573
  ...props
2562
2574
  }) => {
2563
2575
  const variantsClassName = ScWorkspace_default["collapsed-" + collapsed];
2564
- return /* @__PURE__ */ jsxs27(
2576
+ return /* @__PURE__ */ jsxs28(
2565
2577
  "div",
2566
2578
  {
2567
2579
  className: ScWorkspace_default.scWorkspace + " " + className + " " + variantsClassName,
2568
2580
  ...props,
2569
2581
  children: [
2570
2582
  /* @__PURE__ */ jsx34("img", { className: ScWorkspace_default.profileImage, src: profileImage }),
2571
- collapsed === "false" && /* @__PURE__ */ jsx34(Fragment7, { children: /* @__PURE__ */ jsxs27("div", { className: ScWorkspace_default.userInfo, children: [
2572
- /* @__PURE__ */ jsxs27("div", { className: ScWorkspace_default.userName, children: [
2583
+ collapsed === "false" && /* @__PURE__ */ jsx34(Fragment7, { children: /* @__PURE__ */ jsxs28("div", { className: ScWorkspace_default.userInfo, children: [
2584
+ /* @__PURE__ */ jsxs28("div", { className: ScWorkspace_default.userName, children: [
2573
2585
  workspaceName,
2574
2586
  " "
2575
2587
  ] }),
2576
- /* @__PURE__ */ jsxs27("div", { className: ScWorkspace_default.userRole, children: [
2588
+ /* @__PURE__ */ jsxs28("div", { className: ScWorkspace_default.userRole, children: [
2577
2589
  userRole,
2578
2590
  " "
2579
2591
  ] })
@@ -2602,7 +2614,7 @@ var ScTabComp_default = {
2602
2614
 
2603
2615
  // src/SC-tabComp/ScTabComp.tsx
2604
2616
  import { SiconHome as SiconHome5 } from "@streamoid/icons";
2605
- import { Fragment as Fragment8, jsx as jsx35, jsxs as jsxs28 } from "react/jsx-runtime";
2617
+ import { Fragment as Fragment8, jsx as jsx35, jsxs as jsxs29 } from "react/jsx-runtime";
2606
2618
  var ScTabComp = ({
2607
2619
  icon = /* @__PURE__ */ jsx35(SiconHome5, { className: ScTabComp_default.siconHomeInstance }),
2608
2620
  active = "false",
@@ -2612,14 +2624,14 @@ var ScTabComp = ({
2612
2624
  ...props
2613
2625
  }) => {
2614
2626
  const variantsClassName = ScTabComp_default["active-" + active] + " " + ScTabComp_default["type-" + type];
2615
- return /* @__PURE__ */ jsxs28(
2627
+ return /* @__PURE__ */ jsxs29(
2616
2628
  "div",
2617
2629
  {
2618
2630
  className: ScTabComp_default.scTabComp + " " + className + " " + variantsClassName,
2619
2631
  ...props,
2620
2632
  children: [
2621
2633
  type === "icon-only" && /* @__PURE__ */ jsx35(Fragment8, { children: /* @__PURE__ */ jsx35("div", { className: ScTabComp_default.icon, children: icon }) }),
2622
- type === "text-only" && /* @__PURE__ */ jsx35(Fragment8, { children: /* @__PURE__ */ jsx35("div", { className: ScTabComp_default.textContainer, children: /* @__PURE__ */ jsxs28("div", { className: ScTabComp_default.tabText, children: [
2634
+ type === "text-only" && /* @__PURE__ */ jsx35(Fragment8, { children: /* @__PURE__ */ jsx35("div", { className: ScTabComp_default.textContainer, children: /* @__PURE__ */ jsxs29("div", { className: ScTabComp_default.tabText, children: [
2623
2635
  text,
2624
2636
  " "
2625
2637
  ] }) }) })
@@ -2640,7 +2652,7 @@ var ScTabSwitcher_default = {
2640
2652
 
2641
2653
  // src/SC-tabSwitcher/ScTabSwitcher.tsx
2642
2654
  import { SiconHome as SiconHome6 } from "@streamoid/icons";
2643
- import { Fragment as Fragment9, jsx as jsx36, jsxs as jsxs29 } from "react/jsx-runtime";
2655
+ import { Fragment as Fragment9, jsx as jsx36, jsxs as jsxs30 } from "react/jsx-runtime";
2644
2656
  var ScTabSwitcher = ({
2645
2657
  tabCount = "2",
2646
2658
  component,
@@ -2655,7 +2667,7 @@ var ScTabSwitcher = ({
2655
2667
  ...props
2656
2668
  }) => {
2657
2669
  const variantsClassName = ScTabSwitcher_default["tab-count-" + tabCount];
2658
- return /* @__PURE__ */ jsxs29(
2670
+ return /* @__PURE__ */ jsxs30(
2659
2671
  "div",
2660
2672
  {
2661
2673
  className: ScTabSwitcher_default.scTabSwitcher + " " + className + " " + variantsClassName,
@@ -2703,16 +2715,16 @@ var ScTabSwitcher = ({
2703
2715
  };
2704
2716
 
2705
2717
  // src/SC-Profile options/ScProfileOptions.tsx
2706
- import { jsx as jsx37, jsxs as jsxs30 } from "react/jsx-runtime";
2718
+ import { jsx as jsx37, jsxs as jsxs31 } from "react/jsx-runtime";
2707
2719
  var ScProfileOptions = ({
2708
2720
  className,
2709
2721
  ...props
2710
2722
  }) => {
2711
- return /* @__PURE__ */ jsxs30("div", { className: ScProfileOptions_default.scProfileOptions + " " + className, ...props, children: [
2723
+ return /* @__PURE__ */ jsxs31("div", { className: ScProfileOptions_default.scProfileOptions + " " + className, ...props, children: [
2712
2724
  /* @__PURE__ */ jsx37("div", { className: ScProfileOptions_default.profileHeader, children: /* @__PURE__ */ jsx37(ScProfile, { className: ScProfileOptions_default.scProfileInstance }) }),
2713
2725
  /* @__PURE__ */ jsx37(ScHDivider, { className: ScProfileOptions_default.scHDividerInstance }),
2714
- /* @__PURE__ */ jsxs30("div", { className: ScProfileOptions_default.profileDetails, children: [
2715
- /* @__PURE__ */ jsxs30("div", { className: ScProfileOptions_default.workspaceInfo, children: [
2726
+ /* @__PURE__ */ jsxs31("div", { className: ScProfileOptions_default.profileDetails, children: [
2727
+ /* @__PURE__ */ jsxs31("div", { className: ScProfileOptions_default.workspaceInfo, children: [
2716
2728
  /* @__PURE__ */ jsx37(ScWorkspace, { className: ScProfileOptions_default.scWorkspaceInstance }),
2717
2729
  /* @__PURE__ */ jsx37(
2718
2730
  ScBadges,
@@ -2751,7 +2763,7 @@ var ScProfileOptions = ({
2751
2763
  )
2752
2764
  ] }),
2753
2765
  /* @__PURE__ */ jsx37(ScHDivider, { className: ScProfileOptions_default.scHDividerInstance2 }),
2754
- /* @__PURE__ */ jsxs30("div", { className: ScProfileOptions_default.settingsOptions, children: [
2766
+ /* @__PURE__ */ jsxs31("div", { className: ScProfileOptions_default.settingsOptions, children: [
2755
2767
  /* @__PURE__ */ jsx37(
2756
2768
  ScMenuOptions,
2757
2769
  {
@@ -2854,7 +2866,7 @@ var ScTextField_default = {
2854
2866
 
2855
2867
  // src/SC-textField/ScTextField.tsx
2856
2868
  import { SiconBolt as SiconBolt2 } from "@streamoid/icons";
2857
- import { Fragment as Fragment10, jsx as jsx38, jsxs as jsxs31 } from "react/jsx-runtime";
2869
+ import { Fragment as Fragment10, jsx as jsx38, jsxs as jsxs32 } from "react/jsx-runtime";
2858
2870
  var ScTextField = ({
2859
2871
  tfRightIcon = /* @__PURE__ */ jsx38(SiconBolt2, { className: ScTextField_default.siconBoltInstance }),
2860
2872
  tfLeftIcon = /* @__PURE__ */ jsx38(SiconBolt2, { className: ScTextField_default.siconBoltInstance }),
@@ -2870,21 +2882,21 @@ var ScTextField = ({
2870
2882
  const [focused, setFocused] = useState7(false);
2871
2883
  const derivedState = state ?? (props.disabled ? "disabled" : focused ? "active" : (props.value !== void 0 ? String(props.value).length > 0 : false) ? "filled" : "default");
2872
2884
  const variantsClassName = ScTextField_default["state-" + derivedState] + " " + ScTextField_default["tf-group-" + tfGroup] + " " + ScTextField_default["label-group-" + labelGroup];
2873
- return /* @__PURE__ */ jsxs31(
2885
+ return /* @__PURE__ */ jsxs32(
2874
2886
  "div",
2875
2887
  {
2876
2888
  className: ScTextField_default.scTextField + " " + className + " " + variantsClassName,
2877
2889
  style,
2878
2890
  children: [
2879
- labelGroup && /* @__PURE__ */ jsxs31("div", { className: ScTextField_default.labelContainer, children: [
2880
- /* @__PURE__ */ jsxs31("div", { className: ScTextField_default.label, children: [
2891
+ labelGroup && /* @__PURE__ */ jsxs32("div", { className: ScTextField_default.labelContainer, children: [
2892
+ /* @__PURE__ */ jsxs32("div", { className: ScTextField_default.label, children: [
2881
2893
  label,
2882
2894
  " "
2883
2895
  ] }),
2884
2896
  labelGroup === "text" && /* @__PURE__ */ jsx38(Fragment10, { children: /* @__PURE__ */ jsx38("div", { className: ScTextField_default.info, children: "info " }) }),
2885
2897
  labelGroup === "icon" && /* @__PURE__ */ jsx38(Fragment10, { children: /* @__PURE__ */ jsx38(SiconBolt2, { className: ScTextField_default.siconBoltInstance }) })
2886
2898
  ] }),
2887
- /* @__PURE__ */ jsxs31("div", { className: ScTextField_default.inputContainer, children: [
2899
+ /* @__PURE__ */ jsxs32("div", { className: ScTextField_default.inputContainer, children: [
2888
2900
  (tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ jsx38(Fragment10, { children: tfLeftIcon }),
2889
2901
  /* @__PURE__ */ jsx38(
2890
2902
  "input",
@@ -2910,7 +2922,7 @@ var ScTextField = ({
2910
2922
  };
2911
2923
 
2912
2924
  // src/SC-ProfileSettingsComp/ScProfileSettingsComp.tsx
2913
- import { jsx as jsx39, jsxs as jsxs32 } from "react/jsx-runtime";
2925
+ import { jsx as jsx39, jsxs as jsxs33 } from "react/jsx-runtime";
2914
2926
  var ScProfileSettingsComp = ({
2915
2927
  firstName = "Chris",
2916
2928
  lastName = "Hemsworth",
@@ -2918,15 +2930,15 @@ var ScProfileSettingsComp = ({
2918
2930
  className,
2919
2931
  ...props
2920
2932
  }) => {
2921
- return /* @__PURE__ */ jsxs32("div", { className: ScProfileSettingsComp_default.scProfileSettingsComp + " " + className, ...props, children: [
2933
+ return /* @__PURE__ */ jsxs33("div", { className: ScProfileSettingsComp_default.scProfileSettingsComp + " " + className, ...props, children: [
2922
2934
  /* @__PURE__ */ jsx39(
2923
2935
  ScProfileImageUpdate,
2924
2936
  {
2925
2937
  className: ScProfileSettingsComp_default.scProfileImageUpdateInstance
2926
2938
  }
2927
2939
  ),
2928
- /* @__PURE__ */ jsxs32("div", { className: ScProfileSettingsComp_default.profileInfo, children: [
2929
- /* @__PURE__ */ jsxs32("div", { className: ScProfileSettingsComp_default.nameFields, children: [
2940
+ /* @__PURE__ */ jsxs33("div", { className: ScProfileSettingsComp_default.profileInfo, children: [
2941
+ /* @__PURE__ */ jsxs33("div", { className: ScProfileSettingsComp_default.nameFields, children: [
2930
2942
  /* @__PURE__ */ jsx39(
2931
2943
  ScTextField,
2932
2944
  {
@@ -2974,7 +2986,7 @@ var ScRole_default = {
2974
2986
  };
2975
2987
 
2976
2988
  // src/SC-Role/ScRole.tsx
2977
- import { jsx as jsx40, jsxs as jsxs33 } from "react/jsx-runtime";
2989
+ import { jsx as jsx40, jsxs as jsxs34 } from "react/jsx-runtime";
2978
2990
  var ScRole = ({
2979
2991
  type = "admin",
2980
2992
  label,
@@ -2988,7 +3000,7 @@ var ScRole = ({
2988
3000
  {
2989
3001
  className: ScRole_default.scRole + " " + className + " " + variantsClassName,
2990
3002
  ...props,
2991
- children: /* @__PURE__ */ jsxs33("div", { className: ScRole_default.role, children: [
3003
+ children: /* @__PURE__ */ jsxs34("div", { className: ScRole_default.role, children: [
2992
3004
  displayLabel,
2993
3005
  " "
2994
3006
  ] })
@@ -3041,7 +3053,7 @@ var ScSidebarMenu_default = {
3041
3053
 
3042
3054
  // src/SC-Sidebar menu/ScSidebarMenu.tsx
3043
3055
  import { SiconHome as SiconHome8 } from "@streamoid/icons";
3044
- import { Fragment as Fragment11, jsx as jsx41, jsxs as jsxs34 } from "react/jsx-runtime";
3056
+ import { Fragment as Fragment11, jsx as jsx41, jsxs as jsxs35 } from "react/jsx-runtime";
3045
3057
  var ScSidebarMenu = ({
3046
3058
  icon = /* @__PURE__ */ jsx41(SiconHome8, { className: ScSidebarMenu_default.siconHomeInstance }),
3047
3059
  state = "default",
@@ -3053,14 +3065,14 @@ var ScSidebarMenu = ({
3053
3065
  ...props
3054
3066
  }) => {
3055
3067
  const variantsClassName = ScSidebarMenu_default["state-" + state] + " " + ScSidebarMenu_default["variant-" + variant];
3056
- return /* @__PURE__ */ jsxs34(
3068
+ return /* @__PURE__ */ jsxs35(
3057
3069
  "div",
3058
3070
  {
3059
3071
  className: ScSidebarMenu_default.scSidebarMenu + " " + className + " " + variantsClassName,
3060
3072
  ...props,
3061
3073
  children: [
3062
3074
  icon,
3063
- variant === "expanded" && /* @__PURE__ */ jsxs34(Fragment11, { children: [
3075
+ variant === "expanded" && /* @__PURE__ */ jsxs35(Fragment11, { children: [
3064
3076
  /* @__PURE__ */ jsx41("div", { className: ScSidebarMenu_default.content, children: text }),
3065
3077
  moreIcon && /* @__PURE__ */ jsx41(
3066
3078
  "div",
@@ -3151,7 +3163,7 @@ var ScVersion_default = {
3151
3163
 
3152
3164
  // src/SC-version/ScVersion.tsx
3153
3165
  import { SiconCollapse } from "@streamoid/icons";
3154
- import { Fragment as Fragment12, jsx as jsx44, jsxs as jsxs35 } from "react/jsx-runtime";
3166
+ import { Fragment as Fragment12, jsx as jsx44, jsxs as jsxs36 } from "react/jsx-runtime";
3155
3167
  var ScVersion = ({
3156
3168
  state = "expanded",
3157
3169
  version = "v2.1.2",
@@ -3161,7 +3173,7 @@ var ScVersion = ({
3161
3173
  ...props
3162
3174
  }) => {
3163
3175
  const variantsClassName = ScVersion_default["state-" + state];
3164
- return /* @__PURE__ */ jsxs35(
3176
+ return /* @__PURE__ */ jsxs36(
3165
3177
  "div",
3166
3178
  {
3167
3179
  className: ScVersion_default.scVersion + " " + className + " " + variantsClassName,
@@ -3174,7 +3186,7 @@ var ScVersion = ({
3174
3186
  className: ScVersion_default.scSidebarIconsInstance
3175
3187
  }
3176
3188
  ) }) }),
3177
- /* @__PURE__ */ jsxs35("div", { className: ScVersion_default.content, children: [
3189
+ /* @__PURE__ */ jsxs36("div", { className: ScVersion_default.content, children: [
3178
3190
  version,
3179
3191
  " "
3180
3192
  ] }),
@@ -3192,7 +3204,7 @@ var ScVersion = ({
3192
3204
  };
3193
3205
 
3194
3206
  // src/SC-Sidebar/ScSidebar.tsx
3195
- import { Fragment as Fragment13, jsx as jsx45, jsxs as jsxs36 } from "react/jsx-runtime";
3207
+ import { Fragment as Fragment13, jsx as jsx45, jsxs as jsxs37 } from "react/jsx-runtime";
3196
3208
  var ScSidebar = ({
3197
3209
  state = "expanded",
3198
3210
  className,
@@ -3200,13 +3212,13 @@ var ScSidebar = ({
3200
3212
  ...props
3201
3213
  }) => {
3202
3214
  const variantsClassName = ScSidebar_default["state-" + state];
3203
- return /* @__PURE__ */ jsxs36(
3215
+ return /* @__PURE__ */ jsxs37(
3204
3216
  "div",
3205
3217
  {
3206
3218
  className: ScSidebar_default.scSidebar + " " + className + " " + variantsClassName,
3207
3219
  children: [
3208
- state === "collapsed" && /* @__PURE__ */ jsx45(Fragment13, { children: /* @__PURE__ */ jsxs36("div", { className: ScSidebar_default.collapsedContainer, children: [
3209
- /* @__PURE__ */ jsxs36("div", { className: ScSidebar_default.collapsedItems, children: [
3220
+ state === "collapsed" && /* @__PURE__ */ jsx45(Fragment13, { children: /* @__PURE__ */ jsxs37("div", { className: ScSidebar_default.collapsedContainer, children: [
3221
+ /* @__PURE__ */ jsxs37("div", { className: ScSidebar_default.collapsedItems, children: [
3210
3222
  /* @__PURE__ */ jsx45(
3211
3223
  ScLogoUnit,
3212
3224
  {
@@ -3224,7 +3236,7 @@ var ScSidebar = ({
3224
3236
  }
3225
3237
  ) }),
3226
3238
  /* @__PURE__ */ jsx45(ScHDivider, { className: ScSidebar_default.scHDividerInstance }),
3227
- /* @__PURE__ */ jsxs36("div", { className: ScSidebar_default.collapsedItemGroup, children: [
3239
+ /* @__PURE__ */ jsxs37("div", { className: ScSidebar_default.collapsedItemGroup, children: [
3228
3240
  /* @__PURE__ */ jsx45(
3229
3241
  ScSidebarMenu,
3230
3242
  {
@@ -3260,7 +3272,7 @@ var ScSidebar = ({
3260
3272
  )
3261
3273
  ] }),
3262
3274
  /* @__PURE__ */ jsx45(ScHDivider, { className: ScSidebar_default.scHDividerInstance2 }),
3263
- /* @__PURE__ */ jsxs36("div", { className: ScSidebar_default.collapsedItemGroup, children: [
3275
+ /* @__PURE__ */ jsxs37("div", { className: ScSidebar_default.collapsedItemGroup, children: [
3264
3276
  /* @__PURE__ */ jsx45(
3265
3277
  ScSidebarMenu,
3266
3278
  {
@@ -3281,7 +3293,7 @@ var ScSidebar = ({
3281
3293
  )
3282
3294
  ] }),
3283
3295
  /* @__PURE__ */ jsx45(ScHDivider, { className: ScSidebar_default.scHDividerInstance3 }),
3284
- /* @__PURE__ */ jsxs36("div", { className: ScSidebar_default.collapsedItemGroup, children: [
3296
+ /* @__PURE__ */ jsxs37("div", { className: ScSidebar_default.collapsedItemGroup, children: [
3285
3297
  /* @__PURE__ */ jsx45(
3286
3298
  ScSidebarMenu,
3287
3299
  {
@@ -3347,8 +3359,8 @@ var ScSidebar = ({
3347
3359
  }
3348
3360
  )
3349
3361
  ] }) }),
3350
- state === "expanded" && /* @__PURE__ */ jsx45(Fragment13, { children: /* @__PURE__ */ jsxs36("div", { className: ScSidebar_default.expandedContainer, children: [
3351
- /* @__PURE__ */ jsxs36("div", { className: ScSidebar_default.expandedItems, children: [
3362
+ state === "expanded" && /* @__PURE__ */ jsx45(Fragment13, { children: /* @__PURE__ */ jsxs37("div", { className: ScSidebar_default.expandedContainer, children: [
3363
+ /* @__PURE__ */ jsxs37("div", { className: ScSidebar_default.expandedItems, children: [
3352
3364
  /* @__PURE__ */ jsx45(ScLogoUnit, { className: ScSidebar_default.scLogoUnitInstance }),
3353
3365
  /* @__PURE__ */ jsx45("div", { className: ScSidebar_default.expandedItemContainer, children: /* @__PURE__ */ jsx45(
3354
3366
  ScSidebarMenu,
@@ -3358,7 +3370,7 @@ var ScSidebar = ({
3358
3370
  className: ScSidebar_default.scSidebarMenuInstance
3359
3371
  }
3360
3372
  ) }),
3361
- /* @__PURE__ */ jsxs36("div", { className: ScSidebar_default.expandedItemGroup, children: [
3373
+ /* @__PURE__ */ jsxs37("div", { className: ScSidebar_default.expandedItemGroup, children: [
3362
3374
  /* @__PURE__ */ jsx45("div", { className: ScSidebar_default.expandedItemHeader, children: /* @__PURE__ */ jsx45("div", { className: ScSidebar_default.content, children: "Apps " }) }),
3363
3375
  /* @__PURE__ */ jsx45(
3364
3376
  ScSidebarMenu,
@@ -3391,7 +3403,7 @@ var ScSidebar = ({
3391
3403
  }
3392
3404
  )
3393
3405
  ] }),
3394
- /* @__PURE__ */ jsxs36("div", { className: ScSidebar_default.expandedItemGroup, children: [
3406
+ /* @__PURE__ */ jsxs37("div", { className: ScSidebar_default.expandedItemGroup, children: [
3395
3407
  /* @__PURE__ */ jsx45("div", { className: ScSidebar_default.expandedItemHeader, children: /* @__PURE__ */ jsx45("div", { className: ScSidebar_default.content, children: "Management " }) }),
3396
3408
  /* @__PURE__ */ jsx45(
3397
3409
  ScSidebarMenu,
@@ -3410,7 +3422,7 @@ var ScSidebar = ({
3410
3422
  }
3411
3423
  )
3412
3424
  ] }),
3413
- /* @__PURE__ */ jsxs36("div", { className: ScSidebar_default.expandedItemGroup, children: [
3425
+ /* @__PURE__ */ jsxs37("div", { className: ScSidebar_default.expandedItemGroup, children: [
3414
3426
  /* @__PURE__ */ jsx45("div", { className: ScSidebar_default.expandedItemHeader, children: /* @__PURE__ */ jsx45("div", { className: ScSidebar_default.content, children: "Recents " }) }),
3415
3427
  /* @__PURE__ */ jsx45(
3416
3428
  ScSidebarMenu,
@@ -3483,7 +3495,7 @@ var ScSidebar = ({
3483
3495
  };
3484
3496
 
3485
3497
  // src/SC-Sidebar-new/streamoid-sidebar.tsx
3486
- import { Fragment as Fragment14, jsx as jsx46, jsxs as jsxs37 } from "react/jsx-runtime";
3498
+ import { Fragment as Fragment14, jsx as jsx46, jsxs as jsxs38 } from "react/jsx-runtime";
3487
3499
  function SectionHeader({ label }) {
3488
3500
  return /* @__PURE__ */ jsx46("div", { className: "opacity-50 shrink-0 w-full", children: /* @__PURE__ */ jsx46("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ jsx46(
3489
3501
  "div",
@@ -3588,7 +3600,7 @@ function StreamoidSidebar({
3588
3600
  const hasSwitchCard = !!(switchPanel && !isMobile);
3589
3601
  const panelOpen = hasSwitchCard && !!switchPanelOpen;
3590
3602
  if (expanded) {
3591
- const logoRow = /* @__PURE__ */ jsxs37("div", { className: "flex items-center justify-between w-full shrink-0", children: [
3603
+ const logoRow = /* @__PURE__ */ jsxs38("div", { className: "flex items-center justify-between w-full shrink-0", children: [
3592
3604
  /* @__PURE__ */ jsx46("div", { className: "min-w-0 flex-1", children: expandedLogo }),
3593
3605
  isMobile ? /* @__PURE__ */ jsx46(
3594
3606
  "div",
@@ -3608,7 +3620,7 @@ function StreamoidSidebar({
3608
3620
  {
3609
3621
  className: `flex h-full items-center shrink-0 ${className ?? ""}`.trim(),
3610
3622
  style: { padding: "var(--spacing-3xl)", ...style },
3611
- children: /* @__PURE__ */ jsxs37(
3623
+ children: /* @__PURE__ */ jsxs38(
3612
3624
  "div",
3613
3625
  {
3614
3626
  className: "flex flex-col h-full relative shrink-0",
@@ -3638,7 +3650,7 @@ function StreamoidSidebar({
3638
3650
  }
3639
3651
  }
3640
3652
  ),
3641
- hasSwitchCard ? /* @__PURE__ */ jsxs37(
3653
+ hasSwitchCard ? /* @__PURE__ */ jsxs38(
3642
3654
  "div",
3643
3655
  {
3644
3656
  className: "w-full shrink-0 relative",
@@ -3713,14 +3725,14 @@ function StreamoidSidebar({
3713
3725
  }
3714
3726
  }
3715
3727
  ) : null,
3716
- /* @__PURE__ */ jsxs37(
3728
+ /* @__PURE__ */ jsxs38(
3717
3729
  "div",
3718
3730
  {
3719
3731
  className: "flex flex-col flex-1 items-start min-h-0 w-full overflow-y-auto sidebar-scroll",
3720
3732
  style: { gap: "var(--spacing-xxs)" },
3721
3733
  children: [
3722
3734
  !hasSwitchCard ? logoRow : null,
3723
- !!(topItems?.length || config.topItem) && /* @__PURE__ */ jsxs37(Fragment14, { children: [
3735
+ !!(topItems?.length || config.topItem) && /* @__PURE__ */ jsxs38(Fragment14, { children: [
3724
3736
  /* @__PURE__ */ jsx46(HDivider, {}),
3725
3737
  /* @__PURE__ */ jsx46(
3726
3738
  "div",
@@ -3745,7 +3757,7 @@ function StreamoidSidebar({
3745
3757
  ),
3746
3758
  /* @__PURE__ */ jsx46(HDivider, {})
3747
3759
  ] }),
3748
- showBody && bodyContent ? /* @__PURE__ */ jsx46("div", { className: "flex flex-col flex-1 min-h-0 w-full overflow-hidden", children: bodyContent }) : /* @__PURE__ */ jsx46(Fragment14, { children: config.sections.map((section) => /* @__PURE__ */ jsxs37(
3760
+ showBody && bodyContent ? /* @__PURE__ */ jsx46("div", { className: "flex flex-col flex-1 min-h-0 w-full overflow-hidden", children: bodyContent }) : /* @__PURE__ */ jsx46(Fragment14, { children: config.sections.map((section) => /* @__PURE__ */ jsxs38(
3749
3761
  "div",
3750
3762
  {
3751
3763
  className: "flex flex-col items-start shrink-0 w-full",
@@ -3794,13 +3806,13 @@ function StreamoidSidebar({
3794
3806
  profile ? toggleInProfile && !effectiveHideFooter ? (
3795
3807
  /* Footer row: profile and collapse toggle are two SEPARATE
3796
3808
  interactive units side by side (own rounded hover bg each). */
3797
- /* @__PURE__ */ jsxs37(
3809
+ /* @__PURE__ */ jsxs38(
3798
3810
  "div",
3799
3811
  {
3800
3812
  className: "flex items-center shrink-0 w-full",
3801
3813
  style: { gap: "var(--spacing-md)", paddingTop: "var(--spacing-md)" },
3802
3814
  children: [
3803
- /* @__PURE__ */ jsxs37(
3815
+ /* @__PURE__ */ jsxs38(
3804
3816
  "div",
3805
3817
  {
3806
3818
  className: "flex flex-1 min-w-0 items-center cursor-pointer",
@@ -3819,7 +3831,7 @@ function StreamoidSidebar({
3819
3831
  },
3820
3832
  children: [
3821
3833
  profile.avatar,
3822
- /* @__PURE__ */ jsxs37("div", { className: "flex flex-col flex-1 min-w-0", children: [
3834
+ /* @__PURE__ */ jsxs38("div", { className: "flex flex-col flex-1 min-w-0", children: [
3823
3835
  /* @__PURE__ */ jsx46(
3824
3836
  "span",
3825
3837
  {
@@ -3862,8 +3874,8 @@ function StreamoidSidebar({
3862
3874
  ]
3863
3875
  }
3864
3876
  )
3865
- ) : /* @__PURE__ */ jsxs37(Fragment14, { children: [
3866
- /* @__PURE__ */ jsxs37(
3877
+ ) : /* @__PURE__ */ jsxs38(Fragment14, { children: [
3878
+ /* @__PURE__ */ jsxs38(
3867
3879
  "div",
3868
3880
  {
3869
3881
  className: "flex items-center shrink-0 w-full cursor-pointer",
@@ -3881,7 +3893,7 @@ function StreamoidSidebar({
3881
3893
  },
3882
3894
  children: [
3883
3895
  profile.avatar,
3884
- /* @__PURE__ */ jsxs37("div", { className: "flex flex-col flex-1 min-w-0", children: [
3896
+ /* @__PURE__ */ jsxs38("div", { className: "flex flex-col flex-1 min-w-0", children: [
3885
3897
  /* @__PURE__ */ jsx46(
3886
3898
  "span",
3887
3899
  {
@@ -3904,7 +3916,7 @@ function StreamoidSidebar({
3904
3916
  ),
3905
3917
  !effectiveHideFooter && /* @__PURE__ */ jsx46(Fragment14, { children: /* @__PURE__ */ jsx46(HDivider, {}) })
3906
3918
  ] }) : null,
3907
- !effectiveHideFooter && !toggleInProfile && /* @__PURE__ */ jsx46("div", { className: "shrink-0 w-full", children: /* @__PURE__ */ jsx46("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ jsxs37(
3919
+ !effectiveHideFooter && !toggleInProfile && /* @__PURE__ */ jsx46("div", { className: "shrink-0 w-full", children: /* @__PURE__ */ jsx46("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ jsxs38(
3908
3920
  "div",
3909
3921
  {
3910
3922
  className: "flex items-center w-full",
@@ -3947,7 +3959,7 @@ function StreamoidSidebar({
3947
3959
  {
3948
3960
  className: `flex h-full items-center justify-center shrink-0 ${className ?? ""}`.trim(),
3949
3961
  style,
3950
- children: /* @__PURE__ */ jsxs37(
3962
+ children: /* @__PURE__ */ jsxs38(
3951
3963
  "div",
3952
3964
  {
3953
3965
  className: "flex flex-col h-full items-center justify-center relative shrink-0",
@@ -3967,7 +3979,7 @@ function StreamoidSidebar({
3967
3979
  }
3968
3980
  }
3969
3981
  ),
3970
- hasSwitchCard ? /* @__PURE__ */ jsxs37(Fragment14, { children: [
3982
+ hasSwitchCard ? /* @__PURE__ */ jsxs38(Fragment14, { children: [
3971
3983
  /* @__PURE__ */ jsx46(
3972
3984
  "div",
3973
3985
  {
@@ -4006,14 +4018,14 @@ function StreamoidSidebar({
4006
4018
  }
4007
4019
  )
4008
4020
  ] }) : null,
4009
- /* @__PURE__ */ jsxs37(
4021
+ /* @__PURE__ */ jsxs38(
4010
4022
  "div",
4011
4023
  {
4012
4024
  className: "flex flex-col flex-1 items-center min-h-0 overflow-y-auto sidebar-scroll",
4013
4025
  style: { gap: "var(--spacing-xxs)" },
4014
4026
  children: [
4015
4027
  collapsedLogo,
4016
- !!(topItems?.length || config.topItem) ? /* @__PURE__ */ jsxs37(Fragment14, { children: [
4028
+ !!(topItems?.length || config.topItem) ? /* @__PURE__ */ jsxs38(Fragment14, { children: [
4017
4029
  /* @__PURE__ */ jsx46(HDivider, {}),
4018
4030
  /* @__PURE__ */ jsx46(
4019
4031
  "div",
@@ -4038,7 +4050,7 @@ function StreamoidSidebar({
4038
4050
  ),
4039
4051
  /* @__PURE__ */ jsx46(HDivider, {})
4040
4052
  ] }) : null,
4041
- showBody && bodyContent ? /* @__PURE__ */ jsx46("div", { className: "flex flex-col items-center w-full", children: bodyContent }) : config.sections.map((section, sectionIndex) => /* @__PURE__ */ jsxs37("div", { className: "flex flex-col items-center w-full", children: [
4053
+ showBody && bodyContent ? /* @__PURE__ */ jsx46("div", { className: "flex flex-col items-center w-full", children: bodyContent }) : config.sections.map((section, sectionIndex) => /* @__PURE__ */ jsxs38("div", { className: "flex flex-col items-center w-full", children: [
4042
4054
  /* @__PURE__ */ jsx46(
4043
4055
  "div",
4044
4056
  {
@@ -4108,7 +4120,7 @@ function StreamoidSidebar({
4108
4120
  children: profile.avatar
4109
4121
  }
4110
4122
  ) : null,
4111
- !hideFooter && /* @__PURE__ */ jsxs37(
4123
+ !hideFooter && /* @__PURE__ */ jsxs38(
4112
4124
  "div",
4113
4125
  {
4114
4126
  className: "shrink-0 flex flex-col items-center",
@@ -4194,7 +4206,7 @@ var ScArtifaxSidebar_default = {
4194
4206
 
4195
4207
  // src/SC-Artifax-Sidebar/ScArtifaxSidebar.tsx
4196
4208
  import { SiconCollapse as SiconCollapse3, SiconDown, SiconUp } from "@streamoid/icons";
4197
- import { Fragment as Fragment15, jsx as jsx47, jsxs as jsxs38 } from "react/jsx-runtime";
4209
+ import { Fragment as Fragment15, jsx as jsx47, jsxs as jsxs39 } from "react/jsx-runtime";
4198
4210
  function ArtifaxPlaceholderIcon() {
4199
4211
  return /* @__PURE__ */ jsx47("span", { "aria-hidden": "true", className: ScArtifaxSidebar_default.placeholderIcon });
4200
4212
  }
@@ -4220,7 +4232,7 @@ function SectionHeader2({
4220
4232
  onToggle
4221
4233
  }) {
4222
4234
  const Chevron2 = open ? SiconUp : SiconDown;
4223
- return /* @__PURE__ */ jsxs38(
4235
+ return /* @__PURE__ */ jsxs39(
4224
4236
  "button",
4225
4237
  {
4226
4238
  type: "button",
@@ -4238,7 +4250,7 @@ function AskAgentButton({
4238
4250
  cta,
4239
4251
  collapsed
4240
4252
  }) {
4241
- return /* @__PURE__ */ jsxs38(
4253
+ return /* @__PURE__ */ jsxs39(
4242
4254
  "button",
4243
4255
  {
4244
4256
  type: "button",
@@ -4317,17 +4329,17 @@ var ScArtifaxSidebar = ({
4317
4329
  {
4318
4330
  className: ScArtifaxSidebar_default.scArtifaxSidebar + " " + ScArtifaxSidebar_default.variantExpanded + (className ? " " + className : ""),
4319
4331
  style,
4320
- children: /* @__PURE__ */ jsxs38("div", { className: ScArtifaxSidebar_default.container + " " + ScArtifaxSidebar_default.expanded, children: [
4332
+ children: /* @__PURE__ */ jsxs39("div", { className: ScArtifaxSidebar_default.container + " " + ScArtifaxSidebar_default.expanded, children: [
4321
4333
  /* @__PURE__ */ jsx47("div", { "aria-hidden": "true", className: ScArtifaxSidebar_default.borderOverlayExpanded }),
4322
- /* @__PURE__ */ jsxs38("div", { className: ScArtifaxSidebar_default.body, children: [
4334
+ /* @__PURE__ */ jsxs39("div", { className: ScArtifaxSidebar_default.body, children: [
4323
4335
  expandedLogo ? /* @__PURE__ */ jsx47("div", { className: ScArtifaxSidebar_default.logoUnitExpanded, children: expandedLogo }) : null,
4324
4336
  sections.map((section, idx) => {
4325
4337
  const open = section.label ? section.collapsible !== false ? isSectionOpen(section.id) : true : true;
4326
4338
  const showHeader = !!section.label;
4327
4339
  const canToggle = showHeader && section.collapsible !== false;
4328
- return /* @__PURE__ */ jsxs38("div", { children: [
4340
+ return /* @__PURE__ */ jsxs39("div", { children: [
4329
4341
  idx > 0 ? /* @__PURE__ */ jsx47(ScHDivider, {}) : null,
4330
- /* @__PURE__ */ jsxs38("div", { className: ScArtifaxSidebar_default.sectionContainer, children: [
4342
+ /* @__PURE__ */ jsxs39("div", { className: ScArtifaxSidebar_default.sectionContainer, children: [
4331
4343
  showHeader ? /* @__PURE__ */ jsx47(
4332
4344
  SectionHeader2,
4333
4345
  {
@@ -4355,8 +4367,8 @@ var ScArtifaxSidebar = ({
4355
4367
  ) }) : null,
4356
4368
  assistantCta ? /* @__PURE__ */ jsx47("div", { className: ScArtifaxSidebar_default.askAgentSlot, children: /* @__PURE__ */ jsx47(AskAgentButton, { cta: assistantCta, collapsed: false }) }) : null,
4357
4369
  /* @__PURE__ */ jsx47(ScHDivider, {}),
4358
- /* @__PURE__ */ jsxs38("div", { className: ScArtifaxSidebar_default.profileRow, children: [
4359
- profile ? /* @__PURE__ */ jsxs38(
4370
+ /* @__PURE__ */ jsxs39("div", { className: ScArtifaxSidebar_default.profileRow, children: [
4371
+ profile ? /* @__PURE__ */ jsxs39(
4360
4372
  "button",
4361
4373
  {
4362
4374
  type: "button",
@@ -4364,7 +4376,7 @@ var ScArtifaxSidebar = ({
4364
4376
  onClick: profile.onClick,
4365
4377
  children: [
4366
4378
  /* @__PURE__ */ jsx47("div", { className: ScArtifaxSidebar_default.profileAvatar, children: profile.avatar }),
4367
- /* @__PURE__ */ jsxs38("div", { className: ScArtifaxSidebar_default.profileInfo, children: [
4379
+ /* @__PURE__ */ jsxs39("div", { className: ScArtifaxSidebar_default.profileInfo, children: [
4368
4380
  /* @__PURE__ */ jsx47("span", { className: ScArtifaxSidebar_default.profileName, children: profile.name }),
4369
4381
  profile.subtitle ? /* @__PURE__ */ jsx47("span", { className: ScArtifaxSidebar_default.profileSubtitle, children: profile.subtitle }) : null
4370
4382
  ] })
@@ -4391,11 +4403,11 @@ var ScArtifaxSidebar = ({
4391
4403
  {
4392
4404
  className: ScArtifaxSidebar_default.scArtifaxSidebar + (className ? " " + className : ""),
4393
4405
  style,
4394
- children: /* @__PURE__ */ jsxs38("div", { className: ScArtifaxSidebar_default.container + " " + ScArtifaxSidebar_default.collapsed, children: [
4406
+ children: /* @__PURE__ */ jsxs39("div", { className: ScArtifaxSidebar_default.container + " " + ScArtifaxSidebar_default.collapsed, children: [
4395
4407
  /* @__PURE__ */ jsx47("div", { "aria-hidden": "true", className: ScArtifaxSidebar_default.borderOverlayCollapsed }),
4396
- /* @__PURE__ */ jsxs38("div", { className: ScArtifaxSidebar_default.body + " " + ScArtifaxSidebar_default.bodyCollapsed, children: [
4408
+ /* @__PURE__ */ jsxs39("div", { className: ScArtifaxSidebar_default.body + " " + ScArtifaxSidebar_default.bodyCollapsed, children: [
4397
4409
  collapsedLogo ? /* @__PURE__ */ jsx47("div", { className: ScArtifaxSidebar_default.logoUnitCollapsed, children: collapsedLogo }) : null,
4398
- sections.map((section, idx) => /* @__PURE__ */ jsxs38("div", { children: [
4410
+ sections.map((section, idx) => /* @__PURE__ */ jsxs39("div", { children: [
4399
4411
  idx > 0 ? /* @__PURE__ */ jsx47(ScHDivider, {}) : null,
4400
4412
  /* @__PURE__ */ jsx47("div", { className: ScArtifaxSidebar_default.sectionContainerCollapsed, children: section.items.map((item) => renderMenuItem2(item, section.id)) })
4401
4413
  ] }, section.id))
@@ -4412,7 +4424,7 @@ var ScArtifaxSidebar = ({
4412
4424
  ) }) : null,
4413
4425
  assistantCta ? /* @__PURE__ */ jsx47("div", { className: ScArtifaxSidebar_default.askAgentSlotCollapsed, children: /* @__PURE__ */ jsx47(AskAgentButton, { cta: assistantCta, collapsed: true }) }) : null,
4414
4426
  /* @__PURE__ */ jsx47(ScHDivider, {}),
4415
- /* @__PURE__ */ jsxs38("div", { className: ScArtifaxSidebar_default.footerCollapsed, children: [
4427
+ /* @__PURE__ */ jsxs39("div", { className: ScArtifaxSidebar_default.footerCollapsed, children: [
4416
4428
  profile ? /* @__PURE__ */ jsx47(
4417
4429
  "button",
4418
4430
  {
@@ -4458,7 +4470,7 @@ var ScSidebarSwitchMenu_default = {
4458
4470
  };
4459
4471
 
4460
4472
  // src/SC-Sidebar Switch menu/ScSidebarSwitchMenu.tsx
4461
- import { Fragment as Fragment16, jsx as jsx48, jsxs as jsxs39 } from "react/jsx-runtime";
4473
+ import { Fragment as Fragment16, jsx as jsx48, jsxs as jsxs40 } from "react/jsx-runtime";
4462
4474
  var ScSidebarSwitchMenu = ({
4463
4475
  icon,
4464
4476
  state = "default",
@@ -4471,15 +4483,15 @@ var ScSidebarSwitchMenu = ({
4471
4483
  ...props
4472
4484
  }) => {
4473
4485
  const variantsClassName = ScSidebarSwitchMenu_default["state-" + state] + " " + ScSidebarSwitchMenu_default["variant-" + variant];
4474
- return /* @__PURE__ */ jsxs39(
4486
+ return /* @__PURE__ */ jsxs40(
4475
4487
  "div",
4476
4488
  {
4477
4489
  className: ScSidebarSwitchMenu_default.scSidebarSwitchMenu + (className ? " " + className : "") + " " + variantsClassName,
4478
4490
  ...props,
4479
4491
  children: [
4480
4492
  icon ? /* @__PURE__ */ jsx48("div", { className: ScSidebarSwitchMenu_default.iconWrapper, children: icon }) : null,
4481
- variant === "expanded" && /* @__PURE__ */ jsxs39(Fragment16, { children: [
4482
- /* @__PURE__ */ jsxs39("div", { className: ScSidebarSwitchMenu_default.content, children: [
4493
+ variant === "expanded" && /* @__PURE__ */ jsxs40(Fragment16, { children: [
4494
+ /* @__PURE__ */ jsxs40("div", { className: ScSidebarSwitchMenu_default.content, children: [
4483
4495
  /* @__PURE__ */ jsx48("div", { className: ScSidebarSwitchMenu_default.text, children: text }),
4484
4496
  /* @__PURE__ */ jsx48("div", { className: ScSidebarSwitchMenu_default.description, children: description })
4485
4497
  ] }),
@@ -4944,7 +4956,7 @@ function hasCollapsedMark(product) {
4944
4956
  }
4945
4957
 
4946
4958
  // src/SC-SideBarLogoUnit/ScSideBarLogoUnit.tsx
4947
- import { jsx as jsx50, jsxs as jsxs40 } from "react/jsx-runtime";
4959
+ import { jsx as jsx50, jsxs as jsxs41 } from "react/jsx-runtime";
4948
4960
  var ScSideBarLogoUnit = ({
4949
4961
  state = "expanded",
4950
4962
  wordmark,
@@ -4977,7 +4989,7 @@ var ScSideBarLogoUnit = ({
4977
4989
  {
4978
4990
  className: ScSideBarLogoUnit_default.scSideBarLogoUnit + " " + ScSideBarLogoUnit_default.collapsed + (className ? " " + className : ""),
4979
4991
  style,
4980
- children: /* @__PURE__ */ jsxs40(
4992
+ children: /* @__PURE__ */ jsxs41(
4981
4993
  "button",
4982
4994
  {
4983
4995
  type: "button",
@@ -5010,7 +5022,7 @@ var ScSideBarLogoUnit = ({
5010
5022
  // Suppressing hover when `hover === false` — overrides CSS :hover.
5011
5023
  ...hover === false ? { pointerEvents: "auto" } : null
5012
5024
  },
5013
- children: /* @__PURE__ */ jsxs40(
5025
+ children: /* @__PURE__ */ jsxs41(
5014
5026
  "button",
5015
5027
  {
5016
5028
  type: "button",
@@ -5040,7 +5052,7 @@ import {
5040
5052
  SiconExpand,
5041
5053
  SiconInsights
5042
5054
  } from "@streamoid/icons";
5043
- import { jsx as jsx51, jsxs as jsxs41 } from "react/jsx-runtime";
5055
+ import { jsx as jsx51, jsxs as jsxs42 } from "react/jsx-runtime";
5044
5056
  var PRIMARY_COLOR = "var(--alias-text---icons-primary)";
5045
5057
  var TERTIARY_COLOR = "var(--alias-text---icons-tertiary)";
5046
5058
  var DEFAULT_ITEMS = [
@@ -5161,7 +5173,7 @@ var ScCatalogixSidebar = ({
5161
5173
  })
5162
5174
  }
5163
5175
  );
5164
- const bodyContent = /* @__PURE__ */ jsxs41(
5176
+ const bodyContent = /* @__PURE__ */ jsxs42(
5165
5177
  "div",
5166
5178
  {
5167
5179
  className: expanded ? "flex h-full min-h-0 flex-col" : "flex w-full flex-col items-center",
@@ -5242,7 +5254,7 @@ var ScGuide_default = {
5242
5254
 
5243
5255
  // src/SC-Guide/ScGuide.tsx
5244
5256
  import { SiconRight as SiconRight4 } from "@streamoid/icons";
5245
- import { jsx as jsx52, jsxs as jsxs42 } from "react/jsx-runtime";
5257
+ import { jsx as jsx52, jsxs as jsxs43 } from "react/jsx-runtime";
5246
5258
  var ScGuide = ({
5247
5259
  title = "Title",
5248
5260
  description = "Description",
@@ -5258,18 +5270,18 @@ var ScGuide = ({
5258
5270
  className,
5259
5271
  style
5260
5272
  }) => {
5261
- return /* @__PURE__ */ jsxs42(
5273
+ return /* @__PURE__ */ jsxs43(
5262
5274
  "div",
5263
5275
  {
5264
5276
  className: ScGuide_default.scGuide + (className ? " " + className : ""),
5265
5277
  style,
5266
5278
  children: [
5267
- /* @__PURE__ */ jsxs42("div", { className: ScGuide_default.header, children: [
5279
+ /* @__PURE__ */ jsxs43("div", { className: ScGuide_default.header, children: [
5268
5280
  /* @__PURE__ */ jsx52("p", { className: ScGuide_default.title, children: title }),
5269
5281
  /* @__PURE__ */ jsx52("p", { className: ScGuide_default.description, children: description })
5270
5282
  ] }),
5271
5283
  /* @__PURE__ */ jsx52(ScHDivider, {}),
5272
- /* @__PURE__ */ jsxs42("div", { className: ScGuide_default.actions, children: [
5284
+ /* @__PURE__ */ jsxs43("div", { className: ScGuide_default.actions, children: [
5273
5285
  hideSkip ? /* @__PURE__ */ jsx52("span", { className: ScGuide_default.skipSpacer, "aria-hidden": "true", children: skipLabel }) : /* @__PURE__ */ jsx52(
5274
5286
  "button",
5275
5287
  {
@@ -5281,7 +5293,7 @@ var ScGuide = ({
5281
5293
  }
5282
5294
  ),
5283
5295
  stepLabel != null && /* @__PURE__ */ jsx52("span", { className: ScGuide_default.stepIndicator, children: stepLabel }),
5284
- !hideNext && /* @__PURE__ */ jsxs42(
5296
+ !hideNext && /* @__PURE__ */ jsxs43(
5285
5297
  "button",
5286
5298
  {
5287
5299
  type: "button",
@@ -5310,13 +5322,13 @@ var ScSlider_default = {
5310
5322
  };
5311
5323
 
5312
5324
  // src/SC-Slider/ScSlider.tsx
5313
- import { jsx as jsx53, jsxs as jsxs43 } from "react/jsx-runtime";
5325
+ import { jsx as jsx53, jsxs as jsxs44 } from "react/jsx-runtime";
5314
5326
  var ScSlider = ({
5315
5327
  className,
5316
5328
  onValueChange,
5317
5329
  ...props
5318
5330
  }) => {
5319
- return /* @__PURE__ */ jsxs43("div", { className: ScSlider_default.scSlider + " " + className, ...props, children: [
5331
+ return /* @__PURE__ */ jsxs44("div", { className: ScSlider_default.scSlider + " " + className, ...props, children: [
5320
5332
  /* @__PURE__ */ jsx53("div", { className: ScSlider_default.progressBar }),
5321
5333
  /* @__PURE__ */ jsx53("div", { className: ScSlider_default.progressDot }),
5322
5334
  /* @__PURE__ */ jsx53("div", { className: ScSlider_default.progressBar2 }),
@@ -5338,7 +5350,7 @@ import {
5338
5350
  SiconCrown,
5339
5351
  SiconSwitch
5340
5352
  } from "@streamoid/icons";
5341
- import { jsx as jsx54, jsxs as jsxs44 } from "react/jsx-runtime";
5353
+ import { jsx as jsx54, jsxs as jsxs45 } from "react/jsx-runtime";
5342
5354
  var PRIMARY_ICON = "var(--alias-text---icons-primary)";
5343
5355
  function deriveInitials(name) {
5344
5356
  return name.split(/\s+/).slice(0, 2).map((w) => w[0]?.toUpperCase() ?? "").join("") || "WS";
@@ -5356,7 +5368,7 @@ function WorkspaceRow({
5356
5368
  switchWorkspaceText,
5357
5369
  onSwitch
5358
5370
  }) {
5359
- return /* @__PURE__ */ jsxs44(
5371
+ return /* @__PURE__ */ jsxs45(
5360
5372
  "div",
5361
5373
  {
5362
5374
  className: "relative shrink-0 w-full",
@@ -5377,7 +5389,7 @@ function WorkspaceRow({
5377
5389
  }
5378
5390
  }
5379
5391
  ),
5380
- /* @__PURE__ */ jsx54("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ jsxs44(
5392
+ /* @__PURE__ */ jsx54("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ jsxs45(
5381
5393
  "div",
5382
5394
  {
5383
5395
  className: "flex items-center w-full",
@@ -5386,7 +5398,7 @@ function WorkspaceRow({
5386
5398
  padding: "var(--spacing-6xl)"
5387
5399
  },
5388
5400
  children: [
5389
- /* @__PURE__ */ jsxs44(
5401
+ /* @__PURE__ */ jsxs45(
5390
5402
  "div",
5391
5403
  {
5392
5404
  className: "flex flex-1 items-center min-w-0",
@@ -5419,7 +5431,7 @@ function WorkspaceRow({
5419
5431
  ]
5420
5432
  }
5421
5433
  ),
5422
- /* @__PURE__ */ jsxs44(
5434
+ /* @__PURE__ */ jsxs45(
5423
5435
  "div",
5424
5436
  {
5425
5437
  className: "flex items-center justify-center shrink-0",
@@ -5436,7 +5448,7 @@ function WorkspaceRow({
5436
5448
  style: { width: 80 }
5437
5449
  }
5438
5450
  ),
5439
- /* @__PURE__ */ jsx54("div", { className: "flex flex-row items-center self-stretch", children: /* @__PURE__ */ jsxs44(
5451
+ /* @__PURE__ */ jsx54("div", { className: "flex flex-row items-center self-stretch", children: /* @__PURE__ */ jsxs45(
5440
5452
  "div",
5441
5453
  {
5442
5454
  className: "flex items-center shrink-0",
@@ -5452,7 +5464,7 @@ function WorkspaceRow({
5452
5464
  }
5453
5465
  ) }),
5454
5466
  /* @__PURE__ */ jsx54(ScVDivider, {}),
5455
- /* @__PURE__ */ jsxs44(
5467
+ /* @__PURE__ */ jsxs45(
5456
5468
  "div",
5457
5469
  {
5458
5470
  className: "flex items-center",
@@ -5549,7 +5561,7 @@ function StreamoidWorkspaceSwitcher({
5549
5561
  onClick: (e) => {
5550
5562
  if (e.target === e.currentTarget) onClose();
5551
5563
  },
5552
- children: /* @__PURE__ */ jsxs44(
5564
+ children: /* @__PURE__ */ jsxs45(
5553
5565
  "div",
5554
5566
  {
5555
5567
  ref: modalRef,
@@ -5569,7 +5581,7 @@ function StreamoidWorkspaceSwitcher({
5569
5581
  style: {
5570
5582
  borderBottom: "1px solid var(--alias-border-divider)"
5571
5583
  },
5572
- children: /* @__PURE__ */ jsx54("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ jsxs44(
5584
+ children: /* @__PURE__ */ jsx54("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ jsxs45(
5573
5585
  "div",
5574
5586
  {
5575
5587
  className: "flex items-center w-full",
@@ -5605,7 +5617,7 @@ function StreamoidWorkspaceSwitcher({
5605
5617
  style: {
5606
5618
  borderRadius: "0 0 var(--radius-4xl) var(--radius-4xl)"
5607
5619
  },
5608
- children: /* @__PURE__ */ jsxs44(
5620
+ children: /* @__PURE__ */ jsxs45(
5609
5621
  "div",
5610
5622
  {
5611
5623
  className: "flex flex-col items-start",
@@ -5664,7 +5676,7 @@ var ScAppListingCard_default = {
5664
5676
 
5665
5677
  // src/SC-app listing card/ScAppListingCard.tsx
5666
5678
  import { SiconCart } from "@streamoid/icons";
5667
- import { jsx as jsx55, jsxs as jsxs45 } from "react/jsx-runtime";
5679
+ import { jsx as jsx55, jsxs as jsxs46 } from "react/jsx-runtime";
5668
5680
  var ScAppListingCard = ({
5669
5681
  icon = /* @__PURE__ */ jsx55(SiconCart, { className: ScAppListingCard_default.siconCartInstance }),
5670
5682
  title = "Stores",
@@ -5672,15 +5684,15 @@ var ScAppListingCard = ({
5672
5684
  className,
5673
5685
  ...props
5674
5686
  }) => {
5675
- return /* @__PURE__ */ jsxs45("div", { className: ScAppListingCard_default.scAppListingCard + " " + className, ...props, children: [
5676
- /* @__PURE__ */ jsxs45("div", { className: ScAppListingCard_default.header, children: [
5687
+ return /* @__PURE__ */ jsxs46("div", { className: ScAppListingCard_default.scAppListingCard + " " + className, ...props, children: [
5688
+ /* @__PURE__ */ jsxs46("div", { className: ScAppListingCard_default.header, children: [
5677
5689
  /* @__PURE__ */ jsx55("div", { className: ScAppListingCard_default.iconContainer, children: icon }),
5678
- /* @__PURE__ */ jsxs45("div", { className: ScAppListingCard_default.title, children: [
5690
+ /* @__PURE__ */ jsxs46("div", { className: ScAppListingCard_default.title, children: [
5679
5691
  title,
5680
5692
  " "
5681
5693
  ] })
5682
5694
  ] }),
5683
- /* @__PURE__ */ jsxs45("div", { className: ScAppListingCard_default.description, children: [
5695
+ /* @__PURE__ */ jsxs46("div", { className: ScAppListingCard_default.description, children: [
5684
5696
  descrp,
5685
5697
  " "
5686
5698
  ] })
@@ -5698,7 +5710,7 @@ var ScAppCard_default = {
5698
5710
 
5699
5711
  // src/SC-appCard/ScAppCard.tsx
5700
5712
  import { SiconArtifacts as SiconArtifacts2 } from "@streamoid/icons";
5701
- import { jsx as jsx56, jsxs as jsxs46 } from "react/jsx-runtime";
5713
+ import { jsx as jsx56, jsxs as jsxs47 } from "react/jsx-runtime";
5702
5714
  var ScAppCard = ({
5703
5715
  appIcon = /* @__PURE__ */ jsx56(SiconArtifacts2, { className: ScAppCard_default.siconArtifactsInstance }),
5704
5716
  appName = "Artifax",
@@ -5706,14 +5718,14 @@ var ScAppCard = ({
5706
5718
  className,
5707
5719
  ...props
5708
5720
  }) => {
5709
- return /* @__PURE__ */ jsxs46("div", { className: ScAppCard_default.scAppCard + " " + className, ...props, children: [
5721
+ return /* @__PURE__ */ jsxs47("div", { className: ScAppCard_default.scAppCard + " " + className, ...props, children: [
5710
5722
  /* @__PURE__ */ jsx56("div", { className: ScAppCard_default.iconContainer, children: appIcon }),
5711
- /* @__PURE__ */ jsxs46("div", { className: ScAppCard_default.textContainer, children: [
5712
- /* @__PURE__ */ jsxs46("div", { className: ScAppCard_default.title, children: [
5723
+ /* @__PURE__ */ jsxs47("div", { className: ScAppCard_default.textContainer, children: [
5724
+ /* @__PURE__ */ jsxs47("div", { className: ScAppCard_default.title, children: [
5713
5725
  appName,
5714
5726
  " "
5715
5727
  ] }),
5716
- /* @__PURE__ */ jsxs46("div", { className: ScAppCard_default.subtitle, children: [
5728
+ /* @__PURE__ */ jsxs47("div", { className: ScAppCard_default.subtitle, children: [
5717
5729
  appDescription,
5718
5730
  " "
5719
5731
  ] })
@@ -5740,7 +5752,7 @@ var ScAppCardV3_default = {
5740
5752
 
5741
5753
  // src/SC-AppCardV3/ScAppCardV3.tsx
5742
5754
  import { SiconCart as SiconCart2 } from "@streamoid/icons";
5743
- import { jsx as jsx57, jsxs as jsxs47 } from "react/jsx-runtime";
5755
+ import { jsx as jsx57, jsxs as jsxs48 } from "react/jsx-runtime";
5744
5756
  var ScAppCardV3 = ({
5745
5757
  appIcon = /* @__PURE__ */ jsx57(SiconCart2, { className: ScAppCardV3_default.iconPillIcon }),
5746
5758
  appName = "Stores",
@@ -5760,13 +5772,13 @@ var ScAppCardV3 = ({
5760
5772
  className: [ScAppCardV3_default.cardBorder, className || ""].filter(Boolean).join(" "),
5761
5773
  style,
5762
5774
  ...props,
5763
- children: /* @__PURE__ */ jsxs47("div", { className: cardClass, children: [
5775
+ children: /* @__PURE__ */ jsxs48("div", { className: cardClass, children: [
5764
5776
  /* @__PURE__ */ jsx57("div", { className: ScAppCardV3_default.glow }),
5765
5777
  /* @__PURE__ */ jsx57("div", { className: ScAppCardV3_default.glowHover }),
5766
- /* @__PURE__ */ jsxs47("div", { className: ScAppCardV3_default.header, children: [
5767
- /* @__PURE__ */ jsxs47("div", { className: ScAppCardV3_default.iconRow, children: [
5778
+ /* @__PURE__ */ jsxs48("div", { className: ScAppCardV3_default.header, children: [
5779
+ /* @__PURE__ */ jsxs48("div", { className: ScAppCardV3_default.iconRow, children: [
5768
5780
  /* @__PURE__ */ jsx57("p", { className: ScAppCardV3_default.appName, children: appName }),
5769
- /* @__PURE__ */ jsxs47("div", { className: ScAppCardV3_default.iconPill, children: [
5781
+ /* @__PURE__ */ jsxs48("div", { className: ScAppCardV3_default.iconPill, children: [
5770
5782
  /* @__PURE__ */ jsx57("div", { className: ScAppCardV3_default.iconPillBg }),
5771
5783
  /* @__PURE__ */ jsx57("div", { className: ScAppCardV3_default.iconPillIcon, children: appIcon }),
5772
5784
  /* @__PURE__ */ jsx57("div", { className: ScAppCardV3_default.iconPillShadow })
@@ -5791,7 +5803,7 @@ var ScBriefCard_default = {
5791
5803
  };
5792
5804
 
5793
5805
  // src/SC-BriefCard/ScBriefCard.tsx
5794
- import { jsx as jsx58, jsxs as jsxs48 } from "react/jsx-runtime";
5806
+ import { jsx as jsx58, jsxs as jsxs49 } from "react/jsx-runtime";
5795
5807
  var ScBriefCard = ({
5796
5808
  description = "Centralized product and asset management for every storefront",
5797
5809
  active = false,
@@ -5809,7 +5821,7 @@ var ScBriefCard = ({
5809
5821
  className: [ScBriefCard_default.cardBorder, className || ""].filter(Boolean).join(" "),
5810
5822
  style,
5811
5823
  ...props,
5812
- children: /* @__PURE__ */ jsxs48("div", { className: cardClass, children: [
5824
+ children: /* @__PURE__ */ jsxs49("div", { className: cardClass, children: [
5813
5825
  /* @__PURE__ */ jsx58("div", { className: ScBriefCard_default.glow }),
5814
5826
  /* @__PURE__ */ jsx58("div", { className: ScBriefCard_default.glowHover }),
5815
5827
  /* @__PURE__ */ jsx58("div", { className: ScBriefCard_default.body, children: /* @__PURE__ */ jsx58("p", { className: ScBriefCard_default.description, children: description }) })
@@ -5849,7 +5861,7 @@ var ScToggleSwitch_default = {
5849
5861
  };
5850
5862
 
5851
5863
  // src/SC-toggleSwitch/ScToggleSwitch.tsx
5852
- import { jsx as jsx59, jsxs as jsxs49 } from "react/jsx-runtime";
5864
+ import { jsx as jsx59, jsxs as jsxs50 } from "react/jsx-runtime";
5853
5865
  var ScToggleSwitch = ({
5854
5866
  active = "false",
5855
5867
  checked,
@@ -5869,10 +5881,10 @@ var ScToggleSwitch = ({
5869
5881
  props.onClick?.(e);
5870
5882
  },
5871
5883
  style: { cursor: "pointer", ...props.style },
5872
- children: isActive ? /* @__PURE__ */ jsxs49("svg", { width: "40", height: "24", viewBox: "0 0 40 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
5884
+ children: isActive ? /* @__PURE__ */ jsxs50("svg", { width: "40", height: "24", viewBox: "0 0 40 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
5873
5885
  /* @__PURE__ */ jsx59("rect", { width: "40", height: "24", rx: "12", fill: "var(--alias-fill-base-base, #f5f5f5)" }),
5874
5886
  /* @__PURE__ */ jsx59("circle", { cx: "28", cy: "12", r: "10", fill: "var(--alias-text---icons-inverse, #101010)" })
5875
- ] }) : /* @__PURE__ */ jsxs49("svg", { width: "41", height: "25", viewBox: "0 0 41 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
5887
+ ] }) : /* @__PURE__ */ jsxs50("svg", { width: "41", height: "25", viewBox: "0 0 41 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
5876
5888
  /* @__PURE__ */ jsx59("path", { d: "M0.25 12.25C0.25 5.62258 5.62258 0.25 12.25 0.25H28.25C34.8774 0.25 40.25 5.62258 40.25 12.25C40.25 18.8774 34.8774 24.25 28.25 24.25H12.25C5.62258 24.25 0.25 18.8774 0.25 12.25Z", fill: "var(--alias-fill-neutral-neutral, #1a1a1a)" }),
5877
5889
  /* @__PURE__ */ jsx59("path", { d: "M40 12.25C40 5.76065 34.7393 0.5 28.25 0.5H12.25C5.76065 0.5 0.5 5.76065 0.5 12.25C0.5 18.7393 5.76065 24 12.25 24H28.25C34.7393 24 40 18.7393 40 12.25ZM40.5 12.25C40.5 19.0155 35.0155 24.5 28.25 24.5H12.25C5.48451 24.5 0 19.0155 0 12.25C0 5.48451 5.48451 0 12.25 0H28.25C35.0155 0 40.5 5.48451 40.5 12.25Z", fill: "var(--alias-border-divider, #242424)" }),
5878
5890
  /* @__PURE__ */ jsx59("path", { d: "M2.25 12.25C2.25 6.72715 6.72715 2.25 12.25 2.25C17.7728 2.25 22.25 6.72715 22.25 12.25C22.25 17.7728 17.7728 22.25 12.25 22.25C6.72715 22.25 2.25 17.7728 2.25 12.25Z", fill: "var(--alias-fill-neutral-neutralactive, #313131)" })
@@ -5882,7 +5894,7 @@ var ScToggleSwitch = ({
5882
5894
  };
5883
5895
 
5884
5896
  // src/SC-artifaxInvite/ScArtifaxInvite.tsx
5885
- import { jsx as jsx60, jsxs as jsxs50 } from "react/jsx-runtime";
5897
+ import { jsx as jsx60, jsxs as jsxs51 } from "react/jsx-runtime";
5886
5898
  var ScArtifaxInvite = ({
5887
5899
  active = "true",
5888
5900
  appName = "Artifax",
@@ -5895,7 +5907,7 @@ var ScArtifaxInvite = ({
5895
5907
  }) => {
5896
5908
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
5897
5909
  const variantsClassName = ScArtifaxInvite_default["active-" + (isEnabled ? "true" : "false")];
5898
- return /* @__PURE__ */ jsxs50(
5910
+ return /* @__PURE__ */ jsxs51(
5899
5911
  "div",
5900
5912
  {
5901
5913
  className: ScArtifaxInvite_default.scArtifaxInvite + " " + className + " " + variantsClassName,
@@ -5936,7 +5948,7 @@ var ScPhtogenixInvite_default = {
5936
5948
 
5937
5949
  // src/SC-phtogenixInvite/ScPhtogenixInvite.tsx
5938
5950
  import { SiconArtifacts as SiconArtifacts4 } from "@streamoid/icons";
5939
- import { jsx as jsx61, jsxs as jsxs51 } from "react/jsx-runtime";
5951
+ import { jsx as jsx61, jsxs as jsxs52 } from "react/jsx-runtime";
5940
5952
  var ScPhtogenixInvite = ({
5941
5953
  active = "true",
5942
5954
  scAppCardappDescription = "Info about photogenix",
@@ -5949,7 +5961,7 @@ var ScPhtogenixInvite = ({
5949
5961
  }) => {
5950
5962
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
5951
5963
  const variantsClassName = ScPhtogenixInvite_default["active-" + (isEnabled ? "true" : "false")];
5952
- return /* @__PURE__ */ jsxs51(
5964
+ return /* @__PURE__ */ jsxs52(
5953
5965
  "div",
5954
5966
  {
5955
5967
  className: ScPhtogenixInvite_default.scPhtogenixInvite + " " + className + " " + variantsClassName,
@@ -6013,7 +6025,7 @@ var ScOnlyField_default = {
6013
6025
 
6014
6026
  // src/SC-onlyField/ScOnlyField.tsx
6015
6027
  import { SiconBolt as SiconBolt4 } from "@streamoid/icons";
6016
- import { jsx as jsx62, jsxs as jsxs52 } from "react/jsx-runtime";
6028
+ import { jsx as jsx62, jsxs as jsxs53 } from "react/jsx-runtime";
6017
6029
  var ScOnlyField = ({
6018
6030
  tfRightIcon = /* @__PURE__ */ jsx62(SiconBolt4, { className: ScOnlyField_default.siconBoltInstance }),
6019
6031
  tfLeftIcon = /* @__PURE__ */ jsx62(SiconBolt4, { className: ScOnlyField_default.siconBoltInstance }),
@@ -6034,7 +6046,7 @@ var ScOnlyField = ({
6034
6046
  {
6035
6047
  className: ScOnlyField_default.scOnlyField + " " + className + " " + variantsClassName,
6036
6048
  ...props,
6037
- children: /* @__PURE__ */ jsxs52("div", { className: ScOnlyField_default.inputContainer, children: [
6049
+ children: /* @__PURE__ */ jsxs53("div", { className: ScOnlyField_default.inputContainer, children: [
6038
6050
  (tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ jsx62("div", { className: ScOnlyField_default.iconWrapper, children: tfLeftIcon }),
6039
6051
  /* @__PURE__ */ jsx62(
6040
6052
  "input",
@@ -6064,7 +6076,7 @@ var ScOnlyField = ({
6064
6076
 
6065
6077
  // src/SC-catalogixInvite/ScCatalogixInvite.tsx
6066
6078
  import { SiconHome as SiconHome9 } from "@streamoid/icons";
6067
- import { Fragment as Fragment17, jsx as jsx63, jsxs as jsxs53 } from "react/jsx-runtime";
6079
+ import { Fragment as Fragment17, jsx as jsx63, jsxs as jsxs54 } from "react/jsx-runtime";
6068
6080
  var ScCatalogixInvite = ({
6069
6081
  active = "false",
6070
6082
  appName = "Catalogix",
@@ -6086,13 +6098,13 @@ var ScCatalogixInvite = ({
6086
6098
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
6087
6099
  const variantsClassName = ScCatalogixInvite_default["active-" + (isEnabled ? "true" : "false")];
6088
6100
  const displayCount = selectedStores ? `${selectedStores.length} Selected` : selectedCount;
6089
- return /* @__PURE__ */ jsxs53(
6101
+ return /* @__PURE__ */ jsxs54(
6090
6102
  "div",
6091
6103
  {
6092
6104
  className: ScCatalogixInvite_default.scCatalogixInvite + " " + className + " " + variantsClassName,
6093
6105
  ...props,
6094
6106
  children: [
6095
- /* @__PURE__ */ jsxs53("div", { className: ScCatalogixInvite_default.appHeader, children: [
6107
+ /* @__PURE__ */ jsxs54("div", { className: ScCatalogixInvite_default.appHeader, children: [
6096
6108
  /* @__PURE__ */ jsx63(
6097
6109
  ScAppCard,
6098
6110
  {
@@ -6111,13 +6123,13 @@ var ScCatalogixInvite = ({
6111
6123
  }
6112
6124
  )
6113
6125
  ] }),
6114
- isEnabled && /* @__PURE__ */ jsx63(Fragment17, { children: /* @__PURE__ */ jsxs53("div", { className: ScCatalogixInvite_default.storeAccessContainer, children: [
6115
- /* @__PURE__ */ jsxs53("div", { className: ScCatalogixInvite_default.storeAccessHeader, children: [
6116
- /* @__PURE__ */ jsxs53("div", { className: ScCatalogixInvite_default.storeAccessTitle, children: [
6126
+ isEnabled && /* @__PURE__ */ jsx63(Fragment17, { children: /* @__PURE__ */ jsxs54("div", { className: ScCatalogixInvite_default.storeAccessContainer, children: [
6127
+ /* @__PURE__ */ jsxs54("div", { className: ScCatalogixInvite_default.storeAccessHeader, children: [
6128
+ /* @__PURE__ */ jsxs54("div", { className: ScCatalogixInvite_default.storeAccessTitle, children: [
6117
6129
  storeAccessTitle,
6118
6130
  " "
6119
6131
  ] }),
6120
- /* @__PURE__ */ jsxs53("div", { className: ScCatalogixInvite_default.selectedCount, children: [
6132
+ /* @__PURE__ */ jsxs54("div", { className: ScCatalogixInvite_default.selectedCount, children: [
6121
6133
  displayCount,
6122
6134
  " "
6123
6135
  ] })
@@ -6150,7 +6162,7 @@ var ScCatalogixInvite = ({
6150
6162
  fontFamily: "var(--font-family-font-family-body, Inter, sans-serif)",
6151
6163
  fontSize: "var(--font-size-font-size-sm, 14px)",
6152
6164
  lineHeight: "var(--line-height-line-height-sm, 20px)"
6153
- }, children: "No stores found" }) : /* @__PURE__ */ jsxs53(Fragment17, { children: [
6165
+ }, children: "No stores found" }) : /* @__PURE__ */ jsxs54(Fragment17, { children: [
6154
6166
  /* @__PURE__ */ jsx63(
6155
6167
  ScPairtext,
6156
6168
  {
@@ -6204,7 +6216,7 @@ var ScCatalogixInvite = ({
6204
6216
  };
6205
6217
 
6206
6218
  // src/SC-appField/ScAppField.tsx
6207
- import { jsx as jsx64, jsxs as jsxs54 } from "react/jsx-runtime";
6219
+ import { jsx as jsx64, jsxs as jsxs55 } from "react/jsx-runtime";
6208
6220
  var ScAppField = ({
6209
6221
  appFieldTitle = "App permission",
6210
6222
  className,
@@ -6221,12 +6233,12 @@ var ScAppField = ({
6221
6233
  onCatalogixSearchChange,
6222
6234
  ...props
6223
6235
  }) => {
6224
- return /* @__PURE__ */ jsxs54("div", { className: ScAppField_default.scAppField + " " + className, ...props, children: [
6225
- /* @__PURE__ */ jsx64("div", { className: ScAppField_default.labelContainer, children: /* @__PURE__ */ jsxs54("div", { className: ScAppField_default.title, children: [
6236
+ return /* @__PURE__ */ jsxs55("div", { className: ScAppField_default.scAppField + " " + className, ...props, children: [
6237
+ /* @__PURE__ */ jsx64("div", { className: ScAppField_default.labelContainer, children: /* @__PURE__ */ jsxs55("div", { className: ScAppField_default.title, children: [
6226
6238
  appFieldTitle,
6227
6239
  " "
6228
6240
  ] }) }),
6229
- /* @__PURE__ */ jsxs54("div", { className: ScAppField_default.inputContainer, children: [
6241
+ /* @__PURE__ */ jsxs55("div", { className: ScAppField_default.inputContainer, children: [
6230
6242
  /* @__PURE__ */ jsx64(
6231
6243
  ScArtifaxInvite,
6232
6244
  {
@@ -6273,12 +6285,12 @@ var ScBillingHistoryHeader_default = {
6273
6285
  };
6274
6286
 
6275
6287
  // src/SC-billingHistoryHeader/ScBillingHistoryHeader.tsx
6276
- import { jsx as jsx65, jsxs as jsxs55 } from "react/jsx-runtime";
6288
+ import { jsx as jsx65, jsxs as jsxs56 } from "react/jsx-runtime";
6277
6289
  var ScBillingHistoryHeader = ({
6278
6290
  className,
6279
6291
  ...props
6280
6292
  }) => {
6281
- return /* @__PURE__ */ jsxs55("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
6293
+ return /* @__PURE__ */ jsxs56("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
6282
6294
  /* @__PURE__ */ jsx65(
6283
6295
  ScHeader,
6284
6296
  {
@@ -6325,15 +6337,15 @@ var ScCheckField_default = {
6325
6337
 
6326
6338
  // src/SC-checkField/ScCheckField.tsx
6327
6339
  import { SiconHome as SiconHome10 } from "@streamoid/icons";
6328
- import { Fragment as Fragment18, jsx as jsx66, jsxs as jsxs56 } from "react/jsx-runtime";
6340
+ import { Fragment as Fragment18, jsx as jsx66, jsxs as jsxs57 } from "react/jsx-runtime";
6329
6341
  var ScCheckField = ({
6330
6342
  label = "Label",
6331
6343
  className,
6332
6344
  checkboxes,
6333
6345
  ...props
6334
6346
  }) => {
6335
- return /* @__PURE__ */ jsxs56("div", { className: ScCheckField_default.scCheckField + " " + className, ...props, children: [
6336
- /* @__PURE__ */ jsx66("div", { className: ScCheckField_default.labelContainer, children: /* @__PURE__ */ jsxs56("div", { className: ScCheckField_default.label, children: [
6347
+ return /* @__PURE__ */ jsxs57("div", { className: ScCheckField_default.scCheckField + " " + className, ...props, children: [
6348
+ /* @__PURE__ */ jsx66("div", { className: ScCheckField_default.labelContainer, children: /* @__PURE__ */ jsxs57("div", { className: ScCheckField_default.label, children: [
6337
6349
  label,
6338
6350
  " "
6339
6351
  ] }) }),
@@ -6347,7 +6359,7 @@ var ScCheckField = ({
6347
6359
  className: ScCheckField_default.scPairtextInstance
6348
6360
  },
6349
6361
  i
6350
- )) : /* @__PURE__ */ jsxs56(Fragment18, { children: [
6362
+ )) : /* @__PURE__ */ jsxs57(Fragment18, { children: [
6351
6363
  /* @__PURE__ */ jsx66(
6352
6364
  ScPairtext,
6353
6365
  {
@@ -6380,7 +6392,7 @@ var ScFieldButton_default = {
6380
6392
 
6381
6393
  // src/SC-fieldButton/ScFieldButton.tsx
6382
6394
  import { SiconHome as SiconHome11 } from "@streamoid/icons";
6383
- import { Fragment as Fragment19, jsx as jsx67, jsxs as jsxs57 } from "react/jsx-runtime";
6395
+ import { Fragment as Fragment19, jsx as jsx67, jsxs as jsxs58 } from "react/jsx-runtime";
6384
6396
  var ScFieldButton = ({
6385
6397
  icon = /* @__PURE__ */ jsx67(SiconHome11, { className: ScFieldButton_default.siconHomeInstance }),
6386
6398
  type = "default",
@@ -6395,9 +6407,9 @@ var ScFieldButton = ({
6395
6407
  {
6396
6408
  className: ScFieldButton_default.scFieldButton + " " + className + " " + variantsClassName,
6397
6409
  ...props,
6398
- children: /* @__PURE__ */ jsxs57("div", { className: ScFieldButton_default.container, children: [
6410
+ children: /* @__PURE__ */ jsxs58("div", { className: ScFieldButton_default.container, children: [
6399
6411
  (type === "icon-right" || type === "only-icon") && /* @__PURE__ */ jsx67(Fragment19, { children: icon }),
6400
- (type === "icon-left" || type === "default" || type === "icon-right") && /* @__PURE__ */ jsx67(Fragment19, { children: /* @__PURE__ */ jsxs57("div", { className: ScFieldButton_default.label, children: [
6412
+ (type === "icon-left" || type === "default" || type === "icon-right") && /* @__PURE__ */ jsx67(Fragment19, { children: /* @__PURE__ */ jsxs58("div", { className: ScFieldButton_default.label, children: [
6401
6413
  text,
6402
6414
  " "
6403
6415
  ] }) }),
@@ -6416,12 +6428,12 @@ var ScPendingAction_default = {
6416
6428
 
6417
6429
  // src/SC-pendingAction/ScPendingAction.tsx
6418
6430
  import { SiconHome as SiconHome12 } from "@streamoid/icons";
6419
- import { jsx as jsx68, jsxs as jsxs58 } from "react/jsx-runtime";
6431
+ import { jsx as jsx68, jsxs as jsxs59 } from "react/jsx-runtime";
6420
6432
  var ScPendingAction = ({
6421
6433
  className,
6422
6434
  ...props
6423
6435
  }) => {
6424
- return /* @__PURE__ */ jsxs58("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
6436
+ return /* @__PURE__ */ jsxs59("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
6425
6437
  /* @__PURE__ */ jsx68(
6426
6438
  ScButton,
6427
6439
  {
@@ -6461,7 +6473,7 @@ var ScQuickPrompt_default = {
6461
6473
 
6462
6474
  // src/SC-quick prompt/ScQuickPrompt.tsx
6463
6475
  import { SiconBolt as SiconBolt5 } from "@streamoid/icons";
6464
- import { jsx as jsx69, jsxs as jsxs59 } from "react/jsx-runtime";
6476
+ import { jsx as jsx69, jsxs as jsxs60 } from "react/jsx-runtime";
6465
6477
  var ScQuickPrompt = ({
6466
6478
  appName = "Photogenix",
6467
6479
  heading = "Swap Model and Background",
@@ -6469,20 +6481,20 @@ var ScQuickPrompt = ({
6469
6481
  className,
6470
6482
  ...props
6471
6483
  }) => {
6472
- return /* @__PURE__ */ jsxs59("div", { className: ScQuickPrompt_default.scQuickPrompt + " " + className, ...props, children: [
6473
- /* @__PURE__ */ jsxs59("div", { className: ScQuickPrompt_default.header, children: [
6484
+ return /* @__PURE__ */ jsxs60("div", { className: ScQuickPrompt_default.scQuickPrompt + " " + className, ...props, children: [
6485
+ /* @__PURE__ */ jsxs60("div", { className: ScQuickPrompt_default.header, children: [
6474
6486
  /* @__PURE__ */ jsx69("div", { className: ScQuickPrompt_default.iconContainer, children: /* @__PURE__ */ jsx69(SiconBolt5, { className: ScQuickPrompt_default.siconBoltInstance }) }),
6475
- /* @__PURE__ */ jsx69("div", { className: ScQuickPrompt_default.titleContainer, children: /* @__PURE__ */ jsxs59("div", { className: ScQuickPrompt_default.title, children: [
6487
+ /* @__PURE__ */ jsx69("div", { className: ScQuickPrompt_default.titleContainer, children: /* @__PURE__ */ jsxs60("div", { className: ScQuickPrompt_default.title, children: [
6476
6488
  appName,
6477
6489
  " "
6478
6490
  ] }) })
6479
6491
  ] }),
6480
- /* @__PURE__ */ jsxs59("div", { className: ScQuickPrompt_default.body, children: [
6481
- /* @__PURE__ */ jsxs59("div", { className: ScQuickPrompt_default.heading, children: [
6492
+ /* @__PURE__ */ jsxs60("div", { className: ScQuickPrompt_default.body, children: [
6493
+ /* @__PURE__ */ jsxs60("div", { className: ScQuickPrompt_default.heading, children: [
6482
6494
  heading,
6483
6495
  " "
6484
6496
  ] }),
6485
- /* @__PURE__ */ jsxs59("div", { className: ScQuickPrompt_default.description, children: [
6497
+ /* @__PURE__ */ jsxs60("div", { className: ScQuickPrompt_default.description, children: [
6486
6498
  description,
6487
6499
  " "
6488
6500
  ] })
@@ -6499,12 +6511,12 @@ var ScReferralTableHeader_default = {
6499
6511
  };
6500
6512
 
6501
6513
  // src/SC-referralTableHeader/ScReferralTableHeader.tsx
6502
- import { jsx as jsx70, jsxs as jsxs60 } from "react/jsx-runtime";
6514
+ import { jsx as jsx70, jsxs as jsxs61 } from "react/jsx-runtime";
6503
6515
  var ScReferralTableHeader = ({
6504
6516
  className,
6505
6517
  ...props
6506
6518
  }) => {
6507
- return /* @__PURE__ */ jsxs60("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
6519
+ return /* @__PURE__ */ jsxs61("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
6508
6520
  /* @__PURE__ */ jsx70(
6509
6521
  ScHeader,
6510
6522
  {
@@ -6550,7 +6562,7 @@ var ScReferralTableList_default = {
6550
6562
  };
6551
6563
 
6552
6564
  // src/SC-referralTableList/ScReferralTableList.tsx
6553
- import { jsx as jsx71, jsxs as jsxs61 } from "react/jsx-runtime";
6565
+ import { jsx as jsx71, jsxs as jsxs62 } from "react/jsx-runtime";
6554
6566
  var ScReferralTableList = ({
6555
6567
  userEmail = "chris@kepler.com",
6556
6568
  userName,
@@ -6560,7 +6572,7 @@ var ScReferralTableList = ({
6560
6572
  className,
6561
6573
  ...props
6562
6574
  }) => {
6563
- return /* @__PURE__ */ jsxs61("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
6575
+ return /* @__PURE__ */ jsxs62("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
6564
6576
  /* @__PURE__ */ jsx71(
6565
6577
  ScProfile,
6566
6578
  {
@@ -6569,12 +6581,12 @@ var ScReferralTableList = ({
6569
6581
  className: ScReferralTableList_default.scProfileInstance
6570
6582
  }
6571
6583
  ),
6572
- /* @__PURE__ */ jsxs61("div", { className: ScReferralTableList_default.date, children: [
6584
+ /* @__PURE__ */ jsxs62("div", { className: ScReferralTableList_default.date, children: [
6573
6585
  date,
6574
6586
  " "
6575
6587
  ] }),
6576
6588
  /* @__PURE__ */ jsx71(ScBadges, { text: status, className: ScReferralTableList_default.scBadgesInstance }),
6577
- /* @__PURE__ */ jsxs61("div", { className: ScReferralTableList_default.points, children: [
6589
+ /* @__PURE__ */ jsxs62("div", { className: ScReferralTableList_default.points, children: [
6578
6590
  points,
6579
6591
  " "
6580
6592
  ] })
@@ -6590,12 +6602,12 @@ var ScSettingsNav_default = {
6590
6602
  // src/SC-settingsNav/ScSettingsNav.tsx
6591
6603
  import { SiconTeam as SiconTeam5 } from "@streamoid/icons";
6592
6604
  import { SiconWorkspace, SiconReferral } from "@streamoid/icons";
6593
- import { jsx as jsx72, jsxs as jsxs62 } from "react/jsx-runtime";
6605
+ import { jsx as jsx72, jsxs as jsxs63 } from "react/jsx-runtime";
6594
6606
  var ScSettingsNav = ({
6595
6607
  className,
6596
6608
  ...props
6597
6609
  }) => {
6598
- return /* @__PURE__ */ jsx72("div", { className: ScSettingsNav_default.scSettingsNav + " " + className, ...props, children: /* @__PURE__ */ jsxs62("div", { className: ScSettingsNav_default.container, children: [
6610
+ return /* @__PURE__ */ jsx72("div", { className: ScSettingsNav_default.scSettingsNav + " " + className, ...props, children: /* @__PURE__ */ jsxs63("div", { className: ScSettingsNav_default.container, children: [
6599
6611
  /* @__PURE__ */ jsx72(
6600
6612
  ScSidebarMenu,
6601
6613
  {
@@ -6632,7 +6644,7 @@ var ScTabField_default = {
6632
6644
  };
6633
6645
 
6634
6646
  // src/SC-tabField/ScTabField.tsx
6635
- import { jsx as jsx73, jsxs as jsxs63 } from "react/jsx-runtime";
6647
+ import { jsx as jsx73, jsxs as jsxs64 } from "react/jsx-runtime";
6636
6648
  var ScTabField = ({
6637
6649
  label = "Label",
6638
6650
  className,
@@ -6641,8 +6653,8 @@ var ScTabField = ({
6641
6653
  onTabChange,
6642
6654
  ...props
6643
6655
  }) => {
6644
- return /* @__PURE__ */ jsxs63("div", { className: ScTabField_default.scTabField + " " + className, children: [
6645
- /* @__PURE__ */ jsx73("div", { className: ScTabField_default.labelContainer, children: /* @__PURE__ */ jsxs63("div", { className: ScTabField_default.label, children: [
6656
+ return /* @__PURE__ */ jsxs64("div", { className: ScTabField_default.scTabField + " " + className, children: [
6657
+ /* @__PURE__ */ jsx73("div", { className: ScTabField_default.labelContainer, children: /* @__PURE__ */ jsxs64("div", { className: ScTabField_default.label, children: [
6646
6658
  label,
6647
6659
  " "
6648
6660
  ] }) }),
@@ -6689,14 +6701,14 @@ var ScTableHeader_default = {
6689
6701
  };
6690
6702
 
6691
6703
  // src/SC-tableHeader/ScTableHeader.tsx
6692
- import { Fragment as Fragment20, jsx as jsx74, jsxs as jsxs64 } from "react/jsx-runtime";
6704
+ import { Fragment as Fragment20, jsx as jsx74, jsxs as jsxs65 } from "react/jsx-runtime";
6693
6705
  var ScTableHeader = ({
6694
6706
  type = "default",
6695
6707
  className,
6696
6708
  ...props
6697
6709
  }) => {
6698
6710
  const variantsClassName = ScTableHeader_default["type-" + type];
6699
- return /* @__PURE__ */ jsxs64(
6711
+ return /* @__PURE__ */ jsxs65(
6700
6712
  "div",
6701
6713
  {
6702
6714
  className: ScTableHeader_default.scTableHeader + " " + className + " " + variantsClassName,
@@ -6775,7 +6787,7 @@ var ScTableList_default = {
6775
6787
  // src/SC-tableList/ScTableList.tsx
6776
6788
  import { SiconArtifacts as SiconArtifacts6, SiconPhotogenix as SiconPhotogenix3 } from "@streamoid/icons";
6777
6789
  import { SiconUserAdd, SiconCoins } from "@streamoid/icons";
6778
- import { Fragment as Fragment21, jsx as jsx75, jsxs as jsxs65 } from "react/jsx-runtime";
6790
+ import { Fragment as Fragment21, jsx as jsx75, jsxs as jsxs66 } from "react/jsx-runtime";
6779
6791
  var ScTableList = ({
6780
6792
  invitedBy = "Rohan",
6781
6793
  signedOn = "Nov 9th, 2025",
@@ -6787,7 +6799,7 @@ var ScTableList = ({
6787
6799
  ...props
6788
6800
  }) => {
6789
6801
  const variantsClassName = ScTableList_default["hover-" + hover] + " " + ScTableList_default["variant-" + variant];
6790
- return /* @__PURE__ */ jsxs65(
6802
+ return /* @__PURE__ */ jsxs66(
6791
6803
  "div",
6792
6804
  {
6793
6805
  className: ScTableList_default.scTableList + " " + className + " " + variantsClassName,
@@ -6802,7 +6814,7 @@ var ScTableList = ({
6802
6814
  }
6803
6815
  ),
6804
6816
  /* @__PURE__ */ jsx75(ScRole, { className: ScTableList_default.scRoleInstance }),
6805
- /* @__PURE__ */ jsxs65("div", { className: ScTableList_default.accessInfo, children: [
6817
+ /* @__PURE__ */ jsxs66("div", { className: ScTableList_default.accessInfo, children: [
6806
6818
  /* @__PURE__ */ jsx75(
6807
6819
  ScAccess,
6808
6820
  {
@@ -6821,7 +6833,7 @@ var ScTableList = ({
6821
6833
  }
6822
6834
  )
6823
6835
  ] }),
6824
- /* @__PURE__ */ jsxs65("div", { className: ScTableList_default.userName, children: [
6836
+ /* @__PURE__ */ jsxs66("div", { className: ScTableList_default.userName, children: [
6825
6837
  invitedBy,
6826
6838
  " "
6827
6839
  ] }),
@@ -6831,7 +6843,7 @@ var ScTableList = ({
6831
6843
  className: ScTableList_default.scPendingActionInstance
6832
6844
  }
6833
6845
  ) }),
6834
- variant === "active" && /* @__PURE__ */ jsx75(Fragment21, { children: /* @__PURE__ */ jsxs65("div", { className: ScTableList_default.date, children: [
6846
+ variant === "active" && /* @__PURE__ */ jsx75(Fragment21, { children: /* @__PURE__ */ jsxs66("div", { className: ScTableList_default.date, children: [
6835
6847
  signedOn,
6836
6848
  " "
6837
6849
  ] }) })
@@ -6866,7 +6878,7 @@ import {
6866
6878
  SiconSwitch as SiconSwitch2,
6867
6879
  SiconLogout as SiconLogout2
6868
6880
  } from "@streamoid/icons";
6869
- import { jsx as jsx76, jsxs as jsxs66 } from "react/jsx-runtime";
6881
+ import { jsx as jsx76, jsxs as jsxs67 } from "react/jsx-runtime";
6870
6882
  var ScWorkspaceCard = ({
6871
6883
  workspaceName = "Stores",
6872
6884
  role = "Admin",
@@ -6876,20 +6888,20 @@ var ScWorkspaceCard = ({
6876
6888
  className,
6877
6889
  ...props
6878
6890
  }) => {
6879
- return /* @__PURE__ */ jsxs66("div", { className: ScWorkspaceCard_default.scWorkspaceCard + " " + className, ...props, children: [
6880
- /* @__PURE__ */ jsxs66("div", { className: ScWorkspaceCard_default.workspaceInfo, children: [
6891
+ return /* @__PURE__ */ jsxs67("div", { className: ScWorkspaceCard_default.scWorkspaceCard + " " + className, ...props, children: [
6892
+ /* @__PURE__ */ jsxs67("div", { className: ScWorkspaceCard_default.workspaceInfo, children: [
6881
6893
  /* @__PURE__ */ jsx76(
6882
6894
  ScIntialProfileCover,
6883
6895
  {
6884
6896
  className: ScWorkspaceCard_default.scIntialProfileCoverInstance
6885
6897
  }
6886
6898
  ),
6887
- /* @__PURE__ */ jsxs66("div", { className: ScWorkspaceCard_default.workspaceName, children: [
6899
+ /* @__PURE__ */ jsxs67("div", { className: ScWorkspaceCard_default.workspaceName, children: [
6888
6900
  workspaceName,
6889
6901
  " "
6890
6902
  ] })
6891
6903
  ] }),
6892
- /* @__PURE__ */ jsxs66("div", { className: ScWorkspaceCard_default.userInfo, children: [
6904
+ /* @__PURE__ */ jsxs67("div", { className: ScWorkspaceCard_default.userInfo, children: [
6893
6905
  /* @__PURE__ */ jsx76(
6894
6906
  ScBadges,
6895
6907
  {
@@ -6898,7 +6910,7 @@ var ScWorkspaceCard = ({
6898
6910
  className: ScWorkspaceCard_default.scBadgesInstance
6899
6911
  }
6900
6912
  ),
6901
- /* @__PURE__ */ jsxs66("div", { className: ScWorkspaceCard_default.userDetails, children: [
6913
+ /* @__PURE__ */ jsxs67("div", { className: ScWorkspaceCard_default.userDetails, children: [
6902
6914
  /* @__PURE__ */ jsx76(
6903
6915
  ScPairtext,
6904
6916
  {
@@ -6968,7 +6980,7 @@ var ScWorkspaceSwitchCard_default = {
6968
6980
  };
6969
6981
 
6970
6982
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.tsx
6971
- import { jsx as jsx77, jsxs as jsxs67 } from "react/jsx-runtime";
6983
+ import { jsx as jsx77, jsxs as jsxs68 } from "react/jsx-runtime";
6972
6984
  function ScWorkspaceSwitchCard({
6973
6985
  wsName = "Workspace name is kepler",
6974
6986
  role = "Admin",
@@ -7004,7 +7016,7 @@ function ScWorkspaceSwitchCard({
7004
7016
  className: cardClass,
7005
7017
  onMouseEnter: () => setInternalHover(true),
7006
7018
  onMouseLeave: () => setInternalHover(false),
7007
- children: /* @__PURE__ */ jsxs67("div", { className: ScWorkspaceSwitchCard_default.wsInfo, children: [
7019
+ children: /* @__PURE__ */ jsxs68("div", { className: ScWorkspaceSwitchCard_default.wsInfo, children: [
7008
7020
  /* @__PURE__ */ jsx77(
7009
7021
  ScDp,
7010
7022
  {
@@ -7019,20 +7031,20 @@ function ScWorkspaceSwitchCard({
7019
7031
  }
7020
7032
  }
7021
7033
  ),
7022
- /* @__PURE__ */ jsxs67("div", { className: ScWorkspaceSwitchCard_default.infoCol, children: [
7034
+ /* @__PURE__ */ jsxs68("div", { className: ScWorkspaceSwitchCard_default.infoCol, children: [
7023
7035
  /* @__PURE__ */ jsx77("p", { className: ScWorkspaceSwitchCard_default.wsName, children: wsName }),
7024
- /* @__PURE__ */ jsxs67("div", { className: ScWorkspaceSwitchCard_default.detailsRow, children: [
7025
- /* @__PURE__ */ jsxs67("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
7036
+ /* @__PURE__ */ jsxs68("div", { className: ScWorkspaceSwitchCard_default.detailsRow, children: [
7037
+ /* @__PURE__ */ jsxs68("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
7026
7038
  /* @__PURE__ */ jsx77("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Role" }),
7027
7039
  /* @__PURE__ */ jsx77("span", { className: roleColorClass, children: displayRole })
7028
7040
  ] }),
7029
7041
  /* @__PURE__ */ jsx77(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
7030
- /* @__PURE__ */ jsxs67("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
7042
+ /* @__PURE__ */ jsxs68("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
7031
7043
  /* @__PURE__ */ jsx77("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Plan" }),
7032
7044
  /* @__PURE__ */ jsx77("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: plan })
7033
7045
  ] }),
7034
7046
  /* @__PURE__ */ jsx77(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
7035
- /* @__PURE__ */ jsxs67("div", { className: ScWorkspaceSwitchCard_default.detailItemFlex, children: [
7047
+ /* @__PURE__ */ jsxs68("div", { className: ScWorkspaceSwitchCard_default.detailItemFlex, children: [
7036
7048
  /* @__PURE__ */ jsx77("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Workspace Owner" }),
7037
7049
  /* @__PURE__ */ jsx77("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: ownerId })
7038
7050
  ] })
@@ -7094,6 +7106,400 @@ function ScWorkspaceSwitchCard({
7094
7106
  }
7095
7107
  var NscWorkspaceSwitch = ScWorkspaceSwitchCard;
7096
7108
 
7109
+ // src/SC-ThinkingStepIcon/ScThinkingStepIcon.module.css
7110
+ var ScThinkingStepIcon_default = {
7111
+ scThinkingStepIcon: "ScThinkingStepIcon_scThinkingStepIcon",
7112
+ glyph: "ScThinkingStepIcon_glyph",
7113
+ stroke: "ScThinkingStepIcon_stroke",
7114
+ "state-default": "ScThinkingStepIcon_state-default",
7115
+ "state-working": "ScThinkingStepIcon_state-working",
7116
+ "state-completed": "ScThinkingStepIcon_state-completed",
7117
+ "state-error": "ScThinkingStepIcon_state-error",
7118
+ spinner: "ScThinkingStepIcon_spinner",
7119
+ scThinkingStepIconSpin: "ScThinkingStepIcon_scThinkingStepIconSpin"
7120
+ };
7121
+
7122
+ // src/SC-ThinkingStepIcon/ScThinkingStepIcon.tsx
7123
+ import { jsx as jsx78, jsxs as jsxs69 } from "react/jsx-runtime";
7124
+ var ScThinkingStepIcon = ({
7125
+ state = "default",
7126
+ size = 12,
7127
+ className,
7128
+ style,
7129
+ ...props
7130
+ }) => {
7131
+ const variantsClassName = ScThinkingStepIcon_default["state-" + state];
7132
+ return /* @__PURE__ */ jsx78(
7133
+ "span",
7134
+ {
7135
+ className: ScThinkingStepIcon_default.scThinkingStepIcon + " " + (className ?? "") + " " + variantsClassName,
7136
+ style: { width: size, height: size, ...style },
7137
+ ...props,
7138
+ children: /* @__PURE__ */ jsxs69(
7139
+ "svg",
7140
+ {
7141
+ className: ScThinkingStepIcon_default.glyph,
7142
+ width: size,
7143
+ height: size,
7144
+ viewBox: "0 0 13.25 13.25",
7145
+ fill: "none",
7146
+ xmlns: "http://www.w3.org/2000/svg",
7147
+ "aria-hidden": "true",
7148
+ children: [
7149
+ state === "default" && /* @__PURE__ */ jsx78(
7150
+ "circle",
7151
+ {
7152
+ className: ScThinkingStepIcon_default.stroke,
7153
+ cx: "6.625",
7154
+ cy: "6.625",
7155
+ r: "6",
7156
+ strokeWidth: "1.25",
7157
+ strokeLinecap: "round"
7158
+ }
7159
+ ),
7160
+ state === "working" && /* @__PURE__ */ jsx78(
7161
+ "path",
7162
+ {
7163
+ className: ScThinkingStepIcon_default.stroke + " " + ScThinkingStepIcon_default.spinner,
7164
+ d: "M6.625 0.625V3.025M9.145 4.105L10.885 2.365M10.225 6.625H12.625M9.145 9.145L10.885 10.885M6.625 10.225V12.625M2.365 10.885L4.105 9.145M0.625 6.625H3.025M2.365 2.365L4.105 4.105",
7165
+ strokeWidth: "1.25",
7166
+ strokeLinecap: "round",
7167
+ strokeLinejoin: "round"
7168
+ }
7169
+ ),
7170
+ state === "completed" && /* @__PURE__ */ jsx78(
7171
+ "path",
7172
+ {
7173
+ className: ScThinkingStepIcon_default.stroke,
7174
+ d: "M12.5042 5.42704C12.7782 6.77182 12.5829 8.16989 11.9509 9.38811C11.3189 10.6063 10.2883 11.5711 9.03109 12.1214C7.77387 12.6718 6.36597 12.7745 5.04217 12.4125C3.71838 12.0504 2.55871 11.2455 1.75656 10.1319C0.954412 9.0183 0.558269 7.66338 0.634194 6.29307C0.710119 4.92276 1.25352 3.6199 2.17378 2.60175C3.09405 1.5836 4.33554 0.911704 5.69123 0.698118C7.04692 0.484531 8.43486 0.742162 9.62359 1.42804M4.82359 6.02704L6.62359 7.82704L12.6236 1.82705",
7175
+ strokeWidth: "1.25",
7176
+ strokeLinecap: "round",
7177
+ strokeLinejoin: "round"
7178
+ }
7179
+ ),
7180
+ state === "error" && /* @__PURE__ */ jsx78(
7181
+ "path",
7182
+ {
7183
+ className: ScThinkingStepIcon_default.stroke,
7184
+ d: "M4.92831 8.32204L6.62536 6.625M6.62536 6.625L8.3224 4.92794M6.62536 6.625L4.92831 4.92794M6.62536 6.625L8.3224 8.32204M6.625 12.625C9.93868 12.625 12.625 9.93868 12.625 6.625C12.625 3.31129 9.93868 0.625 6.625 0.625C3.31129 0.625 0.625 3.31129 0.625 6.625C0.625 9.93868 3.31129 12.625 6.625 12.625Z",
7185
+ strokeWidth: "1.25",
7186
+ strokeLinecap: "round",
7187
+ strokeLinejoin: "round"
7188
+ }
7189
+ )
7190
+ ]
7191
+ }
7192
+ )
7193
+ }
7194
+ );
7195
+ };
7196
+
7197
+ // src/SC-InChatList/ScInChatList.module.css
7198
+ var ScInChatList_default = {
7199
+ scInChatList: "ScInChatList_scInChatList",
7200
+ indicatorWrapper: "ScInChatList_indicatorWrapper",
7201
+ content: "ScInChatList_content",
7202
+ headerArea: "ScInChatList_headerArea",
7203
+ stepCount: "ScInChatList_stepCount",
7204
+ titleRow: "ScInChatList_titleRow",
7205
+ titleRowClickable: "ScInChatList_titleRowClickable",
7206
+ titleRowStatic: "ScInChatList_titleRowStatic",
7207
+ title: "ScInChatList_title",
7208
+ chevronWrapper: "ScInChatList_chevronWrapper",
7209
+ chevronIcon: "ScInChatList_chevronIcon",
7210
+ descriptionRow: "ScInChatList_descriptionRow",
7211
+ descriptionIcon: "ScInChatList_descriptionIcon",
7212
+ descriptionDot: "ScInChatList_descriptionDot",
7213
+ descriptionText: "ScInChatList_descriptionText",
7214
+ toolPill: "ScInChatList_toolPill",
7215
+ toolText: "ScInChatList_toolText"
7216
+ };
7217
+
7218
+ // src/SC-InChatList/ScInChatList.tsx
7219
+ import { SiconUp as SiconUp2, SiconDown as SiconDown2, SiconDot as SiconDot2 } from "@streamoid/icons";
7220
+ import { jsx as jsx79, jsxs as jsxs70 } from "react/jsx-runtime";
7221
+ var ScInChatList = ({
7222
+ title = "Infrastructure that helps modern brands scale",
7223
+ description = "Description",
7224
+ descriptionVisibility = "no",
7225
+ leadingIndicator = true,
7226
+ iconState = "default",
7227
+ showSteps = false,
7228
+ stepCount = "Step 01:",
7229
+ showTool = true,
7230
+ toolUsing = "Using Catalogix...",
7231
+ onToggle,
7232
+ className,
7233
+ style
7234
+ }) => {
7235
+ const isExpandable = descriptionVisibility === "hidden" || descriptionVisibility === "visible";
7236
+ const isExpanded = descriptionVisibility === "visible";
7237
+ return /* @__PURE__ */ jsxs70(
7238
+ "div",
7239
+ {
7240
+ className: ScInChatList_default.scInChatList + (className ? " " + className : ""),
7241
+ style,
7242
+ children: [
7243
+ leadingIndicator && /* @__PURE__ */ jsx79("div", { className: ScInChatList_default.indicatorWrapper, children: /* @__PURE__ */ jsx79(ScThinkingStepIcon, { state: iconState }) }),
7244
+ /* @__PURE__ */ jsxs70("div", { className: ScInChatList_default.content, children: [
7245
+ /* @__PURE__ */ jsxs70("div", { className: ScInChatList_default.headerArea, children: [
7246
+ showSteps && /* @__PURE__ */ jsx79("p", { className: ScInChatList_default.stepCount, children: stepCount }),
7247
+ /* @__PURE__ */ jsxs70(
7248
+ "div",
7249
+ {
7250
+ className: ScInChatList_default.titleRow + " " + (isExpandable ? ScInChatList_default.titleRowClickable : ScInChatList_default.titleRowStatic),
7251
+ onClick: isExpandable ? onToggle : void 0,
7252
+ children: [
7253
+ /* @__PURE__ */ jsx79("p", { className: ScInChatList_default.title, children: title }),
7254
+ isExpandable && /* @__PURE__ */ jsx79("div", { className: ScInChatList_default.chevronWrapper, children: isExpanded ? /* @__PURE__ */ jsx79(SiconUp2, { size: 12, className: ScInChatList_default.chevronIcon }) : /* @__PURE__ */ jsx79(SiconDown2, { size: 12, className: ScInChatList_default.chevronIcon }) })
7255
+ ]
7256
+ }
7257
+ ),
7258
+ isExpanded && /* @__PURE__ */ jsxs70("div", { className: ScInChatList_default.descriptionRow, children: [
7259
+ /* @__PURE__ */ jsx79("div", { className: ScInChatList_default.descriptionIcon, children: /* @__PURE__ */ jsx79(SiconDot2, { size: 20, className: ScInChatList_default.descriptionDot }) }),
7260
+ /* @__PURE__ */ jsx79("p", { className: ScInChatList_default.descriptionText, children: description })
7261
+ ] })
7262
+ ] }),
7263
+ showTool && /* @__PURE__ */ jsx79("div", { className: ScInChatList_default.toolPill, children: /* @__PURE__ */ jsx79("p", { className: ScInChatList_default.toolText, children: toolUsing }) })
7264
+ ] })
7265
+ ]
7266
+ }
7267
+ );
7268
+ };
7269
+
7270
+ // src/SC-SubAgent/ScSubAgent.module.css
7271
+ var ScSubAgent_default = {
7272
+ scSubAgent: "ScSubAgent_scSubAgent",
7273
+ label: "ScSubAgent_label"
7274
+ };
7275
+
7276
+ // src/SC-SubAgent/ScSubAgent.tsx
7277
+ import { jsx as jsx80 } from "react/jsx-runtime";
7278
+ function formatSubAgentLabel(agentName) {
7279
+ const normalized = (agentName ?? "").trim();
7280
+ if (!normalized) return "Using sub-agent...";
7281
+ return `Using ${normalized.replace(/\b\w/g, (char) => char.toUpperCase())}...`;
7282
+ }
7283
+ var ScSubAgent = ({
7284
+ text,
7285
+ agentName,
7286
+ className,
7287
+ ...props
7288
+ }) => {
7289
+ const label = text ?? formatSubAgentLabel(agentName);
7290
+ return /* @__PURE__ */ jsx80(
7291
+ "div",
7292
+ {
7293
+ className: ScSubAgent_default.scSubAgent + " " + className,
7294
+ ...props,
7295
+ children: /* @__PURE__ */ jsx80("p", { className: ScSubAgent_default.label, children: label })
7296
+ }
7297
+ );
7298
+ };
7299
+
7300
+ // src/SC-InChatMessage/ScInChatMessage.module.css
7301
+ var ScInChatMessage_default = {
7302
+ scInChatMessage: "ScInChatMessage_scInChatMessage",
7303
+ text: "ScInChatMessage_text",
7304
+ "type-input": "ScInChatMessage_type-input",
7305
+ "type-output": "ScInChatMessage_type-output"
7306
+ };
7307
+
7308
+ // src/SC-InChatMessage/ScInChatMessage.tsx
7309
+ import { jsx as jsx81 } from "react/jsx-runtime";
7310
+ var ScInChatMessage = ({
7311
+ type = "input",
7312
+ text,
7313
+ children,
7314
+ className,
7315
+ id,
7316
+ ...props
7317
+ }) => {
7318
+ const variantsClassName = ScInChatMessage_default["type-" + type];
7319
+ return /* @__PURE__ */ jsx81(
7320
+ "div",
7321
+ {
7322
+ className: ScInChatMessage_default.scInChatMessage + " " + className + " " + variantsClassName,
7323
+ id,
7324
+ ...props,
7325
+ children: /* @__PURE__ */ jsx81("p", { className: ScInChatMessage_default.text, children: children ?? text })
7326
+ }
7327
+ );
7328
+ };
7329
+
7330
+ // src/SC-Selection/ScSelection.module.css
7331
+ var ScSelection_default = {
7332
+ scSelection: "ScSelection_scSelection",
7333
+ scRadioInstance: "ScSelection_scRadioInstance",
7334
+ wrapper: "ScSelection_wrapper",
7335
+ title: "ScSelection_title",
7336
+ description: "ScSelection_description",
7337
+ "state-default": "ScSelection_state-default",
7338
+ "state-active": "ScSelection_state-active"
7339
+ };
7340
+
7341
+ // src/SC-Selection/ScSelection.tsx
7342
+ import { jsx as jsx82, jsxs as jsxs71 } from "react/jsx-runtime";
7343
+ var ScSelection = ({
7344
+ title = "Title",
7345
+ description = "Description",
7346
+ active = false,
7347
+ value,
7348
+ onSelect,
7349
+ onClick,
7350
+ className,
7351
+ ...props
7352
+ }) => {
7353
+ const variantsClassName = ScSelection_default["state-" + (active ? "active" : "default")];
7354
+ const handleClick = (event) => {
7355
+ onClick?.(event);
7356
+ onSelect?.(value);
7357
+ };
7358
+ return /* @__PURE__ */ jsxs71(
7359
+ "div",
7360
+ {
7361
+ className: ScSelection_default.scSelection + " " + className + " " + variantsClassName,
7362
+ onClick: handleClick,
7363
+ ...props,
7364
+ children: [
7365
+ /* @__PURE__ */ jsx82(
7366
+ ScRadio,
7367
+ {
7368
+ state: active ? "selected" : "default",
7369
+ className: ScSelection_default.scRadioInstance
7370
+ }
7371
+ ),
7372
+ /* @__PURE__ */ jsxs71("div", { className: ScSelection_default.wrapper, children: [
7373
+ /* @__PURE__ */ jsx82("p", { className: ScSelection_default.title, children: title }),
7374
+ /* @__PURE__ */ jsx82("p", { className: ScSelection_default.description, children: description })
7375
+ ] })
7376
+ ]
7377
+ }
7378
+ );
7379
+ };
7380
+
7381
+ // src/SC-SelectionList/ScSelectionList.module.css
7382
+ var ScSelectionList_default = {
7383
+ scSelectionList: "ScSelectionList_scSelectionList",
7384
+ toggles: "ScSelectionList_toggles",
7385
+ checkToggle: "ScSelectionList_checkToggle",
7386
+ rejectToggle: "ScSelectionList_rejectToggle",
7387
+ checkIcon: "ScSelectionList_checkIcon",
7388
+ closeIcon: "ScSelectionList_closeIcon",
7389
+ content: "ScSelectionList_content",
7390
+ row: "ScSelectionList_row",
7391
+ label: "ScSelectionList_label",
7392
+ valuesPill: "ScSelectionList_valuesPill",
7393
+ valuesText: "ScSelectionList_valuesText",
7394
+ "state-default": "ScSelectionList_state-default",
7395
+ "state-approved": "ScSelectionList_state-approved",
7396
+ "state-rejected": "ScSelectionList_state-rejected",
7397
+ disabled: "ScSelectionList_disabled"
7398
+ };
7399
+
7400
+ // src/SC-SelectionList/ScSelectionList.tsx
7401
+ import { jsx as jsx83, jsxs as jsxs72 } from "react/jsx-runtime";
7402
+ var ScSelectionList = ({
7403
+ state = "default",
7404
+ label = "Suggested Colours: ",
7405
+ optionValues = "Pink, Green, Red, Blue",
7406
+ onChange,
7407
+ onApprove,
7408
+ onReject,
7409
+ disabled = false,
7410
+ className,
7411
+ ...props
7412
+ }) => {
7413
+ const variantsClassName = ScSelectionList_default["state-" + state];
7414
+ const handleApprove = () => {
7415
+ const next = state === "approved" ? "default" : "approved";
7416
+ onChange?.(next);
7417
+ if (next === "approved") onApprove?.();
7418
+ };
7419
+ const handleReject = () => {
7420
+ const next = state === "rejected" ? "default" : "rejected";
7421
+ onChange?.(next);
7422
+ if (next === "rejected") onReject?.();
7423
+ };
7424
+ return /* @__PURE__ */ jsxs72(
7425
+ "div",
7426
+ {
7427
+ className: ScSelectionList_default.scSelectionList + (disabled ? " " + ScSelectionList_default.disabled : "") + (className ? " " + className : "") + " " + variantsClassName,
7428
+ ...props,
7429
+ children: [
7430
+ /* @__PURE__ */ jsxs72("div", { className: ScSelectionList_default.toggles, children: [
7431
+ /* @__PURE__ */ jsx83(
7432
+ "button",
7433
+ {
7434
+ type: "button",
7435
+ className: ScSelectionList_default.checkToggle,
7436
+ onClick: handleApprove,
7437
+ disabled,
7438
+ "aria-pressed": state === "approved",
7439
+ "aria-label": state === "approved" ? "Revoke approval" : "Approve",
7440
+ children: /* @__PURE__ */ jsx83(
7441
+ "svg",
7442
+ {
7443
+ className: ScSelectionList_default.checkIcon,
7444
+ width: "10",
7445
+ height: "7.5",
7446
+ viewBox: "0 0 8 6",
7447
+ fill: "none",
7448
+ xmlns: "http://www.w3.org/2000/svg",
7449
+ children: /* @__PURE__ */ jsx83(
7450
+ "path",
7451
+ {
7452
+ d: "M0.5 3.5L2.5 5.5L7.5 0.5",
7453
+ stroke: "currentColor",
7454
+ strokeLinecap: "round",
7455
+ strokeLinejoin: "round"
7456
+ }
7457
+ )
7458
+ }
7459
+ )
7460
+ }
7461
+ ),
7462
+ /* @__PURE__ */ jsx83(
7463
+ "button",
7464
+ {
7465
+ type: "button",
7466
+ className: ScSelectionList_default.rejectToggle,
7467
+ onClick: handleReject,
7468
+ disabled,
7469
+ "aria-pressed": state === "rejected",
7470
+ "aria-label": state === "rejected" ? "Revoke rejection" : "Reject",
7471
+ children: /* @__PURE__ */ jsx83(
7472
+ "svg",
7473
+ {
7474
+ className: ScSelectionList_default.closeIcon,
7475
+ width: "9",
7476
+ height: "9",
7477
+ viewBox: "0 0 6.24261 6.24262",
7478
+ fill: "none",
7479
+ xmlns: "http://www.w3.org/2000/svg",
7480
+ children: /* @__PURE__ */ jsx83(
7481
+ "path",
7482
+ {
7483
+ d: "M0.5 5.74262L3.12132 3.12132M3.12132 3.12132L5.74261 0.5M3.12132 3.12132L0.5 0.5M3.12132 3.12132L5.74261 5.74262",
7484
+ stroke: "currentColor",
7485
+ strokeLinecap: "round",
7486
+ strokeLinejoin: "round"
7487
+ }
7488
+ )
7489
+ }
7490
+ )
7491
+ }
7492
+ )
7493
+ ] }),
7494
+ /* @__PURE__ */ jsx83("div", { className: ScSelectionList_default.content, children: /* @__PURE__ */ jsxs72("div", { className: ScSelectionList_default.row, children: [
7495
+ /* @__PURE__ */ jsx83("span", { className: ScSelectionList_default.label, children: label }),
7496
+ /* @__PURE__ */ jsx83("span", { className: ScSelectionList_default.valuesPill, children: /* @__PURE__ */ jsx83("span", { className: ScSelectionList_default.valuesText, children: optionValues }) })
7497
+ ] }) })
7498
+ ]
7499
+ }
7500
+ );
7501
+ };
7502
+
7097
7503
  // src/SC-Role-Mobile/ScRoleMobile.module.css
7098
7504
  var ScRoleMobile_default = {
7099
7505
  scRoleMobile: "ScRoleMobile_scRoleMobile",
@@ -7103,18 +7509,18 @@ var ScRoleMobile_default = {
7103
7509
  };
7104
7510
 
7105
7511
  // src/SC-Role-Mobile/ScRoleMobile.tsx
7106
- import { jsx as jsx78 } from "react/jsx-runtime";
7512
+ import { jsx as jsx84 } from "react/jsx-runtime";
7107
7513
  var ScRoleMobile = ({
7108
7514
  role = "admin",
7109
7515
  className,
7110
7516
  ...props
7111
7517
  }) => {
7112
- return /* @__PURE__ */ jsx78(
7518
+ return /* @__PURE__ */ jsx84(
7113
7519
  "div",
7114
7520
  {
7115
7521
  className: ScRoleMobile_default.scRoleMobile + " " + ScRoleMobile_default["role-" + role] + " " + className,
7116
7522
  ...props,
7117
- children: /* @__PURE__ */ jsx78("p", { className: ScRoleMobile_default.text, children: role === "admin" ? "Admin" : "Member" })
7523
+ children: /* @__PURE__ */ jsx84("p", { className: ScRoleMobile_default.text, children: role === "admin" ? "Admin" : "Member" })
7118
7524
  }
7119
7525
  );
7120
7526
  };
@@ -7131,7 +7537,7 @@ var ScProfileV2Mobile_default = {
7131
7537
  };
7132
7538
 
7133
7539
  // src/SC-Profile-V2-Mobile/ScProfileV2Mobile.tsx
7134
- import { jsx as jsx79, jsxs as jsxs68 } from "react/jsx-runtime";
7540
+ import { jsx as jsx85, jsxs as jsxs73 } from "react/jsx-runtime";
7135
7541
  var ScProfileV2Mobile = ({
7136
7542
  name = "Chris Hemsworth",
7137
7543
  email = "chris@kepler.com",
@@ -7141,17 +7547,17 @@ var ScProfileV2Mobile = ({
7141
7547
  ...props
7142
7548
  }) => {
7143
7549
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
7144
- const profileImage = /* @__PURE__ */ jsx79("div", { className: ScProfileV2Mobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ jsx79("img", { src: imageUrl, alt: name, className: ScProfileV2Mobile_default.image }) : /* @__PURE__ */ jsx79("div", { className: ScProfileV2Mobile_default.initials, children: initials }) });
7145
- return /* @__PURE__ */ jsxs68(
7550
+ const profileImage = /* @__PURE__ */ jsx85("div", { className: ScProfileV2Mobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ jsx85("img", { src: imageUrl, alt: name, className: ScProfileV2Mobile_default.image }) : /* @__PURE__ */ jsx85("div", { className: ScProfileV2Mobile_default.initials, children: initials }) });
7551
+ return /* @__PURE__ */ jsxs73(
7146
7552
  "div",
7147
7553
  {
7148
7554
  className: ScProfileV2Mobile_default.scProfileV2Mobile + " " + className,
7149
7555
  ...props,
7150
7556
  children: [
7151
7557
  dpPosition === "left" && profileImage,
7152
- /* @__PURE__ */ jsxs68("div", { className: ScProfileV2Mobile_default.userInfo, children: [
7153
- /* @__PURE__ */ jsx79("p", { className: ScProfileV2Mobile_default.userName, children: name }),
7154
- /* @__PURE__ */ jsx79("p", { className: ScProfileV2Mobile_default.userEmail, children: email })
7558
+ /* @__PURE__ */ jsxs73("div", { className: ScProfileV2Mobile_default.userInfo, children: [
7559
+ /* @__PURE__ */ jsx85("p", { className: ScProfileV2Mobile_default.userName, children: name }),
7560
+ /* @__PURE__ */ jsx85("p", { className: ScProfileV2Mobile_default.userEmail, children: email })
7155
7561
  ] }),
7156
7562
  dpPosition === "right" && profileImage
7157
7563
  ]
@@ -7178,7 +7584,7 @@ var ScTableListMobile_default = {
7178
7584
  };
7179
7585
 
7180
7586
  // src/SC-tableList-mobile/ScTableListMobile.tsx
7181
- import { jsx as jsx80, jsxs as jsxs69 } from "react/jsx-runtime";
7587
+ import { jsx as jsx86, jsxs as jsxs74 } from "react/jsx-runtime";
7182
7588
  var ScTableListMobile = ({
7183
7589
  name = "Chris Hemsworth",
7184
7590
  email = "chris@kepler.com",
@@ -7191,25 +7597,25 @@ var ScTableListMobile = ({
7191
7597
  ...props
7192
7598
  }) => {
7193
7599
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
7194
- return /* @__PURE__ */ jsxs69(
7600
+ return /* @__PURE__ */ jsxs74(
7195
7601
  "div",
7196
7602
  {
7197
7603
  className: ScTableListMobile_default.scTableListMobile + " " + className,
7198
7604
  onClick: onRowClick,
7199
7605
  ...props,
7200
7606
  children: [
7201
- /* @__PURE__ */ jsxs69("div", { className: ScTableListMobile_default.profileRow, children: [
7202
- /* @__PURE__ */ jsxs69("div", { className: ScTableListMobile_default.userInfo, children: [
7203
- /* @__PURE__ */ jsx80("p", { className: ScTableListMobile_default.userName, children: name }),
7204
- /* @__PURE__ */ jsx80("p", { className: ScTableListMobile_default.userEmail, children: email })
7607
+ /* @__PURE__ */ jsxs74("div", { className: ScTableListMobile_default.profileRow, children: [
7608
+ /* @__PURE__ */ jsxs74("div", { className: ScTableListMobile_default.userInfo, children: [
7609
+ /* @__PURE__ */ jsx86("p", { className: ScTableListMobile_default.userName, children: name }),
7610
+ /* @__PURE__ */ jsx86("p", { className: ScTableListMobile_default.userEmail, children: email })
7205
7611
  ] }),
7206
- /* @__PURE__ */ jsx80("div", { className: ScTableListMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ jsx80("img", { src: imageUrl, alt: name, className: ScTableListMobile_default.image }) : /* @__PURE__ */ jsx80("div", { className: ScTableListMobile_default.initials, children: initials }) })
7612
+ /* @__PURE__ */ jsx86("div", { className: ScTableListMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ jsx86("img", { src: imageUrl, alt: name, className: ScTableListMobile_default.image }) : /* @__PURE__ */ jsx86("div", { className: ScTableListMobile_default.initials, children: initials }) })
7207
7613
  ] }),
7208
- /* @__PURE__ */ jsxs69("div", { className: ScTableListMobile_default.detailsRow, children: [
7209
- /* @__PURE__ */ jsx80("div", { className: ScTableListMobile_default.roleBadge, children: /* @__PURE__ */ jsx80("p", { className: ScTableListMobile_default.roleText, children: role }) }),
7210
- /* @__PURE__ */ jsxs69("div", { className: ScTableListMobile_default.accessInfo, children: [
7211
- accessIcons && accessIcons.length > 0 && /* @__PURE__ */ jsx80("div", { className: ScTableListMobile_default.accessGroup, children: accessIcons.map((icon, i) => /* @__PURE__ */ jsx80("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) }),
7212
- permissionIcons && permissionIcons.length > 0 && /* @__PURE__ */ jsx80("div", { className: ScTableListMobile_default.accessGroup, children: permissionIcons.map((icon, i) => /* @__PURE__ */ jsx80("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) })
7614
+ /* @__PURE__ */ jsxs74("div", { className: ScTableListMobile_default.detailsRow, children: [
7615
+ /* @__PURE__ */ jsx86("div", { className: ScTableListMobile_default.roleBadge, children: /* @__PURE__ */ jsx86("p", { className: ScTableListMobile_default.roleText, children: role }) }),
7616
+ /* @__PURE__ */ jsxs74("div", { className: ScTableListMobile_default.accessInfo, children: [
7617
+ accessIcons && accessIcons.length > 0 && /* @__PURE__ */ jsx86("div", { className: ScTableListMobile_default.accessGroup, children: accessIcons.map((icon, i) => /* @__PURE__ */ jsx86("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) }),
7618
+ permissionIcons && permissionIcons.length > 0 && /* @__PURE__ */ jsx86("div", { className: ScTableListMobile_default.accessGroup, children: permissionIcons.map((icon, i) => /* @__PURE__ */ jsx86("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) })
7213
7619
  ] })
7214
7620
  ] })
7215
7621
  ]
@@ -7237,7 +7643,7 @@ var ScWorkspaceSwitchMobile_default = {
7237
7643
  };
7238
7644
 
7239
7645
  // src/SC-workspaceSwitch-Mobile/ScWorkspaceSwitchMobile.tsx
7240
- import { jsx as jsx81, jsxs as jsxs70 } from "react/jsx-runtime";
7646
+ import { jsx as jsx87, jsxs as jsxs75 } from "react/jsx-runtime";
7241
7647
  var ScWorkspaceSwitchMobile = ({
7242
7648
  storeName = "Stores",
7243
7649
  initials = "WS",
@@ -7250,24 +7656,24 @@ var ScWorkspaceSwitchMobile = ({
7250
7656
  ...props
7251
7657
  }) => {
7252
7658
  const variant = currentWs ? "current" : "other";
7253
- return /* @__PURE__ */ jsxs70(
7659
+ return /* @__PURE__ */ jsxs75(
7254
7660
  "div",
7255
7661
  {
7256
7662
  className: ScWorkspaceSwitchMobile_default.scWorkspaceSwitchMobile + " " + ScWorkspaceSwitchMobile_default["variant-" + variant] + " " + className,
7257
7663
  onClick,
7258
7664
  ...props,
7259
7665
  children: [
7260
- /* @__PURE__ */ jsxs70("div", { className: ScWorkspaceSwitchMobile_default.workspaceInfo, children: [
7261
- /* @__PURE__ */ jsxs70("div", { className: ScWorkspaceSwitchMobile_default.wsNameRow, children: [
7262
- /* @__PURE__ */ jsx81("div", { className: ScWorkspaceSwitchMobile_default.initialsBox, children: /* @__PURE__ */ jsx81("span", { className: ScWorkspaceSwitchMobile_default.initialsText, children: initials }) }),
7263
- /* @__PURE__ */ jsx81("p", { className: ScWorkspaceSwitchMobile_default.storeName, children: storeName })
7666
+ /* @__PURE__ */ jsxs75("div", { className: ScWorkspaceSwitchMobile_default.workspaceInfo, children: [
7667
+ /* @__PURE__ */ jsxs75("div", { className: ScWorkspaceSwitchMobile_default.wsNameRow, children: [
7668
+ /* @__PURE__ */ jsx87("div", { className: ScWorkspaceSwitchMobile_default.initialsBox, children: /* @__PURE__ */ jsx87("span", { className: ScWorkspaceSwitchMobile_default.initialsText, children: initials }) }),
7669
+ /* @__PURE__ */ jsx87("p", { className: ScWorkspaceSwitchMobile_default.storeName, children: storeName })
7264
7670
  ] }),
7265
- /* @__PURE__ */ jsx81("div", { className: ScWorkspaceSwitchMobile_default.roleBadge, children: /* @__PURE__ */ jsx81("p", { className: ScWorkspaceSwitchMobile_default.roleText, children: role }) })
7671
+ /* @__PURE__ */ jsx87("div", { className: ScWorkspaceSwitchMobile_default.roleBadge, children: /* @__PURE__ */ jsx87("p", { className: ScWorkspaceSwitchMobile_default.roleText, children: role }) })
7266
7672
  ] }),
7267
- /* @__PURE__ */ jsx81("div", { className: ScWorkspaceSwitchMobile_default.divider }),
7268
- /* @__PURE__ */ jsxs70("div", { className: ScWorkspaceSwitchMobile_default.ownerRow, children: [
7269
- /* @__PURE__ */ jsx81("div", { className: ScWorkspaceSwitchMobile_default.ownerIconContainer, children: ownerIcon && /* @__PURE__ */ jsx81("span", { className: ScWorkspaceSwitchMobile_default.ownerIcon, children: ownerIcon }) }),
7270
- /* @__PURE__ */ jsx81("p", { className: ScWorkspaceSwitchMobile_default.ownerText, children: ownerId })
7673
+ /* @__PURE__ */ jsx87("div", { className: ScWorkspaceSwitchMobile_default.divider }),
7674
+ /* @__PURE__ */ jsxs75("div", { className: ScWorkspaceSwitchMobile_default.ownerRow, children: [
7675
+ /* @__PURE__ */ jsx87("div", { className: ScWorkspaceSwitchMobile_default.ownerIconContainer, children: ownerIcon && /* @__PURE__ */ jsx87("span", { className: ScWorkspaceSwitchMobile_default.ownerIcon, children: ownerIcon }) }),
7676
+ /* @__PURE__ */ jsx87("p", { className: ScWorkspaceSwitchMobile_default.ownerText, children: ownerId })
7271
7677
  ] })
7272
7678
  ]
7273
7679
  }
@@ -7294,7 +7700,7 @@ var ScWorkspaceSettingsMobile_default = {
7294
7700
  };
7295
7701
 
7296
7702
  // src/SC-workspaceSettings-Mobile/ScWorkspaceSettingsMobile.tsx
7297
- import { jsx as jsx82, jsxs as jsxs71 } from "react/jsx-runtime";
7703
+ import { jsx as jsx88, jsxs as jsxs76 } from "react/jsx-runtime";
7298
7704
  var ScWorkspaceSettingsMobile = ({
7299
7705
  storeName = "Stores",
7300
7706
  initials = "WS",
@@ -7309,28 +7715,28 @@ var ScWorkspaceSettingsMobile = ({
7309
7715
  ...props
7310
7716
  }) => {
7311
7717
  const variant = currentWs ? "current" : "other";
7312
- return /* @__PURE__ */ jsxs71(
7718
+ return /* @__PURE__ */ jsxs76(
7313
7719
  "div",
7314
7720
  {
7315
7721
  className: ScWorkspaceSettingsMobile_default.scWorkspaceSettingsMobile + " " + ScWorkspaceSettingsMobile_default["variant-" + variant] + " " + className,
7316
7722
  onClick,
7317
7723
  ...props,
7318
7724
  children: [
7319
- /* @__PURE__ */ jsxs71("div", { className: ScWorkspaceSettingsMobile_default.workspaceInfo, children: [
7320
- /* @__PURE__ */ jsxs71("div", { className: ScWorkspaceSettingsMobile_default.wsNameRow, children: [
7321
- /* @__PURE__ */ jsx82("div", { className: ScWorkspaceSettingsMobile_default.initialsBox, children: /* @__PURE__ */ jsx82("span", { className: ScWorkspaceSettingsMobile_default.initialsText, children: initials }) }),
7322
- /* @__PURE__ */ jsx82("p", { className: ScWorkspaceSettingsMobile_default.storeName, children: storeName })
7725
+ /* @__PURE__ */ jsxs76("div", { className: ScWorkspaceSettingsMobile_default.workspaceInfo, children: [
7726
+ /* @__PURE__ */ jsxs76("div", { className: ScWorkspaceSettingsMobile_default.wsNameRow, children: [
7727
+ /* @__PURE__ */ jsx88("div", { className: ScWorkspaceSettingsMobile_default.initialsBox, children: /* @__PURE__ */ jsx88("span", { className: ScWorkspaceSettingsMobile_default.initialsText, children: initials }) }),
7728
+ /* @__PURE__ */ jsx88("p", { className: ScWorkspaceSettingsMobile_default.storeName, children: storeName })
7323
7729
  ] }),
7324
- /* @__PURE__ */ jsx82("div", { className: ScWorkspaceSettingsMobile_default.roleBadge, children: /* @__PURE__ */ jsx82("p", { className: ScWorkspaceSettingsMobile_default.roleText, children: role }) })
7730
+ /* @__PURE__ */ jsx88("div", { className: ScWorkspaceSettingsMobile_default.roleBadge, children: /* @__PURE__ */ jsx88("p", { className: ScWorkspaceSettingsMobile_default.roleText, children: role }) })
7325
7731
  ] }),
7326
- /* @__PURE__ */ jsx82("div", { className: ScWorkspaceSettingsMobile_default.divider }),
7327
- /* @__PURE__ */ jsxs71("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
7328
- /* @__PURE__ */ jsx82("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: ownerIcon && /* @__PURE__ */ jsx82("span", { className: ScWorkspaceSettingsMobile_default.icon, children: ownerIcon }) }),
7329
- /* @__PURE__ */ jsx82("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: ownerId })
7732
+ /* @__PURE__ */ jsx88("div", { className: ScWorkspaceSettingsMobile_default.divider }),
7733
+ /* @__PURE__ */ jsxs76("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
7734
+ /* @__PURE__ */ jsx88("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: ownerIcon && /* @__PURE__ */ jsx88("span", { className: ScWorkspaceSettingsMobile_default.icon, children: ownerIcon }) }),
7735
+ /* @__PURE__ */ jsx88("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: ownerId })
7330
7736
  ] }),
7331
- /* @__PURE__ */ jsxs71("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
7332
- /* @__PURE__ */ jsx82("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: teamIcon && /* @__PURE__ */ jsx82("span", { className: ScWorkspaceSettingsMobile_default.icon, children: teamIcon }) }),
7333
- /* @__PURE__ */ jsx82("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: teamCount })
7737
+ /* @__PURE__ */ jsxs76("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
7738
+ /* @__PURE__ */ jsx88("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: teamIcon && /* @__PURE__ */ jsx88("span", { className: ScWorkspaceSettingsMobile_default.icon, children: teamIcon }) }),
7739
+ /* @__PURE__ */ jsx88("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: teamCount })
7334
7740
  ] })
7335
7741
  ]
7336
7742
  }
@@ -7353,7 +7759,7 @@ var ScMobileTopNav_default = {
7353
7759
  };
7354
7760
 
7355
7761
  // src/SC-MobileTopNav/ScMobileTopNav.tsx
7356
- import { Fragment as Fragment22, jsx as jsx83, jsxs as jsxs72 } from "react/jsx-runtime";
7762
+ import { Fragment as Fragment22, jsx as jsx89, jsxs as jsxs77 } from "react/jsx-runtime";
7357
7763
  var ScMobileTopNav = ({
7358
7764
  type = "home",
7359
7765
  searchIcon = false,
@@ -7376,22 +7782,22 @@ var ScMobileTopNav = ({
7376
7782
  }) => {
7377
7783
  const hasBorder = type === "chat" || type === "inApp";
7378
7784
  const showSearch = type === "inApp" && searchIcon && search;
7379
- return /* @__PURE__ */ jsxs72(
7785
+ return /* @__PURE__ */ jsxs77(
7380
7786
  "div",
7381
7787
  {
7382
7788
  className: ScMobileTopNav_default.scMobileTopNav + " " + (hasBorder ? ScMobileTopNav_default.withBorder : "") + " " + className,
7383
7789
  ...props,
7384
7790
  children: [
7385
- type === "home" && /* @__PURE__ */ jsx83("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ jsx83("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
7386
- type === "chat" && /* @__PURE__ */ jsxs72(Fragment22, { children: [
7387
- /* @__PURE__ */ jsx83("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ jsx83("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
7388
- /* @__PURE__ */ jsx83("p", { className: ScMobileTopNav_default.chatTitle, children: chatTitle }),
7389
- /* @__PURE__ */ jsx83("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMoreClick, children: moreIcon || /* @__PURE__ */ jsx83("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
7791
+ type === "home" && /* @__PURE__ */ jsx89("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ jsx89("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
7792
+ type === "chat" && /* @__PURE__ */ jsxs77(Fragment22, { children: [
7793
+ /* @__PURE__ */ jsx89("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ jsx89("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
7794
+ /* @__PURE__ */ jsx89("p", { className: ScMobileTopNav_default.chatTitle, children: chatTitle }),
7795
+ /* @__PURE__ */ jsx89("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMoreClick, children: moreIcon || /* @__PURE__ */ jsx89("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
7390
7796
  ] }),
7391
- showSearch && /* @__PURE__ */ jsxs72(Fragment22, { children: [
7392
- /* @__PURE__ */ jsx83("div", { className: ScMobileTopNav_default.searchRow, children: /* @__PURE__ */ jsxs72("div", { className: ScMobileTopNav_default.searchInputContainer, children: [
7393
- /* @__PURE__ */ jsx83("div", { className: ScMobileTopNav_default.iconContainer, onClick: onSearchClick, children: searchIconElement || /* @__PURE__ */ jsx83("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
7394
- /* @__PURE__ */ jsx83("div", { className: ScMobileTopNav_default.searchInput, children: /* @__PURE__ */ jsx83(
7797
+ showSearch && /* @__PURE__ */ jsxs77(Fragment22, { children: [
7798
+ /* @__PURE__ */ jsx89("div", { className: ScMobileTopNav_default.searchRow, children: /* @__PURE__ */ jsxs77("div", { className: ScMobileTopNav_default.searchInputContainer, children: [
7799
+ /* @__PURE__ */ jsx89("div", { className: ScMobileTopNav_default.iconContainer, onClick: onSearchClick, children: searchIconElement || /* @__PURE__ */ jsx89("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
7800
+ /* @__PURE__ */ jsx89("div", { className: ScMobileTopNav_default.searchInput, children: /* @__PURE__ */ jsx89(
7395
7801
  "input",
7396
7802
  {
7397
7803
  type: "text",
@@ -7402,17 +7808,17 @@ var ScMobileTopNav = ({
7402
7808
  }
7403
7809
  ) })
7404
7810
  ] }) }),
7405
- /* @__PURE__ */ jsx83("div", { className: ScMobileTopNav_default.iconContainer, onClick: onCloseClick, children: closeIcon || /* @__PURE__ */ jsx83("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
7811
+ /* @__PURE__ */ jsx89("div", { className: ScMobileTopNav_default.iconContainer, onClick: onCloseClick, children: closeIcon || /* @__PURE__ */ jsx89("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
7406
7812
  ] }),
7407
- type === "inApp" && !search && /* @__PURE__ */ jsxs72(Fragment22, { children: [
7408
- /* @__PURE__ */ jsx83("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ jsx83("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
7409
- /* @__PURE__ */ jsx83("p", { className: ScMobileTopNav_default.heading, children: heading }),
7410
- /* @__PURE__ */ jsx83(
7813
+ type === "inApp" && !search && /* @__PURE__ */ jsxs77(Fragment22, { children: [
7814
+ /* @__PURE__ */ jsx89("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ jsx89("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
7815
+ /* @__PURE__ */ jsx89("p", { className: ScMobileTopNav_default.heading, children: heading }),
7816
+ /* @__PURE__ */ jsx89(
7411
7817
  "div",
7412
7818
  {
7413
7819
  className: ScMobileTopNav_default.iconContainer + " " + (!searchIcon ? ScMobileTopNav_default.hidden : ""),
7414
7820
  onClick: onSearchClick,
7415
- children: searchIcon ? searchIconElement || /* @__PURE__ */ jsx83("div", { className: ScMobileTopNav_default.iconPlaceholder }) : /* @__PURE__ */ jsx83("div", { className: ScMobileTopNav_default.iconPlaceholder })
7821
+ children: searchIcon ? searchIconElement || /* @__PURE__ */ jsx89("div", { className: ScMobileTopNav_default.iconPlaceholder }) : /* @__PURE__ */ jsx89("div", { className: ScMobileTopNav_default.iconPlaceholder })
7416
7822
  }
7417
7823
  )
7418
7824
  ] })
@@ -7433,7 +7839,7 @@ var ScMobileBottomAction_default = {
7433
7839
  };
7434
7840
 
7435
7841
  // src/SC-MobileBottomAction/ScMobileBottomAction.tsx
7436
- import { jsx as jsx84, jsxs as jsxs73 } from "react/jsx-runtime";
7842
+ import { jsx as jsx90, jsxs as jsxs78 } from "react/jsx-runtime";
7437
7843
  var ScMobileBottomAction = ({
7438
7844
  text = "Save Changes",
7439
7845
  disabled = false,
@@ -7445,28 +7851,28 @@ var ScMobileBottomAction = ({
7445
7851
  ...props
7446
7852
  }) => {
7447
7853
  const isTwoButton = !!secondaryText;
7448
- return /* @__PURE__ */ jsxs73(
7854
+ return /* @__PURE__ */ jsxs78(
7449
7855
  "div",
7450
7856
  {
7451
7857
  className: ScMobileBottomAction_default.scMobileBottomAction + (isTwoButton ? " " + ScMobileBottomAction_default.twoButton : "") + " " + className,
7452
7858
  ...props,
7453
7859
  children: [
7454
- isTwoButton && /* @__PURE__ */ jsx84(
7860
+ isTwoButton && /* @__PURE__ */ jsx90(
7455
7861
  "button",
7456
7862
  {
7457
7863
  className: ScMobileBottomAction_default.outlineButton + " " + (secondaryDisabled ? ScMobileBottomAction_default.disabled : ""),
7458
7864
  onClick: onSecondaryClick,
7459
7865
  disabled: secondaryDisabled,
7460
- children: /* @__PURE__ */ jsx84("span", { className: ScMobileBottomAction_default.outlineButtonText, children: secondaryText })
7866
+ children: /* @__PURE__ */ jsx90("span", { className: ScMobileBottomAction_default.outlineButtonText, children: secondaryText })
7461
7867
  }
7462
7868
  ),
7463
- /* @__PURE__ */ jsx84(
7869
+ /* @__PURE__ */ jsx90(
7464
7870
  "button",
7465
7871
  {
7466
7872
  className: ScMobileBottomAction_default.button + " " + (disabled ? ScMobileBottomAction_default.disabled : ""),
7467
7873
  onClick,
7468
7874
  disabled,
7469
- children: /* @__PURE__ */ jsx84("span", { className: ScMobileBottomAction_default.buttonText, children: text })
7875
+ children: /* @__PURE__ */ jsx90("span", { className: ScMobileBottomAction_default.buttonText, children: text })
7470
7876
  }
7471
7877
  )
7472
7878
  ]
@@ -7484,7 +7890,7 @@ var ScPopUpMenu_default = {
7484
7890
  };
7485
7891
 
7486
7892
  // src/SC-PopUpMenu/ScPopUpMenu.tsx
7487
- import { jsx as jsx85, jsxs as jsxs74 } from "react/jsx-runtime";
7893
+ import { jsx as jsx91, jsxs as jsxs79 } from "react/jsx-runtime";
7488
7894
  var ScPopUpMenu = ({
7489
7895
  menu = "Options",
7490
7896
  state = "default",
@@ -7493,15 +7899,15 @@ var ScPopUpMenu = ({
7493
7899
  className,
7494
7900
  ...props
7495
7901
  }) => {
7496
- return /* @__PURE__ */ jsxs74(
7902
+ return /* @__PURE__ */ jsxs79(
7497
7903
  "div",
7498
7904
  {
7499
7905
  className: ScPopUpMenu_default.scPopUpMenu + " " + ScPopUpMenu_default["state-" + state] + " " + className,
7500
7906
  onClick,
7501
7907
  ...props,
7502
7908
  children: [
7503
- icon && /* @__PURE__ */ jsx85("span", { className: ScPopUpMenu_default.icon, children: icon }),
7504
- /* @__PURE__ */ jsx85("p", { className: ScPopUpMenu_default.menuText, children: menu })
7909
+ icon && /* @__PURE__ */ jsx91("span", { className: ScPopUpMenu_default.icon, children: icon }),
7910
+ /* @__PURE__ */ jsx91("p", { className: ScPopUpMenu_default.menuText, children: menu })
7505
7911
  ]
7506
7912
  }
7507
7913
  );
@@ -7527,7 +7933,7 @@ var ScReferralCardMobile_default = {
7527
7933
  };
7528
7934
 
7529
7935
  // src/SC-referralCard-Mobile/ScReferralCardMobile.tsx
7530
- import { jsx as jsx86, jsxs as jsxs75 } from "react/jsx-runtime";
7936
+ import { jsx as jsx92, jsxs as jsxs80 } from "react/jsx-runtime";
7531
7937
  var ScReferralCardMobile = ({
7532
7938
  name = "Chris Hemsworth",
7533
7939
  email = "chris@kepler.com",
@@ -7540,27 +7946,27 @@ var ScReferralCardMobile = ({
7540
7946
  ...props
7541
7947
  }) => {
7542
7948
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
7543
- return /* @__PURE__ */ jsxs75(
7949
+ return /* @__PURE__ */ jsxs80(
7544
7950
  "div",
7545
7951
  {
7546
7952
  className: ScReferralCardMobile_default.scReferralCardMobile + " " + className,
7547
7953
  onClick,
7548
7954
  ...props,
7549
7955
  children: [
7550
- /* @__PURE__ */ jsxs75("div", { className: ScReferralCardMobile_default.userRow, children: [
7551
- /* @__PURE__ */ jsxs75("div", { className: ScReferralCardMobile_default.profileSection, children: [
7552
- /* @__PURE__ */ jsx86("div", { className: ScReferralCardMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ jsx86("img", { src: imageUrl, alt: name, className: ScReferralCardMobile_default.image }) : /* @__PURE__ */ jsx86("div", { className: ScReferralCardMobile_default.initials, children: initials }) }),
7553
- /* @__PURE__ */ jsxs75("div", { className: ScReferralCardMobile_default.userInfo, children: [
7554
- /* @__PURE__ */ jsx86("p", { className: ScReferralCardMobile_default.userName, children: name }),
7555
- /* @__PURE__ */ jsx86("p", { className: ScReferralCardMobile_default.userEmail, children: email })
7956
+ /* @__PURE__ */ jsxs80("div", { className: ScReferralCardMobile_default.userRow, children: [
7957
+ /* @__PURE__ */ jsxs80("div", { className: ScReferralCardMobile_default.profileSection, children: [
7958
+ /* @__PURE__ */ jsx92("div", { className: ScReferralCardMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ jsx92("img", { src: imageUrl, alt: name, className: ScReferralCardMobile_default.image }) : /* @__PURE__ */ jsx92("div", { className: ScReferralCardMobile_default.initials, children: initials }) }),
7959
+ /* @__PURE__ */ jsxs80("div", { className: ScReferralCardMobile_default.userInfo, children: [
7960
+ /* @__PURE__ */ jsx92("p", { className: ScReferralCardMobile_default.userName, children: name }),
7961
+ /* @__PURE__ */ jsx92("p", { className: ScReferralCardMobile_default.userEmail, children: email })
7556
7962
  ] })
7557
7963
  ] }),
7558
- /* @__PURE__ */ jsx86("div", { className: ScReferralCardMobile_default.badge, children: /* @__PURE__ */ jsx86("p", { className: ScReferralCardMobile_default.badgeText, children: badge }) })
7964
+ /* @__PURE__ */ jsx92("div", { className: ScReferralCardMobile_default.badge, children: /* @__PURE__ */ jsx92("p", { className: ScReferralCardMobile_default.badgeText, children: badge }) })
7559
7965
  ] }),
7560
- /* @__PURE__ */ jsx86("div", { className: ScReferralCardMobile_default.divider }),
7561
- /* @__PURE__ */ jsxs75("div", { className: ScReferralCardMobile_default.detailsRow, children: [
7562
- /* @__PURE__ */ jsx86("p", { className: ScReferralCardMobile_default.dateText, children: date }),
7563
- /* @__PURE__ */ jsx86("p", { className: ScReferralCardMobile_default.creditsText, children: credits })
7966
+ /* @__PURE__ */ jsx92("div", { className: ScReferralCardMobile_default.divider }),
7967
+ /* @__PURE__ */ jsxs80("div", { className: ScReferralCardMobile_default.detailsRow, children: [
7968
+ /* @__PURE__ */ jsx92("p", { className: ScReferralCardMobile_default.dateText, children: date }),
7969
+ /* @__PURE__ */ jsx92("p", { className: ScReferralCardMobile_default.creditsText, children: credits })
7564
7970
  ] })
7565
7971
  ]
7566
7972
  }
@@ -7577,19 +7983,19 @@ var InvoiceHistoryMobile_default = {
7577
7983
  };
7578
7984
 
7579
7985
  // src/SC-InvoiceHistoryMobile/InvoiceHistoryMobile.tsx
7580
- import { jsx as jsx87, jsxs as jsxs76 } from "react/jsx-runtime";
7986
+ import { jsx as jsx93, jsxs as jsxs81 } from "react/jsx-runtime";
7581
7987
  var InvoiceHistoryMobile = ({
7582
7988
  invoiceId = "# INV-2800-2026",
7583
7989
  date = "Nov 9th, 2025",
7584
7990
  amount = "\u20B9320.89",
7585
7991
  className
7586
7992
  }) => {
7587
- return /* @__PURE__ */ jsxs76("div", { className: InvoiceHistoryMobile_default.invoiceHistoryMobile + " " + (className ?? ""), children: [
7588
- /* @__PURE__ */ jsxs76("div", { className: InvoiceHistoryMobile_default.info, children: [
7589
- /* @__PURE__ */ jsx87("div", { className: InvoiceHistoryMobile_default.invoiceId, children: invoiceId }),
7590
- /* @__PURE__ */ jsx87("div", { className: InvoiceHistoryMobile_default.date, children: date })
7993
+ return /* @__PURE__ */ jsxs81("div", { className: InvoiceHistoryMobile_default.invoiceHistoryMobile + " " + (className ?? ""), children: [
7994
+ /* @__PURE__ */ jsxs81("div", { className: InvoiceHistoryMobile_default.info, children: [
7995
+ /* @__PURE__ */ jsx93("div", { className: InvoiceHistoryMobile_default.invoiceId, children: invoiceId }),
7996
+ /* @__PURE__ */ jsx93("div", { className: InvoiceHistoryMobile_default.date, children: date })
7591
7997
  ] }),
7592
- /* @__PURE__ */ jsx87("div", { className: InvoiceHistoryMobile_default.amount, children: amount })
7998
+ /* @__PURE__ */ jsx93("div", { className: InvoiceHistoryMobile_default.amount, children: amount })
7593
7999
  ] });
7594
8000
  };
7595
8001
 
@@ -7607,7 +8013,7 @@ var UsageHistoryMobile_default = {
7607
8013
  };
7608
8014
 
7609
8015
  // src/SC-UsageHistoryMobile/UsageHistoryMobile.tsx
7610
- import { jsx as jsx88, jsxs as jsxs77 } from "react/jsx-runtime";
8016
+ import { jsx as jsx94, jsxs as jsxs82 } from "react/jsx-runtime";
7611
8017
  var UsageHistoryMobile = ({
7612
8018
  serviceName = "Artifax Generation",
7613
8019
  credits = "50",
@@ -7616,18 +8022,18 @@ var UsageHistoryMobile = ({
7616
8022
  balance = "84,902",
7617
8023
  className
7618
8024
  }) => {
7619
- return /* @__PURE__ */ jsxs77("div", { className: UsageHistoryMobile_default.usageHistoryMobile + " " + (className ?? ""), children: [
7620
- /* @__PURE__ */ jsxs77("div", { className: UsageHistoryMobile_default.row1, children: [
7621
- /* @__PURE__ */ jsx88("span", { className: UsageHistoryMobile_default.serviceName, children: serviceName }),
7622
- /* @__PURE__ */ jsx88("span", { className: UsageHistoryMobile_default.credits, children: credits })
8025
+ return /* @__PURE__ */ jsxs82("div", { className: UsageHistoryMobile_default.usageHistoryMobile + " " + (className ?? ""), children: [
8026
+ /* @__PURE__ */ jsxs82("div", { className: UsageHistoryMobile_default.row1, children: [
8027
+ /* @__PURE__ */ jsx94("span", { className: UsageHistoryMobile_default.serviceName, children: serviceName }),
8028
+ /* @__PURE__ */ jsx94("span", { className: UsageHistoryMobile_default.credits, children: credits })
7623
8029
  ] }),
7624
- /* @__PURE__ */ jsxs77("div", { className: UsageHistoryMobile_default.row2, children: [
7625
- /* @__PURE__ */ jsxs77("div", { className: UsageHistoryMobile_default.metaLeft, children: [
7626
- /* @__PURE__ */ jsx88("span", { className: UsageHistoryMobile_default.metaText, children: userName }),
7627
- /* @__PURE__ */ jsx88("div", { className: UsageHistoryMobile_default.divider }),
7628
- /* @__PURE__ */ jsx88("span", { className: UsageHistoryMobile_default.metaText, children: date })
8030
+ /* @__PURE__ */ jsxs82("div", { className: UsageHistoryMobile_default.row2, children: [
8031
+ /* @__PURE__ */ jsxs82("div", { className: UsageHistoryMobile_default.metaLeft, children: [
8032
+ /* @__PURE__ */ jsx94("span", { className: UsageHistoryMobile_default.metaText, children: userName }),
8033
+ /* @__PURE__ */ jsx94("div", { className: UsageHistoryMobile_default.divider }),
8034
+ /* @__PURE__ */ jsx94("span", { className: UsageHistoryMobile_default.metaText, children: date })
7629
8035
  ] }),
7630
- /* @__PURE__ */ jsx88("span", { className: UsageHistoryMobile_default.balance, children: balance })
8036
+ /* @__PURE__ */ jsx94("span", { className: UsageHistoryMobile_default.balance, children: balance })
7631
8037
  ] })
7632
8038
  ] });
7633
8039
  };
@@ -7651,7 +8057,7 @@ var ScWorkspaceSwitchMobileV2_default = {
7651
8057
  };
7652
8058
 
7653
8059
  // src/SC-WorkspaceSwitchMobile-V2/ScWorkspaceSwitchMobileV2.tsx
7654
- import { jsx as jsx89, jsxs as jsxs78 } from "react/jsx-runtime";
8060
+ import { jsx as jsx95, jsxs as jsxs83 } from "react/jsx-runtime";
7655
8061
  var ScWorkspaceSwitchMobileV2 = ({
7656
8062
  wsName = "Workspace name is kepler",
7657
8063
  initials = "WS",
@@ -7664,14 +8070,14 @@ var ScWorkspaceSwitchMobileV2 = ({
7664
8070
  className,
7665
8071
  ...props
7666
8072
  }) => {
7667
- return /* @__PURE__ */ jsx89(
8073
+ return /* @__PURE__ */ jsx95(
7668
8074
  "div",
7669
8075
  {
7670
8076
  className: ScWorkspaceSwitchMobileV2_default.scWorkspaceSwitchMobileV2 + " " + ScWorkspaceSwitchMobileV2_default["type-" + type] + " " + className,
7671
8077
  onClick,
7672
8078
  ...props,
7673
- children: /* @__PURE__ */ jsxs78("div", { className: ScWorkspaceSwitchMobileV2_default.workspaceInfo, children: [
7674
- /* @__PURE__ */ jsx89("div", { className: ScWorkspaceSwitchMobileV2_default.dpContainer, children: /* @__PURE__ */ jsx89(
8079
+ children: /* @__PURE__ */ jsxs83("div", { className: ScWorkspaceSwitchMobileV2_default.workspaceInfo, children: [
8080
+ /* @__PURE__ */ jsx95("div", { className: ScWorkspaceSwitchMobileV2_default.dpContainer, children: /* @__PURE__ */ jsx95(
7675
8081
  ScDp,
7676
8082
  {
7677
8083
  type: imageUrl ? "image" : "initial",
@@ -7685,14 +8091,14 @@ var ScWorkspaceSwitchMobileV2 = ({
7685
8091
  }
7686
8092
  }
7687
8093
  ) }),
7688
- /* @__PURE__ */ jsxs78("div", { className: ScWorkspaceSwitchMobileV2_default.textContainer, children: [
7689
- /* @__PURE__ */ jsx89("p", { className: ScWorkspaceSwitchMobileV2_default.wsName, children: wsName }),
7690
- /* @__PURE__ */ jsxs78("div", { className: ScWorkspaceSwitchMobileV2_default.userDetails, children: [
7691
- /* @__PURE__ */ jsx89("span", { className: ScWorkspaceSwitchMobileV2_default.roleText + (role === "Member" ? " " + ScWorkspaceSwitchMobileV2_default.roleMember : ""), children: role }),
7692
- /* @__PURE__ */ jsx89("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
7693
- /* @__PURE__ */ jsx89("span", { className: ScWorkspaceSwitchMobileV2_default.planText, children: plan }),
7694
- /* @__PURE__ */ jsx89("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
7695
- /* @__PURE__ */ jsx89("span", { className: ScWorkspaceSwitchMobileV2_default.ownerText, children: ownerId })
8094
+ /* @__PURE__ */ jsxs83("div", { className: ScWorkspaceSwitchMobileV2_default.textContainer, children: [
8095
+ /* @__PURE__ */ jsx95("p", { className: ScWorkspaceSwitchMobileV2_default.wsName, children: wsName }),
8096
+ /* @__PURE__ */ jsxs83("div", { className: ScWorkspaceSwitchMobileV2_default.userDetails, children: [
8097
+ /* @__PURE__ */ jsx95("span", { className: ScWorkspaceSwitchMobileV2_default.roleText + (role === "Member" ? " " + ScWorkspaceSwitchMobileV2_default.roleMember : ""), children: role }),
8098
+ /* @__PURE__ */ jsx95("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
8099
+ /* @__PURE__ */ jsx95("span", { className: ScWorkspaceSwitchMobileV2_default.planText, children: plan }),
8100
+ /* @__PURE__ */ jsx95("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
8101
+ /* @__PURE__ */ jsx95("span", { className: ScWorkspaceSwitchMobileV2_default.ownerText, children: ownerId })
7696
8102
  ] })
7697
8103
  ] })
7698
8104
  ] })
@@ -7719,7 +8125,7 @@ var ScImageField_default = {
7719
8125
 
7720
8126
  // src/SC-imageField/ScImageField.tsx
7721
8127
  import { SiconUpload as SiconUpload2, SiconDelete as SiconDelete2 } from "@streamoid/icons";
7722
- import { jsx as jsx90, jsxs as jsxs79 } from "react/jsx-runtime";
8128
+ import { jsx as jsx96, jsxs as jsxs84 } from "react/jsx-runtime";
7723
8129
  var ScImageField = ({
7724
8130
  label = "Label",
7725
8131
  imagePreview,
@@ -7742,8 +8148,8 @@ var ScImageField = ({
7742
8148
  }
7743
8149
  e.target.value = "";
7744
8150
  }
7745
- return /* @__PURE__ */ jsxs79("div", { className: ScImageField_default.scImageField + " " + (className ?? ""), children: [
7746
- /* @__PURE__ */ jsx90(
8151
+ return /* @__PURE__ */ jsxs84("div", { className: ScImageField_default.scImageField + " " + (className ?? ""), children: [
8152
+ /* @__PURE__ */ jsx96(
7747
8153
  "input",
7748
8154
  {
7749
8155
  ref: inputRef,
@@ -7753,9 +8159,9 @@ var ScImageField = ({
7753
8159
  onChange: handleChange
7754
8160
  }
7755
8161
  ),
7756
- /* @__PURE__ */ jsx90("div", { className: ScImageField_default.labelContainer, children: /* @__PURE__ */ jsx90("div", { className: ScImageField_default.label, children: label }) }),
7757
- hasImage ? /* @__PURE__ */ jsxs79("div", { className: ScImageField_default.previewArea, children: [
7758
- /* @__PURE__ */ jsx90(
8162
+ /* @__PURE__ */ jsx96("div", { className: ScImageField_default.labelContainer, children: /* @__PURE__ */ jsx96("div", { className: ScImageField_default.label, children: label }) }),
8163
+ hasImage ? /* @__PURE__ */ jsxs84("div", { className: ScImageField_default.previewArea, children: [
8164
+ /* @__PURE__ */ jsx96(
7759
8165
  "img",
7760
8166
  {
7761
8167
  className: ScImageField_default.previewImage,
@@ -7763,8 +8169,8 @@ var ScImageField = ({
7763
8169
  alt: "preview"
7764
8170
  }
7765
8171
  ),
7766
- /* @__PURE__ */ jsx90("span", { className: ScImageField_default.fileName, children: imageName || "image" }),
7767
- /* @__PURE__ */ jsx90(
8172
+ /* @__PURE__ */ jsx96("span", { className: ScImageField_default.fileName, children: imageName || "image" }),
8173
+ /* @__PURE__ */ jsx96(
7768
8174
  SiconDelete2,
7769
8175
  {
7770
8176
  className: ScImageField_default.removeIcon,
@@ -7775,9 +8181,9 @@ var ScImageField = ({
7775
8181
  }
7776
8182
  }
7777
8183
  )
7778
- ] }) : /* @__PURE__ */ jsxs79("div", { className: ScImageField_default.uploadArea, onClick: handleClick, children: [
7779
- /* @__PURE__ */ jsx90(SiconUpload2, { className: ScImageField_default.uploadIcon, color: "var(--alias-text-and-icons-secondary, #dadada)" }),
7780
- /* @__PURE__ */ jsx90("span", { className: ScImageField_default.uploadText, children: "Click to upload" })
8184
+ ] }) : /* @__PURE__ */ jsxs84("div", { className: ScImageField_default.uploadArea, onClick: handleClick, children: [
8185
+ /* @__PURE__ */ jsx96(SiconUpload2, { className: ScImageField_default.uploadIcon, color: "var(--alias-text-and-icons-secondary, #dadada)" }),
8186
+ /* @__PURE__ */ jsx96("span", { className: ScImageField_default.uploadText, children: "Click to upload" })
7781
8187
  ] })
7782
8188
  ] });
7783
8189
  };
@@ -7791,7 +8197,7 @@ var ScSettingsTabComp_default = {
7791
8197
  };
7792
8198
 
7793
8199
  // src/SC-settingsTabComp/ScSettingsTabComp.tsx
7794
- import { jsx as jsx91 } from "react/jsx-runtime";
8200
+ import { jsx as jsx97 } from "react/jsx-runtime";
7795
8201
  var ScSettingsTabComp = ({
7796
8202
  tabName = "Tab",
7797
8203
  active = false,
@@ -7799,12 +8205,12 @@ var ScSettingsTabComp = ({
7799
8205
  className
7800
8206
  }) => {
7801
8207
  const variantsClassName = ScSettingsTabComp_default["active-" + active];
7802
- return /* @__PURE__ */ jsx91(
8208
+ return /* @__PURE__ */ jsx97(
7803
8209
  "div",
7804
8210
  {
7805
8211
  className: ScSettingsTabComp_default.scSettingsTabComp + " " + variantsClassName + " " + (className ?? ""),
7806
8212
  onClick,
7807
- children: /* @__PURE__ */ jsx91("span", { className: ScSettingsTabComp_default.tabText, children: tabName })
8213
+ children: /* @__PURE__ */ jsx97("span", { className: ScSettingsTabComp_default.tabText, children: tabName })
7808
8214
  }
7809
8215
  );
7810
8216
  };
@@ -7824,7 +8230,7 @@ var ScCreditsUsageCardMobile_default = {
7824
8230
 
7825
8231
  // src/SC-Credits usage card-Mobile/ScCreditsUsageCardMobile.tsx
7826
8232
  import { SiconCredits as SiconCredits2 } from "@streamoid/icons";
7827
- import { jsx as jsx92, jsxs as jsxs80 } from "react/jsx-runtime";
8233
+ import { jsx as jsx98, jsxs as jsxs85 } from "react/jsx-runtime";
7828
8234
  var ScCreditsUsageCardMobile = ({
7829
8235
  usageLabel = "Credits usage",
7830
8236
  usageText = "8,450 / 30,000",
@@ -7834,23 +8240,23 @@ var ScCreditsUsageCardMobile = ({
7834
8240
  className,
7835
8241
  ...props
7836
8242
  }) => {
7837
- return /* @__PURE__ */ jsxs80("div", { className: ScCreditsUsageCardMobile_default.scCreditsUsageCardMobile + " " + (className ?? ""), ...props, children: [
7838
- /* @__PURE__ */ jsxs80("div", { className: ScCreditsUsageCardMobile_default.header, children: [
7839
- /* @__PURE__ */ jsx92(
8243
+ return /* @__PURE__ */ jsxs85("div", { className: ScCreditsUsageCardMobile_default.scCreditsUsageCardMobile + " " + (className ?? ""), ...props, children: [
8244
+ /* @__PURE__ */ jsxs85("div", { className: ScCreditsUsageCardMobile_default.header, children: [
8245
+ /* @__PURE__ */ jsx98(
7840
8246
  SiconCredits2,
7841
8247
  {
7842
8248
  className: ScCreditsUsageCardMobile_default.headerIcon,
7843
8249
  color: "var(--alias-text-and-icons-tertiary, #9e9e9e)"
7844
8250
  }
7845
8251
  ),
7846
- /* @__PURE__ */ jsx92("span", { className: ScCreditsUsageCardMobile_default.headerLabel, children: usageLabel })
8252
+ /* @__PURE__ */ jsx98("span", { className: ScCreditsUsageCardMobile_default.headerLabel, children: usageLabel })
7847
8253
  ] }),
7848
- /* @__PURE__ */ jsx92("div", { className: ScCreditsUsageCardMobile_default.divider }),
7849
- /* @__PURE__ */ jsxs80("div", { className: ScCreditsUsageCardMobile_default.usageInfo, children: [
7850
- /* @__PURE__ */ jsx92("div", { className: ScCreditsUsageCardMobile_default.usageText, children: usageText }),
7851
- /* @__PURE__ */ jsx92("div", { className: ScCreditsUsageCardMobile_default.remainingText, children: remainingText })
8254
+ /* @__PURE__ */ jsx98("div", { className: ScCreditsUsageCardMobile_default.divider }),
8255
+ /* @__PURE__ */ jsxs85("div", { className: ScCreditsUsageCardMobile_default.usageInfo, children: [
8256
+ /* @__PURE__ */ jsx98("div", { className: ScCreditsUsageCardMobile_default.usageText, children: usageText }),
8257
+ /* @__PURE__ */ jsx98("div", { className: ScCreditsUsageCardMobile_default.remainingText, children: remainingText })
7852
8258
  ] }),
7853
- /* @__PURE__ */ jsx92(
8259
+ /* @__PURE__ */ jsx98(
7854
8260
  ScButton,
7855
8261
  {
7856
8262
  text: buyButtonText,
@@ -7892,7 +8298,7 @@ var ScPlanDetailsCardMobile_default = {
7892
8298
 
7893
8299
  // src/SC-Plan details card-Mobile/ScPlanDetailsCardMobile.tsx
7894
8300
  import { SiconBilling as SiconBilling4 } from "@streamoid/icons";
7895
- import { Fragment as Fragment23, jsx as jsx93, jsxs as jsxs81 } from "react/jsx-runtime";
8301
+ import { Fragment as Fragment23, jsx as jsx99, jsxs as jsxs86 } from "react/jsx-runtime";
7896
8302
  var ScPlanDetailsCardMobile = ({
7897
8303
  planName = "Pro",
7898
8304
  planCredits = "30,000 credits",
@@ -7906,20 +8312,20 @@ var ScPlanDetailsCardMobile = ({
7906
8312
  className,
7907
8313
  ...props
7908
8314
  }) => {
7909
- return /* @__PURE__ */ jsxs81("div", { className: ScPlanDetailsCardMobile_default.scPlanDetailsCardMobile + " " + (className ?? ""), ...props, children: [
7910
- /* @__PURE__ */ jsxs81("div", { className: ScPlanDetailsCardMobile_default.planHeader, children: [
7911
- /* @__PURE__ */ jsxs81("div", { className: ScPlanDetailsCardMobile_default.headerLeft, children: [
7912
- /* @__PURE__ */ jsx93(
8315
+ return /* @__PURE__ */ jsxs86("div", { className: ScPlanDetailsCardMobile_default.scPlanDetailsCardMobile + " " + (className ?? ""), ...props, children: [
8316
+ /* @__PURE__ */ jsxs86("div", { className: ScPlanDetailsCardMobile_default.planHeader, children: [
8317
+ /* @__PURE__ */ jsxs86("div", { className: ScPlanDetailsCardMobile_default.headerLeft, children: [
8318
+ /* @__PURE__ */ jsx99(
7913
8319
  SiconBilling4,
7914
8320
  {
7915
8321
  className: ScPlanDetailsCardMobile_default.headerIcon,
7916
8322
  color: "var(--alias-text-and-icons-tertiary, #9e9e9e)"
7917
8323
  }
7918
8324
  ),
7919
- /* @__PURE__ */ jsx93("span", { className: ScPlanDetailsCardMobile_default.headerLabel, children: currentPlanLabel })
8325
+ /* @__PURE__ */ jsx99("span", { className: ScPlanDetailsCardMobile_default.headerLabel, children: currentPlanLabel })
7920
8326
  ] }),
7921
- /* @__PURE__ */ jsx93("div", { className: ScPlanDetailsCardMobile_default.badgeGroup, children: isLoading ? /* @__PURE__ */ jsx93("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.badgeSkeleton}` }) : /* @__PURE__ */ jsxs81(Fragment23, { children: [
7922
- /* @__PURE__ */ jsx93(
8327
+ /* @__PURE__ */ jsx99("div", { className: ScPlanDetailsCardMobile_default.badgeGroup, children: isLoading ? /* @__PURE__ */ jsx99("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.badgeSkeleton}` }) : /* @__PURE__ */ jsxs86(Fragment23, { children: [
8328
+ /* @__PURE__ */ jsx99(
7923
8329
  ScBadges,
7924
8330
  {
7925
8331
  text: badgeText,
@@ -7928,28 +8334,28 @@ var ScPlanDetailsCardMobile = ({
7928
8334
  className: ScPlanDetailsCardMobile_default.scBadgesInstance
7929
8335
  }
7930
8336
  ),
7931
- badgeSubText && /* @__PURE__ */ jsxs81(Fragment23, { children: [
7932
- /* @__PURE__ */ jsx93("span", { className: ScPlanDetailsCardMobile_default.badgeDot }),
7933
- /* @__PURE__ */ jsx93("span", { className: ScPlanDetailsCardMobile_default.badgeSubText, children: badgeSubText })
8337
+ badgeSubText && /* @__PURE__ */ jsxs86(Fragment23, { children: [
8338
+ /* @__PURE__ */ jsx99("span", { className: ScPlanDetailsCardMobile_default.badgeDot }),
8339
+ /* @__PURE__ */ jsx99("span", { className: ScPlanDetailsCardMobile_default.badgeSubText, children: badgeSubText })
7934
8340
  ] })
7935
8341
  ] }) })
7936
8342
  ] }),
7937
- /* @__PURE__ */ jsx93("div", { className: ScPlanDetailsCardMobile_default.divider }),
7938
- /* @__PURE__ */ jsx93("div", { className: ScPlanDetailsCardMobile_default.planInfo, children: isLoading ? /* @__PURE__ */ jsxs81(Fragment23, { children: [
7939
- /* @__PURE__ */ jsxs81("div", { className: ScPlanDetailsCardMobile_default.planNameRow, "aria-label": "Loading plan details", children: [
7940
- /* @__PURE__ */ jsx93("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.planNameSkeleton}` }),
7941
- /* @__PURE__ */ jsx93("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.creditsSkeleton}` })
8343
+ /* @__PURE__ */ jsx99("div", { className: ScPlanDetailsCardMobile_default.divider }),
8344
+ /* @__PURE__ */ jsx99("div", { className: ScPlanDetailsCardMobile_default.planInfo, children: isLoading ? /* @__PURE__ */ jsxs86(Fragment23, { children: [
8345
+ /* @__PURE__ */ jsxs86("div", { className: ScPlanDetailsCardMobile_default.planNameRow, "aria-label": "Loading plan details", children: [
8346
+ /* @__PURE__ */ jsx99("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.planNameSkeleton}` }),
8347
+ /* @__PURE__ */ jsx99("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.creditsSkeleton}` })
7942
8348
  ] }),
7943
- /* @__PURE__ */ jsx93("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.priceSkeleton}` })
7944
- ] }) : /* @__PURE__ */ jsxs81(Fragment23, { children: [
7945
- /* @__PURE__ */ jsxs81("div", { className: ScPlanDetailsCardMobile_default.planNameRow, children: [
7946
- /* @__PURE__ */ jsx93("span", { className: ScPlanDetailsCardMobile_default.planName, children: planName }),
7947
- /* @__PURE__ */ jsx93("div", { className: ScPlanDetailsCardMobile_default.dot }),
7948
- /* @__PURE__ */ jsx93("span", { className: ScPlanDetailsCardMobile_default.planName, children: planCredits })
8349
+ /* @__PURE__ */ jsx99("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.priceSkeleton}` })
8350
+ ] }) : /* @__PURE__ */ jsxs86(Fragment23, { children: [
8351
+ /* @__PURE__ */ jsxs86("div", { className: ScPlanDetailsCardMobile_default.planNameRow, children: [
8352
+ /* @__PURE__ */ jsx99("span", { className: ScPlanDetailsCardMobile_default.planName, children: planName }),
8353
+ /* @__PURE__ */ jsx99("div", { className: ScPlanDetailsCardMobile_default.dot }),
8354
+ /* @__PURE__ */ jsx99("span", { className: ScPlanDetailsCardMobile_default.planName, children: planCredits })
7949
8355
  ] }),
7950
- /* @__PURE__ */ jsx93("div", { className: ScPlanDetailsCardMobile_default.planPrice, children: planPrice })
8356
+ /* @__PURE__ */ jsx99("div", { className: ScPlanDetailsCardMobile_default.planPrice, children: planPrice })
7951
8357
  ] }) }),
7952
- isLoading ? /* @__PURE__ */ jsx93("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.buttonSkeleton}` }) : /* @__PURE__ */ jsx93(
8358
+ isLoading ? /* @__PURE__ */ jsx99("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.buttonSkeleton}` }) : /* @__PURE__ */ jsx99(
7953
8359
  ScButton,
7954
8360
  {
7955
8361
  text: upgradeButtonText,
@@ -8002,6 +8408,8 @@ export {
8002
8408
  ScHDivider,
8003
8409
  ScHeader,
8004
8410
  ScImageField,
8411
+ ScInChatList,
8412
+ ScInChatMessage,
8005
8413
  ScIntialProfileCover,
8006
8414
  ScLogoUnit,
8007
8415
  ScMenuOptions,
@@ -8030,6 +8438,8 @@ export {
8030
8438
  ScReferralTableList,
8031
8439
  ScRole,
8032
8440
  ScRoleMobile,
8441
+ ScSelection,
8442
+ ScSelectionList,
8033
8443
  ScSettingsNav,
8034
8444
  ScSettingsTabComp,
8035
8445
  ScSideBarLogoUnit,
@@ -8042,6 +8452,7 @@ export {
8042
8452
  ScStrLogo,
8043
8453
  ScStreamoidMascot,
8044
8454
  ScStreamoidWordmark,
8455
+ ScSubAgent,
8045
8456
  ScTabComp,
8046
8457
  ScTabField,
8047
8458
  ScTabSwitcher,
@@ -8049,6 +8460,7 @@ export {
8049
8460
  ScTableList,
8050
8461
  ScTableListMobile,
8051
8462
  ScTextField,
8463
+ ScThinkingStepIcon,
8052
8464
  ScToggleSwitch,
8053
8465
  ScVDivider,
8054
8466
  ScVersion,
@@ -8060,5 +8472,6 @@ export {
8060
8472
  StreamoidSidebar,
8061
8473
  StreamoidWorkspaceSwitcher,
8062
8474
  UsageHistoryMobile,
8475
+ formatSubAgentLabel,
8063
8476
  hasCollapsedMark
8064
8477
  };