@streamoid/ui 0.5.1 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -1602,7 +1602,10 @@ var ScPlanDetailsCard_default = {
1602
1602
  scPlanDetailsCard: "ScPlanDetailsCard_scPlanDetailsCard",
1603
1603
  planHeader: "ScPlanDetailsCard_planHeader",
1604
1604
  scPairtextInstance: "ScPlanDetailsCard_scPairtextInstance",
1605
+ badgeGroup: "ScPlanDetailsCard_badgeGroup",
1605
1606
  scBadgesInstance: "ScPlanDetailsCard_scBadgesInstance",
1607
+ badgeDot: "ScPlanDetailsCard_badgeDot",
1608
+ badgeSubText: "ScPlanDetailsCard_badgeSubText",
1606
1609
  scHDividerInstance: "ScPlanDetailsCard_scHDividerInstance",
1607
1610
  planDetails: "ScPlanDetailsCard_planDetails",
1608
1611
  planInfo: "ScPlanDetailsCard_planInfo",
@@ -1610,20 +1613,29 @@ var ScPlanDetailsCard_default = {
1610
1613
  planName: "ScPlanDetailsCard_planName",
1611
1614
  dotSeparator: "ScPlanDetailsCard_dotSeparator",
1612
1615
  planPrice: "ScPlanDetailsCard_planPrice",
1613
- scButtonInstance: "ScPlanDetailsCard_scButtonInstance"
1616
+ scButtonInstance: "ScPlanDetailsCard_scButtonInstance",
1617
+ skeletonPill: "ScPlanDetailsCard_skeletonPill",
1618
+ skeletonShimmer: "ScPlanDetailsCard_skeletonShimmer",
1619
+ badgeSkeleton: "ScPlanDetailsCard_badgeSkeleton",
1620
+ planNameSkeleton: "ScPlanDetailsCard_planNameSkeleton",
1621
+ creditsSkeleton: "ScPlanDetailsCard_creditsSkeleton",
1622
+ priceSkeleton: "ScPlanDetailsCard_priceSkeleton",
1623
+ buttonSkeleton: "ScPlanDetailsCard_buttonSkeleton"
1614
1624
  };
1615
1625
 
1616
1626
  // src/SC-Plan details card/ScPlanDetailsCard.tsx
1617
1627
  import { SiconBilling } from "@streamoid/icons";
1618
1628
  import { SiconHome as SiconHome5 } from "@streamoid/icons";
1619
- import { jsx as jsx24, jsxs as jsxs19 } from "react/jsx-runtime";
1629
+ import { Fragment as Fragment6, jsx as jsx24, jsxs as jsxs19 } from "react/jsx-runtime";
1620
1630
  var ScPlanDetailsCard = ({
1621
1631
  planName = "Free",
1622
1632
  planCredits = "30,000 credits",
1623
1633
  planPrice = "\u20B90.00 / month",
1624
1634
  badgeText = "Active",
1635
+ badgeSubText,
1625
1636
  currentPlanLabel = "Current plan",
1626
1637
  upgradeButtonText = "Upgrade",
1638
+ isLoading = false,
1627
1639
  onUpgrade,
1628
1640
  className,
1629
1641
  ...props
@@ -1638,27 +1650,39 @@ var ScPlanDetailsCard = ({
1638
1650
  className: ScPlanDetailsCard_default.scPairtextInstance
1639
1651
  }
1640
1652
  ),
1641
- /* @__PURE__ */ jsx24(
1642
- ScBadges,
1643
- {
1644
- text: badgeText,
1645
- variant: "success",
1646
- styleVariant: "opaque",
1647
- className: ScPlanDetailsCard_default.scBadgesInstance
1648
- }
1649
- )
1653
+ /* @__PURE__ */ jsx24("div", { className: ScPlanDetailsCard_default.badgeGroup, children: isLoading ? /* @__PURE__ */ jsx24("span", { className: `${ScPlanDetailsCard_default.skeletonPill} ${ScPlanDetailsCard_default.badgeSkeleton}` }) : /* @__PURE__ */ jsxs19(Fragment6, { children: [
1654
+ /* @__PURE__ */ jsx24(
1655
+ ScBadges,
1656
+ {
1657
+ text: badgeText,
1658
+ variant: "success",
1659
+ styleVariant: "opaque",
1660
+ className: ScPlanDetailsCard_default.scBadgesInstance
1661
+ }
1662
+ ),
1663
+ badgeSubText && /* @__PURE__ */ jsxs19(Fragment6, { children: [
1664
+ /* @__PURE__ */ jsx24("span", { className: ScPlanDetailsCard_default.badgeDot }),
1665
+ /* @__PURE__ */ jsx24("span", { className: ScPlanDetailsCard_default.badgeSubText, children: badgeSubText })
1666
+ ] })
1667
+ ] }) })
1650
1668
  ] }),
1651
1669
  /* @__PURE__ */ jsx24(ScHDivider, { className: ScPlanDetailsCard_default.scHDividerInstance }),
1652
1670
  /* @__PURE__ */ jsxs19("div", { className: ScPlanDetailsCard_default.planDetails, children: [
1653
- /* @__PURE__ */ jsxs19("div", { className: ScPlanDetailsCard_default.planInfo, children: [
1671
+ /* @__PURE__ */ jsx24("div", { className: ScPlanDetailsCard_default.planInfo, children: isLoading ? /* @__PURE__ */ jsxs19(Fragment6, { children: [
1672
+ /* @__PURE__ */ jsxs19("div", { className: ScPlanDetailsCard_default.planNameRow, "aria-label": "Loading plan details", children: [
1673
+ /* @__PURE__ */ jsx24("span", { className: `${ScPlanDetailsCard_default.skeletonPill} ${ScPlanDetailsCard_default.planNameSkeleton}` }),
1674
+ /* @__PURE__ */ jsx24("span", { className: `${ScPlanDetailsCard_default.skeletonPill} ${ScPlanDetailsCard_default.creditsSkeleton}` })
1675
+ ] }),
1676
+ /* @__PURE__ */ jsx24("span", { className: `${ScPlanDetailsCard_default.skeletonPill} ${ScPlanDetailsCard_default.priceSkeleton}` })
1677
+ ] }) : /* @__PURE__ */ jsxs19(Fragment6, { children: [
1654
1678
  /* @__PURE__ */ jsxs19("div", { className: ScPlanDetailsCard_default.planNameRow, children: [
1655
1679
  /* @__PURE__ */ jsx24("span", { className: ScPlanDetailsCard_default.planName, children: planName }),
1656
1680
  /* @__PURE__ */ jsx24("span", { className: ScPlanDetailsCard_default.dotSeparator }),
1657
1681
  /* @__PURE__ */ jsx24("span", { className: ScPlanDetailsCard_default.planName, children: planCredits })
1658
1682
  ] }),
1659
1683
  /* @__PURE__ */ jsx24("div", { className: ScPlanDetailsCard_default.planPrice, children: planPrice })
1660
- ] }),
1661
- /* @__PURE__ */ jsx24(
1684
+ ] }) }),
1685
+ isLoading ? /* @__PURE__ */ jsx24("span", { className: `${ScPlanDetailsCard_default.skeletonPill} ${ScPlanDetailsCard_default.buttonSkeleton}` }) : /* @__PURE__ */ jsx24(
1662
1686
  ScButton,
1663
1687
  {
1664
1688
  icon: /* @__PURE__ */ jsx24(SiconHome5, { className: ScPlanDetailsCard_default.siconHomeInstance }),
@@ -1683,7 +1707,7 @@ var ScProfile_default = {
1683
1707
  };
1684
1708
 
1685
1709
  // src/SC-Profile/ScProfile.tsx
1686
- import { Fragment as Fragment6, jsx as jsx25, jsxs as jsxs20 } from "react/jsx-runtime";
1710
+ import { Fragment as Fragment7, jsx as jsx25, jsxs as jsxs20 } from "react/jsx-runtime";
1687
1711
  var ScProfile = ({
1688
1712
  name = "Chris Hemsworth",
1689
1713
  subText = "Kepler workspace",
@@ -1700,7 +1724,7 @@ var ScProfile = ({
1700
1724
  ...props,
1701
1725
  children: [
1702
1726
  /* @__PURE__ */ jsx25("img", { className: ScProfile_default.profileImage, src: profileImage }),
1703
- collapsed === "false" && /* @__PURE__ */ jsx25(Fragment6, { children: /* @__PURE__ */ jsxs20("div", { className: ScProfile_default.userInfo, children: [
1727
+ collapsed === "false" && /* @__PURE__ */ jsx25(Fragment7, { children: /* @__PURE__ */ jsxs20("div", { className: ScProfile_default.userInfo, children: [
1704
1728
  /* @__PURE__ */ jsxs20("div", { className: ScProfile_default.userName, children: [
1705
1729
  name,
1706
1730
  " "
@@ -1849,7 +1873,7 @@ var ScWorkspace_default = {
1849
1873
  };
1850
1874
 
1851
1875
  // src/SC-Workspace/ScWorkspace.tsx
1852
- import { Fragment as Fragment7, jsx as jsx28, jsxs as jsxs22 } from "react/jsx-runtime";
1876
+ import { Fragment as Fragment8, jsx as jsx28, jsxs as jsxs22 } from "react/jsx-runtime";
1853
1877
  var ScWorkspace = ({
1854
1878
  collapsed = "false",
1855
1879
  workspaceName = "Kepler",
@@ -1866,7 +1890,7 @@ var ScWorkspace = ({
1866
1890
  ...props,
1867
1891
  children: [
1868
1892
  /* @__PURE__ */ jsx28("img", { className: ScWorkspace_default.profileImage, src: profileImage }),
1869
- collapsed === "false" && /* @__PURE__ */ jsx28(Fragment7, { children: /* @__PURE__ */ jsxs22("div", { className: ScWorkspace_default.userInfo, children: [
1893
+ collapsed === "false" && /* @__PURE__ */ jsx28(Fragment8, { children: /* @__PURE__ */ jsxs22("div", { className: ScWorkspace_default.userInfo, children: [
1870
1894
  /* @__PURE__ */ jsxs22("div", { className: ScWorkspace_default.userName, children: [
1871
1895
  workspaceName,
1872
1896
  " "
@@ -1900,7 +1924,7 @@ var ScTabComp_default = {
1900
1924
 
1901
1925
  // src/SC-tabComp/ScTabComp.tsx
1902
1926
  import { SiconHome as SiconHome6 } from "@streamoid/icons";
1903
- import { Fragment as Fragment8, jsx as jsx29, jsxs as jsxs23 } from "react/jsx-runtime";
1927
+ import { Fragment as Fragment9, jsx as jsx29, jsxs as jsxs23 } from "react/jsx-runtime";
1904
1928
  var ScTabComp = ({
1905
1929
  icon = /* @__PURE__ */ jsx29(SiconHome6, { className: ScTabComp_default.siconHomeInstance }),
1906
1930
  active = "false",
@@ -1916,8 +1940,8 @@ var ScTabComp = ({
1916
1940
  className: ScTabComp_default.scTabComp + " " + className + " " + variantsClassName,
1917
1941
  ...props,
1918
1942
  children: [
1919
- type === "icon-only" && /* @__PURE__ */ jsx29(Fragment8, { children: /* @__PURE__ */ jsx29("div", { className: ScTabComp_default.icon, children: icon }) }),
1920
- type === "text-only" && /* @__PURE__ */ jsx29(Fragment8, { children: /* @__PURE__ */ jsx29("div", { className: ScTabComp_default.textContainer, children: /* @__PURE__ */ jsxs23("div", { className: ScTabComp_default.tabText, children: [
1943
+ type === "icon-only" && /* @__PURE__ */ jsx29(Fragment9, { children: /* @__PURE__ */ jsx29("div", { className: ScTabComp_default.icon, children: icon }) }),
1944
+ type === "text-only" && /* @__PURE__ */ jsx29(Fragment9, { children: /* @__PURE__ */ jsx29("div", { className: ScTabComp_default.textContainer, children: /* @__PURE__ */ jsxs23("div", { className: ScTabComp_default.tabText, children: [
1921
1945
  text,
1922
1946
  " "
1923
1947
  ] }) }) })
@@ -1938,7 +1962,7 @@ var ScTabSwitcher_default = {
1938
1962
 
1939
1963
  // src/SC-tabSwitcher/ScTabSwitcher.tsx
1940
1964
  import { SiconHome as SiconHome7 } from "@streamoid/icons";
1941
- import { Fragment as Fragment9, jsx as jsx30, jsxs as jsxs24 } from "react/jsx-runtime";
1965
+ import { Fragment as Fragment10, jsx as jsx30, jsxs as jsxs24 } from "react/jsx-runtime";
1942
1966
  var ScTabSwitcher = ({
1943
1967
  tabCount = "2",
1944
1968
  component,
@@ -1974,21 +1998,21 @@ var ScTabSwitcher = ({
1974
1998
  className: ScTabSwitcher_default.scTabCompInstance
1975
1999
  }
1976
2000
  ),
1977
- (tabCount === "3" || tabCount === "4" || tabCount === "5") && /* @__PURE__ */ jsx30(Fragment9, { children: component3 ? component3 : /* @__PURE__ */ jsx30(
2001
+ (tabCount === "3" || tabCount === "4" || tabCount === "5") && /* @__PURE__ */ jsx30(Fragment10, { children: component3 ? component3 : /* @__PURE__ */ jsx30(
1978
2002
  ScTabComp,
1979
2003
  {
1980
2004
  icon: /* @__PURE__ */ jsx30(SiconHome7, { className: ScTabSwitcher_default.siconHomeInstance }),
1981
2005
  className: ScTabSwitcher_default.scTabCompInstance
1982
2006
  }
1983
2007
  ) }),
1984
- (tabCount === "4" || tabCount === "5") && /* @__PURE__ */ jsx30(Fragment9, { children: component4 ? component4 : /* @__PURE__ */ jsx30(
2008
+ (tabCount === "4" || tabCount === "5") && /* @__PURE__ */ jsx30(Fragment10, { children: component4 ? component4 : /* @__PURE__ */ jsx30(
1985
2009
  ScTabComp,
1986
2010
  {
1987
2011
  icon: /* @__PURE__ */ jsx30(SiconHome7, { className: ScTabSwitcher_default.siconHomeInstance }),
1988
2012
  className: ScTabSwitcher_default.scTabCompInstance
1989
2013
  }
1990
2014
  ) }),
1991
- tabCount === "5" && /* @__PURE__ */ jsx30(Fragment9, { children: component5 ? component5 : /* @__PURE__ */ jsx30(
2015
+ tabCount === "5" && /* @__PURE__ */ jsx30(Fragment10, { children: component5 ? component5 : /* @__PURE__ */ jsx30(
1992
2016
  ScTabComp,
1993
2017
  {
1994
2018
  icon: /* @__PURE__ */ jsx30(SiconHome7, { className: ScTabSwitcher_default.siconHomeInstance }),
@@ -2152,7 +2176,7 @@ var ScTextField_default = {
2152
2176
 
2153
2177
  // src/SC-textField/ScTextField.tsx
2154
2178
  import { SiconBolt as SiconBolt2 } from "@streamoid/icons";
2155
- import { Fragment as Fragment10, jsx as jsx32, jsxs as jsxs26 } from "react/jsx-runtime";
2179
+ import { Fragment as Fragment11, jsx as jsx32, jsxs as jsxs26 } from "react/jsx-runtime";
2156
2180
  var ScTextField = ({
2157
2181
  tfRightIcon = /* @__PURE__ */ jsx32(SiconBolt2, { className: ScTextField_default.siconBoltInstance }),
2158
2182
  tfLeftIcon = /* @__PURE__ */ jsx32(SiconBolt2, { className: ScTextField_default.siconBoltInstance }),
@@ -2179,11 +2203,11 @@ var ScTextField = ({
2179
2203
  label,
2180
2204
  " "
2181
2205
  ] }),
2182
- labelGroup === "text" && /* @__PURE__ */ jsx32(Fragment10, { children: /* @__PURE__ */ jsx32("div", { className: ScTextField_default.info, children: "info " }) }),
2183
- labelGroup === "icon" && /* @__PURE__ */ jsx32(Fragment10, { children: /* @__PURE__ */ jsx32(SiconBolt2, { className: ScTextField_default.siconBoltInstance }) })
2206
+ labelGroup === "text" && /* @__PURE__ */ jsx32(Fragment11, { children: /* @__PURE__ */ jsx32("div", { className: ScTextField_default.info, children: "info " }) }),
2207
+ labelGroup === "icon" && /* @__PURE__ */ jsx32(Fragment11, { children: /* @__PURE__ */ jsx32(SiconBolt2, { className: ScTextField_default.siconBoltInstance }) })
2184
2208
  ] }),
2185
2209
  /* @__PURE__ */ jsxs26("div", { className: ScTextField_default.inputContainer, children: [
2186
- (tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ jsx32(Fragment10, { children: tfLeftIcon }),
2210
+ (tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ jsx32(Fragment11, { children: tfLeftIcon }),
2187
2211
  /* @__PURE__ */ jsx32(
2188
2212
  "input",
2189
2213
  {
@@ -2200,7 +2224,7 @@ var ScTextField = ({
2200
2224
  }
2201
2225
  }
2202
2226
  ),
2203
- (tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ jsx32(Fragment10, { children: tfRightIcon })
2227
+ (tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ jsx32(Fragment11, { children: tfRightIcon })
2204
2228
  ] })
2205
2229
  ]
2206
2230
  }
@@ -2339,7 +2363,7 @@ var ScSidebarMenu_default = {
2339
2363
 
2340
2364
  // src/SC-Sidebar menu/ScSidebarMenu.tsx
2341
2365
  import { SiconHome as SiconHome9 } from "@streamoid/icons";
2342
- import { Fragment as Fragment11, jsx as jsx35, jsxs as jsxs29 } from "react/jsx-runtime";
2366
+ import { Fragment as Fragment12, jsx as jsx35, jsxs as jsxs29 } from "react/jsx-runtime";
2343
2367
  var ScSidebarMenu = ({
2344
2368
  icon = /* @__PURE__ */ jsx35(SiconHome9, { className: ScSidebarMenu_default.siconHomeInstance }),
2345
2369
  state = "default",
@@ -2358,7 +2382,7 @@ var ScSidebarMenu = ({
2358
2382
  ...props,
2359
2383
  children: [
2360
2384
  icon,
2361
- variant === "expanded" && /* @__PURE__ */ jsxs29(Fragment11, { children: [
2385
+ variant === "expanded" && /* @__PURE__ */ jsxs29(Fragment12, { children: [
2362
2386
  /* @__PURE__ */ jsx35("div", { className: ScSidebarMenu_default.content, children: text }),
2363
2387
  moreIcon && /* @__PURE__ */ jsx35(
2364
2388
  "div",
@@ -2449,7 +2473,7 @@ var ScVersion_default = {
2449
2473
 
2450
2474
  // src/SC-version/ScVersion.tsx
2451
2475
  import { SiconCollapse } from "@streamoid/icons";
2452
- import { Fragment as Fragment12, jsx as jsx38, jsxs as jsxs30 } from "react/jsx-runtime";
2476
+ import { Fragment as Fragment13, jsx as jsx38, jsxs as jsxs30 } from "react/jsx-runtime";
2453
2477
  var ScVersion = ({
2454
2478
  state = "expanded",
2455
2479
  version = "v2.1.2",
@@ -2465,7 +2489,7 @@ var ScVersion = ({
2465
2489
  className: ScVersion_default.scVersion + " " + className + " " + variantsClassName,
2466
2490
  ...props,
2467
2491
  children: [
2468
- state === "collapsed" && /* @__PURE__ */ jsx38(Fragment12, { children: /* @__PURE__ */ jsx38("div", { className: ScVersion_default.icon, children: component ? component : /* @__PURE__ */ jsx38(
2492
+ state === "collapsed" && /* @__PURE__ */ jsx38(Fragment13, { children: /* @__PURE__ */ jsx38("div", { className: ScVersion_default.icon, children: component ? component : /* @__PURE__ */ jsx38(
2469
2493
  ScSidebarIcons,
2470
2494
  {
2471
2495
  instance: scSidebarIconsinstance || /* @__PURE__ */ jsx38(SiconCollapse, { className: ScVersion_default.siconCollapseInstance }),
@@ -2476,7 +2500,7 @@ var ScVersion = ({
2476
2500
  version,
2477
2501
  " "
2478
2502
  ] }),
2479
- state === "expanded" && /* @__PURE__ */ jsx38(Fragment12, { children: /* @__PURE__ */ jsx38(
2503
+ state === "expanded" && /* @__PURE__ */ jsx38(Fragment13, { children: /* @__PURE__ */ jsx38(
2480
2504
  ScSidebarIcons,
2481
2505
  {
2482
2506
  instance: /* @__PURE__ */ jsx38(SiconCollapse, { className: ScVersion_default.siconCollapseInstance }),
@@ -2490,7 +2514,7 @@ var ScVersion = ({
2490
2514
  };
2491
2515
 
2492
2516
  // src/SC-Sidebar/ScSidebar.tsx
2493
- import { Fragment as Fragment13, jsx as jsx39, jsxs as jsxs31 } from "react/jsx-runtime";
2517
+ import { Fragment as Fragment14, jsx as jsx39, jsxs as jsxs31 } from "react/jsx-runtime";
2494
2518
  var ScSidebar = ({
2495
2519
  state = "expanded",
2496
2520
  className,
@@ -2503,7 +2527,7 @@ var ScSidebar = ({
2503
2527
  {
2504
2528
  className: ScSidebar_default.scSidebar + " " + className + " " + variantsClassName,
2505
2529
  children: [
2506
- state === "collapsed" && /* @__PURE__ */ jsx39(Fragment13, { children: /* @__PURE__ */ jsxs31("div", { className: ScSidebar_default.collapsedContainer, children: [
2530
+ state === "collapsed" && /* @__PURE__ */ jsx39(Fragment14, { children: /* @__PURE__ */ jsxs31("div", { className: ScSidebar_default.collapsedContainer, children: [
2507
2531
  /* @__PURE__ */ jsxs31("div", { className: ScSidebar_default.collapsedItems, children: [
2508
2532
  /* @__PURE__ */ jsx39(
2509
2533
  ScLogoUnit,
@@ -2645,7 +2669,7 @@ var ScSidebar = ({
2645
2669
  }
2646
2670
  )
2647
2671
  ] }) }),
2648
- state === "expanded" && /* @__PURE__ */ jsx39(Fragment13, { children: /* @__PURE__ */ jsxs31("div", { className: ScSidebar_default.expandedContainer, children: [
2672
+ state === "expanded" && /* @__PURE__ */ jsx39(Fragment14, { children: /* @__PURE__ */ jsxs31("div", { className: ScSidebar_default.expandedContainer, children: [
2649
2673
  /* @__PURE__ */ jsxs31("div", { className: ScSidebar_default.expandedItems, children: [
2650
2674
  /* @__PURE__ */ jsx39(ScLogoUnit, { className: ScSidebar_default.scLogoUnitInstance }),
2651
2675
  /* @__PURE__ */ jsx39("div", { className: ScSidebar_default.expandedItemContainer, children: /* @__PURE__ */ jsx39(
@@ -2781,7 +2805,7 @@ var ScSidebar = ({
2781
2805
  };
2782
2806
 
2783
2807
  // src/SC-Sidebar-new/streamoid-sidebar.tsx
2784
- import { Fragment as Fragment14, jsx as jsx40, jsxs as jsxs32 } from "react/jsx-runtime";
2808
+ import { Fragment as Fragment15, jsx as jsx40, jsxs as jsxs32 } from "react/jsx-runtime";
2785
2809
  function SectionHeader({ label }) {
2786
2810
  return /* @__PURE__ */ jsx40("div", { className: "opacity-50 shrink-0 w-full", children: /* @__PURE__ */ jsx40("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ jsx40(
2787
2811
  "div",
@@ -2868,6 +2892,7 @@ function StreamoidSidebar({
2868
2892
  profile,
2869
2893
  versionText = "v1.0.0",
2870
2894
  toggleIcon,
2895
+ toggleInProfile = false,
2871
2896
  hideFooter = false,
2872
2897
  preFooterContent,
2873
2898
  bodyContent,
@@ -2892,8 +2917,11 @@ function StreamoidSidebar({
2892
2917
  style: {
2893
2918
  backgroundColor: "var(--alias-surface-base)",
2894
2919
  borderRadius: "var(--radius-3xl)",
2920
+ // Explicit on all sides — a conditional `undefined` here strips the
2921
+ // bottom padding the shorthand set, letting the profile hover bg
2922
+ // touch the card's bottom edge.
2895
2923
  padding: "var(--spacing-md)",
2896
- paddingBottom: effectiveHideFooter ? "var(--spacing-md)" : void 0,
2924
+ paddingBottom: "var(--spacing-md)",
2897
2925
  width: 256,
2898
2926
  gap: "var(--spacing-xxs)"
2899
2927
  },
@@ -2930,7 +2958,7 @@ function StreamoidSidebar({
2930
2958
  }
2931
2959
  ) : null
2932
2960
  ] }),
2933
- !!(topItems?.length || config.topItem) && /* @__PURE__ */ jsxs32(Fragment14, { children: [
2961
+ !!(topItems?.length || config.topItem) && /* @__PURE__ */ jsxs32(Fragment15, { children: [
2934
2962
  /* @__PURE__ */ jsx40(HDivider, {}),
2935
2963
  /* @__PURE__ */ jsx40(
2936
2964
  "div",
@@ -2955,7 +2983,7 @@ function StreamoidSidebar({
2955
2983
  ),
2956
2984
  /* @__PURE__ */ jsx40(HDivider, {})
2957
2985
  ] }),
2958
- showBody && bodyContent ? /* @__PURE__ */ jsx40("div", { className: "flex flex-col flex-1 min-h-0 w-full overflow-hidden", children: bodyContent }) : /* @__PURE__ */ jsx40(Fragment14, { children: config.sections.map((section) => /* @__PURE__ */ jsxs32(
2986
+ showBody && bodyContent ? /* @__PURE__ */ jsx40("div", { className: "flex flex-col flex-1 min-h-0 w-full overflow-hidden", children: bodyContent }) : /* @__PURE__ */ jsx40(Fragment15, { children: config.sections.map((section) => /* @__PURE__ */ jsxs32(
2959
2987
  "div",
2960
2988
  {
2961
2989
  className: "flex flex-col items-start shrink-0 w-full",
@@ -3001,7 +3029,76 @@ function StreamoidSidebar({
3001
3029
  }
3002
3030
  ) : null,
3003
3031
  /* @__PURE__ */ jsx40(HDivider, {}),
3004
- profile ? /* @__PURE__ */ jsxs32(Fragment14, { children: [
3032
+ profile ? toggleInProfile && !effectiveHideFooter ? (
3033
+ /* Footer row: profile and collapse toggle are two SEPARATE
3034
+ interactive units side by side (own rounded hover bg each). */
3035
+ /* @__PURE__ */ jsxs32(
3036
+ "div",
3037
+ {
3038
+ className: "flex items-center shrink-0 w-full",
3039
+ style: { gap: "var(--spacing-md)", paddingTop: "var(--spacing-md)" },
3040
+ children: [
3041
+ /* @__PURE__ */ jsxs32(
3042
+ "div",
3043
+ {
3044
+ className: "flex flex-1 min-w-0 items-center cursor-pointer",
3045
+ style: {
3046
+ padding: "var(--spacing-md) var(--spacing-xl)",
3047
+ gap: "var(--spacing-md)",
3048
+ borderRadius: "var(--radius-3xl)"
3049
+ },
3050
+ onClick: profile.onClick,
3051
+ onMouseEnter: (e) => {
3052
+ e.currentTarget.style.background = "var(--alias-fill-neutral-neutral)";
3053
+ },
3054
+ onMouseLeave: (e) => {
3055
+ e.currentTarget.style.background = "transparent";
3056
+ },
3057
+ children: [
3058
+ profile.avatar,
3059
+ /* @__PURE__ */ jsxs32("div", { className: "flex flex-col flex-1 min-w-0", children: [
3060
+ /* @__PURE__ */ jsx40(
3061
+ "span",
3062
+ {
3063
+ className: "text-text-sm-medium truncate",
3064
+ style: { color: "var(--alias-text---icons-primary)" },
3065
+ children: profile.name
3066
+ }
3067
+ ),
3068
+ profile.subtitle ? /* @__PURE__ */ jsx40(
3069
+ "span",
3070
+ {
3071
+ className: "text-text-xs-regular truncate",
3072
+ style: { color: "var(--alias-text---icons-muted)" },
3073
+ children: profile.subtitle
3074
+ }
3075
+ ) : null
3076
+ ] })
3077
+ ]
3078
+ }
3079
+ ),
3080
+ /* @__PURE__ */ jsx40(
3081
+ "div",
3082
+ {
3083
+ className: "flex items-center cursor-pointer shrink-0",
3084
+ style: {
3085
+ padding: "var(--spacing-md)",
3086
+ borderRadius: "var(--radius-3xl)"
3087
+ },
3088
+ onClick: onToggle,
3089
+ onMouseEnter: (e) => {
3090
+ e.currentTarget.style.background = "var(--alias-fill-neutral-neutral)";
3091
+ },
3092
+ onMouseLeave: (e) => {
3093
+ e.currentTarget.style.background = "transparent";
3094
+ },
3095
+ children: resolveToggleIcon(toggleIcon, true)
3096
+ }
3097
+ )
3098
+ ]
3099
+ }
3100
+ )
3101
+ ) : /* @__PURE__ */ jsxs32(Fragment15, { children: [
3005
3102
  /* @__PURE__ */ jsxs32(
3006
3103
  "div",
3007
3104
  {
@@ -3041,9 +3138,9 @@ function StreamoidSidebar({
3041
3138
  ]
3042
3139
  }
3043
3140
  ),
3044
- !effectiveHideFooter && /* @__PURE__ */ jsx40(Fragment14, { children: /* @__PURE__ */ jsx40(HDivider, {}) })
3141
+ !effectiveHideFooter && /* @__PURE__ */ jsx40(Fragment15, { children: /* @__PURE__ */ jsx40(HDivider, {}) })
3045
3142
  ] }) : null,
3046
- !effectiveHideFooter && /* @__PURE__ */ jsx40("div", { className: "shrink-0 w-full", children: /* @__PURE__ */ jsx40("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ jsxs32(
3143
+ !effectiveHideFooter && !toggleInProfile && /* @__PURE__ */ jsx40("div", { className: "shrink-0 w-full", children: /* @__PURE__ */ jsx40("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ jsxs32(
3047
3144
  "div",
3048
3145
  {
3049
3146
  className: "flex items-center w-full",
@@ -3113,7 +3210,7 @@ function StreamoidSidebar({
3113
3210
  style: { gap: "var(--spacing-xxs)" },
3114
3211
  children: [
3115
3212
  collapsedLogo,
3116
- !!(topItems?.length || config.topItem) ? /* @__PURE__ */ jsxs32(Fragment14, { children: [
3213
+ !!(topItems?.length || config.topItem) ? /* @__PURE__ */ jsxs32(Fragment15, { children: [
3117
3214
  /* @__PURE__ */ jsx40(HDivider, {}),
3118
3215
  /* @__PURE__ */ jsx40(
3119
3216
  "div",
@@ -3189,27 +3286,24 @@ function StreamoidSidebar({
3189
3286
  }
3190
3287
  ) : null,
3191
3288
  /* @__PURE__ */ jsx40(HDivider, {}),
3192
- profile ? /* @__PURE__ */ jsxs32(Fragment14, { children: [
3193
- /* @__PURE__ */ jsx40(
3194
- "div",
3195
- {
3196
- className: "flex items-center justify-center shrink-0 cursor-pointer",
3197
- style: {
3198
- padding: "var(--spacing-md) 0",
3199
- borderRadius: "var(--radius-3xl)"
3200
- },
3201
- onClick: profile.onClick,
3202
- onMouseEnter: (e) => {
3203
- e.currentTarget.style.background = "var(--alias-fill-neutral-neutral)";
3204
- },
3205
- onMouseLeave: (e) => {
3206
- e.currentTarget.style.background = "transparent";
3207
- },
3208
- children: profile.avatar
3209
- }
3210
- ),
3211
- /* @__PURE__ */ jsx40(HDivider, {})
3212
- ] }) : null,
3289
+ profile ? /* @__PURE__ */ jsx40(
3290
+ "div",
3291
+ {
3292
+ className: "flex items-center justify-center shrink-0 cursor-pointer",
3293
+ style: {
3294
+ padding: "var(--spacing-md) 0",
3295
+ borderRadius: "var(--radius-3xl)"
3296
+ },
3297
+ onClick: profile.onClick,
3298
+ onMouseEnter: (e) => {
3299
+ e.currentTarget.style.background = "var(--alias-fill-neutral-neutral)";
3300
+ },
3301
+ onMouseLeave: (e) => {
3302
+ e.currentTarget.style.background = "transparent";
3303
+ },
3304
+ children: profile.avatar
3305
+ }
3306
+ ) : null,
3213
3307
  !hideFooter && /* @__PURE__ */ jsxs32(
3214
3308
  "div",
3215
3309
  {
@@ -3232,14 +3326,14 @@ function StreamoidSidebar({
3232
3326
  children: resolveToggleIcon(toggleIcon, false)
3233
3327
  }
3234
3328
  ),
3235
- /* @__PURE__ */ jsx40(
3329
+ versionText ? /* @__PURE__ */ jsx40(
3236
3330
  "p",
3237
3331
  {
3238
3332
  className: "text-text-xs-regular text-center truncate",
3239
3333
  style: { color: "var(--alias-text---icons-muted)" },
3240
3334
  children: versionText
3241
3335
  }
3242
- )
3336
+ ) : null
3243
3337
  ]
3244
3338
  }
3245
3339
  )
@@ -3296,7 +3390,7 @@ var ScArtifaxSidebar_default = {
3296
3390
 
3297
3391
  // src/SC-Artifax-Sidebar/ScArtifaxSidebar.tsx
3298
3392
  import { SiconCollapse as SiconCollapse3, SiconDown, SiconUp } from "@streamoid/icons";
3299
- import { Fragment as Fragment15, jsx as jsx41, jsxs as jsxs33 } from "react/jsx-runtime";
3393
+ import { Fragment as Fragment16, jsx as jsx41, jsxs as jsxs33 } from "react/jsx-runtime";
3300
3394
  function ArtifaxPlaceholderIcon() {
3301
3395
  return /* @__PURE__ */ jsx41("span", { "aria-hidden": "true", className: ScArtifaxSidebar_default.placeholderIcon });
3302
3396
  }
@@ -3304,9 +3398,9 @@ function resolveIcon2(iconMap, item, active, expanded) {
3304
3398
  const renderer = iconMap?.[item.iconKey];
3305
3399
  if (renderer == null) return /* @__PURE__ */ jsx41(ArtifaxPlaceholderIcon, {});
3306
3400
  if (typeof renderer === "function") {
3307
- return /* @__PURE__ */ jsx41(Fragment15, { children: renderer({ item, active, expanded }) });
3401
+ return /* @__PURE__ */ jsx41(Fragment16, { children: renderer({ item, active, expanded }) });
3308
3402
  }
3309
- return /* @__PURE__ */ jsx41(Fragment15, { children: renderer });
3403
+ return /* @__PURE__ */ jsx41(Fragment16, { children: renderer });
3310
3404
  }
3311
3405
  function resolveToggleIcon2(toggleIcon, expanded) {
3312
3406
  if (toggleIcon == null)
@@ -3541,73 +3635,59 @@ var ScArtifaxSidebar = ({
3541
3635
  );
3542
3636
  };
3543
3637
 
3544
- // src/SC-Guide/ScGuide.module.css
3545
- var ScGuide_default = {
3546
- scGuide: "ScGuide_scGuide",
3547
- header: "ScGuide_header",
3548
- title: "ScGuide_title",
3549
- description: "ScGuide_description",
3550
- actions: "ScGuide_actions",
3551
- stepIndicator: "ScGuide_stepIndicator",
3552
- skipButton: "ScGuide_skipButton",
3553
- skipSpacer: "ScGuide_skipSpacer",
3554
- nextButton: "ScGuide_nextButton",
3555
- nextLabel: "ScGuide_nextLabel",
3556
- nextIcon: "ScGuide_nextIcon"
3557
- };
3638
+ // src/SC-Catalogix-Sidebar/ScCatalogixSidebar.tsx
3639
+ import { useState as useState7 } from "react";
3558
3640
 
3559
- // src/SC-Guide/ScGuide.tsx
3560
- import { SiconRight as SiconRight2 } from "@streamoid/icons";
3561
- import { jsx as jsx42, jsxs as jsxs34 } from "react/jsx-runtime";
3562
- var ScGuide = ({
3563
- title = "Title",
3564
- description = "Description",
3565
- skipLabel = "Skip",
3566
- nextLabel = "Next",
3567
- nextIcon,
3568
- stepLabel,
3569
- onSkip,
3570
- onNext,
3571
- hideSkip = false,
3572
- hideNext = false,
3573
- disabled = false,
3641
+ // src/SC-Sidebar Switch menu/ScSidebarSwitchMenu.module.css
3642
+ var ScSidebarSwitchMenu_default = {
3643
+ scSidebarSwitchMenu: "ScSidebarSwitchMenu_scSidebarSwitchMenu",
3644
+ iconWrapper: "ScSidebarSwitchMenu_iconWrapper",
3645
+ content: "ScSidebarSwitchMenu_content",
3646
+ text: "ScSidebarSwitchMenu_text",
3647
+ description: "ScSidebarSwitchMenu_description",
3648
+ moreIconWrapper: "ScSidebarSwitchMenu_moreIconWrapper",
3649
+ "state-active": "ScSidebarSwitchMenu_state-active",
3650
+ "state-default-highlight": "ScSidebarSwitchMenu_state-default-highlight",
3651
+ "state-default-active": "ScSidebarSwitchMenu_state-default-active",
3652
+ "state-hover": "ScSidebarSwitchMenu_state-hover",
3653
+ "variant-collapsed": "ScSidebarSwitchMenu_variant-collapsed"
3654
+ };
3655
+
3656
+ // src/SC-Sidebar Switch menu/ScSidebarSwitchMenu.tsx
3657
+ import { Fragment as Fragment17, jsx as jsx42, jsxs as jsxs34 } from "react/jsx-runtime";
3658
+ var ScSidebarSwitchMenu = ({
3659
+ icon,
3660
+ state = "default",
3661
+ variant = "expanded",
3574
3662
  className,
3575
- style
3663
+ text = "Pairtext",
3664
+ description = "Description",
3665
+ moreIcon,
3666
+ onMoreClick,
3667
+ ...props
3576
3668
  }) => {
3669
+ const variantsClassName = ScSidebarSwitchMenu_default["state-" + state] + " " + ScSidebarSwitchMenu_default["variant-" + variant];
3577
3670
  return /* @__PURE__ */ jsxs34(
3578
3671
  "div",
3579
3672
  {
3580
- className: ScGuide_default.scGuide + (className ? " " + className : ""),
3581
- style,
3673
+ className: ScSidebarSwitchMenu_default.scSidebarSwitchMenu + (className ? " " + className : "") + " " + variantsClassName,
3674
+ ...props,
3582
3675
  children: [
3583
- /* @__PURE__ */ jsxs34("div", { className: ScGuide_default.header, children: [
3584
- /* @__PURE__ */ jsx42("p", { className: ScGuide_default.title, children: title }),
3585
- /* @__PURE__ */ jsx42("p", { className: ScGuide_default.description, children: description })
3586
- ] }),
3587
- /* @__PURE__ */ jsx42(ScHDivider, {}),
3588
- /* @__PURE__ */ jsxs34("div", { className: ScGuide_default.actions, children: [
3589
- hideSkip ? /* @__PURE__ */ jsx42("span", { className: ScGuide_default.skipSpacer, "aria-hidden": "true", children: skipLabel }) : /* @__PURE__ */ jsx42(
3590
- "button",
3591
- {
3592
- type: "button",
3593
- className: ScGuide_default.skipButton,
3594
- onClick: onSkip,
3595
- disabled,
3596
- children: skipLabel
3597
- }
3598
- ),
3599
- stepLabel != null && /* @__PURE__ */ jsx42("span", { className: ScGuide_default.stepIndicator, children: stepLabel }),
3600
- !hideNext && /* @__PURE__ */ jsxs34(
3601
- "button",
3676
+ icon ? /* @__PURE__ */ jsx42("div", { className: ScSidebarSwitchMenu_default.iconWrapper, children: icon }) : null,
3677
+ variant === "expanded" && /* @__PURE__ */ jsxs34(Fragment17, { children: [
3678
+ /* @__PURE__ */ jsxs34("div", { className: ScSidebarSwitchMenu_default.content, children: [
3679
+ /* @__PURE__ */ jsx42("div", { className: ScSidebarSwitchMenu_default.text, children: text }),
3680
+ /* @__PURE__ */ jsx42("div", { className: ScSidebarSwitchMenu_default.description, children: description })
3681
+ ] }),
3682
+ moreIcon && /* @__PURE__ */ jsx42(
3683
+ "div",
3602
3684
  {
3603
- type: "button",
3604
- className: ScGuide_default.nextButton,
3605
- onClick: onNext,
3606
- disabled,
3607
- children: [
3608
- /* @__PURE__ */ jsx42("span", { className: ScGuide_default.nextLabel, children: nextLabel }),
3609
- /* @__PURE__ */ jsx42("span", { className: ScGuide_default.nextIcon, children: nextIcon ?? /* @__PURE__ */ jsx42(SiconRight2, { size: 16, strokeWidth: 1.5 }) })
3610
- ]
3685
+ className: ScSidebarSwitchMenu_default.moreIconWrapper,
3686
+ onClick: (e) => {
3687
+ e.stopPropagation();
3688
+ onMoreClick?.(e);
3689
+ },
3690
+ children: moreIcon
3611
3691
  }
3612
3692
  )
3613
3693
  ] })
@@ -3632,10 +3712,362 @@ var ScSideBarLogoUnit_default = {
3632
3712
 
3633
3713
  // src/SC-SideBarLogoUnit/ScSideBarLogoUnit.tsx
3634
3714
  import { SiconDoubleArrow } from "@streamoid/icons";
3635
- import { jsx as jsx43, jsxs as jsxs35 } from "react/jsx-runtime";
3715
+
3716
+ // src/SC-SideBarLogoUnit/wordmarks.tsx
3717
+ import { jsx as jsx43 } from "react/jsx-runtime";
3718
+ var WORDMARKS = {
3719
+ "CXO": {
3720
+ "viewBox": "0 0 56 32",
3721
+ "width": 56,
3722
+ "paths": [
3723
+ {
3724
+ "d": "M3.1997 25.1429C3.81903 25.1429 4.32696 25.2423 4.72334 25.4411C5.12589 25.6332 5.42325 25.9048 5.61524 26.2559C5.8134 26.6004 5.91252 26.9979 5.91254 27.4483V27.5081H4.75119V27.3689C4.75119 27.1238 4.69865 26.9217 4.59337 26.7627C4.49427 26.597 4.32385 26.4746 4.08232 26.3951C3.84078 26.3156 3.50944 26.2758 3.0883 26.2758C2.72909 26.2758 2.44101 26.3056 2.22424 26.3652C2.00756 26.4248 1.84964 26.5109 1.75056 26.6235C1.65767 26.7361 1.61132 26.8853 1.6113 27.0707C1.6113 27.2297 1.6422 27.3624 1.70414 27.4684C1.77226 27.5744 1.87451 27.6571 2.01072 27.7167C2.14695 27.7763 2.3234 27.8294 2.54011 27.8757L4.13802 28.1639C4.57774 28.2434 4.93403 28.3693 5.20653 28.5415C5.48518 28.7071 5.68942 28.9159 5.81948 29.1677C5.94953 29.4128 6.01465 29.6944 6.01466 30.0124C6.01466 30.3569 5.92172 30.6817 5.73592 30.9865C5.55633 31.2845 5.26836 31.5295 4.8721 31.7216C4.48193 31.9071 3.97088 32 3.33918 32C2.71985 32 2.19646 31.9106 1.76912 31.7317C1.34798 31.5462 1.02591 31.2844 0.802953 30.9465C0.586228 30.602 0.477817 30.1847 0.477802 29.6945V29.6347H1.63915V29.8038C1.63917 30.0423 1.68861 30.241 1.78769 30.4C1.88678 30.5524 2.0603 30.6683 2.30802 30.7478C2.55575 30.8273 2.89948 30.8671 3.33918 30.8671C3.72934 30.8671 4.03289 30.8405 4.24965 30.7875C4.47255 30.7278 4.62736 30.6418 4.71405 30.5292C4.80693 30.4099 4.85329 30.2576 4.85331 30.0721C4.85331 29.8204 4.77599 29.6349 4.62122 29.5156C4.47258 29.3964 4.21541 29.3003 3.85 29.2274L2.23353 28.9591C1.88058 28.8929 1.5679 28.7867 1.29544 28.641C1.02912 28.4953 0.821623 28.2997 0.672983 28.0546C0.524353 27.8029 0.44996 27.4949 0.449951 27.1305C0.449951 26.8854 0.499414 26.6468 0.598488 26.4149C0.697581 26.1764 0.855637 25.9611 1.0724 25.769C1.28915 25.5769 1.57087 25.4243 1.91766 25.3117C2.27066 25.1991 2.69808 25.1429 3.1997 25.1429Z"
3725
+ },
3726
+ {
3727
+ "d": "M8.6007 27.0774H10.1882V28.0429H8.6007V30.2075C8.6007 30.4818 8.65881 30.668 8.77505 30.7659C8.89741 30.8573 9.09328 30.903 9.3624 30.903H10.1882V32H9.1054C8.59768 32 8.19694 31.8694 7.9033 31.6083C7.60966 31.3405 7.46268 30.9063 7.46267 30.3056V28.0429H6.71024V27.0774H7.46267V25.6327H8.6007V27.0774Z"
3728
+ },
3729
+ {
3730
+ "d": "M11.9432 28.4808H12.017C12.06 28.2173 12.146 27.9826 12.275 27.7769C12.4039 27.5648 12.576 27.4009 12.791 27.2852C13.0059 27.1631 13.27 27.102 13.5833 27.102C13.9333 27.1021 14.2158 27.1793 14.4308 27.3335C14.6457 27.4814 14.8023 27.6837 14.9006 27.9408C15.005 28.1915 15.0573 28.4712 15.0573 28.7797V29.551H13.915V29.0208C13.915 28.7059 13.8472 28.4775 13.7121 28.3361C13.577 28.1883 13.3496 28.1144 13.0303 28.1144C12.6741 28.1144 12.4192 28.2141 12.2657 28.4133C12.1217 28.5941 12.0453 28.8568 12.0363 29.2014L12.0354 29.2714V32H10.8838V27.102H11.9432V28.4808Z"
3731
+ },
3732
+ {
3733
+ "d": "M18.1016 27.102C18.5564 27.102 18.9539 27.1903 19.2936 27.3668C19.6389 27.537 19.9065 27.7923 20.0965 28.1326C20.2922 28.4667 20.3901 28.8765 20.3901 29.3619C20.3901 29.4438 20.3873 29.5195 20.3815 29.5888C20.3758 29.6582 20.367 29.7275 20.3555 29.7969H16.7571C16.7728 30.1949 16.8725 30.5007 17.0569 30.714C17.2584 30.941 17.6009 31.0544 18.0844 31.0544C18.5104 31.0544 18.8128 30.9882 18.9913 30.8559C19.1755 30.7172 19.2675 30.5248 19.2675 30.279V30.1939H20.3383V30.279C20.3383 30.6194 20.2434 30.9189 20.0534 31.1773C19.8692 31.4358 19.61 31.6376 19.2761 31.7826C18.948 31.9276 18.5652 32 18.1277 32C17.6498 32 17.2325 31.9085 16.8755 31.7257C16.5186 31.5429 16.2423 31.2688 16.0466 30.9032C15.8508 30.5376 15.7529 30.0868 15.7529 29.551C15.7529 29.053 15.8508 28.6211 16.0466 28.2555C16.2423 27.8899 16.5158 27.6063 16.8669 27.4046C17.2238 27.2029 17.6354 27.1021 18.1016 27.102ZM18.0844 28.0192C17.6009 28.0192 17.2584 28.1359 17.0569 28.3691C16.8905 28.5565 16.7931 28.8212 16.7641 29.1633H19.3622C19.3572 28.7807 19.251 28.497 19.0431 28.3124C18.8359 28.117 18.5162 28.0192 18.0844 28.0192Z",
3734
+ "fillRule": "evenodd",
3735
+ "clipRule": "evenodd"
3736
+ },
3737
+ {
3738
+ "d": "M23.4324 27.102C23.9035 27.1021 24.2903 27.187 24.5927 27.3572C24.9009 27.5211 25.1277 27.7514 25.2731 28.0477C25.4184 28.3439 25.4911 28.6874 25.4911 29.0782V32H24.4878V30.7707H24.4269C24.3164 31.1553 24.1012 31.4579 23.7814 31.6786C23.4673 31.8929 23.0631 32 22.5688 32C22.1152 32 21.7545 31.8896 21.487 31.669C21.2195 31.4484 21.0857 31.1426 21.0857 30.7518C21.0857 30.5123 21.141 30.3074 21.2515 30.1372C21.362 29.967 21.5219 29.8347 21.7313 29.7402C21.9406 29.6393 22.1937 29.57 22.4903 29.5321L24.4269 29.3147V29.0782C24.4269 28.7189 24.3454 28.473 24.1826 28.3406C24.0198 28.202 23.7463 28.1326 23.3625 28.1326C22.9845 28.1326 22.7054 28.199 22.5251 28.3313C22.3507 28.4637 22.2634 28.6905 22.2634 29.012V29.05H21.1817V29.012C21.1818 28.6401 21.2719 28.3124 21.4521 28.0288C21.6324 27.7388 21.8912 27.5118 22.2285 27.3479C22.5716 27.184 22.973 27.102 23.4324 27.102ZM22.7955 30.2034C22.5862 30.2287 22.4292 30.2759 22.3245 30.3453C22.2257 30.4146 22.1762 30.525 22.1762 30.6763C22.1762 30.8401 22.2315 30.9598 22.342 31.0355C22.4583 31.1111 22.6356 31.1491 22.8741 31.1491C23.1939 31.1491 23.4672 31.1111 23.694 31.0355C23.9266 30.9535 24.107 30.8275 24.2349 30.6574C24.3583 30.4871 24.4214 30.2699 24.4258 30.0059L22.7955 30.2034Z",
3739
+ "fillRule": "evenodd",
3740
+ "clipRule": "evenodd"
3741
+ },
3742
+ {
3743
+ "d": "M27.2317 28.6446H27.2953C27.3377 28.3747 27.4196 28.1241 27.5408 27.8927C27.668 27.6549 27.8527 27.4652 28.0951 27.3237C28.3374 27.1759 28.6434 27.102 29.013 27.102C29.4128 27.1021 29.7399 27.1889 29.9943 27.3625C30.2488 27.536 30.4367 27.7738 30.5579 28.0759C30.6377 28.2612 30.6923 28.4605 30.7221 28.6736H30.785C30.8274 28.4036 30.9123 28.1496 31.0395 27.9118C31.1667 27.6741 31.3546 27.4814 31.6029 27.3335C31.8513 27.1793 32.1663 27.102 32.548 27.102C32.9418 27.102 33.2658 27.1889 33.5203 27.3625C33.7808 27.5296 33.9747 27.7609 34.102 28.0565C34.2353 28.3522 34.3019 28.6897 34.3019 29.0689V32H33.175V29.4257C33.175 28.9822 33.0871 28.6641 32.9114 28.4712C32.7357 28.272 32.4389 28.1723 32.0209 28.1723C31.5665 28.1723 31.2514 28.2879 31.0758 28.5193C30.9001 28.7507 30.8122 29.1108 30.8122 29.5993V32H29.6764V29.4257C29.6764 28.9822 29.5885 28.6641 29.4129 28.4712C29.2432 28.272 28.9494 28.1723 28.5314 28.1723C28.071 28.1723 27.7529 28.288 27.5772 28.5193C27.4076 28.7507 27.3227 29.1108 27.3227 29.5993V32H26.1867V27.102H27.2317V28.6446Z"
3744
+ },
3745
+ {
3746
+ "d": "M37.4278 27.102C37.9196 27.102 38.3449 27.2029 38.7037 27.4046C39.0682 27.6063 39.3516 27.89 39.5541 28.2555C39.7625 28.6211 39.8666 29.053 39.8666 29.551C39.8666 30.0364 39.7625 30.4651 39.5541 30.837C39.3516 31.2026 39.0682 31.4894 38.7037 31.6975C38.3449 31.8992 37.9196 32 37.4278 32C36.9475 32 36.5222 31.8992 36.1518 31.6975C35.7873 31.4895 35.5039 31.2026 35.3014 30.837C35.0988 30.4651 34.9975 30.0364 34.9975 29.551C34.9975 29.053 35.0988 28.6211 35.3014 28.2555C35.5039 27.89 35.7873 27.6063 36.1518 27.4046C36.5222 27.2029 36.9475 27.102 37.4278 27.102ZM37.4278 28.1421C36.9418 28.1421 36.5917 28.2619 36.3776 28.5014C36.1693 28.7346 36.0651 29.0846 36.0651 29.551C36.0651 30.0175 36.1693 30.3675 36.3776 30.6007C36.5917 30.8339 36.9418 30.9503 37.4278 30.9503C37.9195 30.9503 38.2696 30.8339 38.4779 30.6007C38.6862 30.3675 38.7904 30.0175 38.7904 29.551C38.7904 29.0846 38.6862 28.7346 38.4779 28.5014C38.2696 28.2619 37.9195 28.1422 37.4278 28.1421Z",
3747
+ "fillRule": "evenodd",
3748
+ "clipRule": "evenodd"
3749
+ },
3750
+ {
3751
+ "d": "M41.7215 32H40.5622V27.3469H41.7215V32Z"
3752
+ },
3753
+ {
3754
+ "d": "M47.7499 32H46.6721V30.522H46.6065C46.5128 31.0082 46.3035 31.3777 45.9786 31.6305C45.6537 31.8768 45.2256 32 44.6945 32C44.2009 32 43.7854 31.8963 43.448 31.6889C43.1106 31.4749 42.8545 31.18 42.6795 30.804C42.5046 30.4215 42.4171 29.9806 42.4171 29.4814C42.4171 28.9693 42.5016 28.5253 42.6703 28.1493C42.8452 27.7734 43.0981 27.4817 43.4292 27.2742C43.7604 27.0668 44.1603 26.9631 44.6289 26.9631C45.1787 26.9631 45.61 27.0927 45.9224 27.352C46.2348 27.6113 46.4348 27.9485 46.5223 28.3634H46.5877V25.6327H47.7499V32ZM45.0602 28.0618C44.7478 28.0618 44.4821 28.1071 44.2634 28.1979C44.0447 28.2886 43.8791 28.4379 43.7666 28.6453C43.6542 28.8463 43.5979 29.125 43.5979 29.4814C43.5979 29.8315 43.6511 30.1103 43.7573 30.3178C43.8698 30.5187 44.0354 30.6647 44.2541 30.7554C44.479 30.8462 44.7509 30.8915 45.0695 30.8915C45.3881 30.8915 45.6599 30.8429 45.8849 30.7456C46.1098 30.6484 46.2817 30.4994 46.4004 30.2984C46.5254 30.091 46.5877 29.8316 46.5877 29.5204V29.4427L46.5863 29.3554C46.571 28.9265 46.4402 28.6087 46.1942 28.4021C45.9318 28.1752 45.5537 28.0618 45.0602 28.0618Z",
3755
+ "fillRule": "evenodd",
3756
+ "clipRule": "evenodd"
3757
+ },
3758
+ {
3759
+ "d": "M41.7215 26.8571H40.5622V25.6327H41.7215V26.8571Z"
3760
+ },
3761
+ {
3762
+ "d": "M9.10306 18.7013C7.27894 18.7013 5.68284 18.3218 4.31475 17.563C2.94666 16.786 1.88551 15.7019 1.13131 14.3106C0.377102 12.9012 0 11.2479 0 9.35065C0 7.45341 0.377102 5.80914 1.13131 4.41784C1.88551 3.00847 2.94666 1.92434 4.31475 1.16544C5.68284 0.388481 7.27894 1.19075e-10 9.10306 1.19075e-10C10.7693 1.19075e-10 12.2339 0.289102 13.4967 0.867307C14.7771 1.42744 15.7681 2.24054 16.4697 3.3066C17.1888 4.3546 17.5484 5.61039 17.5484 7.07397V7.42631H14.4176V7.07397C14.4176 5.68266 13.9791 4.62563 13.1021 3.90288C12.2427 3.18012 10.9184 2.81874 9.12937 2.81874C7.74374 2.81874 6.5949 3.05364 5.68284 3.52343C4.78832 3.97515 4.11304 4.67984 3.65701 5.63749C3.21852 6.59514 2.99927 7.83286 2.99927 9.35065C2.99927 10.8504 3.21852 12.0881 3.65701 13.0638C4.11304 14.0215 4.78832 14.7352 5.68284 15.205C6.5949 15.6567 7.74374 15.8825 9.12937 15.8825C10.9184 15.8825 12.2427 15.5212 13.1021 14.7984C13.9791 14.0757 14.4176 13.0186 14.4176 11.6273V11.275H17.5484V11.6273C17.5484 13.0728 17.1888 14.3286 16.4697 15.3947C15.7681 16.4608 14.7771 17.2829 13.4967 17.8611C12.2339 18.4212 10.7693 18.7013 9.10306 18.7013Z"
3763
+ },
3764
+ {
3765
+ "d": "M46.8256 18.7013C44.9907 18.7013 43.383 18.3218 42.0025 17.563C40.6394 16.786 39.5735 15.7019 38.8046 14.3106C38.0531 12.9012 37.6774 11.2479 37.6774 9.35065C37.6774 7.45341 38.0531 5.80914 38.8046 4.41784C39.5735 3.00847 40.6394 1.92434 42.0025 1.16544C43.383 0.388481 44.9907 1.19075e-10 46.8256 1.19075e-10C48.6954 1.19075e-10 50.3119 0.388481 51.6749 1.16544C53.038 1.92434 54.0952 3.00847 54.8466 4.41784C55.6156 5.80914 56 7.45341 56 9.35065C56 11.2479 55.6156 12.9012 54.8466 14.3106C54.0952 15.7019 53.038 16.786 51.6749 17.563C50.3119 18.3218 48.6954 18.7013 46.8256 18.7013ZM46.8256 15.8825C48.2061 15.8825 49.3507 15.6567 50.2594 15.205C51.1856 14.7352 51.8759 14.0215 52.3302 13.0638C52.7846 12.0881 53.0118 10.8504 53.0118 9.35065C53.0118 7.83286 52.7846 6.59514 52.3302 5.63749C51.8759 4.67984 51.1856 3.97515 50.2594 3.52343C49.3507 3.05364 48.2061 2.81874 46.8256 2.81874C45.4451 2.81874 44.2917 3.05364 43.3655 3.52343C42.4568 3.97515 41.7753 4.67984 41.321 5.63749C40.8841 6.59514 40.6656 7.83286 40.6656 9.35065C40.6656 10.8504 40.8841 12.0881 41.321 13.0638C41.7753 14.0215 42.4568 14.7352 43.3655 15.205C44.2917 15.6567 45.4451 15.8825 46.8256 15.8825Z"
3766
+ },
3767
+ {
3768
+ "d": "M18.3447 0.00243516C19.385 -0.0101893 20.3686 0.0197884 21.3032 0.248339C21.7367 0.354385 22.1193 0.591471 22.4996 0.920422C22.8924 1.2602 23.2302 1.64734 23.6335 2.06548L23.6349 2.06687L25.2321 3.71121L31.2071 9.9311L31.2094 9.93359C31.4255 10.1561 31.6471 10.3734 31.8636 10.5855C32.0816 10.799 32.2944 11.0071 32.5012 11.2182L32.502 11.219C34.5851 13.3373 36.6475 15.4752 38.6887 17.6325C38.9867 17.9493 39.3867 18.3136 39.6873 18.612C39.7059 18.6303 39.7239 18.6489 39.7419 18.6671L37.0947 18.6759C36.233 18.6716 35.5136 18.6469 34.824 18.3694C34.4722 18.2234 34.1402 18.0349 33.8361 17.8081L33.7072 17.7084C33.2679 17.3517 32.852 16.8567 32.3811 16.3681C31.426 15.3768 30.4911 14.3828 29.5031 13.3976C29.105 12.9698 28.7007 12.5479 28.2892 12.132C28.1001 11.9409 27.8035 11.9067 27.5762 12.0434L27.5318 12.0731C27.2428 12.2853 27.0033 12.5319 26.7937 12.7637C26.5701 13.0111 26.4041 13.213 26.1994 13.423L26.1963 13.4261L22.4219 17.3606C22.2238 17.5659 21.8745 17.8523 21.4925 18.0991C21.0943 18.3563 20.7464 18.5141 20.5417 18.5449C19.651 18.6793 18.6822 18.7052 17.6815 18.7008C17.1317 18.6985 16.5623 18.6868 16 18.6806C16.1052 18.5771 16.2139 18.4738 16.3264 18.3683C16.5663 18.1432 16.8279 17.9022 17.0743 17.6447L21.8592 12.677C22.4906 12.0212 23.3084 11.1261 23.963 10.558C23.9801 10.554 24.0028 10.5495 24.032 10.5445C24.1398 10.5258 24.2851 10.5107 24.4518 10.4991C24.6158 10.4876 24.7871 10.4802 24.9436 10.4741C25.0934 10.4683 25.2429 10.4635 25.3424 10.457C25.5586 10.4428 25.7486 10.3105 25.8339 10.1144C25.9192 9.91828 25.8856 9.69142 25.7467 9.52762C25.0462 8.70155 24.4102 8.15067 23.7506 7.45655C21.5893 5.18212 19.4024 3.0461 17.3008 0.767009C17.0679 0.514461 16.8012 0.263069 16.5574 0.030404C17.165 0.0293337 17.7685 0.00942871 18.3447 0.00243516ZM38.4529 0.0328963C38.6992 0.0346266 38.9465 0.0357618 39.1947 0.0364962C38.7287 0.494209 38.2943 0.951997 37.8136 1.451L35.8969 3.42516L35.896 3.42599L33.8876 5.50343L33.4919 5.90386C33.0993 6.2993 32.7112 6.68998 32.3141 7.13753C32.2314 7.22959 32.1576 7.30548 32.0836 7.3743C31.7819 7.07342 31.4948 6.74412 31.1528 6.39179C30.6057 5.82808 30.0778 5.32179 29.5794 4.78206C29.9909 4.33539 30.4208 3.89192 30.8568 3.44399C31.4107 2.87487 31.9753 2.29737 32.508 1.71158C33.1259 1.03181 33.625 0.650185 34.1639 0.417537C34.7073 0.182961 35.3414 0.0777148 36.2742 0.0348347C36.9954 0.0216385 37.7189 0.027738 38.4529 0.0328963Z"
3769
+ }
3770
+ ]
3771
+ },
3772
+ "Catalogix": {
3773
+ "viewBox": "0 0 117 32",
3774
+ "width": 117,
3775
+ "paths": [
3776
+ {
3777
+ "d": "M2.75918 25.1429C3.38064 25.1429 3.89031 25.2423 4.28804 25.4411C4.69198 25.6332 4.99036 25.9048 5.18301 26.2559C5.38185 26.6004 5.48131 26.9979 5.48133 27.4483V27.5081H4.31599V27.3689C4.31599 27.1238 4.26328 26.9217 4.15763 26.7627C4.05819 26.597 3.88719 26.4746 3.64483 26.3951C3.40246 26.3156 3.06998 26.2758 2.6474 26.2758C2.28696 26.2758 1.99789 26.3056 1.78038 26.3652C1.56296 26.4248 1.40449 26.5109 1.30507 26.6235C1.21186 26.7361 1.16535 26.8853 1.16534 27.0707C1.16534 27.2297 1.19634 27.3624 1.25849 27.4684C1.32685 27.5744 1.42944 27.6571 1.56613 27.7167C1.70282 27.7763 1.87987 27.8293 2.09733 27.8757L3.70072 28.1639C4.14195 28.2434 4.49946 28.3693 4.7729 28.5415C5.0525 28.7071 5.25744 28.9159 5.38794 29.1677C5.51844 29.4128 5.58379 29.6944 5.5838 30.0124C5.5838 30.3569 5.49054 30.6817 5.30411 30.9865C5.1239 31.2845 4.83494 31.5295 4.43732 31.7216C4.04581 31.9071 3.53301 32 2.89914 32C2.27768 32 1.7525 31.9105 1.3237 31.7317C0.901111 31.5462 0.577936 31.2844 0.354213 30.9465C0.136744 30.602 0.0279619 30.1847 0.0279462 29.6945V29.6347H1.19328V29.8038C1.19329 30.0423 1.24291 30.241 1.34233 30.4C1.44176 30.5524 1.61587 30.6683 1.86445 30.7478C2.11303 30.8273 2.45793 30.8671 2.89914 30.8671C3.29064 30.8671 3.59523 30.8405 3.81273 30.7875C4.0364 30.7278 4.19174 30.6418 4.27873 30.5292C4.37193 30.4099 4.41844 30.2576 4.41846 30.0721C4.41846 29.8204 4.34088 29.6349 4.18558 29.5156C4.03643 29.3964 3.77837 29.3003 3.41171 29.2274L1.7897 28.9591C1.43554 28.8929 1.12178 28.7867 0.848384 28.641C0.581158 28.4953 0.372947 28.2997 0.223797 28.0546C0.0746571 27.8029 9.01746e-06 27.4949 0 27.1305C0 26.8854 0.0496329 26.6468 0.149047 26.4149C0.24848 26.1764 0.407077 25.9611 0.624587 25.769C0.842082 25.5769 1.12476 25.4243 1.47274 25.3117C1.82695 25.1991 2.25584 25.1429 2.75918 25.1429Z"
3778
+ },
3779
+ {
3780
+ "d": "M8.17871 27.0774H9.77164V28.0429H8.17871V30.2075C8.17871 30.4818 8.23702 30.668 8.35365 30.7659C8.47644 30.8573 8.67298 30.903 8.94303 30.903H9.77164V32H8.68515C8.17568 32 7.77357 31.8694 7.47891 31.6083C7.18427 31.3405 7.03679 30.9063 7.03677 30.3056V28.0429H6.28177V27.0774H7.03677V25.6327H8.17871V27.0774Z"
3781
+ },
3782
+ {
3783
+ "d": "M11.5327 28.4808H11.6068C11.6499 28.2173 11.7361 27.9826 11.8656 27.7769C11.995 27.5648 12.1677 27.4009 12.3834 27.2852C12.5991 27.1631 12.8641 27.102 13.1784 27.102C13.5296 27.102 13.8131 27.1793 14.0288 27.3335C14.2445 27.4814 14.4016 27.6837 14.5002 27.9408C14.605 28.1915 14.6575 28.4712 14.6575 28.7797V29.551H13.5112V29.0208C13.5112 28.7058 13.4432 28.4775 13.3076 28.3361C13.172 28.1883 12.9439 28.1144 12.6235 28.1144C12.2661 28.1144 12.0103 28.2141 11.8563 28.4133C11.7118 28.5941 11.6351 28.8568 11.6261 29.2014L11.6252 29.2714V32H10.4696V27.102H11.5327V28.4808Z"
3784
+ },
3785
+ {
3786
+ "d": "M17.7122 27.102C18.1686 27.102 18.5674 27.1903 18.9082 27.3668C19.2548 27.537 19.5233 27.7923 19.7139 28.1326C19.9103 28.4667 20.0086 28.8765 20.0086 29.3618C20.0086 29.4438 20.0057 29.5195 20 29.5888C19.9942 29.6582 19.9854 29.7275 19.9738 29.7969H16.3631C16.3788 30.1949 16.4789 30.5007 16.6639 30.714C16.8661 30.941 17.2098 31.0544 17.695 31.0544C18.1224 31.0544 18.4258 30.9882 18.6049 30.8559C18.7897 30.7172 18.8821 30.5248 18.8821 30.279V30.1939H19.9566V30.279C19.9566 30.6194 19.8613 30.9189 19.6707 31.1773C19.4859 31.4357 19.2258 31.6376 18.8908 31.7826C18.5615 31.9276 18.1774 32 17.7384 32C17.2589 32 16.8401 31.9085 16.4819 31.7257C16.1238 31.5429 15.8465 31.2688 15.6501 30.9032C15.4537 30.5376 15.3554 30.0868 15.3554 29.551C15.3554 29.053 15.4537 28.6211 15.6501 28.2555C15.8465 27.8899 16.1209 27.6063 16.4733 27.4046C16.8314 27.2029 17.2444 27.1021 17.7122 27.102ZM17.695 28.0192C17.2098 28.0192 16.8661 28.1359 16.6639 28.3691C16.497 28.5565 16.3992 28.8212 16.3701 29.1633H18.9771C18.9721 28.7807 18.8655 28.497 18.657 28.3124C18.449 28.117 18.1282 28.0192 17.695 28.0192Z",
3787
+ "fillRule": "evenodd",
3788
+ "clipRule": "evenodd"
3789
+ },
3790
+ {
3791
+ "d": "M23.0613 27.102C23.534 27.102 23.9221 27.187 24.2255 27.3572C24.5348 27.5211 24.7624 27.7514 24.9083 28.0477C25.0541 28.3439 25.1271 28.6874 25.1271 29.0782V32H24.1203V30.7707H24.0592C23.9483 31.1552 23.7324 31.4579 23.4115 31.6786C23.0963 31.8929 22.6908 32 22.1948 32C21.7396 32 21.3776 31.8896 21.1092 31.669C20.8408 31.4484 20.7066 31.1426 20.7066 30.7518C20.7066 30.5123 20.762 30.3074 20.8729 30.1372C20.9838 29.967 21.1443 29.8347 21.3543 29.7402C21.5644 29.6393 21.8183 29.5699 22.1159 29.5321L24.0592 29.3147V29.0782C24.0592 28.7189 23.9775 28.473 23.8141 28.3406C23.6507 28.202 23.3763 28.1326 22.9911 28.1326C22.6119 28.1326 22.3318 28.199 22.1509 28.3313C21.9759 28.4637 21.8883 28.6905 21.8883 29.012V29.05H20.8029V29.012C20.8029 28.6401 20.8933 28.3124 21.0742 28.0288C21.2551 27.7388 21.5148 27.5118 21.8533 27.3479C22.1976 27.184 22.6003 27.102 23.0613 27.102ZM22.4222 30.2034C22.2122 30.2287 22.0546 30.2759 21.9496 30.3453C21.8504 30.4146 21.8008 30.525 21.8008 30.6763C21.8008 30.8401 21.8562 30.9598 21.9671 31.0355C22.0838 31.1111 22.2618 31.1491 22.501 31.1491C22.822 31.1491 23.0962 31.1111 23.3238 31.0355C23.5572 30.9535 23.7382 30.8275 23.8665 30.6574C23.9904 30.4871 24.0537 30.2699 24.0581 30.0059L22.4222 30.2034Z",
3792
+ "fillRule": "evenodd",
3793
+ "clipRule": "evenodd"
3794
+ },
3795
+ {
3796
+ "d": "M26.8736 28.6446H26.9375C26.98 28.3747 27.0622 28.1241 27.1837 27.8927C27.3114 27.6549 27.4968 27.4652 27.7399 27.3237C27.9831 27.1759 28.2902 27.102 28.661 27.102C29.0622 27.102 29.3904 27.1889 29.6457 27.3625C29.9011 27.536 30.0897 27.7738 30.2113 28.0759C30.2913 28.2612 30.3461 28.4605 30.376 28.6735H30.4391C30.4817 28.4036 30.5669 28.1496 30.6945 27.9118C30.8222 27.6741 31.0106 27.4814 31.2598 27.3335C31.509 27.1793 31.8252 27.102 32.2082 27.102C32.6033 27.102 32.9285 27.1889 33.1838 27.3625C33.4452 27.5296 33.6398 27.7609 33.7675 28.0565C33.9012 28.3522 33.9681 28.6897 33.9681 29.0689V32H32.8373V29.4257C32.8373 28.9822 32.7491 28.6641 32.5728 28.4712C32.3965 28.272 32.0987 28.1723 31.6792 28.1723C31.2233 28.1723 30.9072 28.2879 30.7309 28.5193C30.5546 28.7507 30.4664 29.1108 30.4664 29.5993V32H29.3267V29.4257C29.3267 28.9822 29.2385 28.6641 29.0623 28.4712C28.8921 28.272 28.5972 28.1723 28.1778 28.1723C27.7158 28.1723 27.3966 28.288 27.2203 28.5193C27.0501 28.7507 26.9649 29.1108 26.9649 29.5993V32H25.8251V27.102H26.8736V28.6446Z"
3797
+ },
3798
+ {
3799
+ "d": "M37.1047 27.102C37.5982 27.102 38.025 27.2029 38.385 27.4046C38.7507 27.6063 39.0351 27.89 39.2383 28.2555C39.4474 28.6211 39.5519 29.053 39.5519 29.551C39.5519 30.0364 39.4474 30.4651 39.2383 30.837C39.0351 31.2026 38.7507 31.4894 38.385 31.6975C38.025 31.8992 37.5982 32 37.1047 32C36.6228 32 36.1959 31.8992 35.8244 31.6975C35.4586 31.4895 35.1742 31.2026 34.971 30.837C34.7678 30.4651 34.6661 30.0364 34.6661 29.551C34.6661 29.053 34.7678 28.6211 34.971 28.2555C35.1742 27.8899 35.4586 27.6063 35.8244 27.4046C36.1959 27.2029 36.6228 27.102 37.1047 27.102ZM37.1047 28.1421C36.617 28.1421 36.2657 28.2619 36.0509 28.5014C35.8419 28.7346 35.7373 29.0845 35.7373 29.551C35.7373 30.0175 35.8419 30.3675 36.0509 30.6007C36.2657 30.8339 36.617 30.9503 37.1047 30.9503C37.5981 30.9503 37.9494 30.8339 38.1584 30.6007C38.3675 30.3675 38.472 30.0175 38.472 29.551C38.472 29.0845 38.3675 28.7346 38.1584 28.5014C37.9494 28.2619 37.5981 28.1421 37.1047 28.1421Z",
3800
+ "fillRule": "evenodd",
3801
+ "clipRule": "evenodd"
3802
+ },
3803
+ {
3804
+ "d": "M41.4132 32H40.2499V27.3469H41.4132V32Z"
3805
+ },
3806
+ {
3807
+ "d": "M47.4623 32H46.3808V30.522H46.3149C46.2208 31.0082 46.0108 31.3777 45.6848 31.6305C45.3588 31.8768 44.9293 32 44.3964 32C43.9011 32 43.4841 31.8963 43.1456 31.6889C42.807 31.4749 42.55 31.18 42.3745 30.804C42.1989 30.4215 42.1111 29.9806 42.1111 29.4814C42.1111 28.9693 42.1959 28.5253 42.3651 28.1493C42.5407 27.7734 42.7945 27.4817 43.1267 27.2742C43.459 27.0668 43.8603 26.9631 44.3305 26.9631C44.8822 26.9631 45.315 27.0927 45.6285 27.352C45.9419 27.6113 46.1426 27.9485 46.2304 28.3634H46.296V25.6327H47.4623V32ZM44.7633 28.0618C44.4498 28.0618 44.1832 28.1071 43.9638 28.1979C43.7443 28.2886 43.5781 28.4379 43.4653 28.6453C43.3525 28.8463 43.296 29.125 43.296 29.4814C43.296 29.8315 43.3494 30.1103 43.456 30.3178C43.5688 30.5187 43.735 30.6647 43.9544 30.7554C44.1801 30.8462 44.4529 30.8915 44.7726 30.8915C45.0924 30.8915 45.3651 30.8429 45.5908 30.7456C45.8165 30.6484 45.989 30.4993 46.1081 30.2984C46.2335 30.0909 46.296 29.8316 46.296 29.5204V29.4427L46.2947 29.3554C46.2792 28.9265 46.148 28.6087 45.9011 28.4021C45.6378 28.1752 45.2585 28.0618 44.7633 28.0618Z",
3808
+ "fillRule": "evenodd",
3809
+ "clipRule": "evenodd"
3810
+ },
3811
+ {
3812
+ "d": "M41.4132 26.8571H40.2499V25.6327H41.4132V26.8571Z"
3813
+ },
3814
+ {
3815
+ "d": "M105.13 18.0731H101.268L106.649 11.5615V11.3754L101.268 4.83721H105.181L109.095 9.62126H109.275L113.138 4.83721H117L111.619 11.2957V11.5083L117 18.0731H113.086L109.172 13.2625H108.992L105.13 18.0731Z"
3816
+ },
3817
+ {
3818
+ "d": "M100.088 18.0731H96.8698V4.83722H100.088V18.0731ZM100.088 3.34885H96.8698V0.265797H100.088V3.34885Z"
3819
+ },
3820
+ {
3821
+ "d": "M87.4261 22.8571C86.1215 22.8571 84.9714 22.6534 83.9758 22.2458C82.9974 21.8383 82.2335 21.2536 81.6842 20.4917C81.1349 19.7298 80.8602 18.8084 80.8602 17.7276H84.0788C84.0788 18.3123 84.1904 18.773 84.4136 19.1096C84.6367 19.464 85.0058 19.7121 85.5207 19.8538C86.0357 20.0133 86.7395 20.093 87.6321 20.093C88.5591 20.093 89.2886 19.9956 89.8207 19.8007C90.3529 19.6058 90.7305 19.2514 90.9537 18.7375C91.1768 18.2237 91.2884 17.5061 91.2884 16.5847V8.74419L91.5459 8.6113V4.83721H94.507V16.3721C94.507 17.8782 94.2152 19.1008 93.6315 20.0399C93.0651 20.9967 92.2497 21.7054 91.1854 22.1661C90.1383 22.6268 88.8852 22.8571 87.4261 22.8571ZM86.1387 16.7973C84.8513 16.7973 83.7527 16.5493 82.8429 16.0532C81.9503 15.5393 81.2636 14.8217 80.783 13.9003C80.3023 12.979 80.062 11.907 80.062 10.6844C80.062 9.44408 80.3109 8.37209 80.8087 7.46844C81.3065 6.54707 82.0189 5.83832 82.9459 5.34219C83.89 4.82835 85.0058 4.57143 86.2932 4.57143C87.6321 4.57143 88.7565 4.87265 89.6663 5.47508C90.576 6.0598 91.1339 6.92802 91.3399 8.07974H92.0094L91.7776 10.4718H91.2884C91.2884 9.78073 91.1339 9.21373 90.8249 8.77077C90.516 8.31008 90.0611 7.97342 89.4603 7.7608C88.8595 7.54817 88.1299 7.44186 87.2716 7.44186C86.4134 7.44186 85.6838 7.54817 85.083 7.7608C84.4994 7.95571 84.0531 8.29236 83.7441 8.77077C83.4523 9.23145 83.3064 9.86933 83.3064 10.6844C83.3064 11.4817 83.4523 12.1196 83.7441 12.598C84.0359 13.0764 84.4736 13.4219 85.0573 13.6346C85.6409 13.8472 86.3533 13.9535 87.1944 13.9535C88.5333 13.9535 89.5461 13.6966 90.2327 13.1827C90.9365 12.6689 91.2884 11.8715 91.2884 10.7907H91.7776V13.4219H91.1082C90.885 14.4142 90.3615 15.2292 89.5375 15.8671C88.7136 16.4873 87.5806 16.7973 86.1387 16.7973Z"
3822
+ },
3823
+ {
3824
+ "d": "M71.4536 18.3389C70.0288 18.3389 68.7671 18.0554 67.6685 17.4884C66.5871 16.9037 65.7459 16.0975 65.1451 15.0698C64.5443 14.0244 64.2439 12.8195 64.2439 11.4552C64.2439 10.0554 64.5443 8.84164 65.1451 7.81396C65.7459 6.78627 66.5871 5.98893 67.6685 5.42193C68.7671 4.85493 70.0288 4.57143 71.4536 4.57143C72.9126 4.57143 74.1743 4.85493 75.2386 5.42193C76.32 5.98893 77.1612 6.78627 77.762 7.81396C78.3799 8.84164 78.6889 10.0554 78.6889 11.4552C78.6889 12.8195 78.3799 14.0244 77.762 15.0698C77.1612 16.0975 76.32 16.9037 75.2386 17.4884C74.1743 18.0554 72.9126 18.3389 71.4536 18.3389ZM71.4536 15.3887C72.9126 15.3887 73.9512 15.0609 74.5691 14.4053C75.1871 13.7497 75.4961 12.7663 75.4961 11.4552C75.4961 10.144 75.1871 9.16058 74.5691 8.50498C73.9512 7.83167 72.9126 7.49502 71.4536 7.49502C70.0116 7.49502 68.9731 7.83167 68.338 8.50498C67.72 9.16058 67.411 10.144 67.411 11.4552C67.411 12.7663 67.72 13.7497 68.338 14.4053C68.9731 15.0609 70.0116 15.3887 71.4536 15.3887Z"
3825
+ },
3826
+ {
3827
+ "d": "M62.421 18.0731H59.2024V0.265797H62.421V18.0731Z"
3828
+ },
3829
+ {
3830
+ "d": "M56.9297 18.0731H53.9686V14.7774L53.7884 14.6977V10.1262C53.7884 9.11628 53.5481 8.42525 53.0675 8.05316C52.5868 7.66335 51.78 7.46844 50.6471 7.46844C49.5313 7.46844 48.7074 7.65449 48.1752 8.02658C47.6602 8.39867 47.4028 9.03655 47.4028 9.9402V10.0465H44.2099V9.9402C44.2099 8.8948 44.476 7.97342 45.0081 7.17608C45.5403 6.36102 46.3042 5.72315 47.2998 5.26246C48.3125 4.80177 49.497 4.57143 50.8531 4.57143C52.2435 4.57143 53.385 4.81063 54.2776 5.28904C55.1874 5.74973 55.8569 6.39646 56.286 7.22924C56.7152 8.06202 56.9297 9.02769 56.9297 10.1262V18.0731ZM48.304 18.3389C46.965 18.3389 45.9008 18.0288 45.1111 17.4086C44.3215 16.7885 43.9267 15.9291 43.9267 14.8306C43.9267 14.1573 44.0898 13.5814 44.4159 13.103C44.7421 12.6246 45.2141 12.2525 45.8321 11.9867C46.4501 11.7032 47.1968 11.5083 48.0722 11.402L54.0459 10.7641V12.7043L48.9734 13.289C48.3555 13.3599 47.892 13.4928 47.583 13.6877C47.2912 13.8826 47.1453 14.1927 47.1453 14.6179C47.1453 15.0786 47.3083 15.4153 47.6345 15.6279C47.9778 15.8405 48.5014 15.9468 49.2052 15.9468C50.1493 15.9468 50.9561 15.8405 51.6255 15.6279C52.3122 15.3976 52.8443 15.0432 53.2219 14.5648C53.5996 14.0687 53.7884 13.4308 53.7884 12.6512H54.1489V14.8837H53.7884C53.4623 15.9646 52.8271 16.8151 51.883 17.4352C50.9561 18.0377 49.763 18.3389 48.304 18.3389Z"
3831
+ },
3832
+ {
3833
+ "d": "M42.8352 18.0731H39.7969C38.3721 18.0731 37.2478 17.7187 36.4238 17.01C35.5999 16.2835 35.1879 15.1052 35.1879 13.4751V2.04652H38.3807V13.2093C38.3807 13.9535 38.5438 14.4585 38.8699 14.7243C39.2132 14.9723 39.7625 15.0964 40.5178 15.0964H42.8352V18.0731ZM42.8352 7.57476H33.0765V4.83722H42.8352V7.57476Z"
3834
+ },
3835
+ {
3836
+ "d": "M31.8852 18.0731H28.9241V14.7774L28.7439 14.6977V10.1262C28.7439 9.11628 28.5036 8.42525 28.0229 8.05316C27.5423 7.66335 26.7355 7.46844 25.6026 7.46844C24.4868 7.46844 23.6628 7.65449 23.1307 8.02658C22.6157 8.39867 22.3582 9.03655 22.3582 9.9402V10.0465H19.1654V9.9402C19.1654 8.8948 19.4315 7.97342 19.9636 7.17608C20.4957 6.36102 21.2596 5.72315 22.2552 5.26246C23.268 4.80177 24.4524 4.57143 25.8085 4.57143C27.199 4.57143 28.3405 4.81063 29.2331 5.28904C30.1429 5.74973 30.8124 6.39646 31.2415 7.22924C31.6706 8.06202 31.8852 9.02769 31.8852 10.1262V18.0731ZM23.2594 18.3389C21.9205 18.3389 20.8562 18.0288 20.0666 17.4086C19.277 16.7885 18.8822 15.9291 18.8822 14.8306C18.8822 14.1573 19.0452 13.5814 19.3714 13.103C19.6975 12.6246 20.1696 12.2525 20.7876 11.9867C21.4055 11.7032 22.1522 11.5083 23.0277 11.402L29.0014 10.7641V12.7043L23.9289 13.289C23.3109 13.3599 22.8475 13.4928 22.5385 13.6877C22.2467 13.8826 22.1007 14.1927 22.1007 14.6179C22.1007 15.0786 22.2638 15.4153 22.59 15.6279C22.9333 15.8405 23.4568 15.9468 24.1606 15.9468C25.1047 15.9468 25.9115 15.8405 26.581 15.6279C27.2676 15.3976 27.7998 15.0432 28.1774 14.5648C28.5551 14.0687 28.7439 13.4308 28.7439 12.6512H29.1044V14.8837H28.7439C28.4177 15.9646 27.7826 16.8151 26.8385 17.4352C25.9115 18.0377 24.7185 18.3389 23.2594 18.3389Z"
3837
+ },
3838
+ {
3839
+ "d": "M9.03776 18.3389C7.20102 18.3389 5.60461 17.9668 4.24852 17.2226C2.89243 16.4607 1.84532 15.3976 1.10719 14.0332C0.369063 12.6512 0 11.0299 0 9.16944C0 7.30897 0.369063 5.69657 1.10719 4.33223C1.84532 2.95017 2.89243 1.88704 4.24852 1.14286C5.60461 0.380952 7.20102 0 9.03776 0C10.7372 0 12.222 0.2835 13.4923 0.850499C14.7625 1.4175 15.7496 2.23256 16.4534 3.29568C17.1571 4.34108 17.509 5.59911 17.509 7.06977V7.44186H13.9557V7.06977C13.9557 5.7763 13.5609 4.81063 12.7713 4.17276C11.9817 3.51717 10.7543 3.18937 9.08925 3.18937C7.76749 3.18937 6.68605 3.39313 5.84493 3.80066C5.02098 4.2082 4.40301 4.85493 3.99103 5.74086C3.59622 6.60908 3.39881 7.75194 3.39881 9.16944C3.39881 10.5692 3.59622 11.7121 3.99103 12.598C4.40301 13.4839 5.02098 14.1307 5.84493 14.5382C6.68605 14.9457 7.76749 15.1495 9.08925 15.1495C10.7543 15.1495 11.9817 14.8306 12.7713 14.1927C13.5609 13.5371 13.9557 12.5626 13.9557 11.2691V10.897H17.509V11.2691C17.509 12.722 17.1571 13.9801 16.4534 15.0432C15.7496 16.1063 14.7625 16.9214 13.4923 17.4884C12.222 18.0554 10.7372 18.3389 9.03776 18.3389Z"
3840
+ }
3841
+ ]
3842
+ },
3843
+ "Artifax": {
3844
+ "viewBox": "0 0 90 32",
3845
+ "width": 90,
3846
+ "paths": [
3847
+ {
3848
+ "d": "M2.74365 25.1429C3.36161 25.1429 3.86842 25.2423 4.26391 25.4411C4.66557 25.6332 4.96227 25.9048 5.15383 26.2559C5.35156 26.6004 5.45046 26.9979 5.45047 27.4483V27.5081H4.2917V27.3689C4.2917 27.1238 4.23928 26.9217 4.13423 26.7627C4.03535 26.597 3.86531 26.4746 3.62431 26.3951C3.38331 26.3156 3.0527 26.2758 2.63249 26.2758C2.27408 26.2758 1.98664 26.3056 1.77036 26.3652C1.55416 26.4248 1.39659 26.5109 1.29772 26.6235C1.20504 26.7361 1.15879 26.8853 1.15878 27.0707C1.15878 27.2297 1.18961 27.3624 1.25141 27.4684C1.31938 27.5744 1.4214 27.6571 1.55731 27.7167C1.69324 27.7763 1.86929 27.8293 2.08553 27.8757L3.67989 28.1639C4.11864 28.2434 4.47413 28.3693 4.74604 28.5415C5.02406 28.7071 5.22785 28.9159 5.35762 29.1677C5.48738 29.4128 5.55236 29.6944 5.55237 30.0124C5.55237 30.3569 5.45964 30.6817 5.27425 30.9864C5.09506 31.2845 4.80772 31.5295 4.41234 31.7216C4.02304 31.9071 3.51312 32 2.88282 32C2.26486 32 1.74264 31.9105 1.31625 31.7317C0.896039 31.5462 0.574683 31.2844 0.352219 30.9465C0.135974 30.602 0.0278045 30.1847 0.0277889 29.6945V29.6347H1.18657V29.8038C1.18658 30.0423 1.23591 30.241 1.33477 30.4C1.43365 30.5524 1.60677 30.6683 1.85395 30.7478C2.10113 30.8273 2.4441 30.8671 2.88282 30.8671C3.27212 30.8671 3.57499 30.8405 3.79127 30.7875C4.01368 30.7278 4.16815 30.6418 4.25465 30.5292C4.34732 30.4099 4.39357 30.2576 4.39359 30.0721C4.39359 29.8204 4.31645 29.6349 4.16202 29.5156C4.01371 29.3964 3.75711 29.3003 3.39251 29.2274L1.77962 28.9591C1.42746 28.8929 1.11547 28.7867 0.843609 28.641C0.577887 28.4953 0.370848 28.2997 0.222538 28.0546C0.0742369 27.8029 8.96671e-06 27.4949 0 27.1305C0 26.8854 0.0493535 26.6468 0.148208 26.4149C0.247081 26.1764 0.404786 25.9611 0.621072 25.769C0.837342 25.5769 1.11843 25.4243 1.46446 25.3117C1.81667 25.1991 2.24314 25.1429 2.74365 25.1429Z"
3849
+ },
3850
+ {
3851
+ "d": "M8.13267 27.0774H9.71664V28.0429H8.13267V30.2075C8.13267 30.4818 8.19066 30.668 8.30664 30.7659C8.42873 30.8573 8.62417 30.903 8.89269 30.903H9.71664V32H8.63626C8.12966 32 7.72981 31.8694 7.43682 31.6083C7.14383 31.3405 6.99718 30.9063 6.99717 30.3056V28.0429H6.24641V27.0774H6.99717V25.6327H8.13267V27.0774Z"
3852
+ },
3853
+ {
3854
+ "d": "M11.4678 28.4808H11.5415C11.5844 28.2173 11.6701 27.9826 11.7988 27.7769C11.9275 27.5648 12.0992 27.4009 12.3137 27.2852C12.5281 27.1631 12.7917 27.102 13.1042 27.102C13.4535 27.102 13.7353 27.1793 13.9498 27.3335C14.1643 27.4814 14.3206 27.6837 14.4186 27.9408C14.5228 28.1915 14.575 28.4712 14.575 28.7797V29.551H13.4352V29.0208C13.4352 28.7058 13.3676 28.4775 13.2327 28.3361C13.0979 28.1883 12.8711 28.1144 12.5525 28.1144C12.1971 28.1144 11.9427 28.2141 11.7895 28.4133C11.6459 28.5941 11.5696 28.8568 11.5607 29.2014L11.5598 29.2714V32H10.4107V27.102H11.4678V28.4808Z"
3855
+ },
3856
+ {
3857
+ "d": "M17.6125 27.102C18.0663 27.102 18.4629 27.1903 18.8018 27.3668C19.1464 27.537 19.4134 27.7923 19.603 28.1326C19.7983 28.4667 19.896 28.8765 19.896 29.3618C19.896 29.4438 19.8931 29.5195 19.8874 29.5888C19.8817 29.6582 19.8729 29.7275 19.8614 29.7969H16.271C16.2866 30.1949 16.3862 30.5007 16.5701 30.714C16.7712 30.941 17.1129 31.0544 17.5954 31.0544C18.0204 31.0544 18.3221 30.9882 18.5002 30.8559C18.684 30.7172 18.7758 30.5248 18.7758 30.279V30.1939H19.8442V30.279C19.8442 30.6194 19.7495 30.9189 19.56 31.1773C19.3762 31.4357 19.1176 31.6376 18.7844 31.7826C18.457 31.9276 18.075 32 17.6385 32C17.1618 32 16.7453 31.9085 16.3892 31.7257C16.033 31.5429 15.7573 31.2688 15.562 30.9032C15.3667 30.5376 15.269 30.0868 15.269 29.551C15.269 29.053 15.3667 28.6211 15.562 28.2555C15.7573 27.8899 16.0302 27.6063 16.3806 27.4046C16.7367 27.2029 17.1473 27.1021 17.6125 27.102ZM17.5954 28.0192C17.1129 28.0192 16.7712 28.1359 16.5701 28.3691C16.4041 28.5565 16.3069 28.8212 16.278 29.1633H18.8703C18.8653 28.7807 18.7593 28.497 18.5519 28.3124C18.3452 28.117 18.0262 28.0192 17.5954 28.0192Z",
3858
+ "fillRule": "evenodd",
3859
+ "clipRule": "evenodd"
3860
+ },
3861
+ {
3862
+ "d": "M22.9315 27.102C23.4015 27.102 23.7874 27.187 24.0892 27.3572C24.3967 27.5211 24.623 27.7514 24.7681 28.0477C24.9131 28.3439 24.9856 28.6874 24.9857 29.0782V32H23.9846V30.7707H23.9238C23.8135 31.1552 23.5988 31.4579 23.2797 31.6786C22.9664 31.8929 22.563 32 22.0698 32C21.6172 32 21.2573 31.8896 20.9904 31.669C20.7235 31.4484 20.59 31.1426 20.59 30.7518C20.59 30.5123 20.6452 30.3074 20.7554 30.1372C20.8657 29.967 21.0253 29.8347 21.2341 29.7402C21.443 29.6393 21.6955 29.5699 21.9915 29.5321L23.9238 29.3147V29.0782C23.9238 28.7189 23.8425 28.473 23.68 28.3406C23.5175 28.202 23.2447 28.1326 22.8617 28.1326C22.4846 28.1326 22.2061 28.199 22.0262 28.3313C21.8522 28.4637 21.7651 28.6905 21.7651 29.012V29.05H20.6858V29.012C20.6858 28.6401 20.7757 28.3124 20.9556 28.0288C21.1355 27.7388 21.3937 27.5118 21.7303 27.3479C22.0726 27.184 22.4731 27.102 22.9315 27.102ZM22.296 30.2034C22.0872 30.2287 21.9305 30.2759 21.8261 30.3453C21.7274 30.4146 21.6781 30.525 21.6781 30.6763C21.6781 30.8401 21.7332 30.9598 21.8435 31.0355C21.9595 31.1111 22.1365 31.1491 22.3744 31.1491C22.6935 31.1491 22.9662 31.1111 23.1925 31.0355C23.4246 30.9535 23.6046 30.8275 23.7322 30.6574C23.8553 30.4871 23.9183 30.2699 23.9227 30.0059L22.296 30.2034Z",
3863
+ "fillRule": "evenodd",
3864
+ "clipRule": "evenodd"
3865
+ },
3866
+ {
3867
+ "d": "M26.7223 28.6446H26.7858C26.8282 28.3747 26.9099 28.1241 27.0307 27.8927C27.1577 27.6549 27.342 27.4652 27.5838 27.3237C27.8256 27.1759 28.131 27.102 28.4997 27.102C28.8987 27.102 29.225 27.1889 29.4789 27.3625C29.7328 27.536 29.9203 27.7738 30.0412 28.0759C30.1208 28.2612 30.1753 28.4605 30.205 28.6736H30.2678C30.3101 28.4036 30.3948 28.1496 30.5218 27.9118C30.6487 27.6741 30.8361 27.4814 31.0839 27.3335C31.3317 27.1793 31.6461 27.102 32.0269 27.102C32.4198 27.102 32.7431 27.1889 32.997 27.3625C33.2569 27.5296 33.4505 27.7609 33.5774 28.0565C33.7104 28.3522 33.7769 28.6897 33.7769 29.0689V32H32.6525V29.4257C32.6525 28.9822 32.5648 28.6641 32.3895 28.4712C32.2142 28.272 31.918 28.1723 31.5009 28.1723C31.0476 28.1723 30.7332 28.2879 30.5579 28.5193C30.3826 28.7507 30.2949 29.1108 30.2949 29.5993V32H29.1617V29.4257C29.1617 28.9822 29.074 28.6641 28.8987 28.4712C28.7295 28.272 28.4362 28.1723 28.0192 28.1723C27.5598 28.1723 27.2424 28.288 27.0671 28.5193C26.8979 28.7507 26.8132 29.1108 26.8132 29.5993V32H25.6797V27.102H26.7223V28.6446Z"
3868
+ },
3869
+ {
3870
+ "d": "M36.8958 27.102C37.3865 27.102 37.811 27.2029 38.1689 27.4046C38.5326 27.6063 38.8154 27.89 39.0175 28.2555C39.2253 28.6211 39.3293 29.053 39.3293 29.551C39.3293 30.0364 39.2253 30.4651 39.0175 30.837C38.8154 31.2026 38.5326 31.4894 38.1689 31.6975C37.811 31.8992 37.3865 32 36.8958 32C36.4166 32 35.9922 31.8992 35.6227 31.6975C35.259 31.4895 34.9762 31.2026 34.7741 30.837C34.5721 30.4651 34.4709 30.0364 34.4709 29.551C34.4709 29.053 34.5721 28.6211 34.7741 28.2555C34.9762 27.8899 35.259 27.6063 35.6227 27.4046C35.9922 27.2029 36.4166 27.102 36.8958 27.102ZM36.8958 28.1421C36.4109 28.1421 36.0616 28.2619 35.848 28.5014C35.6401 28.7346 35.5362 29.0846 35.5362 29.551C35.5362 30.0175 35.6401 30.3675 35.848 30.6007C36.0616 30.8339 36.4109 30.9503 36.8958 30.9503C37.3865 30.9503 37.7358 30.8339 37.9437 30.6007C38.1515 30.3675 38.2554 30.0175 38.2554 29.551C38.2554 29.0846 38.1515 28.7346 37.9437 28.5014C37.7358 28.2619 37.3865 28.1421 36.8958 28.1421Z",
3871
+ "fillRule": "evenodd",
3872
+ "clipRule": "evenodd"
3873
+ },
3874
+ {
3875
+ "d": "M41.1801 32H40.0233V27.3469H41.1801V32Z"
3876
+ },
3877
+ {
3878
+ "d": "M47.1951 32H46.1197V30.522H46.0542C45.9607 31.0082 45.7519 31.3777 45.4277 31.6305C45.1035 31.8768 44.6764 32 44.1465 32C43.654 32 43.2394 31.8963 42.9027 31.6889C42.5661 31.4749 42.3105 31.18 42.136 30.804C41.9614 30.4215 41.8741 29.9806 41.8741 29.4814C41.8741 28.9693 41.9584 28.5253 42.1267 28.1493C42.3012 27.7734 42.5536 27.4817 42.884 27.2742C43.2144 27.0668 43.6134 26.9631 44.081 26.9631C44.6296 26.9631 45.06 27.0927 45.3717 27.352C45.6834 27.6113 45.8829 27.9485 45.9702 28.3634H46.0354V25.6327H47.1951V32ZM44.5113 28.0618C44.1996 28.0618 43.9345 28.1071 43.7163 28.1979C43.4981 28.2886 43.3328 28.4379 43.2206 28.6453C43.1085 28.8463 43.0523 29.125 43.0523 29.4814C43.0523 29.8315 43.1054 30.1103 43.2114 30.3178C43.3236 30.5187 43.4888 30.6647 43.707 30.7554C43.9315 30.8462 44.2027 30.8915 44.5206 30.8915C44.8385 30.8915 45.1097 30.8429 45.3342 30.7456C45.5586 30.6484 45.7302 30.4993 45.8486 30.2984C45.9733 30.0909 46.0354 29.8316 46.0354 29.5204V29.4427L46.0341 29.3554C46.0188 28.9265 45.8883 28.6087 45.6428 28.4021C45.381 28.1752 45.0038 28.0618 44.5113 28.0618Z",
3879
+ "fillRule": "evenodd",
3880
+ "clipRule": "evenodd"
3881
+ },
3882
+ {
3883
+ "d": "M41.1801 26.8571H40.0233V25.6327H41.1801V26.8571Z"
3884
+ },
3885
+ {
3886
+ "d": "M78.0514 18.0168H74.1636L79.5806 11.4286V11.2403L74.1636 4.62521H78.1032L82.0429 9.46555H82.2243L86.1122 4.62521H90L84.583 11.1597V11.3748L90 18.0168H86.0603L82.1207 13.1496H81.9392L78.0514 18.0168Z"
3887
+ },
3888
+ {
3889
+ "d": "M73.0681 18.0168H70.0874V14.6824L69.906 14.6017V9.97647C69.906 8.95462 69.6641 8.25546 69.1803 7.87899C68.6965 7.48459 67.8843 7.28739 66.7439 7.28739C65.6207 7.28739 64.7913 7.47563 64.2557 7.8521C63.7373 8.22857 63.4781 8.87395 63.4781 9.78823V9.8958H60.2642V9.78823C60.2642 8.73053 60.532 7.79832 61.0677 6.99159C61.6033 6.16694 62.3722 5.52157 63.3744 5.05546C64.3939 4.58935 65.5862 4.3563 66.9512 4.3563C68.3509 4.3563 69.4999 4.59832 70.3985 5.08235C71.3143 5.54846 71.9881 6.2028 72.4201 7.04538C72.8521 7.88795 73.0681 8.86498 73.0681 9.97647V18.0168ZM64.3853 18.2857C63.0375 18.2857 61.9662 17.972 61.1713 17.3445C60.3765 16.7171 59.9791 15.8476 59.9791 14.7361C59.9791 14.0549 60.1432 13.4723 60.4715 12.9882C60.7998 12.5042 61.275 12.1277 61.8971 11.8588C62.5191 11.572 63.2708 11.3748 64.152 11.2672L70.1652 10.6218V12.5849L65.0592 13.1765C64.4371 13.2482 63.9706 13.3826 63.6596 13.5798C63.3658 13.777 63.2189 14.0908 63.2189 14.521C63.2189 14.9871 63.3831 15.3277 63.7114 15.5429C64.057 15.758 64.584 15.8655 65.2924 15.8655C66.2428 15.8655 67.0549 15.758 67.7288 15.5429C68.42 15.3098 68.9556 14.9513 69.3358 14.4672C69.7159 13.9653 69.906 13.3199 69.906 12.5311H70.2689V14.7899H69.906C69.5777 15.8835 68.9384 16.744 67.988 17.3714C67.0549 17.981 65.854 18.2857 64.3853 18.2857Z"
3890
+ },
3891
+ {
3892
+ "d": "M54.7001 18.0168H51.4603V5.43193C51.4603 4.32045 51.7022 3.36135 52.186 2.55462C52.6871 1.7479 53.4128 1.12045 54.3632 0.672269C55.3135 0.22409 56.4712 0 57.8363 0H59.0804V2.44706H57.3439C56.2725 2.44706 55.5123 2.64426 55.063 3.03866C54.6137 3.41513 54.4928 4.15014 54.7001 5.2437V18.0168ZM59.0804 7.39496H49.5423V4.62521H59.0804V7.39496Z"
3893
+ },
3894
+ {
3895
+ "d": "M48.0702 18.0168H44.8303V4.62521H48.0702V18.0168ZM48.0702 3.11933H44.8303V0H48.0702V3.11933Z"
3896
+ },
3897
+ {
3898
+ "d": "M43.1873 18.0168H40.1289C38.6947 18.0168 37.5629 17.6583 36.7335 16.9412C35.9041 16.2062 35.4894 15.014 35.4894 13.3647V1.80169H38.7033V13.0958C38.7033 13.8487 38.8675 14.3597 39.1958 14.6286C39.5414 14.8796 40.0943 15.0051 40.8546 15.0051H43.1873V18.0168ZM43.1873 7.39497H33.364V4.62522H43.1873V7.39497Z"
3899
+ },
3900
+ {
3901
+ "d": "M24.3534 18.0168H21.1135V4.62521H24.0942V8.4168L24.3534 8.55126V18.0168ZM24.3534 10.4067H23.6536V8.20168H24.3016C24.4225 7.46666 24.6644 6.81232 25.0273 6.23865C25.3901 5.64706 25.874 5.18991 26.4787 4.86722C27.0835 4.52661 27.8265 4.3563 28.7078 4.3563C29.6927 4.3563 30.4875 4.57143 31.0923 5.00168C31.6971 5.414 32.1377 5.97871 32.4142 6.6958C32.7079 7.39495 32.8548 8.17479 32.8548 9.03529V10.9983H29.6408V9.70756C29.6408 8.82913 29.4508 8.19272 29.0706 7.79832C28.6905 7.38599 28.0511 7.17983 27.1526 7.17983C26.1504 7.17983 25.4333 7.4577 25.0014 8.01344C24.5694 8.55126 24.3534 9.34902 24.3534 10.4067Z"
3902
+ },
3903
+ {
3904
+ "d": "M3.60272 18.0168H0L7.6979 0H12.2855L19.9834 18.0168H16.303L11.1192 5.72773L10.0565 3.09244H9.82325L8.81241 5.72773L3.60272 18.0168ZM15.8105 13.6336H3.96559V10.595H15.8105V13.6336Z"
3905
+ }
3906
+ ]
3907
+ },
3908
+ "Photogenix": {
3909
+ "viewBox": "0 0 144 32",
3910
+ "width": 144,
3911
+ "paths": [
3912
+ {
3913
+ "d": "M2.74784 25.1429C3.36674 25.1429 3.87432 25.2423 4.27042 25.4411C4.67269 25.6332 4.96984 25.9048 5.1617 26.2559C5.35973 26.6004 5.45878 26.9979 5.4588 27.4483V27.5081H4.29825V27.3689C4.29825 27.1238 4.24575 26.9217 4.14054 26.7627C4.04151 26.597 3.87121 26.4746 3.62984 26.3951C3.38847 26.3156 3.05737 26.2758 2.63651 26.2758C2.27756 26.2758 1.98968 26.3056 1.77306 26.3652C1.55653 26.4248 1.39872 26.5109 1.2997 26.6235C1.20688 26.7361 1.16056 26.8853 1.16055 27.0707C1.16055 27.2297 1.19143 27.3624 1.25332 27.4684C1.3214 27.5744 1.42357 27.6571 1.55969 27.7167C1.69583 27.7763 1.87215 27.8293 2.08871 27.8757L3.68551 28.1639C4.12493 28.2434 4.48096 28.3693 4.75328 28.5415C5.03173 28.7071 5.23583 28.9159 5.3658 29.1677C5.49576 29.4128 5.56084 29.6944 5.56084 30.0124C5.56084 30.3569 5.46797 30.6817 5.2823 30.9864C5.10284 31.2845 4.81506 31.5295 4.41908 31.7216C4.02918 31.9071 3.51849 32 2.88722 32C2.26832 32 1.7453 31.9105 1.31826 31.7317C0.897407 31.5462 0.57556 31.2844 0.352757 30.9465C0.136182 30.602 0.027847 30.1847 0.0278314 29.6945V29.6347H1.18838V29.8038C1.18839 30.0423 1.2378 30.241 1.33681 30.4C1.43584 30.5524 1.60923 30.6683 1.85678 30.7478C2.10434 30.8273 2.44783 30.8671 2.88722 30.8671C3.27711 30.8671 3.58045 30.8405 3.79706 30.7875C4.01981 30.7278 4.17451 30.6418 4.26114 30.5292C4.35396 30.4099 4.40028 30.2576 4.4003 30.0721C4.4003 29.8204 4.32304 29.6349 4.16837 29.5156C4.01983 29.3964 3.76284 29.3003 3.39769 29.2274L1.78234 28.9591C1.42964 28.8929 1.11717 28.7867 0.844897 28.641C0.578769 28.4953 0.371414 28.2997 0.222877 28.0546C0.0743502 27.8029 8.9804e-06 27.4949 0 27.1305C0 26.8854 0.0494289 26.6468 0.148434 26.4149C0.247458 26.1764 0.405404 25.9611 0.62202 25.769C0.83862 25.5769 1.12014 25.4243 1.46669 25.3117C1.81944 25.1991 2.24657 25.1429 2.74784 25.1429Z"
3914
+ },
3915
+ {
3916
+ "d": "M8.14509 27.0774H9.73148V28.0429H8.14509V30.2075C8.14509 30.4818 8.20316 30.668 8.31932 30.7659C8.44159 30.8573 8.63733 30.903 8.90627 30.903H9.73148V32H8.64945C8.14207 32 7.74161 31.8694 7.44817 31.6083C7.15474 31.3405 7.00786 30.9063 7.00785 30.3056V28.0429H6.25595V27.0774H7.00785V25.6327H8.14509V27.0774Z"
3917
+ },
3918
+ {
3919
+ "d": "M11.4853 28.4808H11.5591C11.602 28.2173 11.6879 27.9826 11.8168 27.7769C11.9457 27.5648 12.1176 27.4009 12.3325 27.2852C12.5473 27.1631 12.8112 27.102 13.1242 27.102C13.474 27.102 13.7563 27.1793 13.9711 27.3335C14.1859 27.4814 14.3424 27.6837 14.4406 27.9408C14.545 28.1915 14.5972 28.4712 14.5972 28.7797V29.551H13.4557V29.0208C13.4557 28.7058 13.388 28.4775 13.2529 28.3361C13.1179 28.1883 12.8907 28.1144 12.5716 28.1144C12.2157 28.1144 11.9609 28.2141 11.8075 28.4133C11.6637 28.5941 11.5873 28.8568 11.5783 29.2014L11.5774 29.2714V32H10.4266V27.102H11.4853V28.4808Z"
3920
+ },
3921
+ {
3922
+ "d": "M17.6394 27.102C18.0939 27.102 18.4911 27.1903 18.8305 27.3668C19.1756 27.537 19.4431 27.7923 19.6329 28.1326C19.8285 28.4667 19.9263 28.8765 19.9264 29.3618C19.9264 29.4438 19.9235 29.5195 19.9178 29.5888C19.912 29.6582 19.9032 29.7275 19.8917 29.7969H16.2958C16.3115 30.1949 16.4112 30.5007 16.5954 30.714C16.7968 30.941 17.139 31.0544 17.6222 31.0544C18.048 31.0544 18.3501 30.9882 18.5285 30.8559C18.7125 30.7172 18.8045 30.5248 18.8045 30.279V30.1939H19.8745V30.279C19.8745 30.6194 19.7797 30.9189 19.5899 31.1773C19.4058 31.4357 19.1468 31.6376 18.8131 31.7826C18.4852 31.9276 18.1026 32 17.6655 32C17.188 32 16.7709 31.9085 16.4142 31.7257C16.0575 31.5429 15.7814 31.2688 15.5858 30.9032C15.3902 30.5376 15.2923 30.0868 15.2923 29.551C15.2923 29.053 15.3902 28.6211 15.5858 28.2555C15.7814 27.8899 16.0547 27.6063 16.4056 27.4046C16.7622 27.2029 17.1735 27.1021 17.6394 27.102ZM17.6222 28.0192C17.139 28.0192 16.7968 28.1359 16.5954 28.3691C16.4292 28.5565 16.3318 28.8212 16.3028 29.1633H18.8991C18.8941 28.7807 18.788 28.497 18.5803 28.3124C18.3732 28.117 18.0537 28.0192 17.6222 28.0192Z",
3923
+ "fillRule": "evenodd",
3924
+ "clipRule": "evenodd"
3925
+ },
3926
+ {
3927
+ "d": "M22.9665 27.102C23.4373 27.102 23.8238 27.187 24.126 27.3572C24.434 27.5211 24.6606 27.7514 24.8059 28.0477C24.9512 28.3439 25.0238 28.6874 25.0238 29.0782V32H24.0212V30.7707H23.9603C23.8499 31.1552 23.6349 31.4579 23.3152 31.6786C23.0014 31.8929 22.5975 32 22.1035 32C21.6502 32 21.2898 31.8896 21.0224 31.669C20.7551 31.4484 20.6215 31.1426 20.6215 30.7518C20.6215 30.5123 20.6767 30.3074 20.7871 30.1372C20.8975 29.967 21.0574 29.8347 21.2666 29.7402C21.4758 29.6393 21.7286 29.5699 22.025 29.5321L23.9603 29.3147V29.0782C23.9603 28.7189 23.8789 28.473 23.7162 28.3406C23.5534 28.202 23.2802 28.1326 22.8966 28.1326C22.5189 28.1326 22.24 28.199 22.0599 28.3313C21.8855 28.4637 21.7983 28.6905 21.7983 29.012V29.05H20.7174V29.012C20.7174 28.6401 20.8075 28.3124 20.9876 28.0288C21.1677 27.7388 21.4264 27.5118 21.7635 27.3479C22.1063 27.184 22.5074 27.102 22.9665 27.102ZM22.33 30.2034C22.1209 30.2287 21.964 30.2759 21.8594 30.3453C21.7606 30.4146 21.7112 30.525 21.7112 30.6763C21.7112 30.8401 21.7664 30.9598 21.8768 31.0355C21.993 31.1111 22.1703 31.1491 22.4086 31.1491C22.7282 31.1491 23.0012 31.1111 23.2279 31.0355C23.4603 30.9535 23.6406 30.8275 23.7684 30.6574C23.8918 30.4871 23.9548 30.2699 23.9592 30.0059L22.33 30.2034Z",
3928
+ "fillRule": "evenodd",
3929
+ "clipRule": "evenodd"
3930
+ },
3931
+ {
3932
+ "d": "M26.7631 28.6446H26.8267C26.8691 28.3747 26.9509 28.1241 27.072 27.8927C27.1991 27.6549 27.3838 27.4652 27.6259 27.3237C27.8681 27.1759 28.1739 27.102 28.5432 27.102C28.9428 27.102 29.2696 27.1889 29.5239 27.3625C29.7782 27.536 29.966 27.7738 30.0871 28.0759C30.1667 28.2612 30.2214 28.4605 30.2511 28.6736H30.314C30.3564 28.4036 30.4412 28.1496 30.5684 27.9118C30.6955 27.6741 30.8832 27.4814 31.1313 27.3335C31.3795 27.1793 31.6944 27.102 32.0758 27.102C32.4693 27.102 32.7931 27.1889 33.0474 27.3625C33.3077 27.5296 33.5015 27.7609 33.6287 28.0565C33.7619 28.3522 33.8285 28.6897 33.8285 29.0689V32H32.7023V29.4257C32.7023 28.9822 32.6145 28.6641 32.4389 28.4712C32.2634 28.272 31.9667 28.1723 31.549 28.1723C31.095 28.1723 30.7801 28.2879 30.6046 28.5193C30.429 28.7507 30.3412 29.1108 30.3412 29.5993V32H29.2062V29.4257C29.2062 28.9822 29.1183 28.6641 28.9428 28.4712C28.7733 28.272 28.4796 28.1723 28.0619 28.1723C27.6019 28.1723 27.284 28.288 27.1084 28.5193C26.9389 28.7507 26.8541 29.1108 26.8541 29.5993V32H25.7189V27.102H26.7631V28.6446Z"
3933
+ },
3934
+ {
3935
+ "d": "M36.9521 27.102C37.4436 27.102 37.8687 27.2029 38.2272 27.4046C38.5914 27.6063 38.8747 27.89 39.0771 28.2555C39.2852 28.6211 39.3893 29.053 39.3893 29.551C39.3893 30.0364 39.2852 30.4651 39.0771 30.837C38.8747 31.2026 38.5914 31.4894 38.2272 31.6975C37.8687 31.8992 37.4436 32 36.9521 32C36.4722 32 36.0472 31.8992 35.6771 31.6975C35.3128 31.4895 35.0296 31.2026 34.8272 30.837C34.6249 30.4651 34.5236 30.0364 34.5236 29.551C34.5236 29.053 34.6249 28.6211 34.8272 28.2555C35.0296 27.8899 35.3129 27.6063 35.6771 27.4046C36.0472 27.2029 36.4722 27.102 36.9521 27.102ZM36.9521 28.1421C36.4665 28.1421 36.1166 28.2619 35.9027 28.5014C35.6945 28.7346 35.5904 29.0846 35.5904 29.551C35.5904 30.0175 35.6945 30.3675 35.9027 30.6007C36.1166 30.8339 36.4665 30.9503 36.9521 30.9503C37.4436 30.9503 37.7934 30.8339 38.0016 30.6007C38.2098 30.3675 38.3138 30.0175 38.3138 29.551C38.3138 29.0846 38.2098 28.7346 38.0016 28.5014C37.7934 28.2619 37.4436 28.1421 36.9521 28.1421Z",
3936
+ "fillRule": "evenodd",
3937
+ "clipRule": "evenodd"
3938
+ },
3939
+ {
3940
+ "d": "M41.2429 32H40.0844V27.3469H41.2429V32Z"
3941
+ },
3942
+ {
3943
+ "d": "M47.2672 32H46.1901V30.522H46.1245C46.0308 31.0082 45.8217 31.3777 45.4971 31.6305C45.1724 31.8768 44.7446 32 44.2139 32C43.7206 32 43.3054 31.8963 42.9682 31.6889C42.6311 31.4749 42.3751 31.18 42.2003 30.804C42.0255 30.4215 41.938 29.9806 41.938 29.4814C41.938 28.9693 42.0224 28.5253 42.191 28.1493C42.3658 27.7734 42.6186 27.4817 42.9495 27.2742C43.2804 27.0668 43.68 26.9631 44.1483 26.9631C44.6977 26.9631 45.1287 27.0927 45.4409 27.352C45.7531 27.6113 45.9529 27.9485 46.0403 28.3634H46.1057V25.6327H47.2672V32ZM44.5793 28.0618C44.2671 28.0618 44.0016 28.1071 43.783 28.1979C43.5645 28.2886 43.399 28.4379 43.2866 28.6453C43.1743 28.8463 43.118 29.125 43.118 29.4814C43.118 29.8315 43.1712 30.1103 43.2773 30.3178C43.3897 30.5187 43.5552 30.6647 43.7738 30.7554C43.9985 30.8462 44.2702 30.8915 44.5886 30.8915C44.907 30.8915 45.1786 30.8429 45.4034 30.7456C45.6282 30.6484 45.8 30.4993 45.9186 30.2984C46.0435 30.0909 46.1057 29.8316 46.1057 29.5204V29.4427L46.1044 29.3554C46.089 28.9265 45.9583 28.6087 45.7125 28.4021C45.4502 28.1752 45.0725 28.0618 44.5793 28.0618Z",
3944
+ "fillRule": "evenodd",
3945
+ "clipRule": "evenodd"
3946
+ },
3947
+ {
3948
+ "d": "M41.2429 26.8571H40.0844V25.6327H41.2429V26.8571Z"
3949
+ },
3950
+ {
3951
+ "d": "M131.995 18.0168H128.089L133.532 11.4286V11.2403L128.089 4.6252H132.047L136.006 9.46554H136.188L140.094 4.6252H144L138.558 11.1597V11.3748L144 18.0168H140.042L136.084 13.1496H135.901L131.995 18.0168Z"
3952
+ },
3953
+ {
3954
+ "d": "M126.897 18.0168H123.642V4.62521H126.897V18.0168ZM126.897 3.11933H123.642V0H126.897V3.11933Z"
3955
+ },
3956
+ {
3957
+ "d": "M121.348 18.0168H118.093V10.837C118.093 9.65377 117.815 8.77534 117.259 8.20167C116.721 7.628 115.81 7.34117 114.525 7.34117C113.188 7.34117 112.216 7.67282 111.608 8.33612C111.018 8.99943 110.723 9.99439 110.723 11.321L110.228 11.3479L110.02 8.73949H110.671C110.792 7.98655 111.062 7.27842 111.478 6.61512C111.895 5.95181 112.476 5.414 113.223 5.00167C113.987 4.57142 114.924 4.35629 116.035 4.35629C117.233 4.35629 118.223 4.59831 119.004 5.08234C119.785 5.56638 120.367 6.22968 120.749 7.07226C121.148 7.89691 121.348 8.82016 121.348 9.84201V18.0168ZM110.723 18.0168H107.468V4.6252H110.463V8.79327L110.723 8.92772V18.0168Z"
3958
+ },
3959
+ {
3960
+ "d": "M98.7243 18.2857C97.2834 18.2857 96.0247 18.0258 94.9484 17.5059C93.8721 16.986 93.0388 16.2062 92.4485 15.1664C91.8583 14.1266 91.5631 12.8448 91.5631 11.321C91.5631 9.90475 91.8583 8.67674 92.4485 7.63697C93.0388 6.59719 93.8634 5.79047 94.9224 5.2168C95.9987 4.64313 97.24 4.35629 98.6462 4.35629C100.018 4.35629 101.215 4.60727 102.24 5.10923C103.281 5.59327 104.089 6.31932 104.662 7.28739C105.252 8.23753 105.547 9.40279 105.547 10.7832C105.547 11.0162 105.538 11.2314 105.521 11.4286C105.503 11.6258 105.477 11.823 105.443 12.0202H93.6464V10.2185H103.229L102.422 11.321C102.439 11.1597 102.448 10.9983 102.448 10.837C102.448 10.6577 102.448 10.4784 102.448 10.2992C102.448 9.16974 102.127 8.33613 101.485 7.79831C100.86 7.24257 99.8961 6.9647 98.5941 6.9647C97.1358 6.9647 96.1029 7.29635 95.4953 7.95965C94.8876 8.60503 94.5838 9.5731 94.5838 10.8639V11.6975C94.5838 12.9882 94.8876 13.9653 95.4953 14.6286C96.1029 15.2739 97.1358 15.5966 98.5941 15.5966C99.8787 15.5966 100.79 15.4084 101.328 15.0319C101.884 14.6375 102.162 14.0908 102.162 13.3916V13.1496H105.391V13.3916C105.391 14.3597 105.104 15.2112 104.531 15.9462C103.976 16.6812 103.195 17.2549 102.188 17.6672C101.198 18.0795 100.044 18.2857 98.7243 18.2857Z"
3961
+ },
3962
+ {
3963
+ "d": "M82.4811 22.8571C81.1617 22.8571 79.9986 22.651 78.9917 22.2387C78.0021 21.8263 77.2296 21.2347 76.6741 20.4639C76.1185 19.693 75.8408 18.7608 75.8408 17.6672H79.0958C79.0958 18.2588 79.2087 18.7249 79.4344 19.0655C79.66 19.4241 80.0333 19.6751 80.5541 19.8185C81.0749 19.9798 81.7867 20.0605 82.6894 20.0605C83.6269 20.0605 84.3647 19.9619 84.9029 19.7647C85.441 19.5675 85.823 19.209 86.0487 18.6891C86.2743 18.1692 86.3872 17.4431 86.3872 16.5109V8.57814L86.6476 8.44369V4.6252H89.6422V16.2958C89.6422 17.8196 89.3471 19.0566 88.7569 20.0067C88.184 20.9748 87.3594 21.6919 86.283 22.158C85.224 22.6241 83.9567 22.8571 82.4811 22.8571ZM81.1791 16.726C79.877 16.726 78.766 16.4751 77.8459 15.9731C76.9431 15.4532 76.2487 14.7272 75.7626 13.795C75.2765 12.8627 75.0335 11.7781 75.0335 10.5412C75.0335 9.28627 75.2852 8.20167 75.7887 7.28739C76.2921 6.35517 77.0126 5.63808 77.95 5.13612C78.9049 4.61623 80.0333 4.35629 81.3353 4.35629C82.6894 4.35629 83.8265 4.66105 84.7466 5.27058C85.6667 5.86217 86.2309 6.74061 86.4392 7.90587H87.1163L86.882 10.326H86.3872C86.3872 9.62688 86.2309 9.05321 85.9184 8.60503C85.606 8.13893 85.1459 7.79831 84.5383 7.58318C83.9307 7.36806 83.1929 7.2605 82.3249 7.2605C81.4568 7.2605 80.719 7.36806 80.1114 7.58318C79.5212 7.78038 79.0698 8.121 78.7573 8.60503C78.4622 9.07114 78.3146 9.71652 78.3146 10.5412C78.3146 11.3479 78.4622 11.9933 78.7573 12.4773C79.0524 12.9613 79.4951 13.3109 80.0854 13.526C80.6756 13.7412 81.3961 13.8487 82.2467 13.8487C83.6008 13.8487 84.6251 13.5888 85.3195 13.0689C86.0313 12.549 86.3872 11.7423 86.3872 10.6487H86.882V13.3109H86.2049C85.9792 14.3148 85.4497 15.1395 84.6164 15.7849C83.7831 16.4123 82.6373 16.726 81.1791 16.726Z"
3964
+ },
3965
+ {
3966
+ "d": "M66.3274 18.2857C64.8865 18.2857 63.6105 17.9989 62.4995 17.4252C61.4058 16.8336 60.5551 16.0179 59.9475 14.9781C59.3399 13.9204 59.0361 12.7014 59.0361 11.321C59.0361 9.90475 59.3399 8.67674 59.9475 7.63697C60.5551 6.59719 61.4058 5.79047 62.4995 5.2168C63.6105 4.64313 64.8865 4.35629 66.3274 4.35629C67.8031 4.35629 69.0791 4.64313 70.1554 5.2168C71.2491 5.79047 72.0997 6.59719 72.7074 7.63697C73.3323 8.67674 73.6448 9.90475 73.6448 11.321C73.6448 12.7014 73.3323 13.9204 72.7074 14.9781C72.0997 16.0179 71.2491 16.8336 70.1554 17.4252C69.0791 17.9989 67.8031 18.2857 66.3274 18.2857ZM66.3274 15.3008C67.8031 15.3008 68.8534 14.9692 69.4783 14.3059C70.1033 13.6426 70.4158 12.6476 70.4158 11.321C70.4158 9.99439 70.1033 8.99943 69.4783 8.33612C68.8534 7.65489 67.8031 7.31428 66.3274 7.31428C64.8692 7.31428 63.8189 7.65489 63.1765 8.33612C62.5516 8.99943 62.2391 9.99439 62.2391 11.321C62.2391 12.6476 62.5516 13.6426 63.1765 14.3059C63.8189 14.9692 64.8692 15.3008 66.3274 15.3008Z"
3967
+ },
3968
+ {
3969
+ "d": "M57.9322 18.0168H54.8594C53.4185 18.0168 52.2814 17.6583 51.4481 16.9412C50.6148 16.2062 50.1982 15.014 50.1982 13.3647V1.80168H53.4272V13.0958C53.4272 13.8487 53.5921 14.3597 53.922 14.6286C54.2692 14.8796 54.8247 15.005 55.5886 15.005H57.9322V18.0168ZM57.9322 7.39496H48.0629V4.62521H57.9322V7.39496Z"
3970
+ },
3971
+ {
3972
+ "d": "M39.9818 18.2857C38.5409 18.2857 37.2649 17.9989 36.1538 17.4252C35.0601 16.8336 34.2094 16.0179 33.6018 14.9781C32.9942 13.9204 32.6904 12.7014 32.6904 11.321C32.6904 9.90475 32.9942 8.67674 33.6018 7.63697C34.2094 6.59719 35.0601 5.79047 36.1538 5.2168C37.2649 4.64313 38.5409 4.35629 39.9818 4.35629C41.4574 4.35629 42.7334 4.64313 43.8097 5.2168C44.9034 5.79047 45.7541 6.59719 46.3617 7.63697C46.9867 8.67674 47.2991 9.90475 47.2991 11.321C47.2991 12.7014 46.9867 13.9204 46.3617 14.9781C45.7541 16.0179 44.9034 16.8336 43.8097 17.4252C42.7334 17.9989 41.4574 18.2857 39.9818 18.2857ZM39.9818 15.3008C41.4574 15.3008 42.5077 14.9692 43.1327 14.3059C43.7576 13.6426 44.0701 12.6476 44.0701 11.321C44.0701 9.99439 43.7576 8.99943 43.1327 8.33612C42.5077 7.65489 41.4574 7.31428 39.9818 7.31428C38.5235 7.31428 37.4732 7.65489 36.8309 8.33612C36.2059 8.99943 35.8934 9.99439 35.8934 11.321C35.8934 12.6476 36.2059 13.6426 36.8309 14.3059C37.4732 14.9692 38.5235 15.3008 39.9818 15.3008Z"
3973
+ },
3974
+ {
3975
+ "d": "M30.9469 18.0168H27.6919V10.837C27.6919 9.58208 27.4054 8.68572 26.8325 8.1479C26.277 7.61009 25.3482 7.34118 24.0462 7.34118C23.074 7.34118 22.3015 7.50253 21.7286 7.82522C21.173 8.1479 20.7738 8.61401 20.5307 9.22353C20.2877 9.83306 20.1661 10.5681 20.1661 11.4286L19.5933 11.4555L19.6974 8.68572H20.3484C20.4873 7.93278 20.7564 7.23362 21.1557 6.58824C21.5723 5.92493 22.1452 5.38712 22.8744 4.97479C23.6209 4.56247 24.5496 4.35631 25.6607 4.35631C26.8412 4.35631 27.8221 4.59832 28.6033 5.08236C29.3845 5.56639 29.9661 6.2297 30.348 7.07227C30.7473 7.91485 30.9469 8.86499 30.9469 9.9227V18.0168ZM20.1661 18.0168H16.9111V0H20.1661V18.0168Z"
3976
+ },
3977
+ {
3978
+ "d": "M8.77565 12.7731H1.19786V9.76135H8.43713C9.66971 9.76135 10.5898 9.51037 11.1974 9.00841C11.805 8.50645 12.1088 7.62802 12.1088 6.37311C12.1088 5.13614 11.805 4.26667 11.1974 3.76471C10.5898 3.26275 9.66971 3.01177 8.43713 3.01177H1.19786V0H8.77565C10.095 0 11.2408 0.250981 12.213 0.752942C13.2025 1.2549 13.9664 1.98095 14.5046 2.93109C15.0601 3.88123 15.3379 5.02857 15.3379 6.37311C15.3379 7.71765 15.0601 8.87396 14.5046 9.84202C13.9664 10.7922 13.2025 11.5182 12.213 12.0202C11.2408 12.5221 10.095 12.7731 8.77565 12.7731ZM3.25506 18.0168H0V0H3.25506V18.0168Z"
3979
+ }
3980
+ ]
3981
+ }
3982
+ };
3983
+ var COLLAPSED_MARKS = {
3984
+ "Catalogix": {
3985
+ "viewBox": "0 0 40 40",
3986
+ "size": 40,
3987
+ "paths": [
3988
+ {
3989
+ "d": "M33.3333 27.2585H30.7021V24.2633L30.5419 24.1908V20.0362C30.5419 19.1184 30.3284 18.4903 29.9013 18.1522C29.4742 17.7979 28.7573 17.6208 27.7505 17.6208C26.7591 17.6208 26.0269 17.7899 25.554 18.128C25.0964 18.4662 24.8676 19.0459 24.8676 19.8671V19.9638H22.0305V19.8671C22.0305 18.9171 22.2669 18.0797 22.7397 17.3551C23.2126 16.6143 23.8914 16.0346 24.7761 15.6159C25.6761 15.1973 26.7285 14.9879 27.9336 14.9879C29.1691 14.9879 30.1835 15.2053 30.9767 15.6401C31.7851 16.0588 32.38 16.6465 32.7613 17.4034C33.1427 18.1602 33.3333 19.0378 33.3333 20.0362V27.2585ZM25.6684 27.5C24.4787 27.5 23.5329 27.2182 22.8313 26.6546C22.1296 26.091 21.7788 25.31 21.7788 24.3116C21.7788 23.6997 21.9237 23.1763 22.2135 22.7415C22.5033 22.3068 22.9228 21.9686 23.4719 21.7271C24.021 21.4694 24.6846 21.2923 25.4625 21.1957L30.7707 20.6159V22.3792L26.2633 22.9106C25.7142 22.975 25.3023 23.0958 25.0278 23.2729C24.7685 23.4501 24.6388 23.7319 24.6388 24.1184C24.6388 24.537 24.7837 24.843 25.0735 25.0362C25.3786 25.2295 25.8438 25.3261 26.4692 25.3261C27.3082 25.3261 28.0251 25.2295 28.62 25.0362C29.2301 24.8269 29.703 24.5048 30.0386 24.07C30.3741 23.6192 30.5419 23.0395 30.5419 22.3309H30.8623V24.3599H30.5419C30.2521 25.3422 29.6877 26.1151 28.8488 26.6787C28.0251 27.2262 26.965 27.5 25.6684 27.5Z"
3990
+ },
3991
+ {
3992
+ "d": "M13.031 27.5C11.3989 27.5 9.98028 27.1618 8.77525 26.4855C7.57022 25.7931 6.63976 24.8269 5.98385 23.587C5.32795 22.3309 5 20.8575 5 19.1667C5 17.4758 5.32795 16.0105 5.98385 14.7705C6.63976 13.5145 7.57022 12.5483 8.77525 11.872C9.98028 11.1795 11.3989 10.8333 13.031 10.8333C14.5411 10.8333 15.8605 11.091 16.9893 11.6063C18.118 12.1216 18.9951 12.8623 19.6205 13.8285C20.2459 14.7786 20.5586 15.9219 20.5586 17.2585V17.5966H17.4011V17.2585C17.4011 16.0829 17.0503 15.2053 16.3486 14.6256C15.647 14.0298 14.5563 13.7319 13.0767 13.7319C11.9022 13.7319 10.9413 13.9171 10.1938 14.2874C9.46166 14.6578 8.91253 15.2456 8.54645 16.0507C8.19562 16.8398 8.0202 17.8784 8.0202 19.1667C8.0202 20.4388 8.19562 21.4775 8.54645 22.2826C8.91253 23.0878 9.46166 23.6755 10.1938 24.0459C10.9413 24.4163 11.9022 24.6014 13.0767 24.6014C14.5563 24.6014 15.647 24.3116 16.3486 23.7319C17.0503 23.1361 17.4011 22.2504 17.4011 21.0749V20.7367H20.5586V21.0749C20.5586 22.3953 20.2459 23.5386 19.6205 24.5048C18.9951 25.471 18.118 26.2118 16.9893 26.727C15.8605 27.2423 14.5411 27.5 13.031 27.5Z"
3993
+ }
3994
+ ]
3995
+ }
3996
+ };
3997
+ var MARK_STYLE = {
3998
+ display: "block",
3999
+ color: "var(--alias-text---icons-primary, #F5F5F5)"
4000
+ };
4001
+ function ProductWordmark({
4002
+ product,
4003
+ style
4004
+ }) {
4005
+ const mark = WORDMARKS[product];
4006
+ if (!mark) return null;
4007
+ return /* @__PURE__ */ jsx43(
4008
+ "svg",
4009
+ {
4010
+ viewBox: mark.viewBox,
4011
+ height: 32,
4012
+ width: mark.width,
4013
+ fill: "none",
4014
+ xmlns: "http://www.w3.org/2000/svg",
4015
+ role: "img",
4016
+ "aria-label": product,
4017
+ style: { ...MARK_STYLE, ...style },
4018
+ children: mark.paths.map((p, i) => /* @__PURE__ */ jsx43(
4019
+ "path",
4020
+ {
4021
+ d: p.d,
4022
+ fill: "currentColor",
4023
+ fillRule: p.fillRule,
4024
+ clipRule: p.clipRule
4025
+ },
4026
+ i
4027
+ ))
4028
+ }
4029
+ );
4030
+ }
4031
+ function ProductCollapsedMark({
4032
+ product,
4033
+ style
4034
+ }) {
4035
+ const mark = COLLAPSED_MARKS[product];
4036
+ if (!mark) return null;
4037
+ return /* @__PURE__ */ jsx43(
4038
+ "svg",
4039
+ {
4040
+ viewBox: mark.viewBox,
4041
+ height: mark.size,
4042
+ width: mark.size,
4043
+ fill: "none",
4044
+ xmlns: "http://www.w3.org/2000/svg",
4045
+ role: "img",
4046
+ "aria-label": product,
4047
+ style: { ...MARK_STYLE, ...style },
4048
+ children: mark.paths.map((p, i) => /* @__PURE__ */ jsx43(
4049
+ "path",
4050
+ {
4051
+ d: p.d,
4052
+ fill: "currentColor",
4053
+ fillRule: p.fillRule,
4054
+ clipRule: p.clipRule
4055
+ },
4056
+ i
4057
+ ))
4058
+ }
4059
+ );
4060
+ }
4061
+ function hasCollapsedMark(product) {
4062
+ return product in COLLAPSED_MARKS;
4063
+ }
4064
+
4065
+ // src/SC-SideBarLogoUnit/ScSideBarLogoUnit.tsx
4066
+ import { jsx as jsx44, jsxs as jsxs35 } from "react/jsx-runtime";
3636
4067
  var ScSideBarLogoUnit = ({
3637
4068
  state = "expanded",
3638
4069
  wordmark,
4070
+ product,
3639
4071
  onClick,
3640
4072
  onSwitchClick,
3641
4073
  switchAriaLabel = "Switch product",
@@ -3646,6 +4078,8 @@ var ScSideBarLogoUnit = ({
3646
4078
  style
3647
4079
  }) => {
3648
4080
  const interactive = !disabled && (!!onClick || !!onSwitchClick);
4081
+ const expandedMark = wordmark ?? (product ? /* @__PURE__ */ jsx44(ProductWordmark, { product }) : null);
4082
+ const collapsedMark = wordmark ?? (product ? /* @__PURE__ */ jsx44(ProductCollapsedMark, { product }) : null);
3649
4083
  const handleClick = () => {
3650
4084
  if (!interactive) return;
3651
4085
  onClick?.();
@@ -3657,7 +4091,7 @@ var ScSideBarLogoUnit = ({
3657
4091
  interactive ? "" : ScSideBarLogoUnit_default.nonInteractive,
3658
4092
  hover === true ? ScSideBarLogoUnit_default.forceHover : ""
3659
4093
  ].filter(Boolean).join(" ");
3660
- return /* @__PURE__ */ jsx43(
4094
+ return /* @__PURE__ */ jsx44(
3661
4095
  "div",
3662
4096
  {
3663
4097
  className: ScSideBarLogoUnit_default.scSideBarLogoUnit + " " + ScSideBarLogoUnit_default.collapsed + (className ? " " + className : ""),
@@ -3673,8 +4107,8 @@ var ScSideBarLogoUnit = ({
3673
4107
  "aria-disabled": !interactive || disabled,
3674
4108
  style: hover === false ? { backgroundColor: "transparent" } : void 0,
3675
4109
  children: [
3676
- /* @__PURE__ */ jsx43("span", { className: ScSideBarLogoUnit_default.collapsedWordmarkSlot, children: wordmark }),
3677
- hideSwitch ? null : /* @__PURE__ */ jsx43("span", { className: ScSideBarLogoUnit_default.switch, children: /* @__PURE__ */ jsx43("span", { className: ScSideBarLogoUnit_default.switchIcon, children: /* @__PURE__ */ jsx43(SiconDoubleArrow, { size: 16, strokeWidth: 1.5 }) }) })
4110
+ /* @__PURE__ */ jsx44("span", { className: ScSideBarLogoUnit_default.collapsedWordmarkSlot, children: collapsedMark }),
4111
+ hideSwitch ? null : /* @__PURE__ */ jsx44("span", { className: ScSideBarLogoUnit_default.switch, children: /* @__PURE__ */ jsx44("span", { className: ScSideBarLogoUnit_default.switchIcon, children: /* @__PURE__ */ jsx44(SiconDoubleArrow, { size: 16, strokeWidth: 1.5 }) }) })
3678
4112
  ]
3679
4113
  }
3680
4114
  )
@@ -3686,7 +4120,7 @@ var ScSideBarLogoUnit = ({
3686
4120
  interactive ? "" : ScSideBarLogoUnit_default.nonInteractive,
3687
4121
  hover === true ? ScSideBarLogoUnit_default.forceHover : ""
3688
4122
  ].filter(Boolean).join(" ");
3689
- return /* @__PURE__ */ jsx43(
4123
+ return /* @__PURE__ */ jsx44(
3690
4124
  "div",
3691
4125
  {
3692
4126
  className: ScSideBarLogoUnit_default.scSideBarLogoUnit + (className ? " " + className : ""),
@@ -3708,8 +4142,8 @@ var ScSideBarLogoUnit = ({
3708
4142
  backgroundColor: "transparent"
3709
4143
  } : void 0,
3710
4144
  children: [
3711
- /* @__PURE__ */ jsx43("span", { className: ScSideBarLogoUnit_default.wordmarkSlot, children: wordmark }),
3712
- hideSwitch ? null : /* @__PURE__ */ jsx43("span", { className: ScSideBarLogoUnit_default.switch, children: /* @__PURE__ */ jsx43("span", { className: ScSideBarLogoUnit_default.switchIcon, children: /* @__PURE__ */ jsx43(SiconDoubleArrow, { size: 16, strokeWidth: 1.5 }) }) })
4145
+ /* @__PURE__ */ jsx44("span", { className: ScSideBarLogoUnit_default.wordmarkSlot, children: expandedMark }),
4146
+ hideSwitch ? null : /* @__PURE__ */ jsx44("span", { className: ScSideBarLogoUnit_default.switch, children: /* @__PURE__ */ jsx44("span", { className: ScSideBarLogoUnit_default.switchIcon, children: /* @__PURE__ */ jsx44(SiconDoubleArrow, { size: 16, strokeWidth: 1.5 }) }) })
3713
4147
  ]
3714
4148
  }
3715
4149
  )
@@ -3717,6 +4151,272 @@ var ScSideBarLogoUnit = ({
3717
4151
  );
3718
4152
  };
3719
4153
 
4154
+ // src/SC-Catalogix-Sidebar/ScCatalogixSidebar.tsx
4155
+ import {
4156
+ SiconBag,
4157
+ SiconBrain,
4158
+ SiconCollapse as SiconCollapse4,
4159
+ SiconExpand,
4160
+ SiconInsights
4161
+ } from "@streamoid/icons";
4162
+ import { jsx as jsx45, jsxs as jsxs36 } from "react/jsx-runtime";
4163
+ var PRIMARY_COLOR = "var(--alias-text---icons-primary)";
4164
+ var TERTIARY_COLOR = "var(--alias-text---icons-tertiary)";
4165
+ var DEFAULT_ITEMS = [
4166
+ { id: "stores", label: "Stores", iconKey: "stores" },
4167
+ { id: "ai-training", label: "AI Training", iconKey: "aiTraining" },
4168
+ { id: "insights", label: "Insights", iconKey: "insights" }
4169
+ ];
4170
+ var DEFAULT_ICON_MAP = {
4171
+ stores: ({ active }) => /* @__PURE__ */ jsx45(SiconBag, { color: active ? PRIMARY_COLOR : TERTIARY_COLOR }),
4172
+ aiTraining: ({ active }) => /* @__PURE__ */ jsx45(SiconBrain, { color: active ? PRIMARY_COLOR : TERTIARY_COLOR }),
4173
+ insights: ({ active }) => /* @__PURE__ */ jsx45(SiconInsights, { color: active ? PRIMARY_COLOR : TERTIARY_COLOR })
4174
+ };
4175
+ function resolveIcon3(iconMap, item, active, expanded) {
4176
+ const renderer = iconMap[item.iconKey];
4177
+ if (renderer == null) return null;
4178
+ if (typeof renderer === "function") {
4179
+ return renderer({ active, expanded });
4180
+ }
4181
+ return renderer;
4182
+ }
4183
+ function resolveToggleIcon3(toggleIcon, expanded) {
4184
+ if (toggleIcon == null) {
4185
+ const Icon = expanded ? SiconCollapse4 : SiconExpand;
4186
+ return /* @__PURE__ */ jsx45(Icon, { className: "size-6", color: "var(--alias-text---icons-muted)" });
4187
+ }
4188
+ if (typeof toggleIcon === "function") {
4189
+ return toggleIcon(expanded);
4190
+ }
4191
+ return toggleIcon;
4192
+ }
4193
+ var ScCatalogixSidebar = ({
4194
+ expanded,
4195
+ onToggle,
4196
+ items = DEFAULT_ITEMS,
4197
+ iconMap = DEFAULT_ICON_MAP,
4198
+ activeItemId,
4199
+ onItemSelect,
4200
+ switchApps,
4201
+ onLogoClick,
4202
+ expandedLogo,
4203
+ collapsedLogo,
4204
+ profile,
4205
+ creditWarning,
4206
+ toggleIcon,
4207
+ className,
4208
+ style
4209
+ }) => {
4210
+ const [appListOpen, setAppListOpen] = useState7(false);
4211
+ const handleSwitch = () => {
4212
+ setAppListOpen((prev) => !prev);
4213
+ onLogoClick?.();
4214
+ };
4215
+ const appList = appListOpen && switchApps && switchApps.length > 0 ? expanded ? /* @__PURE__ */ jsx45(
4216
+ "div",
4217
+ {
4218
+ className: "flex w-full shrink-0 flex-col items-stretch",
4219
+ style: {
4220
+ gap: "var(--spacing-md)",
4221
+ paddingTop: "var(--spacing-md)",
4222
+ paddingBottom: "var(--spacing-md)"
4223
+ },
4224
+ children: switchApps.map((app) => /* @__PURE__ */ jsx45(
4225
+ ScSidebarSwitchMenu,
4226
+ {
4227
+ icon: app.icon,
4228
+ text: app.name,
4229
+ description: app.description,
4230
+ state: "default-highlight",
4231
+ variant: "expanded",
4232
+ onClick: app.onClick
4233
+ },
4234
+ app.id
4235
+ ))
4236
+ }
4237
+ ) : /* @__PURE__ */ jsx45(
4238
+ "div",
4239
+ {
4240
+ className: "flex shrink-0 flex-col items-center",
4241
+ style: {
4242
+ gap: "var(--spacing-xxs)",
4243
+ paddingTop: "var(--spacing-xxs)",
4244
+ paddingBottom: "var(--spacing-xxs)"
4245
+ },
4246
+ children: switchApps.map((app) => /* @__PURE__ */ jsx45(
4247
+ ScSidebarSwitchMenu,
4248
+ {
4249
+ icon: app.icon,
4250
+ state: "default",
4251
+ variant: "collapsed",
4252
+ onClick: app.onClick
4253
+ },
4254
+ app.id
4255
+ ))
4256
+ }
4257
+ ) : null;
4258
+ const navItems = /* @__PURE__ */ jsx45(
4259
+ "div",
4260
+ {
4261
+ className: expanded ? "flex w-full shrink-0 flex-col items-stretch" : "flex shrink-0 flex-col items-center",
4262
+ style: {
4263
+ gap: expanded ? "var(--spacing-md)" : "var(--spacing-xxs)",
4264
+ paddingTop: "var(--spacing-sm)",
4265
+ paddingBottom: "var(--spacing-sm)"
4266
+ },
4267
+ children: items.map((item) => {
4268
+ const active = item.id === activeItemId;
4269
+ return /* @__PURE__ */ jsx45(
4270
+ ScSidebarMenu,
4271
+ {
4272
+ icon: resolveIcon3(iconMap, item, active, expanded),
4273
+ text: expanded ? item.label : void 0,
4274
+ state: active ? "active" : "default",
4275
+ variant: expanded ? "expanded" : "collapsed",
4276
+ onClick: () => onItemSelect?.(item)
4277
+ },
4278
+ item.id
4279
+ );
4280
+ })
4281
+ }
4282
+ );
4283
+ const bodyContent = /* @__PURE__ */ jsxs36(
4284
+ "div",
4285
+ {
4286
+ className: expanded ? "flex h-full min-h-0 flex-col" : "flex w-full flex-col items-center",
4287
+ children: [
4288
+ appList,
4289
+ /* @__PURE__ */ jsx45(ScHDivider, {}),
4290
+ navItems
4291
+ ]
4292
+ }
4293
+ );
4294
+ const defaultExpandedLogo = /* @__PURE__ */ jsx45(
4295
+ ScSideBarLogoUnit,
4296
+ {
4297
+ product: "Catalogix",
4298
+ onClick: handleSwitch,
4299
+ switchAriaLabel: "Switch product",
4300
+ hover: appListOpen ? true : void 0,
4301
+ style: { paddingBottom: 0 }
4302
+ }
4303
+ );
4304
+ const defaultCollapsedLogo = /* @__PURE__ */ jsx45(
4305
+ ScSideBarLogoUnit,
4306
+ {
4307
+ state: "collapsed",
4308
+ product: "Catalogix",
4309
+ onClick: handleSwitch,
4310
+ hover: appListOpen ? true : void 0
4311
+ }
4312
+ );
4313
+ return /* @__PURE__ */ jsx45(
4314
+ StreamoidSidebar,
4315
+ {
4316
+ expanded,
4317
+ onToggle,
4318
+ config: { sections: [] },
4319
+ iconMap: {},
4320
+ showBody: true,
4321
+ bodyContent,
4322
+ expandedLogo: expandedLogo ?? defaultExpandedLogo,
4323
+ collapsedLogo: collapsedLogo ?? defaultCollapsedLogo,
4324
+ profile,
4325
+ toggleInProfile: true,
4326
+ versionText: "",
4327
+ toggleIcon: (exp) => resolveToggleIcon3(toggleIcon, exp),
4328
+ preFooterContent: creditWarning ? /* @__PURE__ */ jsx45(
4329
+ CreditWarningBanner,
4330
+ {
4331
+ availableCredits: creditWarning.availableCredits,
4332
+ remainingPct: creditWarning.remainingPct,
4333
+ level: creditWarning.level ?? "danger",
4334
+ expanded,
4335
+ onBuyCredits: creditWarning.onBuyCredits,
4336
+ onCollapsedClick: creditWarning.onCollapsedClick ?? onToggle
4337
+ }
4338
+ ) : void 0,
4339
+ className,
4340
+ style
4341
+ }
4342
+ );
4343
+ };
4344
+
4345
+ // src/SC-Guide/ScGuide.module.css
4346
+ var ScGuide_default = {
4347
+ scGuide: "ScGuide_scGuide",
4348
+ header: "ScGuide_header",
4349
+ title: "ScGuide_title",
4350
+ description: "ScGuide_description",
4351
+ actions: "ScGuide_actions",
4352
+ stepIndicator: "ScGuide_stepIndicator",
4353
+ skipButton: "ScGuide_skipButton",
4354
+ skipSpacer: "ScGuide_skipSpacer",
4355
+ nextButton: "ScGuide_nextButton",
4356
+ nextLabel: "ScGuide_nextLabel",
4357
+ nextIcon: "ScGuide_nextIcon"
4358
+ };
4359
+
4360
+ // src/SC-Guide/ScGuide.tsx
4361
+ import { SiconRight as SiconRight2 } from "@streamoid/icons";
4362
+ import { jsx as jsx46, jsxs as jsxs37 } from "react/jsx-runtime";
4363
+ var ScGuide = ({
4364
+ title = "Title",
4365
+ description = "Description",
4366
+ skipLabel = "Skip",
4367
+ nextLabel = "Next",
4368
+ nextIcon,
4369
+ stepLabel,
4370
+ onSkip,
4371
+ onNext,
4372
+ hideSkip = false,
4373
+ hideNext = false,
4374
+ disabled = false,
4375
+ className,
4376
+ style
4377
+ }) => {
4378
+ return /* @__PURE__ */ jsxs37(
4379
+ "div",
4380
+ {
4381
+ className: ScGuide_default.scGuide + (className ? " " + className : ""),
4382
+ style,
4383
+ children: [
4384
+ /* @__PURE__ */ jsxs37("div", { className: ScGuide_default.header, children: [
4385
+ /* @__PURE__ */ jsx46("p", { className: ScGuide_default.title, children: title }),
4386
+ /* @__PURE__ */ jsx46("p", { className: ScGuide_default.description, children: description })
4387
+ ] }),
4388
+ /* @__PURE__ */ jsx46(ScHDivider, {}),
4389
+ /* @__PURE__ */ jsxs37("div", { className: ScGuide_default.actions, children: [
4390
+ hideSkip ? /* @__PURE__ */ jsx46("span", { className: ScGuide_default.skipSpacer, "aria-hidden": "true", children: skipLabel }) : /* @__PURE__ */ jsx46(
4391
+ "button",
4392
+ {
4393
+ type: "button",
4394
+ className: ScGuide_default.skipButton,
4395
+ onClick: onSkip,
4396
+ disabled,
4397
+ children: skipLabel
4398
+ }
4399
+ ),
4400
+ stepLabel != null && /* @__PURE__ */ jsx46("span", { className: ScGuide_default.stepIndicator, children: stepLabel }),
4401
+ !hideNext && /* @__PURE__ */ jsxs37(
4402
+ "button",
4403
+ {
4404
+ type: "button",
4405
+ className: ScGuide_default.nextButton,
4406
+ onClick: onNext,
4407
+ disabled,
4408
+ children: [
4409
+ /* @__PURE__ */ jsx46("span", { className: ScGuide_default.nextLabel, children: nextLabel }),
4410
+ /* @__PURE__ */ jsx46("span", { className: ScGuide_default.nextIcon, children: nextIcon ?? /* @__PURE__ */ jsx46(SiconRight2, { size: 16, strokeWidth: 1.5 }) })
4411
+ ]
4412
+ }
4413
+ )
4414
+ ] })
4415
+ ]
4416
+ }
4417
+ );
4418
+ };
4419
+
3720
4420
  // src/SC-Slider/ScSlider.module.css
3721
4421
  var ScSlider_default = {
3722
4422
  scSlider: "ScSlider_scSlider",
@@ -3727,23 +4427,23 @@ var ScSlider_default = {
3727
4427
  };
3728
4428
 
3729
4429
  // src/SC-Slider/ScSlider.tsx
3730
- import { jsx as jsx44, jsxs as jsxs36 } from "react/jsx-runtime";
4430
+ import { jsx as jsx47, jsxs as jsxs38 } from "react/jsx-runtime";
3731
4431
  var ScSlider = ({
3732
4432
  className,
3733
4433
  onValueChange,
3734
4434
  ...props
3735
4435
  }) => {
3736
- return /* @__PURE__ */ jsxs36("div", { className: ScSlider_default.scSlider + " " + className, ...props, children: [
3737
- /* @__PURE__ */ jsx44("div", { className: ScSlider_default.progressBar }),
3738
- /* @__PURE__ */ jsx44("div", { className: ScSlider_default.progressDot }),
3739
- /* @__PURE__ */ jsx44("div", { className: ScSlider_default.progressBar2 }),
3740
- /* @__PURE__ */ jsx44("div", { className: ScSlider_default.progressDot2 }),
3741
- /* @__PURE__ */ jsx44("div", { className: ScSlider_default.progressBar2 }),
3742
- /* @__PURE__ */ jsx44("div", { className: ScSlider_default.progressDot2 }),
3743
- /* @__PURE__ */ jsx44("div", { className: ScSlider_default.progressBar2 }),
3744
- /* @__PURE__ */ jsx44("div", { className: ScSlider_default.progressDot2 }),
3745
- /* @__PURE__ */ jsx44("div", { className: ScSlider_default.progressBar2 }),
3746
- /* @__PURE__ */ jsx44("div", { className: ScSlider_default.progressDot2 })
4436
+ return /* @__PURE__ */ jsxs38("div", { className: ScSlider_default.scSlider + " " + className, ...props, children: [
4437
+ /* @__PURE__ */ jsx47("div", { className: ScSlider_default.progressBar }),
4438
+ /* @__PURE__ */ jsx47("div", { className: ScSlider_default.progressDot }),
4439
+ /* @__PURE__ */ jsx47("div", { className: ScSlider_default.progressBar2 }),
4440
+ /* @__PURE__ */ jsx47("div", { className: ScSlider_default.progressDot2 }),
4441
+ /* @__PURE__ */ jsx47("div", { className: ScSlider_default.progressBar2 }),
4442
+ /* @__PURE__ */ jsx47("div", { className: ScSlider_default.progressDot2 }),
4443
+ /* @__PURE__ */ jsx47("div", { className: ScSlider_default.progressBar2 }),
4444
+ /* @__PURE__ */ jsx47("div", { className: ScSlider_default.progressDot2 }),
4445
+ /* @__PURE__ */ jsx47("div", { className: ScSlider_default.progressBar2 }),
4446
+ /* @__PURE__ */ jsx47("div", { className: ScSlider_default.progressDot2 })
3747
4447
  ] });
3748
4448
  };
3749
4449
 
@@ -3755,7 +4455,7 @@ import {
3755
4455
  SiconCrown,
3756
4456
  SiconSwitch
3757
4457
  } from "@streamoid/icons";
3758
- import { jsx as jsx45, jsxs as jsxs37 } from "react/jsx-runtime";
4458
+ import { jsx as jsx48, jsxs as jsxs39 } from "react/jsx-runtime";
3759
4459
  var PRIMARY_ICON = "var(--alias-text---icons-primary)";
3760
4460
  function deriveInitials(name) {
3761
4461
  return name.split(/\s+/).slice(0, 2).map((w) => w[0]?.toUpperCase() ?? "").join("") || "WS";
@@ -3773,7 +4473,7 @@ function WorkspaceRow({
3773
4473
  switchWorkspaceText,
3774
4474
  onSwitch
3775
4475
  }) {
3776
- return /* @__PURE__ */ jsxs37(
4476
+ return /* @__PURE__ */ jsxs39(
3777
4477
  "div",
3778
4478
  {
3779
4479
  className: "relative shrink-0 w-full",
@@ -3783,7 +4483,7 @@ function WorkspaceRow({
3783
4483
  backdropFilter: "blur(4px)"
3784
4484
  },
3785
4485
  children: [
3786
- /* @__PURE__ */ jsx45(
4486
+ /* @__PURE__ */ jsx48(
3787
4487
  "div",
3788
4488
  {
3789
4489
  "aria-hidden": "true",
@@ -3794,7 +4494,7 @@ function WorkspaceRow({
3794
4494
  }
3795
4495
  }
3796
4496
  ),
3797
- /* @__PURE__ */ jsx45("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ jsxs37(
4497
+ /* @__PURE__ */ jsx48("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ jsxs39(
3798
4498
  "div",
3799
4499
  {
3800
4500
  className: "flex items-center w-full",
@@ -3803,20 +4503,20 @@ function WorkspaceRow({
3803
4503
  padding: "var(--spacing-6xl)"
3804
4504
  },
3805
4505
  children: [
3806
- /* @__PURE__ */ jsxs37(
4506
+ /* @__PURE__ */ jsxs39(
3807
4507
  "div",
3808
4508
  {
3809
4509
  className: "flex flex-1 items-center min-w-0",
3810
4510
  style: { gap: "var(--spacing-xl)" },
3811
4511
  children: [
3812
- /* @__PURE__ */ jsx45(
4512
+ /* @__PURE__ */ jsx48(
3813
4513
  ScIntialProfileCover,
3814
4514
  {
3815
4515
  intial: workspace.initials || deriveInitials(workspace.name),
3816
4516
  className: "shrink-0"
3817
4517
  }
3818
4518
  ),
3819
- /* @__PURE__ */ jsx45(
4519
+ /* @__PURE__ */ jsx48(
3820
4520
  "p",
3821
4521
  {
3822
4522
  className: "flex-1 min-w-0 overflow-hidden text-ellipsis",
@@ -3836,7 +4536,7 @@ function WorkspaceRow({
3836
4536
  ]
3837
4537
  }
3838
4538
  ),
3839
- /* @__PURE__ */ jsxs37(
4539
+ /* @__PURE__ */ jsxs39(
3840
4540
  "div",
3841
4541
  {
3842
4542
  className: "flex items-center justify-center shrink-0",
@@ -3845,7 +4545,7 @@ function WorkspaceRow({
3845
4545
  padding: "0 var(--spacing-3xl)"
3846
4546
  },
3847
4547
  children: [
3848
- /* @__PURE__ */ jsx45(
4548
+ /* @__PURE__ */ jsx48(
3849
4549
  ScRole,
3850
4550
  {
3851
4551
  type: normalizeRole(workspace.role),
@@ -3853,23 +4553,23 @@ function WorkspaceRow({
3853
4553
  style: { width: 80 }
3854
4554
  }
3855
4555
  ),
3856
- /* @__PURE__ */ jsx45("div", { className: "flex flex-row items-center self-stretch", children: /* @__PURE__ */ jsxs37(
4556
+ /* @__PURE__ */ jsx48("div", { className: "flex flex-row items-center self-stretch", children: /* @__PURE__ */ jsxs39(
3857
4557
  "div",
3858
4558
  {
3859
4559
  className: "flex items-center shrink-0",
3860
4560
  style: { gap: "var(--spacing-3xl)" },
3861
4561
  children: [
3862
- /* @__PURE__ */ jsx45("div", { style: { width: 120, flexShrink: 0 }, children: /* @__PURE__ */ jsx45(
4562
+ /* @__PURE__ */ jsx48("div", { style: { width: 120, flexShrink: 0 }, children: /* @__PURE__ */ jsx48(
3863
4563
  ScPairtext,
3864
4564
  {
3865
- icon: /* @__PURE__ */ jsx45(SiconTeam4, { className: "w-6 h-6", color: PRIMARY_ICON }),
4565
+ icon: /* @__PURE__ */ jsx48(SiconTeam4, { className: "w-6 h-6", color: PRIMARY_ICON }),
3866
4566
  content: workspace.userCount || "\u2013",
3867
4567
  iconPosition: "left",
3868
4568
  type: "icon"
3869
4569
  }
3870
4570
  ) }),
3871
- /* @__PURE__ */ jsx45(ScVDivider, {}),
3872
- /* @__PURE__ */ jsxs37(
4571
+ /* @__PURE__ */ jsx48(ScVDivider, {}),
4572
+ /* @__PURE__ */ jsxs39(
3873
4573
  "div",
3874
4574
  {
3875
4575
  className: "flex items-center",
@@ -3879,14 +4579,14 @@ function WorkspaceRow({
3879
4579
  gap: "var(--spacing-md)"
3880
4580
  },
3881
4581
  children: [
3882
- /* @__PURE__ */ jsx45(
4582
+ /* @__PURE__ */ jsx48(
3883
4583
  SiconCrown,
3884
4584
  {
3885
4585
  className: "w-6 h-6 shrink-0",
3886
4586
  color: PRIMARY_ICON
3887
4587
  }
3888
4588
  ),
3889
- /* @__PURE__ */ jsx45(
4589
+ /* @__PURE__ */ jsx48(
3890
4590
  "span",
3891
4591
  {
3892
4592
  className: "truncate",
@@ -3908,7 +4608,7 @@ function WorkspaceRow({
3908
4608
  ]
3909
4609
  }
3910
4610
  ),
3911
- workspace.isCurrent ? /* @__PURE__ */ jsx45(
4611
+ workspace.isCurrent ? /* @__PURE__ */ jsx48(
3912
4612
  ScButton,
3913
4613
  {
3914
4614
  text: currentWorkspaceText,
@@ -3917,14 +4617,14 @@ function WorkspaceRow({
3917
4617
  size: "lg",
3918
4618
  style: { width: 200, flexShrink: 0, opacity: 0.5 }
3919
4619
  }
3920
- ) : /* @__PURE__ */ jsx45(
4620
+ ) : /* @__PURE__ */ jsx48(
3921
4621
  ScButton,
3922
4622
  {
3923
4623
  text: switchWorkspaceText,
3924
4624
  variant: "secondary",
3925
4625
  size: "lg",
3926
4626
  styleVariant: "icon-left",
3927
- icon: /* @__PURE__ */ jsx45(SiconSwitch, { className: "w-5 h-5", color: PRIMARY_ICON }),
4627
+ icon: /* @__PURE__ */ jsx48(SiconSwitch, { className: "w-5 h-5", color: PRIMARY_ICON }),
3928
4628
  style: { width: 200, flexShrink: 0 },
3929
4629
  onClick: onSwitch
3930
4630
  }
@@ -3958,7 +4658,7 @@ function StreamoidWorkspaceSwitcher({
3958
4658
  return () => document.removeEventListener("keydown", handleKeyDown);
3959
4659
  }, [open, onClose]);
3960
4660
  if (!open) return null;
3961
- return /* @__PURE__ */ jsx45(
4661
+ return /* @__PURE__ */ jsx48(
3962
4662
  "div",
3963
4663
  {
3964
4664
  className: "fixed inset-0 z-50 flex items-center justify-center",
@@ -3966,7 +4666,7 @@ function StreamoidWorkspaceSwitcher({
3966
4666
  onClick: (e) => {
3967
4667
  if (e.target === e.currentTarget) onClose();
3968
4668
  },
3969
- children: /* @__PURE__ */ jsxs37(
4669
+ children: /* @__PURE__ */ jsxs39(
3970
4670
  "div",
3971
4671
  {
3972
4672
  ref: modalRef,
@@ -3979,14 +4679,14 @@ function StreamoidWorkspaceSwitcher({
3979
4679
  height: "60vh"
3980
4680
  },
3981
4681
  children: [
3982
- /* @__PURE__ */ jsx45(
4682
+ /* @__PURE__ */ jsx48(
3983
4683
  "div",
3984
4684
  {
3985
4685
  className: "shrink-0 w-full relative",
3986
4686
  style: {
3987
4687
  borderBottom: "1px solid var(--alias-border-divider)"
3988
4688
  },
3989
- children: /* @__PURE__ */ jsx45("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ jsxs37(
4689
+ children: /* @__PURE__ */ jsx48("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ jsxs39(
3990
4690
  "div",
3991
4691
  {
3992
4692
  className: "flex items-center w-full",
@@ -3995,7 +4695,7 @@ function StreamoidWorkspaceSwitcher({
3995
4695
  padding: "var(--spacing-3xl) var(--spacing-6xl)"
3996
4696
  },
3997
4697
  children: [
3998
- /* @__PURE__ */ jsx45(
4698
+ /* @__PURE__ */ jsx48(
3999
4699
  "p",
4000
4700
  {
4001
4701
  className: "flex-1 min-w-0 overflow-hidden text-ellipsis whitespace-nowrap",
@@ -4009,20 +4709,20 @@ function StreamoidWorkspaceSwitcher({
4009
4709
  children: title
4010
4710
  }
4011
4711
  ),
4012
- /* @__PURE__ */ jsx45("div", { className: "shrink-0 cursor-pointer", onClick: onClose, children: /* @__PURE__ */ jsx45(SiconClose2, { className: "w-6 h-6", color: PRIMARY_ICON }) })
4712
+ /* @__PURE__ */ jsx48("div", { className: "shrink-0 cursor-pointer", onClick: onClose, children: /* @__PURE__ */ jsx48(SiconClose2, { className: "w-6 h-6", color: PRIMARY_ICON }) })
4013
4713
  ]
4014
4714
  }
4015
4715
  ) })
4016
4716
  }
4017
4717
  ),
4018
- /* @__PURE__ */ jsx45(
4718
+ /* @__PURE__ */ jsx48(
4019
4719
  "div",
4020
4720
  {
4021
4721
  className: "flex-1 min-h-0 w-full overflow-y-auto",
4022
4722
  style: {
4023
4723
  borderRadius: "0 0 var(--radius-4xl) var(--radius-4xl)"
4024
4724
  },
4025
- children: /* @__PURE__ */ jsxs37(
4725
+ children: /* @__PURE__ */ jsxs39(
4026
4726
  "div",
4027
4727
  {
4028
4728
  className: "flex flex-col items-start",
@@ -4031,7 +4731,7 @@ function StreamoidWorkspaceSwitcher({
4031
4731
  gap: "var(--spacing-3xl)"
4032
4732
  },
4033
4733
  children: [
4034
- loading && workspaces.length === 0 ? /* @__PURE__ */ jsx45(
4734
+ loading && workspaces.length === 0 ? /* @__PURE__ */ jsx48(
4035
4735
  "p",
4036
4736
  {
4037
4737
  style: {
@@ -4042,7 +4742,7 @@ function StreamoidWorkspaceSwitcher({
4042
4742
  children: loadingText
4043
4743
  }
4044
4744
  ) : null,
4045
- workspaces.map((ws) => /* @__PURE__ */ jsx45(
4745
+ workspaces.map((ws) => /* @__PURE__ */ jsx48(
4046
4746
  WorkspaceRow,
4047
4747
  {
4048
4748
  workspace: ws,
@@ -4081,23 +4781,23 @@ var ScAppListingCard_default = {
4081
4781
 
4082
4782
  // src/SC-app listing card/ScAppListingCard.tsx
4083
4783
  import { SiconCart } from "@streamoid/icons";
4084
- import { jsx as jsx46, jsxs as jsxs38 } from "react/jsx-runtime";
4784
+ import { jsx as jsx49, jsxs as jsxs40 } from "react/jsx-runtime";
4085
4785
  var ScAppListingCard = ({
4086
- icon = /* @__PURE__ */ jsx46(SiconCart, { className: ScAppListingCard_default.siconCartInstance }),
4786
+ icon = /* @__PURE__ */ jsx49(SiconCart, { className: ScAppListingCard_default.siconCartInstance }),
4087
4787
  title = "Stores",
4088
4788
  descrp = "Centralized product and asset management for every storefront",
4089
4789
  className,
4090
4790
  ...props
4091
4791
  }) => {
4092
- return /* @__PURE__ */ jsxs38("div", { className: ScAppListingCard_default.scAppListingCard + " " + className, ...props, children: [
4093
- /* @__PURE__ */ jsxs38("div", { className: ScAppListingCard_default.header, children: [
4094
- /* @__PURE__ */ jsx46("div", { className: ScAppListingCard_default.iconContainer, children: icon }),
4095
- /* @__PURE__ */ jsxs38("div", { className: ScAppListingCard_default.title, children: [
4792
+ return /* @__PURE__ */ jsxs40("div", { className: ScAppListingCard_default.scAppListingCard + " " + className, ...props, children: [
4793
+ /* @__PURE__ */ jsxs40("div", { className: ScAppListingCard_default.header, children: [
4794
+ /* @__PURE__ */ jsx49("div", { className: ScAppListingCard_default.iconContainer, children: icon }),
4795
+ /* @__PURE__ */ jsxs40("div", { className: ScAppListingCard_default.title, children: [
4096
4796
  title,
4097
4797
  " "
4098
4798
  ] })
4099
4799
  ] }),
4100
- /* @__PURE__ */ jsxs38("div", { className: ScAppListingCard_default.description, children: [
4800
+ /* @__PURE__ */ jsxs40("div", { className: ScAppListingCard_default.description, children: [
4101
4801
  descrp,
4102
4802
  " "
4103
4803
  ] })
@@ -4115,22 +4815,22 @@ var ScAppCard_default = {
4115
4815
 
4116
4816
  // src/SC-appCard/ScAppCard.tsx
4117
4817
  import { SiconArtifacts as SiconArtifacts2 } from "@streamoid/icons";
4118
- import { jsx as jsx47, jsxs as jsxs39 } from "react/jsx-runtime";
4818
+ import { jsx as jsx50, jsxs as jsxs41 } from "react/jsx-runtime";
4119
4819
  var ScAppCard = ({
4120
- appIcon = /* @__PURE__ */ jsx47(SiconArtifacts2, { className: ScAppCard_default.siconArtifactsInstance }),
4820
+ appIcon = /* @__PURE__ */ jsx50(SiconArtifacts2, { className: ScAppCard_default.siconArtifactsInstance }),
4121
4821
  appName = "Artifax",
4122
4822
  appDescription = "Info about artifax",
4123
4823
  className,
4124
4824
  ...props
4125
4825
  }) => {
4126
- return /* @__PURE__ */ jsxs39("div", { className: ScAppCard_default.scAppCard + " " + className, ...props, children: [
4127
- /* @__PURE__ */ jsx47("div", { className: ScAppCard_default.iconContainer, children: appIcon }),
4128
- /* @__PURE__ */ jsxs39("div", { className: ScAppCard_default.textContainer, children: [
4129
- /* @__PURE__ */ jsxs39("div", { className: ScAppCard_default.title, children: [
4826
+ return /* @__PURE__ */ jsxs41("div", { className: ScAppCard_default.scAppCard + " " + className, ...props, children: [
4827
+ /* @__PURE__ */ jsx50("div", { className: ScAppCard_default.iconContainer, children: appIcon }),
4828
+ /* @__PURE__ */ jsxs41("div", { className: ScAppCard_default.textContainer, children: [
4829
+ /* @__PURE__ */ jsxs41("div", { className: ScAppCard_default.title, children: [
4130
4830
  appName,
4131
4831
  " "
4132
4832
  ] }),
4133
- /* @__PURE__ */ jsxs39("div", { className: ScAppCard_default.subtitle, children: [
4833
+ /* @__PURE__ */ jsxs41("div", { className: ScAppCard_default.subtitle, children: [
4134
4834
  appDescription,
4135
4835
  " "
4136
4836
  ] })
@@ -4157,9 +4857,9 @@ var ScAppCardV3_default = {
4157
4857
 
4158
4858
  // src/SC-AppCardV3/ScAppCardV3.tsx
4159
4859
  import { SiconCart as SiconCart2 } from "@streamoid/icons";
4160
- import { jsx as jsx48, jsxs as jsxs40 } from "react/jsx-runtime";
4860
+ import { jsx as jsx51, jsxs as jsxs42 } from "react/jsx-runtime";
4161
4861
  var ScAppCardV3 = ({
4162
- appIcon = /* @__PURE__ */ jsx48(SiconCart2, { className: ScAppCardV3_default.iconPillIcon }),
4862
+ appIcon = /* @__PURE__ */ jsx51(SiconCart2, { className: ScAppCardV3_default.iconPillIcon }),
4163
4863
  appName = "Stores",
4164
4864
  description = "Centralized product and asset management for every storefront",
4165
4865
  active = false,
@@ -4171,25 +4871,25 @@ var ScAppCardV3 = ({
4171
4871
  ScAppCardV3_default.scAppCardV3,
4172
4872
  active ? ScAppCardV3_default.scAppCardV3Active : ""
4173
4873
  ].filter(Boolean).join(" ");
4174
- return /* @__PURE__ */ jsx48(
4874
+ return /* @__PURE__ */ jsx51(
4175
4875
  "div",
4176
4876
  {
4177
4877
  className: [ScAppCardV3_default.cardBorder, className || ""].filter(Boolean).join(" "),
4178
4878
  style,
4179
4879
  ...props,
4180
- children: /* @__PURE__ */ jsxs40("div", { className: cardClass, children: [
4181
- /* @__PURE__ */ jsx48("div", { className: ScAppCardV3_default.glow }),
4182
- /* @__PURE__ */ jsx48("div", { className: ScAppCardV3_default.glowHover }),
4183
- /* @__PURE__ */ jsxs40("div", { className: ScAppCardV3_default.header, children: [
4184
- /* @__PURE__ */ jsxs40("div", { className: ScAppCardV3_default.iconRow, children: [
4185
- /* @__PURE__ */ jsx48("p", { className: ScAppCardV3_default.appName, children: appName }),
4186
- /* @__PURE__ */ jsxs40("div", { className: ScAppCardV3_default.iconPill, children: [
4187
- /* @__PURE__ */ jsx48("div", { className: ScAppCardV3_default.iconPillBg }),
4188
- /* @__PURE__ */ jsx48("div", { className: ScAppCardV3_default.iconPillIcon, children: appIcon }),
4189
- /* @__PURE__ */ jsx48("div", { className: ScAppCardV3_default.iconPillShadow })
4880
+ children: /* @__PURE__ */ jsxs42("div", { className: cardClass, children: [
4881
+ /* @__PURE__ */ jsx51("div", { className: ScAppCardV3_default.glow }),
4882
+ /* @__PURE__ */ jsx51("div", { className: ScAppCardV3_default.glowHover }),
4883
+ /* @__PURE__ */ jsxs42("div", { className: ScAppCardV3_default.header, children: [
4884
+ /* @__PURE__ */ jsxs42("div", { className: ScAppCardV3_default.iconRow, children: [
4885
+ /* @__PURE__ */ jsx51("p", { className: ScAppCardV3_default.appName, children: appName }),
4886
+ /* @__PURE__ */ jsxs42("div", { className: ScAppCardV3_default.iconPill, children: [
4887
+ /* @__PURE__ */ jsx51("div", { className: ScAppCardV3_default.iconPillBg }),
4888
+ /* @__PURE__ */ jsx51("div", { className: ScAppCardV3_default.iconPillIcon, children: appIcon }),
4889
+ /* @__PURE__ */ jsx51("div", { className: ScAppCardV3_default.iconPillShadow })
4190
4890
  ] })
4191
4891
  ] }),
4192
- /* @__PURE__ */ jsx48("p", { className: ScAppCardV3_default.description, children: description })
4892
+ /* @__PURE__ */ jsx51("p", { className: ScAppCardV3_default.description, children: description })
4193
4893
  ] })
4194
4894
  ] })
4195
4895
  }
@@ -4208,7 +4908,7 @@ var ScBriefCard_default = {
4208
4908
  };
4209
4909
 
4210
4910
  // src/SC-BriefCard/ScBriefCard.tsx
4211
- import { jsx as jsx49, jsxs as jsxs41 } from "react/jsx-runtime";
4911
+ import { jsx as jsx52, jsxs as jsxs43 } from "react/jsx-runtime";
4212
4912
  var ScBriefCard = ({
4213
4913
  description = "Centralized product and asset management for every storefront",
4214
4914
  active = false,
@@ -4220,16 +4920,16 @@ var ScBriefCard = ({
4220
4920
  ScBriefCard_default.scBriefCard,
4221
4921
  active ? ScBriefCard_default.scBriefCardActive : ""
4222
4922
  ].filter(Boolean).join(" ");
4223
- return /* @__PURE__ */ jsx49(
4923
+ return /* @__PURE__ */ jsx52(
4224
4924
  "div",
4225
4925
  {
4226
4926
  className: [ScBriefCard_default.cardBorder, className || ""].filter(Boolean).join(" "),
4227
4927
  style,
4228
4928
  ...props,
4229
- children: /* @__PURE__ */ jsxs41("div", { className: cardClass, children: [
4230
- /* @__PURE__ */ jsx49("div", { className: ScBriefCard_default.glow }),
4231
- /* @__PURE__ */ jsx49("div", { className: ScBriefCard_default.glowHover }),
4232
- /* @__PURE__ */ jsx49("div", { className: ScBriefCard_default.body, children: /* @__PURE__ */ jsx49("p", { className: ScBriefCard_default.description, children: description }) })
4929
+ children: /* @__PURE__ */ jsxs43("div", { className: cardClass, children: [
4930
+ /* @__PURE__ */ jsx52("div", { className: ScBriefCard_default.glow }),
4931
+ /* @__PURE__ */ jsx52("div", { className: ScBriefCard_default.glowHover }),
4932
+ /* @__PURE__ */ jsx52("div", { className: ScBriefCard_default.body, children: /* @__PURE__ */ jsx52("p", { className: ScBriefCard_default.description, children: description }) })
4233
4933
  ] })
4234
4934
  }
4235
4935
  );
@@ -4266,7 +4966,7 @@ var ScToggleSwitch_default = {
4266
4966
  };
4267
4967
 
4268
4968
  // src/SC-toggleSwitch/ScToggleSwitch.tsx
4269
- import { jsx as jsx50, jsxs as jsxs42 } from "react/jsx-runtime";
4969
+ import { jsx as jsx53, jsxs as jsxs44 } from "react/jsx-runtime";
4270
4970
  var ScToggleSwitch = ({
4271
4971
  active = "false",
4272
4972
  checked,
@@ -4276,7 +4976,7 @@ var ScToggleSwitch = ({
4276
4976
  }) => {
4277
4977
  const isActive = checked !== void 0 ? checked : active === "true";
4278
4978
  const variantsClassName = ScToggleSwitch_default["active-" + (isActive ? "true" : "false")];
4279
- return /* @__PURE__ */ jsx50(
4979
+ return /* @__PURE__ */ jsx53(
4280
4980
  "div",
4281
4981
  {
4282
4982
  className: ScToggleSwitch_default.scToggleSwitch + " " + className + " " + variantsClassName,
@@ -4286,20 +4986,20 @@ var ScToggleSwitch = ({
4286
4986
  props.onClick?.(e);
4287
4987
  },
4288
4988
  style: { cursor: "pointer", ...props.style },
4289
- children: isActive ? /* @__PURE__ */ jsxs42("svg", { width: "40", height: "24", viewBox: "0 0 40 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
4290
- /* @__PURE__ */ jsx50("rect", { width: "40", height: "24", rx: "12", fill: "var(--alias-fill-base-base, #f5f5f5)" }),
4291
- /* @__PURE__ */ jsx50("circle", { cx: "28", cy: "12", r: "10", fill: "var(--alias-text---icons-inverse, #101010)" })
4292
- ] }) : /* @__PURE__ */ jsxs42("svg", { width: "41", height: "25", viewBox: "0 0 41 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
4293
- /* @__PURE__ */ jsx50("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)" }),
4294
- /* @__PURE__ */ jsx50("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)" }),
4295
- /* @__PURE__ */ jsx50("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)" })
4989
+ children: isActive ? /* @__PURE__ */ jsxs44("svg", { width: "40", height: "24", viewBox: "0 0 40 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
4990
+ /* @__PURE__ */ jsx53("rect", { width: "40", height: "24", rx: "12", fill: "var(--alias-fill-base-base, #f5f5f5)" }),
4991
+ /* @__PURE__ */ jsx53("circle", { cx: "28", cy: "12", r: "10", fill: "var(--alias-text---icons-inverse, #101010)" })
4992
+ ] }) : /* @__PURE__ */ jsxs44("svg", { width: "41", height: "25", viewBox: "0 0 41 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
4993
+ /* @__PURE__ */ jsx53("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)" }),
4994
+ /* @__PURE__ */ jsx53("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)" }),
4995
+ /* @__PURE__ */ jsx53("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)" })
4296
4996
  ] })
4297
4997
  }
4298
4998
  );
4299
4999
  };
4300
5000
 
4301
5001
  // src/SC-artifaxInvite/ScArtifaxInvite.tsx
4302
- import { jsx as jsx51, jsxs as jsxs43 } from "react/jsx-runtime";
5002
+ import { jsx as jsx54, jsxs as jsxs45 } from "react/jsx-runtime";
4303
5003
  var ScArtifaxInvite = ({
4304
5004
  active = "true",
4305
5005
  appName = "Artifax",
@@ -4312,22 +5012,22 @@ var ScArtifaxInvite = ({
4312
5012
  }) => {
4313
5013
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
4314
5014
  const variantsClassName = ScArtifaxInvite_default["active-" + (isEnabled ? "true" : "false")];
4315
- return /* @__PURE__ */ jsxs43(
5015
+ return /* @__PURE__ */ jsxs45(
4316
5016
  "div",
4317
5017
  {
4318
5018
  className: ScArtifaxInvite_default.scArtifaxInvite + " " + className + " " + variantsClassName,
4319
5019
  ...props,
4320
5020
  children: [
4321
- /* @__PURE__ */ jsx51(
5021
+ /* @__PURE__ */ jsx54(
4322
5022
  ScAppCard,
4323
5023
  {
4324
- appIcon: appIcon || /* @__PURE__ */ jsx51(SiconArtifacts3, { className: ScArtifaxInvite_default.siconArtifactsInstance }),
5024
+ appIcon: appIcon || /* @__PURE__ */ jsx54(SiconArtifacts3, { className: ScArtifaxInvite_default.siconArtifactsInstance }),
4325
5025
  appName,
4326
5026
  appDescription,
4327
5027
  className: ScArtifaxInvite_default.scAppCardInstance
4328
5028
  }
4329
5029
  ),
4330
- /* @__PURE__ */ jsx51(
5030
+ /* @__PURE__ */ jsx54(
4331
5031
  ScToggleSwitch,
4332
5032
  {
4333
5033
  checked: isEnabled,
@@ -4353,12 +5053,12 @@ var ScPhtogenixInvite_default = {
4353
5053
 
4354
5054
  // src/SC-phtogenixInvite/ScPhtogenixInvite.tsx
4355
5055
  import { SiconArtifacts as SiconArtifacts4 } from "@streamoid/icons";
4356
- import { jsx as jsx52, jsxs as jsxs44 } from "react/jsx-runtime";
5056
+ import { jsx as jsx55, jsxs as jsxs46 } from "react/jsx-runtime";
4357
5057
  var ScPhtogenixInvite = ({
4358
5058
  active = "true",
4359
5059
  scAppCardappDescription = "Info about photogenix",
4360
5060
  scAppCardappName = "Photogenix",
4361
- scAppCardappIcon = /* @__PURE__ */ jsx52(SiconArtifacts4, { className: ScPhtogenixInvite_default.siconArtifactsInstance }),
5061
+ scAppCardappIcon = /* @__PURE__ */ jsx55(SiconArtifacts4, { className: ScPhtogenixInvite_default.siconArtifactsInstance }),
4362
5062
  className,
4363
5063
  enabled,
4364
5064
  onToggle,
@@ -4366,12 +5066,12 @@ var ScPhtogenixInvite = ({
4366
5066
  }) => {
4367
5067
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
4368
5068
  const variantsClassName = ScPhtogenixInvite_default["active-" + (isEnabled ? "true" : "false")];
4369
- return /* @__PURE__ */ jsxs44(
5069
+ return /* @__PURE__ */ jsxs46(
4370
5070
  "div",
4371
5071
  {
4372
5072
  className: ScPhtogenixInvite_default.scPhtogenixInvite + " " + className + " " + variantsClassName,
4373
5073
  children: [
4374
- /* @__PURE__ */ jsx52(
5074
+ /* @__PURE__ */ jsx55(
4375
5075
  ScAppCard,
4376
5076
  {
4377
5077
  appIcon: scAppCardappIcon,
@@ -4380,7 +5080,7 @@ var ScPhtogenixInvite = ({
4380
5080
  className: ScPhtogenixInvite_default.scAppCardInstance
4381
5081
  }
4382
5082
  ),
4383
- /* @__PURE__ */ jsx52(
5083
+ /* @__PURE__ */ jsx55(
4384
5084
  ScToggleSwitch,
4385
5085
  {
4386
5086
  checked: isEnabled,
@@ -4430,10 +5130,10 @@ var ScOnlyField_default = {
4430
5130
 
4431
5131
  // src/SC-onlyField/ScOnlyField.tsx
4432
5132
  import { SiconBolt as SiconBolt4 } from "@streamoid/icons";
4433
- import { jsx as jsx53, jsxs as jsxs45 } from "react/jsx-runtime";
5133
+ import { jsx as jsx56, jsxs as jsxs47 } from "react/jsx-runtime";
4434
5134
  var ScOnlyField = ({
4435
- tfRightIcon = /* @__PURE__ */ jsx53(SiconBolt4, { className: ScOnlyField_default.siconBoltInstance }),
4436
- tfLeftIcon = /* @__PURE__ */ jsx53(SiconBolt4, { className: ScOnlyField_default.siconBoltInstance }),
5135
+ tfRightIcon = /* @__PURE__ */ jsx56(SiconBolt4, { className: ScOnlyField_default.siconBoltInstance }),
5136
+ tfLeftIcon = /* @__PURE__ */ jsx56(SiconBolt4, { className: ScOnlyField_default.siconBoltInstance }),
4437
5137
  state = "default",
4438
5138
  tfGroup = "icon-right",
4439
5139
  labelGroup = "none",
@@ -4446,14 +5146,14 @@ var ScOnlyField = ({
4446
5146
  ...props
4447
5147
  }) => {
4448
5148
  const variantsClassName = ScOnlyField_default["state-" + state] + " " + ScOnlyField_default["tf-group-" + tfGroup] + " " + ScOnlyField_default["label-group-" + labelGroup] + (size !== "default" ? " " + ScOnlyField_default["size-" + size] : "");
4449
- return /* @__PURE__ */ jsx53(
5149
+ return /* @__PURE__ */ jsx56(
4450
5150
  "div",
4451
5151
  {
4452
5152
  className: ScOnlyField_default.scOnlyField + " " + className + " " + variantsClassName,
4453
5153
  ...props,
4454
- children: /* @__PURE__ */ jsxs45("div", { className: ScOnlyField_default.inputContainer, children: [
4455
- (tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ jsx53("div", { className: ScOnlyField_default.iconWrapper, children: tfLeftIcon }),
4456
- /* @__PURE__ */ jsx53(
5154
+ children: /* @__PURE__ */ jsxs47("div", { className: ScOnlyField_default.inputContainer, children: [
5155
+ (tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ jsx56("div", { className: ScOnlyField_default.iconWrapper, children: tfLeftIcon }),
5156
+ /* @__PURE__ */ jsx56(
4457
5157
  "input",
4458
5158
  {
4459
5159
  className: ScOnlyField_default.inputText,
@@ -4473,7 +5173,7 @@ var ScOnlyField = ({
4473
5173
  ...inputProps
4474
5174
  }
4475
5175
  ),
4476
- (tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ jsx53("div", { className: ScOnlyField_default.iconWrapper, children: tfRightIcon })
5176
+ (tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ jsx56("div", { className: ScOnlyField_default.iconWrapper, children: tfRightIcon })
4477
5177
  ] })
4478
5178
  }
4479
5179
  );
@@ -4481,7 +5181,7 @@ var ScOnlyField = ({
4481
5181
 
4482
5182
  // src/SC-catalogixInvite/ScCatalogixInvite.tsx
4483
5183
  import { SiconHome as SiconHome10 } from "@streamoid/icons";
4484
- import { Fragment as Fragment16, jsx as jsx54, jsxs as jsxs46 } from "react/jsx-runtime";
5184
+ import { Fragment as Fragment18, jsx as jsx57, jsxs as jsxs48 } from "react/jsx-runtime";
4485
5185
  var ScCatalogixInvite = ({
4486
5186
  active = "false",
4487
5187
  appName = "Catalogix",
@@ -4503,23 +5203,23 @@ var ScCatalogixInvite = ({
4503
5203
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
4504
5204
  const variantsClassName = ScCatalogixInvite_default["active-" + (isEnabled ? "true" : "false")];
4505
5205
  const displayCount = selectedStores ? `${selectedStores.length} Selected` : selectedCount;
4506
- return /* @__PURE__ */ jsxs46(
5206
+ return /* @__PURE__ */ jsxs48(
4507
5207
  "div",
4508
5208
  {
4509
5209
  className: ScCatalogixInvite_default.scCatalogixInvite + " " + className + " " + variantsClassName,
4510
5210
  ...props,
4511
5211
  children: [
4512
- /* @__PURE__ */ jsxs46("div", { className: ScCatalogixInvite_default.appHeader, children: [
4513
- /* @__PURE__ */ jsx54(
5212
+ /* @__PURE__ */ jsxs48("div", { className: ScCatalogixInvite_default.appHeader, children: [
5213
+ /* @__PURE__ */ jsx57(
4514
5214
  ScAppCard,
4515
5215
  {
4516
- appIcon: appIcon || /* @__PURE__ */ jsx54(SiconArtifacts5, { className: ScCatalogixInvite_default.siconArtifactsInstance }),
5216
+ appIcon: appIcon || /* @__PURE__ */ jsx57(SiconArtifacts5, { className: ScCatalogixInvite_default.siconArtifactsInstance }),
4517
5217
  appDescription,
4518
5218
  appName,
4519
5219
  className: ScCatalogixInvite_default.scAppCardInstance
4520
5220
  }
4521
5221
  ),
4522
- /* @__PURE__ */ jsx54(
5222
+ /* @__PURE__ */ jsx57(
4523
5223
  ScToggleSwitch,
4524
5224
  {
4525
5225
  checked: isEnabled,
@@ -4528,29 +5228,29 @@ var ScCatalogixInvite = ({
4528
5228
  }
4529
5229
  )
4530
5230
  ] }),
4531
- isEnabled && /* @__PURE__ */ jsx54(Fragment16, { children: /* @__PURE__ */ jsxs46("div", { className: ScCatalogixInvite_default.storeAccessContainer, children: [
4532
- /* @__PURE__ */ jsxs46("div", { className: ScCatalogixInvite_default.storeAccessHeader, children: [
4533
- /* @__PURE__ */ jsxs46("div", { className: ScCatalogixInvite_default.storeAccessTitle, children: [
5231
+ isEnabled && /* @__PURE__ */ jsx57(Fragment18, { children: /* @__PURE__ */ jsxs48("div", { className: ScCatalogixInvite_default.storeAccessContainer, children: [
5232
+ /* @__PURE__ */ jsxs48("div", { className: ScCatalogixInvite_default.storeAccessHeader, children: [
5233
+ /* @__PURE__ */ jsxs48("div", { className: ScCatalogixInvite_default.storeAccessTitle, children: [
4534
5234
  storeAccessTitle,
4535
5235
  " "
4536
5236
  ] }),
4537
- /* @__PURE__ */ jsxs46("div", { className: ScCatalogixInvite_default.selectedCount, children: [
5237
+ /* @__PURE__ */ jsxs48("div", { className: ScCatalogixInvite_default.selectedCount, children: [
4538
5238
  displayCount,
4539
5239
  " "
4540
5240
  ] })
4541
5241
  ] }),
4542
- /* @__PURE__ */ jsx54(
5242
+ /* @__PURE__ */ jsx57(
4543
5243
  ScOnlyField,
4544
5244
  {
4545
- tfLeftIcon: /* @__PURE__ */ jsx54(SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
4546
- tfRightIcon: /* @__PURE__ */ jsx54(SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
5245
+ tfLeftIcon: /* @__PURE__ */ jsx57(SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
5246
+ tfRightIcon: /* @__PURE__ */ jsx57(SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
4547
5247
  placeholderFilled: searchPlaceholder,
4548
5248
  value: searchValue,
4549
5249
  onInputChange: onSearchChange,
4550
5250
  className: ScCatalogixInvite_default.scOnlyFieldInstance
4551
5251
  }
4552
5252
  ),
4553
- /* @__PURE__ */ jsx54("div", { className: ScCatalogixInvite_default.storeListContainer, children: stores ? stores.length > 0 ? stores.map((store) => /* @__PURE__ */ jsx54(
5253
+ /* @__PURE__ */ jsx57("div", { className: ScCatalogixInvite_default.storeListContainer, children: stores ? stores.length > 0 ? stores.map((store) => /* @__PURE__ */ jsx57(
4554
5254
  ScPairtext,
4555
5255
  {
4556
5256
  content: store.name,
@@ -4561,53 +5261,53 @@ var ScCatalogixInvite = ({
4561
5261
  className: ScCatalogixInvite_default.scPairtextInstance
4562
5262
  },
4563
5263
  store.id
4564
- )) : /* @__PURE__ */ jsx54("div", { style: {
5264
+ )) : /* @__PURE__ */ jsx57("div", { style: {
4565
5265
  padding: "var(--spacing-3xl, 16px)",
4566
5266
  color: "var(--alias-text-and-icons-muted, #7a7a7a)",
4567
5267
  fontFamily: "var(--font-family-font-family-body, Inter, sans-serif)",
4568
5268
  fontSize: "var(--font-size-font-size-sm, 14px)",
4569
5269
  lineHeight: "var(--line-height-line-height-sm, 20px)"
4570
- }, children: "No stores found" }) : /* @__PURE__ */ jsxs46(Fragment16, { children: [
4571
- /* @__PURE__ */ jsx54(
5270
+ }, children: "No stores found" }) : /* @__PURE__ */ jsxs48(Fragment18, { children: [
5271
+ /* @__PURE__ */ jsx57(
4572
5272
  ScPairtext,
4573
5273
  {
4574
- icon: /* @__PURE__ */ jsx54(SiconHome10, { className: ScCatalogixInvite_default.siconHomeInstance }),
5274
+ icon: /* @__PURE__ */ jsx57(SiconHome10, { className: ScCatalogixInvite_default.siconHomeInstance }),
4575
5275
  iconPosition: "right",
4576
5276
  type: "checkbox",
4577
5277
  className: ScCatalogixInvite_default.scPairtextInstance
4578
5278
  }
4579
5279
  ),
4580
- /* @__PURE__ */ jsx54(
5280
+ /* @__PURE__ */ jsx57(
4581
5281
  ScPairtext,
4582
5282
  {
4583
- icon: /* @__PURE__ */ jsx54(SiconHome10, { className: ScCatalogixInvite_default.siconHomeInstance }),
5283
+ icon: /* @__PURE__ */ jsx57(SiconHome10, { className: ScCatalogixInvite_default.siconHomeInstance }),
4584
5284
  iconPosition: "right",
4585
5285
  type: "checkbox",
4586
5286
  className: ScCatalogixInvite_default.scPairtextInstance
4587
5287
  }
4588
5288
  ),
4589
- /* @__PURE__ */ jsx54(
5289
+ /* @__PURE__ */ jsx57(
4590
5290
  ScPairtext,
4591
5291
  {
4592
- icon: /* @__PURE__ */ jsx54(SiconHome10, { className: ScCatalogixInvite_default.siconHomeInstance }),
5292
+ icon: /* @__PURE__ */ jsx57(SiconHome10, { className: ScCatalogixInvite_default.siconHomeInstance }),
4593
5293
  iconPosition: "right",
4594
5294
  type: "checkbox",
4595
5295
  className: ScCatalogixInvite_default.scPairtextInstance
4596
5296
  }
4597
5297
  ),
4598
- /* @__PURE__ */ jsx54(
5298
+ /* @__PURE__ */ jsx57(
4599
5299
  ScPairtext,
4600
5300
  {
4601
- icon: /* @__PURE__ */ jsx54(SiconHome10, { className: ScCatalogixInvite_default.siconHomeInstance }),
5301
+ icon: /* @__PURE__ */ jsx57(SiconHome10, { className: ScCatalogixInvite_default.siconHomeInstance }),
4602
5302
  iconPosition: "right",
4603
5303
  type: "checkbox",
4604
5304
  className: ScCatalogixInvite_default.scPairtextInstance
4605
5305
  }
4606
5306
  ),
4607
- /* @__PURE__ */ jsx54(
5307
+ /* @__PURE__ */ jsx57(
4608
5308
  ScPairtext,
4609
5309
  {
4610
- icon: /* @__PURE__ */ jsx54(SiconHome10, { className: ScCatalogixInvite_default.siconHomeInstance }),
5310
+ icon: /* @__PURE__ */ jsx57(SiconHome10, { className: ScCatalogixInvite_default.siconHomeInstance }),
4611
5311
  iconPosition: "right",
4612
5312
  type: "checkbox",
4613
5313
  className: ScCatalogixInvite_default.scPairtextInstance
@@ -4621,7 +5321,7 @@ var ScCatalogixInvite = ({
4621
5321
  };
4622
5322
 
4623
5323
  // src/SC-appField/ScAppField.tsx
4624
- import { jsx as jsx55, jsxs as jsxs47 } from "react/jsx-runtime";
5324
+ import { jsx as jsx58, jsxs as jsxs49 } from "react/jsx-runtime";
4625
5325
  var ScAppField = ({
4626
5326
  appFieldTitle = "App permission",
4627
5327
  className,
@@ -4638,13 +5338,13 @@ var ScAppField = ({
4638
5338
  onCatalogixSearchChange,
4639
5339
  ...props
4640
5340
  }) => {
4641
- return /* @__PURE__ */ jsxs47("div", { className: ScAppField_default.scAppField + " " + className, ...props, children: [
4642
- /* @__PURE__ */ jsx55("div", { className: ScAppField_default.labelContainer, children: /* @__PURE__ */ jsxs47("div", { className: ScAppField_default.title, children: [
5341
+ return /* @__PURE__ */ jsxs49("div", { className: ScAppField_default.scAppField + " " + className, ...props, children: [
5342
+ /* @__PURE__ */ jsx58("div", { className: ScAppField_default.labelContainer, children: /* @__PURE__ */ jsxs49("div", { className: ScAppField_default.title, children: [
4643
5343
  appFieldTitle,
4644
5344
  " "
4645
5345
  ] }) }),
4646
- /* @__PURE__ */ jsxs47("div", { className: ScAppField_default.inputContainer, children: [
4647
- /* @__PURE__ */ jsx55(
5346
+ /* @__PURE__ */ jsxs49("div", { className: ScAppField_default.inputContainer, children: [
5347
+ /* @__PURE__ */ jsx58(
4648
5348
  ScArtifaxInvite,
4649
5349
  {
4650
5350
  enabled: artifaxEnabled,
@@ -4652,18 +5352,18 @@ var ScAppField = ({
4652
5352
  className: ScAppField_default.scArtifaxInviteInstance
4653
5353
  }
4654
5354
  ),
4655
- /* @__PURE__ */ jsx55(
5355
+ /* @__PURE__ */ jsx58(
4656
5356
  ScPhtogenixInvite,
4657
5357
  {
4658
5358
  enabled: photogenixEnabled,
4659
5359
  onToggle: onPhotogenixToggle,
4660
5360
  scAppCardappDescription: "Info about photogenix",
4661
5361
  scAppCardappName: "Photogenix",
4662
- scAppCardappIcon: /* @__PURE__ */ jsx55(SiconPhotogenix2, { className: ScAppField_default.siconPhotogenixInstance }),
5362
+ scAppCardappIcon: /* @__PURE__ */ jsx58(SiconPhotogenix2, { className: ScAppField_default.siconPhotogenixInstance }),
4663
5363
  className: ScAppField_default.scPhtogenixInviteInstance
4664
5364
  }
4665
5365
  ),
4666
- /* @__PURE__ */ jsx55(
5366
+ /* @__PURE__ */ jsx58(
4667
5367
  ScCatalogixInvite,
4668
5368
  {
4669
5369
  enabled: catalogixEnabled,
@@ -4690,13 +5390,13 @@ var ScBillingHistoryHeader_default = {
4690
5390
  };
4691
5391
 
4692
5392
  // src/SC-billingHistoryHeader/ScBillingHistoryHeader.tsx
4693
- import { jsx as jsx56, jsxs as jsxs48 } from "react/jsx-runtime";
5393
+ import { jsx as jsx59, jsxs as jsxs50 } from "react/jsx-runtime";
4694
5394
  var ScBillingHistoryHeader = ({
4695
5395
  className,
4696
5396
  ...props
4697
5397
  }) => {
4698
- return /* @__PURE__ */ jsxs48("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
4699
- /* @__PURE__ */ jsx56(
5398
+ return /* @__PURE__ */ jsxs50("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
5399
+ /* @__PURE__ */ jsx59(
4700
5400
  ScHeader,
4701
5401
  {
4702
5402
  text: "Invoice",
@@ -4704,7 +5404,7 @@ var ScBillingHistoryHeader = ({
4704
5404
  className: ScBillingHistoryHeader_default.scHeaderInstance
4705
5405
  }
4706
5406
  ),
4707
- /* @__PURE__ */ jsx56(
5407
+ /* @__PURE__ */ jsx59(
4708
5408
  ScHeader,
4709
5409
  {
4710
5410
  text: "Amount",
@@ -4712,7 +5412,7 @@ var ScBillingHistoryHeader = ({
4712
5412
  className: ScBillingHistoryHeader_default.scHeaderInstance2
4713
5413
  }
4714
5414
  ),
4715
- /* @__PURE__ */ jsx56(
5415
+ /* @__PURE__ */ jsx59(
4716
5416
  ScHeader,
4717
5417
  {
4718
5418
  text: "Date",
@@ -4720,7 +5420,7 @@ var ScBillingHistoryHeader = ({
4720
5420
  className: ScBillingHistoryHeader_default.scHeaderInstance2
4721
5421
  }
4722
5422
  ),
4723
- /* @__PURE__ */ jsx56(
5423
+ /* @__PURE__ */ jsx59(
4724
5424
  ScHeader,
4725
5425
  {
4726
5426
  text: "Action",
@@ -4742,19 +5442,19 @@ var ScCheckField_default = {
4742
5442
 
4743
5443
  // src/SC-checkField/ScCheckField.tsx
4744
5444
  import { SiconHome as SiconHome11 } from "@streamoid/icons";
4745
- import { Fragment as Fragment17, jsx as jsx57, jsxs as jsxs49 } from "react/jsx-runtime";
5445
+ import { Fragment as Fragment19, jsx as jsx60, jsxs as jsxs51 } from "react/jsx-runtime";
4746
5446
  var ScCheckField = ({
4747
5447
  label = "Label",
4748
5448
  className,
4749
5449
  checkboxes,
4750
5450
  ...props
4751
5451
  }) => {
4752
- return /* @__PURE__ */ jsxs49("div", { className: ScCheckField_default.scCheckField + " " + className, ...props, children: [
4753
- /* @__PURE__ */ jsx57("div", { className: ScCheckField_default.labelContainer, children: /* @__PURE__ */ jsxs49("div", { className: ScCheckField_default.label, children: [
5452
+ return /* @__PURE__ */ jsxs51("div", { className: ScCheckField_default.scCheckField + " " + className, ...props, children: [
5453
+ /* @__PURE__ */ jsx60("div", { className: ScCheckField_default.labelContainer, children: /* @__PURE__ */ jsxs51("div", { className: ScCheckField_default.label, children: [
4754
5454
  label,
4755
5455
  " "
4756
5456
  ] }) }),
4757
- /* @__PURE__ */ jsx57("div", { className: ScCheckField_default.tabSwitcher, children: checkboxes ? checkboxes.map((item, i) => /* @__PURE__ */ jsx57(
5457
+ /* @__PURE__ */ jsx60("div", { className: ScCheckField_default.tabSwitcher, children: checkboxes ? checkboxes.map((item, i) => /* @__PURE__ */ jsx60(
4758
5458
  ScPairtext,
4759
5459
  {
4760
5460
  content: item.label,
@@ -4764,19 +5464,19 @@ var ScCheckField = ({
4764
5464
  className: ScCheckField_default.scPairtextInstance
4765
5465
  },
4766
5466
  i
4767
- )) : /* @__PURE__ */ jsxs49(Fragment17, { children: [
4768
- /* @__PURE__ */ jsx57(
5467
+ )) : /* @__PURE__ */ jsxs51(Fragment19, { children: [
5468
+ /* @__PURE__ */ jsx60(
4769
5469
  ScPairtext,
4770
5470
  {
4771
- icon: /* @__PURE__ */ jsx57(SiconHome11, { className: ScCheckField_default.siconHomeInstance }),
5471
+ icon: /* @__PURE__ */ jsx60(SiconHome11, { className: ScCheckField_default.siconHomeInstance }),
4772
5472
  type: "checkbox",
4773
5473
  className: ScCheckField_default.scPairtextInstance
4774
5474
  }
4775
5475
  ),
4776
- /* @__PURE__ */ jsx57(
5476
+ /* @__PURE__ */ jsx60(
4777
5477
  ScPairtext,
4778
5478
  {
4779
- icon: /* @__PURE__ */ jsx57(SiconHome11, { className: ScCheckField_default.siconHomeInstance }),
5479
+ icon: /* @__PURE__ */ jsx60(SiconHome11, { className: ScCheckField_default.siconHomeInstance }),
4780
5480
  type: "checkbox",
4781
5481
  className: ScCheckField_default.scPairtextInstance
4782
5482
  }
@@ -4797,9 +5497,9 @@ var ScFieldButton_default = {
4797
5497
 
4798
5498
  // src/SC-fieldButton/ScFieldButton.tsx
4799
5499
  import { SiconHome as SiconHome12 } from "@streamoid/icons";
4800
- import { Fragment as Fragment18, jsx as jsx58, jsxs as jsxs50 } from "react/jsx-runtime";
5500
+ import { Fragment as Fragment20, jsx as jsx61, jsxs as jsxs52 } from "react/jsx-runtime";
4801
5501
  var ScFieldButton = ({
4802
- icon = /* @__PURE__ */ jsx58(SiconHome12, { className: ScFieldButton_default.siconHomeInstance }),
5502
+ icon = /* @__PURE__ */ jsx61(SiconHome12, { className: ScFieldButton_default.siconHomeInstance }),
4803
5503
  type = "default",
4804
5504
  state = "default",
4805
5505
  className,
@@ -4807,18 +5507,18 @@ var ScFieldButton = ({
4807
5507
  ...props
4808
5508
  }) => {
4809
5509
  const variantsClassName = ScFieldButton_default["type-" + type] + " " + ScFieldButton_default["state-" + state];
4810
- return /* @__PURE__ */ jsx58(
5510
+ return /* @__PURE__ */ jsx61(
4811
5511
  "div",
4812
5512
  {
4813
5513
  className: ScFieldButton_default.scFieldButton + " " + className + " " + variantsClassName,
4814
5514
  ...props,
4815
- children: /* @__PURE__ */ jsxs50("div", { className: ScFieldButton_default.container, children: [
4816
- (type === "icon-right" || type === "only-icon") && /* @__PURE__ */ jsx58(Fragment18, { children: icon }),
4817
- (type === "icon-left" || type === "default" || type === "icon-right") && /* @__PURE__ */ jsx58(Fragment18, { children: /* @__PURE__ */ jsxs50("div", { className: ScFieldButton_default.label, children: [
5515
+ children: /* @__PURE__ */ jsxs52("div", { className: ScFieldButton_default.container, children: [
5516
+ (type === "icon-right" || type === "only-icon") && /* @__PURE__ */ jsx61(Fragment20, { children: icon }),
5517
+ (type === "icon-left" || type === "default" || type === "icon-right") && /* @__PURE__ */ jsx61(Fragment20, { children: /* @__PURE__ */ jsxs52("div", { className: ScFieldButton_default.label, children: [
4818
5518
  text,
4819
5519
  " "
4820
5520
  ] }) }),
4821
- type === "icon-left" && /* @__PURE__ */ jsx58(Fragment18, { children: icon })
5521
+ type === "icon-left" && /* @__PURE__ */ jsx61(Fragment20, { children: icon })
4822
5522
  ] })
4823
5523
  }
4824
5524
  );
@@ -4833,16 +5533,16 @@ var ScPendingAction_default = {
4833
5533
 
4834
5534
  // src/SC-pendingAction/ScPendingAction.tsx
4835
5535
  import { SiconHome as SiconHome13 } from "@streamoid/icons";
4836
- import { jsx as jsx59, jsxs as jsxs51 } from "react/jsx-runtime";
5536
+ import { jsx as jsx62, jsxs as jsxs53 } from "react/jsx-runtime";
4837
5537
  var ScPendingAction = ({
4838
5538
  className,
4839
5539
  ...props
4840
5540
  }) => {
4841
- return /* @__PURE__ */ jsxs51("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
4842
- /* @__PURE__ */ jsx59(
5541
+ return /* @__PURE__ */ jsxs53("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
5542
+ /* @__PURE__ */ jsx62(
4843
5543
  ScButton,
4844
5544
  {
4845
- icon: /* @__PURE__ */ jsx59(SiconHome13, { className: ScPendingAction_default.siconHomeInstance }),
5545
+ icon: /* @__PURE__ */ jsx62(SiconHome13, { className: ScPendingAction_default.siconHomeInstance }),
4846
5546
  text: "Cancel",
4847
5547
  variant: "error",
4848
5548
  type: "tertiary",
@@ -4850,11 +5550,11 @@ var ScPendingAction = ({
4850
5550
  className: ScPendingAction_default.scButtonInstance
4851
5551
  }
4852
5552
  ),
4853
- /* @__PURE__ */ jsx59(ScVDivider, { className: ScPendingAction_default.scVDividerInstance }),
4854
- /* @__PURE__ */ jsx59(
5553
+ /* @__PURE__ */ jsx62(ScVDivider, { className: ScPendingAction_default.scVDividerInstance }),
5554
+ /* @__PURE__ */ jsx62(
4855
5555
  ScButton,
4856
5556
  {
4857
- icon: /* @__PURE__ */ jsx59(SiconHome13, { className: ScPendingAction_default.siconHomeInstance }),
5557
+ icon: /* @__PURE__ */ jsx62(SiconHome13, { className: ScPendingAction_default.siconHomeInstance }),
4858
5558
  text: "Resend",
4859
5559
  variant: "tertiary",
4860
5560
  size: "sm",
@@ -4878,7 +5578,7 @@ var ScQuickPrompt_default = {
4878
5578
 
4879
5579
  // src/SC-quick prompt/ScQuickPrompt.tsx
4880
5580
  import { SiconBolt as SiconBolt5 } from "@streamoid/icons";
4881
- import { jsx as jsx60, jsxs as jsxs52 } from "react/jsx-runtime";
5581
+ import { jsx as jsx63, jsxs as jsxs54 } from "react/jsx-runtime";
4882
5582
  var ScQuickPrompt = ({
4883
5583
  appName = "Photogenix",
4884
5584
  heading = "Swap Model and Background",
@@ -4886,20 +5586,20 @@ var ScQuickPrompt = ({
4886
5586
  className,
4887
5587
  ...props
4888
5588
  }) => {
4889
- return /* @__PURE__ */ jsxs52("div", { className: ScQuickPrompt_default.scQuickPrompt + " " + className, ...props, children: [
4890
- /* @__PURE__ */ jsxs52("div", { className: ScQuickPrompt_default.header, children: [
4891
- /* @__PURE__ */ jsx60("div", { className: ScQuickPrompt_default.iconContainer, children: /* @__PURE__ */ jsx60(SiconBolt5, { className: ScQuickPrompt_default.siconBoltInstance }) }),
4892
- /* @__PURE__ */ jsx60("div", { className: ScQuickPrompt_default.titleContainer, children: /* @__PURE__ */ jsxs52("div", { className: ScQuickPrompt_default.title, children: [
5589
+ return /* @__PURE__ */ jsxs54("div", { className: ScQuickPrompt_default.scQuickPrompt + " " + className, ...props, children: [
5590
+ /* @__PURE__ */ jsxs54("div", { className: ScQuickPrompt_default.header, children: [
5591
+ /* @__PURE__ */ jsx63("div", { className: ScQuickPrompt_default.iconContainer, children: /* @__PURE__ */ jsx63(SiconBolt5, { className: ScQuickPrompt_default.siconBoltInstance }) }),
5592
+ /* @__PURE__ */ jsx63("div", { className: ScQuickPrompt_default.titleContainer, children: /* @__PURE__ */ jsxs54("div", { className: ScQuickPrompt_default.title, children: [
4893
5593
  appName,
4894
5594
  " "
4895
5595
  ] }) })
4896
5596
  ] }),
4897
- /* @__PURE__ */ jsxs52("div", { className: ScQuickPrompt_default.body, children: [
4898
- /* @__PURE__ */ jsxs52("div", { className: ScQuickPrompt_default.heading, children: [
5597
+ /* @__PURE__ */ jsxs54("div", { className: ScQuickPrompt_default.body, children: [
5598
+ /* @__PURE__ */ jsxs54("div", { className: ScQuickPrompt_default.heading, children: [
4899
5599
  heading,
4900
5600
  " "
4901
5601
  ] }),
4902
- /* @__PURE__ */ jsxs52("div", { className: ScQuickPrompt_default.description, children: [
5602
+ /* @__PURE__ */ jsxs54("div", { className: ScQuickPrompt_default.description, children: [
4903
5603
  description,
4904
5604
  " "
4905
5605
  ] })
@@ -4916,13 +5616,13 @@ var ScReferralTableHeader_default = {
4916
5616
  };
4917
5617
 
4918
5618
  // src/SC-referralTableHeader/ScReferralTableHeader.tsx
4919
- import { jsx as jsx61, jsxs as jsxs53 } from "react/jsx-runtime";
5619
+ import { jsx as jsx64, jsxs as jsxs55 } from "react/jsx-runtime";
4920
5620
  var ScReferralTableHeader = ({
4921
5621
  className,
4922
5622
  ...props
4923
5623
  }) => {
4924
- return /* @__PURE__ */ jsxs53("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
4925
- /* @__PURE__ */ jsx61(
5624
+ return /* @__PURE__ */ jsxs55("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
5625
+ /* @__PURE__ */ jsx64(
4926
5626
  ScHeader,
4927
5627
  {
4928
5628
  text: "User",
@@ -4930,7 +5630,7 @@ var ScReferralTableHeader = ({
4930
5630
  className: ScReferralTableHeader_default.scHeaderInstance
4931
5631
  }
4932
5632
  ),
4933
- /* @__PURE__ */ jsx61(
5633
+ /* @__PURE__ */ jsx64(
4934
5634
  ScHeader,
4935
5635
  {
4936
5636
  text: "Date",
@@ -4938,7 +5638,7 @@ var ScReferralTableHeader = ({
4938
5638
  className: ScReferralTableHeader_default.scHeaderInstance2
4939
5639
  }
4940
5640
  ),
4941
- /* @__PURE__ */ jsx61(
5641
+ /* @__PURE__ */ jsx64(
4942
5642
  ScHeader,
4943
5643
  {
4944
5644
  text: "Status",
@@ -4946,7 +5646,7 @@ var ScReferralTableHeader = ({
4946
5646
  className: ScReferralTableHeader_default.scHeaderInstance3
4947
5647
  }
4948
5648
  ),
4949
- /* @__PURE__ */ jsx61(
5649
+ /* @__PURE__ */ jsx64(
4950
5650
  ScHeader,
4951
5651
  {
4952
5652
  text: "Reward",
@@ -4967,7 +5667,7 @@ var ScReferralTableList_default = {
4967
5667
  };
4968
5668
 
4969
5669
  // src/SC-referralTableList/ScReferralTableList.tsx
4970
- import { jsx as jsx62, jsxs as jsxs54 } from "react/jsx-runtime";
5670
+ import { jsx as jsx65, jsxs as jsxs56 } from "react/jsx-runtime";
4971
5671
  var ScReferralTableList = ({
4972
5672
  userEmail = "chris@kepler.com",
4973
5673
  userName,
@@ -4977,8 +5677,8 @@ var ScReferralTableList = ({
4977
5677
  className,
4978
5678
  ...props
4979
5679
  }) => {
4980
- return /* @__PURE__ */ jsxs54("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
4981
- /* @__PURE__ */ jsx62(
5680
+ return /* @__PURE__ */ jsxs56("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
5681
+ /* @__PURE__ */ jsx65(
4982
5682
  ScProfile,
4983
5683
  {
4984
5684
  subText: userEmail,
@@ -4986,12 +5686,12 @@ var ScReferralTableList = ({
4986
5686
  className: ScReferralTableList_default.scProfileInstance
4987
5687
  }
4988
5688
  ),
4989
- /* @__PURE__ */ jsxs54("div", { className: ScReferralTableList_default.date, children: [
5689
+ /* @__PURE__ */ jsxs56("div", { className: ScReferralTableList_default.date, children: [
4990
5690
  date,
4991
5691
  " "
4992
5692
  ] }),
4993
- /* @__PURE__ */ jsx62(ScBadges, { text: status, className: ScReferralTableList_default.scBadgesInstance }),
4994
- /* @__PURE__ */ jsxs54("div", { className: ScReferralTableList_default.points, children: [
5693
+ /* @__PURE__ */ jsx65(ScBadges, { text: status, className: ScReferralTableList_default.scBadgesInstance }),
5694
+ /* @__PURE__ */ jsxs56("div", { className: ScReferralTableList_default.points, children: [
4995
5695
  points,
4996
5696
  " "
4997
5697
  ] })
@@ -5007,33 +5707,33 @@ var ScSettingsNav_default = {
5007
5707
  // src/SC-settingsNav/ScSettingsNav.tsx
5008
5708
  import { SiconTeam as SiconTeam5 } from "@streamoid/icons";
5009
5709
  import { SiconWorkspace, SiconReferral } from "@streamoid/icons";
5010
- import { jsx as jsx63, jsxs as jsxs55 } from "react/jsx-runtime";
5710
+ import { jsx as jsx66, jsxs as jsxs57 } from "react/jsx-runtime";
5011
5711
  var ScSettingsNav = ({
5012
5712
  className,
5013
5713
  ...props
5014
5714
  }) => {
5015
- return /* @__PURE__ */ jsx63("div", { className: ScSettingsNav_default.scSettingsNav + " " + className, ...props, children: /* @__PURE__ */ jsxs55("div", { className: ScSettingsNav_default.container, children: [
5016
- /* @__PURE__ */ jsx63(
5715
+ return /* @__PURE__ */ jsx66("div", { className: ScSettingsNav_default.scSettingsNav + " " + className, ...props, children: /* @__PURE__ */ jsxs57("div", { className: ScSettingsNav_default.container, children: [
5716
+ /* @__PURE__ */ jsx66(
5017
5717
  ScSidebarMenu,
5018
5718
  {
5019
- icon: /* @__PURE__ */ jsx63(SiconTeam5, { className: ScSettingsNav_default.siconTeamInstance }),
5719
+ icon: /* @__PURE__ */ jsx66(SiconTeam5, { className: ScSettingsNav_default.siconTeamInstance }),
5020
5720
  text: "Profile",
5021
5721
  state: "active",
5022
5722
  className: ScSettingsNav_default.scSidebarMenuInstance
5023
5723
  }
5024
5724
  ),
5025
- /* @__PURE__ */ jsx63(
5725
+ /* @__PURE__ */ jsx66(
5026
5726
  ScSidebarMenu,
5027
5727
  {
5028
- icon: /* @__PURE__ */ jsx63(SiconWorkspace, { className: ScSettingsNav_default.siconWorkspaceInstance }),
5728
+ icon: /* @__PURE__ */ jsx66(SiconWorkspace, { className: ScSettingsNav_default.siconWorkspaceInstance }),
5029
5729
  text: "Workspace",
5030
5730
  className: ScSettingsNav_default.scSidebarMenuInstance
5031
5731
  }
5032
5732
  ),
5033
- /* @__PURE__ */ jsx63(
5733
+ /* @__PURE__ */ jsx66(
5034
5734
  ScSidebarMenu,
5035
5735
  {
5036
- icon: /* @__PURE__ */ jsx63(SiconReferral, { className: ScSettingsNav_default.siconReferralInstance }),
5736
+ icon: /* @__PURE__ */ jsx66(SiconReferral, { className: ScSettingsNav_default.siconReferralInstance }),
5037
5737
  text: "Referral",
5038
5738
  className: ScSettingsNav_default.scSidebarMenuInstance
5039
5739
  }
@@ -5049,7 +5749,7 @@ var ScTabField_default = {
5049
5749
  };
5050
5750
 
5051
5751
  // src/SC-tabField/ScTabField.tsx
5052
- import { jsx as jsx64, jsxs as jsxs56 } from "react/jsx-runtime";
5752
+ import { jsx as jsx67, jsxs as jsxs58 } from "react/jsx-runtime";
5053
5753
  var ScTabField = ({
5054
5754
  label = "Label",
5055
5755
  className,
@@ -5058,17 +5758,17 @@ var ScTabField = ({
5058
5758
  onTabChange,
5059
5759
  ...props
5060
5760
  }) => {
5061
- return /* @__PURE__ */ jsxs56("div", { className: ScTabField_default.scTabField + " " + className, children: [
5062
- /* @__PURE__ */ jsx64("div", { className: ScTabField_default.labelContainer, children: /* @__PURE__ */ jsxs56("div", { className: ScTabField_default.label, children: [
5761
+ return /* @__PURE__ */ jsxs58("div", { className: ScTabField_default.scTabField + " " + className, children: [
5762
+ /* @__PURE__ */ jsx67("div", { className: ScTabField_default.labelContainer, children: /* @__PURE__ */ jsxs58("div", { className: ScTabField_default.label, children: [
5063
5763
  label,
5064
5764
  " "
5065
5765
  ] }) }),
5066
- tabs ? /* @__PURE__ */ jsx64(
5766
+ tabs ? /* @__PURE__ */ jsx67(
5067
5767
  ScTabSwitcher,
5068
5768
  {
5069
5769
  tabCount: String(tabs.length),
5070
5770
  className: ScTabField_default.scTabSwitcherInstance,
5071
- component: tabs[0] ? /* @__PURE__ */ jsx64(
5771
+ component: tabs[0] ? /* @__PURE__ */ jsx67(
5072
5772
  ScTabComp,
5073
5773
  {
5074
5774
  text: tabs[0].label,
@@ -5078,7 +5778,7 @@ var ScTabField = ({
5078
5778
  style: { flex: 1 }
5079
5779
  }
5080
5780
  ) : void 0,
5081
- component2: tabs[1] ? /* @__PURE__ */ jsx64(
5781
+ component2: tabs[1] ? /* @__PURE__ */ jsx67(
5082
5782
  ScTabComp,
5083
5783
  {
5084
5784
  text: tabs[1].label,
@@ -5089,7 +5789,7 @@ var ScTabField = ({
5089
5789
  }
5090
5790
  ) : void 0
5091
5791
  }
5092
- ) : /* @__PURE__ */ jsx64(ScTabSwitcher, { className: ScTabField_default.scTabSwitcherInstance })
5792
+ ) : /* @__PURE__ */ jsx67(ScTabSwitcher, { className: ScTabField_default.scTabSwitcherInstance })
5093
5793
  ] });
5094
5794
  };
5095
5795
 
@@ -5106,19 +5806,19 @@ var ScTableHeader_default = {
5106
5806
  };
5107
5807
 
5108
5808
  // src/SC-tableHeader/ScTableHeader.tsx
5109
- import { Fragment as Fragment19, jsx as jsx65, jsxs as jsxs57 } from "react/jsx-runtime";
5809
+ import { Fragment as Fragment21, jsx as jsx68, jsxs as jsxs59 } from "react/jsx-runtime";
5110
5810
  var ScTableHeader = ({
5111
5811
  type = "default",
5112
5812
  className,
5113
5813
  ...props
5114
5814
  }) => {
5115
5815
  const variantsClassName = ScTableHeader_default["type-" + type];
5116
- return /* @__PURE__ */ jsxs57(
5816
+ return /* @__PURE__ */ jsxs59(
5117
5817
  "div",
5118
5818
  {
5119
5819
  className: ScTableHeader_default.scTableHeader + " " + className + " " + variantsClassName,
5120
5820
  children: [
5121
- /* @__PURE__ */ jsx65(
5821
+ /* @__PURE__ */ jsx68(
5122
5822
  ScHeader,
5123
5823
  {
5124
5824
  text: "User",
@@ -5126,7 +5826,7 @@ var ScTableHeader = ({
5126
5826
  className: ScTableHeader_default.scHeaderInstance
5127
5827
  }
5128
5828
  ),
5129
- /* @__PURE__ */ jsx65(
5829
+ /* @__PURE__ */ jsx68(
5130
5830
  ScHeader,
5131
5831
  {
5132
5832
  text: "Role",
@@ -5134,7 +5834,7 @@ var ScTableHeader = ({
5134
5834
  className: ScTableHeader_default.scHeaderInstance2
5135
5835
  }
5136
5836
  ),
5137
- /* @__PURE__ */ jsx65(
5837
+ /* @__PURE__ */ jsx68(
5138
5838
  ScHeader,
5139
5839
  {
5140
5840
  text: "Access",
@@ -5142,7 +5842,7 @@ var ScTableHeader = ({
5142
5842
  className: ScTableHeader_default.scHeaderInstance3
5143
5843
  }
5144
5844
  ),
5145
- /* @__PURE__ */ jsx65(
5845
+ /* @__PURE__ */ jsx68(
5146
5846
  ScHeader,
5147
5847
  {
5148
5848
  text: "Invited by",
@@ -5150,7 +5850,7 @@ var ScTableHeader = ({
5150
5850
  className: ScTableHeader_default.scHeaderInstance4
5151
5851
  }
5152
5852
  ),
5153
- type === "pending" && /* @__PURE__ */ jsx65(Fragment19, { children: /* @__PURE__ */ jsx65(
5853
+ type === "pending" && /* @__PURE__ */ jsx68(Fragment21, { children: /* @__PURE__ */ jsx68(
5154
5854
  ScHeader,
5155
5855
  {
5156
5856
  text: "Invite action",
@@ -5158,7 +5858,7 @@ var ScTableHeader = ({
5158
5858
  className: ScTableHeader_default.scHeaderInstance5
5159
5859
  }
5160
5860
  ) }),
5161
- type === "default" && /* @__PURE__ */ jsx65(Fragment19, { children: /* @__PURE__ */ jsx65(
5861
+ type === "default" && /* @__PURE__ */ jsx68(Fragment21, { children: /* @__PURE__ */ jsx68(
5162
5862
  ScHeader,
5163
5863
  {
5164
5864
  text: "Signed On",
@@ -5192,7 +5892,7 @@ var ScTableList_default = {
5192
5892
  // src/SC-tableList/ScTableList.tsx
5193
5893
  import { SiconArtifacts as SiconArtifacts6, SiconPhotogenix as SiconPhotogenix3 } from "@streamoid/icons";
5194
5894
  import { SiconUserAdd, SiconCoins } from "@streamoid/icons";
5195
- import { Fragment as Fragment20, jsx as jsx66, jsxs as jsxs58 } from "react/jsx-runtime";
5895
+ import { Fragment as Fragment22, jsx as jsx69, jsxs as jsxs60 } from "react/jsx-runtime";
5196
5896
  var ScTableList = ({
5197
5897
  invitedBy = "Rohan",
5198
5898
  signedOn = "Nov 9th, 2025",
@@ -5204,51 +5904,51 @@ var ScTableList = ({
5204
5904
  ...props
5205
5905
  }) => {
5206
5906
  const variantsClassName = ScTableList_default["hover-" + hover] + " " + ScTableList_default["variant-" + variant];
5207
- return /* @__PURE__ */ jsxs58(
5907
+ return /* @__PURE__ */ jsxs60(
5208
5908
  "div",
5209
5909
  {
5210
5910
  className: ScTableList_default.scTableList + " " + className + " " + variantsClassName,
5211
5911
  onClick: (e) => onRowClick && onRowClick(invitedBy, e),
5212
5912
  ...props,
5213
5913
  children: [
5214
- /* @__PURE__ */ jsx66(
5914
+ /* @__PURE__ */ jsx69(
5215
5915
  ScProfile,
5216
5916
  {
5217
5917
  subText: userEmail,
5218
5918
  className: ScTableList_default.scProfileInstance
5219
5919
  }
5220
5920
  ),
5221
- /* @__PURE__ */ jsx66(ScRole, { className: ScTableList_default.scRoleInstance }),
5222
- /* @__PURE__ */ jsxs58("div", { className: ScTableList_default.accessInfo, children: [
5223
- /* @__PURE__ */ jsx66(
5921
+ /* @__PURE__ */ jsx69(ScRole, { className: ScTableList_default.scRoleInstance }),
5922
+ /* @__PURE__ */ jsxs60("div", { className: ScTableList_default.accessInfo, children: [
5923
+ /* @__PURE__ */ jsx69(
5224
5924
  ScAccess,
5225
5925
  {
5226
- component: /* @__PURE__ */ jsx66(SiconArtifacts6, { className: ScTableList_default.siconArtifactsInstance }),
5227
- component2: /* @__PURE__ */ jsx66(SiconPhotogenix3, { className: ScTableList_default.siconPhotogenixInstance }),
5926
+ component: /* @__PURE__ */ jsx69(SiconArtifacts6, { className: ScTableList_default.siconArtifactsInstance }),
5927
+ component2: /* @__PURE__ */ jsx69(SiconPhotogenix3, { className: ScTableList_default.siconPhotogenixInstance }),
5228
5928
  className: ScTableList_default.scAccessInstance
5229
5929
  }
5230
5930
  ),
5231
- /* @__PURE__ */ jsx66(
5931
+ /* @__PURE__ */ jsx69(
5232
5932
  ScAccess,
5233
5933
  {
5234
- component: /* @__PURE__ */ jsx66(SiconUserAdd, { className: ScTableList_default.siconUserAddInstance }),
5235
- component2: /* @__PURE__ */ jsx66(SiconCoins, { className: ScTableList_default.siconCoinsInstance }),
5934
+ component: /* @__PURE__ */ jsx69(SiconUserAdd, { className: ScTableList_default.siconUserAddInstance }),
5935
+ component2: /* @__PURE__ */ jsx69(SiconCoins, { className: ScTableList_default.siconCoinsInstance }),
5236
5936
  visibleSiconCatalogix: false,
5237
5937
  className: ScTableList_default.scAccessInstance
5238
5938
  }
5239
5939
  )
5240
5940
  ] }),
5241
- /* @__PURE__ */ jsxs58("div", { className: ScTableList_default.userName, children: [
5941
+ /* @__PURE__ */ jsxs60("div", { className: ScTableList_default.userName, children: [
5242
5942
  invitedBy,
5243
5943
  " "
5244
5944
  ] }),
5245
- variant === "pending" && /* @__PURE__ */ jsx66(Fragment20, { children: /* @__PURE__ */ jsx66(
5945
+ variant === "pending" && /* @__PURE__ */ jsx69(Fragment22, { children: /* @__PURE__ */ jsx69(
5246
5946
  ScPendingAction,
5247
5947
  {
5248
5948
  className: ScTableList_default.scPendingActionInstance
5249
5949
  }
5250
5950
  ) }),
5251
- variant === "active" && /* @__PURE__ */ jsx66(Fragment20, { children: /* @__PURE__ */ jsxs58("div", { className: ScTableList_default.date, children: [
5951
+ variant === "active" && /* @__PURE__ */ jsx69(Fragment22, { children: /* @__PURE__ */ jsxs60("div", { className: ScTableList_default.date, children: [
5252
5952
  signedOn,
5253
5953
  " "
5254
5954
  ] }) })
@@ -5283,7 +5983,7 @@ import {
5283
5983
  SiconSwitch as SiconSwitch2,
5284
5984
  SiconLogout as SiconLogout2
5285
5985
  } from "@streamoid/icons";
5286
- import { jsx as jsx67, jsxs as jsxs59 } from "react/jsx-runtime";
5986
+ import { jsx as jsx70, jsxs as jsxs61 } from "react/jsx-runtime";
5287
5987
  var ScWorkspaceCard = ({
5288
5988
  workspaceName = "Stores",
5289
5989
  role = "Admin",
@@ -5293,21 +5993,21 @@ var ScWorkspaceCard = ({
5293
5993
  className,
5294
5994
  ...props
5295
5995
  }) => {
5296
- return /* @__PURE__ */ jsxs59("div", { className: ScWorkspaceCard_default.scWorkspaceCard + " " + className, ...props, children: [
5297
- /* @__PURE__ */ jsxs59("div", { className: ScWorkspaceCard_default.workspaceInfo, children: [
5298
- /* @__PURE__ */ jsx67(
5996
+ return /* @__PURE__ */ jsxs61("div", { className: ScWorkspaceCard_default.scWorkspaceCard + " " + className, ...props, children: [
5997
+ /* @__PURE__ */ jsxs61("div", { className: ScWorkspaceCard_default.workspaceInfo, children: [
5998
+ /* @__PURE__ */ jsx70(
5299
5999
  ScIntialProfileCover,
5300
6000
  {
5301
6001
  className: ScWorkspaceCard_default.scIntialProfileCoverInstance
5302
6002
  }
5303
6003
  ),
5304
- /* @__PURE__ */ jsxs59("div", { className: ScWorkspaceCard_default.workspaceName, children: [
6004
+ /* @__PURE__ */ jsxs61("div", { className: ScWorkspaceCard_default.workspaceName, children: [
5305
6005
  workspaceName,
5306
6006
  " "
5307
6007
  ] })
5308
6008
  ] }),
5309
- /* @__PURE__ */ jsxs59("div", { className: ScWorkspaceCard_default.userInfo, children: [
5310
- /* @__PURE__ */ jsx67(
6009
+ /* @__PURE__ */ jsxs61("div", { className: ScWorkspaceCard_default.userInfo, children: [
6010
+ /* @__PURE__ */ jsx70(
5311
6011
  ScBadges,
5312
6012
  {
5313
6013
  text: role,
@@ -5315,41 +6015,41 @@ var ScWorkspaceCard = ({
5315
6015
  className: ScWorkspaceCard_default.scBadgesInstance
5316
6016
  }
5317
6017
  ),
5318
- /* @__PURE__ */ jsxs59("div", { className: ScWorkspaceCard_default.userDetails, children: [
5319
- /* @__PURE__ */ jsx67(
6018
+ /* @__PURE__ */ jsxs61("div", { className: ScWorkspaceCard_default.userDetails, children: [
6019
+ /* @__PURE__ */ jsx70(
5320
6020
  ScPairtext,
5321
6021
  {
5322
- icon: /* @__PURE__ */ jsx67(SiconTeam6, { className: ScWorkspaceCard_default.siconTeamInstance }),
6022
+ icon: /* @__PURE__ */ jsx70(SiconTeam6, { className: ScWorkspaceCard_default.siconTeamInstance }),
5323
6023
  content: userCount,
5324
6024
  className: ScWorkspaceCard_default.scPairtextInstance
5325
6025
  }
5326
6026
  ),
5327
- /* @__PURE__ */ jsx67(ScVDivider, { className: ScWorkspaceCard_default.scVDividerInstance }),
5328
- /* @__PURE__ */ jsx67(
6027
+ /* @__PURE__ */ jsx70(ScVDivider, { className: ScWorkspaceCard_default.scVDividerInstance }),
6028
+ /* @__PURE__ */ jsx70(
5329
6029
  ScPairtext,
5330
6030
  {
5331
- icon: /* @__PURE__ */ jsx67(SiconCrown2, { className: ScWorkspaceCard_default.siconCrownInstance }),
6031
+ icon: /* @__PURE__ */ jsx70(SiconCrown2, { className: ScWorkspaceCard_default.siconCrownInstance }),
5332
6032
  content: ownerEmail,
5333
6033
  className: ScWorkspaceCard_default.scPairtextInstance
5334
6034
  }
5335
6035
  )
5336
6036
  ] })
5337
6037
  ] }),
5338
- /* @__PURE__ */ jsx67(
6038
+ /* @__PURE__ */ jsx70(
5339
6039
  ScButton,
5340
6040
  {
5341
- icon: /* @__PURE__ */ jsx67(SiconSwitch2, { className: ScWorkspaceCard_default.siconSwitchInstance }),
6041
+ icon: /* @__PURE__ */ jsx70(SiconSwitch2, { className: ScWorkspaceCard_default.siconSwitchInstance }),
5342
6042
  text: buttonText,
5343
6043
  state: "disabled",
5344
6044
  variant: "outline",
5345
6045
  className: ScWorkspaceCard_default.scButtonInstance
5346
6046
  }
5347
6047
  ),
5348
- /* @__PURE__ */ jsx67(
6048
+ /* @__PURE__ */ jsx70(
5349
6049
  ScButton,
5350
6050
  {
5351
6051
  text: "Leave workspace",
5352
- icon: /* @__PURE__ */ jsx67(SiconLogout2, { className: ScWorkspaceCard_default.siconLogoutInstance }),
6052
+ icon: /* @__PURE__ */ jsx70(SiconLogout2, { className: ScWorkspaceCard_default.siconLogoutInstance }),
5353
6053
  styleVariant: "icon-only",
5354
6054
  variant: "error",
5355
6055
  className: ScWorkspaceCard_default.scButtonInstance2
@@ -5359,7 +6059,7 @@ var ScWorkspaceCard = ({
5359
6059
  };
5360
6060
 
5361
6061
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.tsx
5362
- import { useState as useState7 } from "react";
6062
+ import { useState as useState8 } from "react";
5363
6063
  import { SiconSwitch as SiconSwitch3, SiconSettings as SiconSettings3, SiconLogout as SiconLogout3 } from "@streamoid/icons";
5364
6064
 
5365
6065
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.module.css
@@ -5385,7 +6085,7 @@ var ScWorkspaceSwitchCard_default = {
5385
6085
  };
5386
6086
 
5387
6087
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.tsx
5388
- import { jsx as jsx68, jsxs as jsxs60 } from "react/jsx-runtime";
6088
+ import { jsx as jsx71, jsxs as jsxs62 } from "react/jsx-runtime";
5389
6089
  function ScWorkspaceSwitchCard({
5390
6090
  wsName = "Workspace name is kepler",
5391
6091
  role = "Admin",
@@ -5400,7 +6100,7 @@ function ScWorkspaceSwitchCard({
5400
6100
  onSettings,
5401
6101
  onLeave
5402
6102
  }) {
5403
- const [internalHover, setInternalHover] = useState7(false);
6103
+ const [internalHover, setInternalHover] = useState8(false);
5404
6104
  const isHover = hover !== void 0 ? hover : internalHover;
5405
6105
  const isCurrent = type === "currentWS";
5406
6106
  const isOther = type === "otherWS";
@@ -5415,14 +6115,14 @@ function ScWorkspaceSwitchCard({
5415
6115
  ].filter(Boolean).join(" ");
5416
6116
  const dpBg = isCurrent ? "var(--alias-fill-neutral-neutralactive, #313131)" : "var(--alias-fill-neutral-neutralselected, #242424)";
5417
6117
  const roleColorClass = isAdmin ? ScWorkspaceSwitchCard_default.detailValueRole : ScWorkspaceSwitchCard_default.detailValueInfo;
5418
- return /* @__PURE__ */ jsx68(
6118
+ return /* @__PURE__ */ jsx71(
5419
6119
  "div",
5420
6120
  {
5421
6121
  className: cardClass,
5422
6122
  onMouseEnter: () => setInternalHover(true),
5423
6123
  onMouseLeave: () => setInternalHover(false),
5424
- children: /* @__PURE__ */ jsxs60("div", { className: ScWorkspaceSwitchCard_default.wsInfo, children: [
5425
- /* @__PURE__ */ jsx68(
6124
+ children: /* @__PURE__ */ jsxs62("div", { className: ScWorkspaceSwitchCard_default.wsInfo, children: [
6125
+ /* @__PURE__ */ jsx71(
5426
6126
  ScDp,
5427
6127
  {
5428
6128
  type: imageUrl ? "image" : "initial",
@@ -5436,26 +6136,26 @@ function ScWorkspaceSwitchCard({
5436
6136
  }
5437
6137
  }
5438
6138
  ),
5439
- /* @__PURE__ */ jsxs60("div", { className: ScWorkspaceSwitchCard_default.infoCol, children: [
5440
- /* @__PURE__ */ jsx68("p", { className: ScWorkspaceSwitchCard_default.wsName, children: wsName }),
5441
- /* @__PURE__ */ jsxs60("div", { className: ScWorkspaceSwitchCard_default.detailsRow, children: [
5442
- /* @__PURE__ */ jsxs60("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
5443
- /* @__PURE__ */ jsx68("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Role" }),
5444
- /* @__PURE__ */ jsx68("span", { className: roleColorClass, children: displayRole })
6139
+ /* @__PURE__ */ jsxs62("div", { className: ScWorkspaceSwitchCard_default.infoCol, children: [
6140
+ /* @__PURE__ */ jsx71("p", { className: ScWorkspaceSwitchCard_default.wsName, children: wsName }),
6141
+ /* @__PURE__ */ jsxs62("div", { className: ScWorkspaceSwitchCard_default.detailsRow, children: [
6142
+ /* @__PURE__ */ jsxs62("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
6143
+ /* @__PURE__ */ jsx71("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Role" }),
6144
+ /* @__PURE__ */ jsx71("span", { className: roleColorClass, children: displayRole })
5445
6145
  ] }),
5446
- /* @__PURE__ */ jsx68(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
5447
- /* @__PURE__ */ jsxs60("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
5448
- /* @__PURE__ */ jsx68("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Plan" }),
5449
- /* @__PURE__ */ jsx68("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: plan })
6146
+ /* @__PURE__ */ jsx71(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
6147
+ /* @__PURE__ */ jsxs62("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
6148
+ /* @__PURE__ */ jsx71("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Plan" }),
6149
+ /* @__PURE__ */ jsx71("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: plan })
5450
6150
  ] }),
5451
- /* @__PURE__ */ jsx68(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
5452
- /* @__PURE__ */ jsxs60("div", { className: ScWorkspaceSwitchCard_default.detailItemFlex, children: [
5453
- /* @__PURE__ */ jsx68("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Workspace Owner" }),
5454
- /* @__PURE__ */ jsx68("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: ownerId })
6151
+ /* @__PURE__ */ jsx71(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
6152
+ /* @__PURE__ */ jsxs62("div", { className: ScWorkspaceSwitchCard_default.detailItemFlex, children: [
6153
+ /* @__PURE__ */ jsx71("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Workspace Owner" }),
6154
+ /* @__PURE__ */ jsx71("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: ownerId })
5455
6155
  ] })
5456
6156
  ] })
5457
6157
  ] }),
5458
- isHover && isOther && /* @__PURE__ */ jsx68(
6158
+ isHover && isOther && /* @__PURE__ */ jsx71(
5459
6159
  "div",
5460
6160
  {
5461
6161
  onClick: (e) => {
@@ -5463,19 +6163,19 @@ function ScWorkspaceSwitchCard({
5463
6163
  onSwitch?.();
5464
6164
  },
5465
6165
  style: { cursor: "pointer" },
5466
- children: /* @__PURE__ */ jsx68(
6166
+ children: /* @__PURE__ */ jsx71(
5467
6167
  ScButton,
5468
6168
  {
5469
6169
  text: "Switch Workspace",
5470
6170
  variant: "secondary",
5471
6171
  size: "sm",
5472
6172
  styleVariant: "icon-left",
5473
- icon: /* @__PURE__ */ jsx68(SiconSwitch3, { className: ScWorkspaceSwitchCard_default.btnIcon })
6173
+ icon: /* @__PURE__ */ jsx71(SiconSwitch3, { className: ScWorkspaceSwitchCard_default.btnIcon })
5474
6174
  }
5475
6175
  )
5476
6176
  }
5477
6177
  ),
5478
- isHover && isAdmin && /* @__PURE__ */ jsx68(
6178
+ isHover && isAdmin && /* @__PURE__ */ jsx71(
5479
6179
  "div",
5480
6180
  {
5481
6181
  onClick: (e) => {
@@ -5483,18 +6183,18 @@ function ScWorkspaceSwitchCard({
5483
6183
  onSettings?.();
5484
6184
  },
5485
6185
  style: { cursor: "pointer" },
5486
- children: /* @__PURE__ */ jsx68(
6186
+ children: /* @__PURE__ */ jsx71(
5487
6187
  ScButton,
5488
6188
  {
5489
6189
  styleVariant: "icon-only",
5490
6190
  variant: "outline",
5491
6191
  size: "sm",
5492
- icon: /* @__PURE__ */ jsx68(SiconSettings3, { className: ScWorkspaceSwitchCard_default.btnIcon })
6192
+ icon: /* @__PURE__ */ jsx71(SiconSettings3, { className: ScWorkspaceSwitchCard_default.btnIcon })
5493
6193
  }
5494
6194
  )
5495
6195
  }
5496
6196
  ),
5497
- isHover && !isAdmin && /* @__PURE__ */ jsx68(
6197
+ isHover && !isAdmin && /* @__PURE__ */ jsx71(
5498
6198
  "div",
5499
6199
  {
5500
6200
  className: ScWorkspaceSwitchCard_default.leaveBtn,
@@ -5502,7 +6202,7 @@ function ScWorkspaceSwitchCard({
5502
6202
  e.stopPropagation();
5503
6203
  onLeave?.();
5504
6204
  },
5505
- children: /* @__PURE__ */ jsx68(SiconLogout3, { className: ScWorkspaceSwitchCard_default.btnIcon, color: "currentColor" })
6205
+ children: /* @__PURE__ */ jsx71(SiconLogout3, { className: ScWorkspaceSwitchCard_default.btnIcon, color: "currentColor" })
5506
6206
  }
5507
6207
  )
5508
6208
  ] })
@@ -5520,18 +6220,18 @@ var ScRoleMobile_default = {
5520
6220
  };
5521
6221
 
5522
6222
  // src/SC-Role-Mobile/ScRoleMobile.tsx
5523
- import { jsx as jsx69 } from "react/jsx-runtime";
6223
+ import { jsx as jsx72 } from "react/jsx-runtime";
5524
6224
  var ScRoleMobile = ({
5525
6225
  role = "admin",
5526
6226
  className,
5527
6227
  ...props
5528
6228
  }) => {
5529
- return /* @__PURE__ */ jsx69(
6229
+ return /* @__PURE__ */ jsx72(
5530
6230
  "div",
5531
6231
  {
5532
6232
  className: ScRoleMobile_default.scRoleMobile + " " + ScRoleMobile_default["role-" + role] + " " + className,
5533
6233
  ...props,
5534
- children: /* @__PURE__ */ jsx69("p", { className: ScRoleMobile_default.text, children: role === "admin" ? "Admin" : "Member" })
6234
+ children: /* @__PURE__ */ jsx72("p", { className: ScRoleMobile_default.text, children: role === "admin" ? "Admin" : "Member" })
5535
6235
  }
5536
6236
  );
5537
6237
  };
@@ -5548,7 +6248,7 @@ var ScProfileV2Mobile_default = {
5548
6248
  };
5549
6249
 
5550
6250
  // src/SC-Profile-V2-Mobile/ScProfileV2Mobile.tsx
5551
- import { jsx as jsx70, jsxs as jsxs61 } from "react/jsx-runtime";
6251
+ import { jsx as jsx73, jsxs as jsxs63 } from "react/jsx-runtime";
5552
6252
  var ScProfileV2Mobile = ({
5553
6253
  name = "Chris Hemsworth",
5554
6254
  email = "chris@kepler.com",
@@ -5558,17 +6258,17 @@ var ScProfileV2Mobile = ({
5558
6258
  ...props
5559
6259
  }) => {
5560
6260
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
5561
- const profileImage = /* @__PURE__ */ jsx70("div", { className: ScProfileV2Mobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ jsx70("img", { src: imageUrl, alt: name, className: ScProfileV2Mobile_default.image }) : /* @__PURE__ */ jsx70("div", { className: ScProfileV2Mobile_default.initials, children: initials }) });
5562
- return /* @__PURE__ */ jsxs61(
6261
+ const profileImage = /* @__PURE__ */ jsx73("div", { className: ScProfileV2Mobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ jsx73("img", { src: imageUrl, alt: name, className: ScProfileV2Mobile_default.image }) : /* @__PURE__ */ jsx73("div", { className: ScProfileV2Mobile_default.initials, children: initials }) });
6262
+ return /* @__PURE__ */ jsxs63(
5563
6263
  "div",
5564
6264
  {
5565
6265
  className: ScProfileV2Mobile_default.scProfileV2Mobile + " " + className,
5566
6266
  ...props,
5567
6267
  children: [
5568
6268
  dpPosition === "left" && profileImage,
5569
- /* @__PURE__ */ jsxs61("div", { className: ScProfileV2Mobile_default.userInfo, children: [
5570
- /* @__PURE__ */ jsx70("p", { className: ScProfileV2Mobile_default.userName, children: name }),
5571
- /* @__PURE__ */ jsx70("p", { className: ScProfileV2Mobile_default.userEmail, children: email })
6269
+ /* @__PURE__ */ jsxs63("div", { className: ScProfileV2Mobile_default.userInfo, children: [
6270
+ /* @__PURE__ */ jsx73("p", { className: ScProfileV2Mobile_default.userName, children: name }),
6271
+ /* @__PURE__ */ jsx73("p", { className: ScProfileV2Mobile_default.userEmail, children: email })
5572
6272
  ] }),
5573
6273
  dpPosition === "right" && profileImage
5574
6274
  ]
@@ -5595,7 +6295,7 @@ var ScTableListMobile_default = {
5595
6295
  };
5596
6296
 
5597
6297
  // src/SC-tableList-mobile/ScTableListMobile.tsx
5598
- import { jsx as jsx71, jsxs as jsxs62 } from "react/jsx-runtime";
6298
+ import { jsx as jsx74, jsxs as jsxs64 } from "react/jsx-runtime";
5599
6299
  var ScTableListMobile = ({
5600
6300
  name = "Chris Hemsworth",
5601
6301
  email = "chris@kepler.com",
@@ -5608,25 +6308,25 @@ var ScTableListMobile = ({
5608
6308
  ...props
5609
6309
  }) => {
5610
6310
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
5611
- return /* @__PURE__ */ jsxs62(
6311
+ return /* @__PURE__ */ jsxs64(
5612
6312
  "div",
5613
6313
  {
5614
6314
  className: ScTableListMobile_default.scTableListMobile + " " + className,
5615
6315
  onClick: onRowClick,
5616
6316
  ...props,
5617
6317
  children: [
5618
- /* @__PURE__ */ jsxs62("div", { className: ScTableListMobile_default.profileRow, children: [
5619
- /* @__PURE__ */ jsxs62("div", { className: ScTableListMobile_default.userInfo, children: [
5620
- /* @__PURE__ */ jsx71("p", { className: ScTableListMobile_default.userName, children: name }),
5621
- /* @__PURE__ */ jsx71("p", { className: ScTableListMobile_default.userEmail, children: email })
6318
+ /* @__PURE__ */ jsxs64("div", { className: ScTableListMobile_default.profileRow, children: [
6319
+ /* @__PURE__ */ jsxs64("div", { className: ScTableListMobile_default.userInfo, children: [
6320
+ /* @__PURE__ */ jsx74("p", { className: ScTableListMobile_default.userName, children: name }),
6321
+ /* @__PURE__ */ jsx74("p", { className: ScTableListMobile_default.userEmail, children: email })
5622
6322
  ] }),
5623
- /* @__PURE__ */ jsx71("div", { className: ScTableListMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ jsx71("img", { src: imageUrl, alt: name, className: ScTableListMobile_default.image }) : /* @__PURE__ */ jsx71("div", { className: ScTableListMobile_default.initials, children: initials }) })
6323
+ /* @__PURE__ */ jsx74("div", { className: ScTableListMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ jsx74("img", { src: imageUrl, alt: name, className: ScTableListMobile_default.image }) : /* @__PURE__ */ jsx74("div", { className: ScTableListMobile_default.initials, children: initials }) })
5624
6324
  ] }),
5625
- /* @__PURE__ */ jsxs62("div", { className: ScTableListMobile_default.detailsRow, children: [
5626
- /* @__PURE__ */ jsx71("div", { className: ScTableListMobile_default.roleBadge, children: /* @__PURE__ */ jsx71("p", { className: ScTableListMobile_default.roleText, children: role }) }),
5627
- /* @__PURE__ */ jsxs62("div", { className: ScTableListMobile_default.accessInfo, children: [
5628
- accessIcons && accessIcons.length > 0 && /* @__PURE__ */ jsx71("div", { className: ScTableListMobile_default.accessGroup, children: accessIcons.map((icon, i) => /* @__PURE__ */ jsx71("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) }),
5629
- permissionIcons && permissionIcons.length > 0 && /* @__PURE__ */ jsx71("div", { className: ScTableListMobile_default.accessGroup, children: permissionIcons.map((icon, i) => /* @__PURE__ */ jsx71("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) })
6325
+ /* @__PURE__ */ jsxs64("div", { className: ScTableListMobile_default.detailsRow, children: [
6326
+ /* @__PURE__ */ jsx74("div", { className: ScTableListMobile_default.roleBadge, children: /* @__PURE__ */ jsx74("p", { className: ScTableListMobile_default.roleText, children: role }) }),
6327
+ /* @__PURE__ */ jsxs64("div", { className: ScTableListMobile_default.accessInfo, children: [
6328
+ accessIcons && accessIcons.length > 0 && /* @__PURE__ */ jsx74("div", { className: ScTableListMobile_default.accessGroup, children: accessIcons.map((icon, i) => /* @__PURE__ */ jsx74("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) }),
6329
+ permissionIcons && permissionIcons.length > 0 && /* @__PURE__ */ jsx74("div", { className: ScTableListMobile_default.accessGroup, children: permissionIcons.map((icon, i) => /* @__PURE__ */ jsx74("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) })
5630
6330
  ] })
5631
6331
  ] })
5632
6332
  ]
@@ -5654,7 +6354,7 @@ var ScWorkspaceSwitchMobile_default = {
5654
6354
  };
5655
6355
 
5656
6356
  // src/SC-workspaceSwitch-Mobile/ScWorkspaceSwitchMobile.tsx
5657
- import { jsx as jsx72, jsxs as jsxs63 } from "react/jsx-runtime";
6357
+ import { jsx as jsx75, jsxs as jsxs65 } from "react/jsx-runtime";
5658
6358
  var ScWorkspaceSwitchMobile = ({
5659
6359
  storeName = "Stores",
5660
6360
  initials = "WS",
@@ -5667,24 +6367,24 @@ var ScWorkspaceSwitchMobile = ({
5667
6367
  ...props
5668
6368
  }) => {
5669
6369
  const variant = currentWs ? "current" : "other";
5670
- return /* @__PURE__ */ jsxs63(
6370
+ return /* @__PURE__ */ jsxs65(
5671
6371
  "div",
5672
6372
  {
5673
6373
  className: ScWorkspaceSwitchMobile_default.scWorkspaceSwitchMobile + " " + ScWorkspaceSwitchMobile_default["variant-" + variant] + " " + className,
5674
6374
  onClick,
5675
6375
  ...props,
5676
6376
  children: [
5677
- /* @__PURE__ */ jsxs63("div", { className: ScWorkspaceSwitchMobile_default.workspaceInfo, children: [
5678
- /* @__PURE__ */ jsxs63("div", { className: ScWorkspaceSwitchMobile_default.wsNameRow, children: [
5679
- /* @__PURE__ */ jsx72("div", { className: ScWorkspaceSwitchMobile_default.initialsBox, children: /* @__PURE__ */ jsx72("span", { className: ScWorkspaceSwitchMobile_default.initialsText, children: initials }) }),
5680
- /* @__PURE__ */ jsx72("p", { className: ScWorkspaceSwitchMobile_default.storeName, children: storeName })
6377
+ /* @__PURE__ */ jsxs65("div", { className: ScWorkspaceSwitchMobile_default.workspaceInfo, children: [
6378
+ /* @__PURE__ */ jsxs65("div", { className: ScWorkspaceSwitchMobile_default.wsNameRow, children: [
6379
+ /* @__PURE__ */ jsx75("div", { className: ScWorkspaceSwitchMobile_default.initialsBox, children: /* @__PURE__ */ jsx75("span", { className: ScWorkspaceSwitchMobile_default.initialsText, children: initials }) }),
6380
+ /* @__PURE__ */ jsx75("p", { className: ScWorkspaceSwitchMobile_default.storeName, children: storeName })
5681
6381
  ] }),
5682
- /* @__PURE__ */ jsx72("div", { className: ScWorkspaceSwitchMobile_default.roleBadge, children: /* @__PURE__ */ jsx72("p", { className: ScWorkspaceSwitchMobile_default.roleText, children: role }) })
6382
+ /* @__PURE__ */ jsx75("div", { className: ScWorkspaceSwitchMobile_default.roleBadge, children: /* @__PURE__ */ jsx75("p", { className: ScWorkspaceSwitchMobile_default.roleText, children: role }) })
5683
6383
  ] }),
5684
- /* @__PURE__ */ jsx72("div", { className: ScWorkspaceSwitchMobile_default.divider }),
5685
- /* @__PURE__ */ jsxs63("div", { className: ScWorkspaceSwitchMobile_default.ownerRow, children: [
5686
- /* @__PURE__ */ jsx72("div", { className: ScWorkspaceSwitchMobile_default.ownerIconContainer, children: ownerIcon && /* @__PURE__ */ jsx72("span", { className: ScWorkspaceSwitchMobile_default.ownerIcon, children: ownerIcon }) }),
5687
- /* @__PURE__ */ jsx72("p", { className: ScWorkspaceSwitchMobile_default.ownerText, children: ownerId })
6384
+ /* @__PURE__ */ jsx75("div", { className: ScWorkspaceSwitchMobile_default.divider }),
6385
+ /* @__PURE__ */ jsxs65("div", { className: ScWorkspaceSwitchMobile_default.ownerRow, children: [
6386
+ /* @__PURE__ */ jsx75("div", { className: ScWorkspaceSwitchMobile_default.ownerIconContainer, children: ownerIcon && /* @__PURE__ */ jsx75("span", { className: ScWorkspaceSwitchMobile_default.ownerIcon, children: ownerIcon }) }),
6387
+ /* @__PURE__ */ jsx75("p", { className: ScWorkspaceSwitchMobile_default.ownerText, children: ownerId })
5688
6388
  ] })
5689
6389
  ]
5690
6390
  }
@@ -5711,7 +6411,7 @@ var ScWorkspaceSettingsMobile_default = {
5711
6411
  };
5712
6412
 
5713
6413
  // src/SC-workspaceSettings-Mobile/ScWorkspaceSettingsMobile.tsx
5714
- import { jsx as jsx73, jsxs as jsxs64 } from "react/jsx-runtime";
6414
+ import { jsx as jsx76, jsxs as jsxs66 } from "react/jsx-runtime";
5715
6415
  var ScWorkspaceSettingsMobile = ({
5716
6416
  storeName = "Stores",
5717
6417
  initials = "WS",
@@ -5726,28 +6426,28 @@ var ScWorkspaceSettingsMobile = ({
5726
6426
  ...props
5727
6427
  }) => {
5728
6428
  const variant = currentWs ? "current" : "other";
5729
- return /* @__PURE__ */ jsxs64(
6429
+ return /* @__PURE__ */ jsxs66(
5730
6430
  "div",
5731
6431
  {
5732
6432
  className: ScWorkspaceSettingsMobile_default.scWorkspaceSettingsMobile + " " + ScWorkspaceSettingsMobile_default["variant-" + variant] + " " + className,
5733
6433
  onClick,
5734
6434
  ...props,
5735
6435
  children: [
5736
- /* @__PURE__ */ jsxs64("div", { className: ScWorkspaceSettingsMobile_default.workspaceInfo, children: [
5737
- /* @__PURE__ */ jsxs64("div", { className: ScWorkspaceSettingsMobile_default.wsNameRow, children: [
5738
- /* @__PURE__ */ jsx73("div", { className: ScWorkspaceSettingsMobile_default.initialsBox, children: /* @__PURE__ */ jsx73("span", { className: ScWorkspaceSettingsMobile_default.initialsText, children: initials }) }),
5739
- /* @__PURE__ */ jsx73("p", { className: ScWorkspaceSettingsMobile_default.storeName, children: storeName })
6436
+ /* @__PURE__ */ jsxs66("div", { className: ScWorkspaceSettingsMobile_default.workspaceInfo, children: [
6437
+ /* @__PURE__ */ jsxs66("div", { className: ScWorkspaceSettingsMobile_default.wsNameRow, children: [
6438
+ /* @__PURE__ */ jsx76("div", { className: ScWorkspaceSettingsMobile_default.initialsBox, children: /* @__PURE__ */ jsx76("span", { className: ScWorkspaceSettingsMobile_default.initialsText, children: initials }) }),
6439
+ /* @__PURE__ */ jsx76("p", { className: ScWorkspaceSettingsMobile_default.storeName, children: storeName })
5740
6440
  ] }),
5741
- /* @__PURE__ */ jsx73("div", { className: ScWorkspaceSettingsMobile_default.roleBadge, children: /* @__PURE__ */ jsx73("p", { className: ScWorkspaceSettingsMobile_default.roleText, children: role }) })
6441
+ /* @__PURE__ */ jsx76("div", { className: ScWorkspaceSettingsMobile_default.roleBadge, children: /* @__PURE__ */ jsx76("p", { className: ScWorkspaceSettingsMobile_default.roleText, children: role }) })
5742
6442
  ] }),
5743
- /* @__PURE__ */ jsx73("div", { className: ScWorkspaceSettingsMobile_default.divider }),
5744
- /* @__PURE__ */ jsxs64("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
5745
- /* @__PURE__ */ jsx73("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: ownerIcon && /* @__PURE__ */ jsx73("span", { className: ScWorkspaceSettingsMobile_default.icon, children: ownerIcon }) }),
5746
- /* @__PURE__ */ jsx73("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: ownerId })
6443
+ /* @__PURE__ */ jsx76("div", { className: ScWorkspaceSettingsMobile_default.divider }),
6444
+ /* @__PURE__ */ jsxs66("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
6445
+ /* @__PURE__ */ jsx76("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: ownerIcon && /* @__PURE__ */ jsx76("span", { className: ScWorkspaceSettingsMobile_default.icon, children: ownerIcon }) }),
6446
+ /* @__PURE__ */ jsx76("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: ownerId })
5747
6447
  ] }),
5748
- /* @__PURE__ */ jsxs64("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
5749
- /* @__PURE__ */ jsx73("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: teamIcon && /* @__PURE__ */ jsx73("span", { className: ScWorkspaceSettingsMobile_default.icon, children: teamIcon }) }),
5750
- /* @__PURE__ */ jsx73("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: teamCount })
6448
+ /* @__PURE__ */ jsxs66("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
6449
+ /* @__PURE__ */ jsx76("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: teamIcon && /* @__PURE__ */ jsx76("span", { className: ScWorkspaceSettingsMobile_default.icon, children: teamIcon }) }),
6450
+ /* @__PURE__ */ jsx76("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: teamCount })
5751
6451
  ] })
5752
6452
  ]
5753
6453
  }
@@ -5770,7 +6470,7 @@ var ScMobileTopNav_default = {
5770
6470
  };
5771
6471
 
5772
6472
  // src/SC-MobileTopNav/ScMobileTopNav.tsx
5773
- import { Fragment as Fragment21, jsx as jsx74, jsxs as jsxs65 } from "react/jsx-runtime";
6473
+ import { Fragment as Fragment23, jsx as jsx77, jsxs as jsxs67 } from "react/jsx-runtime";
5774
6474
  var ScMobileTopNav = ({
5775
6475
  type = "home",
5776
6476
  searchIcon = false,
@@ -5793,22 +6493,22 @@ var ScMobileTopNav = ({
5793
6493
  }) => {
5794
6494
  const hasBorder = type === "chat" || type === "inApp";
5795
6495
  const showSearch = type === "inApp" && searchIcon && search;
5796
- return /* @__PURE__ */ jsxs65(
6496
+ return /* @__PURE__ */ jsxs67(
5797
6497
  "div",
5798
6498
  {
5799
6499
  className: ScMobileTopNav_default.scMobileTopNav + " " + (hasBorder ? ScMobileTopNav_default.withBorder : "") + " " + className,
5800
6500
  ...props,
5801
6501
  children: [
5802
- type === "home" && /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5803
- type === "chat" && /* @__PURE__ */ jsxs65(Fragment21, { children: [
5804
- /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5805
- /* @__PURE__ */ jsx74("p", { className: ScMobileTopNav_default.chatTitle, children: chatTitle }),
5806
- /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMoreClick, children: moreIcon || /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
6502
+ type === "home" && /* @__PURE__ */ jsx77("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ jsx77("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
6503
+ type === "chat" && /* @__PURE__ */ jsxs67(Fragment23, { children: [
6504
+ /* @__PURE__ */ jsx77("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ jsx77("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
6505
+ /* @__PURE__ */ jsx77("p", { className: ScMobileTopNav_default.chatTitle, children: chatTitle }),
6506
+ /* @__PURE__ */ jsx77("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMoreClick, children: moreIcon || /* @__PURE__ */ jsx77("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
5807
6507
  ] }),
5808
- showSearch && /* @__PURE__ */ jsxs65(Fragment21, { children: [
5809
- /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.searchRow, children: /* @__PURE__ */ jsxs65("div", { className: ScMobileTopNav_default.searchInputContainer, children: [
5810
- /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconContainer, onClick: onSearchClick, children: searchIconElement || /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5811
- /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.searchInput, children: /* @__PURE__ */ jsx74(
6508
+ showSearch && /* @__PURE__ */ jsxs67(Fragment23, { children: [
6509
+ /* @__PURE__ */ jsx77("div", { className: ScMobileTopNav_default.searchRow, children: /* @__PURE__ */ jsxs67("div", { className: ScMobileTopNav_default.searchInputContainer, children: [
6510
+ /* @__PURE__ */ jsx77("div", { className: ScMobileTopNav_default.iconContainer, onClick: onSearchClick, children: searchIconElement || /* @__PURE__ */ jsx77("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
6511
+ /* @__PURE__ */ jsx77("div", { className: ScMobileTopNav_default.searchInput, children: /* @__PURE__ */ jsx77(
5812
6512
  "input",
5813
6513
  {
5814
6514
  type: "text",
@@ -5819,17 +6519,17 @@ var ScMobileTopNav = ({
5819
6519
  }
5820
6520
  ) })
5821
6521
  ] }) }),
5822
- /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconContainer, onClick: onCloseClick, children: closeIcon || /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
6522
+ /* @__PURE__ */ jsx77("div", { className: ScMobileTopNav_default.iconContainer, onClick: onCloseClick, children: closeIcon || /* @__PURE__ */ jsx77("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
5823
6523
  ] }),
5824
- type === "inApp" && !search && /* @__PURE__ */ jsxs65(Fragment21, { children: [
5825
- /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5826
- /* @__PURE__ */ jsx74("p", { className: ScMobileTopNav_default.heading, children: heading }),
5827
- /* @__PURE__ */ jsx74(
6524
+ type === "inApp" && !search && /* @__PURE__ */ jsxs67(Fragment23, { children: [
6525
+ /* @__PURE__ */ jsx77("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ jsx77("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
6526
+ /* @__PURE__ */ jsx77("p", { className: ScMobileTopNav_default.heading, children: heading }),
6527
+ /* @__PURE__ */ jsx77(
5828
6528
  "div",
5829
6529
  {
5830
6530
  className: ScMobileTopNav_default.iconContainer + " " + (!searchIcon ? ScMobileTopNav_default.hidden : ""),
5831
6531
  onClick: onSearchClick,
5832
- children: searchIcon ? searchIconElement || /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconPlaceholder }) : /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconPlaceholder })
6532
+ children: searchIcon ? searchIconElement || /* @__PURE__ */ jsx77("div", { className: ScMobileTopNav_default.iconPlaceholder }) : /* @__PURE__ */ jsx77("div", { className: ScMobileTopNav_default.iconPlaceholder })
5833
6533
  }
5834
6534
  )
5835
6535
  ] })
@@ -5850,7 +6550,7 @@ var ScMobileBottomAction_default = {
5850
6550
  };
5851
6551
 
5852
6552
  // src/SC-MobileBottomAction/ScMobileBottomAction.tsx
5853
- import { jsx as jsx75, jsxs as jsxs66 } from "react/jsx-runtime";
6553
+ import { jsx as jsx78, jsxs as jsxs68 } from "react/jsx-runtime";
5854
6554
  var ScMobileBottomAction = ({
5855
6555
  text = "Save Changes",
5856
6556
  disabled = false,
@@ -5862,28 +6562,28 @@ var ScMobileBottomAction = ({
5862
6562
  ...props
5863
6563
  }) => {
5864
6564
  const isTwoButton = !!secondaryText;
5865
- return /* @__PURE__ */ jsxs66(
6565
+ return /* @__PURE__ */ jsxs68(
5866
6566
  "div",
5867
6567
  {
5868
6568
  className: ScMobileBottomAction_default.scMobileBottomAction + (isTwoButton ? " " + ScMobileBottomAction_default.twoButton : "") + " " + className,
5869
6569
  ...props,
5870
6570
  children: [
5871
- isTwoButton && /* @__PURE__ */ jsx75(
6571
+ isTwoButton && /* @__PURE__ */ jsx78(
5872
6572
  "button",
5873
6573
  {
5874
6574
  className: ScMobileBottomAction_default.outlineButton + " " + (secondaryDisabled ? ScMobileBottomAction_default.disabled : ""),
5875
6575
  onClick: onSecondaryClick,
5876
6576
  disabled: secondaryDisabled,
5877
- children: /* @__PURE__ */ jsx75("span", { className: ScMobileBottomAction_default.outlineButtonText, children: secondaryText })
6577
+ children: /* @__PURE__ */ jsx78("span", { className: ScMobileBottomAction_default.outlineButtonText, children: secondaryText })
5878
6578
  }
5879
6579
  ),
5880
- /* @__PURE__ */ jsx75(
6580
+ /* @__PURE__ */ jsx78(
5881
6581
  "button",
5882
6582
  {
5883
6583
  className: ScMobileBottomAction_default.button + " " + (disabled ? ScMobileBottomAction_default.disabled : ""),
5884
6584
  onClick,
5885
6585
  disabled,
5886
- children: /* @__PURE__ */ jsx75("span", { className: ScMobileBottomAction_default.buttonText, children: text })
6586
+ children: /* @__PURE__ */ jsx78("span", { className: ScMobileBottomAction_default.buttonText, children: text })
5887
6587
  }
5888
6588
  )
5889
6589
  ]
@@ -5901,7 +6601,7 @@ var ScPopUpMenu_default = {
5901
6601
  };
5902
6602
 
5903
6603
  // src/SC-PopUpMenu/ScPopUpMenu.tsx
5904
- import { jsx as jsx76, jsxs as jsxs67 } from "react/jsx-runtime";
6604
+ import { jsx as jsx79, jsxs as jsxs69 } from "react/jsx-runtime";
5905
6605
  var ScPopUpMenu = ({
5906
6606
  menu = "Options",
5907
6607
  state = "default",
@@ -5910,15 +6610,15 @@ var ScPopUpMenu = ({
5910
6610
  className,
5911
6611
  ...props
5912
6612
  }) => {
5913
- return /* @__PURE__ */ jsxs67(
6613
+ return /* @__PURE__ */ jsxs69(
5914
6614
  "div",
5915
6615
  {
5916
6616
  className: ScPopUpMenu_default.scPopUpMenu + " " + ScPopUpMenu_default["state-" + state] + " " + className,
5917
6617
  onClick,
5918
6618
  ...props,
5919
6619
  children: [
5920
- icon && /* @__PURE__ */ jsx76("span", { className: ScPopUpMenu_default.icon, children: icon }),
5921
- /* @__PURE__ */ jsx76("p", { className: ScPopUpMenu_default.menuText, children: menu })
6620
+ icon && /* @__PURE__ */ jsx79("span", { className: ScPopUpMenu_default.icon, children: icon }),
6621
+ /* @__PURE__ */ jsx79("p", { className: ScPopUpMenu_default.menuText, children: menu })
5922
6622
  ]
5923
6623
  }
5924
6624
  );
@@ -5944,7 +6644,7 @@ var ScReferralCardMobile_default = {
5944
6644
  };
5945
6645
 
5946
6646
  // src/SC-referralCard-Mobile/ScReferralCardMobile.tsx
5947
- import { jsx as jsx77, jsxs as jsxs68 } from "react/jsx-runtime";
6647
+ import { jsx as jsx80, jsxs as jsxs70 } from "react/jsx-runtime";
5948
6648
  var ScReferralCardMobile = ({
5949
6649
  name = "Chris Hemsworth",
5950
6650
  email = "chris@kepler.com",
@@ -5957,27 +6657,27 @@ var ScReferralCardMobile = ({
5957
6657
  ...props
5958
6658
  }) => {
5959
6659
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
5960
- return /* @__PURE__ */ jsxs68(
6660
+ return /* @__PURE__ */ jsxs70(
5961
6661
  "div",
5962
6662
  {
5963
6663
  className: ScReferralCardMobile_default.scReferralCardMobile + " " + className,
5964
6664
  onClick,
5965
6665
  ...props,
5966
6666
  children: [
5967
- /* @__PURE__ */ jsxs68("div", { className: ScReferralCardMobile_default.userRow, children: [
5968
- /* @__PURE__ */ jsxs68("div", { className: ScReferralCardMobile_default.profileSection, children: [
5969
- /* @__PURE__ */ jsx77("div", { className: ScReferralCardMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ jsx77("img", { src: imageUrl, alt: name, className: ScReferralCardMobile_default.image }) : /* @__PURE__ */ jsx77("div", { className: ScReferralCardMobile_default.initials, children: initials }) }),
5970
- /* @__PURE__ */ jsxs68("div", { className: ScReferralCardMobile_default.userInfo, children: [
5971
- /* @__PURE__ */ jsx77("p", { className: ScReferralCardMobile_default.userName, children: name }),
5972
- /* @__PURE__ */ jsx77("p", { className: ScReferralCardMobile_default.userEmail, children: email })
6667
+ /* @__PURE__ */ jsxs70("div", { className: ScReferralCardMobile_default.userRow, children: [
6668
+ /* @__PURE__ */ jsxs70("div", { className: ScReferralCardMobile_default.profileSection, children: [
6669
+ /* @__PURE__ */ jsx80("div", { className: ScReferralCardMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ jsx80("img", { src: imageUrl, alt: name, className: ScReferralCardMobile_default.image }) : /* @__PURE__ */ jsx80("div", { className: ScReferralCardMobile_default.initials, children: initials }) }),
6670
+ /* @__PURE__ */ jsxs70("div", { className: ScReferralCardMobile_default.userInfo, children: [
6671
+ /* @__PURE__ */ jsx80("p", { className: ScReferralCardMobile_default.userName, children: name }),
6672
+ /* @__PURE__ */ jsx80("p", { className: ScReferralCardMobile_default.userEmail, children: email })
5973
6673
  ] })
5974
6674
  ] }),
5975
- /* @__PURE__ */ jsx77("div", { className: ScReferralCardMobile_default.badge, children: /* @__PURE__ */ jsx77("p", { className: ScReferralCardMobile_default.badgeText, children: badge }) })
6675
+ /* @__PURE__ */ jsx80("div", { className: ScReferralCardMobile_default.badge, children: /* @__PURE__ */ jsx80("p", { className: ScReferralCardMobile_default.badgeText, children: badge }) })
5976
6676
  ] }),
5977
- /* @__PURE__ */ jsx77("div", { className: ScReferralCardMobile_default.divider }),
5978
- /* @__PURE__ */ jsxs68("div", { className: ScReferralCardMobile_default.detailsRow, children: [
5979
- /* @__PURE__ */ jsx77("p", { className: ScReferralCardMobile_default.dateText, children: date }),
5980
- /* @__PURE__ */ jsx77("p", { className: ScReferralCardMobile_default.creditsText, children: credits })
6677
+ /* @__PURE__ */ jsx80("div", { className: ScReferralCardMobile_default.divider }),
6678
+ /* @__PURE__ */ jsxs70("div", { className: ScReferralCardMobile_default.detailsRow, children: [
6679
+ /* @__PURE__ */ jsx80("p", { className: ScReferralCardMobile_default.dateText, children: date }),
6680
+ /* @__PURE__ */ jsx80("p", { className: ScReferralCardMobile_default.creditsText, children: credits })
5981
6681
  ] })
5982
6682
  ]
5983
6683
  }
@@ -5994,19 +6694,19 @@ var InvoiceHistoryMobile_default = {
5994
6694
  };
5995
6695
 
5996
6696
  // src/SC-InvoiceHistoryMobile/InvoiceHistoryMobile.tsx
5997
- import { jsx as jsx78, jsxs as jsxs69 } from "react/jsx-runtime";
6697
+ import { jsx as jsx81, jsxs as jsxs71 } from "react/jsx-runtime";
5998
6698
  var InvoiceHistoryMobile = ({
5999
6699
  invoiceId = "# INV-2800-2026",
6000
6700
  date = "Nov 9th, 2025",
6001
6701
  amount = "\u20B9320.89",
6002
6702
  className
6003
6703
  }) => {
6004
- return /* @__PURE__ */ jsxs69("div", { className: InvoiceHistoryMobile_default.invoiceHistoryMobile + " " + (className ?? ""), children: [
6005
- /* @__PURE__ */ jsxs69("div", { className: InvoiceHistoryMobile_default.info, children: [
6006
- /* @__PURE__ */ jsx78("div", { className: InvoiceHistoryMobile_default.invoiceId, children: invoiceId }),
6007
- /* @__PURE__ */ jsx78("div", { className: InvoiceHistoryMobile_default.date, children: date })
6704
+ return /* @__PURE__ */ jsxs71("div", { className: InvoiceHistoryMobile_default.invoiceHistoryMobile + " " + (className ?? ""), children: [
6705
+ /* @__PURE__ */ jsxs71("div", { className: InvoiceHistoryMobile_default.info, children: [
6706
+ /* @__PURE__ */ jsx81("div", { className: InvoiceHistoryMobile_default.invoiceId, children: invoiceId }),
6707
+ /* @__PURE__ */ jsx81("div", { className: InvoiceHistoryMobile_default.date, children: date })
6008
6708
  ] }),
6009
- /* @__PURE__ */ jsx78("div", { className: InvoiceHistoryMobile_default.amount, children: amount })
6709
+ /* @__PURE__ */ jsx81("div", { className: InvoiceHistoryMobile_default.amount, children: amount })
6010
6710
  ] });
6011
6711
  };
6012
6712
 
@@ -6024,7 +6724,7 @@ var UsageHistoryMobile_default = {
6024
6724
  };
6025
6725
 
6026
6726
  // src/SC-UsageHistoryMobile/UsageHistoryMobile.tsx
6027
- import { jsx as jsx79, jsxs as jsxs70 } from "react/jsx-runtime";
6727
+ import { jsx as jsx82, jsxs as jsxs72 } from "react/jsx-runtime";
6028
6728
  var UsageHistoryMobile = ({
6029
6729
  serviceName = "Artifax Generation",
6030
6730
  credits = "50",
@@ -6033,18 +6733,18 @@ var UsageHistoryMobile = ({
6033
6733
  balance = "84,902",
6034
6734
  className
6035
6735
  }) => {
6036
- return /* @__PURE__ */ jsxs70("div", { className: UsageHistoryMobile_default.usageHistoryMobile + " " + (className ?? ""), children: [
6037
- /* @__PURE__ */ jsxs70("div", { className: UsageHistoryMobile_default.row1, children: [
6038
- /* @__PURE__ */ jsx79("span", { className: UsageHistoryMobile_default.serviceName, children: serviceName }),
6039
- /* @__PURE__ */ jsx79("span", { className: UsageHistoryMobile_default.credits, children: credits })
6736
+ return /* @__PURE__ */ jsxs72("div", { className: UsageHistoryMobile_default.usageHistoryMobile + " " + (className ?? ""), children: [
6737
+ /* @__PURE__ */ jsxs72("div", { className: UsageHistoryMobile_default.row1, children: [
6738
+ /* @__PURE__ */ jsx82("span", { className: UsageHistoryMobile_default.serviceName, children: serviceName }),
6739
+ /* @__PURE__ */ jsx82("span", { className: UsageHistoryMobile_default.credits, children: credits })
6040
6740
  ] }),
6041
- /* @__PURE__ */ jsxs70("div", { className: UsageHistoryMobile_default.row2, children: [
6042
- /* @__PURE__ */ jsxs70("div", { className: UsageHistoryMobile_default.metaLeft, children: [
6043
- /* @__PURE__ */ jsx79("span", { className: UsageHistoryMobile_default.metaText, children: userName }),
6044
- /* @__PURE__ */ jsx79("div", { className: UsageHistoryMobile_default.divider }),
6045
- /* @__PURE__ */ jsx79("span", { className: UsageHistoryMobile_default.metaText, children: date })
6741
+ /* @__PURE__ */ jsxs72("div", { className: UsageHistoryMobile_default.row2, children: [
6742
+ /* @__PURE__ */ jsxs72("div", { className: UsageHistoryMobile_default.metaLeft, children: [
6743
+ /* @__PURE__ */ jsx82("span", { className: UsageHistoryMobile_default.metaText, children: userName }),
6744
+ /* @__PURE__ */ jsx82("div", { className: UsageHistoryMobile_default.divider }),
6745
+ /* @__PURE__ */ jsx82("span", { className: UsageHistoryMobile_default.metaText, children: date })
6046
6746
  ] }),
6047
- /* @__PURE__ */ jsx79("span", { className: UsageHistoryMobile_default.balance, children: balance })
6747
+ /* @__PURE__ */ jsx82("span", { className: UsageHistoryMobile_default.balance, children: balance })
6048
6748
  ] })
6049
6749
  ] });
6050
6750
  };
@@ -6068,7 +6768,7 @@ var ScWorkspaceSwitchMobileV2_default = {
6068
6768
  };
6069
6769
 
6070
6770
  // src/SC-WorkspaceSwitchMobile-V2/ScWorkspaceSwitchMobileV2.tsx
6071
- import { jsx as jsx80, jsxs as jsxs71 } from "react/jsx-runtime";
6771
+ import { jsx as jsx83, jsxs as jsxs73 } from "react/jsx-runtime";
6072
6772
  var ScWorkspaceSwitchMobileV2 = ({
6073
6773
  wsName = "Workspace name is kepler",
6074
6774
  initials = "WS",
@@ -6081,14 +6781,14 @@ var ScWorkspaceSwitchMobileV2 = ({
6081
6781
  className,
6082
6782
  ...props
6083
6783
  }) => {
6084
- return /* @__PURE__ */ jsx80(
6784
+ return /* @__PURE__ */ jsx83(
6085
6785
  "div",
6086
6786
  {
6087
6787
  className: ScWorkspaceSwitchMobileV2_default.scWorkspaceSwitchMobileV2 + " " + ScWorkspaceSwitchMobileV2_default["type-" + type] + " " + className,
6088
6788
  onClick,
6089
6789
  ...props,
6090
- children: /* @__PURE__ */ jsxs71("div", { className: ScWorkspaceSwitchMobileV2_default.workspaceInfo, children: [
6091
- /* @__PURE__ */ jsx80("div", { className: ScWorkspaceSwitchMobileV2_default.dpContainer, children: /* @__PURE__ */ jsx80(
6790
+ children: /* @__PURE__ */ jsxs73("div", { className: ScWorkspaceSwitchMobileV2_default.workspaceInfo, children: [
6791
+ /* @__PURE__ */ jsx83("div", { className: ScWorkspaceSwitchMobileV2_default.dpContainer, children: /* @__PURE__ */ jsx83(
6092
6792
  ScDp,
6093
6793
  {
6094
6794
  type: imageUrl ? "image" : "initial",
@@ -6102,14 +6802,14 @@ var ScWorkspaceSwitchMobileV2 = ({
6102
6802
  }
6103
6803
  }
6104
6804
  ) }),
6105
- /* @__PURE__ */ jsxs71("div", { className: ScWorkspaceSwitchMobileV2_default.textContainer, children: [
6106
- /* @__PURE__ */ jsx80("p", { className: ScWorkspaceSwitchMobileV2_default.wsName, children: wsName }),
6107
- /* @__PURE__ */ jsxs71("div", { className: ScWorkspaceSwitchMobileV2_default.userDetails, children: [
6108
- /* @__PURE__ */ jsx80("span", { className: ScWorkspaceSwitchMobileV2_default.roleText + (role === "Member" ? " " + ScWorkspaceSwitchMobileV2_default.roleMember : ""), children: role }),
6109
- /* @__PURE__ */ jsx80("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
6110
- /* @__PURE__ */ jsx80("span", { className: ScWorkspaceSwitchMobileV2_default.planText, children: plan }),
6111
- /* @__PURE__ */ jsx80("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
6112
- /* @__PURE__ */ jsx80("span", { className: ScWorkspaceSwitchMobileV2_default.ownerText, children: ownerId })
6805
+ /* @__PURE__ */ jsxs73("div", { className: ScWorkspaceSwitchMobileV2_default.textContainer, children: [
6806
+ /* @__PURE__ */ jsx83("p", { className: ScWorkspaceSwitchMobileV2_default.wsName, children: wsName }),
6807
+ /* @__PURE__ */ jsxs73("div", { className: ScWorkspaceSwitchMobileV2_default.userDetails, children: [
6808
+ /* @__PURE__ */ jsx83("span", { className: ScWorkspaceSwitchMobileV2_default.roleText + (role === "Member" ? " " + ScWorkspaceSwitchMobileV2_default.roleMember : ""), children: role }),
6809
+ /* @__PURE__ */ jsx83("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
6810
+ /* @__PURE__ */ jsx83("span", { className: ScWorkspaceSwitchMobileV2_default.planText, children: plan }),
6811
+ /* @__PURE__ */ jsx83("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
6812
+ /* @__PURE__ */ jsx83("span", { className: ScWorkspaceSwitchMobileV2_default.ownerText, children: ownerId })
6113
6813
  ] })
6114
6814
  ] })
6115
6815
  ] })
@@ -6136,7 +6836,7 @@ var ScImageField_default = {
6136
6836
 
6137
6837
  // src/SC-imageField/ScImageField.tsx
6138
6838
  import { SiconUpload as SiconUpload2, SiconDelete as SiconDelete2 } from "@streamoid/icons";
6139
- import { jsx as jsx81, jsxs as jsxs72 } from "react/jsx-runtime";
6839
+ import { jsx as jsx84, jsxs as jsxs74 } from "react/jsx-runtime";
6140
6840
  var ScImageField = ({
6141
6841
  label = "Label",
6142
6842
  imagePreview,
@@ -6159,8 +6859,8 @@ var ScImageField = ({
6159
6859
  }
6160
6860
  e.target.value = "";
6161
6861
  }
6162
- return /* @__PURE__ */ jsxs72("div", { className: ScImageField_default.scImageField + " " + (className ?? ""), children: [
6163
- /* @__PURE__ */ jsx81(
6862
+ return /* @__PURE__ */ jsxs74("div", { className: ScImageField_default.scImageField + " " + (className ?? ""), children: [
6863
+ /* @__PURE__ */ jsx84(
6164
6864
  "input",
6165
6865
  {
6166
6866
  ref: inputRef,
@@ -6170,9 +6870,9 @@ var ScImageField = ({
6170
6870
  onChange: handleChange
6171
6871
  }
6172
6872
  ),
6173
- /* @__PURE__ */ jsx81("div", { className: ScImageField_default.labelContainer, children: /* @__PURE__ */ jsx81("div", { className: ScImageField_default.label, children: label }) }),
6174
- hasImage ? /* @__PURE__ */ jsxs72("div", { className: ScImageField_default.previewArea, children: [
6175
- /* @__PURE__ */ jsx81(
6873
+ /* @__PURE__ */ jsx84("div", { className: ScImageField_default.labelContainer, children: /* @__PURE__ */ jsx84("div", { className: ScImageField_default.label, children: label }) }),
6874
+ hasImage ? /* @__PURE__ */ jsxs74("div", { className: ScImageField_default.previewArea, children: [
6875
+ /* @__PURE__ */ jsx84(
6176
6876
  "img",
6177
6877
  {
6178
6878
  className: ScImageField_default.previewImage,
@@ -6180,8 +6880,8 @@ var ScImageField = ({
6180
6880
  alt: "preview"
6181
6881
  }
6182
6882
  ),
6183
- /* @__PURE__ */ jsx81("span", { className: ScImageField_default.fileName, children: imageName || "image" }),
6184
- /* @__PURE__ */ jsx81(
6883
+ /* @__PURE__ */ jsx84("span", { className: ScImageField_default.fileName, children: imageName || "image" }),
6884
+ /* @__PURE__ */ jsx84(
6185
6885
  SiconDelete2,
6186
6886
  {
6187
6887
  className: ScImageField_default.removeIcon,
@@ -6192,9 +6892,9 @@ var ScImageField = ({
6192
6892
  }
6193
6893
  }
6194
6894
  )
6195
- ] }) : /* @__PURE__ */ jsxs72("div", { className: ScImageField_default.uploadArea, onClick: handleClick, children: [
6196
- /* @__PURE__ */ jsx81(SiconUpload2, { className: ScImageField_default.uploadIcon, color: "var(--alias-text-and-icons-secondary, #dadada)" }),
6197
- /* @__PURE__ */ jsx81("span", { className: ScImageField_default.uploadText, children: "Click to upload" })
6895
+ ] }) : /* @__PURE__ */ jsxs74("div", { className: ScImageField_default.uploadArea, onClick: handleClick, children: [
6896
+ /* @__PURE__ */ jsx84(SiconUpload2, { className: ScImageField_default.uploadIcon, color: "var(--alias-text-and-icons-secondary, #dadada)" }),
6897
+ /* @__PURE__ */ jsx84("span", { className: ScImageField_default.uploadText, children: "Click to upload" })
6198
6898
  ] })
6199
6899
  ] });
6200
6900
  };
@@ -6208,7 +6908,7 @@ var ScSettingsTabComp_default = {
6208
6908
  };
6209
6909
 
6210
6910
  // src/SC-settingsTabComp/ScSettingsTabComp.tsx
6211
- import { jsx as jsx82 } from "react/jsx-runtime";
6911
+ import { jsx as jsx85 } from "react/jsx-runtime";
6212
6912
  var ScSettingsTabComp = ({
6213
6913
  tabName = "Tab",
6214
6914
  active = false,
@@ -6216,12 +6916,12 @@ var ScSettingsTabComp = ({
6216
6916
  className
6217
6917
  }) => {
6218
6918
  const variantsClassName = ScSettingsTabComp_default["active-" + active];
6219
- return /* @__PURE__ */ jsx82(
6919
+ return /* @__PURE__ */ jsx85(
6220
6920
  "div",
6221
6921
  {
6222
6922
  className: ScSettingsTabComp_default.scSettingsTabComp + " " + variantsClassName + " " + (className ?? ""),
6223
6923
  onClick,
6224
- children: /* @__PURE__ */ jsx82("span", { className: ScSettingsTabComp_default.tabText, children: tabName })
6924
+ children: /* @__PURE__ */ jsx85("span", { className: ScSettingsTabComp_default.tabText, children: tabName })
6225
6925
  }
6226
6926
  );
6227
6927
  };
@@ -6241,7 +6941,7 @@ var ScCreditsUsageCardMobile_default = {
6241
6941
 
6242
6942
  // src/SC-Credits usage card-Mobile/ScCreditsUsageCardMobile.tsx
6243
6943
  import { SiconCredits as SiconCredits3 } from "@streamoid/icons";
6244
- import { jsx as jsx83, jsxs as jsxs73 } from "react/jsx-runtime";
6944
+ import { jsx as jsx86, jsxs as jsxs75 } from "react/jsx-runtime";
6245
6945
  var ScCreditsUsageCardMobile = ({
6246
6946
  usageLabel = "Credits usage",
6247
6947
  usageText = "8,450 / 30,000",
@@ -6251,23 +6951,23 @@ var ScCreditsUsageCardMobile = ({
6251
6951
  className,
6252
6952
  ...props
6253
6953
  }) => {
6254
- return /* @__PURE__ */ jsxs73("div", { className: ScCreditsUsageCardMobile_default.scCreditsUsageCardMobile + " " + (className ?? ""), ...props, children: [
6255
- /* @__PURE__ */ jsxs73("div", { className: ScCreditsUsageCardMobile_default.header, children: [
6256
- /* @__PURE__ */ jsx83(
6954
+ return /* @__PURE__ */ jsxs75("div", { className: ScCreditsUsageCardMobile_default.scCreditsUsageCardMobile + " " + (className ?? ""), ...props, children: [
6955
+ /* @__PURE__ */ jsxs75("div", { className: ScCreditsUsageCardMobile_default.header, children: [
6956
+ /* @__PURE__ */ jsx86(
6257
6957
  SiconCredits3,
6258
6958
  {
6259
6959
  className: ScCreditsUsageCardMobile_default.headerIcon,
6260
6960
  color: "var(--alias-text-and-icons-tertiary, #9e9e9e)"
6261
6961
  }
6262
6962
  ),
6263
- /* @__PURE__ */ jsx83("span", { className: ScCreditsUsageCardMobile_default.headerLabel, children: usageLabel })
6963
+ /* @__PURE__ */ jsx86("span", { className: ScCreditsUsageCardMobile_default.headerLabel, children: usageLabel })
6264
6964
  ] }),
6265
- /* @__PURE__ */ jsx83("div", { className: ScCreditsUsageCardMobile_default.divider }),
6266
- /* @__PURE__ */ jsxs73("div", { className: ScCreditsUsageCardMobile_default.usageInfo, children: [
6267
- /* @__PURE__ */ jsx83("div", { className: ScCreditsUsageCardMobile_default.usageText, children: usageText }),
6268
- /* @__PURE__ */ jsx83("div", { className: ScCreditsUsageCardMobile_default.remainingText, children: remainingText })
6965
+ /* @__PURE__ */ jsx86("div", { className: ScCreditsUsageCardMobile_default.divider }),
6966
+ /* @__PURE__ */ jsxs75("div", { className: ScCreditsUsageCardMobile_default.usageInfo, children: [
6967
+ /* @__PURE__ */ jsx86("div", { className: ScCreditsUsageCardMobile_default.usageText, children: usageText }),
6968
+ /* @__PURE__ */ jsx86("div", { className: ScCreditsUsageCardMobile_default.remainingText, children: remainingText })
6269
6969
  ] }),
6270
- /* @__PURE__ */ jsx83(
6970
+ /* @__PURE__ */ jsx86(
6271
6971
  ScButton,
6272
6972
  {
6273
6973
  text: buyButtonText,
@@ -6293,56 +6993,80 @@ var ScPlanDetailsCardMobile_default = {
6293
6993
  planName: "ScPlanDetailsCardMobile_planName",
6294
6994
  dot: "ScPlanDetailsCardMobile_dot",
6295
6995
  planPrice: "ScPlanDetailsCardMobile_planPrice",
6996
+ badgeGroup: "ScPlanDetailsCardMobile_badgeGroup",
6296
6997
  scBadgesInstance: "ScPlanDetailsCardMobile_scBadgesInstance",
6297
- scButtonInstance: "ScPlanDetailsCardMobile_scButtonInstance"
6998
+ badgeDot: "ScPlanDetailsCardMobile_badgeDot",
6999
+ badgeSubText: "ScPlanDetailsCardMobile_badgeSubText",
7000
+ scButtonInstance: "ScPlanDetailsCardMobile_scButtonInstance",
7001
+ skeletonPill: "ScPlanDetailsCardMobile_skeletonPill",
7002
+ skeletonShimmer: "ScPlanDetailsCardMobile_skeletonShimmer",
7003
+ badgeSkeleton: "ScPlanDetailsCardMobile_badgeSkeleton",
7004
+ planNameSkeleton: "ScPlanDetailsCardMobile_planNameSkeleton",
7005
+ creditsSkeleton: "ScPlanDetailsCardMobile_creditsSkeleton",
7006
+ priceSkeleton: "ScPlanDetailsCardMobile_priceSkeleton",
7007
+ buttonSkeleton: "ScPlanDetailsCardMobile_buttonSkeleton"
6298
7008
  };
6299
7009
 
6300
7010
  // src/SC-Plan details card-Mobile/ScPlanDetailsCardMobile.tsx
6301
7011
  import { SiconBilling as SiconBilling4 } from "@streamoid/icons";
6302
- import { jsx as jsx84, jsxs as jsxs74 } from "react/jsx-runtime";
7012
+ import { Fragment as Fragment24, jsx as jsx87, jsxs as jsxs76 } from "react/jsx-runtime";
6303
7013
  var ScPlanDetailsCardMobile = ({
6304
7014
  planName = "Pro",
6305
7015
  planCredits = "30,000 credits",
6306
7016
  planPrice = "\u20B90.00 / month",
6307
7017
  badgeText = "Active",
7018
+ badgeSubText,
6308
7019
  currentPlanLabel = "Current plan",
6309
7020
  upgradeButtonText = "Upgrade",
7021
+ isLoading = false,
6310
7022
  onUpgrade,
6311
7023
  className,
6312
7024
  ...props
6313
7025
  }) => {
6314
- return /* @__PURE__ */ jsxs74("div", { className: ScPlanDetailsCardMobile_default.scPlanDetailsCardMobile + " " + (className ?? ""), ...props, children: [
6315
- /* @__PURE__ */ jsxs74("div", { className: ScPlanDetailsCardMobile_default.planHeader, children: [
6316
- /* @__PURE__ */ jsxs74("div", { className: ScPlanDetailsCardMobile_default.headerLeft, children: [
6317
- /* @__PURE__ */ jsx84(
7026
+ return /* @__PURE__ */ jsxs76("div", { className: ScPlanDetailsCardMobile_default.scPlanDetailsCardMobile + " " + (className ?? ""), ...props, children: [
7027
+ /* @__PURE__ */ jsxs76("div", { className: ScPlanDetailsCardMobile_default.planHeader, children: [
7028
+ /* @__PURE__ */ jsxs76("div", { className: ScPlanDetailsCardMobile_default.headerLeft, children: [
7029
+ /* @__PURE__ */ jsx87(
6318
7030
  SiconBilling4,
6319
7031
  {
6320
7032
  className: ScPlanDetailsCardMobile_default.headerIcon,
6321
7033
  color: "var(--alias-text-and-icons-tertiary, #9e9e9e)"
6322
7034
  }
6323
7035
  ),
6324
- /* @__PURE__ */ jsx84("span", { className: ScPlanDetailsCardMobile_default.headerLabel, children: currentPlanLabel })
7036
+ /* @__PURE__ */ jsx87("span", { className: ScPlanDetailsCardMobile_default.headerLabel, children: currentPlanLabel })
6325
7037
  ] }),
6326
- /* @__PURE__ */ jsx84(
6327
- ScBadges,
6328
- {
6329
- text: badgeText,
6330
- variant: "success",
6331
- styleVariant: "opaque",
6332
- className: ScPlanDetailsCardMobile_default.scBadgesInstance
6333
- }
6334
- )
7038
+ /* @__PURE__ */ jsx87("div", { className: ScPlanDetailsCardMobile_default.badgeGroup, children: isLoading ? /* @__PURE__ */ jsx87("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.badgeSkeleton}` }) : /* @__PURE__ */ jsxs76(Fragment24, { children: [
7039
+ /* @__PURE__ */ jsx87(
7040
+ ScBadges,
7041
+ {
7042
+ text: badgeText,
7043
+ variant: "success",
7044
+ styleVariant: "opaque",
7045
+ className: ScPlanDetailsCardMobile_default.scBadgesInstance
7046
+ }
7047
+ ),
7048
+ badgeSubText && /* @__PURE__ */ jsxs76(Fragment24, { children: [
7049
+ /* @__PURE__ */ jsx87("span", { className: ScPlanDetailsCardMobile_default.badgeDot }),
7050
+ /* @__PURE__ */ jsx87("span", { className: ScPlanDetailsCardMobile_default.badgeSubText, children: badgeSubText })
7051
+ ] })
7052
+ ] }) })
6335
7053
  ] }),
6336
- /* @__PURE__ */ jsx84("div", { className: ScPlanDetailsCardMobile_default.divider }),
6337
- /* @__PURE__ */ jsxs74("div", { className: ScPlanDetailsCardMobile_default.planInfo, children: [
6338
- /* @__PURE__ */ jsxs74("div", { className: ScPlanDetailsCardMobile_default.planNameRow, children: [
6339
- /* @__PURE__ */ jsx84("span", { className: ScPlanDetailsCardMobile_default.planName, children: planName }),
6340
- /* @__PURE__ */ jsx84("div", { className: ScPlanDetailsCardMobile_default.dot }),
6341
- /* @__PURE__ */ jsx84("span", { className: ScPlanDetailsCardMobile_default.planName, children: planCredits })
7054
+ /* @__PURE__ */ jsx87("div", { className: ScPlanDetailsCardMobile_default.divider }),
7055
+ /* @__PURE__ */ jsx87("div", { className: ScPlanDetailsCardMobile_default.planInfo, children: isLoading ? /* @__PURE__ */ jsxs76(Fragment24, { children: [
7056
+ /* @__PURE__ */ jsxs76("div", { className: ScPlanDetailsCardMobile_default.planNameRow, "aria-label": "Loading plan details", children: [
7057
+ /* @__PURE__ */ jsx87("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.planNameSkeleton}` }),
7058
+ /* @__PURE__ */ jsx87("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.creditsSkeleton}` })
6342
7059
  ] }),
6343
- /* @__PURE__ */ jsx84("div", { className: ScPlanDetailsCardMobile_default.planPrice, children: planPrice })
6344
- ] }),
6345
- /* @__PURE__ */ jsx84(
7060
+ /* @__PURE__ */ jsx87("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.priceSkeleton}` })
7061
+ ] }) : /* @__PURE__ */ jsxs76(Fragment24, { children: [
7062
+ /* @__PURE__ */ jsxs76("div", { className: ScPlanDetailsCardMobile_default.planNameRow, children: [
7063
+ /* @__PURE__ */ jsx87("span", { className: ScPlanDetailsCardMobile_default.planName, children: planName }),
7064
+ /* @__PURE__ */ jsx87("div", { className: ScPlanDetailsCardMobile_default.dot }),
7065
+ /* @__PURE__ */ jsx87("span", { className: ScPlanDetailsCardMobile_default.planName, children: planCredits })
7066
+ ] }),
7067
+ /* @__PURE__ */ jsx87("div", { className: ScPlanDetailsCardMobile_default.planPrice, children: planPrice })
7068
+ ] }) }),
7069
+ isLoading ? /* @__PURE__ */ jsx87("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.buttonSkeleton}` }) : /* @__PURE__ */ jsx87(
6346
7070
  ScButton,
6347
7071
  {
6348
7072
  text: upgradeButtonText,
@@ -6359,6 +7083,8 @@ export {
6359
7083
  CreditWarningBanner,
6360
7084
  InvoiceHistoryMobile,
6361
7085
  NscWorkspaceSwitch,
7086
+ ProductCollapsedMark,
7087
+ ProductWordmark,
6362
7088
  ScAccess,
6363
7089
  ScAppCard,
6364
7090
  ScAppCardV3,
@@ -6376,6 +7102,7 @@ export {
6376
7102
  ScCalendar,
6377
7103
  ScCalendarDateComps,
6378
7104
  ScCatalogixInvite,
7105
+ ScCatalogixSidebar,
6379
7106
  ScCheckField,
6380
7107
  ScCheckbox,
6381
7108
  ScCreditsUsageCard,
@@ -6421,6 +7148,7 @@ export {
6421
7148
  ScSidebarIcons,
6422
7149
  ScSidebarMenu,
6423
7150
  ScSidebarProfile,
7151
+ ScSidebarSwitchMenu,
6424
7152
  ScSlider,
6425
7153
  ScStrLogo,
6426
7154
  ScTabComp,
@@ -6440,5 +7168,6 @@ export {
6440
7168
  ScWorkspaceSwitchMobileV2,
6441
7169
  StreamoidSidebar,
6442
7170
  StreamoidWorkspaceSwitcher,
6443
- UsageHistoryMobile
7171
+ UsageHistoryMobile,
7172
+ hasCollapsedMark
6444
7173
  };