@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.js CHANGED
@@ -23,6 +23,8 @@ __export(index_exports, {
23
23
  CreditWarningBanner: () => CreditWarningBanner,
24
24
  InvoiceHistoryMobile: () => InvoiceHistoryMobile,
25
25
  NscWorkspaceSwitch: () => NscWorkspaceSwitch,
26
+ ProductCollapsedMark: () => ProductCollapsedMark,
27
+ ProductWordmark: () => ProductWordmark,
26
28
  ScAccess: () => ScAccess,
27
29
  ScAppCard: () => ScAppCard,
28
30
  ScAppCardV3: () => ScAppCardV3,
@@ -40,6 +42,7 @@ __export(index_exports, {
40
42
  ScCalendar: () => ScCalendar,
41
43
  ScCalendarDateComps: () => ScCalendarDateComps,
42
44
  ScCatalogixInvite: () => ScCatalogixInvite,
45
+ ScCatalogixSidebar: () => ScCatalogixSidebar,
43
46
  ScCheckField: () => ScCheckField,
44
47
  ScCheckbox: () => ScCheckbox,
45
48
  ScCreditsUsageCard: () => ScCreditsUsageCard,
@@ -85,6 +88,7 @@ __export(index_exports, {
85
88
  ScSidebarIcons: () => ScSidebarIcons,
86
89
  ScSidebarMenu: () => ScSidebarMenu,
87
90
  ScSidebarProfile: () => ScSidebarProfile,
91
+ ScSidebarSwitchMenu: () => ScSidebarSwitchMenu,
88
92
  ScSlider: () => ScSlider,
89
93
  ScStrLogo: () => ScStrLogo,
90
94
  ScTabComp: () => ScTabComp,
@@ -104,7 +108,8 @@ __export(index_exports, {
104
108
  ScWorkspaceSwitchMobileV2: () => ScWorkspaceSwitchMobileV2,
105
109
  StreamoidSidebar: () => StreamoidSidebar,
106
110
  StreamoidWorkspaceSwitcher: () => StreamoidWorkspaceSwitcher,
107
- UsageHistoryMobile: () => UsageHistoryMobile
111
+ UsageHistoryMobile: () => UsageHistoryMobile,
112
+ hasCollapsedMark: () => hasCollapsedMark
108
113
  });
109
114
  module.exports = __toCommonJS(index_exports);
110
115
 
@@ -3002,6 +3007,7 @@ function StreamoidSidebar({
3002
3007
  profile,
3003
3008
  versionText = "v1.0.0",
3004
3009
  toggleIcon,
3010
+ toggleInProfile = false,
3005
3011
  hideFooter = false,
3006
3012
  preFooterContent,
3007
3013
  bodyContent,
@@ -3026,8 +3032,11 @@ function StreamoidSidebar({
3026
3032
  style: {
3027
3033
  backgroundColor: "var(--alias-surface-base)",
3028
3034
  borderRadius: "var(--radius-3xl)",
3035
+ // Explicit on all sides — a conditional `undefined` here strips the
3036
+ // bottom padding the shorthand set, letting the profile hover bg
3037
+ // touch the card's bottom edge.
3029
3038
  padding: "var(--spacing-md)",
3030
- paddingBottom: effectiveHideFooter ? "var(--spacing-md)" : void 0,
3039
+ paddingBottom: "var(--spacing-md)",
3031
3040
  width: 256,
3032
3041
  gap: "var(--spacing-xxs)"
3033
3042
  },
@@ -3135,7 +3144,76 @@ function StreamoidSidebar({
3135
3144
  }
3136
3145
  ) : null,
3137
3146
  /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(HDivider, {}),
3138
- profile ? /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(import_jsx_runtime41.Fragment, { children: [
3147
+ profile ? toggleInProfile && !effectiveHideFooter ? (
3148
+ /* Footer row: profile and collapse toggle are two SEPARATE
3149
+ interactive units side by side (own rounded hover bg each). */
3150
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
3151
+ "div",
3152
+ {
3153
+ className: "flex items-center shrink-0 w-full",
3154
+ style: { gap: "var(--spacing-md)", paddingTop: "var(--spacing-md)" },
3155
+ children: [
3156
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
3157
+ "div",
3158
+ {
3159
+ className: "flex flex-1 min-w-0 items-center cursor-pointer",
3160
+ style: {
3161
+ padding: "var(--spacing-md) var(--spacing-xl)",
3162
+ gap: "var(--spacing-md)",
3163
+ borderRadius: "var(--radius-3xl)"
3164
+ },
3165
+ onClick: profile.onClick,
3166
+ onMouseEnter: (e) => {
3167
+ e.currentTarget.style.background = "var(--alias-fill-neutral-neutral)";
3168
+ },
3169
+ onMouseLeave: (e) => {
3170
+ e.currentTarget.style.background = "transparent";
3171
+ },
3172
+ children: [
3173
+ profile.avatar,
3174
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("div", { className: "flex flex-col flex-1 min-w-0", children: [
3175
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
3176
+ "span",
3177
+ {
3178
+ className: "text-text-sm-medium truncate",
3179
+ style: { color: "var(--alias-text---icons-primary)" },
3180
+ children: profile.name
3181
+ }
3182
+ ),
3183
+ profile.subtitle ? /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
3184
+ "span",
3185
+ {
3186
+ className: "text-text-xs-regular truncate",
3187
+ style: { color: "var(--alias-text---icons-muted)" },
3188
+ children: profile.subtitle
3189
+ }
3190
+ ) : null
3191
+ ] })
3192
+ ]
3193
+ }
3194
+ ),
3195
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
3196
+ "div",
3197
+ {
3198
+ className: "flex items-center cursor-pointer shrink-0",
3199
+ style: {
3200
+ padding: "var(--spacing-md)",
3201
+ borderRadius: "var(--radius-3xl)"
3202
+ },
3203
+ onClick: onToggle,
3204
+ onMouseEnter: (e) => {
3205
+ e.currentTarget.style.background = "var(--alias-fill-neutral-neutral)";
3206
+ },
3207
+ onMouseLeave: (e) => {
3208
+ e.currentTarget.style.background = "transparent";
3209
+ },
3210
+ children: resolveToggleIcon(toggleIcon, true)
3211
+ }
3212
+ )
3213
+ ]
3214
+ }
3215
+ )
3216
+ ) : /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(import_jsx_runtime41.Fragment, { children: [
3139
3217
  /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
3140
3218
  "div",
3141
3219
  {
@@ -3177,7 +3255,7 @@ function StreamoidSidebar({
3177
3255
  ),
3178
3256
  !effectiveHideFooter && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(import_jsx_runtime41.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(HDivider, {}) })
3179
3257
  ] }) : null,
3180
- !effectiveHideFooter && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("div", { className: "shrink-0 w-full", children: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
3258
+ !effectiveHideFooter && !toggleInProfile && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("div", { className: "shrink-0 w-full", children: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
3181
3259
  "div",
3182
3260
  {
3183
3261
  className: "flex items-center w-full",
@@ -3323,27 +3401,24 @@ function StreamoidSidebar({
3323
3401
  }
3324
3402
  ) : null,
3325
3403
  /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(HDivider, {}),
3326
- profile ? /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(import_jsx_runtime41.Fragment, { children: [
3327
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
3328
- "div",
3329
- {
3330
- className: "flex items-center justify-center shrink-0 cursor-pointer",
3331
- style: {
3332
- padding: "var(--spacing-md) 0",
3333
- borderRadius: "var(--radius-3xl)"
3334
- },
3335
- onClick: profile.onClick,
3336
- onMouseEnter: (e) => {
3337
- e.currentTarget.style.background = "var(--alias-fill-neutral-neutral)";
3338
- },
3339
- onMouseLeave: (e) => {
3340
- e.currentTarget.style.background = "transparent";
3341
- },
3342
- children: profile.avatar
3343
- }
3344
- ),
3345
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(HDivider, {})
3346
- ] }) : null,
3404
+ profile ? /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
3405
+ "div",
3406
+ {
3407
+ className: "flex items-center justify-center shrink-0 cursor-pointer",
3408
+ style: {
3409
+ padding: "var(--spacing-md) 0",
3410
+ borderRadius: "var(--radius-3xl)"
3411
+ },
3412
+ onClick: profile.onClick,
3413
+ onMouseEnter: (e) => {
3414
+ e.currentTarget.style.background = "var(--alias-fill-neutral-neutral)";
3415
+ },
3416
+ onMouseLeave: (e) => {
3417
+ e.currentTarget.style.background = "transparent";
3418
+ },
3419
+ children: profile.avatar
3420
+ }
3421
+ ) : null,
3347
3422
  !hideFooter && /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
3348
3423
  "div",
3349
3424
  {
@@ -3366,14 +3441,14 @@ function StreamoidSidebar({
3366
3441
  children: resolveToggleIcon(toggleIcon, false)
3367
3442
  }
3368
3443
  ),
3369
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
3444
+ versionText ? /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
3370
3445
  "p",
3371
3446
  {
3372
3447
  className: "text-text-xs-regular text-center truncate",
3373
3448
  style: { color: "var(--alias-text---icons-muted)" },
3374
3449
  children: versionText
3375
3450
  }
3376
- )
3451
+ ) : null
3377
3452
  ]
3378
3453
  }
3379
3454
  )
@@ -3672,6 +3747,707 @@ var ScArtifaxSidebar = ({
3672
3747
  );
3673
3748
  };
3674
3749
 
3750
+ // src/SC-Catalogix-Sidebar/ScCatalogixSidebar.tsx
3751
+ var import_react9 = require("react");
3752
+
3753
+ // src/SC-Sidebar Switch menu/ScSidebarSwitchMenu.module.css
3754
+ var ScSidebarSwitchMenu_default = {
3755
+ scSidebarSwitchMenu: "ScSidebarSwitchMenu_scSidebarSwitchMenu",
3756
+ iconWrapper: "ScSidebarSwitchMenu_iconWrapper",
3757
+ content: "ScSidebarSwitchMenu_content",
3758
+ text: "ScSidebarSwitchMenu_text",
3759
+ description: "ScSidebarSwitchMenu_description",
3760
+ moreIconWrapper: "ScSidebarSwitchMenu_moreIconWrapper",
3761
+ "state-active": "ScSidebarSwitchMenu_state-active",
3762
+ "state-default-highlight": "ScSidebarSwitchMenu_state-default-highlight",
3763
+ "state-default-active": "ScSidebarSwitchMenu_state-default-active",
3764
+ "state-hover": "ScSidebarSwitchMenu_state-hover",
3765
+ "variant-collapsed": "ScSidebarSwitchMenu_variant-collapsed"
3766
+ };
3767
+
3768
+ // src/SC-Sidebar Switch menu/ScSidebarSwitchMenu.tsx
3769
+ var import_jsx_runtime43 = require("react/jsx-runtime");
3770
+ var ScSidebarSwitchMenu = ({
3771
+ icon,
3772
+ state = "default",
3773
+ variant = "expanded",
3774
+ className,
3775
+ text = "Pairtext",
3776
+ description = "Description",
3777
+ moreIcon,
3778
+ onMoreClick,
3779
+ ...props
3780
+ }) => {
3781
+ const variantsClassName = ScSidebarSwitchMenu_default["state-" + state] + " " + ScSidebarSwitchMenu_default["variant-" + variant];
3782
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
3783
+ "div",
3784
+ {
3785
+ className: ScSidebarSwitchMenu_default.scSidebarSwitchMenu + (className ? " " + className : "") + " " + variantsClassName,
3786
+ ...props,
3787
+ children: [
3788
+ icon ? /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { className: ScSidebarSwitchMenu_default.iconWrapper, children: icon }) : null,
3789
+ variant === "expanded" && /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(import_jsx_runtime43.Fragment, { children: [
3790
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)("div", { className: ScSidebarSwitchMenu_default.content, children: [
3791
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { className: ScSidebarSwitchMenu_default.text, children: text }),
3792
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { className: ScSidebarSwitchMenu_default.description, children: description })
3793
+ ] }),
3794
+ moreIcon && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
3795
+ "div",
3796
+ {
3797
+ className: ScSidebarSwitchMenu_default.moreIconWrapper,
3798
+ onClick: (e) => {
3799
+ e.stopPropagation();
3800
+ onMoreClick?.(e);
3801
+ },
3802
+ children: moreIcon
3803
+ }
3804
+ )
3805
+ ] })
3806
+ ]
3807
+ }
3808
+ );
3809
+ };
3810
+
3811
+ // src/SC-SideBarLogoUnit/ScSideBarLogoUnit.module.css
3812
+ var ScSideBarLogoUnit_default = {
3813
+ scSideBarLogoUnit: "ScSideBarLogoUnit_scSideBarLogoUnit",
3814
+ row: "ScSideBarLogoUnit_row",
3815
+ nonInteractive: "ScSideBarLogoUnit_nonInteractive",
3816
+ forceHover: "ScSideBarLogoUnit_forceHover",
3817
+ wordmarkSlot: "ScSideBarLogoUnit_wordmarkSlot",
3818
+ switch: "ScSideBarLogoUnit_switch",
3819
+ switchIcon: "ScSideBarLogoUnit_switchIcon",
3820
+ collapsed: "ScSideBarLogoUnit_collapsed",
3821
+ collapsedTrigger: "ScSideBarLogoUnit_collapsedTrigger",
3822
+ collapsedWordmarkSlot: "ScSideBarLogoUnit_collapsedWordmarkSlot"
3823
+ };
3824
+
3825
+ // src/SC-SideBarLogoUnit/ScSideBarLogoUnit.tsx
3826
+ var import_icons36 = require("@streamoid/icons");
3827
+
3828
+ // src/SC-SideBarLogoUnit/wordmarks.tsx
3829
+ var import_jsx_runtime44 = require("react/jsx-runtime");
3830
+ var WORDMARKS = {
3831
+ "CXO": {
3832
+ "viewBox": "0 0 56 32",
3833
+ "width": 56,
3834
+ "paths": [
3835
+ {
3836
+ "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"
3837
+ },
3838
+ {
3839
+ "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"
3840
+ },
3841
+ {
3842
+ "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"
3843
+ },
3844
+ {
3845
+ "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",
3846
+ "fillRule": "evenodd",
3847
+ "clipRule": "evenodd"
3848
+ },
3849
+ {
3850
+ "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",
3851
+ "fillRule": "evenodd",
3852
+ "clipRule": "evenodd"
3853
+ },
3854
+ {
3855
+ "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"
3856
+ },
3857
+ {
3858
+ "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",
3859
+ "fillRule": "evenodd",
3860
+ "clipRule": "evenodd"
3861
+ },
3862
+ {
3863
+ "d": "M41.7215 32H40.5622V27.3469H41.7215V32Z"
3864
+ },
3865
+ {
3866
+ "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",
3867
+ "fillRule": "evenodd",
3868
+ "clipRule": "evenodd"
3869
+ },
3870
+ {
3871
+ "d": "M41.7215 26.8571H40.5622V25.6327H41.7215V26.8571Z"
3872
+ },
3873
+ {
3874
+ "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"
3875
+ },
3876
+ {
3877
+ "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"
3878
+ },
3879
+ {
3880
+ "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"
3881
+ }
3882
+ ]
3883
+ },
3884
+ "Catalogix": {
3885
+ "viewBox": "0 0 117 32",
3886
+ "width": 117,
3887
+ "paths": [
3888
+ {
3889
+ "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"
3890
+ },
3891
+ {
3892
+ "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"
3893
+ },
3894
+ {
3895
+ "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"
3896
+ },
3897
+ {
3898
+ "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",
3899
+ "fillRule": "evenodd",
3900
+ "clipRule": "evenodd"
3901
+ },
3902
+ {
3903
+ "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",
3904
+ "fillRule": "evenodd",
3905
+ "clipRule": "evenodd"
3906
+ },
3907
+ {
3908
+ "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"
3909
+ },
3910
+ {
3911
+ "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",
3912
+ "fillRule": "evenodd",
3913
+ "clipRule": "evenodd"
3914
+ },
3915
+ {
3916
+ "d": "M41.4132 32H40.2499V27.3469H41.4132V32Z"
3917
+ },
3918
+ {
3919
+ "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",
3920
+ "fillRule": "evenodd",
3921
+ "clipRule": "evenodd"
3922
+ },
3923
+ {
3924
+ "d": "M41.4132 26.8571H40.2499V25.6327H41.4132V26.8571Z"
3925
+ },
3926
+ {
3927
+ "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"
3928
+ },
3929
+ {
3930
+ "d": "M100.088 18.0731H96.8698V4.83722H100.088V18.0731ZM100.088 3.34885H96.8698V0.265797H100.088V3.34885Z"
3931
+ },
3932
+ {
3933
+ "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"
3934
+ },
3935
+ {
3936
+ "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"
3937
+ },
3938
+ {
3939
+ "d": "M62.421 18.0731H59.2024V0.265797H62.421V18.0731Z"
3940
+ },
3941
+ {
3942
+ "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"
3943
+ },
3944
+ {
3945
+ "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"
3946
+ },
3947
+ {
3948
+ "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"
3949
+ },
3950
+ {
3951
+ "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"
3952
+ }
3953
+ ]
3954
+ },
3955
+ "Artifax": {
3956
+ "viewBox": "0 0 90 32",
3957
+ "width": 90,
3958
+ "paths": [
3959
+ {
3960
+ "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"
3961
+ },
3962
+ {
3963
+ "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"
3964
+ },
3965
+ {
3966
+ "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"
3967
+ },
3968
+ {
3969
+ "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",
3970
+ "fillRule": "evenodd",
3971
+ "clipRule": "evenodd"
3972
+ },
3973
+ {
3974
+ "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",
3975
+ "fillRule": "evenodd",
3976
+ "clipRule": "evenodd"
3977
+ },
3978
+ {
3979
+ "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"
3980
+ },
3981
+ {
3982
+ "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",
3983
+ "fillRule": "evenodd",
3984
+ "clipRule": "evenodd"
3985
+ },
3986
+ {
3987
+ "d": "M41.1801 32H40.0233V27.3469H41.1801V32Z"
3988
+ },
3989
+ {
3990
+ "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",
3991
+ "fillRule": "evenodd",
3992
+ "clipRule": "evenodd"
3993
+ },
3994
+ {
3995
+ "d": "M41.1801 26.8571H40.0233V25.6327H41.1801V26.8571Z"
3996
+ },
3997
+ {
3998
+ "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"
3999
+ },
4000
+ {
4001
+ "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"
4002
+ },
4003
+ {
4004
+ "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"
4005
+ },
4006
+ {
4007
+ "d": "M48.0702 18.0168H44.8303V4.62521H48.0702V18.0168ZM48.0702 3.11933H44.8303V0H48.0702V3.11933Z"
4008
+ },
4009
+ {
4010
+ "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"
4011
+ },
4012
+ {
4013
+ "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"
4014
+ },
4015
+ {
4016
+ "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"
4017
+ }
4018
+ ]
4019
+ },
4020
+ "Photogenix": {
4021
+ "viewBox": "0 0 144 32",
4022
+ "width": 144,
4023
+ "paths": [
4024
+ {
4025
+ "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"
4026
+ },
4027
+ {
4028
+ "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"
4029
+ },
4030
+ {
4031
+ "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"
4032
+ },
4033
+ {
4034
+ "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",
4035
+ "fillRule": "evenodd",
4036
+ "clipRule": "evenodd"
4037
+ },
4038
+ {
4039
+ "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",
4040
+ "fillRule": "evenodd",
4041
+ "clipRule": "evenodd"
4042
+ },
4043
+ {
4044
+ "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"
4045
+ },
4046
+ {
4047
+ "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",
4048
+ "fillRule": "evenodd",
4049
+ "clipRule": "evenodd"
4050
+ },
4051
+ {
4052
+ "d": "M41.2429 32H40.0844V27.3469H41.2429V32Z"
4053
+ },
4054
+ {
4055
+ "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",
4056
+ "fillRule": "evenodd",
4057
+ "clipRule": "evenodd"
4058
+ },
4059
+ {
4060
+ "d": "M41.2429 26.8571H40.0844V25.6327H41.2429V26.8571Z"
4061
+ },
4062
+ {
4063
+ "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"
4064
+ },
4065
+ {
4066
+ "d": "M126.897 18.0168H123.642V4.62521H126.897V18.0168ZM126.897 3.11933H123.642V0H126.897V3.11933Z"
4067
+ },
4068
+ {
4069
+ "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"
4070
+ },
4071
+ {
4072
+ "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"
4073
+ },
4074
+ {
4075
+ "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"
4076
+ },
4077
+ {
4078
+ "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"
4079
+ },
4080
+ {
4081
+ "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"
4082
+ },
4083
+ {
4084
+ "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"
4085
+ },
4086
+ {
4087
+ "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"
4088
+ },
4089
+ {
4090
+ "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"
4091
+ }
4092
+ ]
4093
+ }
4094
+ };
4095
+ var COLLAPSED_MARKS = {
4096
+ "Catalogix": {
4097
+ "viewBox": "0 0 40 40",
4098
+ "size": 40,
4099
+ "paths": [
4100
+ {
4101
+ "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"
4102
+ },
4103
+ {
4104
+ "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"
4105
+ }
4106
+ ]
4107
+ }
4108
+ };
4109
+ var MARK_STYLE = {
4110
+ display: "block",
4111
+ color: "var(--alias-text---icons-primary, #F5F5F5)"
4112
+ };
4113
+ function ProductWordmark({
4114
+ product,
4115
+ style
4116
+ }) {
4117
+ const mark = WORDMARKS[product];
4118
+ if (!mark) return null;
4119
+ return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
4120
+ "svg",
4121
+ {
4122
+ viewBox: mark.viewBox,
4123
+ height: 32,
4124
+ width: mark.width,
4125
+ fill: "none",
4126
+ xmlns: "http://www.w3.org/2000/svg",
4127
+ role: "img",
4128
+ "aria-label": product,
4129
+ style: { ...MARK_STYLE, ...style },
4130
+ children: mark.paths.map((p, i) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
4131
+ "path",
4132
+ {
4133
+ d: p.d,
4134
+ fill: "currentColor",
4135
+ fillRule: p.fillRule,
4136
+ clipRule: p.clipRule
4137
+ },
4138
+ i
4139
+ ))
4140
+ }
4141
+ );
4142
+ }
4143
+ function ProductCollapsedMark({
4144
+ product,
4145
+ style
4146
+ }) {
4147
+ const mark = COLLAPSED_MARKS[product];
4148
+ if (!mark) return null;
4149
+ return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
4150
+ "svg",
4151
+ {
4152
+ viewBox: mark.viewBox,
4153
+ height: mark.size,
4154
+ width: mark.size,
4155
+ fill: "none",
4156
+ xmlns: "http://www.w3.org/2000/svg",
4157
+ role: "img",
4158
+ "aria-label": product,
4159
+ style: { ...MARK_STYLE, ...style },
4160
+ children: mark.paths.map((p, i) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
4161
+ "path",
4162
+ {
4163
+ d: p.d,
4164
+ fill: "currentColor",
4165
+ fillRule: p.fillRule,
4166
+ clipRule: p.clipRule
4167
+ },
4168
+ i
4169
+ ))
4170
+ }
4171
+ );
4172
+ }
4173
+ function hasCollapsedMark(product) {
4174
+ return product in COLLAPSED_MARKS;
4175
+ }
4176
+
4177
+ // src/SC-SideBarLogoUnit/ScSideBarLogoUnit.tsx
4178
+ var import_jsx_runtime45 = require("react/jsx-runtime");
4179
+ var ScSideBarLogoUnit = ({
4180
+ state = "expanded",
4181
+ wordmark,
4182
+ product,
4183
+ onClick,
4184
+ onSwitchClick,
4185
+ switchAriaLabel = "Switch product",
4186
+ hideSwitch = false,
4187
+ hover,
4188
+ disabled = false,
4189
+ className,
4190
+ style
4191
+ }) => {
4192
+ const interactive = !disabled && (!!onClick || !!onSwitchClick);
4193
+ const expandedMark = wordmark ?? (product ? /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(ProductWordmark, { product }) : null);
4194
+ const collapsedMark = wordmark ?? (product ? /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(ProductCollapsedMark, { product }) : null);
4195
+ const handleClick = () => {
4196
+ if (!interactive) return;
4197
+ onClick?.();
4198
+ onSwitchClick?.();
4199
+ };
4200
+ if (state === "collapsed") {
4201
+ const collapsedClasses = [
4202
+ ScSideBarLogoUnit_default.collapsedTrigger,
4203
+ interactive ? "" : ScSideBarLogoUnit_default.nonInteractive,
4204
+ hover === true ? ScSideBarLogoUnit_default.forceHover : ""
4205
+ ].filter(Boolean).join(" ");
4206
+ return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
4207
+ "div",
4208
+ {
4209
+ className: ScSideBarLogoUnit_default.scSideBarLogoUnit + " " + ScSideBarLogoUnit_default.collapsed + (className ? " " + className : ""),
4210
+ style,
4211
+ children: /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)(
4212
+ "button",
4213
+ {
4214
+ type: "button",
4215
+ className: collapsedClasses,
4216
+ onClick: interactive ? handleClick : void 0,
4217
+ disabled,
4218
+ "aria-label": interactive ? switchAriaLabel : void 0,
4219
+ "aria-disabled": !interactive || disabled,
4220
+ style: hover === false ? { backgroundColor: "transparent" } : void 0,
4221
+ children: [
4222
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("span", { className: ScSideBarLogoUnit_default.collapsedWordmarkSlot, children: collapsedMark }),
4223
+ hideSwitch ? null : /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("span", { className: ScSideBarLogoUnit_default.switch, children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("span", { className: ScSideBarLogoUnit_default.switchIcon, children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(import_icons36.SiconDoubleArrow, { size: 16, strokeWidth: 1.5 }) }) })
4224
+ ]
4225
+ }
4226
+ )
4227
+ }
4228
+ );
4229
+ }
4230
+ const rowClasses = [
4231
+ ScSideBarLogoUnit_default.row,
4232
+ interactive ? "" : ScSideBarLogoUnit_default.nonInteractive,
4233
+ hover === true ? ScSideBarLogoUnit_default.forceHover : ""
4234
+ ].filter(Boolean).join(" ");
4235
+ return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
4236
+ "div",
4237
+ {
4238
+ className: ScSideBarLogoUnit_default.scSideBarLogoUnit + (className ? " " + className : ""),
4239
+ style: {
4240
+ ...style,
4241
+ // Suppressing hover when `hover === false` — overrides CSS :hover.
4242
+ ...hover === false ? { pointerEvents: "auto" } : null
4243
+ },
4244
+ children: /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)(
4245
+ "button",
4246
+ {
4247
+ type: "button",
4248
+ className: rowClasses,
4249
+ onClick: interactive ? handleClick : void 0,
4250
+ disabled,
4251
+ "aria-label": interactive ? switchAriaLabel : void 0,
4252
+ "aria-disabled": !interactive || disabled,
4253
+ style: hover === false ? {
4254
+ backgroundColor: "transparent"
4255
+ } : void 0,
4256
+ children: [
4257
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("span", { className: ScSideBarLogoUnit_default.wordmarkSlot, children: expandedMark }),
4258
+ hideSwitch ? null : /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("span", { className: ScSideBarLogoUnit_default.switch, children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("span", { className: ScSideBarLogoUnit_default.switchIcon, children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(import_icons36.SiconDoubleArrow, { size: 16, strokeWidth: 1.5 }) }) })
4259
+ ]
4260
+ }
4261
+ )
4262
+ }
4263
+ );
4264
+ };
4265
+
4266
+ // src/SC-Catalogix-Sidebar/ScCatalogixSidebar.tsx
4267
+ var import_icons37 = require("@streamoid/icons");
4268
+ var import_jsx_runtime46 = require("react/jsx-runtime");
4269
+ var PRIMARY_COLOR = "var(--alias-text---icons-primary)";
4270
+ var TERTIARY_COLOR = "var(--alias-text---icons-tertiary)";
4271
+ var DEFAULT_ITEMS = [
4272
+ { id: "stores", label: "Stores", iconKey: "stores" },
4273
+ { id: "ai-training", label: "AI Training", iconKey: "aiTraining" },
4274
+ { id: "insights", label: "Insights", iconKey: "insights" }
4275
+ ];
4276
+ var DEFAULT_ICON_MAP = {
4277
+ stores: ({ active }) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(import_icons37.SiconBag, { color: active ? PRIMARY_COLOR : TERTIARY_COLOR }),
4278
+ aiTraining: ({ active }) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(import_icons37.SiconBrain, { color: active ? PRIMARY_COLOR : TERTIARY_COLOR }),
4279
+ insights: ({ active }) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(import_icons37.SiconInsights, { color: active ? PRIMARY_COLOR : TERTIARY_COLOR })
4280
+ };
4281
+ function resolveIcon3(iconMap, item, active, expanded) {
4282
+ const renderer = iconMap[item.iconKey];
4283
+ if (renderer == null) return null;
4284
+ if (typeof renderer === "function") {
4285
+ return renderer({ active, expanded });
4286
+ }
4287
+ return renderer;
4288
+ }
4289
+ function resolveToggleIcon3(toggleIcon, expanded) {
4290
+ if (toggleIcon == null) {
4291
+ const Icon = expanded ? import_icons37.SiconCollapse : import_icons37.SiconExpand;
4292
+ return /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(Icon, { className: "size-6", color: "var(--alias-text---icons-muted)" });
4293
+ }
4294
+ if (typeof toggleIcon === "function") {
4295
+ return toggleIcon(expanded);
4296
+ }
4297
+ return toggleIcon;
4298
+ }
4299
+ var ScCatalogixSidebar = ({
4300
+ expanded,
4301
+ onToggle,
4302
+ items = DEFAULT_ITEMS,
4303
+ iconMap = DEFAULT_ICON_MAP,
4304
+ activeItemId,
4305
+ onItemSelect,
4306
+ switchApps,
4307
+ onLogoClick,
4308
+ expandedLogo,
4309
+ collapsedLogo,
4310
+ profile,
4311
+ creditWarning,
4312
+ toggleIcon,
4313
+ className,
4314
+ style
4315
+ }) => {
4316
+ const [appListOpen, setAppListOpen] = (0, import_react9.useState)(false);
4317
+ const handleSwitch = () => {
4318
+ setAppListOpen((prev) => !prev);
4319
+ onLogoClick?.();
4320
+ };
4321
+ const appList = appListOpen && switchApps && switchApps.length > 0 ? expanded ? /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4322
+ "div",
4323
+ {
4324
+ className: "flex w-full shrink-0 flex-col items-stretch",
4325
+ style: {
4326
+ gap: "var(--spacing-md)",
4327
+ paddingTop: "var(--spacing-md)",
4328
+ paddingBottom: "var(--spacing-md)"
4329
+ },
4330
+ children: switchApps.map((app) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4331
+ ScSidebarSwitchMenu,
4332
+ {
4333
+ icon: app.icon,
4334
+ text: app.name,
4335
+ description: app.description,
4336
+ state: "default-highlight",
4337
+ variant: "expanded",
4338
+ onClick: app.onClick
4339
+ },
4340
+ app.id
4341
+ ))
4342
+ }
4343
+ ) : /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4344
+ "div",
4345
+ {
4346
+ className: "flex shrink-0 flex-col items-center",
4347
+ style: {
4348
+ gap: "var(--spacing-xxs)",
4349
+ paddingTop: "var(--spacing-xxs)",
4350
+ paddingBottom: "var(--spacing-xxs)"
4351
+ },
4352
+ children: switchApps.map((app) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4353
+ ScSidebarSwitchMenu,
4354
+ {
4355
+ icon: app.icon,
4356
+ state: "default",
4357
+ variant: "collapsed",
4358
+ onClick: app.onClick
4359
+ },
4360
+ app.id
4361
+ ))
4362
+ }
4363
+ ) : null;
4364
+ const navItems = /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4365
+ "div",
4366
+ {
4367
+ className: expanded ? "flex w-full shrink-0 flex-col items-stretch" : "flex shrink-0 flex-col items-center",
4368
+ style: {
4369
+ gap: expanded ? "var(--spacing-md)" : "var(--spacing-xxs)",
4370
+ paddingTop: "var(--spacing-sm)",
4371
+ paddingBottom: "var(--spacing-sm)"
4372
+ },
4373
+ children: items.map((item) => {
4374
+ const active = item.id === activeItemId;
4375
+ return /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4376
+ ScSidebarMenu,
4377
+ {
4378
+ icon: resolveIcon3(iconMap, item, active, expanded),
4379
+ text: expanded ? item.label : void 0,
4380
+ state: active ? "active" : "default",
4381
+ variant: expanded ? "expanded" : "collapsed",
4382
+ onClick: () => onItemSelect?.(item)
4383
+ },
4384
+ item.id
4385
+ );
4386
+ })
4387
+ }
4388
+ );
4389
+ const bodyContent = /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
4390
+ "div",
4391
+ {
4392
+ className: expanded ? "flex h-full min-h-0 flex-col" : "flex w-full flex-col items-center",
4393
+ children: [
4394
+ appList,
4395
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(ScHDivider, {}),
4396
+ navItems
4397
+ ]
4398
+ }
4399
+ );
4400
+ const defaultExpandedLogo = /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4401
+ ScSideBarLogoUnit,
4402
+ {
4403
+ product: "Catalogix",
4404
+ onClick: handleSwitch,
4405
+ switchAriaLabel: "Switch product",
4406
+ hover: appListOpen ? true : void 0,
4407
+ style: { paddingBottom: 0 }
4408
+ }
4409
+ );
4410
+ const defaultCollapsedLogo = /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4411
+ ScSideBarLogoUnit,
4412
+ {
4413
+ state: "collapsed",
4414
+ product: "Catalogix",
4415
+ onClick: handleSwitch,
4416
+ hover: appListOpen ? true : void 0
4417
+ }
4418
+ );
4419
+ return /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4420
+ StreamoidSidebar,
4421
+ {
4422
+ expanded,
4423
+ onToggle,
4424
+ config: { sections: [] },
4425
+ iconMap: {},
4426
+ showBody: true,
4427
+ bodyContent,
4428
+ expandedLogo: expandedLogo ?? defaultExpandedLogo,
4429
+ collapsedLogo: collapsedLogo ?? defaultCollapsedLogo,
4430
+ profile,
4431
+ toggleInProfile: true,
4432
+ versionText: "",
4433
+ toggleIcon: (exp) => resolveToggleIcon3(toggleIcon, exp),
4434
+ preFooterContent: creditWarning ? /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4435
+ CreditWarningBanner,
4436
+ {
4437
+ availableCredits: creditWarning.availableCredits,
4438
+ remainingPct: creditWarning.remainingPct,
4439
+ level: creditWarning.level ?? "danger",
4440
+ expanded,
4441
+ onBuyCredits: creditWarning.onBuyCredits,
4442
+ onCollapsedClick: creditWarning.onCollapsedClick ?? onToggle
4443
+ }
4444
+ ) : void 0,
4445
+ className,
4446
+ style
4447
+ }
4448
+ );
4449
+ };
4450
+
3675
4451
  // src/SC-Guide/ScGuide.module.css
3676
4452
  var ScGuide_default = {
3677
4453
  scGuide: "ScGuide_scGuide",
@@ -3688,8 +4464,8 @@ var ScGuide_default = {
3688
4464
  };
3689
4465
 
3690
4466
  // src/SC-Guide/ScGuide.tsx
3691
- var import_icons36 = require("@streamoid/icons");
3692
- var import_jsx_runtime43 = require("react/jsx-runtime");
4467
+ var import_icons38 = require("@streamoid/icons");
4468
+ var import_jsx_runtime47 = require("react/jsx-runtime");
3693
4469
  var ScGuide = ({
3694
4470
  title = "Title",
3695
4471
  description = "Description",
@@ -3705,19 +4481,19 @@ var ScGuide = ({
3705
4481
  className,
3706
4482
  style
3707
4483
  }) => {
3708
- return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
4484
+ return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
3709
4485
  "div",
3710
4486
  {
3711
4487
  className: ScGuide_default.scGuide + (className ? " " + className : ""),
3712
4488
  style,
3713
4489
  children: [
3714
- /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)("div", { className: ScGuide_default.header, children: [
3715
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("p", { className: ScGuide_default.title, children: title }),
3716
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("p", { className: ScGuide_default.description, children: description })
4490
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: ScGuide_default.header, children: [
4491
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("p", { className: ScGuide_default.title, children: title }),
4492
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("p", { className: ScGuide_default.description, children: description })
3717
4493
  ] }),
3718
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(ScHDivider, {}),
3719
- /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)("div", { className: ScGuide_default.actions, children: [
3720
- hideSkip ? /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("span", { className: ScGuide_default.skipSpacer, "aria-hidden": "true", children: skipLabel }) : /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4494
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(ScHDivider, {}),
4495
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: ScGuide_default.actions, children: [
4496
+ hideSkip ? /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("span", { className: ScGuide_default.skipSpacer, "aria-hidden": "true", children: skipLabel }) : /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
3721
4497
  "button",
3722
4498
  {
3723
4499
  type: "button",
@@ -3727,8 +4503,8 @@ var ScGuide = ({
3727
4503
  children: skipLabel
3728
4504
  }
3729
4505
  ),
3730
- stepLabel != null && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("span", { className: ScGuide_default.stepIndicator, children: stepLabel }),
3731
- !hideNext && /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
4506
+ stepLabel != null && /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("span", { className: ScGuide_default.stepIndicator, children: stepLabel }),
4507
+ !hideNext && /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
3732
4508
  "button",
3733
4509
  {
3734
4510
  type: "button",
@@ -3736,8 +4512,8 @@ var ScGuide = ({
3736
4512
  onClick: onNext,
3737
4513
  disabled,
3738
4514
  children: [
3739
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("span", { className: ScGuide_default.nextLabel, children: nextLabel }),
3740
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("span", { className: ScGuide_default.nextIcon, children: nextIcon ?? /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(import_icons36.SiconRight, { size: 16, strokeWidth: 1.5 }) })
4515
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("span", { className: ScGuide_default.nextLabel, children: nextLabel }),
4516
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("span", { className: ScGuide_default.nextIcon, children: nextIcon ?? /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(import_icons38.SiconRight, { size: 16, strokeWidth: 1.5 }) })
3741
4517
  ]
3742
4518
  }
3743
4519
  )
@@ -3747,107 +4523,6 @@ var ScGuide = ({
3747
4523
  );
3748
4524
  };
3749
4525
 
3750
- // src/SC-SideBarLogoUnit/ScSideBarLogoUnit.module.css
3751
- var ScSideBarLogoUnit_default = {
3752
- scSideBarLogoUnit: "ScSideBarLogoUnit_scSideBarLogoUnit",
3753
- row: "ScSideBarLogoUnit_row",
3754
- nonInteractive: "ScSideBarLogoUnit_nonInteractive",
3755
- forceHover: "ScSideBarLogoUnit_forceHover",
3756
- wordmarkSlot: "ScSideBarLogoUnit_wordmarkSlot",
3757
- switch: "ScSideBarLogoUnit_switch",
3758
- switchIcon: "ScSideBarLogoUnit_switchIcon",
3759
- collapsed: "ScSideBarLogoUnit_collapsed",
3760
- collapsedTrigger: "ScSideBarLogoUnit_collapsedTrigger",
3761
- collapsedWordmarkSlot: "ScSideBarLogoUnit_collapsedWordmarkSlot"
3762
- };
3763
-
3764
- // src/SC-SideBarLogoUnit/ScSideBarLogoUnit.tsx
3765
- var import_icons37 = require("@streamoid/icons");
3766
- var import_jsx_runtime44 = require("react/jsx-runtime");
3767
- var ScSideBarLogoUnit = ({
3768
- state = "expanded",
3769
- wordmark,
3770
- onClick,
3771
- onSwitchClick,
3772
- switchAriaLabel = "Switch product",
3773
- hideSwitch = false,
3774
- hover,
3775
- disabled = false,
3776
- className,
3777
- style
3778
- }) => {
3779
- const interactive = !disabled && (!!onClick || !!onSwitchClick);
3780
- const handleClick = () => {
3781
- if (!interactive) return;
3782
- onClick?.();
3783
- onSwitchClick?.();
3784
- };
3785
- if (state === "collapsed") {
3786
- const collapsedClasses = [
3787
- ScSideBarLogoUnit_default.collapsedTrigger,
3788
- interactive ? "" : ScSideBarLogoUnit_default.nonInteractive,
3789
- hover === true ? ScSideBarLogoUnit_default.forceHover : ""
3790
- ].filter(Boolean).join(" ");
3791
- return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
3792
- "div",
3793
- {
3794
- className: ScSideBarLogoUnit_default.scSideBarLogoUnit + " " + ScSideBarLogoUnit_default.collapsed + (className ? " " + className : ""),
3795
- style,
3796
- children: /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
3797
- "button",
3798
- {
3799
- type: "button",
3800
- className: collapsedClasses,
3801
- onClick: interactive ? handleClick : void 0,
3802
- disabled,
3803
- "aria-label": interactive ? switchAriaLabel : void 0,
3804
- "aria-disabled": !interactive || disabled,
3805
- style: hover === false ? { backgroundColor: "transparent" } : void 0,
3806
- children: [
3807
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("span", { className: ScSideBarLogoUnit_default.collapsedWordmarkSlot, children: wordmark }),
3808
- hideSwitch ? null : /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("span", { className: ScSideBarLogoUnit_default.switch, children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("span", { className: ScSideBarLogoUnit_default.switchIcon, children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(import_icons37.SiconDoubleArrow, { size: 16, strokeWidth: 1.5 }) }) })
3809
- ]
3810
- }
3811
- )
3812
- }
3813
- );
3814
- }
3815
- const rowClasses = [
3816
- ScSideBarLogoUnit_default.row,
3817
- interactive ? "" : ScSideBarLogoUnit_default.nonInteractive,
3818
- hover === true ? ScSideBarLogoUnit_default.forceHover : ""
3819
- ].filter(Boolean).join(" ");
3820
- return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
3821
- "div",
3822
- {
3823
- className: ScSideBarLogoUnit_default.scSideBarLogoUnit + (className ? " " + className : ""),
3824
- style: {
3825
- ...style,
3826
- // Suppressing hover when `hover === false` — overrides CSS :hover.
3827
- ...hover === false ? { pointerEvents: "auto" } : null
3828
- },
3829
- children: /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
3830
- "button",
3831
- {
3832
- type: "button",
3833
- className: rowClasses,
3834
- onClick: interactive ? handleClick : void 0,
3835
- disabled,
3836
- "aria-label": interactive ? switchAriaLabel : void 0,
3837
- "aria-disabled": !interactive || disabled,
3838
- style: hover === false ? {
3839
- backgroundColor: "transparent"
3840
- } : void 0,
3841
- children: [
3842
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("span", { className: ScSideBarLogoUnit_default.wordmarkSlot, children: wordmark }),
3843
- hideSwitch ? null : /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("span", { className: ScSideBarLogoUnit_default.switch, children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("span", { className: ScSideBarLogoUnit_default.switchIcon, children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(import_icons37.SiconDoubleArrow, { size: 16, strokeWidth: 1.5 }) }) })
3844
- ]
3845
- }
3846
- )
3847
- }
3848
- );
3849
- };
3850
-
3851
4526
  // src/SC-Slider/ScSlider.module.css
3852
4527
  var ScSlider_default = {
3853
4528
  scSlider: "ScSlider_scSlider",
@@ -3858,30 +4533,30 @@ var ScSlider_default = {
3858
4533
  };
3859
4534
 
3860
4535
  // src/SC-Slider/ScSlider.tsx
3861
- var import_jsx_runtime45 = require("react/jsx-runtime");
4536
+ var import_jsx_runtime48 = require("react/jsx-runtime");
3862
4537
  var ScSlider = ({
3863
4538
  className,
3864
4539
  onValueChange,
3865
4540
  ...props
3866
4541
  }) => {
3867
- return /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("div", { className: ScSlider_default.scSlider + " " + className, ...props, children: [
3868
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: ScSlider_default.progressBar }),
3869
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: ScSlider_default.progressDot }),
3870
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: ScSlider_default.progressBar2 }),
3871
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: ScSlider_default.progressDot2 }),
3872
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: ScSlider_default.progressBar2 }),
3873
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: ScSlider_default.progressDot2 }),
3874
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: ScSlider_default.progressBar2 }),
3875
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: ScSlider_default.progressDot2 }),
3876
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: ScSlider_default.progressBar2 }),
3877
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: ScSlider_default.progressDot2 })
4542
+ return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: ScSlider_default.scSlider + " " + className, ...props, children: [
4543
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("div", { className: ScSlider_default.progressBar }),
4544
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("div", { className: ScSlider_default.progressDot }),
4545
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("div", { className: ScSlider_default.progressBar2 }),
4546
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("div", { className: ScSlider_default.progressDot2 }),
4547
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("div", { className: ScSlider_default.progressBar2 }),
4548
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("div", { className: ScSlider_default.progressDot2 }),
4549
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("div", { className: ScSlider_default.progressBar2 }),
4550
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("div", { className: ScSlider_default.progressDot2 }),
4551
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("div", { className: ScSlider_default.progressBar2 }),
4552
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("div", { className: ScSlider_default.progressDot2 })
3878
4553
  ] });
3879
4554
  };
3880
4555
 
3881
4556
  // src/SC-WorkspaceSwitcher/streamoid-workspace-switcher.tsx
3882
- var import_react9 = require("react");
3883
- var import_icons38 = require("@streamoid/icons");
3884
- var import_jsx_runtime46 = require("react/jsx-runtime");
4557
+ var import_react10 = require("react");
4558
+ var import_icons39 = require("@streamoid/icons");
4559
+ var import_jsx_runtime49 = require("react/jsx-runtime");
3885
4560
  var PRIMARY_ICON = "var(--alias-text---icons-primary)";
3886
4561
  function deriveInitials(name) {
3887
4562
  return name.split(/\s+/).slice(0, 2).map((w) => w[0]?.toUpperCase() ?? "").join("") || "WS";
@@ -3899,7 +4574,7 @@ function WorkspaceRow({
3899
4574
  switchWorkspaceText,
3900
4575
  onSwitch
3901
4576
  }) {
3902
- return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
4577
+ return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
3903
4578
  "div",
3904
4579
  {
3905
4580
  className: "relative shrink-0 w-full",
@@ -3909,7 +4584,7 @@ function WorkspaceRow({
3909
4584
  backdropFilter: "blur(4px)"
3910
4585
  },
3911
4586
  children: [
3912
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4587
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3913
4588
  "div",
3914
4589
  {
3915
4590
  "aria-hidden": "true",
@@ -3920,7 +4595,7 @@ function WorkspaceRow({
3920
4595
  }
3921
4596
  }
3922
4597
  ),
3923
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
4598
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
3924
4599
  "div",
3925
4600
  {
3926
4601
  className: "flex items-center w-full",
@@ -3929,20 +4604,20 @@ function WorkspaceRow({
3929
4604
  padding: "var(--spacing-6xl)"
3930
4605
  },
3931
4606
  children: [
3932
- /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
4607
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
3933
4608
  "div",
3934
4609
  {
3935
4610
  className: "flex flex-1 items-center min-w-0",
3936
4611
  style: { gap: "var(--spacing-xl)" },
3937
4612
  children: [
3938
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4613
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3939
4614
  ScIntialProfileCover,
3940
4615
  {
3941
4616
  intial: workspace.initials || deriveInitials(workspace.name),
3942
4617
  className: "shrink-0"
3943
4618
  }
3944
4619
  ),
3945
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4620
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3946
4621
  "p",
3947
4622
  {
3948
4623
  className: "flex-1 min-w-0 overflow-hidden text-ellipsis",
@@ -3962,7 +4637,7 @@ function WorkspaceRow({
3962
4637
  ]
3963
4638
  }
3964
4639
  ),
3965
- /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
4640
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
3966
4641
  "div",
3967
4642
  {
3968
4643
  className: "flex items-center justify-center shrink-0",
@@ -3971,7 +4646,7 @@ function WorkspaceRow({
3971
4646
  padding: "0 var(--spacing-3xl)"
3972
4647
  },
3973
4648
  children: [
3974
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4649
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3975
4650
  ScRole,
3976
4651
  {
3977
4652
  type: normalizeRole(workspace.role),
@@ -3979,23 +4654,23 @@ function WorkspaceRow({
3979
4654
  style: { width: 80 }
3980
4655
  }
3981
4656
  ),
3982
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("div", { className: "flex flex-row items-center self-stretch", children: /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
4657
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: "flex flex-row items-center self-stretch", children: /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
3983
4658
  "div",
3984
4659
  {
3985
4660
  className: "flex items-center shrink-0",
3986
4661
  style: { gap: "var(--spacing-3xl)" },
3987
4662
  children: [
3988
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("div", { style: { width: 120, flexShrink: 0 }, children: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4663
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { style: { width: 120, flexShrink: 0 }, children: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
3989
4664
  ScPairtext,
3990
4665
  {
3991
- icon: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(import_icons38.SiconTeam, { className: "w-6 h-6", color: PRIMARY_ICON }),
4666
+ icon: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons39.SiconTeam, { className: "w-6 h-6", color: PRIMARY_ICON }),
3992
4667
  content: workspace.userCount || "\u2013",
3993
4668
  iconPosition: "left",
3994
4669
  type: "icon"
3995
4670
  }
3996
4671
  ) }),
3997
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(ScVDivider, {}),
3998
- /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
4672
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(ScVDivider, {}),
4673
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
3999
4674
  "div",
4000
4675
  {
4001
4676
  className: "flex items-center",
@@ -4005,14 +4680,14 @@ function WorkspaceRow({
4005
4680
  gap: "var(--spacing-md)"
4006
4681
  },
4007
4682
  children: [
4008
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4009
- import_icons38.SiconCrown,
4683
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
4684
+ import_icons39.SiconCrown,
4010
4685
  {
4011
4686
  className: "w-6 h-6 shrink-0",
4012
4687
  color: PRIMARY_ICON
4013
4688
  }
4014
4689
  ),
4015
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4690
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
4016
4691
  "span",
4017
4692
  {
4018
4693
  className: "truncate",
@@ -4034,7 +4709,7 @@ function WorkspaceRow({
4034
4709
  ]
4035
4710
  }
4036
4711
  ),
4037
- workspace.isCurrent ? /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4712
+ workspace.isCurrent ? /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
4038
4713
  ScButton,
4039
4714
  {
4040
4715
  text: currentWorkspaceText,
@@ -4043,14 +4718,14 @@ function WorkspaceRow({
4043
4718
  size: "lg",
4044
4719
  style: { width: 200, flexShrink: 0, opacity: 0.5 }
4045
4720
  }
4046
- ) : /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4721
+ ) : /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
4047
4722
  ScButton,
4048
4723
  {
4049
4724
  text: switchWorkspaceText,
4050
4725
  variant: "secondary",
4051
4726
  size: "lg",
4052
4727
  styleVariant: "icon-left",
4053
- icon: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(import_icons38.SiconSwitch, { className: "w-5 h-5", color: PRIMARY_ICON }),
4728
+ icon: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons39.SiconSwitch, { className: "w-5 h-5", color: PRIMARY_ICON }),
4054
4729
  style: { width: 200, flexShrink: 0 },
4055
4730
  onClick: onSwitch
4056
4731
  }
@@ -4070,12 +4745,12 @@ function StreamoidWorkspaceSwitcher({
4070
4745
  onSwitchWorkspace,
4071
4746
  config
4072
4747
  }) {
4073
- const modalRef = (0, import_react9.useRef)(null);
4748
+ const modalRef = (0, import_react10.useRef)(null);
4074
4749
  const title = config?.title || "Switch workspace";
4075
4750
  const loadingText = config?.loadingText || "Loading workspaces\u2026";
4076
4751
  const currentWorkspaceText = config?.currentWorkspaceText || "Current workspace";
4077
4752
  const switchWorkspaceText = config?.switchWorkspaceText || "Switch workspace";
4078
- (0, import_react9.useEffect)(() => {
4753
+ (0, import_react10.useEffect)(() => {
4079
4754
  if (!open) return;
4080
4755
  function handleKeyDown(e) {
4081
4756
  if (e.key === "Escape") onClose();
@@ -4084,7 +4759,7 @@ function StreamoidWorkspaceSwitcher({
4084
4759
  return () => document.removeEventListener("keydown", handleKeyDown);
4085
4760
  }, [open, onClose]);
4086
4761
  if (!open) return null;
4087
- return /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4762
+ return /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
4088
4763
  "div",
4089
4764
  {
4090
4765
  className: "fixed inset-0 z-50 flex items-center justify-center",
@@ -4092,7 +4767,7 @@ function StreamoidWorkspaceSwitcher({
4092
4767
  onClick: (e) => {
4093
4768
  if (e.target === e.currentTarget) onClose();
4094
4769
  },
4095
- children: /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
4770
+ children: /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
4096
4771
  "div",
4097
4772
  {
4098
4773
  ref: modalRef,
@@ -4105,14 +4780,14 @@ function StreamoidWorkspaceSwitcher({
4105
4780
  height: "60vh"
4106
4781
  },
4107
4782
  children: [
4108
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4783
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
4109
4784
  "div",
4110
4785
  {
4111
4786
  className: "shrink-0 w-full relative",
4112
4787
  style: {
4113
4788
  borderBottom: "1px solid var(--alias-border-divider)"
4114
4789
  },
4115
- children: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
4790
+ children: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
4116
4791
  "div",
4117
4792
  {
4118
4793
  className: "flex items-center w-full",
@@ -4121,7 +4796,7 @@ function StreamoidWorkspaceSwitcher({
4121
4796
  padding: "var(--spacing-3xl) var(--spacing-6xl)"
4122
4797
  },
4123
4798
  children: [
4124
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4799
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
4125
4800
  "p",
4126
4801
  {
4127
4802
  className: "flex-1 min-w-0 overflow-hidden text-ellipsis whitespace-nowrap",
@@ -4135,20 +4810,20 @@ function StreamoidWorkspaceSwitcher({
4135
4810
  children: title
4136
4811
  }
4137
4812
  ),
4138
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("div", { className: "shrink-0 cursor-pointer", onClick: onClose, children: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(import_icons38.SiconClose, { className: "w-6 h-6", color: PRIMARY_ICON }) })
4813
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: "shrink-0 cursor-pointer", onClick: onClose, children: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons39.SiconClose, { className: "w-6 h-6", color: PRIMARY_ICON }) })
4139
4814
  ]
4140
4815
  }
4141
4816
  ) })
4142
4817
  }
4143
4818
  ),
4144
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4819
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
4145
4820
  "div",
4146
4821
  {
4147
4822
  className: "flex-1 min-h-0 w-full overflow-y-auto",
4148
4823
  style: {
4149
4824
  borderRadius: "0 0 var(--radius-4xl) var(--radius-4xl)"
4150
4825
  },
4151
- children: /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
4826
+ children: /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
4152
4827
  "div",
4153
4828
  {
4154
4829
  className: "flex flex-col items-start",
@@ -4157,7 +4832,7 @@ function StreamoidWorkspaceSwitcher({
4157
4832
  gap: "var(--spacing-3xl)"
4158
4833
  },
4159
4834
  children: [
4160
- loading && workspaces.length === 0 ? /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4835
+ loading && workspaces.length === 0 ? /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
4161
4836
  "p",
4162
4837
  {
4163
4838
  style: {
@@ -4168,7 +4843,7 @@ function StreamoidWorkspaceSwitcher({
4168
4843
  children: loadingText
4169
4844
  }
4170
4845
  ) : null,
4171
- workspaces.map((ws) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4846
+ workspaces.map((ws) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
4172
4847
  WorkspaceRow,
4173
4848
  {
4174
4849
  workspace: ws,
@@ -4206,24 +4881,24 @@ var ScAppListingCard_default = {
4206
4881
  };
4207
4882
 
4208
4883
  // src/SC-app listing card/ScAppListingCard.tsx
4209
- var import_icons39 = require("@streamoid/icons");
4210
- var import_jsx_runtime47 = require("react/jsx-runtime");
4884
+ var import_icons40 = require("@streamoid/icons");
4885
+ var import_jsx_runtime50 = require("react/jsx-runtime");
4211
4886
  var ScAppListingCard = ({
4212
- icon = /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(import_icons39.SiconCart, { className: ScAppListingCard_default.siconCartInstance }),
4887
+ icon = /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_icons40.SiconCart, { className: ScAppListingCard_default.siconCartInstance }),
4213
4888
  title = "Stores",
4214
4889
  descrp = "Centralized product and asset management for every storefront",
4215
4890
  className,
4216
4891
  ...props
4217
4892
  }) => {
4218
- return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: ScAppListingCard_default.scAppListingCard + " " + className, ...props, children: [
4219
- /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: ScAppListingCard_default.header, children: [
4220
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: ScAppListingCard_default.iconContainer, children: icon }),
4221
- /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: ScAppListingCard_default.title, children: [
4893
+ return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: ScAppListingCard_default.scAppListingCard + " " + className, ...props, children: [
4894
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: ScAppListingCard_default.header, children: [
4895
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("div", { className: ScAppListingCard_default.iconContainer, children: icon }),
4896
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: ScAppListingCard_default.title, children: [
4222
4897
  title,
4223
4898
  " "
4224
4899
  ] })
4225
4900
  ] }),
4226
- /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: ScAppListingCard_default.description, children: [
4901
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: ScAppListingCard_default.description, children: [
4227
4902
  descrp,
4228
4903
  " "
4229
4904
  ] })
@@ -4240,23 +4915,23 @@ var ScAppCard_default = {
4240
4915
  };
4241
4916
 
4242
4917
  // src/SC-appCard/ScAppCard.tsx
4243
- var import_icons40 = require("@streamoid/icons");
4244
- var import_jsx_runtime48 = require("react/jsx-runtime");
4918
+ var import_icons41 = require("@streamoid/icons");
4919
+ var import_jsx_runtime51 = require("react/jsx-runtime");
4245
4920
  var ScAppCard = ({
4246
- appIcon = /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(import_icons40.SiconArtifacts, { className: ScAppCard_default.siconArtifactsInstance }),
4921
+ appIcon = /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(import_icons41.SiconArtifacts, { className: ScAppCard_default.siconArtifactsInstance }),
4247
4922
  appName = "Artifax",
4248
4923
  appDescription = "Info about artifax",
4249
4924
  className,
4250
4925
  ...props
4251
4926
  }) => {
4252
- return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: ScAppCard_default.scAppCard + " " + className, ...props, children: [
4253
- /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("div", { className: ScAppCard_default.iconContainer, children: appIcon }),
4254
- /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: ScAppCard_default.textContainer, children: [
4255
- /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: ScAppCard_default.title, children: [
4927
+ return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("div", { className: ScAppCard_default.scAppCard + " " + className, ...props, children: [
4928
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("div", { className: ScAppCard_default.iconContainer, children: appIcon }),
4929
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("div", { className: ScAppCard_default.textContainer, children: [
4930
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("div", { className: ScAppCard_default.title, children: [
4256
4931
  appName,
4257
4932
  " "
4258
4933
  ] }),
4259
- /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: ScAppCard_default.subtitle, children: [
4934
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("div", { className: ScAppCard_default.subtitle, children: [
4260
4935
  appDescription,
4261
4936
  " "
4262
4937
  ] })
@@ -4282,10 +4957,10 @@ var ScAppCardV3_default = {
4282
4957
  };
4283
4958
 
4284
4959
  // src/SC-AppCardV3/ScAppCardV3.tsx
4285
- var import_icons41 = require("@streamoid/icons");
4286
- var import_jsx_runtime49 = require("react/jsx-runtime");
4960
+ var import_icons42 = require("@streamoid/icons");
4961
+ var import_jsx_runtime52 = require("react/jsx-runtime");
4287
4962
  var ScAppCardV3 = ({
4288
- appIcon = /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_icons41.SiconCart, { className: ScAppCardV3_default.iconPillIcon }),
4963
+ appIcon = /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(import_icons42.SiconCart, { className: ScAppCardV3_default.iconPillIcon }),
4289
4964
  appName = "Stores",
4290
4965
  description = "Centralized product and asset management for every storefront",
4291
4966
  active = false,
@@ -4297,25 +4972,25 @@ var ScAppCardV3 = ({
4297
4972
  ScAppCardV3_default.scAppCardV3,
4298
4973
  active ? ScAppCardV3_default.scAppCardV3Active : ""
4299
4974
  ].filter(Boolean).join(" ");
4300
- return /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
4975
+ return /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
4301
4976
  "div",
4302
4977
  {
4303
4978
  className: [ScAppCardV3_default.cardBorder, className || ""].filter(Boolean).join(" "),
4304
4979
  style,
4305
4980
  ...props,
4306
- children: /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: cardClass, children: [
4307
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: ScAppCardV3_default.glow }),
4308
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: ScAppCardV3_default.glowHover }),
4309
- /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: ScAppCardV3_default.header, children: [
4310
- /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: ScAppCardV3_default.iconRow, children: [
4311
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("p", { className: ScAppCardV3_default.appName, children: appName }),
4312
- /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: ScAppCardV3_default.iconPill, children: [
4313
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: ScAppCardV3_default.iconPillBg }),
4314
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: ScAppCardV3_default.iconPillIcon, children: appIcon }),
4315
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: ScAppCardV3_default.iconPillShadow })
4981
+ children: /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)("div", { className: cardClass, children: [
4982
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("div", { className: ScAppCardV3_default.glow }),
4983
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("div", { className: ScAppCardV3_default.glowHover }),
4984
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)("div", { className: ScAppCardV3_default.header, children: [
4985
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)("div", { className: ScAppCardV3_default.iconRow, children: [
4986
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("p", { className: ScAppCardV3_default.appName, children: appName }),
4987
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)("div", { className: ScAppCardV3_default.iconPill, children: [
4988
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("div", { className: ScAppCardV3_default.iconPillBg }),
4989
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("div", { className: ScAppCardV3_default.iconPillIcon, children: appIcon }),
4990
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("div", { className: ScAppCardV3_default.iconPillShadow })
4316
4991
  ] })
4317
4992
  ] }),
4318
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("p", { className: ScAppCardV3_default.description, children: description })
4993
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("p", { className: ScAppCardV3_default.description, children: description })
4319
4994
  ] })
4320
4995
  ] })
4321
4996
  }
@@ -4334,7 +5009,7 @@ var ScBriefCard_default = {
4334
5009
  };
4335
5010
 
4336
5011
  // src/SC-BriefCard/ScBriefCard.tsx
4337
- var import_jsx_runtime50 = require("react/jsx-runtime");
5012
+ var import_jsx_runtime53 = require("react/jsx-runtime");
4338
5013
  var ScBriefCard = ({
4339
5014
  description = "Centralized product and asset management for every storefront",
4340
5015
  active = false,
@@ -4346,16 +5021,16 @@ var ScBriefCard = ({
4346
5021
  ScBriefCard_default.scBriefCard,
4347
5022
  active ? ScBriefCard_default.scBriefCardActive : ""
4348
5023
  ].filter(Boolean).join(" ");
4349
- return /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
5024
+ return /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
4350
5025
  "div",
4351
5026
  {
4352
5027
  className: [ScBriefCard_default.cardBorder, className || ""].filter(Boolean).join(" "),
4353
5028
  style,
4354
5029
  ...props,
4355
- children: /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: cardClass, children: [
4356
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("div", { className: ScBriefCard_default.glow }),
4357
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("div", { className: ScBriefCard_default.glowHover }),
4358
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("div", { className: ScBriefCard_default.body, children: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("p", { className: ScBriefCard_default.description, children: description }) })
5030
+ children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: cardClass, children: [
5031
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: ScBriefCard_default.glow }),
5032
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: ScBriefCard_default.glowHover }),
5033
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: ScBriefCard_default.body, children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("p", { className: ScBriefCard_default.description, children: description }) })
4359
5034
  ] })
4360
5035
  }
4361
5036
  );
@@ -4381,7 +5056,7 @@ var ScArtifaxInvite_default = {
4381
5056
  };
4382
5057
 
4383
5058
  // src/SC-artifaxInvite/ScArtifaxInvite.tsx
4384
- var import_icons42 = require("@streamoid/icons");
5059
+ var import_icons43 = require("@streamoid/icons");
4385
5060
 
4386
5061
  // src/SC-toggleSwitch/ScToggleSwitch.module.css
4387
5062
  var ScToggleSwitch_default = {
@@ -4392,7 +5067,7 @@ var ScToggleSwitch_default = {
4392
5067
  };
4393
5068
 
4394
5069
  // src/SC-toggleSwitch/ScToggleSwitch.tsx
4395
- var import_jsx_runtime51 = require("react/jsx-runtime");
5070
+ var import_jsx_runtime54 = require("react/jsx-runtime");
4396
5071
  var ScToggleSwitch = ({
4397
5072
  active = "false",
4398
5073
  checked,
@@ -4402,7 +5077,7 @@ var ScToggleSwitch = ({
4402
5077
  }) => {
4403
5078
  const isActive = checked !== void 0 ? checked : active === "true";
4404
5079
  const variantsClassName = ScToggleSwitch_default["active-" + (isActive ? "true" : "false")];
4405
- return /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
5080
+ return /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
4406
5081
  "div",
4407
5082
  {
4408
5083
  className: ScToggleSwitch_default.scToggleSwitch + " " + className + " " + variantsClassName,
@@ -4412,20 +5087,20 @@ var ScToggleSwitch = ({
4412
5087
  props.onClick?.(e);
4413
5088
  },
4414
5089
  style: { cursor: "pointer", ...props.style },
4415
- children: isActive ? /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("svg", { width: "40", height: "24", viewBox: "0 0 40 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
4416
- /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("rect", { width: "40", height: "24", rx: "12", fill: "var(--alias-fill-base-base, #f5f5f5)" }),
4417
- /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "28", cy: "12", r: "10", fill: "var(--alias-text---icons-inverse, #101010)" })
4418
- ] }) : /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("svg", { width: "41", height: "25", viewBox: "0 0 41 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
4419
- /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M0.25 12.25C0.25 5.62258 5.62258 0.25 12.25 0.25H28.25C34.8774 0.25 40.25 5.62258 40.25 12.25C40.25 18.8774 34.8774 24.25 28.25 24.25H12.25C5.62258 24.25 0.25 18.8774 0.25 12.25Z", fill: "var(--alias-fill-neutral-neutral, #1a1a1a)" }),
4420
- /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M40 12.25C40 5.76065 34.7393 0.5 28.25 0.5H12.25C5.76065 0.5 0.5 5.76065 0.5 12.25C0.5 18.7393 5.76065 24 12.25 24H28.25C34.7393 24 40 18.7393 40 12.25ZM40.5 12.25C40.5 19.0155 35.0155 24.5 28.25 24.5H12.25C5.48451 24.5 0 19.0155 0 12.25C0 5.48451 5.48451 0 12.25 0H28.25C35.0155 0 40.5 5.48451 40.5 12.25Z", fill: "var(--alias-border-divider, #242424)" }),
4421
- /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M2.25 12.25C2.25 6.72715 6.72715 2.25 12.25 2.25C17.7728 2.25 22.25 6.72715 22.25 12.25C22.25 17.7728 17.7728 22.25 12.25 22.25C6.72715 22.25 2.25 17.7728 2.25 12.25Z", fill: "var(--alias-fill-neutral-neutralactive, #313131)" })
5090
+ children: isActive ? /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)("svg", { width: "40", height: "24", viewBox: "0 0 40 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
5091
+ /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("rect", { width: "40", height: "24", rx: "12", fill: "var(--alias-fill-base-base, #f5f5f5)" }),
5092
+ /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("circle", { cx: "28", cy: "12", r: "10", fill: "var(--alias-text---icons-inverse, #101010)" })
5093
+ ] }) : /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)("svg", { width: "41", height: "25", viewBox: "0 0 41 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
5094
+ /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("path", { d: "M0.25 12.25C0.25 5.62258 5.62258 0.25 12.25 0.25H28.25C34.8774 0.25 40.25 5.62258 40.25 12.25C40.25 18.8774 34.8774 24.25 28.25 24.25H12.25C5.62258 24.25 0.25 18.8774 0.25 12.25Z", fill: "var(--alias-fill-neutral-neutral, #1a1a1a)" }),
5095
+ /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("path", { d: "M40 12.25C40 5.76065 34.7393 0.5 28.25 0.5H12.25C5.76065 0.5 0.5 5.76065 0.5 12.25C0.5 18.7393 5.76065 24 12.25 24H28.25C34.7393 24 40 18.7393 40 12.25ZM40.5 12.25C40.5 19.0155 35.0155 24.5 28.25 24.5H12.25C5.48451 24.5 0 19.0155 0 12.25C0 5.48451 5.48451 0 12.25 0H28.25C35.0155 0 40.5 5.48451 40.5 12.25Z", fill: "var(--alias-border-divider, #242424)" }),
5096
+ /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("path", { d: "M2.25 12.25C2.25 6.72715 6.72715 2.25 12.25 2.25C17.7728 2.25 22.25 6.72715 22.25 12.25C22.25 17.7728 17.7728 22.25 12.25 22.25C6.72715 22.25 2.25 17.7728 2.25 12.25Z", fill: "var(--alias-fill-neutral-neutralactive, #313131)" })
4422
5097
  ] })
4423
5098
  }
4424
5099
  );
4425
5100
  };
4426
5101
 
4427
5102
  // src/SC-artifaxInvite/ScArtifaxInvite.tsx
4428
- var import_jsx_runtime52 = require("react/jsx-runtime");
5103
+ var import_jsx_runtime55 = require("react/jsx-runtime");
4429
5104
  var ScArtifaxInvite = ({
4430
5105
  active = "true",
4431
5106
  appName = "Artifax",
@@ -4438,22 +5113,22 @@ var ScArtifaxInvite = ({
4438
5113
  }) => {
4439
5114
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
4440
5115
  const variantsClassName = ScArtifaxInvite_default["active-" + (isEnabled ? "true" : "false")];
4441
- return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
5116
+ return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
4442
5117
  "div",
4443
5118
  {
4444
5119
  className: ScArtifaxInvite_default.scArtifaxInvite + " " + className + " " + variantsClassName,
4445
5120
  ...props,
4446
5121
  children: [
4447
- /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
5122
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
4448
5123
  ScAppCard,
4449
5124
  {
4450
- appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(import_icons42.SiconArtifacts, { className: ScArtifaxInvite_default.siconArtifactsInstance }),
5125
+ appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons43.SiconArtifacts, { className: ScArtifaxInvite_default.siconArtifactsInstance }),
4451
5126
  appName,
4452
5127
  appDescription,
4453
5128
  className: ScArtifaxInvite_default.scAppCardInstance
4454
5129
  }
4455
5130
  ),
4456
- /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
5131
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
4457
5132
  ScToggleSwitch,
4458
5133
  {
4459
5134
  checked: isEnabled,
@@ -4467,7 +5142,7 @@ var ScArtifaxInvite = ({
4467
5142
  };
4468
5143
 
4469
5144
  // src/SC-appField/ScAppField.tsx
4470
- var import_icons48 = require("@streamoid/icons");
5145
+ var import_icons49 = require("@streamoid/icons");
4471
5146
 
4472
5147
  // src/SC-phtogenixInvite/ScPhtogenixInvite.module.css
4473
5148
  var ScPhtogenixInvite_default = {
@@ -4478,13 +5153,13 @@ var ScPhtogenixInvite_default = {
4478
5153
  };
4479
5154
 
4480
5155
  // src/SC-phtogenixInvite/ScPhtogenixInvite.tsx
4481
- var import_icons43 = require("@streamoid/icons");
4482
- var import_jsx_runtime53 = require("react/jsx-runtime");
5156
+ var import_icons44 = require("@streamoid/icons");
5157
+ var import_jsx_runtime56 = require("react/jsx-runtime");
4483
5158
  var ScPhtogenixInvite = ({
4484
5159
  active = "true",
4485
5160
  scAppCardappDescription = "Info about photogenix",
4486
5161
  scAppCardappName = "Photogenix",
4487
- scAppCardappIcon = /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_icons43.SiconArtifacts, { className: ScPhtogenixInvite_default.siconArtifactsInstance }),
5162
+ scAppCardappIcon = /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(import_icons44.SiconArtifacts, { className: ScPhtogenixInvite_default.siconArtifactsInstance }),
4488
5163
  className,
4489
5164
  enabled,
4490
5165
  onToggle,
@@ -4492,12 +5167,12 @@ var ScPhtogenixInvite = ({
4492
5167
  }) => {
4493
5168
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
4494
5169
  const variantsClassName = ScPhtogenixInvite_default["active-" + (isEnabled ? "true" : "false")];
4495
- return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
5170
+ return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)(
4496
5171
  "div",
4497
5172
  {
4498
5173
  className: ScPhtogenixInvite_default.scPhtogenixInvite + " " + className + " " + variantsClassName,
4499
5174
  children: [
4500
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
5175
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
4501
5176
  ScAppCard,
4502
5177
  {
4503
5178
  appIcon: scAppCardappIcon,
@@ -4506,7 +5181,7 @@ var ScPhtogenixInvite = ({
4506
5181
  className: ScPhtogenixInvite_default.scAppCardInstance
4507
5182
  }
4508
5183
  ),
4509
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
5184
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
4510
5185
  ScToggleSwitch,
4511
5186
  {
4512
5187
  checked: isEnabled,
@@ -4536,8 +5211,8 @@ var ScCatalogixInvite_default = {
4536
5211
  };
4537
5212
 
4538
5213
  // src/SC-catalogixInvite/ScCatalogixInvite.tsx
4539
- var import_icons45 = require("@streamoid/icons");
4540
5214
  var import_icons46 = require("@streamoid/icons");
5215
+ var import_icons47 = require("@streamoid/icons");
4541
5216
 
4542
5217
  // src/SC-onlyField/ScOnlyField.module.css
4543
5218
  var ScOnlyField_default = {
@@ -4555,11 +5230,11 @@ var ScOnlyField_default = {
4555
5230
  };
4556
5231
 
4557
5232
  // src/SC-onlyField/ScOnlyField.tsx
4558
- var import_icons44 = require("@streamoid/icons");
4559
- var import_jsx_runtime54 = require("react/jsx-runtime");
5233
+ var import_icons45 = require("@streamoid/icons");
5234
+ var import_jsx_runtime57 = require("react/jsx-runtime");
4560
5235
  var ScOnlyField = ({
4561
- tfRightIcon = /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_icons44.SiconBolt, { className: ScOnlyField_default.siconBoltInstance }),
4562
- tfLeftIcon = /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_icons44.SiconBolt, { className: ScOnlyField_default.siconBoltInstance }),
5236
+ tfRightIcon = /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(import_icons45.SiconBolt, { className: ScOnlyField_default.siconBoltInstance }),
5237
+ tfLeftIcon = /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(import_icons45.SiconBolt, { className: ScOnlyField_default.siconBoltInstance }),
4563
5238
  state = "default",
4564
5239
  tfGroup = "icon-right",
4565
5240
  labelGroup = "none",
@@ -4572,14 +5247,14 @@ var ScOnlyField = ({
4572
5247
  ...props
4573
5248
  }) => {
4574
5249
  const variantsClassName = ScOnlyField_default["state-" + state] + " " + ScOnlyField_default["tf-group-" + tfGroup] + " " + ScOnlyField_default["label-group-" + labelGroup] + (size !== "default" ? " " + ScOnlyField_default["size-" + size] : "");
4575
- return /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
5250
+ return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
4576
5251
  "div",
4577
5252
  {
4578
5253
  className: ScOnlyField_default.scOnlyField + " " + className + " " + variantsClassName,
4579
5254
  ...props,
4580
- children: /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)("div", { className: ScOnlyField_default.inputContainer, children: [
4581
- (tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("div", { className: ScOnlyField_default.iconWrapper, children: tfLeftIcon }),
4582
- /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
5255
+ children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: ScOnlyField_default.inputContainer, children: [
5256
+ (tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: ScOnlyField_default.iconWrapper, children: tfLeftIcon }),
5257
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
4583
5258
  "input",
4584
5259
  {
4585
5260
  className: ScOnlyField_default.inputText,
@@ -4599,15 +5274,15 @@ var ScOnlyField = ({
4599
5274
  ...inputProps
4600
5275
  }
4601
5276
  ),
4602
- (tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("div", { className: ScOnlyField_default.iconWrapper, children: tfRightIcon })
5277
+ (tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: ScOnlyField_default.iconWrapper, children: tfRightIcon })
4603
5278
  ] })
4604
5279
  }
4605
5280
  );
4606
5281
  };
4607
5282
 
4608
5283
  // src/SC-catalogixInvite/ScCatalogixInvite.tsx
4609
- var import_icons47 = require("@streamoid/icons");
4610
- var import_jsx_runtime55 = require("react/jsx-runtime");
5284
+ var import_icons48 = require("@streamoid/icons");
5285
+ var import_jsx_runtime58 = require("react/jsx-runtime");
4611
5286
  var ScCatalogixInvite = ({
4612
5287
  active = "false",
4613
5288
  appName = "Catalogix",
@@ -4629,23 +5304,23 @@ var ScCatalogixInvite = ({
4629
5304
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
4630
5305
  const variantsClassName = ScCatalogixInvite_default["active-" + (isEnabled ? "true" : "false")];
4631
5306
  const displayCount = selectedStores ? `${selectedStores.length} Selected` : selectedCount;
4632
- return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
5307
+ return /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)(
4633
5308
  "div",
4634
5309
  {
4635
5310
  className: ScCatalogixInvite_default.scCatalogixInvite + " " + className + " " + variantsClassName,
4636
5311
  ...props,
4637
5312
  children: [
4638
- /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScCatalogixInvite_default.appHeader, children: [
4639
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
5313
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: ScCatalogixInvite_default.appHeader, children: [
5314
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4640
5315
  ScAppCard,
4641
5316
  {
4642
- appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons45.SiconArtifacts, { className: ScCatalogixInvite_default.siconArtifactsInstance }),
5317
+ appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons46.SiconArtifacts, { className: ScCatalogixInvite_default.siconArtifactsInstance }),
4643
5318
  appDescription,
4644
5319
  appName,
4645
5320
  className: ScCatalogixInvite_default.scAppCardInstance
4646
5321
  }
4647
5322
  ),
4648
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
5323
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4649
5324
  ScToggleSwitch,
4650
5325
  {
4651
5326
  checked: isEnabled,
@@ -4654,29 +5329,29 @@ var ScCatalogixInvite = ({
4654
5329
  }
4655
5330
  )
4656
5331
  ] }),
4657
- isEnabled && /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_jsx_runtime55.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessContainer, children: [
4658
- /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessHeader, children: [
4659
- /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessTitle, children: [
5332
+ isEnabled && /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_jsx_runtime58.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessContainer, children: [
5333
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessHeader, children: [
5334
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessTitle, children: [
4660
5335
  storeAccessTitle,
4661
5336
  " "
4662
5337
  ] }),
4663
- /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScCatalogixInvite_default.selectedCount, children: [
5338
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: ScCatalogixInvite_default.selectedCount, children: [
4664
5339
  displayCount,
4665
5340
  " "
4666
5341
  ] })
4667
5342
  ] }),
4668
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
5343
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4669
5344
  ScOnlyField,
4670
5345
  {
4671
- tfLeftIcon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons46.SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
4672
- tfRightIcon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons46.SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
5346
+ tfLeftIcon: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons47.SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
5347
+ tfRightIcon: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons47.SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
4673
5348
  placeholderFilled: searchPlaceholder,
4674
5349
  value: searchValue,
4675
5350
  onInputChange: onSearchChange,
4676
5351
  className: ScCatalogixInvite_default.scOnlyFieldInstance
4677
5352
  }
4678
5353
  ),
4679
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("div", { className: ScCatalogixInvite_default.storeListContainer, children: stores ? stores.length > 0 ? stores.map((store) => /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
5354
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("div", { className: ScCatalogixInvite_default.storeListContainer, children: stores ? stores.length > 0 ? stores.map((store) => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4680
5355
  ScPairtext,
4681
5356
  {
4682
5357
  content: store.name,
@@ -4687,53 +5362,53 @@ var ScCatalogixInvite = ({
4687
5362
  className: ScCatalogixInvite_default.scPairtextInstance
4688
5363
  },
4689
5364
  store.id
4690
- )) : /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("div", { style: {
5365
+ )) : /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("div", { style: {
4691
5366
  padding: "var(--spacing-3xl, 16px)",
4692
5367
  color: "var(--alias-text-and-icons-muted, #7a7a7a)",
4693
5368
  fontFamily: "var(--font-family-font-family-body, Inter, sans-serif)",
4694
5369
  fontSize: "var(--font-size-font-size-sm, 14px)",
4695
5370
  lineHeight: "var(--line-height-line-height-sm, 20px)"
4696
- }, children: "No stores found" }) : /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(import_jsx_runtime55.Fragment, { children: [
4697
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
5371
+ }, children: "No stores found" }) : /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)(import_jsx_runtime58.Fragment, { children: [
5372
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4698
5373
  ScPairtext,
4699
5374
  {
4700
- icon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons47.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
5375
+ icon: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons48.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
4701
5376
  iconPosition: "right",
4702
5377
  type: "checkbox",
4703
5378
  className: ScCatalogixInvite_default.scPairtextInstance
4704
5379
  }
4705
5380
  ),
4706
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
5381
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4707
5382
  ScPairtext,
4708
5383
  {
4709
- icon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons47.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
5384
+ icon: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons48.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
4710
5385
  iconPosition: "right",
4711
5386
  type: "checkbox",
4712
5387
  className: ScCatalogixInvite_default.scPairtextInstance
4713
5388
  }
4714
5389
  ),
4715
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
5390
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4716
5391
  ScPairtext,
4717
5392
  {
4718
- icon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons47.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
5393
+ icon: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons48.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
4719
5394
  iconPosition: "right",
4720
5395
  type: "checkbox",
4721
5396
  className: ScCatalogixInvite_default.scPairtextInstance
4722
5397
  }
4723
5398
  ),
4724
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
5399
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4725
5400
  ScPairtext,
4726
5401
  {
4727
- icon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons47.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
5402
+ icon: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons48.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
4728
5403
  iconPosition: "right",
4729
5404
  type: "checkbox",
4730
5405
  className: ScCatalogixInvite_default.scPairtextInstance
4731
5406
  }
4732
5407
  ),
4733
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
5408
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4734
5409
  ScPairtext,
4735
5410
  {
4736
- icon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons47.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
5411
+ icon: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons48.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
4737
5412
  iconPosition: "right",
4738
5413
  type: "checkbox",
4739
5414
  className: ScCatalogixInvite_default.scPairtextInstance
@@ -4747,7 +5422,7 @@ var ScCatalogixInvite = ({
4747
5422
  };
4748
5423
 
4749
5424
  // src/SC-appField/ScAppField.tsx
4750
- var import_jsx_runtime56 = require("react/jsx-runtime");
5425
+ var import_jsx_runtime59 = require("react/jsx-runtime");
4751
5426
  var ScAppField = ({
4752
5427
  appFieldTitle = "App permission",
4753
5428
  className,
@@ -4764,13 +5439,13 @@ var ScAppField = ({
4764
5439
  onCatalogixSearchChange,
4765
5440
  ...props
4766
5441
  }) => {
4767
- return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScAppField_default.scAppField + " " + className, ...props, children: [
4768
- /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: ScAppField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScAppField_default.title, children: [
5442
+ return /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: ScAppField_default.scAppField + " " + className, ...props, children: [
5443
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { className: ScAppField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: ScAppField_default.title, children: [
4769
5444
  appFieldTitle,
4770
5445
  " "
4771
5446
  ] }) }),
4772
- /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScAppField_default.inputContainer, children: [
4773
- /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
5447
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: ScAppField_default.inputContainer, children: [
5448
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
4774
5449
  ScArtifaxInvite,
4775
5450
  {
4776
5451
  enabled: artifaxEnabled,
@@ -4778,18 +5453,18 @@ var ScAppField = ({
4778
5453
  className: ScAppField_default.scArtifaxInviteInstance
4779
5454
  }
4780
5455
  ),
4781
- /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
5456
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
4782
5457
  ScPhtogenixInvite,
4783
5458
  {
4784
5459
  enabled: photogenixEnabled,
4785
5460
  onToggle: onPhotogenixToggle,
4786
5461
  scAppCardappDescription: "Info about photogenix",
4787
5462
  scAppCardappName: "Photogenix",
4788
- scAppCardappIcon: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(import_icons48.SiconPhotogenix, { className: ScAppField_default.siconPhotogenixInstance }),
5463
+ scAppCardappIcon: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_icons49.SiconPhotogenix, { className: ScAppField_default.siconPhotogenixInstance }),
4789
5464
  className: ScAppField_default.scPhtogenixInviteInstance
4790
5465
  }
4791
5466
  ),
4792
- /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
5467
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
4793
5468
  ScCatalogixInvite,
4794
5469
  {
4795
5470
  enabled: catalogixEnabled,
@@ -4816,13 +5491,13 @@ var ScBillingHistoryHeader_default = {
4816
5491
  };
4817
5492
 
4818
5493
  // src/SC-billingHistoryHeader/ScBillingHistoryHeader.tsx
4819
- var import_jsx_runtime57 = require("react/jsx-runtime");
5494
+ var import_jsx_runtime60 = require("react/jsx-runtime");
4820
5495
  var ScBillingHistoryHeader = ({
4821
5496
  className,
4822
5497
  ...props
4823
5498
  }) => {
4824
- return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
4825
- /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
5499
+ return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
5500
+ /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4826
5501
  ScHeader,
4827
5502
  {
4828
5503
  text: "Invoice",
@@ -4830,7 +5505,7 @@ var ScBillingHistoryHeader = ({
4830
5505
  className: ScBillingHistoryHeader_default.scHeaderInstance
4831
5506
  }
4832
5507
  ),
4833
- /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
5508
+ /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4834
5509
  ScHeader,
4835
5510
  {
4836
5511
  text: "Amount",
@@ -4838,7 +5513,7 @@ var ScBillingHistoryHeader = ({
4838
5513
  className: ScBillingHistoryHeader_default.scHeaderInstance2
4839
5514
  }
4840
5515
  ),
4841
- /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
5516
+ /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4842
5517
  ScHeader,
4843
5518
  {
4844
5519
  text: "Date",
@@ -4846,7 +5521,7 @@ var ScBillingHistoryHeader = ({
4846
5521
  className: ScBillingHistoryHeader_default.scHeaderInstance2
4847
5522
  }
4848
5523
  ),
4849
- /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
5524
+ /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4850
5525
  ScHeader,
4851
5526
  {
4852
5527
  text: "Action",
@@ -4867,20 +5542,20 @@ var ScCheckField_default = {
4867
5542
  };
4868
5543
 
4869
5544
  // src/SC-checkField/ScCheckField.tsx
4870
- var import_icons49 = require("@streamoid/icons");
4871
- var import_jsx_runtime58 = require("react/jsx-runtime");
5545
+ var import_icons50 = require("@streamoid/icons");
5546
+ var import_jsx_runtime61 = require("react/jsx-runtime");
4872
5547
  var ScCheckField = ({
4873
5548
  label = "Label",
4874
5549
  className,
4875
5550
  checkboxes,
4876
5551
  ...props
4877
5552
  }) => {
4878
- return /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: ScCheckField_default.scCheckField + " " + className, ...props, children: [
4879
- /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("div", { className: ScCheckField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: ScCheckField_default.label, children: [
5553
+ return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScCheckField_default.scCheckField + " " + className, ...props, children: [
5554
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("div", { className: ScCheckField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScCheckField_default.label, children: [
4880
5555
  label,
4881
5556
  " "
4882
5557
  ] }) }),
4883
- /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("div", { className: ScCheckField_default.tabSwitcher, children: checkboxes ? checkboxes.map((item, i) => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
5558
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("div", { className: ScCheckField_default.tabSwitcher, children: checkboxes ? checkboxes.map((item, i) => /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4884
5559
  ScPairtext,
4885
5560
  {
4886
5561
  content: item.label,
@@ -4890,19 +5565,19 @@ var ScCheckField = ({
4890
5565
  className: ScCheckField_default.scPairtextInstance
4891
5566
  },
4892
5567
  i
4893
- )) : /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)(import_jsx_runtime58.Fragment, { children: [
4894
- /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
5568
+ )) : /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(import_jsx_runtime61.Fragment, { children: [
5569
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4895
5570
  ScPairtext,
4896
5571
  {
4897
- icon: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons49.SiconHome, { className: ScCheckField_default.siconHomeInstance }),
5572
+ icon: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_icons50.SiconHome, { className: ScCheckField_default.siconHomeInstance }),
4898
5573
  type: "checkbox",
4899
5574
  className: ScCheckField_default.scPairtextInstance
4900
5575
  }
4901
5576
  ),
4902
- /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
5577
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
4903
5578
  ScPairtext,
4904
5579
  {
4905
- icon: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons49.SiconHome, { className: ScCheckField_default.siconHomeInstance }),
5580
+ icon: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_icons50.SiconHome, { className: ScCheckField_default.siconHomeInstance }),
4906
5581
  type: "checkbox",
4907
5582
  className: ScCheckField_default.scPairtextInstance
4908
5583
  }
@@ -4922,10 +5597,10 @@ var ScFieldButton_default = {
4922
5597
  };
4923
5598
 
4924
5599
  // src/SC-fieldButton/ScFieldButton.tsx
4925
- var import_icons50 = require("@streamoid/icons");
4926
- var import_jsx_runtime59 = require("react/jsx-runtime");
5600
+ var import_icons51 = require("@streamoid/icons");
5601
+ var import_jsx_runtime62 = require("react/jsx-runtime");
4927
5602
  var ScFieldButton = ({
4928
- icon = /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_icons50.SiconHome, { className: ScFieldButton_default.siconHomeInstance }),
5603
+ icon = /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_icons51.SiconHome, { className: ScFieldButton_default.siconHomeInstance }),
4929
5604
  type = "default",
4930
5605
  state = "default",
4931
5606
  className,
@@ -4933,18 +5608,18 @@ var ScFieldButton = ({
4933
5608
  ...props
4934
5609
  }) => {
4935
5610
  const variantsClassName = ScFieldButton_default["type-" + type] + " " + ScFieldButton_default["state-" + state];
4936
- return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
5611
+ return /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4937
5612
  "div",
4938
5613
  {
4939
5614
  className: ScFieldButton_default.scFieldButton + " " + className + " " + variantsClassName,
4940
5615
  ...props,
4941
- children: /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: ScFieldButton_default.container, children: [
4942
- (type === "icon-right" || type === "only-icon") && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_jsx_runtime59.Fragment, { children: icon }),
4943
- (type === "icon-left" || type === "default" || type === "icon-right") && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_jsx_runtime59.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: ScFieldButton_default.label, children: [
5616
+ children: /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScFieldButton_default.container, children: [
5617
+ (type === "icon-right" || type === "only-icon") && /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_jsx_runtime62.Fragment, { children: icon }),
5618
+ (type === "icon-left" || type === "default" || type === "icon-right") && /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_jsx_runtime62.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScFieldButton_default.label, children: [
4944
5619
  text,
4945
5620
  " "
4946
5621
  ] }) }),
4947
- type === "icon-left" && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_jsx_runtime59.Fragment, { children: icon })
5622
+ type === "icon-left" && /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(import_jsx_runtime62.Fragment, { children: icon })
4948
5623
  ] })
4949
5624
  }
4950
5625
  );
@@ -4958,17 +5633,17 @@ var ScPendingAction_default = {
4958
5633
  };
4959
5634
 
4960
5635
  // src/SC-pendingAction/ScPendingAction.tsx
4961
- var import_icons51 = require("@streamoid/icons");
4962
- var import_jsx_runtime60 = require("react/jsx-runtime");
5636
+ var import_icons52 = require("@streamoid/icons");
5637
+ var import_jsx_runtime63 = require("react/jsx-runtime");
4963
5638
  var ScPendingAction = ({
4964
5639
  className,
4965
5640
  ...props
4966
5641
  }) => {
4967
- return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
4968
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
5642
+ return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
5643
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4969
5644
  ScButton,
4970
5645
  {
4971
- icon: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(import_icons51.SiconHome, { className: ScPendingAction_default.siconHomeInstance }),
5646
+ icon: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons52.SiconHome, { className: ScPendingAction_default.siconHomeInstance }),
4972
5647
  text: "Cancel",
4973
5648
  variant: "error",
4974
5649
  type: "tertiary",
@@ -4976,11 +5651,11 @@ var ScPendingAction = ({
4976
5651
  className: ScPendingAction_default.scButtonInstance
4977
5652
  }
4978
5653
  ),
4979
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(ScVDivider, { className: ScPendingAction_default.scVDividerInstance }),
4980
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
5654
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(ScVDivider, { className: ScPendingAction_default.scVDividerInstance }),
5655
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
4981
5656
  ScButton,
4982
5657
  {
4983
- icon: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(import_icons51.SiconHome, { className: ScPendingAction_default.siconHomeInstance }),
5658
+ icon: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons52.SiconHome, { className: ScPendingAction_default.siconHomeInstance }),
4984
5659
  text: "Resend",
4985
5660
  variant: "tertiary",
4986
5661
  size: "sm",
@@ -5003,8 +5678,8 @@ var ScQuickPrompt_default = {
5003
5678
  };
5004
5679
 
5005
5680
  // src/SC-quick prompt/ScQuickPrompt.tsx
5006
- var import_icons52 = require("@streamoid/icons");
5007
- var import_jsx_runtime61 = require("react/jsx-runtime");
5681
+ var import_icons53 = require("@streamoid/icons");
5682
+ var import_jsx_runtime64 = require("react/jsx-runtime");
5008
5683
  var ScQuickPrompt = ({
5009
5684
  appName = "Photogenix",
5010
5685
  heading = "Swap Model and Background",
@@ -5012,20 +5687,20 @@ var ScQuickPrompt = ({
5012
5687
  className,
5013
5688
  ...props
5014
5689
  }) => {
5015
- return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScQuickPrompt_default.scQuickPrompt + " " + className, ...props, children: [
5016
- /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScQuickPrompt_default.header, children: [
5017
- /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("div", { className: ScQuickPrompt_default.iconContainer, children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_icons52.SiconBolt, { className: ScQuickPrompt_default.siconBoltInstance }) }),
5018
- /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("div", { className: ScQuickPrompt_default.titleContainer, children: /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScQuickPrompt_default.title, children: [
5690
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScQuickPrompt_default.scQuickPrompt + " " + className, ...props, children: [
5691
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScQuickPrompt_default.header, children: [
5692
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("div", { className: ScQuickPrompt_default.iconContainer, children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_icons53.SiconBolt, { className: ScQuickPrompt_default.siconBoltInstance }) }),
5693
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("div", { className: ScQuickPrompt_default.titleContainer, children: /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScQuickPrompt_default.title, children: [
5019
5694
  appName,
5020
5695
  " "
5021
5696
  ] }) })
5022
5697
  ] }),
5023
- /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScQuickPrompt_default.body, children: [
5024
- /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScQuickPrompt_default.heading, children: [
5698
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScQuickPrompt_default.body, children: [
5699
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScQuickPrompt_default.heading, children: [
5025
5700
  heading,
5026
5701
  " "
5027
5702
  ] }),
5028
- /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScQuickPrompt_default.description, children: [
5703
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScQuickPrompt_default.description, children: [
5029
5704
  description,
5030
5705
  " "
5031
5706
  ] })
@@ -5042,13 +5717,13 @@ var ScReferralTableHeader_default = {
5042
5717
  };
5043
5718
 
5044
5719
  // src/SC-referralTableHeader/ScReferralTableHeader.tsx
5045
- var import_jsx_runtime62 = require("react/jsx-runtime");
5720
+ var import_jsx_runtime65 = require("react/jsx-runtime");
5046
5721
  var ScReferralTableHeader = ({
5047
5722
  className,
5048
5723
  ...props
5049
5724
  }) => {
5050
- return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
5051
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
5725
+ return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
5726
+ /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
5052
5727
  ScHeader,
5053
5728
  {
5054
5729
  text: "User",
@@ -5056,7 +5731,7 @@ var ScReferralTableHeader = ({
5056
5731
  className: ScReferralTableHeader_default.scHeaderInstance
5057
5732
  }
5058
5733
  ),
5059
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
5734
+ /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
5060
5735
  ScHeader,
5061
5736
  {
5062
5737
  text: "Date",
@@ -5064,7 +5739,7 @@ var ScReferralTableHeader = ({
5064
5739
  className: ScReferralTableHeader_default.scHeaderInstance2
5065
5740
  }
5066
5741
  ),
5067
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
5742
+ /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
5068
5743
  ScHeader,
5069
5744
  {
5070
5745
  text: "Status",
@@ -5072,7 +5747,7 @@ var ScReferralTableHeader = ({
5072
5747
  className: ScReferralTableHeader_default.scHeaderInstance3
5073
5748
  }
5074
5749
  ),
5075
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
5750
+ /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
5076
5751
  ScHeader,
5077
5752
  {
5078
5753
  text: "Reward",
@@ -5093,7 +5768,7 @@ var ScReferralTableList_default = {
5093
5768
  };
5094
5769
 
5095
5770
  // src/SC-referralTableList/ScReferralTableList.tsx
5096
- var import_jsx_runtime63 = require("react/jsx-runtime");
5771
+ var import_jsx_runtime66 = require("react/jsx-runtime");
5097
5772
  var ScReferralTableList = ({
5098
5773
  userEmail = "chris@kepler.com",
5099
5774
  userName,
@@ -5103,8 +5778,8 @@ var ScReferralTableList = ({
5103
5778
  className,
5104
5779
  ...props
5105
5780
  }) => {
5106
- return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
5107
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
5781
+ return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
5782
+ /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
5108
5783
  ScProfile,
5109
5784
  {
5110
5785
  subText: userEmail,
@@ -5112,12 +5787,12 @@ var ScReferralTableList = ({
5112
5787
  className: ScReferralTableList_default.scProfileInstance
5113
5788
  }
5114
5789
  ),
5115
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScReferralTableList_default.date, children: [
5790
+ /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("div", { className: ScReferralTableList_default.date, children: [
5116
5791
  date,
5117
5792
  " "
5118
5793
  ] }),
5119
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(ScBadges, { text: status, className: ScReferralTableList_default.scBadgesInstance }),
5120
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScReferralTableList_default.points, children: [
5794
+ /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(ScBadges, { text: status, className: ScReferralTableList_default.scBadgesInstance }),
5795
+ /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("div", { className: ScReferralTableList_default.points, children: [
5121
5796
  points,
5122
5797
  " "
5123
5798
  ] })
@@ -5131,35 +5806,35 @@ var ScSettingsNav_default = {
5131
5806
  };
5132
5807
 
5133
5808
  // src/SC-settingsNav/ScSettingsNav.tsx
5134
- var import_icons53 = require("@streamoid/icons");
5135
5809
  var import_icons54 = require("@streamoid/icons");
5136
- var import_jsx_runtime64 = require("react/jsx-runtime");
5810
+ var import_icons55 = require("@streamoid/icons");
5811
+ var import_jsx_runtime67 = require("react/jsx-runtime");
5137
5812
  var ScSettingsNav = ({
5138
5813
  className,
5139
5814
  ...props
5140
5815
  }) => {
5141
- return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("div", { className: ScSettingsNav_default.scSettingsNav + " " + className, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScSettingsNav_default.container, children: [
5142
- /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
5816
+ return /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { className: ScSettingsNav_default.scSettingsNav + " " + className, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScSettingsNav_default.container, children: [
5817
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
5143
5818
  ScSidebarMenu,
5144
5819
  {
5145
- icon: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_icons53.SiconTeam, { className: ScSettingsNav_default.siconTeamInstance }),
5820
+ icon: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_icons54.SiconTeam, { className: ScSettingsNav_default.siconTeamInstance }),
5146
5821
  text: "Profile",
5147
5822
  state: "active",
5148
5823
  className: ScSettingsNav_default.scSidebarMenuInstance
5149
5824
  }
5150
5825
  ),
5151
- /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
5826
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
5152
5827
  ScSidebarMenu,
5153
5828
  {
5154
- icon: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_icons54.SiconWorkspace, { className: ScSettingsNav_default.siconWorkspaceInstance }),
5829
+ icon: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_icons55.SiconWorkspace, { className: ScSettingsNav_default.siconWorkspaceInstance }),
5155
5830
  text: "Workspace",
5156
5831
  className: ScSettingsNav_default.scSidebarMenuInstance
5157
5832
  }
5158
5833
  ),
5159
- /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
5834
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
5160
5835
  ScSidebarMenu,
5161
5836
  {
5162
- icon: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_icons54.SiconReferral, { className: ScSettingsNav_default.siconReferralInstance }),
5837
+ icon: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_icons55.SiconReferral, { className: ScSettingsNav_default.siconReferralInstance }),
5163
5838
  text: "Referral",
5164
5839
  className: ScSettingsNav_default.scSidebarMenuInstance
5165
5840
  }
@@ -5175,7 +5850,7 @@ var ScTabField_default = {
5175
5850
  };
5176
5851
 
5177
5852
  // src/SC-tabField/ScTabField.tsx
5178
- var import_jsx_runtime65 = require("react/jsx-runtime");
5853
+ var import_jsx_runtime68 = require("react/jsx-runtime");
5179
5854
  var ScTabField = ({
5180
5855
  label = "Label",
5181
5856
  className,
@@ -5184,17 +5859,17 @@ var ScTabField = ({
5184
5859
  onTabChange,
5185
5860
  ...props
5186
5861
  }) => {
5187
- return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)("div", { className: ScTabField_default.scTabField + " " + className, children: [
5188
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("div", { className: ScTabField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)("div", { className: ScTabField_default.label, children: [
5862
+ return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScTabField_default.scTabField + " " + className, children: [
5863
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("div", { className: ScTabField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScTabField_default.label, children: [
5189
5864
  label,
5190
5865
  " "
5191
5866
  ] }) }),
5192
- tabs ? /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
5867
+ tabs ? /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
5193
5868
  ScTabSwitcher,
5194
5869
  {
5195
5870
  tabCount: String(tabs.length),
5196
5871
  className: ScTabField_default.scTabSwitcherInstance,
5197
- component: tabs[0] ? /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
5872
+ component: tabs[0] ? /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
5198
5873
  ScTabComp,
5199
5874
  {
5200
5875
  text: tabs[0].label,
@@ -5204,7 +5879,7 @@ var ScTabField = ({
5204
5879
  style: { flex: 1 }
5205
5880
  }
5206
5881
  ) : void 0,
5207
- component2: tabs[1] ? /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
5882
+ component2: tabs[1] ? /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
5208
5883
  ScTabComp,
5209
5884
  {
5210
5885
  text: tabs[1].label,
@@ -5215,7 +5890,7 @@ var ScTabField = ({
5215
5890
  }
5216
5891
  ) : void 0
5217
5892
  }
5218
- ) : /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(ScTabSwitcher, { className: ScTabField_default.scTabSwitcherInstance })
5893
+ ) : /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(ScTabSwitcher, { className: ScTabField_default.scTabSwitcherInstance })
5219
5894
  ] });
5220
5895
  };
5221
5896
 
@@ -5232,19 +5907,19 @@ var ScTableHeader_default = {
5232
5907
  };
5233
5908
 
5234
5909
  // src/SC-tableHeader/ScTableHeader.tsx
5235
- var import_jsx_runtime66 = require("react/jsx-runtime");
5910
+ var import_jsx_runtime69 = require("react/jsx-runtime");
5236
5911
  var ScTableHeader = ({
5237
5912
  type = "default",
5238
5913
  className,
5239
5914
  ...props
5240
5915
  }) => {
5241
5916
  const variantsClassName = ScTableHeader_default["type-" + type];
5242
- return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
5917
+ return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(
5243
5918
  "div",
5244
5919
  {
5245
5920
  className: ScTableHeader_default.scTableHeader + " " + className + " " + variantsClassName,
5246
5921
  children: [
5247
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
5922
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5248
5923
  ScHeader,
5249
5924
  {
5250
5925
  text: "User",
@@ -5252,7 +5927,7 @@ var ScTableHeader = ({
5252
5927
  className: ScTableHeader_default.scHeaderInstance
5253
5928
  }
5254
5929
  ),
5255
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
5930
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5256
5931
  ScHeader,
5257
5932
  {
5258
5933
  text: "Role",
@@ -5260,7 +5935,7 @@ var ScTableHeader = ({
5260
5935
  className: ScTableHeader_default.scHeaderInstance2
5261
5936
  }
5262
5937
  ),
5263
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
5938
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5264
5939
  ScHeader,
5265
5940
  {
5266
5941
  text: "Access",
@@ -5268,7 +5943,7 @@ var ScTableHeader = ({
5268
5943
  className: ScTableHeader_default.scHeaderInstance3
5269
5944
  }
5270
5945
  ),
5271
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
5946
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5272
5947
  ScHeader,
5273
5948
  {
5274
5949
  text: "Invited by",
@@ -5276,7 +5951,7 @@ var ScTableHeader = ({
5276
5951
  className: ScTableHeader_default.scHeaderInstance4
5277
5952
  }
5278
5953
  ),
5279
- type === "pending" && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(import_jsx_runtime66.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
5954
+ type === "pending" && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(import_jsx_runtime69.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5280
5955
  ScHeader,
5281
5956
  {
5282
5957
  text: "Invite action",
@@ -5284,7 +5959,7 @@ var ScTableHeader = ({
5284
5959
  className: ScTableHeader_default.scHeaderInstance5
5285
5960
  }
5286
5961
  ) }),
5287
- type === "default" && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(import_jsx_runtime66.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
5962
+ type === "default" && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(import_jsx_runtime69.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5288
5963
  ScHeader,
5289
5964
  {
5290
5965
  text: "Signed On",
@@ -5316,9 +5991,9 @@ var ScTableList_default = {
5316
5991
  };
5317
5992
 
5318
5993
  // src/SC-tableList/ScTableList.tsx
5319
- var import_icons55 = require("@streamoid/icons");
5320
5994
  var import_icons56 = require("@streamoid/icons");
5321
- var import_jsx_runtime67 = require("react/jsx-runtime");
5995
+ var import_icons57 = require("@streamoid/icons");
5996
+ var import_jsx_runtime70 = require("react/jsx-runtime");
5322
5997
  var ScTableList = ({
5323
5998
  invitedBy = "Rohan",
5324
5999
  signedOn = "Nov 9th, 2025",
@@ -5330,51 +6005,51 @@ var ScTableList = ({
5330
6005
  ...props
5331
6006
  }) => {
5332
6007
  const variantsClassName = ScTableList_default["hover-" + hover] + " " + ScTableList_default["variant-" + variant];
5333
- return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
6008
+ return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
5334
6009
  "div",
5335
6010
  {
5336
6011
  className: ScTableList_default.scTableList + " " + className + " " + variantsClassName,
5337
6012
  onClick: (e) => onRowClick && onRowClick(invitedBy, e),
5338
6013
  ...props,
5339
6014
  children: [
5340
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
6015
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
5341
6016
  ScProfile,
5342
6017
  {
5343
6018
  subText: userEmail,
5344
6019
  className: ScTableList_default.scProfileInstance
5345
6020
  }
5346
6021
  ),
5347
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(ScRole, { className: ScTableList_default.scRoleInstance }),
5348
- /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScTableList_default.accessInfo, children: [
5349
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
6022
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(ScRole, { className: ScTableList_default.scRoleInstance }),
6023
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)("div", { className: ScTableList_default.accessInfo, children: [
6024
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
5350
6025
  ScAccess,
5351
6026
  {
5352
- component: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_icons55.SiconArtifacts, { className: ScTableList_default.siconArtifactsInstance }),
5353
- component2: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_icons55.SiconPhotogenix, { className: ScTableList_default.siconPhotogenixInstance }),
6027
+ component: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(import_icons56.SiconArtifacts, { className: ScTableList_default.siconArtifactsInstance }),
6028
+ component2: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(import_icons56.SiconPhotogenix, { className: ScTableList_default.siconPhotogenixInstance }),
5354
6029
  className: ScTableList_default.scAccessInstance
5355
6030
  }
5356
6031
  ),
5357
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
6032
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
5358
6033
  ScAccess,
5359
6034
  {
5360
- component: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_icons56.SiconUserAdd, { className: ScTableList_default.siconUserAddInstance }),
5361
- component2: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_icons56.SiconCoins, { className: ScTableList_default.siconCoinsInstance }),
6035
+ component: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(import_icons57.SiconUserAdd, { className: ScTableList_default.siconUserAddInstance }),
6036
+ component2: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(import_icons57.SiconCoins, { className: ScTableList_default.siconCoinsInstance }),
5362
6037
  visibleSiconCatalogix: false,
5363
6038
  className: ScTableList_default.scAccessInstance
5364
6039
  }
5365
6040
  )
5366
6041
  ] }),
5367
- /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScTableList_default.userName, children: [
6042
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)("div", { className: ScTableList_default.userName, children: [
5368
6043
  invitedBy,
5369
6044
  " "
5370
6045
  ] }),
5371
- variant === "pending" && /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_jsx_runtime67.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
6046
+ variant === "pending" && /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(import_jsx_runtime70.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
5372
6047
  ScPendingAction,
5373
6048
  {
5374
6049
  className: ScTableList_default.scPendingActionInstance
5375
6050
  }
5376
6051
  ) }),
5377
- variant === "active" && /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_jsx_runtime67.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScTableList_default.date, children: [
6052
+ variant === "active" && /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(import_jsx_runtime70.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)("div", { className: ScTableList_default.date, children: [
5378
6053
  signedOn,
5379
6054
  " "
5380
6055
  ] }) })
@@ -5403,8 +6078,8 @@ var ScWorkspaceCard_default = {
5403
6078
  };
5404
6079
 
5405
6080
  // src/SC-workspaceCard/ScWorkspaceCard.tsx
5406
- var import_icons57 = require("@streamoid/icons");
5407
- var import_jsx_runtime68 = require("react/jsx-runtime");
6081
+ var import_icons58 = require("@streamoid/icons");
6082
+ var import_jsx_runtime71 = require("react/jsx-runtime");
5408
6083
  var ScWorkspaceCard = ({
5409
6084
  workspaceName = "Stores",
5410
6085
  role = "Admin",
@@ -5414,21 +6089,21 @@ var ScWorkspaceCard = ({
5414
6089
  className,
5415
6090
  ...props
5416
6091
  }) => {
5417
- return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceCard_default.scWorkspaceCard + " " + className, ...props, children: [
5418
- /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceCard_default.workspaceInfo, children: [
5419
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
6092
+ return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)("div", { className: ScWorkspaceCard_default.scWorkspaceCard + " " + className, ...props, children: [
6093
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)("div", { className: ScWorkspaceCard_default.workspaceInfo, children: [
6094
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
5420
6095
  ScIntialProfileCover,
5421
6096
  {
5422
6097
  className: ScWorkspaceCard_default.scIntialProfileCoverInstance
5423
6098
  }
5424
6099
  ),
5425
- /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceCard_default.workspaceName, children: [
6100
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)("div", { className: ScWorkspaceCard_default.workspaceName, children: [
5426
6101
  workspaceName,
5427
6102
  " "
5428
6103
  ] })
5429
6104
  ] }),
5430
- /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceCard_default.userInfo, children: [
5431
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
6105
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)("div", { className: ScWorkspaceCard_default.userInfo, children: [
6106
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
5432
6107
  ScBadges,
5433
6108
  {
5434
6109
  text: role,
@@ -5436,41 +6111,41 @@ var ScWorkspaceCard = ({
5436
6111
  className: ScWorkspaceCard_default.scBadgesInstance
5437
6112
  }
5438
6113
  ),
5439
- /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceCard_default.userDetails, children: [
5440
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
6114
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)("div", { className: ScWorkspaceCard_default.userDetails, children: [
6115
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
5441
6116
  ScPairtext,
5442
6117
  {
5443
- icon: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(import_icons57.SiconTeam, { className: ScWorkspaceCard_default.siconTeamInstance }),
6118
+ icon: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(import_icons58.SiconTeam, { className: ScWorkspaceCard_default.siconTeamInstance }),
5444
6119
  content: userCount,
5445
6120
  className: ScWorkspaceCard_default.scPairtextInstance
5446
6121
  }
5447
6122
  ),
5448
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(ScVDivider, { className: ScWorkspaceCard_default.scVDividerInstance }),
5449
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
6123
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(ScVDivider, { className: ScWorkspaceCard_default.scVDividerInstance }),
6124
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
5450
6125
  ScPairtext,
5451
6126
  {
5452
- icon: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(import_icons57.SiconCrown, { className: ScWorkspaceCard_default.siconCrownInstance }),
6127
+ icon: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(import_icons58.SiconCrown, { className: ScWorkspaceCard_default.siconCrownInstance }),
5453
6128
  content: ownerEmail,
5454
6129
  className: ScWorkspaceCard_default.scPairtextInstance
5455
6130
  }
5456
6131
  )
5457
6132
  ] })
5458
6133
  ] }),
5459
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
6134
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
5460
6135
  ScButton,
5461
6136
  {
5462
- icon: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(import_icons57.SiconSwitch, { className: ScWorkspaceCard_default.siconSwitchInstance }),
6137
+ icon: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(import_icons58.SiconSwitch, { className: ScWorkspaceCard_default.siconSwitchInstance }),
5463
6138
  text: buttonText,
5464
6139
  state: "disabled",
5465
6140
  variant: "outline",
5466
6141
  className: ScWorkspaceCard_default.scButtonInstance
5467
6142
  }
5468
6143
  ),
5469
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
6144
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
5470
6145
  ScButton,
5471
6146
  {
5472
6147
  text: "Leave workspace",
5473
- icon: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(import_icons57.SiconLogout, { className: ScWorkspaceCard_default.siconLogoutInstance }),
6148
+ icon: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(import_icons58.SiconLogout, { className: ScWorkspaceCard_default.siconLogoutInstance }),
5474
6149
  styleVariant: "icon-only",
5475
6150
  variant: "error",
5476
6151
  className: ScWorkspaceCard_default.scButtonInstance2
@@ -5480,8 +6155,8 @@ var ScWorkspaceCard = ({
5480
6155
  };
5481
6156
 
5482
6157
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.tsx
5483
- var import_react10 = require("react");
5484
- var import_icons58 = require("@streamoid/icons");
6158
+ var import_react11 = require("react");
6159
+ var import_icons59 = require("@streamoid/icons");
5485
6160
 
5486
6161
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.module.css
5487
6162
  var ScWorkspaceSwitchCard_default = {
@@ -5506,7 +6181,7 @@ var ScWorkspaceSwitchCard_default = {
5506
6181
  };
5507
6182
 
5508
6183
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.tsx
5509
- var import_jsx_runtime69 = require("react/jsx-runtime");
6184
+ var import_jsx_runtime72 = require("react/jsx-runtime");
5510
6185
  function ScWorkspaceSwitchCard({
5511
6186
  wsName = "Workspace name is kepler",
5512
6187
  role = "Admin",
@@ -5521,7 +6196,7 @@ function ScWorkspaceSwitchCard({
5521
6196
  onSettings,
5522
6197
  onLeave
5523
6198
  }) {
5524
- const [internalHover, setInternalHover] = (0, import_react10.useState)(false);
6199
+ const [internalHover, setInternalHover] = (0, import_react11.useState)(false);
5525
6200
  const isHover = hover !== void 0 ? hover : internalHover;
5526
6201
  const isCurrent = type === "currentWS";
5527
6202
  const isOther = type === "otherWS";
@@ -5536,14 +6211,14 @@ function ScWorkspaceSwitchCard({
5536
6211
  ].filter(Boolean).join(" ");
5537
6212
  const dpBg = isCurrent ? "var(--alias-fill-neutral-neutralactive, #313131)" : "var(--alias-fill-neutral-neutralselected, #242424)";
5538
6213
  const roleColorClass = isAdmin ? ScWorkspaceSwitchCard_default.detailValueRole : ScWorkspaceSwitchCard_default.detailValueInfo;
5539
- return /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
6214
+ return /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
5540
6215
  "div",
5541
6216
  {
5542
6217
  className: cardClass,
5543
6218
  onMouseEnter: () => setInternalHover(true),
5544
6219
  onMouseLeave: () => setInternalHover(false),
5545
- children: /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSwitchCard_default.wsInfo, children: [
5546
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
6220
+ children: /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScWorkspaceSwitchCard_default.wsInfo, children: [
6221
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
5547
6222
  ScDp,
5548
6223
  {
5549
6224
  type: imageUrl ? "image" : "initial",
@@ -5557,26 +6232,26 @@ function ScWorkspaceSwitchCard({
5557
6232
  }
5558
6233
  }
5559
6234
  ),
5560
- /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSwitchCard_default.infoCol, children: [
5561
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("p", { className: ScWorkspaceSwitchCard_default.wsName, children: wsName }),
5562
- /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailsRow, children: [
5563
- /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
5564
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Role" }),
5565
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: roleColorClass, children: displayRole })
6235
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScWorkspaceSwitchCard_default.infoCol, children: [
6236
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScWorkspaceSwitchCard_default.wsName, children: wsName }),
6237
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailsRow, children: [
6238
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
6239
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Role" }),
6240
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("span", { className: roleColorClass, children: displayRole })
5566
6241
  ] }),
5567
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
5568
- /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
5569
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Plan" }),
5570
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: plan })
6242
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
6243
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
6244
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Plan" }),
6245
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: plan })
5571
6246
  ] }),
5572
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
5573
- /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItemFlex, children: [
5574
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Workspace Owner" }),
5575
- /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: ownerId })
6247
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
6248
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItemFlex, children: [
6249
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Workspace Owner" }),
6250
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: ownerId })
5576
6251
  ] })
5577
6252
  ] })
5578
6253
  ] }),
5579
- isHover && isOther && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
6254
+ isHover && isOther && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
5580
6255
  "div",
5581
6256
  {
5582
6257
  onClick: (e) => {
@@ -5584,19 +6259,19 @@ function ScWorkspaceSwitchCard({
5584
6259
  onSwitch?.();
5585
6260
  },
5586
6261
  style: { cursor: "pointer" },
5587
- children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
6262
+ children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
5588
6263
  ScButton,
5589
6264
  {
5590
6265
  text: "Switch Workspace",
5591
6266
  variant: "secondary",
5592
6267
  size: "sm",
5593
6268
  styleVariant: "icon-left",
5594
- icon: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(import_icons58.SiconSwitch, { className: ScWorkspaceSwitchCard_default.btnIcon })
6269
+ icon: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(import_icons59.SiconSwitch, { className: ScWorkspaceSwitchCard_default.btnIcon })
5595
6270
  }
5596
6271
  )
5597
6272
  }
5598
6273
  ),
5599
- isHover && isAdmin && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
6274
+ isHover && isAdmin && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
5600
6275
  "div",
5601
6276
  {
5602
6277
  onClick: (e) => {
@@ -5604,18 +6279,18 @@ function ScWorkspaceSwitchCard({
5604
6279
  onSettings?.();
5605
6280
  },
5606
6281
  style: { cursor: "pointer" },
5607
- children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
6282
+ children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
5608
6283
  ScButton,
5609
6284
  {
5610
6285
  styleVariant: "icon-only",
5611
6286
  variant: "outline",
5612
6287
  size: "sm",
5613
- icon: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(import_icons58.SiconSettings, { className: ScWorkspaceSwitchCard_default.btnIcon })
6288
+ icon: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(import_icons59.SiconSettings, { className: ScWorkspaceSwitchCard_default.btnIcon })
5614
6289
  }
5615
6290
  )
5616
6291
  }
5617
6292
  ),
5618
- isHover && !isAdmin && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
6293
+ isHover && !isAdmin && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
5619
6294
  "div",
5620
6295
  {
5621
6296
  className: ScWorkspaceSwitchCard_default.leaveBtn,
@@ -5623,7 +6298,7 @@ function ScWorkspaceSwitchCard({
5623
6298
  e.stopPropagation();
5624
6299
  onLeave?.();
5625
6300
  },
5626
- children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(import_icons58.SiconLogout, { className: ScWorkspaceSwitchCard_default.btnIcon, color: "currentColor" })
6301
+ children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(import_icons59.SiconLogout, { className: ScWorkspaceSwitchCard_default.btnIcon, color: "currentColor" })
5627
6302
  }
5628
6303
  )
5629
6304
  ] })
@@ -5641,18 +6316,18 @@ var ScRoleMobile_default = {
5641
6316
  };
5642
6317
 
5643
6318
  // src/SC-Role-Mobile/ScRoleMobile.tsx
5644
- var import_jsx_runtime70 = require("react/jsx-runtime");
6319
+ var import_jsx_runtime73 = require("react/jsx-runtime");
5645
6320
  var ScRoleMobile = ({
5646
6321
  role = "admin",
5647
6322
  className,
5648
6323
  ...props
5649
6324
  }) => {
5650
- return /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
6325
+ return /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
5651
6326
  "div",
5652
6327
  {
5653
6328
  className: ScRoleMobile_default.scRoleMobile + " " + ScRoleMobile_default["role-" + role] + " " + className,
5654
6329
  ...props,
5655
- children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("p", { className: ScRoleMobile_default.text, children: role === "admin" ? "Admin" : "Member" })
6330
+ children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScRoleMobile_default.text, children: role === "admin" ? "Admin" : "Member" })
5656
6331
  }
5657
6332
  );
5658
6333
  };
@@ -5669,7 +6344,7 @@ var ScProfileV2Mobile_default = {
5669
6344
  };
5670
6345
 
5671
6346
  // src/SC-Profile-V2-Mobile/ScProfileV2Mobile.tsx
5672
- var import_jsx_runtime71 = require("react/jsx-runtime");
6347
+ var import_jsx_runtime74 = require("react/jsx-runtime");
5673
6348
  var ScProfileV2Mobile = ({
5674
6349
  name = "Chris Hemsworth",
5675
6350
  email = "chris@kepler.com",
@@ -5679,17 +6354,17 @@ var ScProfileV2Mobile = ({
5679
6354
  ...props
5680
6355
  }) => {
5681
6356
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
5682
- const profileImage = /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("div", { className: ScProfileV2Mobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("img", { src: imageUrl, alt: name, className: ScProfileV2Mobile_default.image }) : /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("div", { className: ScProfileV2Mobile_default.initials, children: initials }) });
5683
- return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
6357
+ const profileImage = /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScProfileV2Mobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("img", { src: imageUrl, alt: name, className: ScProfileV2Mobile_default.image }) : /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScProfileV2Mobile_default.initials, children: initials }) });
6358
+ return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(
5684
6359
  "div",
5685
6360
  {
5686
6361
  className: ScProfileV2Mobile_default.scProfileV2Mobile + " " + className,
5687
6362
  ...props,
5688
6363
  children: [
5689
6364
  dpPosition === "left" && profileImage,
5690
- /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)("div", { className: ScProfileV2Mobile_default.userInfo, children: [
5691
- /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("p", { className: ScProfileV2Mobile_default.userName, children: name }),
5692
- /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("p", { className: ScProfileV2Mobile_default.userEmail, children: email })
6365
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: ScProfileV2Mobile_default.userInfo, children: [
6366
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("p", { className: ScProfileV2Mobile_default.userName, children: name }),
6367
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("p", { className: ScProfileV2Mobile_default.userEmail, children: email })
5693
6368
  ] }),
5694
6369
  dpPosition === "right" && profileImage
5695
6370
  ]
@@ -5716,7 +6391,7 @@ var ScTableListMobile_default = {
5716
6391
  };
5717
6392
 
5718
6393
  // src/SC-tableList-mobile/ScTableListMobile.tsx
5719
- var import_jsx_runtime72 = require("react/jsx-runtime");
6394
+ var import_jsx_runtime75 = require("react/jsx-runtime");
5720
6395
  var ScTableListMobile = ({
5721
6396
  name = "Chris Hemsworth",
5722
6397
  email = "chris@kepler.com",
@@ -5729,25 +6404,25 @@ var ScTableListMobile = ({
5729
6404
  ...props
5730
6405
  }) => {
5731
6406
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
5732
- return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
6407
+ return /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(
5733
6408
  "div",
5734
6409
  {
5735
6410
  className: ScTableListMobile_default.scTableListMobile + " " + className,
5736
6411
  onClick: onRowClick,
5737
6412
  ...props,
5738
6413
  children: [
5739
- /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScTableListMobile_default.profileRow, children: [
5740
- /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScTableListMobile_default.userInfo, children: [
5741
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScTableListMobile_default.userName, children: name }),
5742
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScTableListMobile_default.userEmail, children: email })
6414
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: ScTableListMobile_default.profileRow, children: [
6415
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: ScTableListMobile_default.userInfo, children: [
6416
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("p", { className: ScTableListMobile_default.userName, children: name }),
6417
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("p", { className: ScTableListMobile_default.userEmail, children: email })
5743
6418
  ] }),
5744
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("div", { className: ScTableListMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("img", { src: imageUrl, alt: name, className: ScTableListMobile_default.image }) : /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("div", { className: ScTableListMobile_default.initials, children: initials }) })
6419
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScTableListMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("img", { src: imageUrl, alt: name, className: ScTableListMobile_default.image }) : /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScTableListMobile_default.initials, children: initials }) })
5745
6420
  ] }),
5746
- /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScTableListMobile_default.detailsRow, children: [
5747
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("div", { className: ScTableListMobile_default.roleBadge, children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScTableListMobile_default.roleText, children: role }) }),
5748
- /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScTableListMobile_default.accessInfo, children: [
5749
- accessIcons && accessIcons.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("div", { className: ScTableListMobile_default.accessGroup, children: accessIcons.map((icon, i) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) }),
5750
- permissionIcons && permissionIcons.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("div", { className: ScTableListMobile_default.accessGroup, children: permissionIcons.map((icon, i) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) })
6421
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: ScTableListMobile_default.detailsRow, children: [
6422
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScTableListMobile_default.roleBadge, children: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("p", { className: ScTableListMobile_default.roleText, children: role }) }),
6423
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: ScTableListMobile_default.accessInfo, children: [
6424
+ accessIcons && accessIcons.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScTableListMobile_default.accessGroup, children: accessIcons.map((icon, i) => /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) }),
6425
+ permissionIcons && permissionIcons.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScTableListMobile_default.accessGroup, children: permissionIcons.map((icon, i) => /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) })
5751
6426
  ] })
5752
6427
  ] })
5753
6428
  ]
@@ -5775,7 +6450,7 @@ var ScWorkspaceSwitchMobile_default = {
5775
6450
  };
5776
6451
 
5777
6452
  // src/SC-workspaceSwitch-Mobile/ScWorkspaceSwitchMobile.tsx
5778
- var import_jsx_runtime73 = require("react/jsx-runtime");
6453
+ var import_jsx_runtime76 = require("react/jsx-runtime");
5779
6454
  var ScWorkspaceSwitchMobile = ({
5780
6455
  storeName = "Stores",
5781
6456
  initials = "WS",
@@ -5788,24 +6463,24 @@ var ScWorkspaceSwitchMobile = ({
5788
6463
  ...props
5789
6464
  }) => {
5790
6465
  const variant = currentWs ? "current" : "other";
5791
- return /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)(
6466
+ return /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(
5792
6467
  "div",
5793
6468
  {
5794
6469
  className: ScWorkspaceSwitchMobile_default.scWorkspaceSwitchMobile + " " + ScWorkspaceSwitchMobile_default["variant-" + variant] + " " + className,
5795
6470
  onClick,
5796
6471
  ...props,
5797
6472
  children: [
5798
- /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.workspaceInfo, children: [
5799
- /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.wsNameRow, children: [
5800
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: ScWorkspaceSwitchMobile_default.initialsBox, children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("span", { className: ScWorkspaceSwitchMobile_default.initialsText, children: initials }) }),
5801
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScWorkspaceSwitchMobile_default.storeName, children: storeName })
6473
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.workspaceInfo, children: [
6474
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.wsNameRow, children: [
6475
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("div", { className: ScWorkspaceSwitchMobile_default.initialsBox, children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("span", { className: ScWorkspaceSwitchMobile_default.initialsText, children: initials }) }),
6476
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("p", { className: ScWorkspaceSwitchMobile_default.storeName, children: storeName })
5802
6477
  ] }),
5803
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: ScWorkspaceSwitchMobile_default.roleBadge, children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScWorkspaceSwitchMobile_default.roleText, children: role }) })
6478
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("div", { className: ScWorkspaceSwitchMobile_default.roleBadge, children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("p", { className: ScWorkspaceSwitchMobile_default.roleText, children: role }) })
5804
6479
  ] }),
5805
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: ScWorkspaceSwitchMobile_default.divider }),
5806
- /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.ownerRow, children: [
5807
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: ScWorkspaceSwitchMobile_default.ownerIconContainer, children: ownerIcon && /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("span", { className: ScWorkspaceSwitchMobile_default.ownerIcon, children: ownerIcon }) }),
5808
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScWorkspaceSwitchMobile_default.ownerText, children: ownerId })
6480
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("div", { className: ScWorkspaceSwitchMobile_default.divider }),
6481
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.ownerRow, children: [
6482
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("div", { className: ScWorkspaceSwitchMobile_default.ownerIconContainer, children: ownerIcon && /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("span", { className: ScWorkspaceSwitchMobile_default.ownerIcon, children: ownerIcon }) }),
6483
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("p", { className: ScWorkspaceSwitchMobile_default.ownerText, children: ownerId })
5809
6484
  ] })
5810
6485
  ]
5811
6486
  }
@@ -5832,7 +6507,7 @@ var ScWorkspaceSettingsMobile_default = {
5832
6507
  };
5833
6508
 
5834
6509
  // src/SC-workspaceSettings-Mobile/ScWorkspaceSettingsMobile.tsx
5835
- var import_jsx_runtime74 = require("react/jsx-runtime");
6510
+ var import_jsx_runtime77 = require("react/jsx-runtime");
5836
6511
  var ScWorkspaceSettingsMobile = ({
5837
6512
  storeName = "Stores",
5838
6513
  initials = "WS",
@@ -5847,28 +6522,28 @@ var ScWorkspaceSettingsMobile = ({
5847
6522
  ...props
5848
6523
  }) => {
5849
6524
  const variant = currentWs ? "current" : "other";
5850
- return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(
6525
+ return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
5851
6526
  "div",
5852
6527
  {
5853
6528
  className: ScWorkspaceSettingsMobile_default.scWorkspaceSettingsMobile + " " + ScWorkspaceSettingsMobile_default["variant-" + variant] + " " + className,
5854
6529
  onClick,
5855
6530
  ...props,
5856
6531
  children: [
5857
- /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.workspaceInfo, children: [
5858
- /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.wsNameRow, children: [
5859
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScWorkspaceSettingsMobile_default.initialsBox, children: /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("span", { className: ScWorkspaceSettingsMobile_default.initialsText, children: initials }) }),
5860
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("p", { className: ScWorkspaceSettingsMobile_default.storeName, children: storeName })
6532
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.workspaceInfo, children: [
6533
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.wsNameRow, children: [
6534
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("div", { className: ScWorkspaceSettingsMobile_default.initialsBox, children: /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("span", { className: ScWorkspaceSettingsMobile_default.initialsText, children: initials }) }),
6535
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("p", { className: ScWorkspaceSettingsMobile_default.storeName, children: storeName })
5861
6536
  ] }),
5862
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScWorkspaceSettingsMobile_default.roleBadge, children: /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("p", { className: ScWorkspaceSettingsMobile_default.roleText, children: role }) })
6537
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("div", { className: ScWorkspaceSettingsMobile_default.roleBadge, children: /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("p", { className: ScWorkspaceSettingsMobile_default.roleText, children: role }) })
5863
6538
  ] }),
5864
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScWorkspaceSettingsMobile_default.divider }),
5865
- /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
5866
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: ownerIcon && /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("span", { className: ScWorkspaceSettingsMobile_default.icon, children: ownerIcon }) }),
5867
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: ownerId })
6539
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("div", { className: ScWorkspaceSettingsMobile_default.divider }),
6540
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
6541
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: ownerIcon && /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("span", { className: ScWorkspaceSettingsMobile_default.icon, children: ownerIcon }) }),
6542
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: ownerId })
5868
6543
  ] }),
5869
- /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
5870
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: teamIcon && /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("span", { className: ScWorkspaceSettingsMobile_default.icon, children: teamIcon }) }),
5871
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: teamCount })
6544
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
6545
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: teamIcon && /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("span", { className: ScWorkspaceSettingsMobile_default.icon, children: teamIcon }) }),
6546
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: teamCount })
5872
6547
  ] })
5873
6548
  ]
5874
6549
  }
@@ -5891,7 +6566,7 @@ var ScMobileTopNav_default = {
5891
6566
  };
5892
6567
 
5893
6568
  // src/SC-MobileTopNav/ScMobileTopNav.tsx
5894
- var import_jsx_runtime75 = require("react/jsx-runtime");
6569
+ var import_jsx_runtime78 = require("react/jsx-runtime");
5895
6570
  var ScMobileTopNav = ({
5896
6571
  type = "home",
5897
6572
  searchIcon = false,
@@ -5914,22 +6589,22 @@ var ScMobileTopNav = ({
5914
6589
  }) => {
5915
6590
  const hasBorder = type === "chat" || type === "inApp";
5916
6591
  const showSearch = type === "inApp" && searchIcon && search;
5917
- return /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(
6592
+ return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
5918
6593
  "div",
5919
6594
  {
5920
6595
  className: ScMobileTopNav_default.scMobileTopNav + " " + (hasBorder ? ScMobileTopNav_default.withBorder : "") + " " + className,
5921
6596
  ...props,
5922
6597
  children: [
5923
- type === "home" && /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5924
- type === "chat" && /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(import_jsx_runtime75.Fragment, { children: [
5925
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5926
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("p", { className: ScMobileTopNav_default.chatTitle, children: chatTitle }),
5927
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMoreClick, children: moreIcon || /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
6598
+ type === "home" && /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
6599
+ type === "chat" && /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(import_jsx_runtime78.Fragment, { children: [
6600
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
6601
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("p", { className: ScMobileTopNav_default.chatTitle, children: chatTitle }),
6602
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMoreClick, children: moreIcon || /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
5928
6603
  ] }),
5929
- showSearch && /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(import_jsx_runtime75.Fragment, { children: [
5930
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.searchRow, children: /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: ScMobileTopNav_default.searchInputContainer, children: [
5931
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onSearchClick, children: searchIconElement || /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5932
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.searchInput, children: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
6604
+ showSearch && /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(import_jsx_runtime78.Fragment, { children: [
6605
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScMobileTopNav_default.searchRow, children: /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: ScMobileTopNav_default.searchInputContainer, children: [
6606
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onSearchClick, children: searchIconElement || /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
6607
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScMobileTopNav_default.searchInput, children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
5933
6608
  "input",
5934
6609
  {
5935
6610
  type: "text",
@@ -5940,17 +6615,17 @@ var ScMobileTopNav = ({
5940
6615
  }
5941
6616
  ) })
5942
6617
  ] }) }),
5943
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onCloseClick, children: closeIcon || /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
6618
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onCloseClick, children: closeIcon || /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
5944
6619
  ] }),
5945
- type === "inApp" && !search && /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(import_jsx_runtime75.Fragment, { children: [
5946
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5947
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("p", { className: ScMobileTopNav_default.heading, children: heading }),
5948
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
6620
+ type === "inApp" && !search && /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(import_jsx_runtime78.Fragment, { children: [
6621
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
6622
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("p", { className: ScMobileTopNav_default.heading, children: heading }),
6623
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
5949
6624
  "div",
5950
6625
  {
5951
6626
  className: ScMobileTopNav_default.iconContainer + " " + (!searchIcon ? ScMobileTopNav_default.hidden : ""),
5952
6627
  onClick: onSearchClick,
5953
- children: searchIcon ? searchIconElement || /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) : /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder })
6628
+ children: searchIcon ? searchIconElement || /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) : /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder })
5954
6629
  }
5955
6630
  )
5956
6631
  ] })
@@ -5971,7 +6646,7 @@ var ScMobileBottomAction_default = {
5971
6646
  };
5972
6647
 
5973
6648
  // src/SC-MobileBottomAction/ScMobileBottomAction.tsx
5974
- var import_jsx_runtime76 = require("react/jsx-runtime");
6649
+ var import_jsx_runtime79 = require("react/jsx-runtime");
5975
6650
  var ScMobileBottomAction = ({
5976
6651
  text = "Save Changes",
5977
6652
  disabled = false,
@@ -5983,28 +6658,28 @@ var ScMobileBottomAction = ({
5983
6658
  ...props
5984
6659
  }) => {
5985
6660
  const isTwoButton = !!secondaryText;
5986
- return /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(
6661
+ return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
5987
6662
  "div",
5988
6663
  {
5989
6664
  className: ScMobileBottomAction_default.scMobileBottomAction + (isTwoButton ? " " + ScMobileBottomAction_default.twoButton : "") + " " + className,
5990
6665
  ...props,
5991
6666
  children: [
5992
- isTwoButton && /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
6667
+ isTwoButton && /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
5993
6668
  "button",
5994
6669
  {
5995
6670
  className: ScMobileBottomAction_default.outlineButton + " " + (secondaryDisabled ? ScMobileBottomAction_default.disabled : ""),
5996
6671
  onClick: onSecondaryClick,
5997
6672
  disabled: secondaryDisabled,
5998
- children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("span", { className: ScMobileBottomAction_default.outlineButtonText, children: secondaryText })
6673
+ children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("span", { className: ScMobileBottomAction_default.outlineButtonText, children: secondaryText })
5999
6674
  }
6000
6675
  ),
6001
- /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
6676
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
6002
6677
  "button",
6003
6678
  {
6004
6679
  className: ScMobileBottomAction_default.button + " " + (disabled ? ScMobileBottomAction_default.disabled : ""),
6005
6680
  onClick,
6006
6681
  disabled,
6007
- children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("span", { className: ScMobileBottomAction_default.buttonText, children: text })
6682
+ children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("span", { className: ScMobileBottomAction_default.buttonText, children: text })
6008
6683
  }
6009
6684
  )
6010
6685
  ]
@@ -6022,7 +6697,7 @@ var ScPopUpMenu_default = {
6022
6697
  };
6023
6698
 
6024
6699
  // src/SC-PopUpMenu/ScPopUpMenu.tsx
6025
- var import_jsx_runtime77 = require("react/jsx-runtime");
6700
+ var import_jsx_runtime80 = require("react/jsx-runtime");
6026
6701
  var ScPopUpMenu = ({
6027
6702
  menu = "Options",
6028
6703
  state = "default",
@@ -6031,15 +6706,15 @@ var ScPopUpMenu = ({
6031
6706
  className,
6032
6707
  ...props
6033
6708
  }) => {
6034
- return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
6709
+ return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
6035
6710
  "div",
6036
6711
  {
6037
6712
  className: ScPopUpMenu_default.scPopUpMenu + " " + ScPopUpMenu_default["state-" + state] + " " + className,
6038
6713
  onClick,
6039
6714
  ...props,
6040
6715
  children: [
6041
- icon && /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("span", { className: ScPopUpMenu_default.icon, children: icon }),
6042
- /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("p", { className: ScPopUpMenu_default.menuText, children: menu })
6716
+ icon && /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: ScPopUpMenu_default.icon, children: icon }),
6717
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("p", { className: ScPopUpMenu_default.menuText, children: menu })
6043
6718
  ]
6044
6719
  }
6045
6720
  );
@@ -6065,7 +6740,7 @@ var ScReferralCardMobile_default = {
6065
6740
  };
6066
6741
 
6067
6742
  // src/SC-referralCard-Mobile/ScReferralCardMobile.tsx
6068
- var import_jsx_runtime78 = require("react/jsx-runtime");
6743
+ var import_jsx_runtime81 = require("react/jsx-runtime");
6069
6744
  var ScReferralCardMobile = ({
6070
6745
  name = "Chris Hemsworth",
6071
6746
  email = "chris@kepler.com",
@@ -6078,27 +6753,27 @@ var ScReferralCardMobile = ({
6078
6753
  ...props
6079
6754
  }) => {
6080
6755
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
6081
- return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
6756
+ return /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(
6082
6757
  "div",
6083
6758
  {
6084
6759
  className: ScReferralCardMobile_default.scReferralCardMobile + " " + className,
6085
6760
  onClick,
6086
6761
  ...props,
6087
6762
  children: [
6088
- /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: ScReferralCardMobile_default.userRow, children: [
6089
- /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: ScReferralCardMobile_default.profileSection, children: [
6090
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScReferralCardMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("img", { src: imageUrl, alt: name, className: ScReferralCardMobile_default.image }) : /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScReferralCardMobile_default.initials, children: initials }) }),
6091
- /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: ScReferralCardMobile_default.userInfo, children: [
6092
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("p", { className: ScReferralCardMobile_default.userName, children: name }),
6093
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("p", { className: ScReferralCardMobile_default.userEmail, children: email })
6763
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)("div", { className: ScReferralCardMobile_default.userRow, children: [
6764
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)("div", { className: ScReferralCardMobile_default.profileSection, children: [
6765
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: ScReferralCardMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("img", { src: imageUrl, alt: name, className: ScReferralCardMobile_default.image }) : /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: ScReferralCardMobile_default.initials, children: initials }) }),
6766
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)("div", { className: ScReferralCardMobile_default.userInfo, children: [
6767
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("p", { className: ScReferralCardMobile_default.userName, children: name }),
6768
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("p", { className: ScReferralCardMobile_default.userEmail, children: email })
6094
6769
  ] })
6095
6770
  ] }),
6096
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScReferralCardMobile_default.badge, children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("p", { className: ScReferralCardMobile_default.badgeText, children: badge }) })
6771
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: ScReferralCardMobile_default.badge, children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("p", { className: ScReferralCardMobile_default.badgeText, children: badge }) })
6097
6772
  ] }),
6098
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScReferralCardMobile_default.divider }),
6099
- /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: ScReferralCardMobile_default.detailsRow, children: [
6100
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("p", { className: ScReferralCardMobile_default.dateText, children: date }),
6101
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("p", { className: ScReferralCardMobile_default.creditsText, children: credits })
6773
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: ScReferralCardMobile_default.divider }),
6774
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)("div", { className: ScReferralCardMobile_default.detailsRow, children: [
6775
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("p", { className: ScReferralCardMobile_default.dateText, children: date }),
6776
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("p", { className: ScReferralCardMobile_default.creditsText, children: credits })
6102
6777
  ] })
6103
6778
  ]
6104
6779
  }
@@ -6115,19 +6790,19 @@ var InvoiceHistoryMobile_default = {
6115
6790
  };
6116
6791
 
6117
6792
  // src/SC-InvoiceHistoryMobile/InvoiceHistoryMobile.tsx
6118
- var import_jsx_runtime79 = require("react/jsx-runtime");
6793
+ var import_jsx_runtime82 = require("react/jsx-runtime");
6119
6794
  var InvoiceHistoryMobile = ({
6120
6795
  invoiceId = "# INV-2800-2026",
6121
6796
  date = "Nov 9th, 2025",
6122
6797
  amount = "\u20B9320.89",
6123
6798
  className
6124
6799
  }) => {
6125
- return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: InvoiceHistoryMobile_default.invoiceHistoryMobile + " " + (className ?? ""), children: [
6126
- /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: InvoiceHistoryMobile_default.info, children: [
6127
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: InvoiceHistoryMobile_default.invoiceId, children: invoiceId }),
6128
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: InvoiceHistoryMobile_default.date, children: date })
6800
+ return /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)("div", { className: InvoiceHistoryMobile_default.invoiceHistoryMobile + " " + (className ?? ""), children: [
6801
+ /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)("div", { className: InvoiceHistoryMobile_default.info, children: [
6802
+ /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("div", { className: InvoiceHistoryMobile_default.invoiceId, children: invoiceId }),
6803
+ /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("div", { className: InvoiceHistoryMobile_default.date, children: date })
6129
6804
  ] }),
6130
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: InvoiceHistoryMobile_default.amount, children: amount })
6805
+ /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("div", { className: InvoiceHistoryMobile_default.amount, children: amount })
6131
6806
  ] });
6132
6807
  };
6133
6808
 
@@ -6145,7 +6820,7 @@ var UsageHistoryMobile_default = {
6145
6820
  };
6146
6821
 
6147
6822
  // src/SC-UsageHistoryMobile/UsageHistoryMobile.tsx
6148
- var import_jsx_runtime80 = require("react/jsx-runtime");
6823
+ var import_jsx_runtime83 = require("react/jsx-runtime");
6149
6824
  var UsageHistoryMobile = ({
6150
6825
  serviceName = "Artifax Generation",
6151
6826
  credits = "50",
@@ -6154,18 +6829,18 @@ var UsageHistoryMobile = ({
6154
6829
  balance = "84,902",
6155
6830
  className
6156
6831
  }) => {
6157
- return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: UsageHistoryMobile_default.usageHistoryMobile + " " + (className ?? ""), children: [
6158
- /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: UsageHistoryMobile_default.row1, children: [
6159
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: UsageHistoryMobile_default.serviceName, children: serviceName }),
6160
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: UsageHistoryMobile_default.credits, children: credits })
6832
+ return /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: UsageHistoryMobile_default.usageHistoryMobile + " " + (className ?? ""), children: [
6833
+ /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: UsageHistoryMobile_default.row1, children: [
6834
+ /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("span", { className: UsageHistoryMobile_default.serviceName, children: serviceName }),
6835
+ /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("span", { className: UsageHistoryMobile_default.credits, children: credits })
6161
6836
  ] }),
6162
- /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: UsageHistoryMobile_default.row2, children: [
6163
- /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: UsageHistoryMobile_default.metaLeft, children: [
6164
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: UsageHistoryMobile_default.metaText, children: userName }),
6165
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("div", { className: UsageHistoryMobile_default.divider }),
6166
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: UsageHistoryMobile_default.metaText, children: date })
6837
+ /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: UsageHistoryMobile_default.row2, children: [
6838
+ /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: UsageHistoryMobile_default.metaLeft, children: [
6839
+ /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("span", { className: UsageHistoryMobile_default.metaText, children: userName }),
6840
+ /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("div", { className: UsageHistoryMobile_default.divider }),
6841
+ /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("span", { className: UsageHistoryMobile_default.metaText, children: date })
6167
6842
  ] }),
6168
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: UsageHistoryMobile_default.balance, children: balance })
6843
+ /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("span", { className: UsageHistoryMobile_default.balance, children: balance })
6169
6844
  ] })
6170
6845
  ] });
6171
6846
  };
@@ -6189,7 +6864,7 @@ var ScWorkspaceSwitchMobileV2_default = {
6189
6864
  };
6190
6865
 
6191
6866
  // src/SC-WorkspaceSwitchMobile-V2/ScWorkspaceSwitchMobileV2.tsx
6192
- var import_jsx_runtime81 = require("react/jsx-runtime");
6867
+ var import_jsx_runtime84 = require("react/jsx-runtime");
6193
6868
  var ScWorkspaceSwitchMobileV2 = ({
6194
6869
  wsName = "Workspace name is kepler",
6195
6870
  initials = "WS",
@@ -6202,14 +6877,14 @@ var ScWorkspaceSwitchMobileV2 = ({
6202
6877
  className,
6203
6878
  ...props
6204
6879
  }) => {
6205
- return /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
6880
+ return /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
6206
6881
  "div",
6207
6882
  {
6208
6883
  className: ScWorkspaceSwitchMobileV2_default.scWorkspaceSwitchMobileV2 + " " + ScWorkspaceSwitchMobileV2_default["type-" + type] + " " + className,
6209
6884
  onClick,
6210
6885
  ...props,
6211
- children: /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.workspaceInfo, children: [
6212
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dpContainer, children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
6886
+ children: /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.workspaceInfo, children: [
6887
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dpContainer, children: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
6213
6888
  ScDp,
6214
6889
  {
6215
6890
  type: imageUrl ? "image" : "initial",
@@ -6223,14 +6898,14 @@ var ScWorkspaceSwitchMobileV2 = ({
6223
6898
  }
6224
6899
  }
6225
6900
  ) }),
6226
- /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.textContainer, children: [
6227
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("p", { className: ScWorkspaceSwitchMobileV2_default.wsName, children: wsName }),
6228
- /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.userDetails, children: [
6229
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.roleText + (role === "Member" ? " " + ScWorkspaceSwitchMobileV2_default.roleMember : ""), children: role }),
6230
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
6231
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.planText, children: plan }),
6232
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
6233
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.ownerText, children: ownerId })
6901
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.textContainer, children: [
6902
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("p", { className: ScWorkspaceSwitchMobileV2_default.wsName, children: wsName }),
6903
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.userDetails, children: [
6904
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.roleText + (role === "Member" ? " " + ScWorkspaceSwitchMobileV2_default.roleMember : ""), children: role }),
6905
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
6906
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.planText, children: plan }),
6907
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
6908
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.ownerText, children: ownerId })
6234
6909
  ] })
6235
6910
  ] })
6236
6911
  ] })
@@ -6239,7 +6914,7 @@ var ScWorkspaceSwitchMobileV2 = ({
6239
6914
  };
6240
6915
 
6241
6916
  // src/SC-imageField/ScImageField.tsx
6242
- var import_react11 = require("react");
6917
+ var import_react12 = require("react");
6243
6918
 
6244
6919
  // src/SC-imageField/ScImageField.module.css
6245
6920
  var ScImageField_default = {
@@ -6256,8 +6931,8 @@ var ScImageField_default = {
6256
6931
  };
6257
6932
 
6258
6933
  // src/SC-imageField/ScImageField.tsx
6259
- var import_icons59 = require("@streamoid/icons");
6260
- var import_jsx_runtime82 = require("react/jsx-runtime");
6934
+ var import_icons60 = require("@streamoid/icons");
6935
+ var import_jsx_runtime85 = require("react/jsx-runtime");
6261
6936
  var ScImageField = ({
6262
6937
  label = "Label",
6263
6938
  imagePreview,
@@ -6266,7 +6941,7 @@ var ScImageField = ({
6266
6941
  onRemove,
6267
6942
  className
6268
6943
  }) => {
6269
- const inputRef = (0, import_react11.useRef)(null);
6944
+ const inputRef = (0, import_react12.useRef)(null);
6270
6945
  const hasImage = !!imagePreview;
6271
6946
  function handleClick() {
6272
6947
  if (!hasImage) {
@@ -6280,8 +6955,8 @@ var ScImageField = ({
6280
6955
  }
6281
6956
  e.target.value = "";
6282
6957
  }
6283
- return /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)("div", { className: ScImageField_default.scImageField + " " + (className ?? ""), children: [
6284
- /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
6958
+ return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: ScImageField_default.scImageField + " " + (className ?? ""), children: [
6959
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6285
6960
  "input",
6286
6961
  {
6287
6962
  ref: inputRef,
@@ -6291,9 +6966,9 @@ var ScImageField = ({
6291
6966
  onChange: handleChange
6292
6967
  }
6293
6968
  ),
6294
- /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("div", { className: ScImageField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("div", { className: ScImageField_default.label, children: label }) }),
6295
- hasImage ? /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)("div", { className: ScImageField_default.previewArea, children: [
6296
- /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
6969
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScImageField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScImageField_default.label, children: label }) }),
6970
+ hasImage ? /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: ScImageField_default.previewArea, children: [
6971
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6297
6972
  "img",
6298
6973
  {
6299
6974
  className: ScImageField_default.previewImage,
@@ -6301,9 +6976,9 @@ var ScImageField = ({
6301
6976
  alt: "preview"
6302
6977
  }
6303
6978
  ),
6304
- /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("span", { className: ScImageField_default.fileName, children: imageName || "image" }),
6305
- /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
6306
- import_icons59.SiconDelete,
6979
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { className: ScImageField_default.fileName, children: imageName || "image" }),
6980
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6981
+ import_icons60.SiconDelete,
6307
6982
  {
6308
6983
  className: ScImageField_default.removeIcon,
6309
6984
  color: "var(--alias-text-and-icons-error, #d11a1a)",
@@ -6313,9 +6988,9 @@ var ScImageField = ({
6313
6988
  }
6314
6989
  }
6315
6990
  )
6316
- ] }) : /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)("div", { className: ScImageField_default.uploadArea, onClick: handleClick, children: [
6317
- /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(import_icons59.SiconUpload, { className: ScImageField_default.uploadIcon, color: "var(--alias-text-and-icons-secondary, #dadada)" }),
6318
- /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("span", { className: ScImageField_default.uploadText, children: "Click to upload" })
6991
+ ] }) : /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: ScImageField_default.uploadArea, onClick: handleClick, children: [
6992
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(import_icons60.SiconUpload, { className: ScImageField_default.uploadIcon, color: "var(--alias-text-and-icons-secondary, #dadada)" }),
6993
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { className: ScImageField_default.uploadText, children: "Click to upload" })
6319
6994
  ] })
6320
6995
  ] });
6321
6996
  };
@@ -6329,7 +7004,7 @@ var ScSettingsTabComp_default = {
6329
7004
  };
6330
7005
 
6331
7006
  // src/SC-settingsTabComp/ScSettingsTabComp.tsx
6332
- var import_jsx_runtime83 = require("react/jsx-runtime");
7007
+ var import_jsx_runtime86 = require("react/jsx-runtime");
6333
7008
  var ScSettingsTabComp = ({
6334
7009
  tabName = "Tab",
6335
7010
  active = false,
@@ -6337,12 +7012,12 @@ var ScSettingsTabComp = ({
6337
7012
  className
6338
7013
  }) => {
6339
7014
  const variantsClassName = ScSettingsTabComp_default["active-" + active];
6340
- return /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
7015
+ return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
6341
7016
  "div",
6342
7017
  {
6343
7018
  className: ScSettingsTabComp_default.scSettingsTabComp + " " + variantsClassName + " " + (className ?? ""),
6344
7019
  onClick,
6345
- children: /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("span", { className: ScSettingsTabComp_default.tabText, children: tabName })
7020
+ children: /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("span", { className: ScSettingsTabComp_default.tabText, children: tabName })
6346
7021
  }
6347
7022
  );
6348
7023
  };
@@ -6361,8 +7036,8 @@ var ScCreditsUsageCardMobile_default = {
6361
7036
  };
6362
7037
 
6363
7038
  // src/SC-Credits usage card-Mobile/ScCreditsUsageCardMobile.tsx
6364
- var import_icons60 = require("@streamoid/icons");
6365
- var import_jsx_runtime84 = require("react/jsx-runtime");
7039
+ var import_icons61 = require("@streamoid/icons");
7040
+ var import_jsx_runtime87 = require("react/jsx-runtime");
6366
7041
  var ScCreditsUsageCardMobile = ({
6367
7042
  usageLabel = "Credits usage",
6368
7043
  usageText = "8,450 / 30,000",
@@ -6372,23 +7047,23 @@ var ScCreditsUsageCardMobile = ({
6372
7047
  className,
6373
7048
  ...props
6374
7049
  }) => {
6375
- return /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { className: ScCreditsUsageCardMobile_default.scCreditsUsageCardMobile + " " + (className ?? ""), ...props, children: [
6376
- /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { className: ScCreditsUsageCardMobile_default.header, children: [
6377
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
6378
- import_icons60.SiconCredits,
7050
+ return /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("div", { className: ScCreditsUsageCardMobile_default.scCreditsUsageCardMobile + " " + (className ?? ""), ...props, children: [
7051
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("div", { className: ScCreditsUsageCardMobile_default.header, children: [
7052
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
7053
+ import_icons61.SiconCredits,
6379
7054
  {
6380
7055
  className: ScCreditsUsageCardMobile_default.headerIcon,
6381
7056
  color: "var(--alias-text-and-icons-tertiary, #9e9e9e)"
6382
7057
  }
6383
7058
  ),
6384
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("span", { className: ScCreditsUsageCardMobile_default.headerLabel, children: usageLabel })
7059
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("span", { className: ScCreditsUsageCardMobile_default.headerLabel, children: usageLabel })
6385
7060
  ] }),
6386
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("div", { className: ScCreditsUsageCardMobile_default.divider }),
6387
- /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { className: ScCreditsUsageCardMobile_default.usageInfo, children: [
6388
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("div", { className: ScCreditsUsageCardMobile_default.usageText, children: usageText }),
6389
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("div", { className: ScCreditsUsageCardMobile_default.remainingText, children: remainingText })
7061
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("div", { className: ScCreditsUsageCardMobile_default.divider }),
7062
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("div", { className: ScCreditsUsageCardMobile_default.usageInfo, children: [
7063
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("div", { className: ScCreditsUsageCardMobile_default.usageText, children: usageText }),
7064
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("div", { className: ScCreditsUsageCardMobile_default.remainingText, children: remainingText })
6390
7065
  ] }),
6391
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
7066
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
6392
7067
  ScButton,
6393
7068
  {
6394
7069
  text: buyButtonText,
@@ -6429,8 +7104,8 @@ var ScPlanDetailsCardMobile_default = {
6429
7104
  };
6430
7105
 
6431
7106
  // src/SC-Plan details card-Mobile/ScPlanDetailsCardMobile.tsx
6432
- var import_icons61 = require("@streamoid/icons");
6433
- var import_jsx_runtime85 = require("react/jsx-runtime");
7107
+ var import_icons62 = require("@streamoid/icons");
7108
+ var import_jsx_runtime88 = require("react/jsx-runtime");
6434
7109
  var ScPlanDetailsCardMobile = ({
6435
7110
  planName = "Pro",
6436
7111
  planCredits = "30,000 credits",
@@ -6444,20 +7119,20 @@ var ScPlanDetailsCardMobile = ({
6444
7119
  className,
6445
7120
  ...props
6446
7121
  }) => {
6447
- return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: ScPlanDetailsCardMobile_default.scPlanDetailsCardMobile + " " + (className ?? ""), ...props, children: [
6448
- /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planHeader, children: [
6449
- /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: ScPlanDetailsCardMobile_default.headerLeft, children: [
6450
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6451
- import_icons61.SiconBilling,
7122
+ return /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScPlanDetailsCardMobile_default.scPlanDetailsCardMobile + " " + (className ?? ""), ...props, children: [
7123
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planHeader, children: [
7124
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScPlanDetailsCardMobile_default.headerLeft, children: [
7125
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
7126
+ import_icons62.SiconBilling,
6452
7127
  {
6453
7128
  className: ScPlanDetailsCardMobile_default.headerIcon,
6454
7129
  color: "var(--alias-text-and-icons-tertiary, #9e9e9e)"
6455
7130
  }
6456
7131
  ),
6457
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { className: ScPlanDetailsCardMobile_default.headerLabel, children: currentPlanLabel })
7132
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("span", { className: ScPlanDetailsCardMobile_default.headerLabel, children: currentPlanLabel })
6458
7133
  ] }),
6459
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScPlanDetailsCardMobile_default.badgeGroup, children: isLoading ? /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.badgeSkeleton}` }) : /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(import_jsx_runtime85.Fragment, { children: [
6460
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
7134
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("div", { className: ScPlanDetailsCardMobile_default.badgeGroup, children: isLoading ? /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.badgeSkeleton}` }) : /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)(import_jsx_runtime88.Fragment, { children: [
7135
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
6461
7136
  ScBadges,
6462
7137
  {
6463
7138
  text: badgeText,
@@ -6466,28 +7141,28 @@ var ScPlanDetailsCardMobile = ({
6466
7141
  className: ScPlanDetailsCardMobile_default.scBadgesInstance
6467
7142
  }
6468
7143
  ),
6469
- badgeSubText && /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(import_jsx_runtime85.Fragment, { children: [
6470
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { className: ScPlanDetailsCardMobile_default.badgeDot }),
6471
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { className: ScPlanDetailsCardMobile_default.badgeSubText, children: badgeSubText })
7144
+ badgeSubText && /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)(import_jsx_runtime88.Fragment, { children: [
7145
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("span", { className: ScPlanDetailsCardMobile_default.badgeDot }),
7146
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("span", { className: ScPlanDetailsCardMobile_default.badgeSubText, children: badgeSubText })
6472
7147
  ] })
6473
7148
  ] }) })
6474
7149
  ] }),
6475
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScPlanDetailsCardMobile_default.divider }),
6476
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScPlanDetailsCardMobile_default.planInfo, children: isLoading ? /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(import_jsx_runtime85.Fragment, { children: [
6477
- /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planNameRow, "aria-label": "Loading plan details", children: [
6478
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.planNameSkeleton}` }),
6479
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.creditsSkeleton}` })
7150
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("div", { className: ScPlanDetailsCardMobile_default.divider }),
7151
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("div", { className: ScPlanDetailsCardMobile_default.planInfo, children: isLoading ? /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)(import_jsx_runtime88.Fragment, { children: [
7152
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planNameRow, "aria-label": "Loading plan details", children: [
7153
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.planNameSkeleton}` }),
7154
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.creditsSkeleton}` })
6480
7155
  ] }),
6481
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.priceSkeleton}` })
6482
- ] }) : /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(import_jsx_runtime85.Fragment, { children: [
6483
- /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planNameRow, children: [
6484
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { className: ScPlanDetailsCardMobile_default.planName, children: planName }),
6485
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScPlanDetailsCardMobile_default.dot }),
6486
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { className: ScPlanDetailsCardMobile_default.planName, children: planCredits })
7156
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.priceSkeleton}` })
7157
+ ] }) : /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)(import_jsx_runtime88.Fragment, { children: [
7158
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planNameRow, children: [
7159
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("span", { className: ScPlanDetailsCardMobile_default.planName, children: planName }),
7160
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("div", { className: ScPlanDetailsCardMobile_default.dot }),
7161
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("span", { className: ScPlanDetailsCardMobile_default.planName, children: planCredits })
6487
7162
  ] }),
6488
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScPlanDetailsCardMobile_default.planPrice, children: planPrice })
7163
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("div", { className: ScPlanDetailsCardMobile_default.planPrice, children: planPrice })
6489
7164
  ] }) }),
6490
- isLoading ? /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.buttonSkeleton}` }) : /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
7165
+ isLoading ? /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("span", { className: `${ScPlanDetailsCardMobile_default.skeletonPill} ${ScPlanDetailsCardMobile_default.buttonSkeleton}` }) : /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
6491
7166
  ScButton,
6492
7167
  {
6493
7168
  text: upgradeButtonText,