@streamoid/ui 0.2.7 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -24,6 +24,7 @@ __export(index_exports, {
24
24
  NscWorkspaceSwitch: () => NscWorkspaceSwitch,
25
25
  ScAccess: () => ScAccess,
26
26
  ScAppCard: () => ScAppCard,
27
+ ScAppCardV3: () => ScAppCardV3,
27
28
  ScAppField: () => ScAppField,
28
29
  ScAppListingCard: () => ScAppListingCard,
29
30
  ScArtifaxInvite: () => ScArtifaxInvite,
@@ -1650,25 +1651,17 @@ var ScVDivider_default = {
1650
1651
  // src/SC-VDivider/ScVDivider.tsx
1651
1652
  var import_jsx_runtime26 = require("react/jsx-runtime");
1652
1653
  var ScVDivider = ({
1654
+ color,
1653
1655
  className,
1656
+ style,
1654
1657
  ...props
1655
1658
  }) => {
1656
1659
  return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
1657
- "svg",
1660
+ "div",
1658
1661
  {
1659
- className: ScVDivider_default.scVDivider + " " + className,
1660
- width: "1",
1661
- height: "28",
1662
- viewBox: "0 0 1 28",
1663
- fill: "none",
1664
- xmlns: "http://www.w3.org/2000/svg",
1665
- children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
1666
- "path",
1667
- {
1668
- d: "M0.5 0.25C0.5 0.111929 0.388071 0 0.25 0C0.111929 0 0 0.111929 0 0.25H0.25H0.5ZM0.25 0.25H0V27.75H0.25H0.5V0.25H0.25Z",
1669
- fill: "var(--alias-border-divider, #242424)"
1670
- }
1671
- )
1662
+ className: ScVDivider_default.scVDivider + (className ? " " + className : ""),
1663
+ style: color ? { borderLeftColor: color, ...style } : style,
1664
+ ...props
1672
1665
  }
1673
1666
  );
1674
1667
  };
@@ -2076,6 +2069,7 @@ var ScTextField = ({
2076
2069
  className,
2077
2070
  placeholderFilled = "Placeholder",
2078
2071
  label = "",
2072
+ style,
2079
2073
  ...props
2080
2074
  }) => {
2081
2075
  const [focused, setFocused] = (0, import_react6.useState)(false);
@@ -2085,6 +2079,7 @@ var ScTextField = ({
2085
2079
  "div",
2086
2080
  {
2087
2081
  className: ScTextField_default.scTextField + " " + className + " " + variantsClassName,
2082
+ style,
2088
2083
  children: [
2089
2084
  labelGroup && /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("div", { className: ScTextField_default.labelContainer, children: [
2090
2085
  /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("div", { className: ScTextField_default.label, children: [
@@ -2753,6 +2748,7 @@ function StreamoidSidebar({
2753
2748
  versionText = "v1.0.0",
2754
2749
  toggleIcon,
2755
2750
  hideFooter = false,
2751
+ preFooterContent,
2756
2752
  className,
2757
2753
  style
2758
2754
  }) {
@@ -2852,6 +2848,7 @@ function StreamoidSidebar({
2852
2848
  )
2853
2849
  }
2854
2850
  ) : null,
2851
+ preFooterContent,
2855
2852
  /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(HDivider, {}),
2856
2853
  profile ? /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(import_jsx_runtime40.Fragment, { children: [
2857
2854
  /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
@@ -3508,6 +3505,64 @@ var ScAppCard = ({
3508
3505
  ] });
3509
3506
  };
3510
3507
 
3508
+ // src/SC-AppCardV3/ScAppCardV3.module.css
3509
+ var ScAppCardV3_default = {
3510
+ scAppCardV3: "ScAppCardV3_scAppCardV3",
3511
+ cardBorder: "ScAppCardV3_cardBorder",
3512
+ scAppCardV3Active: "ScAppCardV3_scAppCardV3Active",
3513
+ glow: "ScAppCardV3_glow",
3514
+ glowHover: "ScAppCardV3_glowHover",
3515
+ header: "ScAppCardV3_header",
3516
+ iconRow: "ScAppCardV3_iconRow",
3517
+ appName: "ScAppCardV3_appName",
3518
+ iconPill: "ScAppCardV3_iconPill",
3519
+ iconPillBg: "ScAppCardV3_iconPillBg",
3520
+ iconPillShadow: "ScAppCardV3_iconPillShadow",
3521
+ iconPillIcon: "ScAppCardV3_iconPillIcon",
3522
+ description: "ScAppCardV3_description"
3523
+ };
3524
+
3525
+ // src/SC-AppCardV3/ScAppCardV3.tsx
3526
+ var import_icons37 = require("@streamoid/icons");
3527
+ var import_jsx_runtime45 = require("react/jsx-runtime");
3528
+ var ScAppCardV3 = ({
3529
+ appIcon = /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(import_icons37.SiconCart, { className: ScAppCardV3_default.iconPillIcon }),
3530
+ appName = "Stores",
3531
+ description = "Centralized product and asset management for every storefront",
3532
+ active = false,
3533
+ className,
3534
+ style,
3535
+ ...props
3536
+ }) => {
3537
+ const cardClass = [
3538
+ ScAppCardV3_default.scAppCardV3,
3539
+ active ? ScAppCardV3_default.scAppCardV3Active : ""
3540
+ ].filter(Boolean).join(" ");
3541
+ return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
3542
+ "div",
3543
+ {
3544
+ className: [ScAppCardV3_default.cardBorder, className || ""].filter(Boolean).join(" "),
3545
+ style,
3546
+ ...props,
3547
+ children: /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("div", { className: cardClass, children: [
3548
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: ScAppCardV3_default.glow }),
3549
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: ScAppCardV3_default.glowHover }),
3550
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("div", { className: ScAppCardV3_default.header, children: [
3551
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("div", { className: ScAppCardV3_default.iconRow, children: [
3552
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("p", { className: ScAppCardV3_default.appName, children: appName }),
3553
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("div", { className: ScAppCardV3_default.iconPill, children: [
3554
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: ScAppCardV3_default.iconPillBg }),
3555
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: ScAppCardV3_default.iconPillIcon, children: appIcon }),
3556
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: ScAppCardV3_default.iconPillShadow })
3557
+ ] })
3558
+ ] }),
3559
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("p", { className: ScAppCardV3_default.description, children: description })
3560
+ ] })
3561
+ ] })
3562
+ }
3563
+ );
3564
+ };
3565
+
3511
3566
  // src/SC-appField/ScAppField.module.css
3512
3567
  var ScAppField_default = {
3513
3568
  scAppField: "ScAppField_scAppField",
@@ -3528,7 +3583,7 @@ var ScArtifaxInvite_default = {
3528
3583
  };
3529
3584
 
3530
3585
  // src/SC-artifaxInvite/ScArtifaxInvite.tsx
3531
- var import_icons37 = require("@streamoid/icons");
3586
+ var import_icons38 = require("@streamoid/icons");
3532
3587
 
3533
3588
  // src/SC-toggleSwitch/ScToggleSwitch.module.css
3534
3589
  var ScToggleSwitch_default = {
@@ -3539,7 +3594,7 @@ var ScToggleSwitch_default = {
3539
3594
  };
3540
3595
 
3541
3596
  // src/SC-toggleSwitch/ScToggleSwitch.tsx
3542
- var import_jsx_runtime45 = require("react/jsx-runtime");
3597
+ var import_jsx_runtime46 = require("react/jsx-runtime");
3543
3598
  var ScToggleSwitch = ({
3544
3599
  active = "false",
3545
3600
  checked,
@@ -3549,7 +3604,7 @@ var ScToggleSwitch = ({
3549
3604
  }) => {
3550
3605
  const isActive = checked !== void 0 ? checked : active === "true";
3551
3606
  const variantsClassName = ScToggleSwitch_default["active-" + (isActive ? "true" : "false")];
3552
- return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
3607
+ return /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
3553
3608
  "div",
3554
3609
  {
3555
3610
  className: ScToggleSwitch_default.scToggleSwitch + " " + className + " " + variantsClassName,
@@ -3559,20 +3614,20 @@ var ScToggleSwitch = ({
3559
3614
  props.onClick?.(e);
3560
3615
  },
3561
3616
  style: { cursor: "pointer", ...props.style },
3562
- children: isActive ? /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("svg", { width: "40", height: "24", viewBox: "0 0 40 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
3563
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("rect", { width: "40", height: "24", rx: "12", fill: "var(--alias-fill-base-base, #f5f5f5)" }),
3564
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("circle", { cx: "28", cy: "12", r: "10", fill: "var(--alias-text---icons-inverse, #101010)" })
3565
- ] }) : /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("svg", { width: "41", height: "25", viewBox: "0 0 41 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
3566
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("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)" }),
3567
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("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)" }),
3568
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("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)" })
3617
+ children: isActive ? /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)("svg", { width: "40", height: "24", viewBox: "0 0 40 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
3618
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("rect", { width: "40", height: "24", rx: "12", fill: "var(--alias-fill-base-base, #f5f5f5)" }),
3619
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("circle", { cx: "28", cy: "12", r: "10", fill: "var(--alias-text---icons-inverse, #101010)" })
3620
+ ] }) : /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)("svg", { width: "41", height: "25", viewBox: "0 0 41 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
3621
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("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)" }),
3622
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("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)" }),
3623
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("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)" })
3569
3624
  ] })
3570
3625
  }
3571
3626
  );
3572
3627
  };
3573
3628
 
3574
3629
  // src/SC-artifaxInvite/ScArtifaxInvite.tsx
3575
- var import_jsx_runtime46 = require("react/jsx-runtime");
3630
+ var import_jsx_runtime47 = require("react/jsx-runtime");
3576
3631
  var ScArtifaxInvite = ({
3577
3632
  active = "true",
3578
3633
  appName = "Artifax",
@@ -3585,22 +3640,22 @@ var ScArtifaxInvite = ({
3585
3640
  }) => {
3586
3641
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
3587
3642
  const variantsClassName = ScArtifaxInvite_default["active-" + (isEnabled ? "true" : "false")];
3588
- return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
3643
+ return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
3589
3644
  "div",
3590
3645
  {
3591
3646
  className: ScArtifaxInvite_default.scArtifaxInvite + " " + className + " " + variantsClassName,
3592
3647
  ...props,
3593
3648
  children: [
3594
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
3649
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
3595
3650
  ScAppCard,
3596
3651
  {
3597
- appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(import_icons37.SiconArtifacts, { className: ScArtifaxInvite_default.siconArtifactsInstance }),
3652
+ appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(import_icons38.SiconArtifacts, { className: ScArtifaxInvite_default.siconArtifactsInstance }),
3598
3653
  appName,
3599
3654
  appDescription,
3600
3655
  className: ScArtifaxInvite_default.scAppCardInstance
3601
3656
  }
3602
3657
  ),
3603
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
3658
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
3604
3659
  ScToggleSwitch,
3605
3660
  {
3606
3661
  checked: isEnabled,
@@ -3614,7 +3669,7 @@ var ScArtifaxInvite = ({
3614
3669
  };
3615
3670
 
3616
3671
  // src/SC-appField/ScAppField.tsx
3617
- var import_icons43 = require("@streamoid/icons");
3672
+ var import_icons44 = require("@streamoid/icons");
3618
3673
 
3619
3674
  // src/SC-phtogenixInvite/ScPhtogenixInvite.module.css
3620
3675
  var ScPhtogenixInvite_default = {
@@ -3625,13 +3680,13 @@ var ScPhtogenixInvite_default = {
3625
3680
  };
3626
3681
 
3627
3682
  // src/SC-phtogenixInvite/ScPhtogenixInvite.tsx
3628
- var import_icons38 = require("@streamoid/icons");
3629
- var import_jsx_runtime47 = require("react/jsx-runtime");
3683
+ var import_icons39 = require("@streamoid/icons");
3684
+ var import_jsx_runtime48 = require("react/jsx-runtime");
3630
3685
  var ScPhtogenixInvite = ({
3631
3686
  active = "true",
3632
3687
  scAppCardappDescription = "Info about photogenix",
3633
3688
  scAppCardappName = "Photogenix",
3634
- scAppCardappIcon = /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(import_icons38.SiconArtifacts, { className: ScPhtogenixInvite_default.siconArtifactsInstance }),
3689
+ scAppCardappIcon = /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(import_icons39.SiconArtifacts, { className: ScPhtogenixInvite_default.siconArtifactsInstance }),
3635
3690
  className,
3636
3691
  enabled,
3637
3692
  onToggle,
@@ -3639,12 +3694,12 @@ var ScPhtogenixInvite = ({
3639
3694
  }) => {
3640
3695
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
3641
3696
  const variantsClassName = ScPhtogenixInvite_default["active-" + (isEnabled ? "true" : "false")];
3642
- return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
3697
+ return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
3643
3698
  "div",
3644
3699
  {
3645
3700
  className: ScPhtogenixInvite_default.scPhtogenixInvite + " " + className + " " + variantsClassName,
3646
3701
  children: [
3647
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
3702
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
3648
3703
  ScAppCard,
3649
3704
  {
3650
3705
  appIcon: scAppCardappIcon,
@@ -3653,7 +3708,7 @@ var ScPhtogenixInvite = ({
3653
3708
  className: ScPhtogenixInvite_default.scAppCardInstance
3654
3709
  }
3655
3710
  ),
3656
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
3711
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
3657
3712
  ScToggleSwitch,
3658
3713
  {
3659
3714
  checked: isEnabled,
@@ -3683,14 +3738,17 @@ var ScCatalogixInvite_default = {
3683
3738
  };
3684
3739
 
3685
3740
  // src/SC-catalogixInvite/ScCatalogixInvite.tsx
3686
- var import_icons40 = require("@streamoid/icons");
3687
3741
  var import_icons41 = require("@streamoid/icons");
3742
+ var import_icons42 = require("@streamoid/icons");
3688
3743
 
3689
3744
  // src/SC-onlyField/ScOnlyField.module.css
3690
3745
  var ScOnlyField_default = {
3691
3746
  scOnlyField: "ScOnlyField_scOnlyField",
3692
3747
  inputContainer: "ScOnlyField_inputContainer",
3693
3748
  inputText: "ScOnlyField_inputText",
3749
+ iconWrapper: "ScOnlyField_iconWrapper",
3750
+ "size-medium": "ScOnlyField_size-medium",
3751
+ "size-small": "ScOnlyField_size-small",
3694
3752
  "tf-group-icon-left": "ScOnlyField_tf-group-icon-left",
3695
3753
  "tf-group-icon-left-right": "ScOnlyField_tf-group-icon-left-right",
3696
3754
  "state-hover": "ScOnlyField_state-hover",
@@ -3699,14 +3757,15 @@ var ScOnlyField_default = {
3699
3757
  };
3700
3758
 
3701
3759
  // src/SC-onlyField/ScOnlyField.tsx
3702
- var import_icons39 = require("@streamoid/icons");
3703
- var import_jsx_runtime48 = require("react/jsx-runtime");
3760
+ var import_icons40 = require("@streamoid/icons");
3761
+ var import_jsx_runtime49 = require("react/jsx-runtime");
3704
3762
  var ScOnlyField = ({
3705
- tfRightIcon = /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(import_icons39.SiconBolt, { className: ScOnlyField_default.siconBoltInstance }),
3706
- tfLeftIcon = /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(import_icons39.SiconBolt, { className: ScOnlyField_default.siconBoltInstance }),
3763
+ tfRightIcon = /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons40.SiconBolt, { className: ScOnlyField_default.siconBoltInstance }),
3764
+ tfLeftIcon = /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons40.SiconBolt, { className: ScOnlyField_default.siconBoltInstance }),
3707
3765
  state = "default",
3708
3766
  tfGroup = "icon-right",
3709
3767
  labelGroup = "none",
3768
+ size = "default",
3710
3769
  className,
3711
3770
  placeholderFilled = "Placeholder",
3712
3771
  value,
@@ -3714,15 +3773,15 @@ var ScOnlyField = ({
3714
3773
  inputProps,
3715
3774
  ...props
3716
3775
  }) => {
3717
- const variantsClassName = ScOnlyField_default["state-" + state] + " " + ScOnlyField_default["tf-group-" + tfGroup] + " " + ScOnlyField_default["label-group-" + labelGroup];
3718
- return /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
3776
+ const variantsClassName = ScOnlyField_default["state-" + state] + " " + ScOnlyField_default["tf-group-" + tfGroup] + " " + ScOnlyField_default["label-group-" + labelGroup] + (size !== "default" ? " " + ScOnlyField_default["size-" + size] : "");
3777
+ return /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3719
3778
  "div",
3720
3779
  {
3721
3780
  className: ScOnlyField_default.scOnlyField + " " + className + " " + variantsClassName,
3722
3781
  ...props,
3723
- children: /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: ScOnlyField_default.inputContainer, children: [
3724
- (tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(import_jsx_runtime48.Fragment, { children: tfLeftIcon }),
3725
- /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
3782
+ children: /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: ScOnlyField_default.inputContainer, children: [
3783
+ (tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: ScOnlyField_default.iconWrapper, children: tfLeftIcon }),
3784
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3726
3785
  "input",
3727
3786
  {
3728
3787
  className: ScOnlyField_default.inputText,
@@ -3734,7 +3793,7 @@ var ScOnlyField = ({
3734
3793
  border: "none",
3735
3794
  outline: "none",
3736
3795
  font: "inherit",
3737
- color: "inherit",
3796
+ color: "var(--alias-text-and-icons-primary, #f5f5f5)",
3738
3797
  width: "100%",
3739
3798
  padding: 0,
3740
3799
  margin: 0
@@ -3742,15 +3801,15 @@ var ScOnlyField = ({
3742
3801
  ...inputProps
3743
3802
  }
3744
3803
  ),
3745
- (tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(import_jsx_runtime48.Fragment, { children: tfRightIcon })
3804
+ (tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: ScOnlyField_default.iconWrapper, children: tfRightIcon })
3746
3805
  ] })
3747
3806
  }
3748
3807
  );
3749
3808
  };
3750
3809
 
3751
3810
  // src/SC-catalogixInvite/ScCatalogixInvite.tsx
3752
- var import_icons42 = require("@streamoid/icons");
3753
- var import_jsx_runtime49 = require("react/jsx-runtime");
3811
+ var import_icons43 = require("@streamoid/icons");
3812
+ var import_jsx_runtime50 = require("react/jsx-runtime");
3754
3813
  var ScCatalogixInvite = ({
3755
3814
  active = "false",
3756
3815
  appName = "Catalogix",
@@ -3772,23 +3831,23 @@ var ScCatalogixInvite = ({
3772
3831
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
3773
3832
  const variantsClassName = ScCatalogixInvite_default["active-" + (isEnabled ? "true" : "false")];
3774
3833
  const displayCount = selectedStores ? `${selectedStores.length} Selected` : selectedCount;
3775
- return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
3834
+ return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
3776
3835
  "div",
3777
3836
  {
3778
3837
  className: ScCatalogixInvite_default.scCatalogixInvite + " " + className + " " + variantsClassName,
3779
3838
  ...props,
3780
3839
  children: [
3781
- /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: ScCatalogixInvite_default.appHeader, children: [
3782
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3840
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: ScCatalogixInvite_default.appHeader, children: [
3841
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
3783
3842
  ScAppCard,
3784
3843
  {
3785
- appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons40.SiconArtifacts, { className: ScCatalogixInvite_default.siconArtifactsInstance }),
3844
+ appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_icons41.SiconArtifacts, { className: ScCatalogixInvite_default.siconArtifactsInstance }),
3786
3845
  appDescription,
3787
3846
  appName,
3788
3847
  className: ScCatalogixInvite_default.scAppCardInstance
3789
3848
  }
3790
3849
  ),
3791
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3850
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
3792
3851
  ScToggleSwitch,
3793
3852
  {
3794
3853
  checked: isEnabled,
@@ -3797,29 +3856,29 @@ var ScCatalogixInvite = ({
3797
3856
  }
3798
3857
  )
3799
3858
  ] }),
3800
- isEnabled && /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_jsx_runtime49.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessContainer, children: [
3801
- /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessHeader, children: [
3802
- /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessTitle, children: [
3859
+ isEnabled && /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_jsx_runtime50.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessContainer, children: [
3860
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessHeader, children: [
3861
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessTitle, children: [
3803
3862
  storeAccessTitle,
3804
3863
  " "
3805
3864
  ] }),
3806
- /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: ScCatalogixInvite_default.selectedCount, children: [
3865
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: ScCatalogixInvite_default.selectedCount, children: [
3807
3866
  displayCount,
3808
3867
  " "
3809
3868
  ] })
3810
3869
  ] }),
3811
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3870
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
3812
3871
  ScOnlyField,
3813
3872
  {
3814
- tfLeftIcon: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons41.SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
3815
- tfRightIcon: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons41.SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
3873
+ tfLeftIcon: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_icons42.SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
3874
+ tfRightIcon: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_icons42.SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
3816
3875
  placeholderFilled: searchPlaceholder,
3817
3876
  value: searchValue,
3818
3877
  onInputChange: onSearchChange,
3819
3878
  className: ScCatalogixInvite_default.scOnlyFieldInstance
3820
3879
  }
3821
3880
  ),
3822
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: ScCatalogixInvite_default.storeListContainer, children: stores ? stores.length > 0 ? stores.map((store) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3881
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("div", { className: ScCatalogixInvite_default.storeListContainer, children: stores ? stores.length > 0 ? stores.map((store) => /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
3823
3882
  ScPairtext,
3824
3883
  {
3825
3884
  content: store.name,
@@ -3830,53 +3889,53 @@ var ScCatalogixInvite = ({
3830
3889
  className: ScCatalogixInvite_default.scPairtextInstance
3831
3890
  },
3832
3891
  store.id
3833
- )) : /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { style: {
3892
+ )) : /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("div", { style: {
3834
3893
  padding: "var(--spacing-3xl, 16px)",
3835
3894
  color: "var(--alias-text-and-icons-muted, #7a7a7a)",
3836
3895
  fontFamily: "var(--font-family-font-family-body, Inter, sans-serif)",
3837
3896
  fontSize: "var(--font-size-font-size-sm, 14px)",
3838
3897
  lineHeight: "var(--line-height-line-height-sm, 20px)"
3839
- }, children: "No stores found" }) : /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(import_jsx_runtime49.Fragment, { children: [
3840
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3898
+ }, children: "No stores found" }) : /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(import_jsx_runtime50.Fragment, { children: [
3899
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
3841
3900
  ScPairtext,
3842
3901
  {
3843
- icon: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons42.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
3902
+ icon: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_icons43.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
3844
3903
  iconPosition: "right",
3845
3904
  type: "checkbox",
3846
3905
  className: ScCatalogixInvite_default.scPairtextInstance
3847
3906
  }
3848
3907
  ),
3849
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3908
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
3850
3909
  ScPairtext,
3851
3910
  {
3852
- icon: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons42.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
3911
+ icon: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_icons43.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
3853
3912
  iconPosition: "right",
3854
3913
  type: "checkbox",
3855
3914
  className: ScCatalogixInvite_default.scPairtextInstance
3856
3915
  }
3857
3916
  ),
3858
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3917
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
3859
3918
  ScPairtext,
3860
3919
  {
3861
- icon: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons42.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
3920
+ icon: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_icons43.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
3862
3921
  iconPosition: "right",
3863
3922
  type: "checkbox",
3864
3923
  className: ScCatalogixInvite_default.scPairtextInstance
3865
3924
  }
3866
3925
  ),
3867
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3926
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
3868
3927
  ScPairtext,
3869
3928
  {
3870
- icon: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons42.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
3929
+ icon: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_icons43.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
3871
3930
  iconPosition: "right",
3872
3931
  type: "checkbox",
3873
3932
  className: ScCatalogixInvite_default.scPairtextInstance
3874
3933
  }
3875
3934
  ),
3876
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3935
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
3877
3936
  ScPairtext,
3878
3937
  {
3879
- icon: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons42.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
3938
+ icon: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_icons43.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
3880
3939
  iconPosition: "right",
3881
3940
  type: "checkbox",
3882
3941
  className: ScCatalogixInvite_default.scPairtextInstance
@@ -3890,7 +3949,7 @@ var ScCatalogixInvite = ({
3890
3949
  };
3891
3950
 
3892
3951
  // src/SC-appField/ScAppField.tsx
3893
- var import_jsx_runtime50 = require("react/jsx-runtime");
3952
+ var import_jsx_runtime51 = require("react/jsx-runtime");
3894
3953
  var ScAppField = ({
3895
3954
  appFieldTitle = "App permission",
3896
3955
  className,
@@ -3907,13 +3966,13 @@ var ScAppField = ({
3907
3966
  onCatalogixSearchChange,
3908
3967
  ...props
3909
3968
  }) => {
3910
- return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: ScAppField_default.scAppField + " " + className, ...props, children: [
3911
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("div", { className: ScAppField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: ScAppField_default.title, children: [
3969
+ return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("div", { className: ScAppField_default.scAppField + " " + className, ...props, children: [
3970
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("div", { className: ScAppField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("div", { className: ScAppField_default.title, children: [
3912
3971
  appFieldTitle,
3913
3972
  " "
3914
3973
  ] }) }),
3915
- /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: ScAppField_default.inputContainer, children: [
3916
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
3974
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("div", { className: ScAppField_default.inputContainer, children: [
3975
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
3917
3976
  ScArtifaxInvite,
3918
3977
  {
3919
3978
  enabled: artifaxEnabled,
@@ -3921,18 +3980,18 @@ var ScAppField = ({
3921
3980
  className: ScAppField_default.scArtifaxInviteInstance
3922
3981
  }
3923
3982
  ),
3924
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
3983
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
3925
3984
  ScPhtogenixInvite,
3926
3985
  {
3927
3986
  enabled: photogenixEnabled,
3928
3987
  onToggle: onPhotogenixToggle,
3929
3988
  scAppCardappDescription: "Info about photogenix",
3930
3989
  scAppCardappName: "Photogenix",
3931
- scAppCardappIcon: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_icons43.SiconPhotogenix, { className: ScAppField_default.siconPhotogenixInstance }),
3990
+ scAppCardappIcon: /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(import_icons44.SiconPhotogenix, { className: ScAppField_default.siconPhotogenixInstance }),
3932
3991
  className: ScAppField_default.scPhtogenixInviteInstance
3933
3992
  }
3934
3993
  ),
3935
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
3994
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
3936
3995
  ScCatalogixInvite,
3937
3996
  {
3938
3997
  enabled: catalogixEnabled,
@@ -3959,13 +4018,13 @@ var ScBillingHistoryHeader_default = {
3959
4018
  };
3960
4019
 
3961
4020
  // src/SC-billingHistoryHeader/ScBillingHistoryHeader.tsx
3962
- var import_jsx_runtime51 = require("react/jsx-runtime");
4021
+ var import_jsx_runtime52 = require("react/jsx-runtime");
3963
4022
  var ScBillingHistoryHeader = ({
3964
4023
  className,
3965
4024
  ...props
3966
4025
  }) => {
3967
- return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
3968
- /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
4026
+ return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
4027
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
3969
4028
  ScHeader,
3970
4029
  {
3971
4030
  text: "Invoice",
@@ -3973,7 +4032,7 @@ var ScBillingHistoryHeader = ({
3973
4032
  className: ScBillingHistoryHeader_default.scHeaderInstance
3974
4033
  }
3975
4034
  ),
3976
- /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
4035
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
3977
4036
  ScHeader,
3978
4037
  {
3979
4038
  text: "Amount",
@@ -3981,7 +4040,7 @@ var ScBillingHistoryHeader = ({
3981
4040
  className: ScBillingHistoryHeader_default.scHeaderInstance2
3982
4041
  }
3983
4042
  ),
3984
- /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
4043
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
3985
4044
  ScHeader,
3986
4045
  {
3987
4046
  text: "Date",
@@ -3989,7 +4048,7 @@ var ScBillingHistoryHeader = ({
3989
4048
  className: ScBillingHistoryHeader_default.scHeaderInstance2
3990
4049
  }
3991
4050
  ),
3992
- /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
4051
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
3993
4052
  ScHeader,
3994
4053
  {
3995
4054
  text: "Action",
@@ -4010,20 +4069,20 @@ var ScCheckField_default = {
4010
4069
  };
4011
4070
 
4012
4071
  // src/SC-checkField/ScCheckField.tsx
4013
- var import_icons44 = require("@streamoid/icons");
4014
- var import_jsx_runtime52 = require("react/jsx-runtime");
4072
+ var import_icons45 = require("@streamoid/icons");
4073
+ var import_jsx_runtime53 = require("react/jsx-runtime");
4015
4074
  var ScCheckField = ({
4016
4075
  label = "Label",
4017
4076
  className,
4018
4077
  checkboxes,
4019
4078
  ...props
4020
4079
  }) => {
4021
- return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)("div", { className: ScCheckField_default.scCheckField + " " + className, ...props, children: [
4022
- /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("div", { className: ScCheckField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)("div", { className: ScCheckField_default.label, children: [
4080
+ return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: ScCheckField_default.scCheckField + " " + className, ...props, children: [
4081
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: ScCheckField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: ScCheckField_default.label, children: [
4023
4082
  label,
4024
4083
  " "
4025
4084
  ] }) }),
4026
- /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("div", { className: ScCheckField_default.tabSwitcher, children: checkboxes ? checkboxes.map((item, i) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
4085
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: ScCheckField_default.tabSwitcher, children: checkboxes ? checkboxes.map((item, i) => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
4027
4086
  ScPairtext,
4028
4087
  {
4029
4088
  content: item.label,
@@ -4033,19 +4092,19 @@ var ScCheckField = ({
4033
4092
  className: ScCheckField_default.scPairtextInstance
4034
4093
  },
4035
4094
  i
4036
- )) : /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(import_jsx_runtime52.Fragment, { children: [
4037
- /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
4095
+ )) : /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(import_jsx_runtime53.Fragment, { children: [
4096
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
4038
4097
  ScPairtext,
4039
4098
  {
4040
- icon: /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(import_icons44.SiconHome, { className: ScCheckField_default.siconHomeInstance }),
4099
+ icon: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_icons45.SiconHome, { className: ScCheckField_default.siconHomeInstance }),
4041
4100
  type: "checkbox",
4042
4101
  className: ScCheckField_default.scPairtextInstance
4043
4102
  }
4044
4103
  ),
4045
- /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
4104
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
4046
4105
  ScPairtext,
4047
4106
  {
4048
- icon: /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(import_icons44.SiconHome, { className: ScCheckField_default.siconHomeInstance }),
4107
+ icon: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_icons45.SiconHome, { className: ScCheckField_default.siconHomeInstance }),
4049
4108
  type: "checkbox",
4050
4109
  className: ScCheckField_default.scPairtextInstance
4051
4110
  }
@@ -4065,10 +4124,10 @@ var ScFieldButton_default = {
4065
4124
  };
4066
4125
 
4067
4126
  // src/SC-fieldButton/ScFieldButton.tsx
4068
- var import_icons45 = require("@streamoid/icons");
4069
- var import_jsx_runtime53 = require("react/jsx-runtime");
4127
+ var import_icons46 = require("@streamoid/icons");
4128
+ var import_jsx_runtime54 = require("react/jsx-runtime");
4070
4129
  var ScFieldButton = ({
4071
- icon = /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_icons45.SiconHome, { className: ScFieldButton_default.siconHomeInstance }),
4130
+ icon = /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_icons46.SiconHome, { className: ScFieldButton_default.siconHomeInstance }),
4072
4131
  type = "default",
4073
4132
  state = "default",
4074
4133
  className,
@@ -4076,18 +4135,18 @@ var ScFieldButton = ({
4076
4135
  ...props
4077
4136
  }) => {
4078
4137
  const variantsClassName = ScFieldButton_default["type-" + type] + " " + ScFieldButton_default["state-" + state];
4079
- return /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
4138
+ return /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
4080
4139
  "div",
4081
4140
  {
4082
4141
  className: ScFieldButton_default.scFieldButton + " " + className + " " + variantsClassName,
4083
4142
  ...props,
4084
- children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: ScFieldButton_default.container, children: [
4085
- (type === "icon-right" || type === "only-icon") && /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_jsx_runtime53.Fragment, { children: icon }),
4086
- (type === "icon-left" || type === "default" || type === "icon-right") && /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_jsx_runtime53.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: ScFieldButton_default.label, children: [
4143
+ children: /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)("div", { className: ScFieldButton_default.container, children: [
4144
+ (type === "icon-right" || type === "only-icon") && /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_jsx_runtime54.Fragment, { children: icon }),
4145
+ (type === "icon-left" || type === "default" || type === "icon-right") && /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_jsx_runtime54.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)("div", { className: ScFieldButton_default.label, children: [
4087
4146
  text,
4088
4147
  " "
4089
4148
  ] }) }),
4090
- type === "icon-left" && /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_jsx_runtime53.Fragment, { children: icon })
4149
+ type === "icon-left" && /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_jsx_runtime54.Fragment, { children: icon })
4091
4150
  ] })
4092
4151
  }
4093
4152
  );
@@ -4101,17 +4160,17 @@ var ScPendingAction_default = {
4101
4160
  };
4102
4161
 
4103
4162
  // src/SC-pendingAction/ScPendingAction.tsx
4104
- var import_icons46 = require("@streamoid/icons");
4105
- var import_jsx_runtime54 = require("react/jsx-runtime");
4163
+ var import_icons47 = require("@streamoid/icons");
4164
+ var import_jsx_runtime55 = require("react/jsx-runtime");
4106
4165
  var ScPendingAction = ({
4107
4166
  className,
4108
4167
  ...props
4109
4168
  }) => {
4110
- return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
4111
- /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
4169
+ return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
4170
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
4112
4171
  ScButton,
4113
4172
  {
4114
- icon: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_icons46.SiconHome, { className: ScPendingAction_default.siconHomeInstance }),
4173
+ icon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons47.SiconHome, { className: ScPendingAction_default.siconHomeInstance }),
4115
4174
  text: "Cancel",
4116
4175
  variant: "error",
4117
4176
  type: "tertiary",
@@ -4119,11 +4178,11 @@ var ScPendingAction = ({
4119
4178
  className: ScPendingAction_default.scButtonInstance
4120
4179
  }
4121
4180
  ),
4122
- /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(ScVDivider, { className: ScPendingAction_default.scVDividerInstance }),
4123
- /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
4181
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(ScVDivider, { className: ScPendingAction_default.scVDividerInstance }),
4182
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
4124
4183
  ScButton,
4125
4184
  {
4126
- icon: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_icons46.SiconHome, { className: ScPendingAction_default.siconHomeInstance }),
4185
+ icon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons47.SiconHome, { className: ScPendingAction_default.siconHomeInstance }),
4127
4186
  text: "Resend",
4128
4187
  variant: "tertiary",
4129
4188
  size: "sm",
@@ -4146,8 +4205,8 @@ var ScQuickPrompt_default = {
4146
4205
  };
4147
4206
 
4148
4207
  // src/SC-quick prompt/ScQuickPrompt.tsx
4149
- var import_icons47 = require("@streamoid/icons");
4150
- var import_jsx_runtime55 = require("react/jsx-runtime");
4208
+ var import_icons48 = require("@streamoid/icons");
4209
+ var import_jsx_runtime56 = require("react/jsx-runtime");
4151
4210
  var ScQuickPrompt = ({
4152
4211
  appName = "Photogenix",
4153
4212
  heading = "Swap Model and Background",
@@ -4155,20 +4214,20 @@ var ScQuickPrompt = ({
4155
4214
  className,
4156
4215
  ...props
4157
4216
  }) => {
4158
- return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScQuickPrompt_default.scQuickPrompt + " " + className, ...props, children: [
4159
- /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScQuickPrompt_default.header, children: [
4160
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("div", { className: ScQuickPrompt_default.iconContainer, children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons47.SiconBolt, { className: ScQuickPrompt_default.siconBoltInstance }) }),
4161
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("div", { className: ScQuickPrompt_default.titleContainer, children: /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScQuickPrompt_default.title, children: [
4217
+ return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScQuickPrompt_default.scQuickPrompt + " " + className, ...props, children: [
4218
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScQuickPrompt_default.header, children: [
4219
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: ScQuickPrompt_default.iconContainer, children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(import_icons48.SiconBolt, { className: ScQuickPrompt_default.siconBoltInstance }) }),
4220
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: ScQuickPrompt_default.titleContainer, children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScQuickPrompt_default.title, children: [
4162
4221
  appName,
4163
4222
  " "
4164
4223
  ] }) })
4165
4224
  ] }),
4166
- /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScQuickPrompt_default.body, children: [
4167
- /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScQuickPrompt_default.heading, children: [
4225
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScQuickPrompt_default.body, children: [
4226
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScQuickPrompt_default.heading, children: [
4168
4227
  heading,
4169
4228
  " "
4170
4229
  ] }),
4171
- /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScQuickPrompt_default.description, children: [
4230
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScQuickPrompt_default.description, children: [
4172
4231
  description,
4173
4232
  " "
4174
4233
  ] })
@@ -4185,13 +4244,13 @@ var ScReferralTableHeader_default = {
4185
4244
  };
4186
4245
 
4187
4246
  // src/SC-referralTableHeader/ScReferralTableHeader.tsx
4188
- var import_jsx_runtime56 = require("react/jsx-runtime");
4247
+ var import_jsx_runtime57 = require("react/jsx-runtime");
4189
4248
  var ScReferralTableHeader = ({
4190
4249
  className,
4191
4250
  ...props
4192
4251
  }) => {
4193
- return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
4194
- /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
4252
+ return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
4253
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
4195
4254
  ScHeader,
4196
4255
  {
4197
4256
  text: "User",
@@ -4199,7 +4258,7 @@ var ScReferralTableHeader = ({
4199
4258
  className: ScReferralTableHeader_default.scHeaderInstance
4200
4259
  }
4201
4260
  ),
4202
- /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
4261
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
4203
4262
  ScHeader,
4204
4263
  {
4205
4264
  text: "Date",
@@ -4207,7 +4266,7 @@ var ScReferralTableHeader = ({
4207
4266
  className: ScReferralTableHeader_default.scHeaderInstance2
4208
4267
  }
4209
4268
  ),
4210
- /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
4269
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
4211
4270
  ScHeader,
4212
4271
  {
4213
4272
  text: "Status",
@@ -4215,7 +4274,7 @@ var ScReferralTableHeader = ({
4215
4274
  className: ScReferralTableHeader_default.scHeaderInstance3
4216
4275
  }
4217
4276
  ),
4218
- /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
4277
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
4219
4278
  ScHeader,
4220
4279
  {
4221
4280
  text: "Reward",
@@ -4236,7 +4295,7 @@ var ScReferralTableList_default = {
4236
4295
  };
4237
4296
 
4238
4297
  // src/SC-referralTableList/ScReferralTableList.tsx
4239
- var import_jsx_runtime57 = require("react/jsx-runtime");
4298
+ var import_jsx_runtime58 = require("react/jsx-runtime");
4240
4299
  var ScReferralTableList = ({
4241
4300
  userEmail = "chris@kepler.com",
4242
4301
  userName,
@@ -4246,8 +4305,8 @@ var ScReferralTableList = ({
4246
4305
  className,
4247
4306
  ...props
4248
4307
  }) => {
4249
- return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
4250
- /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
4308
+ return /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
4309
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4251
4310
  ScProfile,
4252
4311
  {
4253
4312
  subText: userEmail,
@@ -4255,12 +4314,12 @@ var ScReferralTableList = ({
4255
4314
  className: ScReferralTableList_default.scProfileInstance
4256
4315
  }
4257
4316
  ),
4258
- /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: ScReferralTableList_default.date, children: [
4317
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: ScReferralTableList_default.date, children: [
4259
4318
  date,
4260
4319
  " "
4261
4320
  ] }),
4262
- /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(ScBadges, { text: status, className: ScReferralTableList_default.scBadgesInstance }),
4263
- /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: ScReferralTableList_default.points, children: [
4321
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(ScBadges, { text: status, className: ScReferralTableList_default.scBadgesInstance }),
4322
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: ScReferralTableList_default.points, children: [
4264
4323
  points,
4265
4324
  " "
4266
4325
  ] })
@@ -4274,35 +4333,35 @@ var ScSettingsNav_default = {
4274
4333
  };
4275
4334
 
4276
4335
  // src/SC-settingsNav/ScSettingsNav.tsx
4277
- var import_icons48 = require("@streamoid/icons");
4278
4336
  var import_icons49 = require("@streamoid/icons");
4279
- var import_jsx_runtime58 = require("react/jsx-runtime");
4337
+ var import_icons50 = require("@streamoid/icons");
4338
+ var import_jsx_runtime59 = require("react/jsx-runtime");
4280
4339
  var ScSettingsNav = ({
4281
4340
  className,
4282
4341
  ...props
4283
4342
  }) => {
4284
- return /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("div", { className: ScSettingsNav_default.scSettingsNav + " " + className, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: ScSettingsNav_default.container, children: [
4285
- /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4343
+ return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { className: ScSettingsNav_default.scSettingsNav + " " + className, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: ScSettingsNav_default.container, children: [
4344
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
4286
4345
  ScSidebarMenu,
4287
4346
  {
4288
- icon: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons48.SiconTeam, { className: ScSettingsNav_default.siconTeamInstance }),
4347
+ icon: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_icons49.SiconTeam, { className: ScSettingsNav_default.siconTeamInstance }),
4289
4348
  text: "Profile",
4290
4349
  state: "active",
4291
4350
  className: ScSettingsNav_default.scSidebarMenuInstance
4292
4351
  }
4293
4352
  ),
4294
- /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4353
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
4295
4354
  ScSidebarMenu,
4296
4355
  {
4297
- icon: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons49.SiconWorkspace, { className: ScSettingsNav_default.siconWorkspaceInstance }),
4356
+ icon: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_icons50.SiconWorkspace, { className: ScSettingsNav_default.siconWorkspaceInstance }),
4298
4357
  text: "Workspace",
4299
4358
  className: ScSettingsNav_default.scSidebarMenuInstance
4300
4359
  }
4301
4360
  ),
4302
- /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4361
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
4303
4362
  ScSidebarMenu,
4304
4363
  {
4305
- icon: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons49.SiconReferral, { className: ScSettingsNav_default.siconReferralInstance }),
4364
+ icon: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_icons50.SiconReferral, { className: ScSettingsNav_default.siconReferralInstance }),
4306
4365
  text: "Referral",
4307
4366
  className: ScSettingsNav_default.scSidebarMenuInstance
4308
4367
  }
@@ -4318,7 +4377,7 @@ var ScTabField_default = {
4318
4377
  };
4319
4378
 
4320
4379
  // src/SC-tabField/ScTabField.tsx
4321
- var import_jsx_runtime59 = require("react/jsx-runtime");
4380
+ var import_jsx_runtime60 = require("react/jsx-runtime");
4322
4381
  var ScTabField = ({
4323
4382
  label = "Label",
4324
4383
  className,
@@ -4327,17 +4386,17 @@ var ScTabField = ({
4327
4386
  onTabChange,
4328
4387
  ...props
4329
4388
  }) => {
4330
- return /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: ScTabField_default.scTabField + " " + className, children: [
4331
- /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { className: ScTabField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: ScTabField_default.label, children: [
4389
+ return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)("div", { className: ScTabField_default.scTabField + " " + className, children: [
4390
+ /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("div", { className: ScTabField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)("div", { className: ScTabField_default.label, children: [
4332
4391
  label,
4333
4392
  " "
4334
4393
  ] }) }),
4335
- tabs ? /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
4394
+ tabs ? /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4336
4395
  ScTabSwitcher,
4337
4396
  {
4338
4397
  tabCount: String(tabs.length),
4339
4398
  className: ScTabField_default.scTabSwitcherInstance,
4340
- component: tabs[0] ? /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
4399
+ component: tabs[0] ? /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4341
4400
  ScTabComp,
4342
4401
  {
4343
4402
  text: tabs[0].label,
@@ -4347,7 +4406,7 @@ var ScTabField = ({
4347
4406
  style: { flex: 1 }
4348
4407
  }
4349
4408
  ) : void 0,
4350
- component2: tabs[1] ? /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
4409
+ component2: tabs[1] ? /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4351
4410
  ScTabComp,
4352
4411
  {
4353
4412
  text: tabs[1].label,
@@ -4358,7 +4417,7 @@ var ScTabField = ({
4358
4417
  }
4359
4418
  ) : void 0
4360
4419
  }
4361
- ) : /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(ScTabSwitcher, { className: ScTabField_default.scTabSwitcherInstance })
4420
+ ) : /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(ScTabSwitcher, { className: ScTabField_default.scTabSwitcherInstance })
4362
4421
  ] });
4363
4422
  };
4364
4423
 
@@ -4375,19 +4434,19 @@ var ScTableHeader_default = {
4375
4434
  };
4376
4435
 
4377
4436
  // src/SC-tableHeader/ScTableHeader.tsx
4378
- var import_jsx_runtime60 = require("react/jsx-runtime");
4437
+ var import_jsx_runtime61 = require("react/jsx-runtime");
4379
4438
  var ScTableHeader = ({
4380
4439
  type = "default",
4381
4440
  className,
4382
4441
  ...props
4383
4442
  }) => {
4384
4443
  const variantsClassName = ScTableHeader_default["type-" + type];
4385
- return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)(
4444
+ return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
4386
4445
  "div",
4387
4446
  {
4388
4447
  className: ScTableHeader_default.scTableHeader + " " + className + " " + variantsClassName,
4389
4448
  children: [
4390
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4449
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4391
4450
  ScHeader,
4392
4451
  {
4393
4452
  text: "User",
@@ -4395,7 +4454,7 @@ var ScTableHeader = ({
4395
4454
  className: ScTableHeader_default.scHeaderInstance
4396
4455
  }
4397
4456
  ),
4398
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4457
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4399
4458
  ScHeader,
4400
4459
  {
4401
4460
  text: "Role",
@@ -4403,7 +4462,7 @@ var ScTableHeader = ({
4403
4462
  className: ScTableHeader_default.scHeaderInstance2
4404
4463
  }
4405
4464
  ),
4406
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4465
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4407
4466
  ScHeader,
4408
4467
  {
4409
4468
  text: "Access",
@@ -4411,7 +4470,7 @@ var ScTableHeader = ({
4411
4470
  className: ScTableHeader_default.scHeaderInstance3
4412
4471
  }
4413
4472
  ),
4414
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4473
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4415
4474
  ScHeader,
4416
4475
  {
4417
4476
  text: "Invited by",
@@ -4419,7 +4478,7 @@ var ScTableHeader = ({
4419
4478
  className: ScTableHeader_default.scHeaderInstance4
4420
4479
  }
4421
4480
  ),
4422
- type === "pending" && /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(import_jsx_runtime60.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4481
+ type === "pending" && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_jsx_runtime61.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4423
4482
  ScHeader,
4424
4483
  {
4425
4484
  text: "Invite action",
@@ -4427,7 +4486,7 @@ var ScTableHeader = ({
4427
4486
  className: ScTableHeader_default.scHeaderInstance5
4428
4487
  }
4429
4488
  ) }),
4430
- type === "default" && /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(import_jsx_runtime60.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4489
+ type === "default" && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_jsx_runtime61.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4431
4490
  ScHeader,
4432
4491
  {
4433
4492
  text: "Signed On",
@@ -4459,9 +4518,9 @@ var ScTableList_default = {
4459
4518
  };
4460
4519
 
4461
4520
  // src/SC-tableList/ScTableList.tsx
4462
- var import_icons50 = require("@streamoid/icons");
4463
4521
  var import_icons51 = require("@streamoid/icons");
4464
- var import_jsx_runtime61 = require("react/jsx-runtime");
4522
+ var import_icons52 = require("@streamoid/icons");
4523
+ var import_jsx_runtime62 = require("react/jsx-runtime");
4465
4524
  var ScTableList = ({
4466
4525
  invitedBy = "Rohan",
4467
4526
  signedOn = "Nov 9th, 2025",
@@ -4473,51 +4532,51 @@ var ScTableList = ({
4473
4532
  ...props
4474
4533
  }) => {
4475
4534
  const variantsClassName = ScTableList_default["hover-" + hover] + " " + ScTableList_default["variant-" + variant];
4476
- return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
4535
+ return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
4477
4536
  "div",
4478
4537
  {
4479
4538
  className: ScTableList_default.scTableList + " " + className + " " + variantsClassName,
4480
4539
  onClick: (e) => onRowClick && onRowClick(invitedBy, e),
4481
4540
  ...props,
4482
4541
  children: [
4483
- /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4542
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4484
4543
  ScProfile,
4485
4544
  {
4486
4545
  subText: userEmail,
4487
4546
  className: ScTableList_default.scProfileInstance
4488
4547
  }
4489
4548
  ),
4490
- /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(ScRole, { className: ScTableList_default.scRoleInstance }),
4491
- /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScTableList_default.accessInfo, children: [
4492
- /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4549
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(ScRole, { className: ScTableList_default.scRoleInstance }),
4550
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScTableList_default.accessInfo, children: [
4551
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4493
4552
  ScAccess,
4494
4553
  {
4495
- component: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_icons50.SiconArtifacts, { className: ScTableList_default.siconArtifactsInstance }),
4496
- component2: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_icons50.SiconPhotogenix, { className: ScTableList_default.siconPhotogenixInstance }),
4554
+ component: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons51.SiconArtifacts, { className: ScTableList_default.siconArtifactsInstance }),
4555
+ component2: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons51.SiconPhotogenix, { className: ScTableList_default.siconPhotogenixInstance }),
4497
4556
  className: ScTableList_default.scAccessInstance
4498
4557
  }
4499
4558
  ),
4500
- /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4559
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4501
4560
  ScAccess,
4502
4561
  {
4503
- component: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_icons51.SiconUserAdd, { className: ScTableList_default.siconUserAddInstance }),
4504
- component2: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_icons51.SiconCoins, { className: ScTableList_default.siconCoinsInstance }),
4562
+ component: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons52.SiconUserAdd, { className: ScTableList_default.siconUserAddInstance }),
4563
+ component2: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons52.SiconCoins, { className: ScTableList_default.siconCoinsInstance }),
4505
4564
  visibleSiconCatalogix: false,
4506
4565
  className: ScTableList_default.scAccessInstance
4507
4566
  }
4508
4567
  )
4509
4568
  ] }),
4510
- /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScTableList_default.userName, children: [
4569
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScTableList_default.userName, children: [
4511
4570
  invitedBy,
4512
4571
  " "
4513
4572
  ] }),
4514
- variant === "pending" && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_jsx_runtime61.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4573
+ variant === "pending" && /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_jsx_runtime62.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4515
4574
  ScPendingAction,
4516
4575
  {
4517
4576
  className: ScTableList_default.scPendingActionInstance
4518
4577
  }
4519
4578
  ) }),
4520
- variant === "active" && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_jsx_runtime61.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScTableList_default.date, children: [
4579
+ variant === "active" && /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_jsx_runtime62.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScTableList_default.date, children: [
4521
4580
  signedOn,
4522
4581
  " "
4523
4582
  ] }) })
@@ -4546,8 +4605,8 @@ var ScWorkspaceCard_default = {
4546
4605
  };
4547
4606
 
4548
4607
  // src/SC-workspaceCard/ScWorkspaceCard.tsx
4549
- var import_icons52 = require("@streamoid/icons");
4550
- var import_jsx_runtime62 = require("react/jsx-runtime");
4608
+ var import_icons53 = require("@streamoid/icons");
4609
+ var import_jsx_runtime63 = require("react/jsx-runtime");
4551
4610
  var ScWorkspaceCard = ({
4552
4611
  workspaceName = "Stores",
4553
4612
  role = "Admin",
@@ -4557,21 +4616,21 @@ var ScWorkspaceCard = ({
4557
4616
  className,
4558
4617
  ...props
4559
4618
  }) => {
4560
- return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScWorkspaceCard_default.scWorkspaceCard + " " + className, ...props, children: [
4561
- /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScWorkspaceCard_default.workspaceInfo, children: [
4562
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4619
+ return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceCard_default.scWorkspaceCard + " " + className, ...props, children: [
4620
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceCard_default.workspaceInfo, children: [
4621
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4563
4622
  ScIntialProfileCover,
4564
4623
  {
4565
4624
  className: ScWorkspaceCard_default.scIntialProfileCoverInstance
4566
4625
  }
4567
4626
  ),
4568
- /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScWorkspaceCard_default.workspaceName, children: [
4627
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceCard_default.workspaceName, children: [
4569
4628
  workspaceName,
4570
4629
  " "
4571
4630
  ] })
4572
4631
  ] }),
4573
- /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScWorkspaceCard_default.userInfo, children: [
4574
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4632
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceCard_default.userInfo, children: [
4633
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4575
4634
  ScBadges,
4576
4635
  {
4577
4636
  text: role,
@@ -4579,41 +4638,41 @@ var ScWorkspaceCard = ({
4579
4638
  className: ScWorkspaceCard_default.scBadgesInstance
4580
4639
  }
4581
4640
  ),
4582
- /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScWorkspaceCard_default.userDetails, children: [
4583
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4641
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceCard_default.userDetails, children: [
4642
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4584
4643
  ScPairtext,
4585
4644
  {
4586
- icon: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons52.SiconTeam, { className: ScWorkspaceCard_default.siconTeamInstance }),
4645
+ icon: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons53.SiconTeam, { className: ScWorkspaceCard_default.siconTeamInstance }),
4587
4646
  content: userCount,
4588
4647
  className: ScWorkspaceCard_default.scPairtextInstance
4589
4648
  }
4590
4649
  ),
4591
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(ScVDivider, { className: ScWorkspaceCard_default.scVDividerInstance }),
4592
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4650
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(ScVDivider, { className: ScWorkspaceCard_default.scVDividerInstance }),
4651
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4593
4652
  ScPairtext,
4594
4653
  {
4595
- icon: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons52.SiconCrown, { className: ScWorkspaceCard_default.siconCrownInstance }),
4654
+ icon: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons53.SiconCrown, { className: ScWorkspaceCard_default.siconCrownInstance }),
4596
4655
  content: ownerEmail,
4597
4656
  className: ScWorkspaceCard_default.scPairtextInstance
4598
4657
  }
4599
4658
  )
4600
4659
  ] })
4601
4660
  ] }),
4602
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4661
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4603
4662
  ScButton,
4604
4663
  {
4605
- icon: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons52.SiconSwitch, { className: ScWorkspaceCard_default.siconSwitchInstance }),
4664
+ icon: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons53.SiconSwitch, { className: ScWorkspaceCard_default.siconSwitchInstance }),
4606
4665
  text: buttonText,
4607
4666
  state: "disabled",
4608
4667
  variant: "outline",
4609
4668
  className: ScWorkspaceCard_default.scButtonInstance
4610
4669
  }
4611
4670
  ),
4612
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4671
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4613
4672
  ScButton,
4614
4673
  {
4615
4674
  text: "Leave workspace",
4616
- icon: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons52.SiconLogout, { className: ScWorkspaceCard_default.siconLogoutInstance }),
4675
+ icon: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons53.SiconLogout, { className: ScWorkspaceCard_default.siconLogoutInstance }),
4617
4676
  styleVariant: "icon-only",
4618
4677
  variant: "error",
4619
4678
  className: ScWorkspaceCard_default.scButtonInstance2
@@ -4624,7 +4683,7 @@ var ScWorkspaceCard = ({
4624
4683
 
4625
4684
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.tsx
4626
4685
  var import_react8 = require("react");
4627
- var import_icons53 = require("@streamoid/icons");
4686
+ var import_icons54 = require("@streamoid/icons");
4628
4687
 
4629
4688
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.module.css
4630
4689
  var ScWorkspaceSwitchCard_default = {
@@ -4649,7 +4708,7 @@ var ScWorkspaceSwitchCard_default = {
4649
4708
  };
4650
4709
 
4651
4710
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.tsx
4652
- var import_jsx_runtime63 = require("react/jsx-runtime");
4711
+ var import_jsx_runtime64 = require("react/jsx-runtime");
4653
4712
  function ScWorkspaceSwitchCard({
4654
4713
  wsName = "Workspace name is kepler",
4655
4714
  role = "Admin",
@@ -4679,14 +4738,14 @@ function ScWorkspaceSwitchCard({
4679
4738
  ].filter(Boolean).join(" ");
4680
4739
  const dpBg = isCurrent ? "var(--alias-fill-neutral-neutralactive, #313131)" : "var(--alias-fill-neutral-neutralselected, #242424)";
4681
4740
  const roleColorClass = isAdmin ? ScWorkspaceSwitchCard_default.detailValueRole : ScWorkspaceSwitchCard_default.detailValueInfo;
4682
- return /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4741
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
4683
4742
  "div",
4684
4743
  {
4685
4744
  className: cardClass,
4686
4745
  onMouseEnter: () => setInternalHover(true),
4687
4746
  onMouseLeave: () => setInternalHover(false),
4688
- children: /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceSwitchCard_default.wsInfo, children: [
4689
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4747
+ children: /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScWorkspaceSwitchCard_default.wsInfo, children: [
4748
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
4690
4749
  ScDp,
4691
4750
  {
4692
4751
  type: imageUrl ? "image" : "initial",
@@ -4700,26 +4759,26 @@ function ScWorkspaceSwitchCard({
4700
4759
  }
4701
4760
  }
4702
4761
  ),
4703
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceSwitchCard_default.infoCol, children: [
4704
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("p", { className: ScWorkspaceSwitchCard_default.wsName, children: wsName }),
4705
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailsRow, children: [
4706
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
4707
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Role" }),
4708
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: roleColorClass, children: displayRole })
4762
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScWorkspaceSwitchCard_default.infoCol, children: [
4763
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("p", { className: ScWorkspaceSwitchCard_default.wsName, children: wsName }),
4764
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailsRow, children: [
4765
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
4766
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Role" }),
4767
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("span", { className: roleColorClass, children: displayRole })
4709
4768
  ] }),
4710
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
4711
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
4712
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Plan" }),
4713
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: plan })
4769
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
4770
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
4771
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Plan" }),
4772
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: plan })
4714
4773
  ] }),
4715
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
4716
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItemFlex, children: [
4717
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Workspace Owner" }),
4718
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: ownerId })
4774
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
4775
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItemFlex, children: [
4776
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Workspace Owner" }),
4777
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: ownerId })
4719
4778
  ] })
4720
4779
  ] })
4721
4780
  ] }),
4722
- isHover && isOther && /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4781
+ isHover && isOther && /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
4723
4782
  "div",
4724
4783
  {
4725
4784
  onClick: (e) => {
@@ -4727,19 +4786,19 @@ function ScWorkspaceSwitchCard({
4727
4786
  onSwitch?.();
4728
4787
  },
4729
4788
  style: { cursor: "pointer" },
4730
- children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4789
+ children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
4731
4790
  ScButton,
4732
4791
  {
4733
4792
  text: "Switch Workspace",
4734
4793
  variant: "secondary",
4735
4794
  size: "sm",
4736
4795
  styleVariant: "icon-left",
4737
- icon: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons53.SiconSwitch, { className: ScWorkspaceSwitchCard_default.btnIcon })
4796
+ icon: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_icons54.SiconSwitch, { className: ScWorkspaceSwitchCard_default.btnIcon })
4738
4797
  }
4739
4798
  )
4740
4799
  }
4741
4800
  ),
4742
- isHover && isAdmin && /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4801
+ isHover && isAdmin && /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
4743
4802
  "div",
4744
4803
  {
4745
4804
  onClick: (e) => {
@@ -4747,18 +4806,18 @@ function ScWorkspaceSwitchCard({
4747
4806
  onSettings?.();
4748
4807
  },
4749
4808
  style: { cursor: "pointer" },
4750
- children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4809
+ children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
4751
4810
  ScButton,
4752
4811
  {
4753
4812
  styleVariant: "icon-only",
4754
4813
  variant: "outline",
4755
4814
  size: "sm",
4756
- icon: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons53.SiconSettings, { className: ScWorkspaceSwitchCard_default.btnIcon })
4815
+ icon: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_icons54.SiconSettings, { className: ScWorkspaceSwitchCard_default.btnIcon })
4757
4816
  }
4758
4817
  )
4759
4818
  }
4760
4819
  ),
4761
- isHover && !isAdmin && /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4820
+ isHover && !isAdmin && /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
4762
4821
  "div",
4763
4822
  {
4764
4823
  className: ScWorkspaceSwitchCard_default.leaveBtn,
@@ -4766,7 +4825,7 @@ function ScWorkspaceSwitchCard({
4766
4825
  e.stopPropagation();
4767
4826
  onLeave?.();
4768
4827
  },
4769
- children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons53.SiconLogout, { className: ScWorkspaceSwitchCard_default.btnIcon, color: "currentColor" })
4828
+ children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_icons54.SiconLogout, { className: ScWorkspaceSwitchCard_default.btnIcon, color: "currentColor" })
4770
4829
  }
4771
4830
  )
4772
4831
  ] })
@@ -4784,18 +4843,18 @@ var ScRoleMobile_default = {
4784
4843
  };
4785
4844
 
4786
4845
  // src/SC-Role-Mobile/ScRoleMobile.tsx
4787
- var import_jsx_runtime64 = require("react/jsx-runtime");
4846
+ var import_jsx_runtime65 = require("react/jsx-runtime");
4788
4847
  var ScRoleMobile = ({
4789
4848
  role = "admin",
4790
4849
  className,
4791
4850
  ...props
4792
4851
  }) => {
4793
- return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
4852
+ return /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
4794
4853
  "div",
4795
4854
  {
4796
4855
  className: ScRoleMobile_default.scRoleMobile + " " + ScRoleMobile_default["role-" + role] + " " + className,
4797
4856
  ...props,
4798
- children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("p", { className: ScRoleMobile_default.text, children: role === "admin" ? "Admin" : "Member" })
4857
+ children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("p", { className: ScRoleMobile_default.text, children: role === "admin" ? "Admin" : "Member" })
4799
4858
  }
4800
4859
  );
4801
4860
  };
@@ -4812,7 +4871,7 @@ var ScProfileV2Mobile_default = {
4812
4871
  };
4813
4872
 
4814
4873
  // src/SC-Profile-V2-Mobile/ScProfileV2Mobile.tsx
4815
- var import_jsx_runtime65 = require("react/jsx-runtime");
4874
+ var import_jsx_runtime66 = require("react/jsx-runtime");
4816
4875
  var ScProfileV2Mobile = ({
4817
4876
  name = "Chris Hemsworth",
4818
4877
  email = "chris@kepler.com",
@@ -4822,17 +4881,17 @@ var ScProfileV2Mobile = ({
4822
4881
  ...props
4823
4882
  }) => {
4824
4883
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
4825
- const profileImage = /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("div", { className: ScProfileV2Mobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("img", { src: imageUrl, alt: name, className: ScProfileV2Mobile_default.image }) : /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("div", { className: ScProfileV2Mobile_default.initials, children: initials }) });
4826
- return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(
4884
+ const profileImage = /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("div", { className: ScProfileV2Mobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("img", { src: imageUrl, alt: name, className: ScProfileV2Mobile_default.image }) : /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("div", { className: ScProfileV2Mobile_default.initials, children: initials }) });
4885
+ return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
4827
4886
  "div",
4828
4887
  {
4829
4888
  className: ScProfileV2Mobile_default.scProfileV2Mobile + " " + className,
4830
4889
  ...props,
4831
4890
  children: [
4832
4891
  dpPosition === "left" && profileImage,
4833
- /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)("div", { className: ScProfileV2Mobile_default.userInfo, children: [
4834
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("p", { className: ScProfileV2Mobile_default.userName, children: name }),
4835
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("p", { className: ScProfileV2Mobile_default.userEmail, children: email })
4892
+ /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("div", { className: ScProfileV2Mobile_default.userInfo, children: [
4893
+ /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("p", { className: ScProfileV2Mobile_default.userName, children: name }),
4894
+ /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("p", { className: ScProfileV2Mobile_default.userEmail, children: email })
4836
4895
  ] }),
4837
4896
  dpPosition === "right" && profileImage
4838
4897
  ]
@@ -4859,7 +4918,7 @@ var ScTableListMobile_default = {
4859
4918
  };
4860
4919
 
4861
4920
  // src/SC-tableList-mobile/ScTableListMobile.tsx
4862
- var import_jsx_runtime66 = require("react/jsx-runtime");
4921
+ var import_jsx_runtime67 = require("react/jsx-runtime");
4863
4922
  var ScTableListMobile = ({
4864
4923
  name = "Chris Hemsworth",
4865
4924
  email = "chris@kepler.com",
@@ -4872,25 +4931,25 @@ var ScTableListMobile = ({
4872
4931
  ...props
4873
4932
  }) => {
4874
4933
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
4875
- return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
4934
+ return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
4876
4935
  "div",
4877
4936
  {
4878
4937
  className: ScTableListMobile_default.scTableListMobile + " " + className,
4879
4938
  onClick: onRowClick,
4880
4939
  ...props,
4881
4940
  children: [
4882
- /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("div", { className: ScTableListMobile_default.profileRow, children: [
4883
- /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("div", { className: ScTableListMobile_default.userInfo, children: [
4884
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("p", { className: ScTableListMobile_default.userName, children: name }),
4885
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("p", { className: ScTableListMobile_default.userEmail, children: email })
4941
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScTableListMobile_default.profileRow, children: [
4942
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScTableListMobile_default.userInfo, children: [
4943
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("p", { className: ScTableListMobile_default.userName, children: name }),
4944
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("p", { className: ScTableListMobile_default.userEmail, children: email })
4886
4945
  ] }),
4887
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("div", { className: ScTableListMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("img", { src: imageUrl, alt: name, className: ScTableListMobile_default.image }) : /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("div", { className: ScTableListMobile_default.initials, children: initials }) })
4946
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { className: ScTableListMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("img", { src: imageUrl, alt: name, className: ScTableListMobile_default.image }) : /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { className: ScTableListMobile_default.initials, children: initials }) })
4888
4947
  ] }),
4889
- /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("div", { className: ScTableListMobile_default.detailsRow, children: [
4890
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("div", { className: ScTableListMobile_default.roleBadge, children: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("p", { className: ScTableListMobile_default.roleText, children: role }) }),
4891
- /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("div", { className: ScTableListMobile_default.accessInfo, children: [
4892
- accessIcons && accessIcons.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("div", { className: ScTableListMobile_default.accessGroup, children: accessIcons.map((icon, i) => /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) }),
4893
- permissionIcons && permissionIcons.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("div", { className: ScTableListMobile_default.accessGroup, children: permissionIcons.map((icon, i) => /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) })
4948
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScTableListMobile_default.detailsRow, children: [
4949
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { className: ScTableListMobile_default.roleBadge, children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("p", { className: ScTableListMobile_default.roleText, children: role }) }),
4950
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScTableListMobile_default.accessInfo, children: [
4951
+ accessIcons && accessIcons.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { className: ScTableListMobile_default.accessGroup, children: accessIcons.map((icon, i) => /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) }),
4952
+ permissionIcons && permissionIcons.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { className: ScTableListMobile_default.accessGroup, children: permissionIcons.map((icon, i) => /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) })
4894
4953
  ] })
4895
4954
  ] })
4896
4955
  ]
@@ -4918,7 +4977,7 @@ var ScWorkspaceSwitchMobile_default = {
4918
4977
  };
4919
4978
 
4920
4979
  // src/SC-workspaceSwitch-Mobile/ScWorkspaceSwitchMobile.tsx
4921
- var import_jsx_runtime67 = require("react/jsx-runtime");
4980
+ var import_jsx_runtime68 = require("react/jsx-runtime");
4922
4981
  var ScWorkspaceSwitchMobile = ({
4923
4982
  storeName = "Stores",
4924
4983
  initials = "WS",
@@ -4931,24 +4990,24 @@ var ScWorkspaceSwitchMobile = ({
4931
4990
  ...props
4932
4991
  }) => {
4933
4992
  const variant = currentWs ? "current" : "other";
4934
- return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
4993
+ return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
4935
4994
  "div",
4936
4995
  {
4937
4996
  className: ScWorkspaceSwitchMobile_default.scWorkspaceSwitchMobile + " " + ScWorkspaceSwitchMobile_default["variant-" + variant] + " " + className,
4938
4997
  onClick,
4939
4998
  ...props,
4940
4999
  children: [
4941
- /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.workspaceInfo, children: [
4942
- /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.wsNameRow, children: [
4943
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { className: ScWorkspaceSwitchMobile_default.initialsBox, children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: ScWorkspaceSwitchMobile_default.initialsText, children: initials }) }),
4944
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("p", { className: ScWorkspaceSwitchMobile_default.storeName, children: storeName })
5000
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.workspaceInfo, children: [
5001
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.wsNameRow, children: [
5002
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("div", { className: ScWorkspaceSwitchMobile_default.initialsBox, children: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("span", { className: ScWorkspaceSwitchMobile_default.initialsText, children: initials }) }),
5003
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("p", { className: ScWorkspaceSwitchMobile_default.storeName, children: storeName })
4945
5004
  ] }),
4946
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { className: ScWorkspaceSwitchMobile_default.roleBadge, children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("p", { className: ScWorkspaceSwitchMobile_default.roleText, children: role }) })
5005
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("div", { className: ScWorkspaceSwitchMobile_default.roleBadge, children: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("p", { className: ScWorkspaceSwitchMobile_default.roleText, children: role }) })
4947
5006
  ] }),
4948
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { className: ScWorkspaceSwitchMobile_default.divider }),
4949
- /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.ownerRow, children: [
4950
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { className: ScWorkspaceSwitchMobile_default.ownerIconContainer, children: ownerIcon && /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: ScWorkspaceSwitchMobile_default.ownerIcon, children: ownerIcon }) }),
4951
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("p", { className: ScWorkspaceSwitchMobile_default.ownerText, children: ownerId })
5007
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("div", { className: ScWorkspaceSwitchMobile_default.divider }),
5008
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.ownerRow, children: [
5009
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("div", { className: ScWorkspaceSwitchMobile_default.ownerIconContainer, children: ownerIcon && /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("span", { className: ScWorkspaceSwitchMobile_default.ownerIcon, children: ownerIcon }) }),
5010
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("p", { className: ScWorkspaceSwitchMobile_default.ownerText, children: ownerId })
4952
5011
  ] })
4953
5012
  ]
4954
5013
  }
@@ -4975,7 +5034,7 @@ var ScWorkspaceSettingsMobile_default = {
4975
5034
  };
4976
5035
 
4977
5036
  // src/SC-workspaceSettings-Mobile/ScWorkspaceSettingsMobile.tsx
4978
- var import_jsx_runtime68 = require("react/jsx-runtime");
5037
+ var import_jsx_runtime69 = require("react/jsx-runtime");
4979
5038
  var ScWorkspaceSettingsMobile = ({
4980
5039
  storeName = "Stores",
4981
5040
  initials = "WS",
@@ -4990,28 +5049,28 @@ var ScWorkspaceSettingsMobile = ({
4990
5049
  ...props
4991
5050
  }) => {
4992
5051
  const variant = currentWs ? "current" : "other";
4993
- return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
5052
+ return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(
4994
5053
  "div",
4995
5054
  {
4996
5055
  className: ScWorkspaceSettingsMobile_default.scWorkspaceSettingsMobile + " " + ScWorkspaceSettingsMobile_default["variant-" + variant] + " " + className,
4997
5056
  onClick,
4998
5057
  ...props,
4999
5058
  children: [
5000
- /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.workspaceInfo, children: [
5001
- /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.wsNameRow, children: [
5002
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("div", { className: ScWorkspaceSettingsMobile_default.initialsBox, children: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("span", { className: ScWorkspaceSettingsMobile_default.initialsText, children: initials }) }),
5003
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("p", { className: ScWorkspaceSettingsMobile_default.storeName, children: storeName })
5059
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.workspaceInfo, children: [
5060
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.wsNameRow, children: [
5061
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScWorkspaceSettingsMobile_default.initialsBox, children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: ScWorkspaceSettingsMobile_default.initialsText, children: initials }) }),
5062
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("p", { className: ScWorkspaceSettingsMobile_default.storeName, children: storeName })
5004
5063
  ] }),
5005
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("div", { className: ScWorkspaceSettingsMobile_default.roleBadge, children: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("p", { className: ScWorkspaceSettingsMobile_default.roleText, children: role }) })
5064
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScWorkspaceSettingsMobile_default.roleBadge, children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("p", { className: ScWorkspaceSettingsMobile_default.roleText, children: role }) })
5006
5065
  ] }),
5007
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("div", { className: ScWorkspaceSettingsMobile_default.divider }),
5008
- /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
5009
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: ownerIcon && /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("span", { className: ScWorkspaceSettingsMobile_default.icon, children: ownerIcon }) }),
5010
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: ownerId })
5066
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScWorkspaceSettingsMobile_default.divider }),
5067
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
5068
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: ownerIcon && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: ScWorkspaceSettingsMobile_default.icon, children: ownerIcon }) }),
5069
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: ownerId })
5011
5070
  ] }),
5012
- /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
5013
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: teamIcon && /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("span", { className: ScWorkspaceSettingsMobile_default.icon, children: teamIcon }) }),
5014
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: teamCount })
5071
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
5072
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: teamIcon && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: ScWorkspaceSettingsMobile_default.icon, children: teamIcon }) }),
5073
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: teamCount })
5015
5074
  ] })
5016
5075
  ]
5017
5076
  }
@@ -5034,7 +5093,7 @@ var ScMobileTopNav_default = {
5034
5093
  };
5035
5094
 
5036
5095
  // src/SC-MobileTopNav/ScMobileTopNav.tsx
5037
- var import_jsx_runtime69 = require("react/jsx-runtime");
5096
+ var import_jsx_runtime70 = require("react/jsx-runtime");
5038
5097
  var ScMobileTopNav = ({
5039
5098
  type = "home",
5040
5099
  searchIcon = false,
@@ -5057,22 +5116,22 @@ var ScMobileTopNav = ({
5057
5116
  }) => {
5058
5117
  const hasBorder = type === "chat" || type === "inApp";
5059
5118
  const showSearch = type === "inApp" && searchIcon && search;
5060
- return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(
5119
+ return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
5061
5120
  "div",
5062
5121
  {
5063
5122
  className: ScMobileTopNav_default.scMobileTopNav + " " + (hasBorder ? ScMobileTopNav_default.withBorder : "") + " " + className,
5064
5123
  ...props,
5065
5124
  children: [
5066
- type === "home" && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5067
- type === "chat" && /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(import_jsx_runtime69.Fragment, { children: [
5068
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5069
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("p", { className: ScMobileTopNav_default.chatTitle, children: chatTitle }),
5070
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMoreClick, children: moreIcon || /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
5125
+ type === "home" && /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5126
+ type === "chat" && /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(import_jsx_runtime70.Fragment, { children: [
5127
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5128
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("p", { className: ScMobileTopNav_default.chatTitle, children: chatTitle }),
5129
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMoreClick, children: moreIcon || /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
5071
5130
  ] }),
5072
- showSearch && /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(import_jsx_runtime69.Fragment, { children: [
5073
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScMobileTopNav_default.searchRow, children: /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScMobileTopNav_default.searchInputContainer, children: [
5074
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onSearchClick, children: searchIconElement || /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5075
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScMobileTopNav_default.searchInput, children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5131
+ showSearch && /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(import_jsx_runtime70.Fragment, { children: [
5132
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: ScMobileTopNav_default.searchRow, children: /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)("div", { className: ScMobileTopNav_default.searchInputContainer, children: [
5133
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onSearchClick, children: searchIconElement || /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5134
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: ScMobileTopNav_default.searchInput, children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
5076
5135
  "input",
5077
5136
  {
5078
5137
  type: "text",
@@ -5083,17 +5142,17 @@ var ScMobileTopNav = ({
5083
5142
  }
5084
5143
  ) })
5085
5144
  ] }) }),
5086
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onCloseClick, children: closeIcon || /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
5145
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onCloseClick, children: closeIcon || /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
5087
5146
  ] }),
5088
- type === "inApp" && !search && /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(import_jsx_runtime69.Fragment, { children: [
5089
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5090
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("p", { className: ScMobileTopNav_default.heading, children: heading }),
5091
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5147
+ type === "inApp" && !search && /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(import_jsx_runtime70.Fragment, { children: [
5148
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5149
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("p", { className: ScMobileTopNav_default.heading, children: heading }),
5150
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
5092
5151
  "div",
5093
5152
  {
5094
5153
  className: ScMobileTopNav_default.iconContainer + " " + (!searchIcon ? ScMobileTopNav_default.hidden : ""),
5095
5154
  onClick: onSearchClick,
5096
- children: searchIcon ? searchIconElement || /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) : /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder })
5155
+ children: searchIcon ? searchIconElement || /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) : /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder })
5097
5156
  }
5098
5157
  )
5099
5158
  ] })
@@ -5105,34 +5164,52 @@ var ScMobileTopNav = ({
5105
5164
  // src/SC-MobileBottomAction/ScMobileBottomAction.module.css
5106
5165
  var ScMobileBottomAction_default = {
5107
5166
  scMobileBottomAction: "ScMobileBottomAction_scMobileBottomAction",
5167
+ twoButton: "ScMobileBottomAction_twoButton",
5108
5168
  button: "ScMobileBottomAction_button",
5169
+ outlineButton: "ScMobileBottomAction_outlineButton",
5109
5170
  disabled: "ScMobileBottomAction_disabled",
5110
- buttonText: "ScMobileBottomAction_buttonText"
5171
+ buttonText: "ScMobileBottomAction_buttonText",
5172
+ outlineButtonText: "ScMobileBottomAction_outlineButtonText"
5111
5173
  };
5112
5174
 
5113
5175
  // src/SC-MobileBottomAction/ScMobileBottomAction.tsx
5114
- var import_jsx_runtime70 = require("react/jsx-runtime");
5176
+ var import_jsx_runtime71 = require("react/jsx-runtime");
5115
5177
  var ScMobileBottomAction = ({
5116
5178
  text = "Save Changes",
5117
5179
  disabled = false,
5118
5180
  onClick,
5181
+ secondaryText,
5182
+ secondaryDisabled = false,
5183
+ onSecondaryClick,
5119
5184
  className,
5120
5185
  ...props
5121
5186
  }) => {
5122
- return /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
5187
+ const isTwoButton = !!secondaryText;
5188
+ return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
5123
5189
  "div",
5124
5190
  {
5125
- className: ScMobileBottomAction_default.scMobileBottomAction + " " + className,
5191
+ className: ScMobileBottomAction_default.scMobileBottomAction + (isTwoButton ? " " + ScMobileBottomAction_default.twoButton : "") + " " + className,
5126
5192
  ...props,
5127
- children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
5128
- "button",
5129
- {
5130
- className: ScMobileBottomAction_default.button + " " + (disabled ? ScMobileBottomAction_default.disabled : ""),
5131
- onClick,
5132
- disabled,
5133
- children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("span", { className: ScMobileBottomAction_default.buttonText, children: text })
5134
- }
5135
- )
5193
+ children: [
5194
+ isTwoButton && /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
5195
+ "button",
5196
+ {
5197
+ className: ScMobileBottomAction_default.outlineButton + " " + (secondaryDisabled ? ScMobileBottomAction_default.disabled : ""),
5198
+ onClick: onSecondaryClick,
5199
+ disabled: secondaryDisabled,
5200
+ children: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("span", { className: ScMobileBottomAction_default.outlineButtonText, children: secondaryText })
5201
+ }
5202
+ ),
5203
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
5204
+ "button",
5205
+ {
5206
+ className: ScMobileBottomAction_default.button + " " + (disabled ? ScMobileBottomAction_default.disabled : ""),
5207
+ onClick,
5208
+ disabled,
5209
+ children: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("span", { className: ScMobileBottomAction_default.buttonText, children: text })
5210
+ }
5211
+ )
5212
+ ]
5136
5213
  }
5137
5214
  );
5138
5215
  };
@@ -5147,7 +5224,7 @@ var ScPopUpMenu_default = {
5147
5224
  };
5148
5225
 
5149
5226
  // src/SC-PopUpMenu/ScPopUpMenu.tsx
5150
- var import_jsx_runtime71 = require("react/jsx-runtime");
5227
+ var import_jsx_runtime72 = require("react/jsx-runtime");
5151
5228
  var ScPopUpMenu = ({
5152
5229
  menu = "Options",
5153
5230
  state = "default",
@@ -5156,15 +5233,15 @@ var ScPopUpMenu = ({
5156
5233
  className,
5157
5234
  ...props
5158
5235
  }) => {
5159
- return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
5236
+ return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
5160
5237
  "div",
5161
5238
  {
5162
5239
  className: ScPopUpMenu_default.scPopUpMenu + " " + ScPopUpMenu_default["state-" + state] + " " + className,
5163
5240
  onClick,
5164
5241
  ...props,
5165
5242
  children: [
5166
- icon && /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("span", { className: ScPopUpMenu_default.icon, children: icon }),
5167
- /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("p", { className: ScPopUpMenu_default.menuText, children: menu })
5243
+ icon && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("span", { className: ScPopUpMenu_default.icon, children: icon }),
5244
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScPopUpMenu_default.menuText, children: menu })
5168
5245
  ]
5169
5246
  }
5170
5247
  );
@@ -5190,7 +5267,7 @@ var ScReferralCardMobile_default = {
5190
5267
  };
5191
5268
 
5192
5269
  // src/SC-referralCard-Mobile/ScReferralCardMobile.tsx
5193
- var import_jsx_runtime72 = require("react/jsx-runtime");
5270
+ var import_jsx_runtime73 = require("react/jsx-runtime");
5194
5271
  var ScReferralCardMobile = ({
5195
5272
  name = "Chris Hemsworth",
5196
5273
  email = "chris@kepler.com",
@@ -5203,27 +5280,27 @@ var ScReferralCardMobile = ({
5203
5280
  ...props
5204
5281
  }) => {
5205
5282
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
5206
- return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
5283
+ return /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)(
5207
5284
  "div",
5208
5285
  {
5209
5286
  className: ScReferralCardMobile_default.scReferralCardMobile + " " + className,
5210
5287
  onClick,
5211
5288
  ...props,
5212
5289
  children: [
5213
- /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScReferralCardMobile_default.userRow, children: [
5214
- /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScReferralCardMobile_default.profileSection, children: [
5215
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("div", { className: ScReferralCardMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("img", { src: imageUrl, alt: name, className: ScReferralCardMobile_default.image }) : /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("div", { className: ScReferralCardMobile_default.initials, children: initials }) }),
5216
- /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScReferralCardMobile_default.userInfo, children: [
5217
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScReferralCardMobile_default.userName, children: name }),
5218
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScReferralCardMobile_default.userEmail, children: email })
5290
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScReferralCardMobile_default.userRow, children: [
5291
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScReferralCardMobile_default.profileSection, children: [
5292
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: ScReferralCardMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("img", { src: imageUrl, alt: name, className: ScReferralCardMobile_default.image }) : /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: ScReferralCardMobile_default.initials, children: initials }) }),
5293
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScReferralCardMobile_default.userInfo, children: [
5294
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScReferralCardMobile_default.userName, children: name }),
5295
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScReferralCardMobile_default.userEmail, children: email })
5219
5296
  ] })
5220
5297
  ] }),
5221
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("div", { className: ScReferralCardMobile_default.badge, children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScReferralCardMobile_default.badgeText, children: badge }) })
5298
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: ScReferralCardMobile_default.badge, children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScReferralCardMobile_default.badgeText, children: badge }) })
5222
5299
  ] }),
5223
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("div", { className: ScReferralCardMobile_default.divider }),
5224
- /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScReferralCardMobile_default.detailsRow, children: [
5225
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScReferralCardMobile_default.dateText, children: date }),
5226
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScReferralCardMobile_default.creditsText, children: credits })
5300
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: ScReferralCardMobile_default.divider }),
5301
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScReferralCardMobile_default.detailsRow, children: [
5302
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScReferralCardMobile_default.dateText, children: date }),
5303
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScReferralCardMobile_default.creditsText, children: credits })
5227
5304
  ] })
5228
5305
  ]
5229
5306
  }
@@ -5240,19 +5317,19 @@ var InvoiceHistoryMobile_default = {
5240
5317
  };
5241
5318
 
5242
5319
  // src/SC-InvoiceHistoryMobile/InvoiceHistoryMobile.tsx
5243
- var import_jsx_runtime73 = require("react/jsx-runtime");
5320
+ var import_jsx_runtime74 = require("react/jsx-runtime");
5244
5321
  var InvoiceHistoryMobile = ({
5245
5322
  invoiceId = "# INV-2800-2026",
5246
5323
  date = "Nov 9th, 2025",
5247
5324
  amount = "$320.89",
5248
5325
  className
5249
5326
  }) => {
5250
- return /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: InvoiceHistoryMobile_default.invoiceHistoryMobile + " " + (className ?? ""), children: [
5251
- /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: InvoiceHistoryMobile_default.info, children: [
5252
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: InvoiceHistoryMobile_default.invoiceId, children: invoiceId }),
5253
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: InvoiceHistoryMobile_default.date, children: date })
5327
+ return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: InvoiceHistoryMobile_default.invoiceHistoryMobile + " " + (className ?? ""), children: [
5328
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: InvoiceHistoryMobile_default.info, children: [
5329
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: InvoiceHistoryMobile_default.invoiceId, children: invoiceId }),
5330
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: InvoiceHistoryMobile_default.date, children: date })
5254
5331
  ] }),
5255
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: InvoiceHistoryMobile_default.amount, children: amount })
5332
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: InvoiceHistoryMobile_default.amount, children: amount })
5256
5333
  ] });
5257
5334
  };
5258
5335
 
@@ -5270,7 +5347,7 @@ var UsageHistoryMobile_default = {
5270
5347
  };
5271
5348
 
5272
5349
  // src/SC-UsageHistoryMobile/UsageHistoryMobile.tsx
5273
- var import_jsx_runtime74 = require("react/jsx-runtime");
5350
+ var import_jsx_runtime75 = require("react/jsx-runtime");
5274
5351
  var UsageHistoryMobile = ({
5275
5352
  serviceName = "Artifax Generation",
5276
5353
  credits = "50",
@@ -5279,18 +5356,18 @@ var UsageHistoryMobile = ({
5279
5356
  balance = "84,902",
5280
5357
  className
5281
5358
  }) => {
5282
- return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: UsageHistoryMobile_default.usageHistoryMobile + " " + (className ?? ""), children: [
5283
- /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: UsageHistoryMobile_default.row1, children: [
5284
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("span", { className: UsageHistoryMobile_default.serviceName, children: serviceName }),
5285
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("span", { className: UsageHistoryMobile_default.credits, children: credits })
5359
+ return /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: UsageHistoryMobile_default.usageHistoryMobile + " " + (className ?? ""), children: [
5360
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: UsageHistoryMobile_default.row1, children: [
5361
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { className: UsageHistoryMobile_default.serviceName, children: serviceName }),
5362
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { className: UsageHistoryMobile_default.credits, children: credits })
5286
5363
  ] }),
5287
- /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: UsageHistoryMobile_default.row2, children: [
5288
- /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: UsageHistoryMobile_default.metaLeft, children: [
5289
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("span", { className: UsageHistoryMobile_default.metaText, children: userName }),
5290
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: UsageHistoryMobile_default.divider }),
5291
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("span", { className: UsageHistoryMobile_default.metaText, children: date })
5364
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: UsageHistoryMobile_default.row2, children: [
5365
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: UsageHistoryMobile_default.metaLeft, children: [
5366
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { className: UsageHistoryMobile_default.metaText, children: userName }),
5367
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: UsageHistoryMobile_default.divider }),
5368
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { className: UsageHistoryMobile_default.metaText, children: date })
5292
5369
  ] }),
5293
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("span", { className: UsageHistoryMobile_default.balance, children: balance })
5370
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { className: UsageHistoryMobile_default.balance, children: balance })
5294
5371
  ] })
5295
5372
  ] });
5296
5373
  };
@@ -5314,7 +5391,7 @@ var ScWorkspaceSwitchMobileV2_default = {
5314
5391
  };
5315
5392
 
5316
5393
  // src/SC-WorkspaceSwitchMobile-V2/ScWorkspaceSwitchMobileV2.tsx
5317
- var import_jsx_runtime75 = require("react/jsx-runtime");
5394
+ var import_jsx_runtime76 = require("react/jsx-runtime");
5318
5395
  var ScWorkspaceSwitchMobileV2 = ({
5319
5396
  wsName = "Workspace name is kepler",
5320
5397
  initials = "WS",
@@ -5327,14 +5404,14 @@ var ScWorkspaceSwitchMobileV2 = ({
5327
5404
  className,
5328
5405
  ...props
5329
5406
  }) => {
5330
- return /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
5407
+ return /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
5331
5408
  "div",
5332
5409
  {
5333
5410
  className: ScWorkspaceSwitchMobileV2_default.scWorkspaceSwitchMobileV2 + " " + ScWorkspaceSwitchMobileV2_default["type-" + type] + " " + className,
5334
5411
  onClick,
5335
5412
  ...props,
5336
- children: /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.workspaceInfo, children: [
5337
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dpContainer, children: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
5413
+ children: /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.workspaceInfo, children: [
5414
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dpContainer, children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
5338
5415
  ScDp,
5339
5416
  {
5340
5417
  type: imageUrl ? "image" : "initial",
@@ -5348,14 +5425,14 @@ var ScWorkspaceSwitchMobileV2 = ({
5348
5425
  }
5349
5426
  }
5350
5427
  ) }),
5351
- /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.textContainer, children: [
5352
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("p", { className: ScWorkspaceSwitchMobileV2_default.wsName, children: wsName }),
5353
- /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.userDetails, children: [
5354
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.roleText + (role === "Member" ? " " + ScWorkspaceSwitchMobileV2_default.roleMember : ""), children: role }),
5355
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
5356
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.planText, children: plan }),
5357
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
5358
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.ownerText, children: ownerId })
5428
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.textContainer, children: [
5429
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("p", { className: ScWorkspaceSwitchMobileV2_default.wsName, children: wsName }),
5430
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.userDetails, children: [
5431
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.roleText + (role === "Member" ? " " + ScWorkspaceSwitchMobileV2_default.roleMember : ""), children: role }),
5432
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
5433
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.planText, children: plan }),
5434
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
5435
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.ownerText, children: ownerId })
5359
5436
  ] })
5360
5437
  ] })
5361
5438
  ] })
@@ -5381,8 +5458,8 @@ var ScImageField_default = {
5381
5458
  };
5382
5459
 
5383
5460
  // src/SC-imageField/ScImageField.tsx
5384
- var import_icons54 = require("@streamoid/icons");
5385
- var import_jsx_runtime76 = require("react/jsx-runtime");
5461
+ var import_icons55 = require("@streamoid/icons");
5462
+ var import_jsx_runtime77 = require("react/jsx-runtime");
5386
5463
  var ScImageField = ({
5387
5464
  label = "Label",
5388
5465
  imagePreview,
@@ -5405,8 +5482,8 @@ var ScImageField = ({
5405
5482
  }
5406
5483
  e.target.value = "";
5407
5484
  }
5408
- return /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)("div", { className: ScImageField_default.scImageField + " " + (className ?? ""), children: [
5409
- /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
5485
+ return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)("div", { className: ScImageField_default.scImageField + " " + (className ?? ""), children: [
5486
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
5410
5487
  "input",
5411
5488
  {
5412
5489
  ref: inputRef,
@@ -5416,9 +5493,9 @@ var ScImageField = ({
5416
5493
  onChange: handleChange
5417
5494
  }
5418
5495
  ),
5419
- /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("div", { className: ScImageField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("div", { className: ScImageField_default.label, children: label }) }),
5420
- hasImage ? /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)("div", { className: ScImageField_default.previewArea, children: [
5421
- /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
5496
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("div", { className: ScImageField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("div", { className: ScImageField_default.label, children: label }) }),
5497
+ hasImage ? /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)("div", { className: ScImageField_default.previewArea, children: [
5498
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
5422
5499
  "img",
5423
5500
  {
5424
5501
  className: ScImageField_default.previewImage,
@@ -5426,9 +5503,9 @@ var ScImageField = ({
5426
5503
  alt: "preview"
5427
5504
  }
5428
5505
  ),
5429
- /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("span", { className: ScImageField_default.fileName, children: imageName || "image" }),
5430
- /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
5431
- import_icons54.SiconDelete,
5506
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("span", { className: ScImageField_default.fileName, children: imageName || "image" }),
5507
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
5508
+ import_icons55.SiconDelete,
5432
5509
  {
5433
5510
  className: ScImageField_default.removeIcon,
5434
5511
  color: "var(--alias-text-and-icons-error, #d11a1a)",
@@ -5438,9 +5515,9 @@ var ScImageField = ({
5438
5515
  }
5439
5516
  }
5440
5517
  )
5441
- ] }) : /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)("div", { className: ScImageField_default.uploadArea, onClick: handleClick, children: [
5442
- /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(import_icons54.SiconUpload, { className: ScImageField_default.uploadIcon, color: "var(--alias-text-and-icons-secondary, #dadada)" }),
5443
- /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("span", { className: ScImageField_default.uploadText, children: "Click to upload" })
5518
+ ] }) : /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)("div", { className: ScImageField_default.uploadArea, onClick: handleClick, children: [
5519
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(import_icons55.SiconUpload, { className: ScImageField_default.uploadIcon, color: "var(--alias-text-and-icons-secondary, #dadada)" }),
5520
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("span", { className: ScImageField_default.uploadText, children: "Click to upload" })
5444
5521
  ] })
5445
5522
  ] });
5446
5523
  };
@@ -5454,7 +5531,7 @@ var ScSettingsTabComp_default = {
5454
5531
  };
5455
5532
 
5456
5533
  // src/SC-settingsTabComp/ScSettingsTabComp.tsx
5457
- var import_jsx_runtime77 = require("react/jsx-runtime");
5534
+ var import_jsx_runtime78 = require("react/jsx-runtime");
5458
5535
  var ScSettingsTabComp = ({
5459
5536
  tabName = "Tab",
5460
5537
  active = false,
@@ -5462,12 +5539,12 @@ var ScSettingsTabComp = ({
5462
5539
  className
5463
5540
  }) => {
5464
5541
  const variantsClassName = ScSettingsTabComp_default["active-" + active];
5465
- return /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
5542
+ return /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
5466
5543
  "div",
5467
5544
  {
5468
5545
  className: ScSettingsTabComp_default.scSettingsTabComp + " " + variantsClassName + " " + (className ?? ""),
5469
5546
  onClick,
5470
- children: /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("span", { className: ScSettingsTabComp_default.tabText, children: tabName })
5547
+ children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("span", { className: ScSettingsTabComp_default.tabText, children: tabName })
5471
5548
  }
5472
5549
  );
5473
5550
  };
@@ -5486,8 +5563,8 @@ var ScCreditsUsageCardMobile_default = {
5486
5563
  };
5487
5564
 
5488
5565
  // src/SC-Credits usage card-Mobile/ScCreditsUsageCardMobile.tsx
5489
- var import_icons55 = require("@streamoid/icons");
5490
- var import_jsx_runtime78 = require("react/jsx-runtime");
5566
+ var import_icons56 = require("@streamoid/icons");
5567
+ var import_jsx_runtime79 = require("react/jsx-runtime");
5491
5568
  var ScCreditsUsageCardMobile = ({
5492
5569
  usageLabel = "Credits usage",
5493
5570
  usageText = "8,450 / 30,000",
@@ -5497,23 +5574,23 @@ var ScCreditsUsageCardMobile = ({
5497
5574
  className,
5498
5575
  ...props
5499
5576
  }) => {
5500
- return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: ScCreditsUsageCardMobile_default.scCreditsUsageCardMobile + " " + (className ?? ""), ...props, children: [
5501
- /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: ScCreditsUsageCardMobile_default.header, children: [
5502
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
5503
- import_icons55.SiconCredits,
5577
+ return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: ScCreditsUsageCardMobile_default.scCreditsUsageCardMobile + " " + (className ?? ""), ...props, children: [
5578
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: ScCreditsUsageCardMobile_default.header, children: [
5579
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
5580
+ import_icons56.SiconCredits,
5504
5581
  {
5505
5582
  className: ScCreditsUsageCardMobile_default.headerIcon,
5506
5583
  color: "var(--alias-text-and-icons-tertiary, #9e9e9e)"
5507
5584
  }
5508
5585
  ),
5509
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("span", { className: ScCreditsUsageCardMobile_default.headerLabel, children: usageLabel })
5586
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("span", { className: ScCreditsUsageCardMobile_default.headerLabel, children: usageLabel })
5510
5587
  ] }),
5511
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScCreditsUsageCardMobile_default.divider }),
5512
- /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: ScCreditsUsageCardMobile_default.usageInfo, children: [
5513
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScCreditsUsageCardMobile_default.usageText, children: usageText }),
5514
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScCreditsUsageCardMobile_default.remainingText, children: remainingText })
5588
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: ScCreditsUsageCardMobile_default.divider }),
5589
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: ScCreditsUsageCardMobile_default.usageInfo, children: [
5590
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: ScCreditsUsageCardMobile_default.usageText, children: usageText }),
5591
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: ScCreditsUsageCardMobile_default.remainingText, children: remainingText })
5515
5592
  ] }),
5516
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
5593
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
5517
5594
  ScButton,
5518
5595
  {
5519
5596
  text: buyButtonText,
@@ -5544,8 +5621,8 @@ var ScPlanDetailsCardMobile_default = {
5544
5621
  };
5545
5622
 
5546
5623
  // src/SC-Plan details card-Mobile/ScPlanDetailsCardMobile.tsx
5547
- var import_icons56 = require("@streamoid/icons");
5548
- var import_jsx_runtime79 = require("react/jsx-runtime");
5624
+ var import_icons57 = require("@streamoid/icons");
5625
+ var import_jsx_runtime80 = require("react/jsx-runtime");
5549
5626
  var ScPlanDetailsCardMobile = ({
5550
5627
  planName = "Pro",
5551
5628
  planCredits = "30,000 credits",
@@ -5557,19 +5634,19 @@ var ScPlanDetailsCardMobile = ({
5557
5634
  className,
5558
5635
  ...props
5559
5636
  }) => {
5560
- return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: ScPlanDetailsCardMobile_default.scPlanDetailsCardMobile + " " + (className ?? ""), ...props, children: [
5561
- /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planHeader, children: [
5562
- /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: ScPlanDetailsCardMobile_default.headerLeft, children: [
5563
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
5564
- import_icons56.SiconBilling,
5637
+ return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: ScPlanDetailsCardMobile_default.scPlanDetailsCardMobile + " " + (className ?? ""), ...props, children: [
5638
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planHeader, children: [
5639
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: ScPlanDetailsCardMobile_default.headerLeft, children: [
5640
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
5641
+ import_icons57.SiconBilling,
5565
5642
  {
5566
5643
  className: ScPlanDetailsCardMobile_default.headerIcon,
5567
5644
  color: "var(--alias-text-and-icons-tertiary, #9e9e9e)"
5568
5645
  }
5569
5646
  ),
5570
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("span", { className: ScPlanDetailsCardMobile_default.headerLabel, children: currentPlanLabel })
5647
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: ScPlanDetailsCardMobile_default.headerLabel, children: currentPlanLabel })
5571
5648
  ] }),
5572
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
5649
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
5573
5650
  ScBadges,
5574
5651
  {
5575
5652
  text: badgeText,
@@ -5579,16 +5656,16 @@ var ScPlanDetailsCardMobile = ({
5579
5656
  }
5580
5657
  )
5581
5658
  ] }),
5582
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: ScPlanDetailsCardMobile_default.divider }),
5583
- /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planInfo, children: [
5584
- /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planNameRow, children: [
5585
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("span", { className: ScPlanDetailsCardMobile_default.planName, children: planName }),
5586
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: ScPlanDetailsCardMobile_default.dot }),
5587
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("span", { className: ScPlanDetailsCardMobile_default.planName, children: planCredits })
5659
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("div", { className: ScPlanDetailsCardMobile_default.divider }),
5660
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planInfo, children: [
5661
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planNameRow, children: [
5662
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: ScPlanDetailsCardMobile_default.planName, children: planName }),
5663
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("div", { className: ScPlanDetailsCardMobile_default.dot }),
5664
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: ScPlanDetailsCardMobile_default.planName, children: planCredits })
5588
5665
  ] }),
5589
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: ScPlanDetailsCardMobile_default.planPrice, children: planPrice })
5666
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("div", { className: ScPlanDetailsCardMobile_default.planPrice, children: planPrice })
5590
5667
  ] }),
5591
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
5668
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
5592
5669
  ScButton,
5593
5670
  {
5594
5671
  text: upgradeButtonText,