@streamoid/ui 0.3.0 → 0.3.2

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
  };
@@ -2243,7 +2236,9 @@ var import_icons28 = require("@streamoid/icons");
2243
2236
  var ScSidebarMenu_default = {
2244
2237
  scSidebarMenu: "ScSidebarMenu_scSidebarMenu",
2245
2238
  content: "ScSidebarMenu_content",
2239
+ moreIconWrapper: "ScSidebarMenu_moreIconWrapper",
2246
2240
  "state-active": "ScSidebarMenu_state-active",
2241
+ "state-default-highlight": "ScSidebarMenu_state-default-highlight",
2247
2242
  "state-hover": "ScSidebarMenu_state-hover",
2248
2243
  "variant-collapsed": "ScSidebarMenu_variant-collapsed"
2249
2244
  };
@@ -2257,6 +2252,8 @@ var ScSidebarMenu = ({
2257
2252
  variant = "expanded",
2258
2253
  className,
2259
2254
  text = "Menu Item",
2255
+ moreIcon,
2256
+ onMoreClick,
2260
2257
  ...props
2261
2258
  }) => {
2262
2259
  const variantsClassName = ScSidebarMenu_default["state-" + state] + " " + ScSidebarMenu_default["variant-" + variant];
@@ -2267,10 +2264,20 @@ var ScSidebarMenu = ({
2267
2264
  ...props,
2268
2265
  children: [
2269
2266
  icon,
2270
- variant === "expanded" && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(import_jsx_runtime35.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("div", { className: ScSidebarMenu_default.content, children: [
2271
- text,
2272
- " "
2273
- ] }) })
2267
+ variant === "expanded" && /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(import_jsx_runtime35.Fragment, { children: [
2268
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { className: ScSidebarMenu_default.content, children: text }),
2269
+ moreIcon && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
2270
+ "div",
2271
+ {
2272
+ className: ScSidebarMenu_default.moreIconWrapper,
2273
+ onClick: (e) => {
2274
+ e.stopPropagation();
2275
+ onMoreClick?.(e);
2276
+ },
2277
+ children: moreIcon
2278
+ }
2279
+ )
2280
+ ] })
2274
2281
  ]
2275
2282
  }
2276
2283
  );
@@ -2726,18 +2733,25 @@ function renderMenuItem({
2726
2733
  sectionId,
2727
2734
  expanded,
2728
2735
  activeItemId,
2736
+ highlightedItemIds,
2729
2737
  iconMap,
2730
- onItemSelect
2738
+ onItemSelect,
2739
+ moreIcon,
2740
+ onMoreClick
2731
2741
  }) {
2732
2742
  const active = item.id === activeItemId;
2743
+ const highlighted = highlightedItemIds?.has(item.id) ?? false;
2744
+ const state = active ? "active" : highlighted ? "default-highlight" : "default";
2733
2745
  return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
2734
2746
  ScSidebarMenu,
2735
2747
  {
2736
- icon: resolveIcon(iconMap, item, active, expanded),
2748
+ icon: resolveIcon(iconMap, item, active || highlighted, expanded),
2737
2749
  text: expanded ? item.label : void 0,
2738
- state: active ? "active" : "default",
2750
+ state,
2739
2751
  variant: expanded ? "expanded" : "collapsed",
2740
- onClick: () => onItemSelect?.(item, sectionId)
2752
+ onClick: () => onItemSelect?.(item, sectionId),
2753
+ moreIcon,
2754
+ onMoreClick: onMoreClick ? () => onMoreClick(item, sectionId) : void 0
2741
2755
  },
2742
2756
  item.id
2743
2757
  );
@@ -2748,16 +2762,24 @@ function StreamoidSidebar({
2748
2762
  config,
2749
2763
  iconMap,
2750
2764
  activeItemId,
2765
+ highlightedItemIds,
2751
2766
  onItemSelect,
2767
+ moreIcon,
2768
+ onMoreClick,
2752
2769
  expandedLogo,
2753
2770
  collapsedLogo,
2754
2771
  profile,
2755
2772
  versionText = "v1.0.0",
2756
2773
  toggleIcon,
2757
2774
  hideFooter = false,
2775
+ preFooterContent,
2776
+ bodyContent,
2777
+ showBody = false,
2778
+ isMobile = false,
2758
2779
  className,
2759
2780
  style
2760
2781
  }) {
2782
+ const effectiveHideFooter = hideFooter || isMobile;
2761
2783
  if (expanded) {
2762
2784
  return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
2763
2785
  "div",
@@ -2772,7 +2794,7 @@ function StreamoidSidebar({
2772
2794
  backgroundColor: "var(--alias-surface-base)",
2773
2795
  borderRadius: "var(--radius-3xl)",
2774
2796
  padding: "var(--spacing-md)",
2775
- paddingBottom: hideFooter ? "var(--spacing-md)" : void 0,
2797
+ paddingBottom: effectiveHideFooter ? "var(--spacing-md)" : void 0,
2776
2798
  width: 256,
2777
2799
  gap: "var(--spacing-xxs)"
2778
2800
  },
@@ -2794,23 +2816,44 @@ function StreamoidSidebar({
2794
2816
  className: "flex flex-col flex-1 items-start min-h-0 w-full overflow-y-auto sidebar-scroll",
2795
2817
  style: { gap: "var(--spacing-xxs)" },
2796
2818
  children: [
2797
- expandedLogo,
2798
- config.topItem && /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
2799
- "div",
2800
- {
2801
- className: "flex flex-col items-start shrink-0 w-full",
2802
- style: { padding: "var(--spacing-md) 0" },
2803
- children: renderMenuItem({
2804
- item: config.topItem,
2805
- sectionId: "top",
2806
- expanded: true,
2807
- activeItemId,
2808
- iconMap,
2809
- onItemSelect
2810
- })
2811
- }
2812
- ),
2813
- config.sections.map((section) => /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
2819
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("div", { className: "flex items-center justify-between w-full shrink-0", children: [
2820
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("div", { className: "min-w-0 flex-1", children: expandedLogo }),
2821
+ isMobile ? /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
2822
+ "div",
2823
+ {
2824
+ className: "flex items-center cursor-pointer shrink-0",
2825
+ style: {
2826
+ padding: "var(--spacing-md)",
2827
+ borderRadius: "var(--radius-3xl)"
2828
+ },
2829
+ onClick: onToggle,
2830
+ children: resolveToggleIcon(toggleIcon, true)
2831
+ }
2832
+ ) : null
2833
+ ] }),
2834
+ config.topItem && /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(import_jsx_runtime40.Fragment, { children: [
2835
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(HDivider, {}),
2836
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
2837
+ "div",
2838
+ {
2839
+ className: "flex flex-col items-start shrink-0 w-full",
2840
+ style: { padding: "var(--spacing-md) 0" },
2841
+ children: renderMenuItem({
2842
+ item: config.topItem,
2843
+ sectionId: "top",
2844
+ expanded: true,
2845
+ activeItemId,
2846
+ highlightedItemIds,
2847
+ iconMap,
2848
+ onItemSelect,
2849
+ moreIcon,
2850
+ onMoreClick
2851
+ })
2852
+ }
2853
+ ),
2854
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(HDivider, {})
2855
+ ] }),
2856
+ showBody && bodyContent ? /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("div", { className: "flex flex-col flex-1 min-h-0 w-full overflow-hidden", children: bodyContent }) : /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(import_jsx_runtime40.Fragment, { children: config.sections.map((section) => /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
2814
2857
  "div",
2815
2858
  {
2816
2859
  className: "flex flex-col items-start shrink-0 w-full",
@@ -2833,10 +2876,11 @@ function StreamoidSidebar({
2833
2876
  ]
2834
2877
  },
2835
2878
  section.id
2836
- ))
2879
+ )) })
2837
2880
  ]
2838
2881
  }
2839
2882
  ),
2883
+ preFooterContent,
2840
2884
  config.bottomItems?.length ? /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
2841
2885
  "div",
2842
2886
  {
@@ -2861,8 +2905,7 @@ function StreamoidSidebar({
2861
2905
  {
2862
2906
  className: "flex items-center shrink-0 w-full cursor-pointer",
2863
2907
  style: {
2864
- padding: "var(--spacing-md)",
2865
- marginTop: "var(--spacing-md)",
2908
+ padding: "var(--spacing-md) var(--spacing-xl)",
2866
2909
  gap: "var(--spacing-md)",
2867
2910
  borderRadius: "var(--radius-xl)"
2868
2911
  },
@@ -2896,18 +2939,15 @@ function StreamoidSidebar({
2896
2939
  ]
2897
2940
  }
2898
2941
  ),
2899
- !hideFooter && /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(import_jsx_runtime40.Fragment, { children: [
2900
- /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("div", { style: { marginTop: "var(--spacing-md)" } }),
2901
- /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(HDivider, {})
2902
- ] })
2942
+ !effectiveHideFooter && /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(import_jsx_runtime40.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(HDivider, {}) })
2903
2943
  ] }) : null,
2904
- !hideFooter && /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("div", { className: "shrink-0 w-full", children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
2944
+ !effectiveHideFooter && /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("div", { className: "shrink-0 w-full", children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
2905
2945
  "div",
2906
2946
  {
2907
2947
  className: "flex items-center w-full",
2908
2948
  style: {
2909
2949
  gap: "var(--spacing-xs)",
2910
- padding: "var(--spacing-xs) var(--spacing-xs) var(--spacing-xs) var(--spacing-3xl)"
2950
+ padding: "var(--spacing-xs) var(--spacing-xs) var(--spacing-xs) var(--spacing-xl)"
2911
2951
  },
2912
2952
  children: [
2913
2953
  /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
@@ -2982,14 +3022,17 @@ function StreamoidSidebar({
2982
3022
  sectionId: "top",
2983
3023
  expanded: false,
2984
3024
  activeItemId,
3025
+ highlightedItemIds,
2985
3026
  iconMap,
2986
- onItemSelect
3027
+ onItemSelect,
3028
+ moreIcon,
3029
+ onMoreClick
2987
3030
  })
2988
3031
  }
2989
3032
  ),
2990
3033
  /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(HDivider, {})
2991
3034
  ] }) : null,
2992
- config.sections.map((section, sectionIndex) => /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("div", { className: "flex flex-col items-center w-full", children: [
3035
+ showBody && bodyContent ? /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("div", { className: "flex flex-col items-center w-full", children: bodyContent }) : config.sections.map((section, sectionIndex) => /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("div", { className: "flex flex-col items-center w-full", children: [
2993
3036
  /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
2994
3037
  "div",
2995
3038
  {
@@ -3004,8 +3047,11 @@ function StreamoidSidebar({
3004
3047
  sectionId: section.id,
3005
3048
  expanded: false,
3006
3049
  activeItemId,
3050
+ highlightedItemIds,
3007
3051
  iconMap,
3008
- onItemSelect
3052
+ onItemSelect,
3053
+ moreIcon,
3054
+ onMoreClick
3009
3055
  })
3010
3056
  )
3011
3057
  }
@@ -3015,6 +3061,7 @@ function StreamoidSidebar({
3015
3061
  ]
3016
3062
  }
3017
3063
  ),
3064
+ preFooterContent,
3018
3065
  config.bottomItems?.length ? /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
3019
3066
  "div",
3020
3067
  {
@@ -3026,8 +3073,11 @@ function StreamoidSidebar({
3026
3073
  sectionId: "bottom",
3027
3074
  expanded: false,
3028
3075
  activeItemId,
3076
+ highlightedItemIds,
3029
3077
  iconMap,
3030
- onItemSelect
3078
+ onItemSelect,
3079
+ moreIcon,
3080
+ onMoreClick
3031
3081
  })
3032
3082
  )
3033
3083
  }
@@ -3510,6 +3560,64 @@ var ScAppCard = ({
3510
3560
  ] });
3511
3561
  };
3512
3562
 
3563
+ // src/SC-AppCardV3/ScAppCardV3.module.css
3564
+ var ScAppCardV3_default = {
3565
+ scAppCardV3: "ScAppCardV3_scAppCardV3",
3566
+ cardBorder: "ScAppCardV3_cardBorder",
3567
+ scAppCardV3Active: "ScAppCardV3_scAppCardV3Active",
3568
+ glow: "ScAppCardV3_glow",
3569
+ glowHover: "ScAppCardV3_glowHover",
3570
+ header: "ScAppCardV3_header",
3571
+ iconRow: "ScAppCardV3_iconRow",
3572
+ appName: "ScAppCardV3_appName",
3573
+ iconPill: "ScAppCardV3_iconPill",
3574
+ iconPillBg: "ScAppCardV3_iconPillBg",
3575
+ iconPillShadow: "ScAppCardV3_iconPillShadow",
3576
+ iconPillIcon: "ScAppCardV3_iconPillIcon",
3577
+ description: "ScAppCardV3_description"
3578
+ };
3579
+
3580
+ // src/SC-AppCardV3/ScAppCardV3.tsx
3581
+ var import_icons37 = require("@streamoid/icons");
3582
+ var import_jsx_runtime45 = require("react/jsx-runtime");
3583
+ var ScAppCardV3 = ({
3584
+ appIcon = /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(import_icons37.SiconCart, { className: ScAppCardV3_default.iconPillIcon }),
3585
+ appName = "Stores",
3586
+ description = "Centralized product and asset management for every storefront",
3587
+ active = false,
3588
+ className,
3589
+ style,
3590
+ ...props
3591
+ }) => {
3592
+ const cardClass = [
3593
+ ScAppCardV3_default.scAppCardV3,
3594
+ active ? ScAppCardV3_default.scAppCardV3Active : ""
3595
+ ].filter(Boolean).join(" ");
3596
+ return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
3597
+ "div",
3598
+ {
3599
+ className: [ScAppCardV3_default.cardBorder, className || ""].filter(Boolean).join(" "),
3600
+ style,
3601
+ ...props,
3602
+ children: /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("div", { className: cardClass, children: [
3603
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: ScAppCardV3_default.glow }),
3604
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: ScAppCardV3_default.glowHover }),
3605
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("div", { className: ScAppCardV3_default.header, children: [
3606
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("div", { className: ScAppCardV3_default.iconRow, children: [
3607
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("p", { className: ScAppCardV3_default.appName, children: appName }),
3608
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("div", { className: ScAppCardV3_default.iconPill, children: [
3609
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: ScAppCardV3_default.iconPillBg }),
3610
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: ScAppCardV3_default.iconPillIcon, children: appIcon }),
3611
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: ScAppCardV3_default.iconPillShadow })
3612
+ ] })
3613
+ ] }),
3614
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("p", { className: ScAppCardV3_default.description, children: description })
3615
+ ] })
3616
+ ] })
3617
+ }
3618
+ );
3619
+ };
3620
+
3513
3621
  // src/SC-appField/ScAppField.module.css
3514
3622
  var ScAppField_default = {
3515
3623
  scAppField: "ScAppField_scAppField",
@@ -3530,7 +3638,7 @@ var ScArtifaxInvite_default = {
3530
3638
  };
3531
3639
 
3532
3640
  // src/SC-artifaxInvite/ScArtifaxInvite.tsx
3533
- var import_icons37 = require("@streamoid/icons");
3641
+ var import_icons38 = require("@streamoid/icons");
3534
3642
 
3535
3643
  // src/SC-toggleSwitch/ScToggleSwitch.module.css
3536
3644
  var ScToggleSwitch_default = {
@@ -3541,7 +3649,7 @@ var ScToggleSwitch_default = {
3541
3649
  };
3542
3650
 
3543
3651
  // src/SC-toggleSwitch/ScToggleSwitch.tsx
3544
- var import_jsx_runtime45 = require("react/jsx-runtime");
3652
+ var import_jsx_runtime46 = require("react/jsx-runtime");
3545
3653
  var ScToggleSwitch = ({
3546
3654
  active = "false",
3547
3655
  checked,
@@ -3551,7 +3659,7 @@ var ScToggleSwitch = ({
3551
3659
  }) => {
3552
3660
  const isActive = checked !== void 0 ? checked : active === "true";
3553
3661
  const variantsClassName = ScToggleSwitch_default["active-" + (isActive ? "true" : "false")];
3554
- return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
3662
+ return /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
3555
3663
  "div",
3556
3664
  {
3557
3665
  className: ScToggleSwitch_default.scToggleSwitch + " " + className + " " + variantsClassName,
@@ -3561,20 +3669,20 @@ var ScToggleSwitch = ({
3561
3669
  props.onClick?.(e);
3562
3670
  },
3563
3671
  style: { cursor: "pointer", ...props.style },
3564
- 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: [
3565
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("rect", { width: "40", height: "24", rx: "12", fill: "var(--alias-fill-base-base, #f5f5f5)" }),
3566
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("circle", { cx: "28", cy: "12", r: "10", fill: "var(--alias-text---icons-inverse, #101010)" })
3567
- ] }) : /* @__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: [
3568
- /* @__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)" }),
3569
- /* @__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)" }),
3570
- /* @__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)" })
3672
+ 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: [
3673
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("rect", { width: "40", height: "24", rx: "12", fill: "var(--alias-fill-base-base, #f5f5f5)" }),
3674
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("circle", { cx: "28", cy: "12", r: "10", fill: "var(--alias-text---icons-inverse, #101010)" })
3675
+ ] }) : /* @__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: [
3676
+ /* @__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)" }),
3677
+ /* @__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)" }),
3678
+ /* @__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)" })
3571
3679
  ] })
3572
3680
  }
3573
3681
  );
3574
3682
  };
3575
3683
 
3576
3684
  // src/SC-artifaxInvite/ScArtifaxInvite.tsx
3577
- var import_jsx_runtime46 = require("react/jsx-runtime");
3685
+ var import_jsx_runtime47 = require("react/jsx-runtime");
3578
3686
  var ScArtifaxInvite = ({
3579
3687
  active = "true",
3580
3688
  appName = "Artifax",
@@ -3587,22 +3695,22 @@ var ScArtifaxInvite = ({
3587
3695
  }) => {
3588
3696
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
3589
3697
  const variantsClassName = ScArtifaxInvite_default["active-" + (isEnabled ? "true" : "false")];
3590
- return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
3698
+ return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
3591
3699
  "div",
3592
3700
  {
3593
3701
  className: ScArtifaxInvite_default.scArtifaxInvite + " " + className + " " + variantsClassName,
3594
3702
  ...props,
3595
3703
  children: [
3596
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
3704
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
3597
3705
  ScAppCard,
3598
3706
  {
3599
- appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(import_icons37.SiconArtifacts, { className: ScArtifaxInvite_default.siconArtifactsInstance }),
3707
+ appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(import_icons38.SiconArtifacts, { className: ScArtifaxInvite_default.siconArtifactsInstance }),
3600
3708
  appName,
3601
3709
  appDescription,
3602
3710
  className: ScArtifaxInvite_default.scAppCardInstance
3603
3711
  }
3604
3712
  ),
3605
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
3713
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
3606
3714
  ScToggleSwitch,
3607
3715
  {
3608
3716
  checked: isEnabled,
@@ -3616,7 +3724,7 @@ var ScArtifaxInvite = ({
3616
3724
  };
3617
3725
 
3618
3726
  // src/SC-appField/ScAppField.tsx
3619
- var import_icons43 = require("@streamoid/icons");
3727
+ var import_icons44 = require("@streamoid/icons");
3620
3728
 
3621
3729
  // src/SC-phtogenixInvite/ScPhtogenixInvite.module.css
3622
3730
  var ScPhtogenixInvite_default = {
@@ -3627,13 +3735,13 @@ var ScPhtogenixInvite_default = {
3627
3735
  };
3628
3736
 
3629
3737
  // src/SC-phtogenixInvite/ScPhtogenixInvite.tsx
3630
- var import_icons38 = require("@streamoid/icons");
3631
- var import_jsx_runtime47 = require("react/jsx-runtime");
3738
+ var import_icons39 = require("@streamoid/icons");
3739
+ var import_jsx_runtime48 = require("react/jsx-runtime");
3632
3740
  var ScPhtogenixInvite = ({
3633
3741
  active = "true",
3634
3742
  scAppCardappDescription = "Info about photogenix",
3635
3743
  scAppCardappName = "Photogenix",
3636
- scAppCardappIcon = /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(import_icons38.SiconArtifacts, { className: ScPhtogenixInvite_default.siconArtifactsInstance }),
3744
+ scAppCardappIcon = /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(import_icons39.SiconArtifacts, { className: ScPhtogenixInvite_default.siconArtifactsInstance }),
3637
3745
  className,
3638
3746
  enabled,
3639
3747
  onToggle,
@@ -3641,12 +3749,12 @@ var ScPhtogenixInvite = ({
3641
3749
  }) => {
3642
3750
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
3643
3751
  const variantsClassName = ScPhtogenixInvite_default["active-" + (isEnabled ? "true" : "false")];
3644
- return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
3752
+ return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
3645
3753
  "div",
3646
3754
  {
3647
3755
  className: ScPhtogenixInvite_default.scPhtogenixInvite + " " + className + " " + variantsClassName,
3648
3756
  children: [
3649
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
3757
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
3650
3758
  ScAppCard,
3651
3759
  {
3652
3760
  appIcon: scAppCardappIcon,
@@ -3655,7 +3763,7 @@ var ScPhtogenixInvite = ({
3655
3763
  className: ScPhtogenixInvite_default.scAppCardInstance
3656
3764
  }
3657
3765
  ),
3658
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
3766
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
3659
3767
  ScToggleSwitch,
3660
3768
  {
3661
3769
  checked: isEnabled,
@@ -3685,14 +3793,17 @@ var ScCatalogixInvite_default = {
3685
3793
  };
3686
3794
 
3687
3795
  // src/SC-catalogixInvite/ScCatalogixInvite.tsx
3688
- var import_icons40 = require("@streamoid/icons");
3689
3796
  var import_icons41 = require("@streamoid/icons");
3797
+ var import_icons42 = require("@streamoid/icons");
3690
3798
 
3691
3799
  // src/SC-onlyField/ScOnlyField.module.css
3692
3800
  var ScOnlyField_default = {
3693
3801
  scOnlyField: "ScOnlyField_scOnlyField",
3694
3802
  inputContainer: "ScOnlyField_inputContainer",
3695
3803
  inputText: "ScOnlyField_inputText",
3804
+ iconWrapper: "ScOnlyField_iconWrapper",
3805
+ "size-medium": "ScOnlyField_size-medium",
3806
+ "size-small": "ScOnlyField_size-small",
3696
3807
  "tf-group-icon-left": "ScOnlyField_tf-group-icon-left",
3697
3808
  "tf-group-icon-left-right": "ScOnlyField_tf-group-icon-left-right",
3698
3809
  "state-hover": "ScOnlyField_state-hover",
@@ -3701,14 +3812,15 @@ var ScOnlyField_default = {
3701
3812
  };
3702
3813
 
3703
3814
  // src/SC-onlyField/ScOnlyField.tsx
3704
- var import_icons39 = require("@streamoid/icons");
3705
- var import_jsx_runtime48 = require("react/jsx-runtime");
3815
+ var import_icons40 = require("@streamoid/icons");
3816
+ var import_jsx_runtime49 = require("react/jsx-runtime");
3706
3817
  var ScOnlyField = ({
3707
- tfRightIcon = /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(import_icons39.SiconBolt, { className: ScOnlyField_default.siconBoltInstance }),
3708
- tfLeftIcon = /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(import_icons39.SiconBolt, { className: ScOnlyField_default.siconBoltInstance }),
3818
+ tfRightIcon = /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons40.SiconBolt, { className: ScOnlyField_default.siconBoltInstance }),
3819
+ tfLeftIcon = /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons40.SiconBolt, { className: ScOnlyField_default.siconBoltInstance }),
3709
3820
  state = "default",
3710
3821
  tfGroup = "icon-right",
3711
3822
  labelGroup = "none",
3823
+ size = "default",
3712
3824
  className,
3713
3825
  placeholderFilled = "Placeholder",
3714
3826
  value,
@@ -3716,15 +3828,15 @@ var ScOnlyField = ({
3716
3828
  inputProps,
3717
3829
  ...props
3718
3830
  }) => {
3719
- const variantsClassName = ScOnlyField_default["state-" + state] + " " + ScOnlyField_default["tf-group-" + tfGroup] + " " + ScOnlyField_default["label-group-" + labelGroup];
3720
- return /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
3831
+ const variantsClassName = ScOnlyField_default["state-" + state] + " " + ScOnlyField_default["tf-group-" + tfGroup] + " " + ScOnlyField_default["label-group-" + labelGroup] + (size !== "default" ? " " + ScOnlyField_default["size-" + size] : "");
3832
+ return /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3721
3833
  "div",
3722
3834
  {
3723
3835
  className: ScOnlyField_default.scOnlyField + " " + className + " " + variantsClassName,
3724
3836
  ...props,
3725
- children: /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: ScOnlyField_default.inputContainer, children: [
3726
- (tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(import_jsx_runtime48.Fragment, { children: tfLeftIcon }),
3727
- /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
3837
+ children: /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: ScOnlyField_default.inputContainer, children: [
3838
+ (tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: ScOnlyField_default.iconWrapper, children: tfLeftIcon }),
3839
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3728
3840
  "input",
3729
3841
  {
3730
3842
  className: ScOnlyField_default.inputText,
@@ -3744,15 +3856,15 @@ var ScOnlyField = ({
3744
3856
  ...inputProps
3745
3857
  }
3746
3858
  ),
3747
- (tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(import_jsx_runtime48.Fragment, { children: tfRightIcon })
3859
+ (tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: ScOnlyField_default.iconWrapper, children: tfRightIcon })
3748
3860
  ] })
3749
3861
  }
3750
3862
  );
3751
3863
  };
3752
3864
 
3753
3865
  // src/SC-catalogixInvite/ScCatalogixInvite.tsx
3754
- var import_icons42 = require("@streamoid/icons");
3755
- var import_jsx_runtime49 = require("react/jsx-runtime");
3866
+ var import_icons43 = require("@streamoid/icons");
3867
+ var import_jsx_runtime50 = require("react/jsx-runtime");
3756
3868
  var ScCatalogixInvite = ({
3757
3869
  active = "false",
3758
3870
  appName = "Catalogix",
@@ -3774,23 +3886,23 @@ var ScCatalogixInvite = ({
3774
3886
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
3775
3887
  const variantsClassName = ScCatalogixInvite_default["active-" + (isEnabled ? "true" : "false")];
3776
3888
  const displayCount = selectedStores ? `${selectedStores.length} Selected` : selectedCount;
3777
- return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
3889
+ return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
3778
3890
  "div",
3779
3891
  {
3780
3892
  className: ScCatalogixInvite_default.scCatalogixInvite + " " + className + " " + variantsClassName,
3781
3893
  ...props,
3782
3894
  children: [
3783
- /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: ScCatalogixInvite_default.appHeader, children: [
3784
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3895
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: ScCatalogixInvite_default.appHeader, children: [
3896
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
3785
3897
  ScAppCard,
3786
3898
  {
3787
- appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons40.SiconArtifacts, { className: ScCatalogixInvite_default.siconArtifactsInstance }),
3899
+ appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_icons41.SiconArtifacts, { className: ScCatalogixInvite_default.siconArtifactsInstance }),
3788
3900
  appDescription,
3789
3901
  appName,
3790
3902
  className: ScCatalogixInvite_default.scAppCardInstance
3791
3903
  }
3792
3904
  ),
3793
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3905
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
3794
3906
  ScToggleSwitch,
3795
3907
  {
3796
3908
  checked: isEnabled,
@@ -3799,29 +3911,29 @@ var ScCatalogixInvite = ({
3799
3911
  }
3800
3912
  )
3801
3913
  ] }),
3802
- isEnabled && /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_jsx_runtime49.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessContainer, children: [
3803
- /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessHeader, children: [
3804
- /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessTitle, children: [
3914
+ isEnabled && /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_jsx_runtime50.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessContainer, children: [
3915
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessHeader, children: [
3916
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessTitle, children: [
3805
3917
  storeAccessTitle,
3806
3918
  " "
3807
3919
  ] }),
3808
- /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: ScCatalogixInvite_default.selectedCount, children: [
3920
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: ScCatalogixInvite_default.selectedCount, children: [
3809
3921
  displayCount,
3810
3922
  " "
3811
3923
  ] })
3812
3924
  ] }),
3813
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3925
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
3814
3926
  ScOnlyField,
3815
3927
  {
3816
- tfLeftIcon: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons41.SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
3817
- tfRightIcon: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons41.SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
3928
+ tfLeftIcon: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_icons42.SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
3929
+ tfRightIcon: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_icons42.SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
3818
3930
  placeholderFilled: searchPlaceholder,
3819
3931
  value: searchValue,
3820
3932
  onInputChange: onSearchChange,
3821
3933
  className: ScCatalogixInvite_default.scOnlyFieldInstance
3822
3934
  }
3823
3935
  ),
3824
- /* @__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)(
3936
+ /* @__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)(
3825
3937
  ScPairtext,
3826
3938
  {
3827
3939
  content: store.name,
@@ -3832,53 +3944,53 @@ var ScCatalogixInvite = ({
3832
3944
  className: ScCatalogixInvite_default.scPairtextInstance
3833
3945
  },
3834
3946
  store.id
3835
- )) : /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { style: {
3947
+ )) : /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("div", { style: {
3836
3948
  padding: "var(--spacing-3xl, 16px)",
3837
3949
  color: "var(--alias-text-and-icons-muted, #7a7a7a)",
3838
3950
  fontFamily: "var(--font-family-font-family-body, Inter, sans-serif)",
3839
3951
  fontSize: "var(--font-size-font-size-sm, 14px)",
3840
3952
  lineHeight: "var(--line-height-line-height-sm, 20px)"
3841
- }, children: "No stores found" }) : /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(import_jsx_runtime49.Fragment, { children: [
3842
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3953
+ }, children: "No stores found" }) : /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(import_jsx_runtime50.Fragment, { children: [
3954
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
3843
3955
  ScPairtext,
3844
3956
  {
3845
- icon: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons42.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
3957
+ icon: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_icons43.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
3846
3958
  iconPosition: "right",
3847
3959
  type: "checkbox",
3848
3960
  className: ScCatalogixInvite_default.scPairtextInstance
3849
3961
  }
3850
3962
  ),
3851
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3963
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
3852
3964
  ScPairtext,
3853
3965
  {
3854
- icon: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons42.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
3966
+ icon: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_icons43.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
3855
3967
  iconPosition: "right",
3856
3968
  type: "checkbox",
3857
3969
  className: ScCatalogixInvite_default.scPairtextInstance
3858
3970
  }
3859
3971
  ),
3860
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3972
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
3861
3973
  ScPairtext,
3862
3974
  {
3863
- icon: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons42.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
3975
+ icon: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_icons43.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
3864
3976
  iconPosition: "right",
3865
3977
  type: "checkbox",
3866
3978
  className: ScCatalogixInvite_default.scPairtextInstance
3867
3979
  }
3868
3980
  ),
3869
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3981
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
3870
3982
  ScPairtext,
3871
3983
  {
3872
- icon: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons42.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
3984
+ icon: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_icons43.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
3873
3985
  iconPosition: "right",
3874
3986
  type: "checkbox",
3875
3987
  className: ScCatalogixInvite_default.scPairtextInstance
3876
3988
  }
3877
3989
  ),
3878
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3990
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
3879
3991
  ScPairtext,
3880
3992
  {
3881
- icon: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons42.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
3993
+ icon: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_icons43.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
3882
3994
  iconPosition: "right",
3883
3995
  type: "checkbox",
3884
3996
  className: ScCatalogixInvite_default.scPairtextInstance
@@ -3892,7 +4004,7 @@ var ScCatalogixInvite = ({
3892
4004
  };
3893
4005
 
3894
4006
  // src/SC-appField/ScAppField.tsx
3895
- var import_jsx_runtime50 = require("react/jsx-runtime");
4007
+ var import_jsx_runtime51 = require("react/jsx-runtime");
3896
4008
  var ScAppField = ({
3897
4009
  appFieldTitle = "App permission",
3898
4010
  className,
@@ -3909,13 +4021,13 @@ var ScAppField = ({
3909
4021
  onCatalogixSearchChange,
3910
4022
  ...props
3911
4023
  }) => {
3912
- return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: ScAppField_default.scAppField + " " + className, ...props, children: [
3913
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("div", { className: ScAppField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: ScAppField_default.title, children: [
4024
+ return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("div", { className: ScAppField_default.scAppField + " " + className, ...props, children: [
4025
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("div", { className: ScAppField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("div", { className: ScAppField_default.title, children: [
3914
4026
  appFieldTitle,
3915
4027
  " "
3916
4028
  ] }) }),
3917
- /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: ScAppField_default.inputContainer, children: [
3918
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
4029
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("div", { className: ScAppField_default.inputContainer, children: [
4030
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
3919
4031
  ScArtifaxInvite,
3920
4032
  {
3921
4033
  enabled: artifaxEnabled,
@@ -3923,18 +4035,18 @@ var ScAppField = ({
3923
4035
  className: ScAppField_default.scArtifaxInviteInstance
3924
4036
  }
3925
4037
  ),
3926
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
4038
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
3927
4039
  ScPhtogenixInvite,
3928
4040
  {
3929
4041
  enabled: photogenixEnabled,
3930
4042
  onToggle: onPhotogenixToggle,
3931
4043
  scAppCardappDescription: "Info about photogenix",
3932
4044
  scAppCardappName: "Photogenix",
3933
- scAppCardappIcon: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_icons43.SiconPhotogenix, { className: ScAppField_default.siconPhotogenixInstance }),
4045
+ scAppCardappIcon: /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(import_icons44.SiconPhotogenix, { className: ScAppField_default.siconPhotogenixInstance }),
3934
4046
  className: ScAppField_default.scPhtogenixInviteInstance
3935
4047
  }
3936
4048
  ),
3937
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
4049
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
3938
4050
  ScCatalogixInvite,
3939
4051
  {
3940
4052
  enabled: catalogixEnabled,
@@ -3961,13 +4073,13 @@ var ScBillingHistoryHeader_default = {
3961
4073
  };
3962
4074
 
3963
4075
  // src/SC-billingHistoryHeader/ScBillingHistoryHeader.tsx
3964
- var import_jsx_runtime51 = require("react/jsx-runtime");
4076
+ var import_jsx_runtime52 = require("react/jsx-runtime");
3965
4077
  var ScBillingHistoryHeader = ({
3966
4078
  className,
3967
4079
  ...props
3968
4080
  }) => {
3969
- return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
3970
- /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
4081
+ return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
4082
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
3971
4083
  ScHeader,
3972
4084
  {
3973
4085
  text: "Invoice",
@@ -3975,7 +4087,7 @@ var ScBillingHistoryHeader = ({
3975
4087
  className: ScBillingHistoryHeader_default.scHeaderInstance
3976
4088
  }
3977
4089
  ),
3978
- /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
4090
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
3979
4091
  ScHeader,
3980
4092
  {
3981
4093
  text: "Amount",
@@ -3983,7 +4095,7 @@ var ScBillingHistoryHeader = ({
3983
4095
  className: ScBillingHistoryHeader_default.scHeaderInstance2
3984
4096
  }
3985
4097
  ),
3986
- /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
4098
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
3987
4099
  ScHeader,
3988
4100
  {
3989
4101
  text: "Date",
@@ -3991,7 +4103,7 @@ var ScBillingHistoryHeader = ({
3991
4103
  className: ScBillingHistoryHeader_default.scHeaderInstance2
3992
4104
  }
3993
4105
  ),
3994
- /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
4106
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
3995
4107
  ScHeader,
3996
4108
  {
3997
4109
  text: "Action",
@@ -4012,20 +4124,20 @@ var ScCheckField_default = {
4012
4124
  };
4013
4125
 
4014
4126
  // src/SC-checkField/ScCheckField.tsx
4015
- var import_icons44 = require("@streamoid/icons");
4016
- var import_jsx_runtime52 = require("react/jsx-runtime");
4127
+ var import_icons45 = require("@streamoid/icons");
4128
+ var import_jsx_runtime53 = require("react/jsx-runtime");
4017
4129
  var ScCheckField = ({
4018
4130
  label = "Label",
4019
4131
  className,
4020
4132
  checkboxes,
4021
4133
  ...props
4022
4134
  }) => {
4023
- return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)("div", { className: ScCheckField_default.scCheckField + " " + className, ...props, children: [
4024
- /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("div", { className: ScCheckField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)("div", { className: ScCheckField_default.label, children: [
4135
+ return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: ScCheckField_default.scCheckField + " " + className, ...props, children: [
4136
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: ScCheckField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: ScCheckField_default.label, children: [
4025
4137
  label,
4026
4138
  " "
4027
4139
  ] }) }),
4028
- /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("div", { className: ScCheckField_default.tabSwitcher, children: checkboxes ? checkboxes.map((item, i) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
4140
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: ScCheckField_default.tabSwitcher, children: checkboxes ? checkboxes.map((item, i) => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
4029
4141
  ScPairtext,
4030
4142
  {
4031
4143
  content: item.label,
@@ -4035,19 +4147,19 @@ var ScCheckField = ({
4035
4147
  className: ScCheckField_default.scPairtextInstance
4036
4148
  },
4037
4149
  i
4038
- )) : /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(import_jsx_runtime52.Fragment, { children: [
4039
- /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
4150
+ )) : /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(import_jsx_runtime53.Fragment, { children: [
4151
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
4040
4152
  ScPairtext,
4041
4153
  {
4042
- icon: /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(import_icons44.SiconHome, { className: ScCheckField_default.siconHomeInstance }),
4154
+ icon: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_icons45.SiconHome, { className: ScCheckField_default.siconHomeInstance }),
4043
4155
  type: "checkbox",
4044
4156
  className: ScCheckField_default.scPairtextInstance
4045
4157
  }
4046
4158
  ),
4047
- /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
4159
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
4048
4160
  ScPairtext,
4049
4161
  {
4050
- icon: /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(import_icons44.SiconHome, { className: ScCheckField_default.siconHomeInstance }),
4162
+ icon: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_icons45.SiconHome, { className: ScCheckField_default.siconHomeInstance }),
4051
4163
  type: "checkbox",
4052
4164
  className: ScCheckField_default.scPairtextInstance
4053
4165
  }
@@ -4067,10 +4179,10 @@ var ScFieldButton_default = {
4067
4179
  };
4068
4180
 
4069
4181
  // src/SC-fieldButton/ScFieldButton.tsx
4070
- var import_icons45 = require("@streamoid/icons");
4071
- var import_jsx_runtime53 = require("react/jsx-runtime");
4182
+ var import_icons46 = require("@streamoid/icons");
4183
+ var import_jsx_runtime54 = require("react/jsx-runtime");
4072
4184
  var ScFieldButton = ({
4073
- icon = /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_icons45.SiconHome, { className: ScFieldButton_default.siconHomeInstance }),
4185
+ icon = /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_icons46.SiconHome, { className: ScFieldButton_default.siconHomeInstance }),
4074
4186
  type = "default",
4075
4187
  state = "default",
4076
4188
  className,
@@ -4078,18 +4190,18 @@ var ScFieldButton = ({
4078
4190
  ...props
4079
4191
  }) => {
4080
4192
  const variantsClassName = ScFieldButton_default["type-" + type] + " " + ScFieldButton_default["state-" + state];
4081
- return /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
4193
+ return /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
4082
4194
  "div",
4083
4195
  {
4084
4196
  className: ScFieldButton_default.scFieldButton + " " + className + " " + variantsClassName,
4085
4197
  ...props,
4086
- children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: ScFieldButton_default.container, children: [
4087
- (type === "icon-right" || type === "only-icon") && /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_jsx_runtime53.Fragment, { children: icon }),
4088
- (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: [
4198
+ children: /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)("div", { className: ScFieldButton_default.container, children: [
4199
+ (type === "icon-right" || type === "only-icon") && /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_jsx_runtime54.Fragment, { children: icon }),
4200
+ (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: [
4089
4201
  text,
4090
4202
  " "
4091
4203
  ] }) }),
4092
- type === "icon-left" && /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_jsx_runtime53.Fragment, { children: icon })
4204
+ type === "icon-left" && /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_jsx_runtime54.Fragment, { children: icon })
4093
4205
  ] })
4094
4206
  }
4095
4207
  );
@@ -4103,17 +4215,17 @@ var ScPendingAction_default = {
4103
4215
  };
4104
4216
 
4105
4217
  // src/SC-pendingAction/ScPendingAction.tsx
4106
- var import_icons46 = require("@streamoid/icons");
4107
- var import_jsx_runtime54 = require("react/jsx-runtime");
4218
+ var import_icons47 = require("@streamoid/icons");
4219
+ var import_jsx_runtime55 = require("react/jsx-runtime");
4108
4220
  var ScPendingAction = ({
4109
4221
  className,
4110
4222
  ...props
4111
4223
  }) => {
4112
- return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
4113
- /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
4224
+ return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
4225
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
4114
4226
  ScButton,
4115
4227
  {
4116
- icon: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_icons46.SiconHome, { className: ScPendingAction_default.siconHomeInstance }),
4228
+ icon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons47.SiconHome, { className: ScPendingAction_default.siconHomeInstance }),
4117
4229
  text: "Cancel",
4118
4230
  variant: "error",
4119
4231
  type: "tertiary",
@@ -4121,11 +4233,11 @@ var ScPendingAction = ({
4121
4233
  className: ScPendingAction_default.scButtonInstance
4122
4234
  }
4123
4235
  ),
4124
- /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(ScVDivider, { className: ScPendingAction_default.scVDividerInstance }),
4125
- /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
4236
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(ScVDivider, { className: ScPendingAction_default.scVDividerInstance }),
4237
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
4126
4238
  ScButton,
4127
4239
  {
4128
- icon: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_icons46.SiconHome, { className: ScPendingAction_default.siconHomeInstance }),
4240
+ icon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons47.SiconHome, { className: ScPendingAction_default.siconHomeInstance }),
4129
4241
  text: "Resend",
4130
4242
  variant: "tertiary",
4131
4243
  size: "sm",
@@ -4148,8 +4260,8 @@ var ScQuickPrompt_default = {
4148
4260
  };
4149
4261
 
4150
4262
  // src/SC-quick prompt/ScQuickPrompt.tsx
4151
- var import_icons47 = require("@streamoid/icons");
4152
- var import_jsx_runtime55 = require("react/jsx-runtime");
4263
+ var import_icons48 = require("@streamoid/icons");
4264
+ var import_jsx_runtime56 = require("react/jsx-runtime");
4153
4265
  var ScQuickPrompt = ({
4154
4266
  appName = "Photogenix",
4155
4267
  heading = "Swap Model and Background",
@@ -4157,20 +4269,20 @@ var ScQuickPrompt = ({
4157
4269
  className,
4158
4270
  ...props
4159
4271
  }) => {
4160
- return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScQuickPrompt_default.scQuickPrompt + " " + className, ...props, children: [
4161
- /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScQuickPrompt_default.header, children: [
4162
- /* @__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 }) }),
4163
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("div", { className: ScQuickPrompt_default.titleContainer, children: /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScQuickPrompt_default.title, children: [
4272
+ return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScQuickPrompt_default.scQuickPrompt + " " + className, ...props, children: [
4273
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScQuickPrompt_default.header, children: [
4274
+ /* @__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 }) }),
4275
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: ScQuickPrompt_default.titleContainer, children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScQuickPrompt_default.title, children: [
4164
4276
  appName,
4165
4277
  " "
4166
4278
  ] }) })
4167
4279
  ] }),
4168
- /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScQuickPrompt_default.body, children: [
4169
- /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScQuickPrompt_default.heading, children: [
4280
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScQuickPrompt_default.body, children: [
4281
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScQuickPrompt_default.heading, children: [
4170
4282
  heading,
4171
4283
  " "
4172
4284
  ] }),
4173
- /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScQuickPrompt_default.description, children: [
4285
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScQuickPrompt_default.description, children: [
4174
4286
  description,
4175
4287
  " "
4176
4288
  ] })
@@ -4187,13 +4299,13 @@ var ScReferralTableHeader_default = {
4187
4299
  };
4188
4300
 
4189
4301
  // src/SC-referralTableHeader/ScReferralTableHeader.tsx
4190
- var import_jsx_runtime56 = require("react/jsx-runtime");
4302
+ var import_jsx_runtime57 = require("react/jsx-runtime");
4191
4303
  var ScReferralTableHeader = ({
4192
4304
  className,
4193
4305
  ...props
4194
4306
  }) => {
4195
- return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
4196
- /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
4307
+ return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
4308
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
4197
4309
  ScHeader,
4198
4310
  {
4199
4311
  text: "User",
@@ -4201,7 +4313,7 @@ var ScReferralTableHeader = ({
4201
4313
  className: ScReferralTableHeader_default.scHeaderInstance
4202
4314
  }
4203
4315
  ),
4204
- /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
4316
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
4205
4317
  ScHeader,
4206
4318
  {
4207
4319
  text: "Date",
@@ -4209,7 +4321,7 @@ var ScReferralTableHeader = ({
4209
4321
  className: ScReferralTableHeader_default.scHeaderInstance2
4210
4322
  }
4211
4323
  ),
4212
- /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
4324
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
4213
4325
  ScHeader,
4214
4326
  {
4215
4327
  text: "Status",
@@ -4217,7 +4329,7 @@ var ScReferralTableHeader = ({
4217
4329
  className: ScReferralTableHeader_default.scHeaderInstance3
4218
4330
  }
4219
4331
  ),
4220
- /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
4332
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
4221
4333
  ScHeader,
4222
4334
  {
4223
4335
  text: "Reward",
@@ -4238,7 +4350,7 @@ var ScReferralTableList_default = {
4238
4350
  };
4239
4351
 
4240
4352
  // src/SC-referralTableList/ScReferralTableList.tsx
4241
- var import_jsx_runtime57 = require("react/jsx-runtime");
4353
+ var import_jsx_runtime58 = require("react/jsx-runtime");
4242
4354
  var ScReferralTableList = ({
4243
4355
  userEmail = "chris@kepler.com",
4244
4356
  userName,
@@ -4248,8 +4360,8 @@ var ScReferralTableList = ({
4248
4360
  className,
4249
4361
  ...props
4250
4362
  }) => {
4251
- return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
4252
- /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
4363
+ return /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
4364
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4253
4365
  ScProfile,
4254
4366
  {
4255
4367
  subText: userEmail,
@@ -4257,12 +4369,12 @@ var ScReferralTableList = ({
4257
4369
  className: ScReferralTableList_default.scProfileInstance
4258
4370
  }
4259
4371
  ),
4260
- /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: ScReferralTableList_default.date, children: [
4372
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: ScReferralTableList_default.date, children: [
4261
4373
  date,
4262
4374
  " "
4263
4375
  ] }),
4264
- /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(ScBadges, { text: status, className: ScReferralTableList_default.scBadgesInstance }),
4265
- /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: ScReferralTableList_default.points, children: [
4376
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(ScBadges, { text: status, className: ScReferralTableList_default.scBadgesInstance }),
4377
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: ScReferralTableList_default.points, children: [
4266
4378
  points,
4267
4379
  " "
4268
4380
  ] })
@@ -4276,35 +4388,35 @@ var ScSettingsNav_default = {
4276
4388
  };
4277
4389
 
4278
4390
  // src/SC-settingsNav/ScSettingsNav.tsx
4279
- var import_icons48 = require("@streamoid/icons");
4280
4391
  var import_icons49 = require("@streamoid/icons");
4281
- var import_jsx_runtime58 = require("react/jsx-runtime");
4392
+ var import_icons50 = require("@streamoid/icons");
4393
+ var import_jsx_runtime59 = require("react/jsx-runtime");
4282
4394
  var ScSettingsNav = ({
4283
4395
  className,
4284
4396
  ...props
4285
4397
  }) => {
4286
- 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: [
4287
- /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4398
+ 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: [
4399
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
4288
4400
  ScSidebarMenu,
4289
4401
  {
4290
- icon: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons48.SiconTeam, { className: ScSettingsNav_default.siconTeamInstance }),
4402
+ icon: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_icons49.SiconTeam, { className: ScSettingsNav_default.siconTeamInstance }),
4291
4403
  text: "Profile",
4292
4404
  state: "active",
4293
4405
  className: ScSettingsNav_default.scSidebarMenuInstance
4294
4406
  }
4295
4407
  ),
4296
- /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4408
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
4297
4409
  ScSidebarMenu,
4298
4410
  {
4299
- icon: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons49.SiconWorkspace, { className: ScSettingsNav_default.siconWorkspaceInstance }),
4411
+ icon: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_icons50.SiconWorkspace, { className: ScSettingsNav_default.siconWorkspaceInstance }),
4300
4412
  text: "Workspace",
4301
4413
  className: ScSettingsNav_default.scSidebarMenuInstance
4302
4414
  }
4303
4415
  ),
4304
- /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4416
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
4305
4417
  ScSidebarMenu,
4306
4418
  {
4307
- icon: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons49.SiconReferral, { className: ScSettingsNav_default.siconReferralInstance }),
4419
+ icon: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_icons50.SiconReferral, { className: ScSettingsNav_default.siconReferralInstance }),
4308
4420
  text: "Referral",
4309
4421
  className: ScSettingsNav_default.scSidebarMenuInstance
4310
4422
  }
@@ -4320,7 +4432,7 @@ var ScTabField_default = {
4320
4432
  };
4321
4433
 
4322
4434
  // src/SC-tabField/ScTabField.tsx
4323
- var import_jsx_runtime59 = require("react/jsx-runtime");
4435
+ var import_jsx_runtime60 = require("react/jsx-runtime");
4324
4436
  var ScTabField = ({
4325
4437
  label = "Label",
4326
4438
  className,
@@ -4329,17 +4441,17 @@ var ScTabField = ({
4329
4441
  onTabChange,
4330
4442
  ...props
4331
4443
  }) => {
4332
- return /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: ScTabField_default.scTabField + " " + className, children: [
4333
- /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { className: ScTabField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: ScTabField_default.label, children: [
4444
+ return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)("div", { className: ScTabField_default.scTabField + " " + className, children: [
4445
+ /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("div", { className: ScTabField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)("div", { className: ScTabField_default.label, children: [
4334
4446
  label,
4335
4447
  " "
4336
4448
  ] }) }),
4337
- tabs ? /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
4449
+ tabs ? /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4338
4450
  ScTabSwitcher,
4339
4451
  {
4340
4452
  tabCount: String(tabs.length),
4341
4453
  className: ScTabField_default.scTabSwitcherInstance,
4342
- component: tabs[0] ? /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
4454
+ component: tabs[0] ? /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4343
4455
  ScTabComp,
4344
4456
  {
4345
4457
  text: tabs[0].label,
@@ -4349,7 +4461,7 @@ var ScTabField = ({
4349
4461
  style: { flex: 1 }
4350
4462
  }
4351
4463
  ) : void 0,
4352
- component2: tabs[1] ? /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
4464
+ component2: tabs[1] ? /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4353
4465
  ScTabComp,
4354
4466
  {
4355
4467
  text: tabs[1].label,
@@ -4360,7 +4472,7 @@ var ScTabField = ({
4360
4472
  }
4361
4473
  ) : void 0
4362
4474
  }
4363
- ) : /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(ScTabSwitcher, { className: ScTabField_default.scTabSwitcherInstance })
4475
+ ) : /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(ScTabSwitcher, { className: ScTabField_default.scTabSwitcherInstance })
4364
4476
  ] });
4365
4477
  };
4366
4478
 
@@ -4377,19 +4489,19 @@ var ScTableHeader_default = {
4377
4489
  };
4378
4490
 
4379
4491
  // src/SC-tableHeader/ScTableHeader.tsx
4380
- var import_jsx_runtime60 = require("react/jsx-runtime");
4492
+ var import_jsx_runtime61 = require("react/jsx-runtime");
4381
4493
  var ScTableHeader = ({
4382
4494
  type = "default",
4383
4495
  className,
4384
4496
  ...props
4385
4497
  }) => {
4386
4498
  const variantsClassName = ScTableHeader_default["type-" + type];
4387
- return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)(
4499
+ return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
4388
4500
  "div",
4389
4501
  {
4390
4502
  className: ScTableHeader_default.scTableHeader + " " + className + " " + variantsClassName,
4391
4503
  children: [
4392
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4504
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4393
4505
  ScHeader,
4394
4506
  {
4395
4507
  text: "User",
@@ -4397,7 +4509,7 @@ var ScTableHeader = ({
4397
4509
  className: ScTableHeader_default.scHeaderInstance
4398
4510
  }
4399
4511
  ),
4400
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4512
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4401
4513
  ScHeader,
4402
4514
  {
4403
4515
  text: "Role",
@@ -4405,7 +4517,7 @@ var ScTableHeader = ({
4405
4517
  className: ScTableHeader_default.scHeaderInstance2
4406
4518
  }
4407
4519
  ),
4408
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4520
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4409
4521
  ScHeader,
4410
4522
  {
4411
4523
  text: "Access",
@@ -4413,7 +4525,7 @@ var ScTableHeader = ({
4413
4525
  className: ScTableHeader_default.scHeaderInstance3
4414
4526
  }
4415
4527
  ),
4416
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4528
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4417
4529
  ScHeader,
4418
4530
  {
4419
4531
  text: "Invited by",
@@ -4421,7 +4533,7 @@ var ScTableHeader = ({
4421
4533
  className: ScTableHeader_default.scHeaderInstance4
4422
4534
  }
4423
4535
  ),
4424
- type === "pending" && /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(import_jsx_runtime60.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4536
+ type === "pending" && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_jsx_runtime61.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4425
4537
  ScHeader,
4426
4538
  {
4427
4539
  text: "Invite action",
@@ -4429,7 +4541,7 @@ var ScTableHeader = ({
4429
4541
  className: ScTableHeader_default.scHeaderInstance5
4430
4542
  }
4431
4543
  ) }),
4432
- type === "default" && /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(import_jsx_runtime60.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4544
+ type === "default" && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_jsx_runtime61.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4433
4545
  ScHeader,
4434
4546
  {
4435
4547
  text: "Signed On",
@@ -4461,9 +4573,9 @@ var ScTableList_default = {
4461
4573
  };
4462
4574
 
4463
4575
  // src/SC-tableList/ScTableList.tsx
4464
- var import_icons50 = require("@streamoid/icons");
4465
4576
  var import_icons51 = require("@streamoid/icons");
4466
- var import_jsx_runtime61 = require("react/jsx-runtime");
4577
+ var import_icons52 = require("@streamoid/icons");
4578
+ var import_jsx_runtime62 = require("react/jsx-runtime");
4467
4579
  var ScTableList = ({
4468
4580
  invitedBy = "Rohan",
4469
4581
  signedOn = "Nov 9th, 2025",
@@ -4475,51 +4587,51 @@ var ScTableList = ({
4475
4587
  ...props
4476
4588
  }) => {
4477
4589
  const variantsClassName = ScTableList_default["hover-" + hover] + " " + ScTableList_default["variant-" + variant];
4478
- return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
4590
+ return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
4479
4591
  "div",
4480
4592
  {
4481
4593
  className: ScTableList_default.scTableList + " " + className + " " + variantsClassName,
4482
4594
  onClick: (e) => onRowClick && onRowClick(invitedBy, e),
4483
4595
  ...props,
4484
4596
  children: [
4485
- /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4597
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4486
4598
  ScProfile,
4487
4599
  {
4488
4600
  subText: userEmail,
4489
4601
  className: ScTableList_default.scProfileInstance
4490
4602
  }
4491
4603
  ),
4492
- /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(ScRole, { className: ScTableList_default.scRoleInstance }),
4493
- /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScTableList_default.accessInfo, children: [
4494
- /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4604
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(ScRole, { className: ScTableList_default.scRoleInstance }),
4605
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScTableList_default.accessInfo, children: [
4606
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4495
4607
  ScAccess,
4496
4608
  {
4497
- component: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_icons50.SiconArtifacts, { className: ScTableList_default.siconArtifactsInstance }),
4498
- component2: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_icons50.SiconPhotogenix, { className: ScTableList_default.siconPhotogenixInstance }),
4609
+ component: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons51.SiconArtifacts, { className: ScTableList_default.siconArtifactsInstance }),
4610
+ component2: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons51.SiconPhotogenix, { className: ScTableList_default.siconPhotogenixInstance }),
4499
4611
  className: ScTableList_default.scAccessInstance
4500
4612
  }
4501
4613
  ),
4502
- /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4614
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4503
4615
  ScAccess,
4504
4616
  {
4505
- component: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_icons51.SiconUserAdd, { className: ScTableList_default.siconUserAddInstance }),
4506
- component2: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_icons51.SiconCoins, { className: ScTableList_default.siconCoinsInstance }),
4617
+ component: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons52.SiconUserAdd, { className: ScTableList_default.siconUserAddInstance }),
4618
+ component2: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons52.SiconCoins, { className: ScTableList_default.siconCoinsInstance }),
4507
4619
  visibleSiconCatalogix: false,
4508
4620
  className: ScTableList_default.scAccessInstance
4509
4621
  }
4510
4622
  )
4511
4623
  ] }),
4512
- /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScTableList_default.userName, children: [
4624
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScTableList_default.userName, children: [
4513
4625
  invitedBy,
4514
4626
  " "
4515
4627
  ] }),
4516
- variant === "pending" && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_jsx_runtime61.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4628
+ variant === "pending" && /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_jsx_runtime62.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4517
4629
  ScPendingAction,
4518
4630
  {
4519
4631
  className: ScTableList_default.scPendingActionInstance
4520
4632
  }
4521
4633
  ) }),
4522
- 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: [
4634
+ 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: [
4523
4635
  signedOn,
4524
4636
  " "
4525
4637
  ] }) })
@@ -4548,8 +4660,8 @@ var ScWorkspaceCard_default = {
4548
4660
  };
4549
4661
 
4550
4662
  // src/SC-workspaceCard/ScWorkspaceCard.tsx
4551
- var import_icons52 = require("@streamoid/icons");
4552
- var import_jsx_runtime62 = require("react/jsx-runtime");
4663
+ var import_icons53 = require("@streamoid/icons");
4664
+ var import_jsx_runtime63 = require("react/jsx-runtime");
4553
4665
  var ScWorkspaceCard = ({
4554
4666
  workspaceName = "Stores",
4555
4667
  role = "Admin",
@@ -4559,21 +4671,21 @@ var ScWorkspaceCard = ({
4559
4671
  className,
4560
4672
  ...props
4561
4673
  }) => {
4562
- return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScWorkspaceCard_default.scWorkspaceCard + " " + className, ...props, children: [
4563
- /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScWorkspaceCard_default.workspaceInfo, children: [
4564
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4674
+ return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceCard_default.scWorkspaceCard + " " + className, ...props, children: [
4675
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceCard_default.workspaceInfo, children: [
4676
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4565
4677
  ScIntialProfileCover,
4566
4678
  {
4567
4679
  className: ScWorkspaceCard_default.scIntialProfileCoverInstance
4568
4680
  }
4569
4681
  ),
4570
- /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScWorkspaceCard_default.workspaceName, children: [
4682
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceCard_default.workspaceName, children: [
4571
4683
  workspaceName,
4572
4684
  " "
4573
4685
  ] })
4574
4686
  ] }),
4575
- /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScWorkspaceCard_default.userInfo, children: [
4576
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4687
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceCard_default.userInfo, children: [
4688
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4577
4689
  ScBadges,
4578
4690
  {
4579
4691
  text: role,
@@ -4581,41 +4693,41 @@ var ScWorkspaceCard = ({
4581
4693
  className: ScWorkspaceCard_default.scBadgesInstance
4582
4694
  }
4583
4695
  ),
4584
- /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScWorkspaceCard_default.userDetails, children: [
4585
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4696
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceCard_default.userDetails, children: [
4697
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4586
4698
  ScPairtext,
4587
4699
  {
4588
- icon: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons52.SiconTeam, { className: ScWorkspaceCard_default.siconTeamInstance }),
4700
+ icon: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons53.SiconTeam, { className: ScWorkspaceCard_default.siconTeamInstance }),
4589
4701
  content: userCount,
4590
4702
  className: ScWorkspaceCard_default.scPairtextInstance
4591
4703
  }
4592
4704
  ),
4593
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(ScVDivider, { className: ScWorkspaceCard_default.scVDividerInstance }),
4594
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4705
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(ScVDivider, { className: ScWorkspaceCard_default.scVDividerInstance }),
4706
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4595
4707
  ScPairtext,
4596
4708
  {
4597
- icon: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons52.SiconCrown, { className: ScWorkspaceCard_default.siconCrownInstance }),
4709
+ icon: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons53.SiconCrown, { className: ScWorkspaceCard_default.siconCrownInstance }),
4598
4710
  content: ownerEmail,
4599
4711
  className: ScWorkspaceCard_default.scPairtextInstance
4600
4712
  }
4601
4713
  )
4602
4714
  ] })
4603
4715
  ] }),
4604
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4716
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4605
4717
  ScButton,
4606
4718
  {
4607
- icon: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons52.SiconSwitch, { className: ScWorkspaceCard_default.siconSwitchInstance }),
4719
+ icon: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons53.SiconSwitch, { className: ScWorkspaceCard_default.siconSwitchInstance }),
4608
4720
  text: buttonText,
4609
4721
  state: "disabled",
4610
4722
  variant: "outline",
4611
4723
  className: ScWorkspaceCard_default.scButtonInstance
4612
4724
  }
4613
4725
  ),
4614
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4726
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4615
4727
  ScButton,
4616
4728
  {
4617
4729
  text: "Leave workspace",
4618
- icon: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons52.SiconLogout, { className: ScWorkspaceCard_default.siconLogoutInstance }),
4730
+ icon: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons53.SiconLogout, { className: ScWorkspaceCard_default.siconLogoutInstance }),
4619
4731
  styleVariant: "icon-only",
4620
4732
  variant: "error",
4621
4733
  className: ScWorkspaceCard_default.scButtonInstance2
@@ -4626,7 +4738,7 @@ var ScWorkspaceCard = ({
4626
4738
 
4627
4739
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.tsx
4628
4740
  var import_react8 = require("react");
4629
- var import_icons53 = require("@streamoid/icons");
4741
+ var import_icons54 = require("@streamoid/icons");
4630
4742
 
4631
4743
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.module.css
4632
4744
  var ScWorkspaceSwitchCard_default = {
@@ -4651,7 +4763,7 @@ var ScWorkspaceSwitchCard_default = {
4651
4763
  };
4652
4764
 
4653
4765
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.tsx
4654
- var import_jsx_runtime63 = require("react/jsx-runtime");
4766
+ var import_jsx_runtime64 = require("react/jsx-runtime");
4655
4767
  function ScWorkspaceSwitchCard({
4656
4768
  wsName = "Workspace name is kepler",
4657
4769
  role = "Admin",
@@ -4681,14 +4793,14 @@ function ScWorkspaceSwitchCard({
4681
4793
  ].filter(Boolean).join(" ");
4682
4794
  const dpBg = isCurrent ? "var(--alias-fill-neutral-neutralactive, #313131)" : "var(--alias-fill-neutral-neutralselected, #242424)";
4683
4795
  const roleColorClass = isAdmin ? ScWorkspaceSwitchCard_default.detailValueRole : ScWorkspaceSwitchCard_default.detailValueInfo;
4684
- return /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4796
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
4685
4797
  "div",
4686
4798
  {
4687
4799
  className: cardClass,
4688
4800
  onMouseEnter: () => setInternalHover(true),
4689
4801
  onMouseLeave: () => setInternalHover(false),
4690
- children: /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceSwitchCard_default.wsInfo, children: [
4691
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4802
+ children: /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScWorkspaceSwitchCard_default.wsInfo, children: [
4803
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
4692
4804
  ScDp,
4693
4805
  {
4694
4806
  type: imageUrl ? "image" : "initial",
@@ -4702,26 +4814,26 @@ function ScWorkspaceSwitchCard({
4702
4814
  }
4703
4815
  }
4704
4816
  ),
4705
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceSwitchCard_default.infoCol, children: [
4706
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("p", { className: ScWorkspaceSwitchCard_default.wsName, children: wsName }),
4707
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailsRow, children: [
4708
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
4709
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Role" }),
4710
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: roleColorClass, children: displayRole })
4817
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScWorkspaceSwitchCard_default.infoCol, children: [
4818
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("p", { className: ScWorkspaceSwitchCard_default.wsName, children: wsName }),
4819
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailsRow, children: [
4820
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
4821
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Role" }),
4822
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("span", { className: roleColorClass, children: displayRole })
4711
4823
  ] }),
4712
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
4713
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
4714
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Plan" }),
4715
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: plan })
4824
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
4825
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
4826
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Plan" }),
4827
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: plan })
4716
4828
  ] }),
4717
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
4718
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItemFlex, children: [
4719
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Workspace Owner" }),
4720
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: ownerId })
4829
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
4830
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItemFlex, children: [
4831
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Workspace Owner" }),
4832
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: ownerId })
4721
4833
  ] })
4722
4834
  ] })
4723
4835
  ] }),
4724
- isHover && isOther && /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4836
+ isHover && isOther && /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
4725
4837
  "div",
4726
4838
  {
4727
4839
  onClick: (e) => {
@@ -4729,19 +4841,19 @@ function ScWorkspaceSwitchCard({
4729
4841
  onSwitch?.();
4730
4842
  },
4731
4843
  style: { cursor: "pointer" },
4732
- children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4844
+ children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
4733
4845
  ScButton,
4734
4846
  {
4735
4847
  text: "Switch Workspace",
4736
4848
  variant: "secondary",
4737
4849
  size: "sm",
4738
4850
  styleVariant: "icon-left",
4739
- icon: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons53.SiconSwitch, { className: ScWorkspaceSwitchCard_default.btnIcon })
4851
+ icon: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_icons54.SiconSwitch, { className: ScWorkspaceSwitchCard_default.btnIcon })
4740
4852
  }
4741
4853
  )
4742
4854
  }
4743
4855
  ),
4744
- isHover && isAdmin && /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4856
+ isHover && isAdmin && /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
4745
4857
  "div",
4746
4858
  {
4747
4859
  onClick: (e) => {
@@ -4749,18 +4861,18 @@ function ScWorkspaceSwitchCard({
4749
4861
  onSettings?.();
4750
4862
  },
4751
4863
  style: { cursor: "pointer" },
4752
- children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4864
+ children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
4753
4865
  ScButton,
4754
4866
  {
4755
4867
  styleVariant: "icon-only",
4756
4868
  variant: "outline",
4757
4869
  size: "sm",
4758
- icon: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons53.SiconSettings, { className: ScWorkspaceSwitchCard_default.btnIcon })
4870
+ icon: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_icons54.SiconSettings, { className: ScWorkspaceSwitchCard_default.btnIcon })
4759
4871
  }
4760
4872
  )
4761
4873
  }
4762
4874
  ),
4763
- isHover && !isAdmin && /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4875
+ isHover && !isAdmin && /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
4764
4876
  "div",
4765
4877
  {
4766
4878
  className: ScWorkspaceSwitchCard_default.leaveBtn,
@@ -4768,7 +4880,7 @@ function ScWorkspaceSwitchCard({
4768
4880
  e.stopPropagation();
4769
4881
  onLeave?.();
4770
4882
  },
4771
- children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons53.SiconLogout, { className: ScWorkspaceSwitchCard_default.btnIcon, color: "currentColor" })
4883
+ children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_icons54.SiconLogout, { className: ScWorkspaceSwitchCard_default.btnIcon, color: "currentColor" })
4772
4884
  }
4773
4885
  )
4774
4886
  ] })
@@ -4786,18 +4898,18 @@ var ScRoleMobile_default = {
4786
4898
  };
4787
4899
 
4788
4900
  // src/SC-Role-Mobile/ScRoleMobile.tsx
4789
- var import_jsx_runtime64 = require("react/jsx-runtime");
4901
+ var import_jsx_runtime65 = require("react/jsx-runtime");
4790
4902
  var ScRoleMobile = ({
4791
4903
  role = "admin",
4792
4904
  className,
4793
4905
  ...props
4794
4906
  }) => {
4795
- return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
4907
+ return /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
4796
4908
  "div",
4797
4909
  {
4798
4910
  className: ScRoleMobile_default.scRoleMobile + " " + ScRoleMobile_default["role-" + role] + " " + className,
4799
4911
  ...props,
4800
- children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("p", { className: ScRoleMobile_default.text, children: role === "admin" ? "Admin" : "Member" })
4912
+ children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("p", { className: ScRoleMobile_default.text, children: role === "admin" ? "Admin" : "Member" })
4801
4913
  }
4802
4914
  );
4803
4915
  };
@@ -4814,7 +4926,7 @@ var ScProfileV2Mobile_default = {
4814
4926
  };
4815
4927
 
4816
4928
  // src/SC-Profile-V2-Mobile/ScProfileV2Mobile.tsx
4817
- var import_jsx_runtime65 = require("react/jsx-runtime");
4929
+ var import_jsx_runtime66 = require("react/jsx-runtime");
4818
4930
  var ScProfileV2Mobile = ({
4819
4931
  name = "Chris Hemsworth",
4820
4932
  email = "chris@kepler.com",
@@ -4824,17 +4936,17 @@ var ScProfileV2Mobile = ({
4824
4936
  ...props
4825
4937
  }) => {
4826
4938
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
4827
- 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 }) });
4828
- return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(
4939
+ 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 }) });
4940
+ return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
4829
4941
  "div",
4830
4942
  {
4831
4943
  className: ScProfileV2Mobile_default.scProfileV2Mobile + " " + className,
4832
4944
  ...props,
4833
4945
  children: [
4834
4946
  dpPosition === "left" && profileImage,
4835
- /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)("div", { className: ScProfileV2Mobile_default.userInfo, children: [
4836
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("p", { className: ScProfileV2Mobile_default.userName, children: name }),
4837
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("p", { className: ScProfileV2Mobile_default.userEmail, children: email })
4947
+ /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("div", { className: ScProfileV2Mobile_default.userInfo, children: [
4948
+ /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("p", { className: ScProfileV2Mobile_default.userName, children: name }),
4949
+ /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("p", { className: ScProfileV2Mobile_default.userEmail, children: email })
4838
4950
  ] }),
4839
4951
  dpPosition === "right" && profileImage
4840
4952
  ]
@@ -4861,7 +4973,7 @@ var ScTableListMobile_default = {
4861
4973
  };
4862
4974
 
4863
4975
  // src/SC-tableList-mobile/ScTableListMobile.tsx
4864
- var import_jsx_runtime66 = require("react/jsx-runtime");
4976
+ var import_jsx_runtime67 = require("react/jsx-runtime");
4865
4977
  var ScTableListMobile = ({
4866
4978
  name = "Chris Hemsworth",
4867
4979
  email = "chris@kepler.com",
@@ -4874,25 +4986,25 @@ var ScTableListMobile = ({
4874
4986
  ...props
4875
4987
  }) => {
4876
4988
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
4877
- return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
4989
+ return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
4878
4990
  "div",
4879
4991
  {
4880
4992
  className: ScTableListMobile_default.scTableListMobile + " " + className,
4881
4993
  onClick: onRowClick,
4882
4994
  ...props,
4883
4995
  children: [
4884
- /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("div", { className: ScTableListMobile_default.profileRow, children: [
4885
- /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("div", { className: ScTableListMobile_default.userInfo, children: [
4886
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("p", { className: ScTableListMobile_default.userName, children: name }),
4887
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("p", { className: ScTableListMobile_default.userEmail, children: email })
4996
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScTableListMobile_default.profileRow, children: [
4997
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScTableListMobile_default.userInfo, children: [
4998
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("p", { className: ScTableListMobile_default.userName, children: name }),
4999
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("p", { className: ScTableListMobile_default.userEmail, children: email })
4888
5000
  ] }),
4889
- /* @__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 }) })
5001
+ /* @__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 }) })
4890
5002
  ] }),
4891
- /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("div", { className: ScTableListMobile_default.detailsRow, children: [
4892
- /* @__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 }) }),
4893
- /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("div", { className: ScTableListMobile_default.accessInfo, children: [
4894
- 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)) }),
4895
- 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)) })
5003
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScTableListMobile_default.detailsRow, children: [
5004
+ /* @__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 }) }),
5005
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScTableListMobile_default.accessInfo, children: [
5006
+ 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)) }),
5007
+ 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)) })
4896
5008
  ] })
4897
5009
  ] })
4898
5010
  ]
@@ -4920,7 +5032,7 @@ var ScWorkspaceSwitchMobile_default = {
4920
5032
  };
4921
5033
 
4922
5034
  // src/SC-workspaceSwitch-Mobile/ScWorkspaceSwitchMobile.tsx
4923
- var import_jsx_runtime67 = require("react/jsx-runtime");
5035
+ var import_jsx_runtime68 = require("react/jsx-runtime");
4924
5036
  var ScWorkspaceSwitchMobile = ({
4925
5037
  storeName = "Stores",
4926
5038
  initials = "WS",
@@ -4933,24 +5045,24 @@ var ScWorkspaceSwitchMobile = ({
4933
5045
  ...props
4934
5046
  }) => {
4935
5047
  const variant = currentWs ? "current" : "other";
4936
- return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
5048
+ return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
4937
5049
  "div",
4938
5050
  {
4939
5051
  className: ScWorkspaceSwitchMobile_default.scWorkspaceSwitchMobile + " " + ScWorkspaceSwitchMobile_default["variant-" + variant] + " " + className,
4940
5052
  onClick,
4941
5053
  ...props,
4942
5054
  children: [
4943
- /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.workspaceInfo, children: [
4944
- /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.wsNameRow, children: [
4945
- /* @__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 }) }),
4946
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("p", { className: ScWorkspaceSwitchMobile_default.storeName, children: storeName })
5055
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.workspaceInfo, children: [
5056
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.wsNameRow, children: [
5057
+ /* @__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 }) }),
5058
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("p", { className: ScWorkspaceSwitchMobile_default.storeName, children: storeName })
4947
5059
  ] }),
4948
- /* @__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 }) })
5060
+ /* @__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 }) })
4949
5061
  ] }),
4950
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { className: ScWorkspaceSwitchMobile_default.divider }),
4951
- /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.ownerRow, children: [
4952
- /* @__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 }) }),
4953
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("p", { className: ScWorkspaceSwitchMobile_default.ownerText, children: ownerId })
5062
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("div", { className: ScWorkspaceSwitchMobile_default.divider }),
5063
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.ownerRow, children: [
5064
+ /* @__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 }) }),
5065
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("p", { className: ScWorkspaceSwitchMobile_default.ownerText, children: ownerId })
4954
5066
  ] })
4955
5067
  ]
4956
5068
  }
@@ -4977,7 +5089,7 @@ var ScWorkspaceSettingsMobile_default = {
4977
5089
  };
4978
5090
 
4979
5091
  // src/SC-workspaceSettings-Mobile/ScWorkspaceSettingsMobile.tsx
4980
- var import_jsx_runtime68 = require("react/jsx-runtime");
5092
+ var import_jsx_runtime69 = require("react/jsx-runtime");
4981
5093
  var ScWorkspaceSettingsMobile = ({
4982
5094
  storeName = "Stores",
4983
5095
  initials = "WS",
@@ -4992,28 +5104,28 @@ var ScWorkspaceSettingsMobile = ({
4992
5104
  ...props
4993
5105
  }) => {
4994
5106
  const variant = currentWs ? "current" : "other";
4995
- return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
5107
+ return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(
4996
5108
  "div",
4997
5109
  {
4998
5110
  className: ScWorkspaceSettingsMobile_default.scWorkspaceSettingsMobile + " " + ScWorkspaceSettingsMobile_default["variant-" + variant] + " " + className,
4999
5111
  onClick,
5000
5112
  ...props,
5001
5113
  children: [
5002
- /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.workspaceInfo, children: [
5003
- /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.wsNameRow, children: [
5004
- /* @__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 }) }),
5005
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("p", { className: ScWorkspaceSettingsMobile_default.storeName, children: storeName })
5114
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.workspaceInfo, children: [
5115
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.wsNameRow, children: [
5116
+ /* @__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 }) }),
5117
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("p", { className: ScWorkspaceSettingsMobile_default.storeName, children: storeName })
5006
5118
  ] }),
5007
- /* @__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 }) })
5119
+ /* @__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 }) })
5008
5120
  ] }),
5009
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("div", { className: ScWorkspaceSettingsMobile_default.divider }),
5010
- /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
5011
- /* @__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 }) }),
5012
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: ownerId })
5121
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScWorkspaceSettingsMobile_default.divider }),
5122
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
5123
+ /* @__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 }) }),
5124
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: ownerId })
5013
5125
  ] }),
5014
- /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
5015
- /* @__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 }) }),
5016
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: teamCount })
5126
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
5127
+ /* @__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 }) }),
5128
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: teamCount })
5017
5129
  ] })
5018
5130
  ]
5019
5131
  }
@@ -5036,7 +5148,7 @@ var ScMobileTopNav_default = {
5036
5148
  };
5037
5149
 
5038
5150
  // src/SC-MobileTopNav/ScMobileTopNav.tsx
5039
- var import_jsx_runtime69 = require("react/jsx-runtime");
5151
+ var import_jsx_runtime70 = require("react/jsx-runtime");
5040
5152
  var ScMobileTopNav = ({
5041
5153
  type = "home",
5042
5154
  searchIcon = false,
@@ -5059,22 +5171,22 @@ var ScMobileTopNav = ({
5059
5171
  }) => {
5060
5172
  const hasBorder = type === "chat" || type === "inApp";
5061
5173
  const showSearch = type === "inApp" && searchIcon && search;
5062
- return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(
5174
+ return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
5063
5175
  "div",
5064
5176
  {
5065
5177
  className: ScMobileTopNav_default.scMobileTopNav + " " + (hasBorder ? ScMobileTopNav_default.withBorder : "") + " " + className,
5066
5178
  ...props,
5067
5179
  children: [
5068
- 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 }) }),
5069
- type === "chat" && /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(import_jsx_runtime69.Fragment, { children: [
5070
- /* @__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 }) }),
5071
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("p", { className: ScMobileTopNav_default.chatTitle, children: chatTitle }),
5072
- /* @__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 }) })
5180
+ 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 }) }),
5181
+ type === "chat" && /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(import_jsx_runtime70.Fragment, { children: [
5182
+ /* @__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 }) }),
5183
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("p", { className: ScMobileTopNav_default.chatTitle, children: chatTitle }),
5184
+ /* @__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 }) })
5073
5185
  ] }),
5074
- showSearch && /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(import_jsx_runtime69.Fragment, { children: [
5075
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScMobileTopNav_default.searchRow, children: /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScMobileTopNav_default.searchInputContainer, children: [
5076
- /* @__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 }) }),
5077
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: ScMobileTopNav_default.searchInput, children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5186
+ showSearch && /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(import_jsx_runtime70.Fragment, { children: [
5187
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: ScMobileTopNav_default.searchRow, children: /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)("div", { className: ScMobileTopNav_default.searchInputContainer, children: [
5188
+ /* @__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 }) }),
5189
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: ScMobileTopNav_default.searchInput, children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
5078
5190
  "input",
5079
5191
  {
5080
5192
  type: "text",
@@ -5085,17 +5197,17 @@ var ScMobileTopNav = ({
5085
5197
  }
5086
5198
  ) })
5087
5199
  ] }) }),
5088
- /* @__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 }) })
5200
+ /* @__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 }) })
5089
5201
  ] }),
5090
- type === "inApp" && !search && /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(import_jsx_runtime69.Fragment, { children: [
5091
- /* @__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 }) }),
5092
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("p", { className: ScMobileTopNav_default.heading, children: heading }),
5093
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5202
+ type === "inApp" && !search && /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(import_jsx_runtime70.Fragment, { children: [
5203
+ /* @__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 }) }),
5204
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("p", { className: ScMobileTopNav_default.heading, children: heading }),
5205
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
5094
5206
  "div",
5095
5207
  {
5096
5208
  className: ScMobileTopNav_default.iconContainer + " " + (!searchIcon ? ScMobileTopNav_default.hidden : ""),
5097
5209
  onClick: onSearchClick,
5098
- 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 })
5210
+ 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 })
5099
5211
  }
5100
5212
  )
5101
5213
  ] })
@@ -5116,7 +5228,7 @@ var ScMobileBottomAction_default = {
5116
5228
  };
5117
5229
 
5118
5230
  // src/SC-MobileBottomAction/ScMobileBottomAction.tsx
5119
- var import_jsx_runtime70 = require("react/jsx-runtime");
5231
+ var import_jsx_runtime71 = require("react/jsx-runtime");
5120
5232
  var ScMobileBottomAction = ({
5121
5233
  text = "Save Changes",
5122
5234
  disabled = false,
@@ -5128,28 +5240,28 @@ var ScMobileBottomAction = ({
5128
5240
  ...props
5129
5241
  }) => {
5130
5242
  const isTwoButton = !!secondaryText;
5131
- return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
5243
+ return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
5132
5244
  "div",
5133
5245
  {
5134
5246
  className: ScMobileBottomAction_default.scMobileBottomAction + (isTwoButton ? " " + ScMobileBottomAction_default.twoButton : "") + " " + className,
5135
5247
  ...props,
5136
5248
  children: [
5137
- isTwoButton && /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
5249
+ isTwoButton && /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
5138
5250
  "button",
5139
5251
  {
5140
5252
  className: ScMobileBottomAction_default.outlineButton + " " + (secondaryDisabled ? ScMobileBottomAction_default.disabled : ""),
5141
5253
  onClick: onSecondaryClick,
5142
5254
  disabled: secondaryDisabled,
5143
- children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("span", { className: ScMobileBottomAction_default.outlineButtonText, children: secondaryText })
5255
+ children: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("span", { className: ScMobileBottomAction_default.outlineButtonText, children: secondaryText })
5144
5256
  }
5145
5257
  ),
5146
- /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
5258
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
5147
5259
  "button",
5148
5260
  {
5149
5261
  className: ScMobileBottomAction_default.button + " " + (disabled ? ScMobileBottomAction_default.disabled : ""),
5150
5262
  onClick,
5151
5263
  disabled,
5152
- children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("span", { className: ScMobileBottomAction_default.buttonText, children: text })
5264
+ children: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("span", { className: ScMobileBottomAction_default.buttonText, children: text })
5153
5265
  }
5154
5266
  )
5155
5267
  ]
@@ -5167,7 +5279,7 @@ var ScPopUpMenu_default = {
5167
5279
  };
5168
5280
 
5169
5281
  // src/SC-PopUpMenu/ScPopUpMenu.tsx
5170
- var import_jsx_runtime71 = require("react/jsx-runtime");
5282
+ var import_jsx_runtime72 = require("react/jsx-runtime");
5171
5283
  var ScPopUpMenu = ({
5172
5284
  menu = "Options",
5173
5285
  state = "default",
@@ -5176,15 +5288,15 @@ var ScPopUpMenu = ({
5176
5288
  className,
5177
5289
  ...props
5178
5290
  }) => {
5179
- return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
5291
+ return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
5180
5292
  "div",
5181
5293
  {
5182
5294
  className: ScPopUpMenu_default.scPopUpMenu + " " + ScPopUpMenu_default["state-" + state] + " " + className,
5183
5295
  onClick,
5184
5296
  ...props,
5185
5297
  children: [
5186
- icon && /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("span", { className: ScPopUpMenu_default.icon, children: icon }),
5187
- /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("p", { className: ScPopUpMenu_default.menuText, children: menu })
5298
+ icon && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("span", { className: ScPopUpMenu_default.icon, children: icon }),
5299
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScPopUpMenu_default.menuText, children: menu })
5188
5300
  ]
5189
5301
  }
5190
5302
  );
@@ -5210,7 +5322,7 @@ var ScReferralCardMobile_default = {
5210
5322
  };
5211
5323
 
5212
5324
  // src/SC-referralCard-Mobile/ScReferralCardMobile.tsx
5213
- var import_jsx_runtime72 = require("react/jsx-runtime");
5325
+ var import_jsx_runtime73 = require("react/jsx-runtime");
5214
5326
  var ScReferralCardMobile = ({
5215
5327
  name = "Chris Hemsworth",
5216
5328
  email = "chris@kepler.com",
@@ -5223,27 +5335,27 @@ var ScReferralCardMobile = ({
5223
5335
  ...props
5224
5336
  }) => {
5225
5337
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
5226
- return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
5338
+ return /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)(
5227
5339
  "div",
5228
5340
  {
5229
5341
  className: ScReferralCardMobile_default.scReferralCardMobile + " " + className,
5230
5342
  onClick,
5231
5343
  ...props,
5232
5344
  children: [
5233
- /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScReferralCardMobile_default.userRow, children: [
5234
- /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScReferralCardMobile_default.profileSection, children: [
5235
- /* @__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 }) }),
5236
- /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScReferralCardMobile_default.userInfo, children: [
5237
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScReferralCardMobile_default.userName, children: name }),
5238
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScReferralCardMobile_default.userEmail, children: email })
5345
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScReferralCardMobile_default.userRow, children: [
5346
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScReferralCardMobile_default.profileSection, children: [
5347
+ /* @__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 }) }),
5348
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScReferralCardMobile_default.userInfo, children: [
5349
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScReferralCardMobile_default.userName, children: name }),
5350
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScReferralCardMobile_default.userEmail, children: email })
5239
5351
  ] })
5240
5352
  ] }),
5241
- /* @__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 }) })
5353
+ /* @__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 }) })
5242
5354
  ] }),
5243
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("div", { className: ScReferralCardMobile_default.divider }),
5244
- /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScReferralCardMobile_default.detailsRow, children: [
5245
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScReferralCardMobile_default.dateText, children: date }),
5246
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScReferralCardMobile_default.creditsText, children: credits })
5355
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: ScReferralCardMobile_default.divider }),
5356
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScReferralCardMobile_default.detailsRow, children: [
5357
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScReferralCardMobile_default.dateText, children: date }),
5358
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScReferralCardMobile_default.creditsText, children: credits })
5247
5359
  ] })
5248
5360
  ]
5249
5361
  }
@@ -5260,19 +5372,19 @@ var InvoiceHistoryMobile_default = {
5260
5372
  };
5261
5373
 
5262
5374
  // src/SC-InvoiceHistoryMobile/InvoiceHistoryMobile.tsx
5263
- var import_jsx_runtime73 = require("react/jsx-runtime");
5375
+ var import_jsx_runtime74 = require("react/jsx-runtime");
5264
5376
  var InvoiceHistoryMobile = ({
5265
5377
  invoiceId = "# INV-2800-2026",
5266
5378
  date = "Nov 9th, 2025",
5267
5379
  amount = "$320.89",
5268
5380
  className
5269
5381
  }) => {
5270
- return /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: InvoiceHistoryMobile_default.invoiceHistoryMobile + " " + (className ?? ""), children: [
5271
- /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: InvoiceHistoryMobile_default.info, children: [
5272
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: InvoiceHistoryMobile_default.invoiceId, children: invoiceId }),
5273
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: InvoiceHistoryMobile_default.date, children: date })
5382
+ return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: InvoiceHistoryMobile_default.invoiceHistoryMobile + " " + (className ?? ""), children: [
5383
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: InvoiceHistoryMobile_default.info, children: [
5384
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: InvoiceHistoryMobile_default.invoiceId, children: invoiceId }),
5385
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: InvoiceHistoryMobile_default.date, children: date })
5274
5386
  ] }),
5275
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: InvoiceHistoryMobile_default.amount, children: amount })
5387
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: InvoiceHistoryMobile_default.amount, children: amount })
5276
5388
  ] });
5277
5389
  };
5278
5390
 
@@ -5290,7 +5402,7 @@ var UsageHistoryMobile_default = {
5290
5402
  };
5291
5403
 
5292
5404
  // src/SC-UsageHistoryMobile/UsageHistoryMobile.tsx
5293
- var import_jsx_runtime74 = require("react/jsx-runtime");
5405
+ var import_jsx_runtime75 = require("react/jsx-runtime");
5294
5406
  var UsageHistoryMobile = ({
5295
5407
  serviceName = "Artifax Generation",
5296
5408
  credits = "50",
@@ -5299,18 +5411,18 @@ var UsageHistoryMobile = ({
5299
5411
  balance = "84,902",
5300
5412
  className
5301
5413
  }) => {
5302
- return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: UsageHistoryMobile_default.usageHistoryMobile + " " + (className ?? ""), children: [
5303
- /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: UsageHistoryMobile_default.row1, children: [
5304
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("span", { className: UsageHistoryMobile_default.serviceName, children: serviceName }),
5305
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("span", { className: UsageHistoryMobile_default.credits, children: credits })
5414
+ return /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: UsageHistoryMobile_default.usageHistoryMobile + " " + (className ?? ""), children: [
5415
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: UsageHistoryMobile_default.row1, children: [
5416
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { className: UsageHistoryMobile_default.serviceName, children: serviceName }),
5417
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { className: UsageHistoryMobile_default.credits, children: credits })
5306
5418
  ] }),
5307
- /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: UsageHistoryMobile_default.row2, children: [
5308
- /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: UsageHistoryMobile_default.metaLeft, children: [
5309
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("span", { className: UsageHistoryMobile_default.metaText, children: userName }),
5310
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: UsageHistoryMobile_default.divider }),
5311
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("span", { className: UsageHistoryMobile_default.metaText, children: date })
5419
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: UsageHistoryMobile_default.row2, children: [
5420
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: UsageHistoryMobile_default.metaLeft, children: [
5421
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { className: UsageHistoryMobile_default.metaText, children: userName }),
5422
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: UsageHistoryMobile_default.divider }),
5423
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { className: UsageHistoryMobile_default.metaText, children: date })
5312
5424
  ] }),
5313
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("span", { className: UsageHistoryMobile_default.balance, children: balance })
5425
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { className: UsageHistoryMobile_default.balance, children: balance })
5314
5426
  ] })
5315
5427
  ] });
5316
5428
  };
@@ -5334,7 +5446,7 @@ var ScWorkspaceSwitchMobileV2_default = {
5334
5446
  };
5335
5447
 
5336
5448
  // src/SC-WorkspaceSwitchMobile-V2/ScWorkspaceSwitchMobileV2.tsx
5337
- var import_jsx_runtime75 = require("react/jsx-runtime");
5449
+ var import_jsx_runtime76 = require("react/jsx-runtime");
5338
5450
  var ScWorkspaceSwitchMobileV2 = ({
5339
5451
  wsName = "Workspace name is kepler",
5340
5452
  initials = "WS",
@@ -5347,14 +5459,14 @@ var ScWorkspaceSwitchMobileV2 = ({
5347
5459
  className,
5348
5460
  ...props
5349
5461
  }) => {
5350
- return /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
5462
+ return /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
5351
5463
  "div",
5352
5464
  {
5353
5465
  className: ScWorkspaceSwitchMobileV2_default.scWorkspaceSwitchMobileV2 + " " + ScWorkspaceSwitchMobileV2_default["type-" + type] + " " + className,
5354
5466
  onClick,
5355
5467
  ...props,
5356
- children: /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.workspaceInfo, children: [
5357
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dpContainer, children: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
5468
+ children: /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.workspaceInfo, children: [
5469
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dpContainer, children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
5358
5470
  ScDp,
5359
5471
  {
5360
5472
  type: imageUrl ? "image" : "initial",
@@ -5368,14 +5480,14 @@ var ScWorkspaceSwitchMobileV2 = ({
5368
5480
  }
5369
5481
  }
5370
5482
  ) }),
5371
- /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.textContainer, children: [
5372
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("p", { className: ScWorkspaceSwitchMobileV2_default.wsName, children: wsName }),
5373
- /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.userDetails, children: [
5374
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.roleText + (role === "Member" ? " " + ScWorkspaceSwitchMobileV2_default.roleMember : ""), children: role }),
5375
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
5376
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.planText, children: plan }),
5377
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
5378
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.ownerText, children: ownerId })
5483
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.textContainer, children: [
5484
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("p", { className: ScWorkspaceSwitchMobileV2_default.wsName, children: wsName }),
5485
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.userDetails, children: [
5486
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.roleText + (role === "Member" ? " " + ScWorkspaceSwitchMobileV2_default.roleMember : ""), children: role }),
5487
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
5488
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.planText, children: plan }),
5489
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
5490
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.ownerText, children: ownerId })
5379
5491
  ] })
5380
5492
  ] })
5381
5493
  ] })
@@ -5401,8 +5513,8 @@ var ScImageField_default = {
5401
5513
  };
5402
5514
 
5403
5515
  // src/SC-imageField/ScImageField.tsx
5404
- var import_icons54 = require("@streamoid/icons");
5405
- var import_jsx_runtime76 = require("react/jsx-runtime");
5516
+ var import_icons55 = require("@streamoid/icons");
5517
+ var import_jsx_runtime77 = require("react/jsx-runtime");
5406
5518
  var ScImageField = ({
5407
5519
  label = "Label",
5408
5520
  imagePreview,
@@ -5425,8 +5537,8 @@ var ScImageField = ({
5425
5537
  }
5426
5538
  e.target.value = "";
5427
5539
  }
5428
- return /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)("div", { className: ScImageField_default.scImageField + " " + (className ?? ""), children: [
5429
- /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
5540
+ return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)("div", { className: ScImageField_default.scImageField + " " + (className ?? ""), children: [
5541
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
5430
5542
  "input",
5431
5543
  {
5432
5544
  ref: inputRef,
@@ -5436,9 +5548,9 @@ var ScImageField = ({
5436
5548
  onChange: handleChange
5437
5549
  }
5438
5550
  ),
5439
- /* @__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 }) }),
5440
- hasImage ? /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)("div", { className: ScImageField_default.previewArea, children: [
5441
- /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
5551
+ /* @__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 }) }),
5552
+ hasImage ? /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)("div", { className: ScImageField_default.previewArea, children: [
5553
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
5442
5554
  "img",
5443
5555
  {
5444
5556
  className: ScImageField_default.previewImage,
@@ -5446,9 +5558,9 @@ var ScImageField = ({
5446
5558
  alt: "preview"
5447
5559
  }
5448
5560
  ),
5449
- /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("span", { className: ScImageField_default.fileName, children: imageName || "image" }),
5450
- /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
5451
- import_icons54.SiconDelete,
5561
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("span", { className: ScImageField_default.fileName, children: imageName || "image" }),
5562
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
5563
+ import_icons55.SiconDelete,
5452
5564
  {
5453
5565
  className: ScImageField_default.removeIcon,
5454
5566
  color: "var(--alias-text-and-icons-error, #d11a1a)",
@@ -5458,9 +5570,9 @@ var ScImageField = ({
5458
5570
  }
5459
5571
  }
5460
5572
  )
5461
- ] }) : /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)("div", { className: ScImageField_default.uploadArea, onClick: handleClick, children: [
5462
- /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(import_icons54.SiconUpload, { className: ScImageField_default.uploadIcon, color: "var(--alias-text-and-icons-secondary, #dadada)" }),
5463
- /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("span", { className: ScImageField_default.uploadText, children: "Click to upload" })
5573
+ ] }) : /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)("div", { className: ScImageField_default.uploadArea, onClick: handleClick, children: [
5574
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(import_icons55.SiconUpload, { className: ScImageField_default.uploadIcon, color: "var(--alias-text-and-icons-secondary, #dadada)" }),
5575
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("span", { className: ScImageField_default.uploadText, children: "Click to upload" })
5464
5576
  ] })
5465
5577
  ] });
5466
5578
  };
@@ -5474,7 +5586,7 @@ var ScSettingsTabComp_default = {
5474
5586
  };
5475
5587
 
5476
5588
  // src/SC-settingsTabComp/ScSettingsTabComp.tsx
5477
- var import_jsx_runtime77 = require("react/jsx-runtime");
5589
+ var import_jsx_runtime78 = require("react/jsx-runtime");
5478
5590
  var ScSettingsTabComp = ({
5479
5591
  tabName = "Tab",
5480
5592
  active = false,
@@ -5482,12 +5594,12 @@ var ScSettingsTabComp = ({
5482
5594
  className
5483
5595
  }) => {
5484
5596
  const variantsClassName = ScSettingsTabComp_default["active-" + active];
5485
- return /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
5597
+ return /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
5486
5598
  "div",
5487
5599
  {
5488
5600
  className: ScSettingsTabComp_default.scSettingsTabComp + " " + variantsClassName + " " + (className ?? ""),
5489
5601
  onClick,
5490
- children: /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("span", { className: ScSettingsTabComp_default.tabText, children: tabName })
5602
+ children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("span", { className: ScSettingsTabComp_default.tabText, children: tabName })
5491
5603
  }
5492
5604
  );
5493
5605
  };
@@ -5506,8 +5618,8 @@ var ScCreditsUsageCardMobile_default = {
5506
5618
  };
5507
5619
 
5508
5620
  // src/SC-Credits usage card-Mobile/ScCreditsUsageCardMobile.tsx
5509
- var import_icons55 = require("@streamoid/icons");
5510
- var import_jsx_runtime78 = require("react/jsx-runtime");
5621
+ var import_icons56 = require("@streamoid/icons");
5622
+ var import_jsx_runtime79 = require("react/jsx-runtime");
5511
5623
  var ScCreditsUsageCardMobile = ({
5512
5624
  usageLabel = "Credits usage",
5513
5625
  usageText = "8,450 / 30,000",
@@ -5517,23 +5629,23 @@ var ScCreditsUsageCardMobile = ({
5517
5629
  className,
5518
5630
  ...props
5519
5631
  }) => {
5520
- return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: ScCreditsUsageCardMobile_default.scCreditsUsageCardMobile + " " + (className ?? ""), ...props, children: [
5521
- /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: ScCreditsUsageCardMobile_default.header, children: [
5522
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
5523
- import_icons55.SiconCredits,
5632
+ return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: ScCreditsUsageCardMobile_default.scCreditsUsageCardMobile + " " + (className ?? ""), ...props, children: [
5633
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: ScCreditsUsageCardMobile_default.header, children: [
5634
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
5635
+ import_icons56.SiconCredits,
5524
5636
  {
5525
5637
  className: ScCreditsUsageCardMobile_default.headerIcon,
5526
5638
  color: "var(--alias-text-and-icons-tertiary, #9e9e9e)"
5527
5639
  }
5528
5640
  ),
5529
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("span", { className: ScCreditsUsageCardMobile_default.headerLabel, children: usageLabel })
5641
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("span", { className: ScCreditsUsageCardMobile_default.headerLabel, children: usageLabel })
5530
5642
  ] }),
5531
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScCreditsUsageCardMobile_default.divider }),
5532
- /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: ScCreditsUsageCardMobile_default.usageInfo, children: [
5533
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScCreditsUsageCardMobile_default.usageText, children: usageText }),
5534
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScCreditsUsageCardMobile_default.remainingText, children: remainingText })
5643
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: ScCreditsUsageCardMobile_default.divider }),
5644
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: ScCreditsUsageCardMobile_default.usageInfo, children: [
5645
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: ScCreditsUsageCardMobile_default.usageText, children: usageText }),
5646
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: ScCreditsUsageCardMobile_default.remainingText, children: remainingText })
5535
5647
  ] }),
5536
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
5648
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
5537
5649
  ScButton,
5538
5650
  {
5539
5651
  text: buyButtonText,
@@ -5564,8 +5676,8 @@ var ScPlanDetailsCardMobile_default = {
5564
5676
  };
5565
5677
 
5566
5678
  // src/SC-Plan details card-Mobile/ScPlanDetailsCardMobile.tsx
5567
- var import_icons56 = require("@streamoid/icons");
5568
- var import_jsx_runtime79 = require("react/jsx-runtime");
5679
+ var import_icons57 = require("@streamoid/icons");
5680
+ var import_jsx_runtime80 = require("react/jsx-runtime");
5569
5681
  var ScPlanDetailsCardMobile = ({
5570
5682
  planName = "Pro",
5571
5683
  planCredits = "30,000 credits",
@@ -5577,19 +5689,19 @@ var ScPlanDetailsCardMobile = ({
5577
5689
  className,
5578
5690
  ...props
5579
5691
  }) => {
5580
- return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: ScPlanDetailsCardMobile_default.scPlanDetailsCardMobile + " " + (className ?? ""), ...props, children: [
5581
- /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planHeader, children: [
5582
- /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: ScPlanDetailsCardMobile_default.headerLeft, children: [
5583
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
5584
- import_icons56.SiconBilling,
5692
+ return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: ScPlanDetailsCardMobile_default.scPlanDetailsCardMobile + " " + (className ?? ""), ...props, children: [
5693
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planHeader, children: [
5694
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: ScPlanDetailsCardMobile_default.headerLeft, children: [
5695
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
5696
+ import_icons57.SiconBilling,
5585
5697
  {
5586
5698
  className: ScPlanDetailsCardMobile_default.headerIcon,
5587
5699
  color: "var(--alias-text-and-icons-tertiary, #9e9e9e)"
5588
5700
  }
5589
5701
  ),
5590
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("span", { className: ScPlanDetailsCardMobile_default.headerLabel, children: currentPlanLabel })
5702
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: ScPlanDetailsCardMobile_default.headerLabel, children: currentPlanLabel })
5591
5703
  ] }),
5592
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
5704
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
5593
5705
  ScBadges,
5594
5706
  {
5595
5707
  text: badgeText,
@@ -5599,16 +5711,16 @@ var ScPlanDetailsCardMobile = ({
5599
5711
  }
5600
5712
  )
5601
5713
  ] }),
5602
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: ScPlanDetailsCardMobile_default.divider }),
5603
- /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planInfo, children: [
5604
- /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planNameRow, children: [
5605
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("span", { className: ScPlanDetailsCardMobile_default.planName, children: planName }),
5606
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: ScPlanDetailsCardMobile_default.dot }),
5607
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("span", { className: ScPlanDetailsCardMobile_default.planName, children: planCredits })
5714
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("div", { className: ScPlanDetailsCardMobile_default.divider }),
5715
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planInfo, children: [
5716
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planNameRow, children: [
5717
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: ScPlanDetailsCardMobile_default.planName, children: planName }),
5718
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("div", { className: ScPlanDetailsCardMobile_default.dot }),
5719
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: ScPlanDetailsCardMobile_default.planName, children: planCredits })
5608
5720
  ] }),
5609
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: ScPlanDetailsCardMobile_default.planPrice, children: planPrice })
5721
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("div", { className: ScPlanDetailsCardMobile_default.planPrice, children: planPrice })
5610
5722
  ] }),
5611
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
5723
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
5612
5724
  ScButton,
5613
5725
  {
5614
5726
  text: upgradeButtonText,