@streamoid/ui 0.5.2 → 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
@@ -2892,6 +2892,7 @@ function StreamoidSidebar({
2892
2892
  profile,
2893
2893
  versionText = "v1.0.0",
2894
2894
  toggleIcon,
2895
+ toggleInProfile = false,
2895
2896
  hideFooter = false,
2896
2897
  preFooterContent,
2897
2898
  bodyContent,
@@ -2916,8 +2917,11 @@ function StreamoidSidebar({
2916
2917
  style: {
2917
2918
  backgroundColor: "var(--alias-surface-base)",
2918
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.
2919
2923
  padding: "var(--spacing-md)",
2920
- paddingBottom: effectiveHideFooter ? "var(--spacing-md)" : void 0,
2924
+ paddingBottom: "var(--spacing-md)",
2921
2925
  width: 256,
2922
2926
  gap: "var(--spacing-xxs)"
2923
2927
  },
@@ -3025,7 +3029,76 @@ function StreamoidSidebar({
3025
3029
  }
3026
3030
  ) : null,
3027
3031
  /* @__PURE__ */ jsx40(HDivider, {}),
3028
- profile ? /* @__PURE__ */ jsxs32(Fragment15, { 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: [
3029
3102
  /* @__PURE__ */ jsxs32(
3030
3103
  "div",
3031
3104
  {
@@ -3067,7 +3140,7 @@ function StreamoidSidebar({
3067
3140
  ),
3068
3141
  !effectiveHideFooter && /* @__PURE__ */ jsx40(Fragment15, { children: /* @__PURE__ */ jsx40(HDivider, {}) })
3069
3142
  ] }) : null,
3070
- !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(
3071
3144
  "div",
3072
3145
  {
3073
3146
  className: "flex items-center w-full",
@@ -3213,27 +3286,24 @@ function StreamoidSidebar({
3213
3286
  }
3214
3287
  ) : null,
3215
3288
  /* @__PURE__ */ jsx40(HDivider, {}),
3216
- profile ? /* @__PURE__ */ jsxs32(Fragment15, { children: [
3217
- /* @__PURE__ */ jsx40(
3218
- "div",
3219
- {
3220
- className: "flex items-center justify-center shrink-0 cursor-pointer",
3221
- style: {
3222
- padding: "var(--spacing-md) 0",
3223
- borderRadius: "var(--radius-3xl)"
3224
- },
3225
- onClick: profile.onClick,
3226
- onMouseEnter: (e) => {
3227
- e.currentTarget.style.background = "var(--alias-fill-neutral-neutral)";
3228
- },
3229
- onMouseLeave: (e) => {
3230
- e.currentTarget.style.background = "transparent";
3231
- },
3232
- children: profile.avatar
3233
- }
3234
- ),
3235
- /* @__PURE__ */ jsx40(HDivider, {})
3236
- ] }) : 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,
3237
3307
  !hideFooter && /* @__PURE__ */ jsxs32(
3238
3308
  "div",
3239
3309
  {
@@ -3256,14 +3326,14 @@ function StreamoidSidebar({
3256
3326
  children: resolveToggleIcon(toggleIcon, false)
3257
3327
  }
3258
3328
  ),
3259
- /* @__PURE__ */ jsx40(
3329
+ versionText ? /* @__PURE__ */ jsx40(
3260
3330
  "p",
3261
3331
  {
3262
3332
  className: "text-text-xs-regular text-center truncate",
3263
3333
  style: { color: "var(--alias-text---icons-muted)" },
3264
3334
  children: versionText
3265
3335
  }
3266
- )
3336
+ ) : null
3267
3337
  ]
3268
3338
  }
3269
3339
  )
@@ -3565,73 +3635,59 @@ var ScArtifaxSidebar = ({
3565
3635
  );
3566
3636
  };
3567
3637
 
3568
- // src/SC-Guide/ScGuide.module.css
3569
- var ScGuide_default = {
3570
- scGuide: "ScGuide_scGuide",
3571
- header: "ScGuide_header",
3572
- title: "ScGuide_title",
3573
- description: "ScGuide_description",
3574
- actions: "ScGuide_actions",
3575
- stepIndicator: "ScGuide_stepIndicator",
3576
- skipButton: "ScGuide_skipButton",
3577
- skipSpacer: "ScGuide_skipSpacer",
3578
- nextButton: "ScGuide_nextButton",
3579
- nextLabel: "ScGuide_nextLabel",
3580
- nextIcon: "ScGuide_nextIcon"
3581
- };
3638
+ // src/SC-Catalogix-Sidebar/ScCatalogixSidebar.tsx
3639
+ import { useState as useState7 } from "react";
3582
3640
 
3583
- // src/SC-Guide/ScGuide.tsx
3584
- import { SiconRight as SiconRight2 } from "@streamoid/icons";
3585
- import { jsx as jsx42, jsxs as jsxs34 } from "react/jsx-runtime";
3586
- var ScGuide = ({
3587
- title = "Title",
3588
- description = "Description",
3589
- skipLabel = "Skip",
3590
- nextLabel = "Next",
3591
- nextIcon,
3592
- stepLabel,
3593
- onSkip,
3594
- onNext,
3595
- hideSkip = false,
3596
- hideNext = false,
3597
- 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",
3598
3662
  className,
3599
- style
3663
+ text = "Pairtext",
3664
+ description = "Description",
3665
+ moreIcon,
3666
+ onMoreClick,
3667
+ ...props
3600
3668
  }) => {
3669
+ const variantsClassName = ScSidebarSwitchMenu_default["state-" + state] + " " + ScSidebarSwitchMenu_default["variant-" + variant];
3601
3670
  return /* @__PURE__ */ jsxs34(
3602
3671
  "div",
3603
3672
  {
3604
- className: ScGuide_default.scGuide + (className ? " " + className : ""),
3605
- style,
3673
+ className: ScSidebarSwitchMenu_default.scSidebarSwitchMenu + (className ? " " + className : "") + " " + variantsClassName,
3674
+ ...props,
3606
3675
  children: [
3607
- /* @__PURE__ */ jsxs34("div", { className: ScGuide_default.header, children: [
3608
- /* @__PURE__ */ jsx42("p", { className: ScGuide_default.title, children: title }),
3609
- /* @__PURE__ */ jsx42("p", { className: ScGuide_default.description, children: description })
3610
- ] }),
3611
- /* @__PURE__ */ jsx42(ScHDivider, {}),
3612
- /* @__PURE__ */ jsxs34("div", { className: ScGuide_default.actions, children: [
3613
- hideSkip ? /* @__PURE__ */ jsx42("span", { className: ScGuide_default.skipSpacer, "aria-hidden": "true", children: skipLabel }) : /* @__PURE__ */ jsx42(
3614
- "button",
3615
- {
3616
- type: "button",
3617
- className: ScGuide_default.skipButton,
3618
- onClick: onSkip,
3619
- disabled,
3620
- children: skipLabel
3621
- }
3622
- ),
3623
- stepLabel != null && /* @__PURE__ */ jsx42("span", { className: ScGuide_default.stepIndicator, children: stepLabel }),
3624
- !hideNext && /* @__PURE__ */ jsxs34(
3625
- "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",
3626
3684
  {
3627
- type: "button",
3628
- className: ScGuide_default.nextButton,
3629
- onClick: onNext,
3630
- disabled,
3631
- children: [
3632
- /* @__PURE__ */ jsx42("span", { className: ScGuide_default.nextLabel, children: nextLabel }),
3633
- /* @__PURE__ */ jsx42("span", { className: ScGuide_default.nextIcon, children: nextIcon ?? /* @__PURE__ */ jsx42(SiconRight2, { size: 16, strokeWidth: 1.5 }) })
3634
- ]
3685
+ className: ScSidebarSwitchMenu_default.moreIconWrapper,
3686
+ onClick: (e) => {
3687
+ e.stopPropagation();
3688
+ onMoreClick?.(e);
3689
+ },
3690
+ children: moreIcon
3635
3691
  }
3636
3692
  )
3637
3693
  ] })
@@ -3656,10 +3712,362 @@ var ScSideBarLogoUnit_default = {
3656
3712
 
3657
3713
  // src/SC-SideBarLogoUnit/ScSideBarLogoUnit.tsx
3658
3714
  import { SiconDoubleArrow } from "@streamoid/icons";
3659
- 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";
3660
4067
  var ScSideBarLogoUnit = ({
3661
4068
  state = "expanded",
3662
4069
  wordmark,
4070
+ product,
3663
4071
  onClick,
3664
4072
  onSwitchClick,
3665
4073
  switchAriaLabel = "Switch product",
@@ -3670,6 +4078,8 @@ var ScSideBarLogoUnit = ({
3670
4078
  style
3671
4079
  }) => {
3672
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);
3673
4083
  const handleClick = () => {
3674
4084
  if (!interactive) return;
3675
4085
  onClick?.();
@@ -3681,7 +4091,7 @@ var ScSideBarLogoUnit = ({
3681
4091
  interactive ? "" : ScSideBarLogoUnit_default.nonInteractive,
3682
4092
  hover === true ? ScSideBarLogoUnit_default.forceHover : ""
3683
4093
  ].filter(Boolean).join(" ");
3684
- return /* @__PURE__ */ jsx43(
4094
+ return /* @__PURE__ */ jsx44(
3685
4095
  "div",
3686
4096
  {
3687
4097
  className: ScSideBarLogoUnit_default.scSideBarLogoUnit + " " + ScSideBarLogoUnit_default.collapsed + (className ? " " + className : ""),
@@ -3697,8 +4107,8 @@ var ScSideBarLogoUnit = ({
3697
4107
  "aria-disabled": !interactive || disabled,
3698
4108
  style: hover === false ? { backgroundColor: "transparent" } : void 0,
3699
4109
  children: [
3700
- /* @__PURE__ */ jsx43("span", { className: ScSideBarLogoUnit_default.collapsedWordmarkSlot, children: wordmark }),
3701
- 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 }) }) })
3702
4112
  ]
3703
4113
  }
3704
4114
  )
@@ -3710,7 +4120,7 @@ var ScSideBarLogoUnit = ({
3710
4120
  interactive ? "" : ScSideBarLogoUnit_default.nonInteractive,
3711
4121
  hover === true ? ScSideBarLogoUnit_default.forceHover : ""
3712
4122
  ].filter(Boolean).join(" ");
3713
- return /* @__PURE__ */ jsx43(
4123
+ return /* @__PURE__ */ jsx44(
3714
4124
  "div",
3715
4125
  {
3716
4126
  className: ScSideBarLogoUnit_default.scSideBarLogoUnit + (className ? " " + className : ""),
@@ -3732,8 +4142,8 @@ var ScSideBarLogoUnit = ({
3732
4142
  backgroundColor: "transparent"
3733
4143
  } : void 0,
3734
4144
  children: [
3735
- /* @__PURE__ */ jsx43("span", { className: ScSideBarLogoUnit_default.wordmarkSlot, children: wordmark }),
3736
- 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 }) }) })
3737
4147
  ]
3738
4148
  }
3739
4149
  )
@@ -3741,6 +4151,272 @@ var ScSideBarLogoUnit = ({
3741
4151
  );
3742
4152
  };
3743
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
+
3744
4420
  // src/SC-Slider/ScSlider.module.css
3745
4421
  var ScSlider_default = {
3746
4422
  scSlider: "ScSlider_scSlider",
@@ -3751,23 +4427,23 @@ var ScSlider_default = {
3751
4427
  };
3752
4428
 
3753
4429
  // src/SC-Slider/ScSlider.tsx
3754
- import { jsx as jsx44, jsxs as jsxs36 } from "react/jsx-runtime";
4430
+ import { jsx as jsx47, jsxs as jsxs38 } from "react/jsx-runtime";
3755
4431
  var ScSlider = ({
3756
4432
  className,
3757
4433
  onValueChange,
3758
4434
  ...props
3759
4435
  }) => {
3760
- return /* @__PURE__ */ jsxs36("div", { className: ScSlider_default.scSlider + " " + className, ...props, children: [
3761
- /* @__PURE__ */ jsx44("div", { className: ScSlider_default.progressBar }),
3762
- /* @__PURE__ */ jsx44("div", { className: ScSlider_default.progressDot }),
3763
- /* @__PURE__ */ jsx44("div", { className: ScSlider_default.progressBar2 }),
3764
- /* @__PURE__ */ jsx44("div", { className: ScSlider_default.progressDot2 }),
3765
- /* @__PURE__ */ jsx44("div", { className: ScSlider_default.progressBar2 }),
3766
- /* @__PURE__ */ jsx44("div", { className: ScSlider_default.progressDot2 }),
3767
- /* @__PURE__ */ jsx44("div", { className: ScSlider_default.progressBar2 }),
3768
- /* @__PURE__ */ jsx44("div", { className: ScSlider_default.progressDot2 }),
3769
- /* @__PURE__ */ jsx44("div", { className: ScSlider_default.progressBar2 }),
3770
- /* @__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 })
3771
4447
  ] });
3772
4448
  };
3773
4449
 
@@ -3779,7 +4455,7 @@ import {
3779
4455
  SiconCrown,
3780
4456
  SiconSwitch
3781
4457
  } from "@streamoid/icons";
3782
- import { jsx as jsx45, jsxs as jsxs37 } from "react/jsx-runtime";
4458
+ import { jsx as jsx48, jsxs as jsxs39 } from "react/jsx-runtime";
3783
4459
  var PRIMARY_ICON = "var(--alias-text---icons-primary)";
3784
4460
  function deriveInitials(name) {
3785
4461
  return name.split(/\s+/).slice(0, 2).map((w) => w[0]?.toUpperCase() ?? "").join("") || "WS";
@@ -3797,7 +4473,7 @@ function WorkspaceRow({
3797
4473
  switchWorkspaceText,
3798
4474
  onSwitch
3799
4475
  }) {
3800
- return /* @__PURE__ */ jsxs37(
4476
+ return /* @__PURE__ */ jsxs39(
3801
4477
  "div",
3802
4478
  {
3803
4479
  className: "relative shrink-0 w-full",
@@ -3807,7 +4483,7 @@ function WorkspaceRow({
3807
4483
  backdropFilter: "blur(4px)"
3808
4484
  },
3809
4485
  children: [
3810
- /* @__PURE__ */ jsx45(
4486
+ /* @__PURE__ */ jsx48(
3811
4487
  "div",
3812
4488
  {
3813
4489
  "aria-hidden": "true",
@@ -3818,7 +4494,7 @@ function WorkspaceRow({
3818
4494
  }
3819
4495
  }
3820
4496
  ),
3821
- /* @__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(
3822
4498
  "div",
3823
4499
  {
3824
4500
  className: "flex items-center w-full",
@@ -3827,20 +4503,20 @@ function WorkspaceRow({
3827
4503
  padding: "var(--spacing-6xl)"
3828
4504
  },
3829
4505
  children: [
3830
- /* @__PURE__ */ jsxs37(
4506
+ /* @__PURE__ */ jsxs39(
3831
4507
  "div",
3832
4508
  {
3833
4509
  className: "flex flex-1 items-center min-w-0",
3834
4510
  style: { gap: "var(--spacing-xl)" },
3835
4511
  children: [
3836
- /* @__PURE__ */ jsx45(
4512
+ /* @__PURE__ */ jsx48(
3837
4513
  ScIntialProfileCover,
3838
4514
  {
3839
4515
  intial: workspace.initials || deriveInitials(workspace.name),
3840
4516
  className: "shrink-0"
3841
4517
  }
3842
4518
  ),
3843
- /* @__PURE__ */ jsx45(
4519
+ /* @__PURE__ */ jsx48(
3844
4520
  "p",
3845
4521
  {
3846
4522
  className: "flex-1 min-w-0 overflow-hidden text-ellipsis",
@@ -3860,7 +4536,7 @@ function WorkspaceRow({
3860
4536
  ]
3861
4537
  }
3862
4538
  ),
3863
- /* @__PURE__ */ jsxs37(
4539
+ /* @__PURE__ */ jsxs39(
3864
4540
  "div",
3865
4541
  {
3866
4542
  className: "flex items-center justify-center shrink-0",
@@ -3869,7 +4545,7 @@ function WorkspaceRow({
3869
4545
  padding: "0 var(--spacing-3xl)"
3870
4546
  },
3871
4547
  children: [
3872
- /* @__PURE__ */ jsx45(
4548
+ /* @__PURE__ */ jsx48(
3873
4549
  ScRole,
3874
4550
  {
3875
4551
  type: normalizeRole(workspace.role),
@@ -3877,23 +4553,23 @@ function WorkspaceRow({
3877
4553
  style: { width: 80 }
3878
4554
  }
3879
4555
  ),
3880
- /* @__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(
3881
4557
  "div",
3882
4558
  {
3883
4559
  className: "flex items-center shrink-0",
3884
4560
  style: { gap: "var(--spacing-3xl)" },
3885
4561
  children: [
3886
- /* @__PURE__ */ jsx45("div", { style: { width: 120, flexShrink: 0 }, children: /* @__PURE__ */ jsx45(
4562
+ /* @__PURE__ */ jsx48("div", { style: { width: 120, flexShrink: 0 }, children: /* @__PURE__ */ jsx48(
3887
4563
  ScPairtext,
3888
4564
  {
3889
- 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 }),
3890
4566
  content: workspace.userCount || "\u2013",
3891
4567
  iconPosition: "left",
3892
4568
  type: "icon"
3893
4569
  }
3894
4570
  ) }),
3895
- /* @__PURE__ */ jsx45(ScVDivider, {}),
3896
- /* @__PURE__ */ jsxs37(
4571
+ /* @__PURE__ */ jsx48(ScVDivider, {}),
4572
+ /* @__PURE__ */ jsxs39(
3897
4573
  "div",
3898
4574
  {
3899
4575
  className: "flex items-center",
@@ -3903,14 +4579,14 @@ function WorkspaceRow({
3903
4579
  gap: "var(--spacing-md)"
3904
4580
  },
3905
4581
  children: [
3906
- /* @__PURE__ */ jsx45(
4582
+ /* @__PURE__ */ jsx48(
3907
4583
  SiconCrown,
3908
4584
  {
3909
4585
  className: "w-6 h-6 shrink-0",
3910
4586
  color: PRIMARY_ICON
3911
4587
  }
3912
4588
  ),
3913
- /* @__PURE__ */ jsx45(
4589
+ /* @__PURE__ */ jsx48(
3914
4590
  "span",
3915
4591
  {
3916
4592
  className: "truncate",
@@ -3932,7 +4608,7 @@ function WorkspaceRow({
3932
4608
  ]
3933
4609
  }
3934
4610
  ),
3935
- workspace.isCurrent ? /* @__PURE__ */ jsx45(
4611
+ workspace.isCurrent ? /* @__PURE__ */ jsx48(
3936
4612
  ScButton,
3937
4613
  {
3938
4614
  text: currentWorkspaceText,
@@ -3941,14 +4617,14 @@ function WorkspaceRow({
3941
4617
  size: "lg",
3942
4618
  style: { width: 200, flexShrink: 0, opacity: 0.5 }
3943
4619
  }
3944
- ) : /* @__PURE__ */ jsx45(
4620
+ ) : /* @__PURE__ */ jsx48(
3945
4621
  ScButton,
3946
4622
  {
3947
4623
  text: switchWorkspaceText,
3948
4624
  variant: "secondary",
3949
4625
  size: "lg",
3950
4626
  styleVariant: "icon-left",
3951
- 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 }),
3952
4628
  style: { width: 200, flexShrink: 0 },
3953
4629
  onClick: onSwitch
3954
4630
  }
@@ -3982,7 +4658,7 @@ function StreamoidWorkspaceSwitcher({
3982
4658
  return () => document.removeEventListener("keydown", handleKeyDown);
3983
4659
  }, [open, onClose]);
3984
4660
  if (!open) return null;
3985
- return /* @__PURE__ */ jsx45(
4661
+ return /* @__PURE__ */ jsx48(
3986
4662
  "div",
3987
4663
  {
3988
4664
  className: "fixed inset-0 z-50 flex items-center justify-center",
@@ -3990,7 +4666,7 @@ function StreamoidWorkspaceSwitcher({
3990
4666
  onClick: (e) => {
3991
4667
  if (e.target === e.currentTarget) onClose();
3992
4668
  },
3993
- children: /* @__PURE__ */ jsxs37(
4669
+ children: /* @__PURE__ */ jsxs39(
3994
4670
  "div",
3995
4671
  {
3996
4672
  ref: modalRef,
@@ -4003,14 +4679,14 @@ function StreamoidWorkspaceSwitcher({
4003
4679
  height: "60vh"
4004
4680
  },
4005
4681
  children: [
4006
- /* @__PURE__ */ jsx45(
4682
+ /* @__PURE__ */ jsx48(
4007
4683
  "div",
4008
4684
  {
4009
4685
  className: "shrink-0 w-full relative",
4010
4686
  style: {
4011
4687
  borderBottom: "1px solid var(--alias-border-divider)"
4012
4688
  },
4013
- 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(
4014
4690
  "div",
4015
4691
  {
4016
4692
  className: "flex items-center w-full",
@@ -4019,7 +4695,7 @@ function StreamoidWorkspaceSwitcher({
4019
4695
  padding: "var(--spacing-3xl) var(--spacing-6xl)"
4020
4696
  },
4021
4697
  children: [
4022
- /* @__PURE__ */ jsx45(
4698
+ /* @__PURE__ */ jsx48(
4023
4699
  "p",
4024
4700
  {
4025
4701
  className: "flex-1 min-w-0 overflow-hidden text-ellipsis whitespace-nowrap",
@@ -4033,20 +4709,20 @@ function StreamoidWorkspaceSwitcher({
4033
4709
  children: title
4034
4710
  }
4035
4711
  ),
4036
- /* @__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 }) })
4037
4713
  ]
4038
4714
  }
4039
4715
  ) })
4040
4716
  }
4041
4717
  ),
4042
- /* @__PURE__ */ jsx45(
4718
+ /* @__PURE__ */ jsx48(
4043
4719
  "div",
4044
4720
  {
4045
4721
  className: "flex-1 min-h-0 w-full overflow-y-auto",
4046
4722
  style: {
4047
4723
  borderRadius: "0 0 var(--radius-4xl) var(--radius-4xl)"
4048
4724
  },
4049
- children: /* @__PURE__ */ jsxs37(
4725
+ children: /* @__PURE__ */ jsxs39(
4050
4726
  "div",
4051
4727
  {
4052
4728
  className: "flex flex-col items-start",
@@ -4055,7 +4731,7 @@ function StreamoidWorkspaceSwitcher({
4055
4731
  gap: "var(--spacing-3xl)"
4056
4732
  },
4057
4733
  children: [
4058
- loading && workspaces.length === 0 ? /* @__PURE__ */ jsx45(
4734
+ loading && workspaces.length === 0 ? /* @__PURE__ */ jsx48(
4059
4735
  "p",
4060
4736
  {
4061
4737
  style: {
@@ -4066,7 +4742,7 @@ function StreamoidWorkspaceSwitcher({
4066
4742
  children: loadingText
4067
4743
  }
4068
4744
  ) : null,
4069
- workspaces.map((ws) => /* @__PURE__ */ jsx45(
4745
+ workspaces.map((ws) => /* @__PURE__ */ jsx48(
4070
4746
  WorkspaceRow,
4071
4747
  {
4072
4748
  workspace: ws,
@@ -4105,23 +4781,23 @@ var ScAppListingCard_default = {
4105
4781
 
4106
4782
  // src/SC-app listing card/ScAppListingCard.tsx
4107
4783
  import { SiconCart } from "@streamoid/icons";
4108
- import { jsx as jsx46, jsxs as jsxs38 } from "react/jsx-runtime";
4784
+ import { jsx as jsx49, jsxs as jsxs40 } from "react/jsx-runtime";
4109
4785
  var ScAppListingCard = ({
4110
- icon = /* @__PURE__ */ jsx46(SiconCart, { className: ScAppListingCard_default.siconCartInstance }),
4786
+ icon = /* @__PURE__ */ jsx49(SiconCart, { className: ScAppListingCard_default.siconCartInstance }),
4111
4787
  title = "Stores",
4112
4788
  descrp = "Centralized product and asset management for every storefront",
4113
4789
  className,
4114
4790
  ...props
4115
4791
  }) => {
4116
- return /* @__PURE__ */ jsxs38("div", { className: ScAppListingCard_default.scAppListingCard + " " + className, ...props, children: [
4117
- /* @__PURE__ */ jsxs38("div", { className: ScAppListingCard_default.header, children: [
4118
- /* @__PURE__ */ jsx46("div", { className: ScAppListingCard_default.iconContainer, children: icon }),
4119
- /* @__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: [
4120
4796
  title,
4121
4797
  " "
4122
4798
  ] })
4123
4799
  ] }),
4124
- /* @__PURE__ */ jsxs38("div", { className: ScAppListingCard_default.description, children: [
4800
+ /* @__PURE__ */ jsxs40("div", { className: ScAppListingCard_default.description, children: [
4125
4801
  descrp,
4126
4802
  " "
4127
4803
  ] })
@@ -4139,22 +4815,22 @@ var ScAppCard_default = {
4139
4815
 
4140
4816
  // src/SC-appCard/ScAppCard.tsx
4141
4817
  import { SiconArtifacts as SiconArtifacts2 } from "@streamoid/icons";
4142
- import { jsx as jsx47, jsxs as jsxs39 } from "react/jsx-runtime";
4818
+ import { jsx as jsx50, jsxs as jsxs41 } from "react/jsx-runtime";
4143
4819
  var ScAppCard = ({
4144
- appIcon = /* @__PURE__ */ jsx47(SiconArtifacts2, { className: ScAppCard_default.siconArtifactsInstance }),
4820
+ appIcon = /* @__PURE__ */ jsx50(SiconArtifacts2, { className: ScAppCard_default.siconArtifactsInstance }),
4145
4821
  appName = "Artifax",
4146
4822
  appDescription = "Info about artifax",
4147
4823
  className,
4148
4824
  ...props
4149
4825
  }) => {
4150
- return /* @__PURE__ */ jsxs39("div", { className: ScAppCard_default.scAppCard + " " + className, ...props, children: [
4151
- /* @__PURE__ */ jsx47("div", { className: ScAppCard_default.iconContainer, children: appIcon }),
4152
- /* @__PURE__ */ jsxs39("div", { className: ScAppCard_default.textContainer, children: [
4153
- /* @__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: [
4154
4830
  appName,
4155
4831
  " "
4156
4832
  ] }),
4157
- /* @__PURE__ */ jsxs39("div", { className: ScAppCard_default.subtitle, children: [
4833
+ /* @__PURE__ */ jsxs41("div", { className: ScAppCard_default.subtitle, children: [
4158
4834
  appDescription,
4159
4835
  " "
4160
4836
  ] })
@@ -4181,9 +4857,9 @@ var ScAppCardV3_default = {
4181
4857
 
4182
4858
  // src/SC-AppCardV3/ScAppCardV3.tsx
4183
4859
  import { SiconCart as SiconCart2 } from "@streamoid/icons";
4184
- import { jsx as jsx48, jsxs as jsxs40 } from "react/jsx-runtime";
4860
+ import { jsx as jsx51, jsxs as jsxs42 } from "react/jsx-runtime";
4185
4861
  var ScAppCardV3 = ({
4186
- appIcon = /* @__PURE__ */ jsx48(SiconCart2, { className: ScAppCardV3_default.iconPillIcon }),
4862
+ appIcon = /* @__PURE__ */ jsx51(SiconCart2, { className: ScAppCardV3_default.iconPillIcon }),
4187
4863
  appName = "Stores",
4188
4864
  description = "Centralized product and asset management for every storefront",
4189
4865
  active = false,
@@ -4195,25 +4871,25 @@ var ScAppCardV3 = ({
4195
4871
  ScAppCardV3_default.scAppCardV3,
4196
4872
  active ? ScAppCardV3_default.scAppCardV3Active : ""
4197
4873
  ].filter(Boolean).join(" ");
4198
- return /* @__PURE__ */ jsx48(
4874
+ return /* @__PURE__ */ jsx51(
4199
4875
  "div",
4200
4876
  {
4201
4877
  className: [ScAppCardV3_default.cardBorder, className || ""].filter(Boolean).join(" "),
4202
4878
  style,
4203
4879
  ...props,
4204
- children: /* @__PURE__ */ jsxs40("div", { className: cardClass, children: [
4205
- /* @__PURE__ */ jsx48("div", { className: ScAppCardV3_default.glow }),
4206
- /* @__PURE__ */ jsx48("div", { className: ScAppCardV3_default.glowHover }),
4207
- /* @__PURE__ */ jsxs40("div", { className: ScAppCardV3_default.header, children: [
4208
- /* @__PURE__ */ jsxs40("div", { className: ScAppCardV3_default.iconRow, children: [
4209
- /* @__PURE__ */ jsx48("p", { className: ScAppCardV3_default.appName, children: appName }),
4210
- /* @__PURE__ */ jsxs40("div", { className: ScAppCardV3_default.iconPill, children: [
4211
- /* @__PURE__ */ jsx48("div", { className: ScAppCardV3_default.iconPillBg }),
4212
- /* @__PURE__ */ jsx48("div", { className: ScAppCardV3_default.iconPillIcon, children: appIcon }),
4213
- /* @__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 })
4214
4890
  ] })
4215
4891
  ] }),
4216
- /* @__PURE__ */ jsx48("p", { className: ScAppCardV3_default.description, children: description })
4892
+ /* @__PURE__ */ jsx51("p", { className: ScAppCardV3_default.description, children: description })
4217
4893
  ] })
4218
4894
  ] })
4219
4895
  }
@@ -4232,7 +4908,7 @@ var ScBriefCard_default = {
4232
4908
  };
4233
4909
 
4234
4910
  // src/SC-BriefCard/ScBriefCard.tsx
4235
- import { jsx as jsx49, jsxs as jsxs41 } from "react/jsx-runtime";
4911
+ import { jsx as jsx52, jsxs as jsxs43 } from "react/jsx-runtime";
4236
4912
  var ScBriefCard = ({
4237
4913
  description = "Centralized product and asset management for every storefront",
4238
4914
  active = false,
@@ -4244,16 +4920,16 @@ var ScBriefCard = ({
4244
4920
  ScBriefCard_default.scBriefCard,
4245
4921
  active ? ScBriefCard_default.scBriefCardActive : ""
4246
4922
  ].filter(Boolean).join(" ");
4247
- return /* @__PURE__ */ jsx49(
4923
+ return /* @__PURE__ */ jsx52(
4248
4924
  "div",
4249
4925
  {
4250
4926
  className: [ScBriefCard_default.cardBorder, className || ""].filter(Boolean).join(" "),
4251
4927
  style,
4252
4928
  ...props,
4253
- children: /* @__PURE__ */ jsxs41("div", { className: cardClass, children: [
4254
- /* @__PURE__ */ jsx49("div", { className: ScBriefCard_default.glow }),
4255
- /* @__PURE__ */ jsx49("div", { className: ScBriefCard_default.glowHover }),
4256
- /* @__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 }) })
4257
4933
  ] })
4258
4934
  }
4259
4935
  );
@@ -4290,7 +4966,7 @@ var ScToggleSwitch_default = {
4290
4966
  };
4291
4967
 
4292
4968
  // src/SC-toggleSwitch/ScToggleSwitch.tsx
4293
- import { jsx as jsx50, jsxs as jsxs42 } from "react/jsx-runtime";
4969
+ import { jsx as jsx53, jsxs as jsxs44 } from "react/jsx-runtime";
4294
4970
  var ScToggleSwitch = ({
4295
4971
  active = "false",
4296
4972
  checked,
@@ -4300,7 +4976,7 @@ var ScToggleSwitch = ({
4300
4976
  }) => {
4301
4977
  const isActive = checked !== void 0 ? checked : active === "true";
4302
4978
  const variantsClassName = ScToggleSwitch_default["active-" + (isActive ? "true" : "false")];
4303
- return /* @__PURE__ */ jsx50(
4979
+ return /* @__PURE__ */ jsx53(
4304
4980
  "div",
4305
4981
  {
4306
4982
  className: ScToggleSwitch_default.scToggleSwitch + " " + className + " " + variantsClassName,
@@ -4310,20 +4986,20 @@ var ScToggleSwitch = ({
4310
4986
  props.onClick?.(e);
4311
4987
  },
4312
4988
  style: { cursor: "pointer", ...props.style },
4313
- children: isActive ? /* @__PURE__ */ jsxs42("svg", { width: "40", height: "24", viewBox: "0 0 40 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
4314
- /* @__PURE__ */ jsx50("rect", { width: "40", height: "24", rx: "12", fill: "var(--alias-fill-base-base, #f5f5f5)" }),
4315
- /* @__PURE__ */ jsx50("circle", { cx: "28", cy: "12", r: "10", fill: "var(--alias-text---icons-inverse, #101010)" })
4316
- ] }) : /* @__PURE__ */ jsxs42("svg", { width: "41", height: "25", viewBox: "0 0 41 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
4317
- /* @__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)" }),
4318
- /* @__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)" }),
4319
- /* @__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)" })
4320
4996
  ] })
4321
4997
  }
4322
4998
  );
4323
4999
  };
4324
5000
 
4325
5001
  // src/SC-artifaxInvite/ScArtifaxInvite.tsx
4326
- import { jsx as jsx51, jsxs as jsxs43 } from "react/jsx-runtime";
5002
+ import { jsx as jsx54, jsxs as jsxs45 } from "react/jsx-runtime";
4327
5003
  var ScArtifaxInvite = ({
4328
5004
  active = "true",
4329
5005
  appName = "Artifax",
@@ -4336,22 +5012,22 @@ var ScArtifaxInvite = ({
4336
5012
  }) => {
4337
5013
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
4338
5014
  const variantsClassName = ScArtifaxInvite_default["active-" + (isEnabled ? "true" : "false")];
4339
- return /* @__PURE__ */ jsxs43(
5015
+ return /* @__PURE__ */ jsxs45(
4340
5016
  "div",
4341
5017
  {
4342
5018
  className: ScArtifaxInvite_default.scArtifaxInvite + " " + className + " " + variantsClassName,
4343
5019
  ...props,
4344
5020
  children: [
4345
- /* @__PURE__ */ jsx51(
5021
+ /* @__PURE__ */ jsx54(
4346
5022
  ScAppCard,
4347
5023
  {
4348
- appIcon: appIcon || /* @__PURE__ */ jsx51(SiconArtifacts3, { className: ScArtifaxInvite_default.siconArtifactsInstance }),
5024
+ appIcon: appIcon || /* @__PURE__ */ jsx54(SiconArtifacts3, { className: ScArtifaxInvite_default.siconArtifactsInstance }),
4349
5025
  appName,
4350
5026
  appDescription,
4351
5027
  className: ScArtifaxInvite_default.scAppCardInstance
4352
5028
  }
4353
5029
  ),
4354
- /* @__PURE__ */ jsx51(
5030
+ /* @__PURE__ */ jsx54(
4355
5031
  ScToggleSwitch,
4356
5032
  {
4357
5033
  checked: isEnabled,
@@ -4377,12 +5053,12 @@ var ScPhtogenixInvite_default = {
4377
5053
 
4378
5054
  // src/SC-phtogenixInvite/ScPhtogenixInvite.tsx
4379
5055
  import { SiconArtifacts as SiconArtifacts4 } from "@streamoid/icons";
4380
- import { jsx as jsx52, jsxs as jsxs44 } from "react/jsx-runtime";
5056
+ import { jsx as jsx55, jsxs as jsxs46 } from "react/jsx-runtime";
4381
5057
  var ScPhtogenixInvite = ({
4382
5058
  active = "true",
4383
5059
  scAppCardappDescription = "Info about photogenix",
4384
5060
  scAppCardappName = "Photogenix",
4385
- scAppCardappIcon = /* @__PURE__ */ jsx52(SiconArtifacts4, { className: ScPhtogenixInvite_default.siconArtifactsInstance }),
5061
+ scAppCardappIcon = /* @__PURE__ */ jsx55(SiconArtifacts4, { className: ScPhtogenixInvite_default.siconArtifactsInstance }),
4386
5062
  className,
4387
5063
  enabled,
4388
5064
  onToggle,
@@ -4390,12 +5066,12 @@ var ScPhtogenixInvite = ({
4390
5066
  }) => {
4391
5067
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
4392
5068
  const variantsClassName = ScPhtogenixInvite_default["active-" + (isEnabled ? "true" : "false")];
4393
- return /* @__PURE__ */ jsxs44(
5069
+ return /* @__PURE__ */ jsxs46(
4394
5070
  "div",
4395
5071
  {
4396
5072
  className: ScPhtogenixInvite_default.scPhtogenixInvite + " " + className + " " + variantsClassName,
4397
5073
  children: [
4398
- /* @__PURE__ */ jsx52(
5074
+ /* @__PURE__ */ jsx55(
4399
5075
  ScAppCard,
4400
5076
  {
4401
5077
  appIcon: scAppCardappIcon,
@@ -4404,7 +5080,7 @@ var ScPhtogenixInvite = ({
4404
5080
  className: ScPhtogenixInvite_default.scAppCardInstance
4405
5081
  }
4406
5082
  ),
4407
- /* @__PURE__ */ jsx52(
5083
+ /* @__PURE__ */ jsx55(
4408
5084
  ScToggleSwitch,
4409
5085
  {
4410
5086
  checked: isEnabled,
@@ -4454,10 +5130,10 @@ var ScOnlyField_default = {
4454
5130
 
4455
5131
  // src/SC-onlyField/ScOnlyField.tsx
4456
5132
  import { SiconBolt as SiconBolt4 } from "@streamoid/icons";
4457
- import { jsx as jsx53, jsxs as jsxs45 } from "react/jsx-runtime";
5133
+ import { jsx as jsx56, jsxs as jsxs47 } from "react/jsx-runtime";
4458
5134
  var ScOnlyField = ({
4459
- tfRightIcon = /* @__PURE__ */ jsx53(SiconBolt4, { className: ScOnlyField_default.siconBoltInstance }),
4460
- 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 }),
4461
5137
  state = "default",
4462
5138
  tfGroup = "icon-right",
4463
5139
  labelGroup = "none",
@@ -4470,14 +5146,14 @@ var ScOnlyField = ({
4470
5146
  ...props
4471
5147
  }) => {
4472
5148
  const variantsClassName = ScOnlyField_default["state-" + state] + " " + ScOnlyField_default["tf-group-" + tfGroup] + " " + ScOnlyField_default["label-group-" + labelGroup] + (size !== "default" ? " " + ScOnlyField_default["size-" + size] : "");
4473
- return /* @__PURE__ */ jsx53(
5149
+ return /* @__PURE__ */ jsx56(
4474
5150
  "div",
4475
5151
  {
4476
5152
  className: ScOnlyField_default.scOnlyField + " " + className + " " + variantsClassName,
4477
5153
  ...props,
4478
- children: /* @__PURE__ */ jsxs45("div", { className: ScOnlyField_default.inputContainer, children: [
4479
- (tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ jsx53("div", { className: ScOnlyField_default.iconWrapper, children: tfLeftIcon }),
4480
- /* @__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(
4481
5157
  "input",
4482
5158
  {
4483
5159
  className: ScOnlyField_default.inputText,
@@ -4497,7 +5173,7 @@ var ScOnlyField = ({
4497
5173
  ...inputProps
4498
5174
  }
4499
5175
  ),
4500
- (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 })
4501
5177
  ] })
4502
5178
  }
4503
5179
  );
@@ -4505,7 +5181,7 @@ var ScOnlyField = ({
4505
5181
 
4506
5182
  // src/SC-catalogixInvite/ScCatalogixInvite.tsx
4507
5183
  import { SiconHome as SiconHome10 } from "@streamoid/icons";
4508
- import { Fragment as Fragment17, 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";
4509
5185
  var ScCatalogixInvite = ({
4510
5186
  active = "false",
4511
5187
  appName = "Catalogix",
@@ -4527,23 +5203,23 @@ var ScCatalogixInvite = ({
4527
5203
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
4528
5204
  const variantsClassName = ScCatalogixInvite_default["active-" + (isEnabled ? "true" : "false")];
4529
5205
  const displayCount = selectedStores ? `${selectedStores.length} Selected` : selectedCount;
4530
- return /* @__PURE__ */ jsxs46(
5206
+ return /* @__PURE__ */ jsxs48(
4531
5207
  "div",
4532
5208
  {
4533
5209
  className: ScCatalogixInvite_default.scCatalogixInvite + " " + className + " " + variantsClassName,
4534
5210
  ...props,
4535
5211
  children: [
4536
- /* @__PURE__ */ jsxs46("div", { className: ScCatalogixInvite_default.appHeader, children: [
4537
- /* @__PURE__ */ jsx54(
5212
+ /* @__PURE__ */ jsxs48("div", { className: ScCatalogixInvite_default.appHeader, children: [
5213
+ /* @__PURE__ */ jsx57(
4538
5214
  ScAppCard,
4539
5215
  {
4540
- appIcon: appIcon || /* @__PURE__ */ jsx54(SiconArtifacts5, { className: ScCatalogixInvite_default.siconArtifactsInstance }),
5216
+ appIcon: appIcon || /* @__PURE__ */ jsx57(SiconArtifacts5, { className: ScCatalogixInvite_default.siconArtifactsInstance }),
4541
5217
  appDescription,
4542
5218
  appName,
4543
5219
  className: ScCatalogixInvite_default.scAppCardInstance
4544
5220
  }
4545
5221
  ),
4546
- /* @__PURE__ */ jsx54(
5222
+ /* @__PURE__ */ jsx57(
4547
5223
  ScToggleSwitch,
4548
5224
  {
4549
5225
  checked: isEnabled,
@@ -4552,29 +5228,29 @@ var ScCatalogixInvite = ({
4552
5228
  }
4553
5229
  )
4554
5230
  ] }),
4555
- isEnabled && /* @__PURE__ */ jsx54(Fragment17, { children: /* @__PURE__ */ jsxs46("div", { className: ScCatalogixInvite_default.storeAccessContainer, children: [
4556
- /* @__PURE__ */ jsxs46("div", { className: ScCatalogixInvite_default.storeAccessHeader, children: [
4557
- /* @__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: [
4558
5234
  storeAccessTitle,
4559
5235
  " "
4560
5236
  ] }),
4561
- /* @__PURE__ */ jsxs46("div", { className: ScCatalogixInvite_default.selectedCount, children: [
5237
+ /* @__PURE__ */ jsxs48("div", { className: ScCatalogixInvite_default.selectedCount, children: [
4562
5238
  displayCount,
4563
5239
  " "
4564
5240
  ] })
4565
5241
  ] }),
4566
- /* @__PURE__ */ jsx54(
5242
+ /* @__PURE__ */ jsx57(
4567
5243
  ScOnlyField,
4568
5244
  {
4569
- tfLeftIcon: /* @__PURE__ */ jsx54(SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
4570
- 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 }),
4571
5247
  placeholderFilled: searchPlaceholder,
4572
5248
  value: searchValue,
4573
5249
  onInputChange: onSearchChange,
4574
5250
  className: ScCatalogixInvite_default.scOnlyFieldInstance
4575
5251
  }
4576
5252
  ),
4577
- /* @__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(
4578
5254
  ScPairtext,
4579
5255
  {
4580
5256
  content: store.name,
@@ -4585,53 +5261,53 @@ var ScCatalogixInvite = ({
4585
5261
  className: ScCatalogixInvite_default.scPairtextInstance
4586
5262
  },
4587
5263
  store.id
4588
- )) : /* @__PURE__ */ jsx54("div", { style: {
5264
+ )) : /* @__PURE__ */ jsx57("div", { style: {
4589
5265
  padding: "var(--spacing-3xl, 16px)",
4590
5266
  color: "var(--alias-text-and-icons-muted, #7a7a7a)",
4591
5267
  fontFamily: "var(--font-family-font-family-body, Inter, sans-serif)",
4592
5268
  fontSize: "var(--font-size-font-size-sm, 14px)",
4593
5269
  lineHeight: "var(--line-height-line-height-sm, 20px)"
4594
- }, children: "No stores found" }) : /* @__PURE__ */ jsxs46(Fragment17, { children: [
4595
- /* @__PURE__ */ jsx54(
5270
+ }, children: "No stores found" }) : /* @__PURE__ */ jsxs48(Fragment18, { children: [
5271
+ /* @__PURE__ */ jsx57(
4596
5272
  ScPairtext,
4597
5273
  {
4598
- icon: /* @__PURE__ */ jsx54(SiconHome10, { className: ScCatalogixInvite_default.siconHomeInstance }),
5274
+ icon: /* @__PURE__ */ jsx57(SiconHome10, { className: ScCatalogixInvite_default.siconHomeInstance }),
4599
5275
  iconPosition: "right",
4600
5276
  type: "checkbox",
4601
5277
  className: ScCatalogixInvite_default.scPairtextInstance
4602
5278
  }
4603
5279
  ),
4604
- /* @__PURE__ */ jsx54(
5280
+ /* @__PURE__ */ jsx57(
4605
5281
  ScPairtext,
4606
5282
  {
4607
- icon: /* @__PURE__ */ jsx54(SiconHome10, { className: ScCatalogixInvite_default.siconHomeInstance }),
5283
+ icon: /* @__PURE__ */ jsx57(SiconHome10, { className: ScCatalogixInvite_default.siconHomeInstance }),
4608
5284
  iconPosition: "right",
4609
5285
  type: "checkbox",
4610
5286
  className: ScCatalogixInvite_default.scPairtextInstance
4611
5287
  }
4612
5288
  ),
4613
- /* @__PURE__ */ jsx54(
5289
+ /* @__PURE__ */ jsx57(
4614
5290
  ScPairtext,
4615
5291
  {
4616
- icon: /* @__PURE__ */ jsx54(SiconHome10, { className: ScCatalogixInvite_default.siconHomeInstance }),
5292
+ icon: /* @__PURE__ */ jsx57(SiconHome10, { className: ScCatalogixInvite_default.siconHomeInstance }),
4617
5293
  iconPosition: "right",
4618
5294
  type: "checkbox",
4619
5295
  className: ScCatalogixInvite_default.scPairtextInstance
4620
5296
  }
4621
5297
  ),
4622
- /* @__PURE__ */ jsx54(
5298
+ /* @__PURE__ */ jsx57(
4623
5299
  ScPairtext,
4624
5300
  {
4625
- icon: /* @__PURE__ */ jsx54(SiconHome10, { className: ScCatalogixInvite_default.siconHomeInstance }),
5301
+ icon: /* @__PURE__ */ jsx57(SiconHome10, { className: ScCatalogixInvite_default.siconHomeInstance }),
4626
5302
  iconPosition: "right",
4627
5303
  type: "checkbox",
4628
5304
  className: ScCatalogixInvite_default.scPairtextInstance
4629
5305
  }
4630
5306
  ),
4631
- /* @__PURE__ */ jsx54(
5307
+ /* @__PURE__ */ jsx57(
4632
5308
  ScPairtext,
4633
5309
  {
4634
- icon: /* @__PURE__ */ jsx54(SiconHome10, { className: ScCatalogixInvite_default.siconHomeInstance }),
5310
+ icon: /* @__PURE__ */ jsx57(SiconHome10, { className: ScCatalogixInvite_default.siconHomeInstance }),
4635
5311
  iconPosition: "right",
4636
5312
  type: "checkbox",
4637
5313
  className: ScCatalogixInvite_default.scPairtextInstance
@@ -4645,7 +5321,7 @@ var ScCatalogixInvite = ({
4645
5321
  };
4646
5322
 
4647
5323
  // src/SC-appField/ScAppField.tsx
4648
- import { jsx as jsx55, jsxs as jsxs47 } from "react/jsx-runtime";
5324
+ import { jsx as jsx58, jsxs as jsxs49 } from "react/jsx-runtime";
4649
5325
  var ScAppField = ({
4650
5326
  appFieldTitle = "App permission",
4651
5327
  className,
@@ -4662,13 +5338,13 @@ var ScAppField = ({
4662
5338
  onCatalogixSearchChange,
4663
5339
  ...props
4664
5340
  }) => {
4665
- return /* @__PURE__ */ jsxs47("div", { className: ScAppField_default.scAppField + " " + className, ...props, children: [
4666
- /* @__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: [
4667
5343
  appFieldTitle,
4668
5344
  " "
4669
5345
  ] }) }),
4670
- /* @__PURE__ */ jsxs47("div", { className: ScAppField_default.inputContainer, children: [
4671
- /* @__PURE__ */ jsx55(
5346
+ /* @__PURE__ */ jsxs49("div", { className: ScAppField_default.inputContainer, children: [
5347
+ /* @__PURE__ */ jsx58(
4672
5348
  ScArtifaxInvite,
4673
5349
  {
4674
5350
  enabled: artifaxEnabled,
@@ -4676,18 +5352,18 @@ var ScAppField = ({
4676
5352
  className: ScAppField_default.scArtifaxInviteInstance
4677
5353
  }
4678
5354
  ),
4679
- /* @__PURE__ */ jsx55(
5355
+ /* @__PURE__ */ jsx58(
4680
5356
  ScPhtogenixInvite,
4681
5357
  {
4682
5358
  enabled: photogenixEnabled,
4683
5359
  onToggle: onPhotogenixToggle,
4684
5360
  scAppCardappDescription: "Info about photogenix",
4685
5361
  scAppCardappName: "Photogenix",
4686
- scAppCardappIcon: /* @__PURE__ */ jsx55(SiconPhotogenix2, { className: ScAppField_default.siconPhotogenixInstance }),
5362
+ scAppCardappIcon: /* @__PURE__ */ jsx58(SiconPhotogenix2, { className: ScAppField_default.siconPhotogenixInstance }),
4687
5363
  className: ScAppField_default.scPhtogenixInviteInstance
4688
5364
  }
4689
5365
  ),
4690
- /* @__PURE__ */ jsx55(
5366
+ /* @__PURE__ */ jsx58(
4691
5367
  ScCatalogixInvite,
4692
5368
  {
4693
5369
  enabled: catalogixEnabled,
@@ -4714,13 +5390,13 @@ var ScBillingHistoryHeader_default = {
4714
5390
  };
4715
5391
 
4716
5392
  // src/SC-billingHistoryHeader/ScBillingHistoryHeader.tsx
4717
- import { jsx as jsx56, jsxs as jsxs48 } from "react/jsx-runtime";
5393
+ import { jsx as jsx59, jsxs as jsxs50 } from "react/jsx-runtime";
4718
5394
  var ScBillingHistoryHeader = ({
4719
5395
  className,
4720
5396
  ...props
4721
5397
  }) => {
4722
- return /* @__PURE__ */ jsxs48("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
4723
- /* @__PURE__ */ jsx56(
5398
+ return /* @__PURE__ */ jsxs50("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
5399
+ /* @__PURE__ */ jsx59(
4724
5400
  ScHeader,
4725
5401
  {
4726
5402
  text: "Invoice",
@@ -4728,7 +5404,7 @@ var ScBillingHistoryHeader = ({
4728
5404
  className: ScBillingHistoryHeader_default.scHeaderInstance
4729
5405
  }
4730
5406
  ),
4731
- /* @__PURE__ */ jsx56(
5407
+ /* @__PURE__ */ jsx59(
4732
5408
  ScHeader,
4733
5409
  {
4734
5410
  text: "Amount",
@@ -4736,7 +5412,7 @@ var ScBillingHistoryHeader = ({
4736
5412
  className: ScBillingHistoryHeader_default.scHeaderInstance2
4737
5413
  }
4738
5414
  ),
4739
- /* @__PURE__ */ jsx56(
5415
+ /* @__PURE__ */ jsx59(
4740
5416
  ScHeader,
4741
5417
  {
4742
5418
  text: "Date",
@@ -4744,7 +5420,7 @@ var ScBillingHistoryHeader = ({
4744
5420
  className: ScBillingHistoryHeader_default.scHeaderInstance2
4745
5421
  }
4746
5422
  ),
4747
- /* @__PURE__ */ jsx56(
5423
+ /* @__PURE__ */ jsx59(
4748
5424
  ScHeader,
4749
5425
  {
4750
5426
  text: "Action",
@@ -4766,19 +5442,19 @@ var ScCheckField_default = {
4766
5442
 
4767
5443
  // src/SC-checkField/ScCheckField.tsx
4768
5444
  import { SiconHome as SiconHome11 } from "@streamoid/icons";
4769
- import { Fragment as Fragment18, 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";
4770
5446
  var ScCheckField = ({
4771
5447
  label = "Label",
4772
5448
  className,
4773
5449
  checkboxes,
4774
5450
  ...props
4775
5451
  }) => {
4776
- return /* @__PURE__ */ jsxs49("div", { className: ScCheckField_default.scCheckField + " " + className, ...props, children: [
4777
- /* @__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: [
4778
5454
  label,
4779
5455
  " "
4780
5456
  ] }) }),
4781
- /* @__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(
4782
5458
  ScPairtext,
4783
5459
  {
4784
5460
  content: item.label,
@@ -4788,19 +5464,19 @@ var ScCheckField = ({
4788
5464
  className: ScCheckField_default.scPairtextInstance
4789
5465
  },
4790
5466
  i
4791
- )) : /* @__PURE__ */ jsxs49(Fragment18, { children: [
4792
- /* @__PURE__ */ jsx57(
5467
+ )) : /* @__PURE__ */ jsxs51(Fragment19, { children: [
5468
+ /* @__PURE__ */ jsx60(
4793
5469
  ScPairtext,
4794
5470
  {
4795
- icon: /* @__PURE__ */ jsx57(SiconHome11, { className: ScCheckField_default.siconHomeInstance }),
5471
+ icon: /* @__PURE__ */ jsx60(SiconHome11, { className: ScCheckField_default.siconHomeInstance }),
4796
5472
  type: "checkbox",
4797
5473
  className: ScCheckField_default.scPairtextInstance
4798
5474
  }
4799
5475
  ),
4800
- /* @__PURE__ */ jsx57(
5476
+ /* @__PURE__ */ jsx60(
4801
5477
  ScPairtext,
4802
5478
  {
4803
- icon: /* @__PURE__ */ jsx57(SiconHome11, { className: ScCheckField_default.siconHomeInstance }),
5479
+ icon: /* @__PURE__ */ jsx60(SiconHome11, { className: ScCheckField_default.siconHomeInstance }),
4804
5480
  type: "checkbox",
4805
5481
  className: ScCheckField_default.scPairtextInstance
4806
5482
  }
@@ -4821,9 +5497,9 @@ var ScFieldButton_default = {
4821
5497
 
4822
5498
  // src/SC-fieldButton/ScFieldButton.tsx
4823
5499
  import { SiconHome as SiconHome12 } from "@streamoid/icons";
4824
- import { Fragment as Fragment19, 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";
4825
5501
  var ScFieldButton = ({
4826
- icon = /* @__PURE__ */ jsx58(SiconHome12, { className: ScFieldButton_default.siconHomeInstance }),
5502
+ icon = /* @__PURE__ */ jsx61(SiconHome12, { className: ScFieldButton_default.siconHomeInstance }),
4827
5503
  type = "default",
4828
5504
  state = "default",
4829
5505
  className,
@@ -4831,18 +5507,18 @@ var ScFieldButton = ({
4831
5507
  ...props
4832
5508
  }) => {
4833
5509
  const variantsClassName = ScFieldButton_default["type-" + type] + " " + ScFieldButton_default["state-" + state];
4834
- return /* @__PURE__ */ jsx58(
5510
+ return /* @__PURE__ */ jsx61(
4835
5511
  "div",
4836
5512
  {
4837
5513
  className: ScFieldButton_default.scFieldButton + " " + className + " " + variantsClassName,
4838
5514
  ...props,
4839
- children: /* @__PURE__ */ jsxs50("div", { className: ScFieldButton_default.container, children: [
4840
- (type === "icon-right" || type === "only-icon") && /* @__PURE__ */ jsx58(Fragment19, { children: icon }),
4841
- (type === "icon-left" || type === "default" || type === "icon-right") && /* @__PURE__ */ jsx58(Fragment19, { 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: [
4842
5518
  text,
4843
5519
  " "
4844
5520
  ] }) }),
4845
- type === "icon-left" && /* @__PURE__ */ jsx58(Fragment19, { children: icon })
5521
+ type === "icon-left" && /* @__PURE__ */ jsx61(Fragment20, { children: icon })
4846
5522
  ] })
4847
5523
  }
4848
5524
  );
@@ -4857,16 +5533,16 @@ var ScPendingAction_default = {
4857
5533
 
4858
5534
  // src/SC-pendingAction/ScPendingAction.tsx
4859
5535
  import { SiconHome as SiconHome13 } from "@streamoid/icons";
4860
- import { jsx as jsx59, jsxs as jsxs51 } from "react/jsx-runtime";
5536
+ import { jsx as jsx62, jsxs as jsxs53 } from "react/jsx-runtime";
4861
5537
  var ScPendingAction = ({
4862
5538
  className,
4863
5539
  ...props
4864
5540
  }) => {
4865
- return /* @__PURE__ */ jsxs51("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
4866
- /* @__PURE__ */ jsx59(
5541
+ return /* @__PURE__ */ jsxs53("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
5542
+ /* @__PURE__ */ jsx62(
4867
5543
  ScButton,
4868
5544
  {
4869
- icon: /* @__PURE__ */ jsx59(SiconHome13, { className: ScPendingAction_default.siconHomeInstance }),
5545
+ icon: /* @__PURE__ */ jsx62(SiconHome13, { className: ScPendingAction_default.siconHomeInstance }),
4870
5546
  text: "Cancel",
4871
5547
  variant: "error",
4872
5548
  type: "tertiary",
@@ -4874,11 +5550,11 @@ var ScPendingAction = ({
4874
5550
  className: ScPendingAction_default.scButtonInstance
4875
5551
  }
4876
5552
  ),
4877
- /* @__PURE__ */ jsx59(ScVDivider, { className: ScPendingAction_default.scVDividerInstance }),
4878
- /* @__PURE__ */ jsx59(
5553
+ /* @__PURE__ */ jsx62(ScVDivider, { className: ScPendingAction_default.scVDividerInstance }),
5554
+ /* @__PURE__ */ jsx62(
4879
5555
  ScButton,
4880
5556
  {
4881
- icon: /* @__PURE__ */ jsx59(SiconHome13, { className: ScPendingAction_default.siconHomeInstance }),
5557
+ icon: /* @__PURE__ */ jsx62(SiconHome13, { className: ScPendingAction_default.siconHomeInstance }),
4882
5558
  text: "Resend",
4883
5559
  variant: "tertiary",
4884
5560
  size: "sm",
@@ -4902,7 +5578,7 @@ var ScQuickPrompt_default = {
4902
5578
 
4903
5579
  // src/SC-quick prompt/ScQuickPrompt.tsx
4904
5580
  import { SiconBolt as SiconBolt5 } from "@streamoid/icons";
4905
- import { jsx as jsx60, jsxs as jsxs52 } from "react/jsx-runtime";
5581
+ import { jsx as jsx63, jsxs as jsxs54 } from "react/jsx-runtime";
4906
5582
  var ScQuickPrompt = ({
4907
5583
  appName = "Photogenix",
4908
5584
  heading = "Swap Model and Background",
@@ -4910,20 +5586,20 @@ var ScQuickPrompt = ({
4910
5586
  className,
4911
5587
  ...props
4912
5588
  }) => {
4913
- return /* @__PURE__ */ jsxs52("div", { className: ScQuickPrompt_default.scQuickPrompt + " " + className, ...props, children: [
4914
- /* @__PURE__ */ jsxs52("div", { className: ScQuickPrompt_default.header, children: [
4915
- /* @__PURE__ */ jsx60("div", { className: ScQuickPrompt_default.iconContainer, children: /* @__PURE__ */ jsx60(SiconBolt5, { className: ScQuickPrompt_default.siconBoltInstance }) }),
4916
- /* @__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: [
4917
5593
  appName,
4918
5594
  " "
4919
5595
  ] }) })
4920
5596
  ] }),
4921
- /* @__PURE__ */ jsxs52("div", { className: ScQuickPrompt_default.body, children: [
4922
- /* @__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: [
4923
5599
  heading,
4924
5600
  " "
4925
5601
  ] }),
4926
- /* @__PURE__ */ jsxs52("div", { className: ScQuickPrompt_default.description, children: [
5602
+ /* @__PURE__ */ jsxs54("div", { className: ScQuickPrompt_default.description, children: [
4927
5603
  description,
4928
5604
  " "
4929
5605
  ] })
@@ -4940,13 +5616,13 @@ var ScReferralTableHeader_default = {
4940
5616
  };
4941
5617
 
4942
5618
  // src/SC-referralTableHeader/ScReferralTableHeader.tsx
4943
- import { jsx as jsx61, jsxs as jsxs53 } from "react/jsx-runtime";
5619
+ import { jsx as jsx64, jsxs as jsxs55 } from "react/jsx-runtime";
4944
5620
  var ScReferralTableHeader = ({
4945
5621
  className,
4946
5622
  ...props
4947
5623
  }) => {
4948
- return /* @__PURE__ */ jsxs53("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
4949
- /* @__PURE__ */ jsx61(
5624
+ return /* @__PURE__ */ jsxs55("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
5625
+ /* @__PURE__ */ jsx64(
4950
5626
  ScHeader,
4951
5627
  {
4952
5628
  text: "User",
@@ -4954,7 +5630,7 @@ var ScReferralTableHeader = ({
4954
5630
  className: ScReferralTableHeader_default.scHeaderInstance
4955
5631
  }
4956
5632
  ),
4957
- /* @__PURE__ */ jsx61(
5633
+ /* @__PURE__ */ jsx64(
4958
5634
  ScHeader,
4959
5635
  {
4960
5636
  text: "Date",
@@ -4962,7 +5638,7 @@ var ScReferralTableHeader = ({
4962
5638
  className: ScReferralTableHeader_default.scHeaderInstance2
4963
5639
  }
4964
5640
  ),
4965
- /* @__PURE__ */ jsx61(
5641
+ /* @__PURE__ */ jsx64(
4966
5642
  ScHeader,
4967
5643
  {
4968
5644
  text: "Status",
@@ -4970,7 +5646,7 @@ var ScReferralTableHeader = ({
4970
5646
  className: ScReferralTableHeader_default.scHeaderInstance3
4971
5647
  }
4972
5648
  ),
4973
- /* @__PURE__ */ jsx61(
5649
+ /* @__PURE__ */ jsx64(
4974
5650
  ScHeader,
4975
5651
  {
4976
5652
  text: "Reward",
@@ -4991,7 +5667,7 @@ var ScReferralTableList_default = {
4991
5667
  };
4992
5668
 
4993
5669
  // src/SC-referralTableList/ScReferralTableList.tsx
4994
- import { jsx as jsx62, jsxs as jsxs54 } from "react/jsx-runtime";
5670
+ import { jsx as jsx65, jsxs as jsxs56 } from "react/jsx-runtime";
4995
5671
  var ScReferralTableList = ({
4996
5672
  userEmail = "chris@kepler.com",
4997
5673
  userName,
@@ -5001,8 +5677,8 @@ var ScReferralTableList = ({
5001
5677
  className,
5002
5678
  ...props
5003
5679
  }) => {
5004
- return /* @__PURE__ */ jsxs54("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
5005
- /* @__PURE__ */ jsx62(
5680
+ return /* @__PURE__ */ jsxs56("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
5681
+ /* @__PURE__ */ jsx65(
5006
5682
  ScProfile,
5007
5683
  {
5008
5684
  subText: userEmail,
@@ -5010,12 +5686,12 @@ var ScReferralTableList = ({
5010
5686
  className: ScReferralTableList_default.scProfileInstance
5011
5687
  }
5012
5688
  ),
5013
- /* @__PURE__ */ jsxs54("div", { className: ScReferralTableList_default.date, children: [
5689
+ /* @__PURE__ */ jsxs56("div", { className: ScReferralTableList_default.date, children: [
5014
5690
  date,
5015
5691
  " "
5016
5692
  ] }),
5017
- /* @__PURE__ */ jsx62(ScBadges, { text: status, className: ScReferralTableList_default.scBadgesInstance }),
5018
- /* @__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: [
5019
5695
  points,
5020
5696
  " "
5021
5697
  ] })
@@ -5031,33 +5707,33 @@ var ScSettingsNav_default = {
5031
5707
  // src/SC-settingsNav/ScSettingsNav.tsx
5032
5708
  import { SiconTeam as SiconTeam5 } from "@streamoid/icons";
5033
5709
  import { SiconWorkspace, SiconReferral } from "@streamoid/icons";
5034
- import { jsx as jsx63, jsxs as jsxs55 } from "react/jsx-runtime";
5710
+ import { jsx as jsx66, jsxs as jsxs57 } from "react/jsx-runtime";
5035
5711
  var ScSettingsNav = ({
5036
5712
  className,
5037
5713
  ...props
5038
5714
  }) => {
5039
- return /* @__PURE__ */ jsx63("div", { className: ScSettingsNav_default.scSettingsNav + " " + className, ...props, children: /* @__PURE__ */ jsxs55("div", { className: ScSettingsNav_default.container, children: [
5040
- /* @__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(
5041
5717
  ScSidebarMenu,
5042
5718
  {
5043
- icon: /* @__PURE__ */ jsx63(SiconTeam5, { className: ScSettingsNav_default.siconTeamInstance }),
5719
+ icon: /* @__PURE__ */ jsx66(SiconTeam5, { className: ScSettingsNav_default.siconTeamInstance }),
5044
5720
  text: "Profile",
5045
5721
  state: "active",
5046
5722
  className: ScSettingsNav_default.scSidebarMenuInstance
5047
5723
  }
5048
5724
  ),
5049
- /* @__PURE__ */ jsx63(
5725
+ /* @__PURE__ */ jsx66(
5050
5726
  ScSidebarMenu,
5051
5727
  {
5052
- icon: /* @__PURE__ */ jsx63(SiconWorkspace, { className: ScSettingsNav_default.siconWorkspaceInstance }),
5728
+ icon: /* @__PURE__ */ jsx66(SiconWorkspace, { className: ScSettingsNav_default.siconWorkspaceInstance }),
5053
5729
  text: "Workspace",
5054
5730
  className: ScSettingsNav_default.scSidebarMenuInstance
5055
5731
  }
5056
5732
  ),
5057
- /* @__PURE__ */ jsx63(
5733
+ /* @__PURE__ */ jsx66(
5058
5734
  ScSidebarMenu,
5059
5735
  {
5060
- icon: /* @__PURE__ */ jsx63(SiconReferral, { className: ScSettingsNav_default.siconReferralInstance }),
5736
+ icon: /* @__PURE__ */ jsx66(SiconReferral, { className: ScSettingsNav_default.siconReferralInstance }),
5061
5737
  text: "Referral",
5062
5738
  className: ScSettingsNav_default.scSidebarMenuInstance
5063
5739
  }
@@ -5073,7 +5749,7 @@ var ScTabField_default = {
5073
5749
  };
5074
5750
 
5075
5751
  // src/SC-tabField/ScTabField.tsx
5076
- import { jsx as jsx64, jsxs as jsxs56 } from "react/jsx-runtime";
5752
+ import { jsx as jsx67, jsxs as jsxs58 } from "react/jsx-runtime";
5077
5753
  var ScTabField = ({
5078
5754
  label = "Label",
5079
5755
  className,
@@ -5082,17 +5758,17 @@ var ScTabField = ({
5082
5758
  onTabChange,
5083
5759
  ...props
5084
5760
  }) => {
5085
- return /* @__PURE__ */ jsxs56("div", { className: ScTabField_default.scTabField + " " + className, children: [
5086
- /* @__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: [
5087
5763
  label,
5088
5764
  " "
5089
5765
  ] }) }),
5090
- tabs ? /* @__PURE__ */ jsx64(
5766
+ tabs ? /* @__PURE__ */ jsx67(
5091
5767
  ScTabSwitcher,
5092
5768
  {
5093
5769
  tabCount: String(tabs.length),
5094
5770
  className: ScTabField_default.scTabSwitcherInstance,
5095
- component: tabs[0] ? /* @__PURE__ */ jsx64(
5771
+ component: tabs[0] ? /* @__PURE__ */ jsx67(
5096
5772
  ScTabComp,
5097
5773
  {
5098
5774
  text: tabs[0].label,
@@ -5102,7 +5778,7 @@ var ScTabField = ({
5102
5778
  style: { flex: 1 }
5103
5779
  }
5104
5780
  ) : void 0,
5105
- component2: tabs[1] ? /* @__PURE__ */ jsx64(
5781
+ component2: tabs[1] ? /* @__PURE__ */ jsx67(
5106
5782
  ScTabComp,
5107
5783
  {
5108
5784
  text: tabs[1].label,
@@ -5113,7 +5789,7 @@ var ScTabField = ({
5113
5789
  }
5114
5790
  ) : void 0
5115
5791
  }
5116
- ) : /* @__PURE__ */ jsx64(ScTabSwitcher, { className: ScTabField_default.scTabSwitcherInstance })
5792
+ ) : /* @__PURE__ */ jsx67(ScTabSwitcher, { className: ScTabField_default.scTabSwitcherInstance })
5117
5793
  ] });
5118
5794
  };
5119
5795
 
@@ -5130,19 +5806,19 @@ var ScTableHeader_default = {
5130
5806
  };
5131
5807
 
5132
5808
  // src/SC-tableHeader/ScTableHeader.tsx
5133
- import { Fragment as Fragment20, 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";
5134
5810
  var ScTableHeader = ({
5135
5811
  type = "default",
5136
5812
  className,
5137
5813
  ...props
5138
5814
  }) => {
5139
5815
  const variantsClassName = ScTableHeader_default["type-" + type];
5140
- return /* @__PURE__ */ jsxs57(
5816
+ return /* @__PURE__ */ jsxs59(
5141
5817
  "div",
5142
5818
  {
5143
5819
  className: ScTableHeader_default.scTableHeader + " " + className + " " + variantsClassName,
5144
5820
  children: [
5145
- /* @__PURE__ */ jsx65(
5821
+ /* @__PURE__ */ jsx68(
5146
5822
  ScHeader,
5147
5823
  {
5148
5824
  text: "User",
@@ -5150,7 +5826,7 @@ var ScTableHeader = ({
5150
5826
  className: ScTableHeader_default.scHeaderInstance
5151
5827
  }
5152
5828
  ),
5153
- /* @__PURE__ */ jsx65(
5829
+ /* @__PURE__ */ jsx68(
5154
5830
  ScHeader,
5155
5831
  {
5156
5832
  text: "Role",
@@ -5158,7 +5834,7 @@ var ScTableHeader = ({
5158
5834
  className: ScTableHeader_default.scHeaderInstance2
5159
5835
  }
5160
5836
  ),
5161
- /* @__PURE__ */ jsx65(
5837
+ /* @__PURE__ */ jsx68(
5162
5838
  ScHeader,
5163
5839
  {
5164
5840
  text: "Access",
@@ -5166,7 +5842,7 @@ var ScTableHeader = ({
5166
5842
  className: ScTableHeader_default.scHeaderInstance3
5167
5843
  }
5168
5844
  ),
5169
- /* @__PURE__ */ jsx65(
5845
+ /* @__PURE__ */ jsx68(
5170
5846
  ScHeader,
5171
5847
  {
5172
5848
  text: "Invited by",
@@ -5174,7 +5850,7 @@ var ScTableHeader = ({
5174
5850
  className: ScTableHeader_default.scHeaderInstance4
5175
5851
  }
5176
5852
  ),
5177
- type === "pending" && /* @__PURE__ */ jsx65(Fragment20, { children: /* @__PURE__ */ jsx65(
5853
+ type === "pending" && /* @__PURE__ */ jsx68(Fragment21, { children: /* @__PURE__ */ jsx68(
5178
5854
  ScHeader,
5179
5855
  {
5180
5856
  text: "Invite action",
@@ -5182,7 +5858,7 @@ var ScTableHeader = ({
5182
5858
  className: ScTableHeader_default.scHeaderInstance5
5183
5859
  }
5184
5860
  ) }),
5185
- type === "default" && /* @__PURE__ */ jsx65(Fragment20, { children: /* @__PURE__ */ jsx65(
5861
+ type === "default" && /* @__PURE__ */ jsx68(Fragment21, { children: /* @__PURE__ */ jsx68(
5186
5862
  ScHeader,
5187
5863
  {
5188
5864
  text: "Signed On",
@@ -5216,7 +5892,7 @@ var ScTableList_default = {
5216
5892
  // src/SC-tableList/ScTableList.tsx
5217
5893
  import { SiconArtifacts as SiconArtifacts6, SiconPhotogenix as SiconPhotogenix3 } from "@streamoid/icons";
5218
5894
  import { SiconUserAdd, SiconCoins } from "@streamoid/icons";
5219
- import { Fragment as Fragment21, 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";
5220
5896
  var ScTableList = ({
5221
5897
  invitedBy = "Rohan",
5222
5898
  signedOn = "Nov 9th, 2025",
@@ -5228,51 +5904,51 @@ var ScTableList = ({
5228
5904
  ...props
5229
5905
  }) => {
5230
5906
  const variantsClassName = ScTableList_default["hover-" + hover] + " " + ScTableList_default["variant-" + variant];
5231
- return /* @__PURE__ */ jsxs58(
5907
+ return /* @__PURE__ */ jsxs60(
5232
5908
  "div",
5233
5909
  {
5234
5910
  className: ScTableList_default.scTableList + " " + className + " " + variantsClassName,
5235
5911
  onClick: (e) => onRowClick && onRowClick(invitedBy, e),
5236
5912
  ...props,
5237
5913
  children: [
5238
- /* @__PURE__ */ jsx66(
5914
+ /* @__PURE__ */ jsx69(
5239
5915
  ScProfile,
5240
5916
  {
5241
5917
  subText: userEmail,
5242
5918
  className: ScTableList_default.scProfileInstance
5243
5919
  }
5244
5920
  ),
5245
- /* @__PURE__ */ jsx66(ScRole, { className: ScTableList_default.scRoleInstance }),
5246
- /* @__PURE__ */ jsxs58("div", { className: ScTableList_default.accessInfo, children: [
5247
- /* @__PURE__ */ jsx66(
5921
+ /* @__PURE__ */ jsx69(ScRole, { className: ScTableList_default.scRoleInstance }),
5922
+ /* @__PURE__ */ jsxs60("div", { className: ScTableList_default.accessInfo, children: [
5923
+ /* @__PURE__ */ jsx69(
5248
5924
  ScAccess,
5249
5925
  {
5250
- component: /* @__PURE__ */ jsx66(SiconArtifacts6, { className: ScTableList_default.siconArtifactsInstance }),
5251
- 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 }),
5252
5928
  className: ScTableList_default.scAccessInstance
5253
5929
  }
5254
5930
  ),
5255
- /* @__PURE__ */ jsx66(
5931
+ /* @__PURE__ */ jsx69(
5256
5932
  ScAccess,
5257
5933
  {
5258
- component: /* @__PURE__ */ jsx66(SiconUserAdd, { className: ScTableList_default.siconUserAddInstance }),
5259
- 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 }),
5260
5936
  visibleSiconCatalogix: false,
5261
5937
  className: ScTableList_default.scAccessInstance
5262
5938
  }
5263
5939
  )
5264
5940
  ] }),
5265
- /* @__PURE__ */ jsxs58("div", { className: ScTableList_default.userName, children: [
5941
+ /* @__PURE__ */ jsxs60("div", { className: ScTableList_default.userName, children: [
5266
5942
  invitedBy,
5267
5943
  " "
5268
5944
  ] }),
5269
- variant === "pending" && /* @__PURE__ */ jsx66(Fragment21, { children: /* @__PURE__ */ jsx66(
5945
+ variant === "pending" && /* @__PURE__ */ jsx69(Fragment22, { children: /* @__PURE__ */ jsx69(
5270
5946
  ScPendingAction,
5271
5947
  {
5272
5948
  className: ScTableList_default.scPendingActionInstance
5273
5949
  }
5274
5950
  ) }),
5275
- variant === "active" && /* @__PURE__ */ jsx66(Fragment21, { children: /* @__PURE__ */ jsxs58("div", { className: ScTableList_default.date, children: [
5951
+ variant === "active" && /* @__PURE__ */ jsx69(Fragment22, { children: /* @__PURE__ */ jsxs60("div", { className: ScTableList_default.date, children: [
5276
5952
  signedOn,
5277
5953
  " "
5278
5954
  ] }) })
@@ -5307,7 +5983,7 @@ import {
5307
5983
  SiconSwitch as SiconSwitch2,
5308
5984
  SiconLogout as SiconLogout2
5309
5985
  } from "@streamoid/icons";
5310
- import { jsx as jsx67, jsxs as jsxs59 } from "react/jsx-runtime";
5986
+ import { jsx as jsx70, jsxs as jsxs61 } from "react/jsx-runtime";
5311
5987
  var ScWorkspaceCard = ({
5312
5988
  workspaceName = "Stores",
5313
5989
  role = "Admin",
@@ -5317,21 +5993,21 @@ var ScWorkspaceCard = ({
5317
5993
  className,
5318
5994
  ...props
5319
5995
  }) => {
5320
- return /* @__PURE__ */ jsxs59("div", { className: ScWorkspaceCard_default.scWorkspaceCard + " " + className, ...props, children: [
5321
- /* @__PURE__ */ jsxs59("div", { className: ScWorkspaceCard_default.workspaceInfo, children: [
5322
- /* @__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(
5323
5999
  ScIntialProfileCover,
5324
6000
  {
5325
6001
  className: ScWorkspaceCard_default.scIntialProfileCoverInstance
5326
6002
  }
5327
6003
  ),
5328
- /* @__PURE__ */ jsxs59("div", { className: ScWorkspaceCard_default.workspaceName, children: [
6004
+ /* @__PURE__ */ jsxs61("div", { className: ScWorkspaceCard_default.workspaceName, children: [
5329
6005
  workspaceName,
5330
6006
  " "
5331
6007
  ] })
5332
6008
  ] }),
5333
- /* @__PURE__ */ jsxs59("div", { className: ScWorkspaceCard_default.userInfo, children: [
5334
- /* @__PURE__ */ jsx67(
6009
+ /* @__PURE__ */ jsxs61("div", { className: ScWorkspaceCard_default.userInfo, children: [
6010
+ /* @__PURE__ */ jsx70(
5335
6011
  ScBadges,
5336
6012
  {
5337
6013
  text: role,
@@ -5339,41 +6015,41 @@ var ScWorkspaceCard = ({
5339
6015
  className: ScWorkspaceCard_default.scBadgesInstance
5340
6016
  }
5341
6017
  ),
5342
- /* @__PURE__ */ jsxs59("div", { className: ScWorkspaceCard_default.userDetails, children: [
5343
- /* @__PURE__ */ jsx67(
6018
+ /* @__PURE__ */ jsxs61("div", { className: ScWorkspaceCard_default.userDetails, children: [
6019
+ /* @__PURE__ */ jsx70(
5344
6020
  ScPairtext,
5345
6021
  {
5346
- icon: /* @__PURE__ */ jsx67(SiconTeam6, { className: ScWorkspaceCard_default.siconTeamInstance }),
6022
+ icon: /* @__PURE__ */ jsx70(SiconTeam6, { className: ScWorkspaceCard_default.siconTeamInstance }),
5347
6023
  content: userCount,
5348
6024
  className: ScWorkspaceCard_default.scPairtextInstance
5349
6025
  }
5350
6026
  ),
5351
- /* @__PURE__ */ jsx67(ScVDivider, { className: ScWorkspaceCard_default.scVDividerInstance }),
5352
- /* @__PURE__ */ jsx67(
6027
+ /* @__PURE__ */ jsx70(ScVDivider, { className: ScWorkspaceCard_default.scVDividerInstance }),
6028
+ /* @__PURE__ */ jsx70(
5353
6029
  ScPairtext,
5354
6030
  {
5355
- icon: /* @__PURE__ */ jsx67(SiconCrown2, { className: ScWorkspaceCard_default.siconCrownInstance }),
6031
+ icon: /* @__PURE__ */ jsx70(SiconCrown2, { className: ScWorkspaceCard_default.siconCrownInstance }),
5356
6032
  content: ownerEmail,
5357
6033
  className: ScWorkspaceCard_default.scPairtextInstance
5358
6034
  }
5359
6035
  )
5360
6036
  ] })
5361
6037
  ] }),
5362
- /* @__PURE__ */ jsx67(
6038
+ /* @__PURE__ */ jsx70(
5363
6039
  ScButton,
5364
6040
  {
5365
- icon: /* @__PURE__ */ jsx67(SiconSwitch2, { className: ScWorkspaceCard_default.siconSwitchInstance }),
6041
+ icon: /* @__PURE__ */ jsx70(SiconSwitch2, { className: ScWorkspaceCard_default.siconSwitchInstance }),
5366
6042
  text: buttonText,
5367
6043
  state: "disabled",
5368
6044
  variant: "outline",
5369
6045
  className: ScWorkspaceCard_default.scButtonInstance
5370
6046
  }
5371
6047
  ),
5372
- /* @__PURE__ */ jsx67(
6048
+ /* @__PURE__ */ jsx70(
5373
6049
  ScButton,
5374
6050
  {
5375
6051
  text: "Leave workspace",
5376
- icon: /* @__PURE__ */ jsx67(SiconLogout2, { className: ScWorkspaceCard_default.siconLogoutInstance }),
6052
+ icon: /* @__PURE__ */ jsx70(SiconLogout2, { className: ScWorkspaceCard_default.siconLogoutInstance }),
5377
6053
  styleVariant: "icon-only",
5378
6054
  variant: "error",
5379
6055
  className: ScWorkspaceCard_default.scButtonInstance2
@@ -5383,7 +6059,7 @@ var ScWorkspaceCard = ({
5383
6059
  };
5384
6060
 
5385
6061
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.tsx
5386
- import { useState as useState7 } from "react";
6062
+ import { useState as useState8 } from "react";
5387
6063
  import { SiconSwitch as SiconSwitch3, SiconSettings as SiconSettings3, SiconLogout as SiconLogout3 } from "@streamoid/icons";
5388
6064
 
5389
6065
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.module.css
@@ -5409,7 +6085,7 @@ var ScWorkspaceSwitchCard_default = {
5409
6085
  };
5410
6086
 
5411
6087
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.tsx
5412
- import { jsx as jsx68, jsxs as jsxs60 } from "react/jsx-runtime";
6088
+ import { jsx as jsx71, jsxs as jsxs62 } from "react/jsx-runtime";
5413
6089
  function ScWorkspaceSwitchCard({
5414
6090
  wsName = "Workspace name is kepler",
5415
6091
  role = "Admin",
@@ -5424,7 +6100,7 @@ function ScWorkspaceSwitchCard({
5424
6100
  onSettings,
5425
6101
  onLeave
5426
6102
  }) {
5427
- const [internalHover, setInternalHover] = useState7(false);
6103
+ const [internalHover, setInternalHover] = useState8(false);
5428
6104
  const isHover = hover !== void 0 ? hover : internalHover;
5429
6105
  const isCurrent = type === "currentWS";
5430
6106
  const isOther = type === "otherWS";
@@ -5439,14 +6115,14 @@ function ScWorkspaceSwitchCard({
5439
6115
  ].filter(Boolean).join(" ");
5440
6116
  const dpBg = isCurrent ? "var(--alias-fill-neutral-neutralactive, #313131)" : "var(--alias-fill-neutral-neutralselected, #242424)";
5441
6117
  const roleColorClass = isAdmin ? ScWorkspaceSwitchCard_default.detailValueRole : ScWorkspaceSwitchCard_default.detailValueInfo;
5442
- return /* @__PURE__ */ jsx68(
6118
+ return /* @__PURE__ */ jsx71(
5443
6119
  "div",
5444
6120
  {
5445
6121
  className: cardClass,
5446
6122
  onMouseEnter: () => setInternalHover(true),
5447
6123
  onMouseLeave: () => setInternalHover(false),
5448
- children: /* @__PURE__ */ jsxs60("div", { className: ScWorkspaceSwitchCard_default.wsInfo, children: [
5449
- /* @__PURE__ */ jsx68(
6124
+ children: /* @__PURE__ */ jsxs62("div", { className: ScWorkspaceSwitchCard_default.wsInfo, children: [
6125
+ /* @__PURE__ */ jsx71(
5450
6126
  ScDp,
5451
6127
  {
5452
6128
  type: imageUrl ? "image" : "initial",
@@ -5460,26 +6136,26 @@ function ScWorkspaceSwitchCard({
5460
6136
  }
5461
6137
  }
5462
6138
  ),
5463
- /* @__PURE__ */ jsxs60("div", { className: ScWorkspaceSwitchCard_default.infoCol, children: [
5464
- /* @__PURE__ */ jsx68("p", { className: ScWorkspaceSwitchCard_default.wsName, children: wsName }),
5465
- /* @__PURE__ */ jsxs60("div", { className: ScWorkspaceSwitchCard_default.detailsRow, children: [
5466
- /* @__PURE__ */ jsxs60("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
5467
- /* @__PURE__ */ jsx68("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Role" }),
5468
- /* @__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 })
5469
6145
  ] }),
5470
- /* @__PURE__ */ jsx68(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
5471
- /* @__PURE__ */ jsxs60("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
5472
- /* @__PURE__ */ jsx68("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Plan" }),
5473
- /* @__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 })
5474
6150
  ] }),
5475
- /* @__PURE__ */ jsx68(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
5476
- /* @__PURE__ */ jsxs60("div", { className: ScWorkspaceSwitchCard_default.detailItemFlex, children: [
5477
- /* @__PURE__ */ jsx68("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Workspace Owner" }),
5478
- /* @__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 })
5479
6155
  ] })
5480
6156
  ] })
5481
6157
  ] }),
5482
- isHover && isOther && /* @__PURE__ */ jsx68(
6158
+ isHover && isOther && /* @__PURE__ */ jsx71(
5483
6159
  "div",
5484
6160
  {
5485
6161
  onClick: (e) => {
@@ -5487,19 +6163,19 @@ function ScWorkspaceSwitchCard({
5487
6163
  onSwitch?.();
5488
6164
  },
5489
6165
  style: { cursor: "pointer" },
5490
- children: /* @__PURE__ */ jsx68(
6166
+ children: /* @__PURE__ */ jsx71(
5491
6167
  ScButton,
5492
6168
  {
5493
6169
  text: "Switch Workspace",
5494
6170
  variant: "secondary",
5495
6171
  size: "sm",
5496
6172
  styleVariant: "icon-left",
5497
- icon: /* @__PURE__ */ jsx68(SiconSwitch3, { className: ScWorkspaceSwitchCard_default.btnIcon })
6173
+ icon: /* @__PURE__ */ jsx71(SiconSwitch3, { className: ScWorkspaceSwitchCard_default.btnIcon })
5498
6174
  }
5499
6175
  )
5500
6176
  }
5501
6177
  ),
5502
- isHover && isAdmin && /* @__PURE__ */ jsx68(
6178
+ isHover && isAdmin && /* @__PURE__ */ jsx71(
5503
6179
  "div",
5504
6180
  {
5505
6181
  onClick: (e) => {
@@ -5507,18 +6183,18 @@ function ScWorkspaceSwitchCard({
5507
6183
  onSettings?.();
5508
6184
  },
5509
6185
  style: { cursor: "pointer" },
5510
- children: /* @__PURE__ */ jsx68(
6186
+ children: /* @__PURE__ */ jsx71(
5511
6187
  ScButton,
5512
6188
  {
5513
6189
  styleVariant: "icon-only",
5514
6190
  variant: "outline",
5515
6191
  size: "sm",
5516
- icon: /* @__PURE__ */ jsx68(SiconSettings3, { className: ScWorkspaceSwitchCard_default.btnIcon })
6192
+ icon: /* @__PURE__ */ jsx71(SiconSettings3, { className: ScWorkspaceSwitchCard_default.btnIcon })
5517
6193
  }
5518
6194
  )
5519
6195
  }
5520
6196
  ),
5521
- isHover && !isAdmin && /* @__PURE__ */ jsx68(
6197
+ isHover && !isAdmin && /* @__PURE__ */ jsx71(
5522
6198
  "div",
5523
6199
  {
5524
6200
  className: ScWorkspaceSwitchCard_default.leaveBtn,
@@ -5526,7 +6202,7 @@ function ScWorkspaceSwitchCard({
5526
6202
  e.stopPropagation();
5527
6203
  onLeave?.();
5528
6204
  },
5529
- children: /* @__PURE__ */ jsx68(SiconLogout3, { className: ScWorkspaceSwitchCard_default.btnIcon, color: "currentColor" })
6205
+ children: /* @__PURE__ */ jsx71(SiconLogout3, { className: ScWorkspaceSwitchCard_default.btnIcon, color: "currentColor" })
5530
6206
  }
5531
6207
  )
5532
6208
  ] })
@@ -5544,18 +6220,18 @@ var ScRoleMobile_default = {
5544
6220
  };
5545
6221
 
5546
6222
  // src/SC-Role-Mobile/ScRoleMobile.tsx
5547
- import { jsx as jsx69 } from "react/jsx-runtime";
6223
+ import { jsx as jsx72 } from "react/jsx-runtime";
5548
6224
  var ScRoleMobile = ({
5549
6225
  role = "admin",
5550
6226
  className,
5551
6227
  ...props
5552
6228
  }) => {
5553
- return /* @__PURE__ */ jsx69(
6229
+ return /* @__PURE__ */ jsx72(
5554
6230
  "div",
5555
6231
  {
5556
6232
  className: ScRoleMobile_default.scRoleMobile + " " + ScRoleMobile_default["role-" + role] + " " + className,
5557
6233
  ...props,
5558
- 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" })
5559
6235
  }
5560
6236
  );
5561
6237
  };
@@ -5572,7 +6248,7 @@ var ScProfileV2Mobile_default = {
5572
6248
  };
5573
6249
 
5574
6250
  // src/SC-Profile-V2-Mobile/ScProfileV2Mobile.tsx
5575
- import { jsx as jsx70, jsxs as jsxs61 } from "react/jsx-runtime";
6251
+ import { jsx as jsx73, jsxs as jsxs63 } from "react/jsx-runtime";
5576
6252
  var ScProfileV2Mobile = ({
5577
6253
  name = "Chris Hemsworth",
5578
6254
  email = "chris@kepler.com",
@@ -5582,17 +6258,17 @@ var ScProfileV2Mobile = ({
5582
6258
  ...props
5583
6259
  }) => {
5584
6260
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
5585
- 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 }) });
5586
- 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(
5587
6263
  "div",
5588
6264
  {
5589
6265
  className: ScProfileV2Mobile_default.scProfileV2Mobile + " " + className,
5590
6266
  ...props,
5591
6267
  children: [
5592
6268
  dpPosition === "left" && profileImage,
5593
- /* @__PURE__ */ jsxs61("div", { className: ScProfileV2Mobile_default.userInfo, children: [
5594
- /* @__PURE__ */ jsx70("p", { className: ScProfileV2Mobile_default.userName, children: name }),
5595
- /* @__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 })
5596
6272
  ] }),
5597
6273
  dpPosition === "right" && profileImage
5598
6274
  ]
@@ -5619,7 +6295,7 @@ var ScTableListMobile_default = {
5619
6295
  };
5620
6296
 
5621
6297
  // src/SC-tableList-mobile/ScTableListMobile.tsx
5622
- import { jsx as jsx71, jsxs as jsxs62 } from "react/jsx-runtime";
6298
+ import { jsx as jsx74, jsxs as jsxs64 } from "react/jsx-runtime";
5623
6299
  var ScTableListMobile = ({
5624
6300
  name = "Chris Hemsworth",
5625
6301
  email = "chris@kepler.com",
@@ -5632,25 +6308,25 @@ var ScTableListMobile = ({
5632
6308
  ...props
5633
6309
  }) => {
5634
6310
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
5635
- return /* @__PURE__ */ jsxs62(
6311
+ return /* @__PURE__ */ jsxs64(
5636
6312
  "div",
5637
6313
  {
5638
6314
  className: ScTableListMobile_default.scTableListMobile + " " + className,
5639
6315
  onClick: onRowClick,
5640
6316
  ...props,
5641
6317
  children: [
5642
- /* @__PURE__ */ jsxs62("div", { className: ScTableListMobile_default.profileRow, children: [
5643
- /* @__PURE__ */ jsxs62("div", { className: ScTableListMobile_default.userInfo, children: [
5644
- /* @__PURE__ */ jsx71("p", { className: ScTableListMobile_default.userName, children: name }),
5645
- /* @__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 })
5646
6322
  ] }),
5647
- /* @__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 }) })
5648
6324
  ] }),
5649
- /* @__PURE__ */ jsxs62("div", { className: ScTableListMobile_default.detailsRow, children: [
5650
- /* @__PURE__ */ jsx71("div", { className: ScTableListMobile_default.roleBadge, children: /* @__PURE__ */ jsx71("p", { className: ScTableListMobile_default.roleText, children: role }) }),
5651
- /* @__PURE__ */ jsxs62("div", { className: ScTableListMobile_default.accessInfo, children: [
5652
- 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)) }),
5653
- 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)) })
5654
6330
  ] })
5655
6331
  ] })
5656
6332
  ]
@@ -5678,7 +6354,7 @@ var ScWorkspaceSwitchMobile_default = {
5678
6354
  };
5679
6355
 
5680
6356
  // src/SC-workspaceSwitch-Mobile/ScWorkspaceSwitchMobile.tsx
5681
- import { jsx as jsx72, jsxs as jsxs63 } from "react/jsx-runtime";
6357
+ import { jsx as jsx75, jsxs as jsxs65 } from "react/jsx-runtime";
5682
6358
  var ScWorkspaceSwitchMobile = ({
5683
6359
  storeName = "Stores",
5684
6360
  initials = "WS",
@@ -5691,24 +6367,24 @@ var ScWorkspaceSwitchMobile = ({
5691
6367
  ...props
5692
6368
  }) => {
5693
6369
  const variant = currentWs ? "current" : "other";
5694
- return /* @__PURE__ */ jsxs63(
6370
+ return /* @__PURE__ */ jsxs65(
5695
6371
  "div",
5696
6372
  {
5697
6373
  className: ScWorkspaceSwitchMobile_default.scWorkspaceSwitchMobile + " " + ScWorkspaceSwitchMobile_default["variant-" + variant] + " " + className,
5698
6374
  onClick,
5699
6375
  ...props,
5700
6376
  children: [
5701
- /* @__PURE__ */ jsxs63("div", { className: ScWorkspaceSwitchMobile_default.workspaceInfo, children: [
5702
- /* @__PURE__ */ jsxs63("div", { className: ScWorkspaceSwitchMobile_default.wsNameRow, children: [
5703
- /* @__PURE__ */ jsx72("div", { className: ScWorkspaceSwitchMobile_default.initialsBox, children: /* @__PURE__ */ jsx72("span", { className: ScWorkspaceSwitchMobile_default.initialsText, children: initials }) }),
5704
- /* @__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 })
5705
6381
  ] }),
5706
- /* @__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 }) })
5707
6383
  ] }),
5708
- /* @__PURE__ */ jsx72("div", { className: ScWorkspaceSwitchMobile_default.divider }),
5709
- /* @__PURE__ */ jsxs63("div", { className: ScWorkspaceSwitchMobile_default.ownerRow, children: [
5710
- /* @__PURE__ */ jsx72("div", { className: ScWorkspaceSwitchMobile_default.ownerIconContainer, children: ownerIcon && /* @__PURE__ */ jsx72("span", { className: ScWorkspaceSwitchMobile_default.ownerIcon, children: ownerIcon }) }),
5711
- /* @__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 })
5712
6388
  ] })
5713
6389
  ]
5714
6390
  }
@@ -5735,7 +6411,7 @@ var ScWorkspaceSettingsMobile_default = {
5735
6411
  };
5736
6412
 
5737
6413
  // src/SC-workspaceSettings-Mobile/ScWorkspaceSettingsMobile.tsx
5738
- import { jsx as jsx73, jsxs as jsxs64 } from "react/jsx-runtime";
6414
+ import { jsx as jsx76, jsxs as jsxs66 } from "react/jsx-runtime";
5739
6415
  var ScWorkspaceSettingsMobile = ({
5740
6416
  storeName = "Stores",
5741
6417
  initials = "WS",
@@ -5750,28 +6426,28 @@ var ScWorkspaceSettingsMobile = ({
5750
6426
  ...props
5751
6427
  }) => {
5752
6428
  const variant = currentWs ? "current" : "other";
5753
- return /* @__PURE__ */ jsxs64(
6429
+ return /* @__PURE__ */ jsxs66(
5754
6430
  "div",
5755
6431
  {
5756
6432
  className: ScWorkspaceSettingsMobile_default.scWorkspaceSettingsMobile + " " + ScWorkspaceSettingsMobile_default["variant-" + variant] + " " + className,
5757
6433
  onClick,
5758
6434
  ...props,
5759
6435
  children: [
5760
- /* @__PURE__ */ jsxs64("div", { className: ScWorkspaceSettingsMobile_default.workspaceInfo, children: [
5761
- /* @__PURE__ */ jsxs64("div", { className: ScWorkspaceSettingsMobile_default.wsNameRow, children: [
5762
- /* @__PURE__ */ jsx73("div", { className: ScWorkspaceSettingsMobile_default.initialsBox, children: /* @__PURE__ */ jsx73("span", { className: ScWorkspaceSettingsMobile_default.initialsText, children: initials }) }),
5763
- /* @__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 })
5764
6440
  ] }),
5765
- /* @__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 }) })
5766
6442
  ] }),
5767
- /* @__PURE__ */ jsx73("div", { className: ScWorkspaceSettingsMobile_default.divider }),
5768
- /* @__PURE__ */ jsxs64("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
5769
- /* @__PURE__ */ jsx73("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: ownerIcon && /* @__PURE__ */ jsx73("span", { className: ScWorkspaceSettingsMobile_default.icon, children: ownerIcon }) }),
5770
- /* @__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 })
5771
6447
  ] }),
5772
- /* @__PURE__ */ jsxs64("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
5773
- /* @__PURE__ */ jsx73("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: teamIcon && /* @__PURE__ */ jsx73("span", { className: ScWorkspaceSettingsMobile_default.icon, children: teamIcon }) }),
5774
- /* @__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 })
5775
6451
  ] })
5776
6452
  ]
5777
6453
  }
@@ -5794,7 +6470,7 @@ var ScMobileTopNav_default = {
5794
6470
  };
5795
6471
 
5796
6472
  // src/SC-MobileTopNav/ScMobileTopNav.tsx
5797
- import { Fragment as Fragment22, 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";
5798
6474
  var ScMobileTopNav = ({
5799
6475
  type = "home",
5800
6476
  searchIcon = false,
@@ -5817,22 +6493,22 @@ var ScMobileTopNav = ({
5817
6493
  }) => {
5818
6494
  const hasBorder = type === "chat" || type === "inApp";
5819
6495
  const showSearch = type === "inApp" && searchIcon && search;
5820
- return /* @__PURE__ */ jsxs65(
6496
+ return /* @__PURE__ */ jsxs67(
5821
6497
  "div",
5822
6498
  {
5823
6499
  className: ScMobileTopNav_default.scMobileTopNav + " " + (hasBorder ? ScMobileTopNav_default.withBorder : "") + " " + className,
5824
6500
  ...props,
5825
6501
  children: [
5826
- type === "home" && /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5827
- type === "chat" && /* @__PURE__ */ jsxs65(Fragment22, { children: [
5828
- /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5829
- /* @__PURE__ */ jsx74("p", { className: ScMobileTopNav_default.chatTitle, children: chatTitle }),
5830
- /* @__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 }) })
5831
6507
  ] }),
5832
- showSearch && /* @__PURE__ */ jsxs65(Fragment22, { children: [
5833
- /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.searchRow, children: /* @__PURE__ */ jsxs65("div", { className: ScMobileTopNav_default.searchInputContainer, children: [
5834
- /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconContainer, onClick: onSearchClick, children: searchIconElement || /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5835
- /* @__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(
5836
6512
  "input",
5837
6513
  {
5838
6514
  type: "text",
@@ -5843,17 +6519,17 @@ var ScMobileTopNav = ({
5843
6519
  }
5844
6520
  ) })
5845
6521
  ] }) }),
5846
- /* @__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 }) })
5847
6523
  ] }),
5848
- type === "inApp" && !search && /* @__PURE__ */ jsxs65(Fragment22, { children: [
5849
- /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ jsx74("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5850
- /* @__PURE__ */ jsx74("p", { className: ScMobileTopNav_default.heading, children: heading }),
5851
- /* @__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(
5852
6528
  "div",
5853
6529
  {
5854
6530
  className: ScMobileTopNav_default.iconContainer + " " + (!searchIcon ? ScMobileTopNav_default.hidden : ""),
5855
6531
  onClick: onSearchClick,
5856
- 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 })
5857
6533
  }
5858
6534
  )
5859
6535
  ] })
@@ -5874,7 +6550,7 @@ var ScMobileBottomAction_default = {
5874
6550
  };
5875
6551
 
5876
6552
  // src/SC-MobileBottomAction/ScMobileBottomAction.tsx
5877
- import { jsx as jsx75, jsxs as jsxs66 } from "react/jsx-runtime";
6553
+ import { jsx as jsx78, jsxs as jsxs68 } from "react/jsx-runtime";
5878
6554
  var ScMobileBottomAction = ({
5879
6555
  text = "Save Changes",
5880
6556
  disabled = false,
@@ -5886,28 +6562,28 @@ var ScMobileBottomAction = ({
5886
6562
  ...props
5887
6563
  }) => {
5888
6564
  const isTwoButton = !!secondaryText;
5889
- return /* @__PURE__ */ jsxs66(
6565
+ return /* @__PURE__ */ jsxs68(
5890
6566
  "div",
5891
6567
  {
5892
6568
  className: ScMobileBottomAction_default.scMobileBottomAction + (isTwoButton ? " " + ScMobileBottomAction_default.twoButton : "") + " " + className,
5893
6569
  ...props,
5894
6570
  children: [
5895
- isTwoButton && /* @__PURE__ */ jsx75(
6571
+ isTwoButton && /* @__PURE__ */ jsx78(
5896
6572
  "button",
5897
6573
  {
5898
6574
  className: ScMobileBottomAction_default.outlineButton + " " + (secondaryDisabled ? ScMobileBottomAction_default.disabled : ""),
5899
6575
  onClick: onSecondaryClick,
5900
6576
  disabled: secondaryDisabled,
5901
- children: /* @__PURE__ */ jsx75("span", { className: ScMobileBottomAction_default.outlineButtonText, children: secondaryText })
6577
+ children: /* @__PURE__ */ jsx78("span", { className: ScMobileBottomAction_default.outlineButtonText, children: secondaryText })
5902
6578
  }
5903
6579
  ),
5904
- /* @__PURE__ */ jsx75(
6580
+ /* @__PURE__ */ jsx78(
5905
6581
  "button",
5906
6582
  {
5907
6583
  className: ScMobileBottomAction_default.button + " " + (disabled ? ScMobileBottomAction_default.disabled : ""),
5908
6584
  onClick,
5909
6585
  disabled,
5910
- children: /* @__PURE__ */ jsx75("span", { className: ScMobileBottomAction_default.buttonText, children: text })
6586
+ children: /* @__PURE__ */ jsx78("span", { className: ScMobileBottomAction_default.buttonText, children: text })
5911
6587
  }
5912
6588
  )
5913
6589
  ]
@@ -5925,7 +6601,7 @@ var ScPopUpMenu_default = {
5925
6601
  };
5926
6602
 
5927
6603
  // src/SC-PopUpMenu/ScPopUpMenu.tsx
5928
- import { jsx as jsx76, jsxs as jsxs67 } from "react/jsx-runtime";
6604
+ import { jsx as jsx79, jsxs as jsxs69 } from "react/jsx-runtime";
5929
6605
  var ScPopUpMenu = ({
5930
6606
  menu = "Options",
5931
6607
  state = "default",
@@ -5934,15 +6610,15 @@ var ScPopUpMenu = ({
5934
6610
  className,
5935
6611
  ...props
5936
6612
  }) => {
5937
- return /* @__PURE__ */ jsxs67(
6613
+ return /* @__PURE__ */ jsxs69(
5938
6614
  "div",
5939
6615
  {
5940
6616
  className: ScPopUpMenu_default.scPopUpMenu + " " + ScPopUpMenu_default["state-" + state] + " " + className,
5941
6617
  onClick,
5942
6618
  ...props,
5943
6619
  children: [
5944
- icon && /* @__PURE__ */ jsx76("span", { className: ScPopUpMenu_default.icon, children: icon }),
5945
- /* @__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 })
5946
6622
  ]
5947
6623
  }
5948
6624
  );
@@ -5968,7 +6644,7 @@ var ScReferralCardMobile_default = {
5968
6644
  };
5969
6645
 
5970
6646
  // src/SC-referralCard-Mobile/ScReferralCardMobile.tsx
5971
- import { jsx as jsx77, jsxs as jsxs68 } from "react/jsx-runtime";
6647
+ import { jsx as jsx80, jsxs as jsxs70 } from "react/jsx-runtime";
5972
6648
  var ScReferralCardMobile = ({
5973
6649
  name = "Chris Hemsworth",
5974
6650
  email = "chris@kepler.com",
@@ -5981,27 +6657,27 @@ var ScReferralCardMobile = ({
5981
6657
  ...props
5982
6658
  }) => {
5983
6659
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
5984
- return /* @__PURE__ */ jsxs68(
6660
+ return /* @__PURE__ */ jsxs70(
5985
6661
  "div",
5986
6662
  {
5987
6663
  className: ScReferralCardMobile_default.scReferralCardMobile + " " + className,
5988
6664
  onClick,
5989
6665
  ...props,
5990
6666
  children: [
5991
- /* @__PURE__ */ jsxs68("div", { className: ScReferralCardMobile_default.userRow, children: [
5992
- /* @__PURE__ */ jsxs68("div", { className: ScReferralCardMobile_default.profileSection, children: [
5993
- /* @__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 }) }),
5994
- /* @__PURE__ */ jsxs68("div", { className: ScReferralCardMobile_default.userInfo, children: [
5995
- /* @__PURE__ */ jsx77("p", { className: ScReferralCardMobile_default.userName, children: name }),
5996
- /* @__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 })
5997
6673
  ] })
5998
6674
  ] }),
5999
- /* @__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 }) })
6000
6676
  ] }),
6001
- /* @__PURE__ */ jsx77("div", { className: ScReferralCardMobile_default.divider }),
6002
- /* @__PURE__ */ jsxs68("div", { className: ScReferralCardMobile_default.detailsRow, children: [
6003
- /* @__PURE__ */ jsx77("p", { className: ScReferralCardMobile_default.dateText, children: date }),
6004
- /* @__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 })
6005
6681
  ] })
6006
6682
  ]
6007
6683
  }
@@ -6018,19 +6694,19 @@ var InvoiceHistoryMobile_default = {
6018
6694
  };
6019
6695
 
6020
6696
  // src/SC-InvoiceHistoryMobile/InvoiceHistoryMobile.tsx
6021
- import { jsx as jsx78, jsxs as jsxs69 } from "react/jsx-runtime";
6697
+ import { jsx as jsx81, jsxs as jsxs71 } from "react/jsx-runtime";
6022
6698
  var InvoiceHistoryMobile = ({
6023
6699
  invoiceId = "# INV-2800-2026",
6024
6700
  date = "Nov 9th, 2025",
6025
6701
  amount = "\u20B9320.89",
6026
6702
  className
6027
6703
  }) => {
6028
- return /* @__PURE__ */ jsxs69("div", { className: InvoiceHistoryMobile_default.invoiceHistoryMobile + " " + (className ?? ""), children: [
6029
- /* @__PURE__ */ jsxs69("div", { className: InvoiceHistoryMobile_default.info, children: [
6030
- /* @__PURE__ */ jsx78("div", { className: InvoiceHistoryMobile_default.invoiceId, children: invoiceId }),
6031
- /* @__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 })
6032
6708
  ] }),
6033
- /* @__PURE__ */ jsx78("div", { className: InvoiceHistoryMobile_default.amount, children: amount })
6709
+ /* @__PURE__ */ jsx81("div", { className: InvoiceHistoryMobile_default.amount, children: amount })
6034
6710
  ] });
6035
6711
  };
6036
6712
 
@@ -6048,7 +6724,7 @@ var UsageHistoryMobile_default = {
6048
6724
  };
6049
6725
 
6050
6726
  // src/SC-UsageHistoryMobile/UsageHistoryMobile.tsx
6051
- import { jsx as jsx79, jsxs as jsxs70 } from "react/jsx-runtime";
6727
+ import { jsx as jsx82, jsxs as jsxs72 } from "react/jsx-runtime";
6052
6728
  var UsageHistoryMobile = ({
6053
6729
  serviceName = "Artifax Generation",
6054
6730
  credits = "50",
@@ -6057,18 +6733,18 @@ var UsageHistoryMobile = ({
6057
6733
  balance = "84,902",
6058
6734
  className
6059
6735
  }) => {
6060
- return /* @__PURE__ */ jsxs70("div", { className: UsageHistoryMobile_default.usageHistoryMobile + " " + (className ?? ""), children: [
6061
- /* @__PURE__ */ jsxs70("div", { className: UsageHistoryMobile_default.row1, children: [
6062
- /* @__PURE__ */ jsx79("span", { className: UsageHistoryMobile_default.serviceName, children: serviceName }),
6063
- /* @__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 })
6064
6740
  ] }),
6065
- /* @__PURE__ */ jsxs70("div", { className: UsageHistoryMobile_default.row2, children: [
6066
- /* @__PURE__ */ jsxs70("div", { className: UsageHistoryMobile_default.metaLeft, children: [
6067
- /* @__PURE__ */ jsx79("span", { className: UsageHistoryMobile_default.metaText, children: userName }),
6068
- /* @__PURE__ */ jsx79("div", { className: UsageHistoryMobile_default.divider }),
6069
- /* @__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 })
6070
6746
  ] }),
6071
- /* @__PURE__ */ jsx79("span", { className: UsageHistoryMobile_default.balance, children: balance })
6747
+ /* @__PURE__ */ jsx82("span", { className: UsageHistoryMobile_default.balance, children: balance })
6072
6748
  ] })
6073
6749
  ] });
6074
6750
  };
@@ -6092,7 +6768,7 @@ var ScWorkspaceSwitchMobileV2_default = {
6092
6768
  };
6093
6769
 
6094
6770
  // src/SC-WorkspaceSwitchMobile-V2/ScWorkspaceSwitchMobileV2.tsx
6095
- import { jsx as jsx80, jsxs as jsxs71 } from "react/jsx-runtime";
6771
+ import { jsx as jsx83, jsxs as jsxs73 } from "react/jsx-runtime";
6096
6772
  var ScWorkspaceSwitchMobileV2 = ({
6097
6773
  wsName = "Workspace name is kepler",
6098
6774
  initials = "WS",
@@ -6105,14 +6781,14 @@ var ScWorkspaceSwitchMobileV2 = ({
6105
6781
  className,
6106
6782
  ...props
6107
6783
  }) => {
6108
- return /* @__PURE__ */ jsx80(
6784
+ return /* @__PURE__ */ jsx83(
6109
6785
  "div",
6110
6786
  {
6111
6787
  className: ScWorkspaceSwitchMobileV2_default.scWorkspaceSwitchMobileV2 + " " + ScWorkspaceSwitchMobileV2_default["type-" + type] + " " + className,
6112
6788
  onClick,
6113
6789
  ...props,
6114
- children: /* @__PURE__ */ jsxs71("div", { className: ScWorkspaceSwitchMobileV2_default.workspaceInfo, children: [
6115
- /* @__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(
6116
6792
  ScDp,
6117
6793
  {
6118
6794
  type: imageUrl ? "image" : "initial",
@@ -6126,14 +6802,14 @@ var ScWorkspaceSwitchMobileV2 = ({
6126
6802
  }
6127
6803
  }
6128
6804
  ) }),
6129
- /* @__PURE__ */ jsxs71("div", { className: ScWorkspaceSwitchMobileV2_default.textContainer, children: [
6130
- /* @__PURE__ */ jsx80("p", { className: ScWorkspaceSwitchMobileV2_default.wsName, children: wsName }),
6131
- /* @__PURE__ */ jsxs71("div", { className: ScWorkspaceSwitchMobileV2_default.userDetails, children: [
6132
- /* @__PURE__ */ jsx80("span", { className: ScWorkspaceSwitchMobileV2_default.roleText + (role === "Member" ? " " + ScWorkspaceSwitchMobileV2_default.roleMember : ""), children: role }),
6133
- /* @__PURE__ */ jsx80("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
6134
- /* @__PURE__ */ jsx80("span", { className: ScWorkspaceSwitchMobileV2_default.planText, children: plan }),
6135
- /* @__PURE__ */ jsx80("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
6136
- /* @__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 })
6137
6813
  ] })
6138
6814
  ] })
6139
6815
  ] })
@@ -6160,7 +6836,7 @@ var ScImageField_default = {
6160
6836
 
6161
6837
  // src/SC-imageField/ScImageField.tsx
6162
6838
  import { SiconUpload as SiconUpload2, SiconDelete as SiconDelete2 } from "@streamoid/icons";
6163
- import { jsx as jsx81, jsxs as jsxs72 } from "react/jsx-runtime";
6839
+ import { jsx as jsx84, jsxs as jsxs74 } from "react/jsx-runtime";
6164
6840
  var ScImageField = ({
6165
6841
  label = "Label",
6166
6842
  imagePreview,
@@ -6183,8 +6859,8 @@ var ScImageField = ({
6183
6859
  }
6184
6860
  e.target.value = "";
6185
6861
  }
6186
- return /* @__PURE__ */ jsxs72("div", { className: ScImageField_default.scImageField + " " + (className ?? ""), children: [
6187
- /* @__PURE__ */ jsx81(
6862
+ return /* @__PURE__ */ jsxs74("div", { className: ScImageField_default.scImageField + " " + (className ?? ""), children: [
6863
+ /* @__PURE__ */ jsx84(
6188
6864
  "input",
6189
6865
  {
6190
6866
  ref: inputRef,
@@ -6194,9 +6870,9 @@ var ScImageField = ({
6194
6870
  onChange: handleChange
6195
6871
  }
6196
6872
  ),
6197
- /* @__PURE__ */ jsx81("div", { className: ScImageField_default.labelContainer, children: /* @__PURE__ */ jsx81("div", { className: ScImageField_default.label, children: label }) }),
6198
- hasImage ? /* @__PURE__ */ jsxs72("div", { className: ScImageField_default.previewArea, children: [
6199
- /* @__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(
6200
6876
  "img",
6201
6877
  {
6202
6878
  className: ScImageField_default.previewImage,
@@ -6204,8 +6880,8 @@ var ScImageField = ({
6204
6880
  alt: "preview"
6205
6881
  }
6206
6882
  ),
6207
- /* @__PURE__ */ jsx81("span", { className: ScImageField_default.fileName, children: imageName || "image" }),
6208
- /* @__PURE__ */ jsx81(
6883
+ /* @__PURE__ */ jsx84("span", { className: ScImageField_default.fileName, children: imageName || "image" }),
6884
+ /* @__PURE__ */ jsx84(
6209
6885
  SiconDelete2,
6210
6886
  {
6211
6887
  className: ScImageField_default.removeIcon,
@@ -6216,9 +6892,9 @@ var ScImageField = ({
6216
6892
  }
6217
6893
  }
6218
6894
  )
6219
- ] }) : /* @__PURE__ */ jsxs72("div", { className: ScImageField_default.uploadArea, onClick: handleClick, children: [
6220
- /* @__PURE__ */ jsx81(SiconUpload2, { className: ScImageField_default.uploadIcon, color: "var(--alias-text-and-icons-secondary, #dadada)" }),
6221
- /* @__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" })
6222
6898
  ] })
6223
6899
  ] });
6224
6900
  };
@@ -6232,7 +6908,7 @@ var ScSettingsTabComp_default = {
6232
6908
  };
6233
6909
 
6234
6910
  // src/SC-settingsTabComp/ScSettingsTabComp.tsx
6235
- import { jsx as jsx82 } from "react/jsx-runtime";
6911
+ import { jsx as jsx85 } from "react/jsx-runtime";
6236
6912
  var ScSettingsTabComp = ({
6237
6913
  tabName = "Tab",
6238
6914
  active = false,
@@ -6240,12 +6916,12 @@ var ScSettingsTabComp = ({
6240
6916
  className
6241
6917
  }) => {
6242
6918
  const variantsClassName = ScSettingsTabComp_default["active-" + active];
6243
- return /* @__PURE__ */ jsx82(
6919
+ return /* @__PURE__ */ jsx85(
6244
6920
  "div",
6245
6921
  {
6246
6922
  className: ScSettingsTabComp_default.scSettingsTabComp + " " + variantsClassName + " " + (className ?? ""),
6247
6923
  onClick,
6248
- children: /* @__PURE__ */ jsx82("span", { className: ScSettingsTabComp_default.tabText, children: tabName })
6924
+ children: /* @__PURE__ */ jsx85("span", { className: ScSettingsTabComp_default.tabText, children: tabName })
6249
6925
  }
6250
6926
  );
6251
6927
  };
@@ -6265,7 +6941,7 @@ var ScCreditsUsageCardMobile_default = {
6265
6941
 
6266
6942
  // src/SC-Credits usage card-Mobile/ScCreditsUsageCardMobile.tsx
6267
6943
  import { SiconCredits as SiconCredits3 } from "@streamoid/icons";
6268
- import { jsx as jsx83, jsxs as jsxs73 } from "react/jsx-runtime";
6944
+ import { jsx as jsx86, jsxs as jsxs75 } from "react/jsx-runtime";
6269
6945
  var ScCreditsUsageCardMobile = ({
6270
6946
  usageLabel = "Credits usage",
6271
6947
  usageText = "8,450 / 30,000",
@@ -6275,23 +6951,23 @@ var ScCreditsUsageCardMobile = ({
6275
6951
  className,
6276
6952
  ...props
6277
6953
  }) => {
6278
- return /* @__PURE__ */ jsxs73("div", { className: ScCreditsUsageCardMobile_default.scCreditsUsageCardMobile + " " + (className ?? ""), ...props, children: [
6279
- /* @__PURE__ */ jsxs73("div", { className: ScCreditsUsageCardMobile_default.header, children: [
6280
- /* @__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(
6281
6957
  SiconCredits3,
6282
6958
  {
6283
6959
  className: ScCreditsUsageCardMobile_default.headerIcon,
6284
6960
  color: "var(--alias-text-and-icons-tertiary, #9e9e9e)"
6285
6961
  }
6286
6962
  ),
6287
- /* @__PURE__ */ jsx83("span", { className: ScCreditsUsageCardMobile_default.headerLabel, children: usageLabel })
6963
+ /* @__PURE__ */ jsx86("span", { className: ScCreditsUsageCardMobile_default.headerLabel, children: usageLabel })
6288
6964
  ] }),
6289
- /* @__PURE__ */ jsx83("div", { className: ScCreditsUsageCardMobile_default.divider }),
6290
- /* @__PURE__ */ jsxs73("div", { className: ScCreditsUsageCardMobile_default.usageInfo, children: [
6291
- /* @__PURE__ */ jsx83("div", { className: ScCreditsUsageCardMobile_default.usageText, children: usageText }),
6292
- /* @__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 })
6293
6969
  ] }),
6294
- /* @__PURE__ */ jsx83(
6970
+ /* @__PURE__ */ jsx86(
6295
6971
  ScButton,
6296
6972
  {
6297
6973
  text: buyButtonText,
@@ -6333,7 +7009,7 @@ var ScPlanDetailsCardMobile_default = {
6333
7009
 
6334
7010
  // src/SC-Plan details card-Mobile/ScPlanDetailsCardMobile.tsx
6335
7011
  import { SiconBilling as SiconBilling4 } from "@streamoid/icons";
6336
- import { Fragment as Fragment23, 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";
6337
7013
  var ScPlanDetailsCardMobile = ({
6338
7014
  planName = "Pro",
6339
7015
  planCredits = "30,000 credits",
@@ -6347,20 +7023,20 @@ var ScPlanDetailsCardMobile = ({
6347
7023
  className,
6348
7024
  ...props
6349
7025
  }) => {
6350
- return /* @__PURE__ */ jsxs74("div", { className: ScPlanDetailsCardMobile_default.scPlanDetailsCardMobile + " " + (className ?? ""), ...props, children: [
6351
- /* @__PURE__ */ jsxs74("div", { className: ScPlanDetailsCardMobile_default.planHeader, children: [
6352
- /* @__PURE__ */ jsxs74("div", { className: ScPlanDetailsCardMobile_default.headerLeft, children: [
6353
- /* @__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(
6354
7030
  SiconBilling4,
6355
7031
  {
6356
7032
  className: ScPlanDetailsCardMobile_default.headerIcon,
6357
7033
  color: "var(--alias-text-and-icons-tertiary, #9e9e9e)"
6358
7034
  }
6359
7035
  ),
6360
- /* @__PURE__ */ jsx84("span", { className: ScPlanDetailsCardMobile_default.headerLabel, children: currentPlanLabel })
7036
+ /* @__PURE__ */ jsx87("span", { className: ScPlanDetailsCardMobile_default.headerLabel, children: currentPlanLabel })
6361
7037
  ] }),
6362
- /* @__PURE__ */ jsx84("div", { className: ScPlanDetailsCardMobile_default.badgeGroup, children: isLoading ? /* @__PURE__ */ jsx84("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.badgeSkeleton}` }) : /* @__PURE__ */ jsxs74(Fragment23, { children: [
6363
- /* @__PURE__ */ jsx84(
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(
6364
7040
  ScBadges,
6365
7041
  {
6366
7042
  text: badgeText,
@@ -6369,28 +7045,28 @@ var ScPlanDetailsCardMobile = ({
6369
7045
  className: ScPlanDetailsCardMobile_default.scBadgesInstance
6370
7046
  }
6371
7047
  ),
6372
- badgeSubText && /* @__PURE__ */ jsxs74(Fragment23, { children: [
6373
- /* @__PURE__ */ jsx84("span", { className: ScPlanDetailsCardMobile_default.badgeDot }),
6374
- /* @__PURE__ */ jsx84("span", { className: ScPlanDetailsCardMobile_default.badgeSubText, children: badgeSubText })
7048
+ badgeSubText && /* @__PURE__ */ jsxs76(Fragment24, { children: [
7049
+ /* @__PURE__ */ jsx87("span", { className: ScPlanDetailsCardMobile_default.badgeDot }),
7050
+ /* @__PURE__ */ jsx87("span", { className: ScPlanDetailsCardMobile_default.badgeSubText, children: badgeSubText })
6375
7051
  ] })
6376
7052
  ] }) })
6377
7053
  ] }),
6378
- /* @__PURE__ */ jsx84("div", { className: ScPlanDetailsCardMobile_default.divider }),
6379
- /* @__PURE__ */ jsx84("div", { className: ScPlanDetailsCardMobile_default.planInfo, children: isLoading ? /* @__PURE__ */ jsxs74(Fragment23, { children: [
6380
- /* @__PURE__ */ jsxs74("div", { className: ScPlanDetailsCardMobile_default.planNameRow, "aria-label": "Loading plan details", children: [
6381
- /* @__PURE__ */ jsx84("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.planNameSkeleton}` }),
6382
- /* @__PURE__ */ jsx84("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.creditsSkeleton}` })
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}` })
6383
7059
  ] }),
6384
- /* @__PURE__ */ jsx84("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.priceSkeleton}` })
6385
- ] }) : /* @__PURE__ */ jsxs74(Fragment23, { children: [
6386
- /* @__PURE__ */ jsxs74("div", { className: ScPlanDetailsCardMobile_default.planNameRow, children: [
6387
- /* @__PURE__ */ jsx84("span", { className: ScPlanDetailsCardMobile_default.planName, children: planName }),
6388
- /* @__PURE__ */ jsx84("div", { className: ScPlanDetailsCardMobile_default.dot }),
6389
- /* @__PURE__ */ jsx84("span", { className: ScPlanDetailsCardMobile_default.planName, children: planCredits })
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 })
6390
7066
  ] }),
6391
- /* @__PURE__ */ jsx84("div", { className: ScPlanDetailsCardMobile_default.planPrice, children: planPrice })
7067
+ /* @__PURE__ */ jsx87("div", { className: ScPlanDetailsCardMobile_default.planPrice, children: planPrice })
6392
7068
  ] }) }),
6393
- isLoading ? /* @__PURE__ */ jsx84("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.buttonSkeleton}` }) : /* @__PURE__ */ jsx84(
7069
+ isLoading ? /* @__PURE__ */ jsx87("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.buttonSkeleton}` }) : /* @__PURE__ */ jsx87(
6394
7070
  ScButton,
6395
7071
  {
6396
7072
  text: upgradeButtonText,
@@ -6407,6 +7083,8 @@ export {
6407
7083
  CreditWarningBanner,
6408
7084
  InvoiceHistoryMobile,
6409
7085
  NscWorkspaceSwitch,
7086
+ ProductCollapsedMark,
7087
+ ProductWordmark,
6410
7088
  ScAccess,
6411
7089
  ScAppCard,
6412
7090
  ScAppCardV3,
@@ -6424,6 +7102,7 @@ export {
6424
7102
  ScCalendar,
6425
7103
  ScCalendarDateComps,
6426
7104
  ScCatalogixInvite,
7105
+ ScCatalogixSidebar,
6427
7106
  ScCheckField,
6428
7107
  ScCheckbox,
6429
7108
  ScCreditsUsageCard,
@@ -6469,6 +7148,7 @@ export {
6469
7148
  ScSidebarIcons,
6470
7149
  ScSidebarMenu,
6471
7150
  ScSidebarProfile,
7151
+ ScSidebarSwitchMenu,
6472
7152
  ScSlider,
6473
7153
  ScStrLogo,
6474
7154
  ScTabComp,
@@ -6488,5 +7168,6 @@ export {
6488
7168
  ScWorkspaceSwitchMobileV2,
6489
7169
  StreamoidSidebar,
6490
7170
  StreamoidWorkspaceSwitcher,
6491
- UsageHistoryMobile
7171
+ UsageHistoryMobile,
7172
+ hasCollapsedMark
6492
7173
  };