@streamoid/ui 0.4.5 → 0.4.7

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
@@ -35,6 +35,7 @@ __export(index_exports, {
35
35
  ScBillingHistoryTableList: () => ScBillingHistoryTableList,
36
36
  ScBillingLogsTableHeader: () => ScBillingLogsTableHeader,
37
37
  ScBillingLogsTableList: () => ScBillingLogsTableList,
38
+ ScBriefCard: () => ScBriefCard,
38
39
  ScButton: () => ScButton,
39
40
  ScCalendar: () => ScCalendar,
40
41
  ScCalendarDateComps: () => ScCalendarDateComps,
@@ -3026,11 +3027,12 @@ function StreamoidSidebar({
3026
3027
  ) : null
3027
3028
  ] }),
3028
3029
  !!(topItems?.length || config.topItem) && /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(import_jsx_runtime41.Fragment, { children: [
3030
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(HDivider, {}),
3029
3031
  /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
3030
3032
  "div",
3031
3033
  {
3032
3034
  className: "flex flex-col items-stretch shrink-0 w-full",
3033
- style: { gap: "var(--spacing-md)", paddingBottom: "var(--spacing-md)" },
3035
+ style: { gap: "var(--spacing-md)", paddingTop: "var(--spacing-md)", paddingBottom: "var(--spacing-md)" },
3034
3036
  children: (topItems ?? (config.topItem ? [config.topItem] : [])).map(
3035
3037
  (item) => renderMenuItem({
3036
3038
  item,
@@ -3208,11 +3210,12 @@ function StreamoidSidebar({
3208
3210
  children: [
3209
3211
  collapsedLogo,
3210
3212
  !!(topItems?.length || config.topItem) ? /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(import_jsx_runtime41.Fragment, { children: [
3213
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(HDivider, {}),
3211
3214
  /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
3212
3215
  "div",
3213
3216
  {
3214
3217
  className: "flex flex-col items-center shrink-0",
3215
- style: { gap: "var(--spacing-xxs)", paddingBottom: "var(--spacing-xxs)" },
3218
+ style: { gap: "var(--spacing-xxs)", paddingTop: "var(--spacing-xxs)", paddingBottom: "var(--spacing-xxs)" },
3216
3219
  children: (topItems ?? (config.topItem ? [config.topItem] : [])).map(
3217
3220
  (item) => renderMenuItem({
3218
3221
  item,
@@ -3725,8 +3728,9 @@ var ScGuide = ({
3725
3728
  var ScSideBarLogoUnit_default = {
3726
3729
  scSideBarLogoUnit: "ScSideBarLogoUnit_scSideBarLogoUnit",
3727
3730
  row: "ScSideBarLogoUnit_row",
3728
- chip: "ScSideBarLogoUnit_chip",
3729
3731
  nonInteractive: "ScSideBarLogoUnit_nonInteractive",
3732
+ forceHover: "ScSideBarLogoUnit_forceHover",
3733
+ wordmarkSlot: "ScSideBarLogoUnit_wordmarkSlot",
3730
3734
  switch: "ScSideBarLogoUnit_switch",
3731
3735
  switchIcon: "ScSideBarLogoUnit_switchIcon",
3732
3736
  collapsed: "ScSideBarLogoUnit_collapsed",
@@ -3743,11 +3747,17 @@ var ScSideBarLogoUnit = ({
3743
3747
  onSwitchClick,
3744
3748
  switchAriaLabel = "Switch product",
3745
3749
  hideSwitch = false,
3750
+ hover,
3746
3751
  disabled = false,
3747
3752
  className,
3748
3753
  style
3749
3754
  }) => {
3750
- const interactive = !!onClick && !disabled;
3755
+ const interactive = !disabled && (!!onClick || !!onSwitchClick);
3756
+ const handleClick = () => {
3757
+ if (!interactive) return;
3758
+ onClick?.();
3759
+ onSwitchClick?.();
3760
+ };
3751
3761
  if (state === "collapsed") {
3752
3762
  return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
3753
3763
  "div",
@@ -3759,8 +3769,9 @@ var ScSideBarLogoUnit = ({
3759
3769
  {
3760
3770
  type: "button",
3761
3771
  className: ScSideBarLogoUnit_default.collapsedTrigger + (interactive ? "" : " " + ScSideBarLogoUnit_default.nonInteractive),
3762
- onClick: interactive ? onClick : void 0,
3772
+ onClick: interactive ? handleClick : void 0,
3763
3773
  disabled,
3774
+ "aria-label": interactive ? switchAriaLabel : void 0,
3764
3775
  "aria-disabled": !interactive || disabled,
3765
3776
  children: wordmark
3766
3777
  }
@@ -3768,35 +3779,38 @@ var ScSideBarLogoUnit = ({
3768
3779
  }
3769
3780
  );
3770
3781
  }
3782
+ const rowClasses = [
3783
+ ScSideBarLogoUnit_default.row,
3784
+ interactive ? "" : ScSideBarLogoUnit_default.nonInteractive,
3785
+ hover === true ? ScSideBarLogoUnit_default.forceHover : ""
3786
+ ].filter(Boolean).join(" ");
3771
3787
  return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
3772
3788
  "div",
3773
3789
  {
3774
3790
  className: ScSideBarLogoUnit_default.scSideBarLogoUnit + (className ? " " + className : ""),
3775
- style,
3776
- children: /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)("div", { className: ScSideBarLogoUnit_default.row, children: [
3777
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
3778
- "button",
3779
- {
3780
- type: "button",
3781
- className: ScSideBarLogoUnit_default.chip + (interactive ? "" : " " + ScSideBarLogoUnit_default.nonInteractive),
3782
- onClick: interactive ? onClick : void 0,
3783
- disabled,
3784
- "aria-disabled": !interactive || disabled,
3785
- children: wordmark
3786
- }
3787
- ),
3788
- hideSwitch ? null : /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
3789
- "button",
3790
- {
3791
- type: "button",
3792
- className: ScSideBarLogoUnit_default.switch,
3793
- onClick: onSwitchClick,
3794
- disabled: disabled || !onSwitchClick,
3795
- "aria-label": switchAriaLabel,
3796
- 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 }) })
3797
- }
3798
- )
3799
- ] })
3791
+ style: {
3792
+ ...style,
3793
+ // Suppressing hover when `hover === false` — overrides CSS :hover.
3794
+ ...hover === false ? { pointerEvents: "auto" } : null
3795
+ },
3796
+ children: /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
3797
+ "button",
3798
+ {
3799
+ type: "button",
3800
+ className: rowClasses,
3801
+ onClick: interactive ? handleClick : void 0,
3802
+ disabled,
3803
+ "aria-label": interactive ? switchAriaLabel : void 0,
3804
+ "aria-disabled": !interactive || disabled,
3805
+ style: hover === false ? {
3806
+ backgroundColor: "transparent"
3807
+ } : void 0,
3808
+ children: [
3809
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("span", { className: ScSideBarLogoUnit_default.wordmarkSlot, children: wordmark }),
3810
+ 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 }) }) })
3811
+ ]
3812
+ }
3813
+ )
3800
3814
  }
3801
3815
  );
3802
3816
  };
@@ -4275,6 +4289,45 @@ var ScAppCardV3 = ({
4275
4289
  );
4276
4290
  };
4277
4291
 
4292
+ // src/SC-BriefCard/ScBriefCard.module.css
4293
+ var ScBriefCard_default = {
4294
+ scBriefCard: "ScBriefCard_scBriefCard",
4295
+ cardBorder: "ScBriefCard_cardBorder",
4296
+ scBriefCardActive: "ScBriefCard_scBriefCardActive",
4297
+ glow: "ScBriefCard_glow",
4298
+ glowHover: "ScBriefCard_glowHover",
4299
+ body: "ScBriefCard_body",
4300
+ description: "ScBriefCard_description"
4301
+ };
4302
+
4303
+ // src/SC-BriefCard/ScBriefCard.tsx
4304
+ var import_jsx_runtime50 = require("react/jsx-runtime");
4305
+ var ScBriefCard = ({
4306
+ description = "Centralized product and asset management for every storefront",
4307
+ active = false,
4308
+ className,
4309
+ style,
4310
+ ...props
4311
+ }) => {
4312
+ const cardClass = [
4313
+ ScBriefCard_default.scBriefCard,
4314
+ active ? ScBriefCard_default.scBriefCardActive : ""
4315
+ ].filter(Boolean).join(" ");
4316
+ return /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
4317
+ "div",
4318
+ {
4319
+ className: [ScBriefCard_default.cardBorder, className || ""].filter(Boolean).join(" "),
4320
+ style,
4321
+ ...props,
4322
+ children: /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: cardClass, children: [
4323
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("div", { className: ScBriefCard_default.glow }),
4324
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("div", { className: ScBriefCard_default.glowHover }),
4325
+ /* @__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 }) })
4326
+ ] })
4327
+ }
4328
+ );
4329
+ };
4330
+
4278
4331
  // src/SC-appField/ScAppField.module.css
4279
4332
  var ScAppField_default = {
4280
4333
  scAppField: "ScAppField_scAppField",
@@ -4306,7 +4359,7 @@ var ScToggleSwitch_default = {
4306
4359
  };
4307
4360
 
4308
4361
  // src/SC-toggleSwitch/ScToggleSwitch.tsx
4309
- var import_jsx_runtime50 = require("react/jsx-runtime");
4362
+ var import_jsx_runtime51 = require("react/jsx-runtime");
4310
4363
  var ScToggleSwitch = ({
4311
4364
  active = "false",
4312
4365
  checked,
@@ -4316,7 +4369,7 @@ var ScToggleSwitch = ({
4316
4369
  }) => {
4317
4370
  const isActive = checked !== void 0 ? checked : active === "true";
4318
4371
  const variantsClassName = ScToggleSwitch_default["active-" + (isActive ? "true" : "false")];
4319
- return /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
4372
+ return /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
4320
4373
  "div",
4321
4374
  {
4322
4375
  className: ScToggleSwitch_default.scToggleSwitch + " " + className + " " + variantsClassName,
@@ -4326,20 +4379,20 @@ var ScToggleSwitch = ({
4326
4379
  props.onClick?.(e);
4327
4380
  },
4328
4381
  style: { cursor: "pointer", ...props.style },
4329
- children: isActive ? /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("svg", { width: "40", height: "24", viewBox: "0 0 40 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
4330
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("rect", { width: "40", height: "24", rx: "12", fill: "var(--alias-fill-base-base, #f5f5f5)" }),
4331
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("circle", { cx: "28", cy: "12", r: "10", fill: "var(--alias-text---icons-inverse, #101010)" })
4332
- ] }) : /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("svg", { width: "41", height: "25", viewBox: "0 0 41 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
4333
- /* @__PURE__ */ (0, import_jsx_runtime50.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)" }),
4334
- /* @__PURE__ */ (0, import_jsx_runtime50.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)" }),
4335
- /* @__PURE__ */ (0, import_jsx_runtime50.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)" })
4382
+ 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: [
4383
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("rect", { width: "40", height: "24", rx: "12", fill: "var(--alias-fill-base-base, #f5f5f5)" }),
4384
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "28", cy: "12", r: "10", fill: "var(--alias-text---icons-inverse, #101010)" })
4385
+ ] }) : /* @__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: [
4386
+ /* @__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)" }),
4387
+ /* @__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)" }),
4388
+ /* @__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)" })
4336
4389
  ] })
4337
4390
  }
4338
4391
  );
4339
4392
  };
4340
4393
 
4341
4394
  // src/SC-artifaxInvite/ScArtifaxInvite.tsx
4342
- var import_jsx_runtime51 = require("react/jsx-runtime");
4395
+ var import_jsx_runtime52 = require("react/jsx-runtime");
4343
4396
  var ScArtifaxInvite = ({
4344
4397
  active = "true",
4345
4398
  appName = "Artifax",
@@ -4352,22 +4405,22 @@ var ScArtifaxInvite = ({
4352
4405
  }) => {
4353
4406
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
4354
4407
  const variantsClassName = ScArtifaxInvite_default["active-" + (isEnabled ? "true" : "false")];
4355
- return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(
4408
+ return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
4356
4409
  "div",
4357
4410
  {
4358
4411
  className: ScArtifaxInvite_default.scArtifaxInvite + " " + className + " " + variantsClassName,
4359
4412
  ...props,
4360
4413
  children: [
4361
- /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
4414
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
4362
4415
  ScAppCard,
4363
4416
  {
4364
- appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(import_icons42.SiconArtifacts, { className: ScArtifaxInvite_default.siconArtifactsInstance }),
4417
+ appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(import_icons42.SiconArtifacts, { className: ScArtifaxInvite_default.siconArtifactsInstance }),
4365
4418
  appName,
4366
4419
  appDescription,
4367
4420
  className: ScArtifaxInvite_default.scAppCardInstance
4368
4421
  }
4369
4422
  ),
4370
- /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
4423
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
4371
4424
  ScToggleSwitch,
4372
4425
  {
4373
4426
  checked: isEnabled,
@@ -4393,12 +4446,12 @@ var ScPhtogenixInvite_default = {
4393
4446
 
4394
4447
  // src/SC-phtogenixInvite/ScPhtogenixInvite.tsx
4395
4448
  var import_icons43 = require("@streamoid/icons");
4396
- var import_jsx_runtime52 = require("react/jsx-runtime");
4449
+ var import_jsx_runtime53 = require("react/jsx-runtime");
4397
4450
  var ScPhtogenixInvite = ({
4398
4451
  active = "true",
4399
4452
  scAppCardappDescription = "Info about photogenix",
4400
4453
  scAppCardappName = "Photogenix",
4401
- scAppCardappIcon = /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(import_icons43.SiconArtifacts, { className: ScPhtogenixInvite_default.siconArtifactsInstance }),
4454
+ scAppCardappIcon = /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_icons43.SiconArtifacts, { className: ScPhtogenixInvite_default.siconArtifactsInstance }),
4402
4455
  className,
4403
4456
  enabled,
4404
4457
  onToggle,
@@ -4406,12 +4459,12 @@ var ScPhtogenixInvite = ({
4406
4459
  }) => {
4407
4460
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
4408
4461
  const variantsClassName = ScPhtogenixInvite_default["active-" + (isEnabled ? "true" : "false")];
4409
- return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
4462
+ return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
4410
4463
  "div",
4411
4464
  {
4412
4465
  className: ScPhtogenixInvite_default.scPhtogenixInvite + " " + className + " " + variantsClassName,
4413
4466
  children: [
4414
- /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
4467
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
4415
4468
  ScAppCard,
4416
4469
  {
4417
4470
  appIcon: scAppCardappIcon,
@@ -4420,7 +4473,7 @@ var ScPhtogenixInvite = ({
4420
4473
  className: ScPhtogenixInvite_default.scAppCardInstance
4421
4474
  }
4422
4475
  ),
4423
- /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
4476
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
4424
4477
  ScToggleSwitch,
4425
4478
  {
4426
4479
  checked: isEnabled,
@@ -4470,10 +4523,10 @@ var ScOnlyField_default = {
4470
4523
 
4471
4524
  // src/SC-onlyField/ScOnlyField.tsx
4472
4525
  var import_icons44 = require("@streamoid/icons");
4473
- var import_jsx_runtime53 = require("react/jsx-runtime");
4526
+ var import_jsx_runtime54 = require("react/jsx-runtime");
4474
4527
  var ScOnlyField = ({
4475
- tfRightIcon = /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_icons44.SiconBolt, { className: ScOnlyField_default.siconBoltInstance }),
4476
- tfLeftIcon = /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_icons44.SiconBolt, { className: ScOnlyField_default.siconBoltInstance }),
4528
+ tfRightIcon = /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_icons44.SiconBolt, { className: ScOnlyField_default.siconBoltInstance }),
4529
+ tfLeftIcon = /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_icons44.SiconBolt, { className: ScOnlyField_default.siconBoltInstance }),
4477
4530
  state = "default",
4478
4531
  tfGroup = "icon-right",
4479
4532
  labelGroup = "none",
@@ -4486,14 +4539,14 @@ var ScOnlyField = ({
4486
4539
  ...props
4487
4540
  }) => {
4488
4541
  const variantsClassName = ScOnlyField_default["state-" + state] + " " + ScOnlyField_default["tf-group-" + tfGroup] + " " + ScOnlyField_default["label-group-" + labelGroup] + (size !== "default" ? " " + ScOnlyField_default["size-" + size] : "");
4489
- return /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
4542
+ return /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
4490
4543
  "div",
4491
4544
  {
4492
4545
  className: ScOnlyField_default.scOnlyField + " " + className + " " + variantsClassName,
4493
4546
  ...props,
4494
- children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: ScOnlyField_default.inputContainer, children: [
4495
- (tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: ScOnlyField_default.iconWrapper, children: tfLeftIcon }),
4496
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
4547
+ children: /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)("div", { className: ScOnlyField_default.inputContainer, children: [
4548
+ (tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("div", { className: ScOnlyField_default.iconWrapper, children: tfLeftIcon }),
4549
+ /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
4497
4550
  "input",
4498
4551
  {
4499
4552
  className: ScOnlyField_default.inputText,
@@ -4513,7 +4566,7 @@ var ScOnlyField = ({
4513
4566
  ...inputProps
4514
4567
  }
4515
4568
  ),
4516
- (tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: ScOnlyField_default.iconWrapper, children: tfRightIcon })
4569
+ (tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("div", { className: ScOnlyField_default.iconWrapper, children: tfRightIcon })
4517
4570
  ] })
4518
4571
  }
4519
4572
  );
@@ -4521,7 +4574,7 @@ var ScOnlyField = ({
4521
4574
 
4522
4575
  // src/SC-catalogixInvite/ScCatalogixInvite.tsx
4523
4576
  var import_icons47 = require("@streamoid/icons");
4524
- var import_jsx_runtime54 = require("react/jsx-runtime");
4577
+ var import_jsx_runtime55 = require("react/jsx-runtime");
4525
4578
  var ScCatalogixInvite = ({
4526
4579
  active = "false",
4527
4580
  appName = "Catalogix",
@@ -4543,23 +4596,23 @@ var ScCatalogixInvite = ({
4543
4596
  const isEnabled = enabled !== void 0 ? enabled : active === "true";
4544
4597
  const variantsClassName = ScCatalogixInvite_default["active-" + (isEnabled ? "true" : "false")];
4545
4598
  const displayCount = selectedStores ? `${selectedStores.length} Selected` : selectedCount;
4546
- return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(
4599
+ return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
4547
4600
  "div",
4548
4601
  {
4549
4602
  className: ScCatalogixInvite_default.scCatalogixInvite + " " + className + " " + variantsClassName,
4550
4603
  ...props,
4551
4604
  children: [
4552
- /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)("div", { className: ScCatalogixInvite_default.appHeader, children: [
4553
- /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
4605
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScCatalogixInvite_default.appHeader, children: [
4606
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
4554
4607
  ScAppCard,
4555
4608
  {
4556
- appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_icons45.SiconArtifacts, { className: ScCatalogixInvite_default.siconArtifactsInstance }),
4609
+ appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons45.SiconArtifacts, { className: ScCatalogixInvite_default.siconArtifactsInstance }),
4557
4610
  appDescription,
4558
4611
  appName,
4559
4612
  className: ScCatalogixInvite_default.scAppCardInstance
4560
4613
  }
4561
4614
  ),
4562
- /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
4615
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
4563
4616
  ScToggleSwitch,
4564
4617
  {
4565
4618
  checked: isEnabled,
@@ -4568,29 +4621,29 @@ var ScCatalogixInvite = ({
4568
4621
  }
4569
4622
  )
4570
4623
  ] }),
4571
- isEnabled && /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_jsx_runtime54.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessContainer, children: [
4572
- /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessHeader, children: [
4573
- /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessTitle, children: [
4624
+ isEnabled && /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_jsx_runtime55.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessContainer, children: [
4625
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessHeader, children: [
4626
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessTitle, children: [
4574
4627
  storeAccessTitle,
4575
4628
  " "
4576
4629
  ] }),
4577
- /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)("div", { className: ScCatalogixInvite_default.selectedCount, children: [
4630
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScCatalogixInvite_default.selectedCount, children: [
4578
4631
  displayCount,
4579
4632
  " "
4580
4633
  ] })
4581
4634
  ] }),
4582
- /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
4635
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
4583
4636
  ScOnlyField,
4584
4637
  {
4585
- tfLeftIcon: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_icons46.SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
4586
- tfRightIcon: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_icons46.SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
4638
+ tfLeftIcon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons46.SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
4639
+ tfRightIcon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons46.SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
4587
4640
  placeholderFilled: searchPlaceholder,
4588
4641
  value: searchValue,
4589
4642
  onInputChange: onSearchChange,
4590
4643
  className: ScCatalogixInvite_default.scOnlyFieldInstance
4591
4644
  }
4592
4645
  ),
4593
- /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("div", { className: ScCatalogixInvite_default.storeListContainer, children: stores ? stores.length > 0 ? stores.map((store) => /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
4646
+ /* @__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)(
4594
4647
  ScPairtext,
4595
4648
  {
4596
4649
  content: store.name,
@@ -4601,53 +4654,53 @@ var ScCatalogixInvite = ({
4601
4654
  className: ScCatalogixInvite_default.scPairtextInstance
4602
4655
  },
4603
4656
  store.id
4604
- )) : /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("div", { style: {
4657
+ )) : /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("div", { style: {
4605
4658
  padding: "var(--spacing-3xl, 16px)",
4606
4659
  color: "var(--alias-text-and-icons-muted, #7a7a7a)",
4607
4660
  fontFamily: "var(--font-family-font-family-body, Inter, sans-serif)",
4608
4661
  fontSize: "var(--font-size-font-size-sm, 14px)",
4609
4662
  lineHeight: "var(--line-height-line-height-sm, 20px)"
4610
- }, children: "No stores found" }) : /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(import_jsx_runtime54.Fragment, { children: [
4611
- /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
4663
+ }, children: "No stores found" }) : /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(import_jsx_runtime55.Fragment, { children: [
4664
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
4612
4665
  ScPairtext,
4613
4666
  {
4614
- icon: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_icons47.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
4667
+ icon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons47.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
4615
4668
  iconPosition: "right",
4616
4669
  type: "checkbox",
4617
4670
  className: ScCatalogixInvite_default.scPairtextInstance
4618
4671
  }
4619
4672
  ),
4620
- /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
4673
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
4621
4674
  ScPairtext,
4622
4675
  {
4623
- icon: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_icons47.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
4676
+ icon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons47.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
4624
4677
  iconPosition: "right",
4625
4678
  type: "checkbox",
4626
4679
  className: ScCatalogixInvite_default.scPairtextInstance
4627
4680
  }
4628
4681
  ),
4629
- /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
4682
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
4630
4683
  ScPairtext,
4631
4684
  {
4632
- icon: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_icons47.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
4685
+ icon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons47.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
4633
4686
  iconPosition: "right",
4634
4687
  type: "checkbox",
4635
4688
  className: ScCatalogixInvite_default.scPairtextInstance
4636
4689
  }
4637
4690
  ),
4638
- /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
4691
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
4639
4692
  ScPairtext,
4640
4693
  {
4641
- icon: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_icons47.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
4694
+ icon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons47.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
4642
4695
  iconPosition: "right",
4643
4696
  type: "checkbox",
4644
4697
  className: ScCatalogixInvite_default.scPairtextInstance
4645
4698
  }
4646
4699
  ),
4647
- /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
4700
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
4648
4701
  ScPairtext,
4649
4702
  {
4650
- icon: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_icons47.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
4703
+ icon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons47.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
4651
4704
  iconPosition: "right",
4652
4705
  type: "checkbox",
4653
4706
  className: ScCatalogixInvite_default.scPairtextInstance
@@ -4661,7 +4714,7 @@ var ScCatalogixInvite = ({
4661
4714
  };
4662
4715
 
4663
4716
  // src/SC-appField/ScAppField.tsx
4664
- var import_jsx_runtime55 = require("react/jsx-runtime");
4717
+ var import_jsx_runtime56 = require("react/jsx-runtime");
4665
4718
  var ScAppField = ({
4666
4719
  appFieldTitle = "App permission",
4667
4720
  className,
@@ -4678,13 +4731,13 @@ var ScAppField = ({
4678
4731
  onCatalogixSearchChange,
4679
4732
  ...props
4680
4733
  }) => {
4681
- return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScAppField_default.scAppField + " " + className, ...props, children: [
4682
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("div", { className: ScAppField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScAppField_default.title, children: [
4734
+ return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScAppField_default.scAppField + " " + className, ...props, children: [
4735
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: ScAppField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScAppField_default.title, children: [
4683
4736
  appFieldTitle,
4684
4737
  " "
4685
4738
  ] }) }),
4686
- /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScAppField_default.inputContainer, children: [
4687
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
4739
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScAppField_default.inputContainer, children: [
4740
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
4688
4741
  ScArtifaxInvite,
4689
4742
  {
4690
4743
  enabled: artifaxEnabled,
@@ -4692,18 +4745,18 @@ var ScAppField = ({
4692
4745
  className: ScAppField_default.scArtifaxInviteInstance
4693
4746
  }
4694
4747
  ),
4695
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
4748
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
4696
4749
  ScPhtogenixInvite,
4697
4750
  {
4698
4751
  enabled: photogenixEnabled,
4699
4752
  onToggle: onPhotogenixToggle,
4700
4753
  scAppCardappDescription: "Info about photogenix",
4701
4754
  scAppCardappName: "Photogenix",
4702
- scAppCardappIcon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons48.SiconPhotogenix, { className: ScAppField_default.siconPhotogenixInstance }),
4755
+ scAppCardappIcon: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(import_icons48.SiconPhotogenix, { className: ScAppField_default.siconPhotogenixInstance }),
4703
4756
  className: ScAppField_default.scPhtogenixInviteInstance
4704
4757
  }
4705
4758
  ),
4706
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
4759
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
4707
4760
  ScCatalogixInvite,
4708
4761
  {
4709
4762
  enabled: catalogixEnabled,
@@ -4730,13 +4783,13 @@ var ScBillingHistoryHeader_default = {
4730
4783
  };
4731
4784
 
4732
4785
  // src/SC-billingHistoryHeader/ScBillingHistoryHeader.tsx
4733
- var import_jsx_runtime56 = require("react/jsx-runtime");
4786
+ var import_jsx_runtime57 = require("react/jsx-runtime");
4734
4787
  var ScBillingHistoryHeader = ({
4735
4788
  className,
4736
4789
  ...props
4737
4790
  }) => {
4738
- return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
4739
- /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
4791
+ return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
4792
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
4740
4793
  ScHeader,
4741
4794
  {
4742
4795
  text: "Invoice",
@@ -4744,7 +4797,7 @@ var ScBillingHistoryHeader = ({
4744
4797
  className: ScBillingHistoryHeader_default.scHeaderInstance
4745
4798
  }
4746
4799
  ),
4747
- /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
4800
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
4748
4801
  ScHeader,
4749
4802
  {
4750
4803
  text: "Amount",
@@ -4752,7 +4805,7 @@ var ScBillingHistoryHeader = ({
4752
4805
  className: ScBillingHistoryHeader_default.scHeaderInstance2
4753
4806
  }
4754
4807
  ),
4755
- /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
4808
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
4756
4809
  ScHeader,
4757
4810
  {
4758
4811
  text: "Date",
@@ -4760,7 +4813,7 @@ var ScBillingHistoryHeader = ({
4760
4813
  className: ScBillingHistoryHeader_default.scHeaderInstance2
4761
4814
  }
4762
4815
  ),
4763
- /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
4816
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
4764
4817
  ScHeader,
4765
4818
  {
4766
4819
  text: "Action",
@@ -4782,19 +4835,19 @@ var ScCheckField_default = {
4782
4835
 
4783
4836
  // src/SC-checkField/ScCheckField.tsx
4784
4837
  var import_icons49 = require("@streamoid/icons");
4785
- var import_jsx_runtime57 = require("react/jsx-runtime");
4838
+ var import_jsx_runtime58 = require("react/jsx-runtime");
4786
4839
  var ScCheckField = ({
4787
4840
  label = "Label",
4788
4841
  className,
4789
4842
  checkboxes,
4790
4843
  ...props
4791
4844
  }) => {
4792
- return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: ScCheckField_default.scCheckField + " " + className, ...props, children: [
4793
- /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: ScCheckField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: ScCheckField_default.label, children: [
4845
+ return /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: ScCheckField_default.scCheckField + " " + className, ...props, children: [
4846
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("div", { className: ScCheckField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: ScCheckField_default.label, children: [
4794
4847
  label,
4795
4848
  " "
4796
4849
  ] }) }),
4797
- /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: ScCheckField_default.tabSwitcher, children: checkboxes ? checkboxes.map((item, i) => /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
4850
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("div", { className: ScCheckField_default.tabSwitcher, children: checkboxes ? checkboxes.map((item, i) => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4798
4851
  ScPairtext,
4799
4852
  {
4800
4853
  content: item.label,
@@ -4804,19 +4857,19 @@ var ScCheckField = ({
4804
4857
  className: ScCheckField_default.scPairtextInstance
4805
4858
  },
4806
4859
  i
4807
- )) : /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)(import_jsx_runtime57.Fragment, { children: [
4808
- /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
4860
+ )) : /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)(import_jsx_runtime58.Fragment, { children: [
4861
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4809
4862
  ScPairtext,
4810
4863
  {
4811
- icon: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(import_icons49.SiconHome, { className: ScCheckField_default.siconHomeInstance }),
4864
+ icon: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons49.SiconHome, { className: ScCheckField_default.siconHomeInstance }),
4812
4865
  type: "checkbox",
4813
4866
  className: ScCheckField_default.scPairtextInstance
4814
4867
  }
4815
4868
  ),
4816
- /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
4869
+ /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4817
4870
  ScPairtext,
4818
4871
  {
4819
- icon: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(import_icons49.SiconHome, { className: ScCheckField_default.siconHomeInstance }),
4872
+ icon: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons49.SiconHome, { className: ScCheckField_default.siconHomeInstance }),
4820
4873
  type: "checkbox",
4821
4874
  className: ScCheckField_default.scPairtextInstance
4822
4875
  }
@@ -4837,9 +4890,9 @@ var ScFieldButton_default = {
4837
4890
 
4838
4891
  // src/SC-fieldButton/ScFieldButton.tsx
4839
4892
  var import_icons50 = require("@streamoid/icons");
4840
- var import_jsx_runtime58 = require("react/jsx-runtime");
4893
+ var import_jsx_runtime59 = require("react/jsx-runtime");
4841
4894
  var ScFieldButton = ({
4842
- icon = /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons50.SiconHome, { className: ScFieldButton_default.siconHomeInstance }),
4895
+ icon = /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_icons50.SiconHome, { className: ScFieldButton_default.siconHomeInstance }),
4843
4896
  type = "default",
4844
4897
  state = "default",
4845
4898
  className,
@@ -4847,18 +4900,18 @@ var ScFieldButton = ({
4847
4900
  ...props
4848
4901
  }) => {
4849
4902
  const variantsClassName = ScFieldButton_default["type-" + type] + " " + ScFieldButton_default["state-" + state];
4850
- return /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
4903
+ return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
4851
4904
  "div",
4852
4905
  {
4853
4906
  className: ScFieldButton_default.scFieldButton + " " + className + " " + variantsClassName,
4854
4907
  ...props,
4855
- children: /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: ScFieldButton_default.container, children: [
4856
- (type === "icon-right" || type === "only-icon") && /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_jsx_runtime58.Fragment, { children: icon }),
4857
- (type === "icon-left" || type === "default" || type === "icon-right") && /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_jsx_runtime58.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: ScFieldButton_default.label, children: [
4908
+ children: /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: ScFieldButton_default.container, children: [
4909
+ (type === "icon-right" || type === "only-icon") && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_jsx_runtime59.Fragment, { children: icon }),
4910
+ (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: [
4858
4911
  text,
4859
4912
  " "
4860
4913
  ] }) }),
4861
- type === "icon-left" && /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_jsx_runtime58.Fragment, { children: icon })
4914
+ type === "icon-left" && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_jsx_runtime59.Fragment, { children: icon })
4862
4915
  ] })
4863
4916
  }
4864
4917
  );
@@ -4873,16 +4926,16 @@ var ScPendingAction_default = {
4873
4926
 
4874
4927
  // src/SC-pendingAction/ScPendingAction.tsx
4875
4928
  var import_icons51 = require("@streamoid/icons");
4876
- var import_jsx_runtime59 = require("react/jsx-runtime");
4929
+ var import_jsx_runtime60 = require("react/jsx-runtime");
4877
4930
  var ScPendingAction = ({
4878
4931
  className,
4879
4932
  ...props
4880
4933
  }) => {
4881
- return /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
4882
- /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
4934
+ return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
4935
+ /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4883
4936
  ScButton,
4884
4937
  {
4885
- icon: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_icons51.SiconHome, { className: ScPendingAction_default.siconHomeInstance }),
4938
+ icon: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(import_icons51.SiconHome, { className: ScPendingAction_default.siconHomeInstance }),
4886
4939
  text: "Cancel",
4887
4940
  variant: "error",
4888
4941
  type: "tertiary",
@@ -4890,11 +4943,11 @@ var ScPendingAction = ({
4890
4943
  className: ScPendingAction_default.scButtonInstance
4891
4944
  }
4892
4945
  ),
4893
- /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(ScVDivider, { className: ScPendingAction_default.scVDividerInstance }),
4894
- /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
4946
+ /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(ScVDivider, { className: ScPendingAction_default.scVDividerInstance }),
4947
+ /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
4895
4948
  ScButton,
4896
4949
  {
4897
- icon: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_icons51.SiconHome, { className: ScPendingAction_default.siconHomeInstance }),
4950
+ icon: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(import_icons51.SiconHome, { className: ScPendingAction_default.siconHomeInstance }),
4898
4951
  text: "Resend",
4899
4952
  variant: "tertiary",
4900
4953
  size: "sm",
@@ -4918,7 +4971,7 @@ var ScQuickPrompt_default = {
4918
4971
 
4919
4972
  // src/SC-quick prompt/ScQuickPrompt.tsx
4920
4973
  var import_icons52 = require("@streamoid/icons");
4921
- var import_jsx_runtime60 = require("react/jsx-runtime");
4974
+ var import_jsx_runtime61 = require("react/jsx-runtime");
4922
4975
  var ScQuickPrompt = ({
4923
4976
  appName = "Photogenix",
4924
4977
  heading = "Swap Model and Background",
@@ -4926,20 +4979,20 @@ var ScQuickPrompt = ({
4926
4979
  className,
4927
4980
  ...props
4928
4981
  }) => {
4929
- return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)("div", { className: ScQuickPrompt_default.scQuickPrompt + " " + className, ...props, children: [
4930
- /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)("div", { className: ScQuickPrompt_default.header, children: [
4931
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("div", { className: ScQuickPrompt_default.iconContainer, children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(import_icons52.SiconBolt, { className: ScQuickPrompt_default.siconBoltInstance }) }),
4932
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("div", { className: ScQuickPrompt_default.titleContainer, children: /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)("div", { className: ScQuickPrompt_default.title, children: [
4982
+ return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScQuickPrompt_default.scQuickPrompt + " " + className, ...props, children: [
4983
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScQuickPrompt_default.header, children: [
4984
+ /* @__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 }) }),
4985
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("div", { className: ScQuickPrompt_default.titleContainer, children: /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScQuickPrompt_default.title, children: [
4933
4986
  appName,
4934
4987
  " "
4935
4988
  ] }) })
4936
4989
  ] }),
4937
- /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)("div", { className: ScQuickPrompt_default.body, children: [
4938
- /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)("div", { className: ScQuickPrompt_default.heading, children: [
4990
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScQuickPrompt_default.body, children: [
4991
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScQuickPrompt_default.heading, children: [
4939
4992
  heading,
4940
4993
  " "
4941
4994
  ] }),
4942
- /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)("div", { className: ScQuickPrompt_default.description, children: [
4995
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScQuickPrompt_default.description, children: [
4943
4996
  description,
4944
4997
  " "
4945
4998
  ] })
@@ -4956,13 +5009,13 @@ var ScReferralTableHeader_default = {
4956
5009
  };
4957
5010
 
4958
5011
  // src/SC-referralTableHeader/ScReferralTableHeader.tsx
4959
- var import_jsx_runtime61 = require("react/jsx-runtime");
5012
+ var import_jsx_runtime62 = require("react/jsx-runtime");
4960
5013
  var ScReferralTableHeader = ({
4961
5014
  className,
4962
5015
  ...props
4963
5016
  }) => {
4964
- return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
4965
- /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
5017
+ return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
5018
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4966
5019
  ScHeader,
4967
5020
  {
4968
5021
  text: "User",
@@ -4970,7 +5023,7 @@ var ScReferralTableHeader = ({
4970
5023
  className: ScReferralTableHeader_default.scHeaderInstance
4971
5024
  }
4972
5025
  ),
4973
- /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
5026
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4974
5027
  ScHeader,
4975
5028
  {
4976
5029
  text: "Date",
@@ -4978,7 +5031,7 @@ var ScReferralTableHeader = ({
4978
5031
  className: ScReferralTableHeader_default.scHeaderInstance2
4979
5032
  }
4980
5033
  ),
4981
- /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
5034
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4982
5035
  ScHeader,
4983
5036
  {
4984
5037
  text: "Status",
@@ -4986,7 +5039,7 @@ var ScReferralTableHeader = ({
4986
5039
  className: ScReferralTableHeader_default.scHeaderInstance3
4987
5040
  }
4988
5041
  ),
4989
- /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
5042
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
4990
5043
  ScHeader,
4991
5044
  {
4992
5045
  text: "Reward",
@@ -5007,7 +5060,7 @@ var ScReferralTableList_default = {
5007
5060
  };
5008
5061
 
5009
5062
  // src/SC-referralTableList/ScReferralTableList.tsx
5010
- var import_jsx_runtime62 = require("react/jsx-runtime");
5063
+ var import_jsx_runtime63 = require("react/jsx-runtime");
5011
5064
  var ScReferralTableList = ({
5012
5065
  userEmail = "chris@kepler.com",
5013
5066
  userName,
@@ -5017,8 +5070,8 @@ var ScReferralTableList = ({
5017
5070
  className,
5018
5071
  ...props
5019
5072
  }) => {
5020
- return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
5021
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
5073
+ return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
5074
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
5022
5075
  ScProfile,
5023
5076
  {
5024
5077
  subText: userEmail,
@@ -5026,12 +5079,12 @@ var ScReferralTableList = ({
5026
5079
  className: ScReferralTableList_default.scProfileInstance
5027
5080
  }
5028
5081
  ),
5029
- /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScReferralTableList_default.date, children: [
5082
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScReferralTableList_default.date, children: [
5030
5083
  date,
5031
5084
  " "
5032
5085
  ] }),
5033
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(ScBadges, { text: status, className: ScReferralTableList_default.scBadgesInstance }),
5034
- /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScReferralTableList_default.points, children: [
5086
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(ScBadges, { text: status, className: ScReferralTableList_default.scBadgesInstance }),
5087
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScReferralTableList_default.points, children: [
5035
5088
  points,
5036
5089
  " "
5037
5090
  ] })
@@ -5047,33 +5100,33 @@ var ScSettingsNav_default = {
5047
5100
  // src/SC-settingsNav/ScSettingsNav.tsx
5048
5101
  var import_icons53 = require("@streamoid/icons");
5049
5102
  var import_icons54 = require("@streamoid/icons");
5050
- var import_jsx_runtime63 = require("react/jsx-runtime");
5103
+ var import_jsx_runtime64 = require("react/jsx-runtime");
5051
5104
  var ScSettingsNav = ({
5052
5105
  className,
5053
5106
  ...props
5054
5107
  }) => {
5055
- return /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("div", { className: ScSettingsNav_default.scSettingsNav + " " + className, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScSettingsNav_default.container, children: [
5056
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
5108
+ 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: [
5109
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
5057
5110
  ScSidebarMenu,
5058
5111
  {
5059
- icon: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons53.SiconTeam, { className: ScSettingsNav_default.siconTeamInstance }),
5112
+ icon: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_icons53.SiconTeam, { className: ScSettingsNav_default.siconTeamInstance }),
5060
5113
  text: "Profile",
5061
5114
  state: "active",
5062
5115
  className: ScSettingsNav_default.scSidebarMenuInstance
5063
5116
  }
5064
5117
  ),
5065
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
5118
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
5066
5119
  ScSidebarMenu,
5067
5120
  {
5068
- icon: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons54.SiconWorkspace, { className: ScSettingsNav_default.siconWorkspaceInstance }),
5121
+ icon: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_icons54.SiconWorkspace, { className: ScSettingsNav_default.siconWorkspaceInstance }),
5069
5122
  text: "Workspace",
5070
5123
  className: ScSettingsNav_default.scSidebarMenuInstance
5071
5124
  }
5072
5125
  ),
5073
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
5126
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
5074
5127
  ScSidebarMenu,
5075
5128
  {
5076
- icon: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_icons54.SiconReferral, { className: ScSettingsNav_default.siconReferralInstance }),
5129
+ icon: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_icons54.SiconReferral, { className: ScSettingsNav_default.siconReferralInstance }),
5077
5130
  text: "Referral",
5078
5131
  className: ScSettingsNav_default.scSidebarMenuInstance
5079
5132
  }
@@ -5089,7 +5142,7 @@ var ScTabField_default = {
5089
5142
  };
5090
5143
 
5091
5144
  // src/SC-tabField/ScTabField.tsx
5092
- var import_jsx_runtime64 = require("react/jsx-runtime");
5145
+ var import_jsx_runtime65 = require("react/jsx-runtime");
5093
5146
  var ScTabField = ({
5094
5147
  label = "Label",
5095
5148
  className,
@@ -5098,17 +5151,17 @@ var ScTabField = ({
5098
5151
  onTabChange,
5099
5152
  ...props
5100
5153
  }) => {
5101
- return /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScTabField_default.scTabField + " " + className, children: [
5102
- /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("div", { className: ScTabField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScTabField_default.label, children: [
5154
+ return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)("div", { className: ScTabField_default.scTabField + " " + className, children: [
5155
+ /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("div", { className: ScTabField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)("div", { className: ScTabField_default.label, children: [
5103
5156
  label,
5104
5157
  " "
5105
5158
  ] }) }),
5106
- tabs ? /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
5159
+ tabs ? /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
5107
5160
  ScTabSwitcher,
5108
5161
  {
5109
5162
  tabCount: String(tabs.length),
5110
5163
  className: ScTabField_default.scTabSwitcherInstance,
5111
- component: tabs[0] ? /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
5164
+ component: tabs[0] ? /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
5112
5165
  ScTabComp,
5113
5166
  {
5114
5167
  text: tabs[0].label,
@@ -5118,7 +5171,7 @@ var ScTabField = ({
5118
5171
  style: { flex: 1 }
5119
5172
  }
5120
5173
  ) : void 0,
5121
- component2: tabs[1] ? /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
5174
+ component2: tabs[1] ? /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
5122
5175
  ScTabComp,
5123
5176
  {
5124
5177
  text: tabs[1].label,
@@ -5129,7 +5182,7 @@ var ScTabField = ({
5129
5182
  }
5130
5183
  ) : void 0
5131
5184
  }
5132
- ) : /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(ScTabSwitcher, { className: ScTabField_default.scTabSwitcherInstance })
5185
+ ) : /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(ScTabSwitcher, { className: ScTabField_default.scTabSwitcherInstance })
5133
5186
  ] });
5134
5187
  };
5135
5188
 
@@ -5146,19 +5199,19 @@ var ScTableHeader_default = {
5146
5199
  };
5147
5200
 
5148
5201
  // src/SC-tableHeader/ScTableHeader.tsx
5149
- var import_jsx_runtime65 = require("react/jsx-runtime");
5202
+ var import_jsx_runtime66 = require("react/jsx-runtime");
5150
5203
  var ScTableHeader = ({
5151
5204
  type = "default",
5152
5205
  className,
5153
5206
  ...props
5154
5207
  }) => {
5155
5208
  const variantsClassName = ScTableHeader_default["type-" + type];
5156
- return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(
5209
+ return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
5157
5210
  "div",
5158
5211
  {
5159
5212
  className: ScTableHeader_default.scTableHeader + " " + className + " " + variantsClassName,
5160
5213
  children: [
5161
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
5214
+ /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
5162
5215
  ScHeader,
5163
5216
  {
5164
5217
  text: "User",
@@ -5166,7 +5219,7 @@ var ScTableHeader = ({
5166
5219
  className: ScTableHeader_default.scHeaderInstance
5167
5220
  }
5168
5221
  ),
5169
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
5222
+ /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
5170
5223
  ScHeader,
5171
5224
  {
5172
5225
  text: "Role",
@@ -5174,7 +5227,7 @@ var ScTableHeader = ({
5174
5227
  className: ScTableHeader_default.scHeaderInstance2
5175
5228
  }
5176
5229
  ),
5177
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
5230
+ /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
5178
5231
  ScHeader,
5179
5232
  {
5180
5233
  text: "Access",
@@ -5182,7 +5235,7 @@ var ScTableHeader = ({
5182
5235
  className: ScTableHeader_default.scHeaderInstance3
5183
5236
  }
5184
5237
  ),
5185
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
5238
+ /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
5186
5239
  ScHeader,
5187
5240
  {
5188
5241
  text: "Invited by",
@@ -5190,7 +5243,7 @@ var ScTableHeader = ({
5190
5243
  className: ScTableHeader_default.scHeaderInstance4
5191
5244
  }
5192
5245
  ),
5193
- type === "pending" && /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(import_jsx_runtime65.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
5246
+ type === "pending" && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(import_jsx_runtime66.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
5194
5247
  ScHeader,
5195
5248
  {
5196
5249
  text: "Invite action",
@@ -5198,7 +5251,7 @@ var ScTableHeader = ({
5198
5251
  className: ScTableHeader_default.scHeaderInstance5
5199
5252
  }
5200
5253
  ) }),
5201
- type === "default" && /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(import_jsx_runtime65.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
5254
+ type === "default" && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(import_jsx_runtime66.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
5202
5255
  ScHeader,
5203
5256
  {
5204
5257
  text: "Signed On",
@@ -5232,7 +5285,7 @@ var ScTableList_default = {
5232
5285
  // src/SC-tableList/ScTableList.tsx
5233
5286
  var import_icons55 = require("@streamoid/icons");
5234
5287
  var import_icons56 = require("@streamoid/icons");
5235
- var import_jsx_runtime66 = require("react/jsx-runtime");
5288
+ var import_jsx_runtime67 = require("react/jsx-runtime");
5236
5289
  var ScTableList = ({
5237
5290
  invitedBy = "Rohan",
5238
5291
  signedOn = "Nov 9th, 2025",
@@ -5244,51 +5297,51 @@ var ScTableList = ({
5244
5297
  ...props
5245
5298
  }) => {
5246
5299
  const variantsClassName = ScTableList_default["hover-" + hover] + " " + ScTableList_default["variant-" + variant];
5247
- return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
5300
+ return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
5248
5301
  "div",
5249
5302
  {
5250
5303
  className: ScTableList_default.scTableList + " " + className + " " + variantsClassName,
5251
5304
  onClick: (e) => onRowClick && onRowClick(invitedBy, e),
5252
5305
  ...props,
5253
5306
  children: [
5254
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
5307
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
5255
5308
  ScProfile,
5256
5309
  {
5257
5310
  subText: userEmail,
5258
5311
  className: ScTableList_default.scProfileInstance
5259
5312
  }
5260
5313
  ),
5261
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(ScRole, { className: ScTableList_default.scRoleInstance }),
5262
- /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("div", { className: ScTableList_default.accessInfo, children: [
5263
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
5314
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(ScRole, { className: ScTableList_default.scRoleInstance }),
5315
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScTableList_default.accessInfo, children: [
5316
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
5264
5317
  ScAccess,
5265
5318
  {
5266
- component: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(import_icons55.SiconArtifacts, { className: ScTableList_default.siconArtifactsInstance }),
5267
- component2: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(import_icons55.SiconPhotogenix, { className: ScTableList_default.siconPhotogenixInstance }),
5319
+ component: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_icons55.SiconArtifacts, { className: ScTableList_default.siconArtifactsInstance }),
5320
+ component2: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_icons55.SiconPhotogenix, { className: ScTableList_default.siconPhotogenixInstance }),
5268
5321
  className: ScTableList_default.scAccessInstance
5269
5322
  }
5270
5323
  ),
5271
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
5324
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
5272
5325
  ScAccess,
5273
5326
  {
5274
- component: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(import_icons56.SiconUserAdd, { className: ScTableList_default.siconUserAddInstance }),
5275
- component2: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(import_icons56.SiconCoins, { className: ScTableList_default.siconCoinsInstance }),
5327
+ component: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_icons56.SiconUserAdd, { className: ScTableList_default.siconUserAddInstance }),
5328
+ component2: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_icons56.SiconCoins, { className: ScTableList_default.siconCoinsInstance }),
5276
5329
  visibleSiconCatalogix: false,
5277
5330
  className: ScTableList_default.scAccessInstance
5278
5331
  }
5279
5332
  )
5280
5333
  ] }),
5281
- /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("div", { className: ScTableList_default.userName, children: [
5334
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScTableList_default.userName, children: [
5282
5335
  invitedBy,
5283
5336
  " "
5284
5337
  ] }),
5285
- variant === "pending" && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(import_jsx_runtime66.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
5338
+ variant === "pending" && /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_jsx_runtime67.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
5286
5339
  ScPendingAction,
5287
5340
  {
5288
5341
  className: ScTableList_default.scPendingActionInstance
5289
5342
  }
5290
5343
  ) }),
5291
- variant === "active" && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(import_jsx_runtime66.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("div", { className: ScTableList_default.date, children: [
5344
+ 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: [
5292
5345
  signedOn,
5293
5346
  " "
5294
5347
  ] }) })
@@ -5318,7 +5371,7 @@ var ScWorkspaceCard_default = {
5318
5371
 
5319
5372
  // src/SC-workspaceCard/ScWorkspaceCard.tsx
5320
5373
  var import_icons57 = require("@streamoid/icons");
5321
- var import_jsx_runtime67 = require("react/jsx-runtime");
5374
+ var import_jsx_runtime68 = require("react/jsx-runtime");
5322
5375
  var ScWorkspaceCard = ({
5323
5376
  workspaceName = "Stores",
5324
5377
  role = "Admin",
@@ -5328,21 +5381,21 @@ var ScWorkspaceCard = ({
5328
5381
  className,
5329
5382
  ...props
5330
5383
  }) => {
5331
- return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScWorkspaceCard_default.scWorkspaceCard + " " + className, ...props, children: [
5332
- /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScWorkspaceCard_default.workspaceInfo, children: [
5333
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
5384
+ return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceCard_default.scWorkspaceCard + " " + className, ...props, children: [
5385
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceCard_default.workspaceInfo, children: [
5386
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
5334
5387
  ScIntialProfileCover,
5335
5388
  {
5336
5389
  className: ScWorkspaceCard_default.scIntialProfileCoverInstance
5337
5390
  }
5338
5391
  ),
5339
- /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScWorkspaceCard_default.workspaceName, children: [
5392
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceCard_default.workspaceName, children: [
5340
5393
  workspaceName,
5341
5394
  " "
5342
5395
  ] })
5343
5396
  ] }),
5344
- /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScWorkspaceCard_default.userInfo, children: [
5345
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
5397
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceCard_default.userInfo, children: [
5398
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
5346
5399
  ScBadges,
5347
5400
  {
5348
5401
  text: role,
@@ -5350,41 +5403,41 @@ var ScWorkspaceCard = ({
5350
5403
  className: ScWorkspaceCard_default.scBadgesInstance
5351
5404
  }
5352
5405
  ),
5353
- /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScWorkspaceCard_default.userDetails, children: [
5354
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
5406
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceCard_default.userDetails, children: [
5407
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
5355
5408
  ScPairtext,
5356
5409
  {
5357
- icon: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_icons57.SiconTeam, { className: ScWorkspaceCard_default.siconTeamInstance }),
5410
+ icon: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(import_icons57.SiconTeam, { className: ScWorkspaceCard_default.siconTeamInstance }),
5358
5411
  content: userCount,
5359
5412
  className: ScWorkspaceCard_default.scPairtextInstance
5360
5413
  }
5361
5414
  ),
5362
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(ScVDivider, { className: ScWorkspaceCard_default.scVDividerInstance }),
5363
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
5415
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(ScVDivider, { className: ScWorkspaceCard_default.scVDividerInstance }),
5416
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
5364
5417
  ScPairtext,
5365
5418
  {
5366
- icon: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_icons57.SiconCrown, { className: ScWorkspaceCard_default.siconCrownInstance }),
5419
+ icon: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(import_icons57.SiconCrown, { className: ScWorkspaceCard_default.siconCrownInstance }),
5367
5420
  content: ownerEmail,
5368
5421
  className: ScWorkspaceCard_default.scPairtextInstance
5369
5422
  }
5370
5423
  )
5371
5424
  ] })
5372
5425
  ] }),
5373
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
5426
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
5374
5427
  ScButton,
5375
5428
  {
5376
- icon: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_icons57.SiconSwitch, { className: ScWorkspaceCard_default.siconSwitchInstance }),
5429
+ icon: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(import_icons57.SiconSwitch, { className: ScWorkspaceCard_default.siconSwitchInstance }),
5377
5430
  text: buttonText,
5378
5431
  state: "disabled",
5379
5432
  variant: "outline",
5380
5433
  className: ScWorkspaceCard_default.scButtonInstance
5381
5434
  }
5382
5435
  ),
5383
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
5436
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
5384
5437
  ScButton,
5385
5438
  {
5386
5439
  text: "Leave workspace",
5387
- icon: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_icons57.SiconLogout, { className: ScWorkspaceCard_default.siconLogoutInstance }),
5440
+ icon: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(import_icons57.SiconLogout, { className: ScWorkspaceCard_default.siconLogoutInstance }),
5388
5441
  styleVariant: "icon-only",
5389
5442
  variant: "error",
5390
5443
  className: ScWorkspaceCard_default.scButtonInstance2
@@ -5420,7 +5473,7 @@ var ScWorkspaceSwitchCard_default = {
5420
5473
  };
5421
5474
 
5422
5475
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.tsx
5423
- var import_jsx_runtime68 = require("react/jsx-runtime");
5476
+ var import_jsx_runtime69 = require("react/jsx-runtime");
5424
5477
  function ScWorkspaceSwitchCard({
5425
5478
  wsName = "Workspace name is kepler",
5426
5479
  role = "Admin",
@@ -5450,14 +5503,14 @@ function ScWorkspaceSwitchCard({
5450
5503
  ].filter(Boolean).join(" ");
5451
5504
  const dpBg = isCurrent ? "var(--alias-fill-neutral-neutralactive, #313131)" : "var(--alias-fill-neutral-neutralselected, #242424)";
5452
5505
  const roleColorClass = isAdmin ? ScWorkspaceSwitchCard_default.detailValueRole : ScWorkspaceSwitchCard_default.detailValueInfo;
5453
- return /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
5506
+ return /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5454
5507
  "div",
5455
5508
  {
5456
5509
  className: cardClass,
5457
5510
  onMouseEnter: () => setInternalHover(true),
5458
5511
  onMouseLeave: () => setInternalHover(false),
5459
- children: /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceSwitchCard_default.wsInfo, children: [
5460
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
5512
+ children: /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSwitchCard_default.wsInfo, children: [
5513
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5461
5514
  ScDp,
5462
5515
  {
5463
5516
  type: imageUrl ? "image" : "initial",
@@ -5471,26 +5524,26 @@ function ScWorkspaceSwitchCard({
5471
5524
  }
5472
5525
  }
5473
5526
  ),
5474
- /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceSwitchCard_default.infoCol, children: [
5475
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("p", { className: ScWorkspaceSwitchCard_default.wsName, children: wsName }),
5476
- /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailsRow, children: [
5477
- /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
5478
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Role" }),
5479
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("span", { className: roleColorClass, children: displayRole })
5527
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSwitchCard_default.infoCol, children: [
5528
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("p", { className: ScWorkspaceSwitchCard_default.wsName, children: wsName }),
5529
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailsRow, children: [
5530
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
5531
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Role" }),
5532
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: roleColorClass, children: displayRole })
5480
5533
  ] }),
5481
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
5482
- /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
5483
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Plan" }),
5484
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: plan })
5534
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
5535
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
5536
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Plan" }),
5537
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: plan })
5485
5538
  ] }),
5486
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
5487
- /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItemFlex, children: [
5488
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Workspace Owner" }),
5489
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: ownerId })
5539
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
5540
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItemFlex, children: [
5541
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Workspace Owner" }),
5542
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: ownerId })
5490
5543
  ] })
5491
5544
  ] })
5492
5545
  ] }),
5493
- isHover && isOther && /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
5546
+ isHover && isOther && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5494
5547
  "div",
5495
5548
  {
5496
5549
  onClick: (e) => {
@@ -5498,19 +5551,19 @@ function ScWorkspaceSwitchCard({
5498
5551
  onSwitch?.();
5499
5552
  },
5500
5553
  style: { cursor: "pointer" },
5501
- children: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
5554
+ children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5502
5555
  ScButton,
5503
5556
  {
5504
5557
  text: "Switch Workspace",
5505
5558
  variant: "secondary",
5506
5559
  size: "sm",
5507
5560
  styleVariant: "icon-left",
5508
- icon: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(import_icons58.SiconSwitch, { className: ScWorkspaceSwitchCard_default.btnIcon })
5561
+ icon: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(import_icons58.SiconSwitch, { className: ScWorkspaceSwitchCard_default.btnIcon })
5509
5562
  }
5510
5563
  )
5511
5564
  }
5512
5565
  ),
5513
- isHover && isAdmin && /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
5566
+ isHover && isAdmin && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5514
5567
  "div",
5515
5568
  {
5516
5569
  onClick: (e) => {
@@ -5518,18 +5571,18 @@ function ScWorkspaceSwitchCard({
5518
5571
  onSettings?.();
5519
5572
  },
5520
5573
  style: { cursor: "pointer" },
5521
- children: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
5574
+ children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5522
5575
  ScButton,
5523
5576
  {
5524
5577
  styleVariant: "icon-only",
5525
5578
  variant: "outline",
5526
5579
  size: "sm",
5527
- icon: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(import_icons58.SiconSettings, { className: ScWorkspaceSwitchCard_default.btnIcon })
5580
+ icon: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(import_icons58.SiconSettings, { className: ScWorkspaceSwitchCard_default.btnIcon })
5528
5581
  }
5529
5582
  )
5530
5583
  }
5531
5584
  ),
5532
- isHover && !isAdmin && /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
5585
+ isHover && !isAdmin && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5533
5586
  "div",
5534
5587
  {
5535
5588
  className: ScWorkspaceSwitchCard_default.leaveBtn,
@@ -5537,7 +5590,7 @@ function ScWorkspaceSwitchCard({
5537
5590
  e.stopPropagation();
5538
5591
  onLeave?.();
5539
5592
  },
5540
- children: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(import_icons58.SiconLogout, { className: ScWorkspaceSwitchCard_default.btnIcon, color: "currentColor" })
5593
+ children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(import_icons58.SiconLogout, { className: ScWorkspaceSwitchCard_default.btnIcon, color: "currentColor" })
5541
5594
  }
5542
5595
  )
5543
5596
  ] })
@@ -5555,18 +5608,18 @@ var ScRoleMobile_default = {
5555
5608
  };
5556
5609
 
5557
5610
  // src/SC-Role-Mobile/ScRoleMobile.tsx
5558
- var import_jsx_runtime69 = require("react/jsx-runtime");
5611
+ var import_jsx_runtime70 = require("react/jsx-runtime");
5559
5612
  var ScRoleMobile = ({
5560
5613
  role = "admin",
5561
5614
  className,
5562
5615
  ...props
5563
5616
  }) => {
5564
- return /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
5617
+ return /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
5565
5618
  "div",
5566
5619
  {
5567
5620
  className: ScRoleMobile_default.scRoleMobile + " " + ScRoleMobile_default["role-" + role] + " " + className,
5568
5621
  ...props,
5569
- children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("p", { className: ScRoleMobile_default.text, children: role === "admin" ? "Admin" : "Member" })
5622
+ children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("p", { className: ScRoleMobile_default.text, children: role === "admin" ? "Admin" : "Member" })
5570
5623
  }
5571
5624
  );
5572
5625
  };
@@ -5583,7 +5636,7 @@ var ScProfileV2Mobile_default = {
5583
5636
  };
5584
5637
 
5585
5638
  // src/SC-Profile-V2-Mobile/ScProfileV2Mobile.tsx
5586
- var import_jsx_runtime70 = require("react/jsx-runtime");
5639
+ var import_jsx_runtime71 = require("react/jsx-runtime");
5587
5640
  var ScProfileV2Mobile = ({
5588
5641
  name = "Chris Hemsworth",
5589
5642
  email = "chris@kepler.com",
@@ -5593,17 +5646,17 @@ var ScProfileV2Mobile = ({
5593
5646
  ...props
5594
5647
  }) => {
5595
5648
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
5596
- const profileImage = /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: ScProfileV2Mobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("img", { src: imageUrl, alt: name, className: ScProfileV2Mobile_default.image }) : /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: ScProfileV2Mobile_default.initials, children: initials }) });
5597
- return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
5649
+ 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 }) });
5650
+ return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
5598
5651
  "div",
5599
5652
  {
5600
5653
  className: ScProfileV2Mobile_default.scProfileV2Mobile + " " + className,
5601
5654
  ...props,
5602
5655
  children: [
5603
5656
  dpPosition === "left" && profileImage,
5604
- /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)("div", { className: ScProfileV2Mobile_default.userInfo, children: [
5605
- /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("p", { className: ScProfileV2Mobile_default.userName, children: name }),
5606
- /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("p", { className: ScProfileV2Mobile_default.userEmail, children: email })
5657
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)("div", { className: ScProfileV2Mobile_default.userInfo, children: [
5658
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("p", { className: ScProfileV2Mobile_default.userName, children: name }),
5659
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("p", { className: ScProfileV2Mobile_default.userEmail, children: email })
5607
5660
  ] }),
5608
5661
  dpPosition === "right" && profileImage
5609
5662
  ]
@@ -5630,7 +5683,7 @@ var ScTableListMobile_default = {
5630
5683
  };
5631
5684
 
5632
5685
  // src/SC-tableList-mobile/ScTableListMobile.tsx
5633
- var import_jsx_runtime71 = require("react/jsx-runtime");
5686
+ var import_jsx_runtime72 = require("react/jsx-runtime");
5634
5687
  var ScTableListMobile = ({
5635
5688
  name = "Chris Hemsworth",
5636
5689
  email = "chris@kepler.com",
@@ -5643,25 +5696,25 @@ var ScTableListMobile = ({
5643
5696
  ...props
5644
5697
  }) => {
5645
5698
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
5646
- return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
5699
+ return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
5647
5700
  "div",
5648
5701
  {
5649
5702
  className: ScTableListMobile_default.scTableListMobile + " " + className,
5650
5703
  onClick: onRowClick,
5651
5704
  ...props,
5652
5705
  children: [
5653
- /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)("div", { className: ScTableListMobile_default.profileRow, children: [
5654
- /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)("div", { className: ScTableListMobile_default.userInfo, children: [
5655
- /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("p", { className: ScTableListMobile_default.userName, children: name }),
5656
- /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("p", { className: ScTableListMobile_default.userEmail, children: email })
5706
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScTableListMobile_default.profileRow, children: [
5707
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScTableListMobile_default.userInfo, children: [
5708
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScTableListMobile_default.userName, children: name }),
5709
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScTableListMobile_default.userEmail, children: email })
5657
5710
  ] }),
5658
- /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("div", { className: ScTableListMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("img", { src: imageUrl, alt: name, className: ScTableListMobile_default.image }) : /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("div", { className: ScTableListMobile_default.initials, children: initials }) })
5711
+ /* @__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 }) })
5659
5712
  ] }),
5660
- /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)("div", { className: ScTableListMobile_default.detailsRow, children: [
5661
- /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("div", { className: ScTableListMobile_default.roleBadge, children: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("p", { className: ScTableListMobile_default.roleText, children: role }) }),
5662
- /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)("div", { className: ScTableListMobile_default.accessInfo, children: [
5663
- accessIcons && accessIcons.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("div", { className: ScTableListMobile_default.accessGroup, children: accessIcons.map((icon, i) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) }),
5664
- permissionIcons && permissionIcons.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("div", { className: ScTableListMobile_default.accessGroup, children: permissionIcons.map((icon, i) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) })
5713
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScTableListMobile_default.detailsRow, children: [
5714
+ /* @__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 }) }),
5715
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScTableListMobile_default.accessInfo, children: [
5716
+ 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)) }),
5717
+ 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)) })
5665
5718
  ] })
5666
5719
  ] })
5667
5720
  ]
@@ -5689,7 +5742,7 @@ var ScWorkspaceSwitchMobile_default = {
5689
5742
  };
5690
5743
 
5691
5744
  // src/SC-workspaceSwitch-Mobile/ScWorkspaceSwitchMobile.tsx
5692
- var import_jsx_runtime72 = require("react/jsx-runtime");
5745
+ var import_jsx_runtime73 = require("react/jsx-runtime");
5693
5746
  var ScWorkspaceSwitchMobile = ({
5694
5747
  storeName = "Stores",
5695
5748
  initials = "WS",
@@ -5702,24 +5755,24 @@ var ScWorkspaceSwitchMobile = ({
5702
5755
  ...props
5703
5756
  }) => {
5704
5757
  const variant = currentWs ? "current" : "other";
5705
- return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
5758
+ return /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)(
5706
5759
  "div",
5707
5760
  {
5708
5761
  className: ScWorkspaceSwitchMobile_default.scWorkspaceSwitchMobile + " " + ScWorkspaceSwitchMobile_default["variant-" + variant] + " " + className,
5709
5762
  onClick,
5710
5763
  ...props,
5711
5764
  children: [
5712
- /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.workspaceInfo, children: [
5713
- /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.wsNameRow, children: [
5714
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("div", { className: ScWorkspaceSwitchMobile_default.initialsBox, children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("span", { className: ScWorkspaceSwitchMobile_default.initialsText, children: initials }) }),
5715
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScWorkspaceSwitchMobile_default.storeName, children: storeName })
5765
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.workspaceInfo, children: [
5766
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.wsNameRow, children: [
5767
+ /* @__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 }) }),
5768
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScWorkspaceSwitchMobile_default.storeName, children: storeName })
5716
5769
  ] }),
5717
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("div", { className: ScWorkspaceSwitchMobile_default.roleBadge, children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScWorkspaceSwitchMobile_default.roleText, children: role }) })
5770
+ /* @__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 }) })
5718
5771
  ] }),
5719
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("div", { className: ScWorkspaceSwitchMobile_default.divider }),
5720
- /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.ownerRow, children: [
5721
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("div", { className: ScWorkspaceSwitchMobile_default.ownerIconContainer, children: ownerIcon && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("span", { className: ScWorkspaceSwitchMobile_default.ownerIcon, children: ownerIcon }) }),
5722
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScWorkspaceSwitchMobile_default.ownerText, children: ownerId })
5772
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: ScWorkspaceSwitchMobile_default.divider }),
5773
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.ownerRow, children: [
5774
+ /* @__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 }) }),
5775
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScWorkspaceSwitchMobile_default.ownerText, children: ownerId })
5723
5776
  ] })
5724
5777
  ]
5725
5778
  }
@@ -5746,7 +5799,7 @@ var ScWorkspaceSettingsMobile_default = {
5746
5799
  };
5747
5800
 
5748
5801
  // src/SC-workspaceSettings-Mobile/ScWorkspaceSettingsMobile.tsx
5749
- var import_jsx_runtime73 = require("react/jsx-runtime");
5802
+ var import_jsx_runtime74 = require("react/jsx-runtime");
5750
5803
  var ScWorkspaceSettingsMobile = ({
5751
5804
  storeName = "Stores",
5752
5805
  initials = "WS",
@@ -5761,28 +5814,28 @@ var ScWorkspaceSettingsMobile = ({
5761
5814
  ...props
5762
5815
  }) => {
5763
5816
  const variant = currentWs ? "current" : "other";
5764
- return /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)(
5817
+ return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(
5765
5818
  "div",
5766
5819
  {
5767
5820
  className: ScWorkspaceSettingsMobile_default.scWorkspaceSettingsMobile + " " + ScWorkspaceSettingsMobile_default["variant-" + variant] + " " + className,
5768
5821
  onClick,
5769
5822
  ...props,
5770
5823
  children: [
5771
- /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.workspaceInfo, children: [
5772
- /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.wsNameRow, children: [
5773
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: ScWorkspaceSettingsMobile_default.initialsBox, children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("span", { className: ScWorkspaceSettingsMobile_default.initialsText, children: initials }) }),
5774
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScWorkspaceSettingsMobile_default.storeName, children: storeName })
5824
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.workspaceInfo, children: [
5825
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.wsNameRow, children: [
5826
+ /* @__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 }) }),
5827
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("p", { className: ScWorkspaceSettingsMobile_default.storeName, children: storeName })
5775
5828
  ] }),
5776
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: ScWorkspaceSettingsMobile_default.roleBadge, children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScWorkspaceSettingsMobile_default.roleText, children: role }) })
5829
+ /* @__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 }) })
5777
5830
  ] }),
5778
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: ScWorkspaceSettingsMobile_default.divider }),
5779
- /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
5780
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: ownerIcon && /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("span", { className: ScWorkspaceSettingsMobile_default.icon, children: ownerIcon }) }),
5781
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: ownerId })
5831
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScWorkspaceSettingsMobile_default.divider }),
5832
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
5833
+ /* @__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 }) }),
5834
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: ownerId })
5782
5835
  ] }),
5783
- /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
5784
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: teamIcon && /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("span", { className: ScWorkspaceSettingsMobile_default.icon, children: teamIcon }) }),
5785
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: teamCount })
5836
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
5837
+ /* @__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 }) }),
5838
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: teamCount })
5786
5839
  ] })
5787
5840
  ]
5788
5841
  }
@@ -5805,7 +5858,7 @@ var ScMobileTopNav_default = {
5805
5858
  };
5806
5859
 
5807
5860
  // src/SC-MobileTopNav/ScMobileTopNav.tsx
5808
- var import_jsx_runtime74 = require("react/jsx-runtime");
5861
+ var import_jsx_runtime75 = require("react/jsx-runtime");
5809
5862
  var ScMobileTopNav = ({
5810
5863
  type = "home",
5811
5864
  searchIcon = false,
@@ -5828,22 +5881,22 @@ var ScMobileTopNav = ({
5828
5881
  }) => {
5829
5882
  const hasBorder = type === "chat" || type === "inApp";
5830
5883
  const showSearch = type === "inApp" && searchIcon && search;
5831
- return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(
5884
+ return /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(
5832
5885
  "div",
5833
5886
  {
5834
5887
  className: ScMobileTopNav_default.scMobileTopNav + " " + (hasBorder ? ScMobileTopNav_default.withBorder : "") + " " + className,
5835
5888
  ...props,
5836
5889
  children: [
5837
- type === "home" && /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5838
- type === "chat" && /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(import_jsx_runtime74.Fragment, { children: [
5839
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5840
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("p", { className: ScMobileTopNav_default.chatTitle, children: chatTitle }),
5841
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMoreClick, children: moreIcon || /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
5890
+ 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 }) }),
5891
+ type === "chat" && /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(import_jsx_runtime75.Fragment, { children: [
5892
+ /* @__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 }) }),
5893
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("p", { className: ScMobileTopNav_default.chatTitle, children: chatTitle }),
5894
+ /* @__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 }) })
5842
5895
  ] }),
5843
- showSearch && /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(import_jsx_runtime74.Fragment, { children: [
5844
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScMobileTopNav_default.searchRow, children: /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: ScMobileTopNav_default.searchInputContainer, children: [
5845
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onSearchClick, children: searchIconElement || /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5846
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScMobileTopNav_default.searchInput, children: /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
5896
+ showSearch && /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(import_jsx_runtime75.Fragment, { children: [
5897
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.searchRow, children: /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: ScMobileTopNav_default.searchInputContainer, children: [
5898
+ /* @__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 }) }),
5899
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.searchInput, children: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
5847
5900
  "input",
5848
5901
  {
5849
5902
  type: "text",
@@ -5854,17 +5907,17 @@ var ScMobileTopNav = ({
5854
5907
  }
5855
5908
  ) })
5856
5909
  ] }) }),
5857
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onCloseClick, children: closeIcon || /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
5910
+ /* @__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 }) })
5858
5911
  ] }),
5859
- type === "inApp" && !search && /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(import_jsx_runtime74.Fragment, { children: [
5860
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
5861
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("p", { className: ScMobileTopNav_default.heading, children: heading }),
5862
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
5912
+ type === "inApp" && !search && /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(import_jsx_runtime75.Fragment, { children: [
5913
+ /* @__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 }) }),
5914
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("p", { className: ScMobileTopNav_default.heading, children: heading }),
5915
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
5863
5916
  "div",
5864
5917
  {
5865
5918
  className: ScMobileTopNav_default.iconContainer + " " + (!searchIcon ? ScMobileTopNav_default.hidden : ""),
5866
5919
  onClick: onSearchClick,
5867
- children: searchIcon ? searchIconElement || /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) : /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder })
5920
+ 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 })
5868
5921
  }
5869
5922
  )
5870
5923
  ] })
@@ -5885,7 +5938,7 @@ var ScMobileBottomAction_default = {
5885
5938
  };
5886
5939
 
5887
5940
  // src/SC-MobileBottomAction/ScMobileBottomAction.tsx
5888
- var import_jsx_runtime75 = require("react/jsx-runtime");
5941
+ var import_jsx_runtime76 = require("react/jsx-runtime");
5889
5942
  var ScMobileBottomAction = ({
5890
5943
  text = "Save Changes",
5891
5944
  disabled = false,
@@ -5897,28 +5950,28 @@ var ScMobileBottomAction = ({
5897
5950
  ...props
5898
5951
  }) => {
5899
5952
  const isTwoButton = !!secondaryText;
5900
- return /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(
5953
+ return /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(
5901
5954
  "div",
5902
5955
  {
5903
5956
  className: ScMobileBottomAction_default.scMobileBottomAction + (isTwoButton ? " " + ScMobileBottomAction_default.twoButton : "") + " " + className,
5904
5957
  ...props,
5905
5958
  children: [
5906
- isTwoButton && /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
5959
+ isTwoButton && /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
5907
5960
  "button",
5908
5961
  {
5909
5962
  className: ScMobileBottomAction_default.outlineButton + " " + (secondaryDisabled ? ScMobileBottomAction_default.disabled : ""),
5910
5963
  onClick: onSecondaryClick,
5911
5964
  disabled: secondaryDisabled,
5912
- children: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { className: ScMobileBottomAction_default.outlineButtonText, children: secondaryText })
5965
+ children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("span", { className: ScMobileBottomAction_default.outlineButtonText, children: secondaryText })
5913
5966
  }
5914
5967
  ),
5915
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
5968
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
5916
5969
  "button",
5917
5970
  {
5918
5971
  className: ScMobileBottomAction_default.button + " " + (disabled ? ScMobileBottomAction_default.disabled : ""),
5919
5972
  onClick,
5920
5973
  disabled,
5921
- children: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("span", { className: ScMobileBottomAction_default.buttonText, children: text })
5974
+ children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("span", { className: ScMobileBottomAction_default.buttonText, children: text })
5922
5975
  }
5923
5976
  )
5924
5977
  ]
@@ -5936,7 +5989,7 @@ var ScPopUpMenu_default = {
5936
5989
  };
5937
5990
 
5938
5991
  // src/SC-PopUpMenu/ScPopUpMenu.tsx
5939
- var import_jsx_runtime76 = require("react/jsx-runtime");
5992
+ var import_jsx_runtime77 = require("react/jsx-runtime");
5940
5993
  var ScPopUpMenu = ({
5941
5994
  menu = "Options",
5942
5995
  state = "default",
@@ -5945,15 +5998,15 @@ var ScPopUpMenu = ({
5945
5998
  className,
5946
5999
  ...props
5947
6000
  }) => {
5948
- return /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(
6001
+ return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
5949
6002
  "div",
5950
6003
  {
5951
6004
  className: ScPopUpMenu_default.scPopUpMenu + " " + ScPopUpMenu_default["state-" + state] + " " + className,
5952
6005
  onClick,
5953
6006
  ...props,
5954
6007
  children: [
5955
- icon && /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("span", { className: ScPopUpMenu_default.icon, children: icon }),
5956
- /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("p", { className: ScPopUpMenu_default.menuText, children: menu })
6008
+ icon && /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("span", { className: ScPopUpMenu_default.icon, children: icon }),
6009
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("p", { className: ScPopUpMenu_default.menuText, children: menu })
5957
6010
  ]
5958
6011
  }
5959
6012
  );
@@ -5979,7 +6032,7 @@ var ScReferralCardMobile_default = {
5979
6032
  };
5980
6033
 
5981
6034
  // src/SC-referralCard-Mobile/ScReferralCardMobile.tsx
5982
- var import_jsx_runtime77 = require("react/jsx-runtime");
6035
+ var import_jsx_runtime78 = require("react/jsx-runtime");
5983
6036
  var ScReferralCardMobile = ({
5984
6037
  name = "Chris Hemsworth",
5985
6038
  email = "chris@kepler.com",
@@ -5992,27 +6045,27 @@ var ScReferralCardMobile = ({
5992
6045
  ...props
5993
6046
  }) => {
5994
6047
  const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
5995
- return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
6048
+ return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
5996
6049
  "div",
5997
6050
  {
5998
6051
  className: ScReferralCardMobile_default.scReferralCardMobile + " " + className,
5999
6052
  onClick,
6000
6053
  ...props,
6001
6054
  children: [
6002
- /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)("div", { className: ScReferralCardMobile_default.userRow, children: [
6003
- /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)("div", { className: ScReferralCardMobile_default.profileSection, children: [
6004
- /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("div", { className: ScReferralCardMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("img", { src: imageUrl, alt: name, className: ScReferralCardMobile_default.image }) : /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("div", { className: ScReferralCardMobile_default.initials, children: initials }) }),
6005
- /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)("div", { className: ScReferralCardMobile_default.userInfo, children: [
6006
- /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("p", { className: ScReferralCardMobile_default.userName, children: name }),
6007
- /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("p", { className: ScReferralCardMobile_default.userEmail, children: email })
6055
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: ScReferralCardMobile_default.userRow, children: [
6056
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: ScReferralCardMobile_default.profileSection, children: [
6057
+ /* @__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 }) }),
6058
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: ScReferralCardMobile_default.userInfo, children: [
6059
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("p", { className: ScReferralCardMobile_default.userName, children: name }),
6060
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("p", { className: ScReferralCardMobile_default.userEmail, children: email })
6008
6061
  ] })
6009
6062
  ] }),
6010
- /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("div", { className: ScReferralCardMobile_default.badge, children: /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("p", { className: ScReferralCardMobile_default.badgeText, children: badge }) })
6063
+ /* @__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 }) })
6011
6064
  ] }),
6012
- /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("div", { className: ScReferralCardMobile_default.divider }),
6013
- /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)("div", { className: ScReferralCardMobile_default.detailsRow, children: [
6014
- /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("p", { className: ScReferralCardMobile_default.dateText, children: date }),
6015
- /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("p", { className: ScReferralCardMobile_default.creditsText, children: credits })
6065
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScReferralCardMobile_default.divider }),
6066
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: ScReferralCardMobile_default.detailsRow, children: [
6067
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("p", { className: ScReferralCardMobile_default.dateText, children: date }),
6068
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("p", { className: ScReferralCardMobile_default.creditsText, children: credits })
6016
6069
  ] })
6017
6070
  ]
6018
6071
  }
@@ -6029,19 +6082,19 @@ var InvoiceHistoryMobile_default = {
6029
6082
  };
6030
6083
 
6031
6084
  // src/SC-InvoiceHistoryMobile/InvoiceHistoryMobile.tsx
6032
- var import_jsx_runtime78 = require("react/jsx-runtime");
6085
+ var import_jsx_runtime79 = require("react/jsx-runtime");
6033
6086
  var InvoiceHistoryMobile = ({
6034
6087
  invoiceId = "# INV-2800-2026",
6035
6088
  date = "Nov 9th, 2025",
6036
6089
  amount = "$320.89",
6037
6090
  className
6038
6091
  }) => {
6039
- return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: InvoiceHistoryMobile_default.invoiceHistoryMobile + " " + (className ?? ""), children: [
6040
- /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: InvoiceHistoryMobile_default.info, children: [
6041
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: InvoiceHistoryMobile_default.invoiceId, children: invoiceId }),
6042
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: InvoiceHistoryMobile_default.date, children: date })
6092
+ return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: InvoiceHistoryMobile_default.invoiceHistoryMobile + " " + (className ?? ""), children: [
6093
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: InvoiceHistoryMobile_default.info, children: [
6094
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: InvoiceHistoryMobile_default.invoiceId, children: invoiceId }),
6095
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: InvoiceHistoryMobile_default.date, children: date })
6043
6096
  ] }),
6044
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: InvoiceHistoryMobile_default.amount, children: amount })
6097
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: InvoiceHistoryMobile_default.amount, children: amount })
6045
6098
  ] });
6046
6099
  };
6047
6100
 
@@ -6059,7 +6112,7 @@ var UsageHistoryMobile_default = {
6059
6112
  };
6060
6113
 
6061
6114
  // src/SC-UsageHistoryMobile/UsageHistoryMobile.tsx
6062
- var import_jsx_runtime79 = require("react/jsx-runtime");
6115
+ var import_jsx_runtime80 = require("react/jsx-runtime");
6063
6116
  var UsageHistoryMobile = ({
6064
6117
  serviceName = "Artifax Generation",
6065
6118
  credits = "50",
@@ -6068,18 +6121,18 @@ var UsageHistoryMobile = ({
6068
6121
  balance = "84,902",
6069
6122
  className
6070
6123
  }) => {
6071
- return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: UsageHistoryMobile_default.usageHistoryMobile + " " + (className ?? ""), children: [
6072
- /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: UsageHistoryMobile_default.row1, children: [
6073
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("span", { className: UsageHistoryMobile_default.serviceName, children: serviceName }),
6074
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("span", { className: UsageHistoryMobile_default.credits, children: credits })
6124
+ return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: UsageHistoryMobile_default.usageHistoryMobile + " " + (className ?? ""), children: [
6125
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: UsageHistoryMobile_default.row1, children: [
6126
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: UsageHistoryMobile_default.serviceName, children: serviceName }),
6127
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: UsageHistoryMobile_default.credits, children: credits })
6075
6128
  ] }),
6076
- /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: UsageHistoryMobile_default.row2, children: [
6077
- /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: UsageHistoryMobile_default.metaLeft, children: [
6078
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("span", { className: UsageHistoryMobile_default.metaText, children: userName }),
6079
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: UsageHistoryMobile_default.divider }),
6080
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("span", { className: UsageHistoryMobile_default.metaText, children: date })
6129
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: UsageHistoryMobile_default.row2, children: [
6130
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: UsageHistoryMobile_default.metaLeft, children: [
6131
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: UsageHistoryMobile_default.metaText, children: userName }),
6132
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("div", { className: UsageHistoryMobile_default.divider }),
6133
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: UsageHistoryMobile_default.metaText, children: date })
6081
6134
  ] }),
6082
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("span", { className: UsageHistoryMobile_default.balance, children: balance })
6135
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: UsageHistoryMobile_default.balance, children: balance })
6083
6136
  ] })
6084
6137
  ] });
6085
6138
  };
@@ -6103,7 +6156,7 @@ var ScWorkspaceSwitchMobileV2_default = {
6103
6156
  };
6104
6157
 
6105
6158
  // src/SC-WorkspaceSwitchMobile-V2/ScWorkspaceSwitchMobileV2.tsx
6106
- var import_jsx_runtime80 = require("react/jsx-runtime");
6159
+ var import_jsx_runtime81 = require("react/jsx-runtime");
6107
6160
  var ScWorkspaceSwitchMobileV2 = ({
6108
6161
  wsName = "Workspace name is kepler",
6109
6162
  initials = "WS",
@@ -6116,14 +6169,14 @@ var ScWorkspaceSwitchMobileV2 = ({
6116
6169
  className,
6117
6170
  ...props
6118
6171
  }) => {
6119
- return /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
6172
+ return /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
6120
6173
  "div",
6121
6174
  {
6122
6175
  className: ScWorkspaceSwitchMobileV2_default.scWorkspaceSwitchMobileV2 + " " + ScWorkspaceSwitchMobileV2_default["type-" + type] + " " + className,
6123
6176
  onClick,
6124
6177
  ...props,
6125
- children: /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.workspaceInfo, children: [
6126
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dpContainer, children: /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
6178
+ children: /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.workspaceInfo, children: [
6179
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dpContainer, children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
6127
6180
  ScDp,
6128
6181
  {
6129
6182
  type: imageUrl ? "image" : "initial",
@@ -6137,14 +6190,14 @@ var ScWorkspaceSwitchMobileV2 = ({
6137
6190
  }
6138
6191
  }
6139
6192
  ) }),
6140
- /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.textContainer, children: [
6141
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("p", { className: ScWorkspaceSwitchMobileV2_default.wsName, children: wsName }),
6142
- /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.userDetails, children: [
6143
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.roleText + (role === "Member" ? " " + ScWorkspaceSwitchMobileV2_default.roleMember : ""), children: role }),
6144
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
6145
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.planText, children: plan }),
6146
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
6147
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.ownerText, children: ownerId })
6193
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.textContainer, children: [
6194
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("p", { className: ScWorkspaceSwitchMobileV2_default.wsName, children: wsName }),
6195
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.userDetails, children: [
6196
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.roleText + (role === "Member" ? " " + ScWorkspaceSwitchMobileV2_default.roleMember : ""), children: role }),
6197
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
6198
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.planText, children: plan }),
6199
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
6200
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.ownerText, children: ownerId })
6148
6201
  ] })
6149
6202
  ] })
6150
6203
  ] })
@@ -6171,7 +6224,7 @@ var ScImageField_default = {
6171
6224
 
6172
6225
  // src/SC-imageField/ScImageField.tsx
6173
6226
  var import_icons59 = require("@streamoid/icons");
6174
- var import_jsx_runtime81 = require("react/jsx-runtime");
6227
+ var import_jsx_runtime82 = require("react/jsx-runtime");
6175
6228
  var ScImageField = ({
6176
6229
  label = "Label",
6177
6230
  imagePreview,
@@ -6194,8 +6247,8 @@ var ScImageField = ({
6194
6247
  }
6195
6248
  e.target.value = "";
6196
6249
  }
6197
- return /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)("div", { className: ScImageField_default.scImageField + " " + (className ?? ""), children: [
6198
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
6250
+ return /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)("div", { className: ScImageField_default.scImageField + " " + (className ?? ""), children: [
6251
+ /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
6199
6252
  "input",
6200
6253
  {
6201
6254
  ref: inputRef,
@@ -6205,9 +6258,9 @@ var ScImageField = ({
6205
6258
  onChange: handleChange
6206
6259
  }
6207
6260
  ),
6208
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: ScImageField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: ScImageField_default.label, children: label }) }),
6209
- hasImage ? /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)("div", { className: ScImageField_default.previewArea, children: [
6210
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
6261
+ /* @__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 }) }),
6262
+ hasImage ? /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)("div", { className: ScImageField_default.previewArea, children: [
6263
+ /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
6211
6264
  "img",
6212
6265
  {
6213
6266
  className: ScImageField_default.previewImage,
@@ -6215,8 +6268,8 @@ var ScImageField = ({
6215
6268
  alt: "preview"
6216
6269
  }
6217
6270
  ),
6218
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("span", { className: ScImageField_default.fileName, children: imageName || "image" }),
6219
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
6271
+ /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("span", { className: ScImageField_default.fileName, children: imageName || "image" }),
6272
+ /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
6220
6273
  import_icons59.SiconDelete,
6221
6274
  {
6222
6275
  className: ScImageField_default.removeIcon,
@@ -6227,9 +6280,9 @@ var ScImageField = ({
6227
6280
  }
6228
6281
  }
6229
6282
  )
6230
- ] }) : /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)("div", { className: ScImageField_default.uploadArea, onClick: handleClick, children: [
6231
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(import_icons59.SiconUpload, { className: ScImageField_default.uploadIcon, color: "var(--alias-text-and-icons-secondary, #dadada)" }),
6232
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("span", { className: ScImageField_default.uploadText, children: "Click to upload" })
6283
+ ] }) : /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)("div", { className: ScImageField_default.uploadArea, onClick: handleClick, children: [
6284
+ /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(import_icons59.SiconUpload, { className: ScImageField_default.uploadIcon, color: "var(--alias-text-and-icons-secondary, #dadada)" }),
6285
+ /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("span", { className: ScImageField_default.uploadText, children: "Click to upload" })
6233
6286
  ] })
6234
6287
  ] });
6235
6288
  };
@@ -6243,7 +6296,7 @@ var ScSettingsTabComp_default = {
6243
6296
  };
6244
6297
 
6245
6298
  // src/SC-settingsTabComp/ScSettingsTabComp.tsx
6246
- var import_jsx_runtime82 = require("react/jsx-runtime");
6299
+ var import_jsx_runtime83 = require("react/jsx-runtime");
6247
6300
  var ScSettingsTabComp = ({
6248
6301
  tabName = "Tab",
6249
6302
  active = false,
@@ -6251,12 +6304,12 @@ var ScSettingsTabComp = ({
6251
6304
  className
6252
6305
  }) => {
6253
6306
  const variantsClassName = ScSettingsTabComp_default["active-" + active];
6254
- return /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
6307
+ return /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
6255
6308
  "div",
6256
6309
  {
6257
6310
  className: ScSettingsTabComp_default.scSettingsTabComp + " " + variantsClassName + " " + (className ?? ""),
6258
6311
  onClick,
6259
- children: /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("span", { className: ScSettingsTabComp_default.tabText, children: tabName })
6312
+ children: /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("span", { className: ScSettingsTabComp_default.tabText, children: tabName })
6260
6313
  }
6261
6314
  );
6262
6315
  };
@@ -6276,7 +6329,7 @@ var ScCreditsUsageCardMobile_default = {
6276
6329
 
6277
6330
  // src/SC-Credits usage card-Mobile/ScCreditsUsageCardMobile.tsx
6278
6331
  var import_icons60 = require("@streamoid/icons");
6279
- var import_jsx_runtime83 = require("react/jsx-runtime");
6332
+ var import_jsx_runtime84 = require("react/jsx-runtime");
6280
6333
  var ScCreditsUsageCardMobile = ({
6281
6334
  usageLabel = "Credits usage",
6282
6335
  usageText = "8,450 / 30,000",
@@ -6286,23 +6339,23 @@ var ScCreditsUsageCardMobile = ({
6286
6339
  className,
6287
6340
  ...props
6288
6341
  }) => {
6289
- return /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: ScCreditsUsageCardMobile_default.scCreditsUsageCardMobile + " " + (className ?? ""), ...props, children: [
6290
- /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: ScCreditsUsageCardMobile_default.header, children: [
6291
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
6342
+ return /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { className: ScCreditsUsageCardMobile_default.scCreditsUsageCardMobile + " " + (className ?? ""), ...props, children: [
6343
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { className: ScCreditsUsageCardMobile_default.header, children: [
6344
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
6292
6345
  import_icons60.SiconCredits,
6293
6346
  {
6294
6347
  className: ScCreditsUsageCardMobile_default.headerIcon,
6295
6348
  color: "var(--alias-text-and-icons-tertiary, #9e9e9e)"
6296
6349
  }
6297
6350
  ),
6298
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("span", { className: ScCreditsUsageCardMobile_default.headerLabel, children: usageLabel })
6351
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("span", { className: ScCreditsUsageCardMobile_default.headerLabel, children: usageLabel })
6299
6352
  ] }),
6300
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("div", { className: ScCreditsUsageCardMobile_default.divider }),
6301
- /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: ScCreditsUsageCardMobile_default.usageInfo, children: [
6302
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("div", { className: ScCreditsUsageCardMobile_default.usageText, children: usageText }),
6303
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("div", { className: ScCreditsUsageCardMobile_default.remainingText, children: remainingText })
6353
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("div", { className: ScCreditsUsageCardMobile_default.divider }),
6354
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { className: ScCreditsUsageCardMobile_default.usageInfo, children: [
6355
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("div", { className: ScCreditsUsageCardMobile_default.usageText, children: usageText }),
6356
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("div", { className: ScCreditsUsageCardMobile_default.remainingText, children: remainingText })
6304
6357
  ] }),
6305
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
6358
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
6306
6359
  ScButton,
6307
6360
  {
6308
6361
  text: buyButtonText,
@@ -6334,7 +6387,7 @@ var ScPlanDetailsCardMobile_default = {
6334
6387
 
6335
6388
  // src/SC-Plan details card-Mobile/ScPlanDetailsCardMobile.tsx
6336
6389
  var import_icons61 = require("@streamoid/icons");
6337
- var import_jsx_runtime84 = require("react/jsx-runtime");
6390
+ var import_jsx_runtime85 = require("react/jsx-runtime");
6338
6391
  var ScPlanDetailsCardMobile = ({
6339
6392
  planName = "Pro",
6340
6393
  planCredits = "30,000 credits",
@@ -6346,19 +6399,19 @@ var ScPlanDetailsCardMobile = ({
6346
6399
  className,
6347
6400
  ...props
6348
6401
  }) => {
6349
- return /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { className: ScPlanDetailsCardMobile_default.scPlanDetailsCardMobile + " " + (className ?? ""), ...props, children: [
6350
- /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planHeader, children: [
6351
- /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { className: ScPlanDetailsCardMobile_default.headerLeft, children: [
6352
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
6402
+ return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: ScPlanDetailsCardMobile_default.scPlanDetailsCardMobile + " " + (className ?? ""), ...props, children: [
6403
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planHeader, children: [
6404
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: ScPlanDetailsCardMobile_default.headerLeft, children: [
6405
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6353
6406
  import_icons61.SiconBilling,
6354
6407
  {
6355
6408
  className: ScPlanDetailsCardMobile_default.headerIcon,
6356
6409
  color: "var(--alias-text-and-icons-tertiary, #9e9e9e)"
6357
6410
  }
6358
6411
  ),
6359
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("span", { className: ScPlanDetailsCardMobile_default.headerLabel, children: currentPlanLabel })
6412
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { className: ScPlanDetailsCardMobile_default.headerLabel, children: currentPlanLabel })
6360
6413
  ] }),
6361
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
6414
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6362
6415
  ScBadges,
6363
6416
  {
6364
6417
  text: badgeText,
@@ -6368,16 +6421,16 @@ var ScPlanDetailsCardMobile = ({
6368
6421
  }
6369
6422
  )
6370
6423
  ] }),
6371
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("div", { className: ScPlanDetailsCardMobile_default.divider }),
6372
- /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planInfo, children: [
6373
- /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planNameRow, children: [
6374
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("span", { className: ScPlanDetailsCardMobile_default.planName, children: planName }),
6375
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("div", { className: ScPlanDetailsCardMobile_default.dot }),
6376
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("span", { className: ScPlanDetailsCardMobile_default.planName, children: planCredits })
6424
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScPlanDetailsCardMobile_default.divider }),
6425
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planInfo, children: [
6426
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planNameRow, children: [
6427
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { className: ScPlanDetailsCardMobile_default.planName, children: planName }),
6428
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScPlanDetailsCardMobile_default.dot }),
6429
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { className: ScPlanDetailsCardMobile_default.planName, children: planCredits })
6377
6430
  ] }),
6378
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("div", { className: ScPlanDetailsCardMobile_default.planPrice, children: planPrice })
6431
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScPlanDetailsCardMobile_default.planPrice, children: planPrice })
6379
6432
  ] }),
6380
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
6433
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6381
6434
  ScButton,
6382
6435
  {
6383
6436
  text: upgradeButtonText,