@streamoid/ui 0.1.7 → 0.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -1091,11 +1091,11 @@ var require_react_development = __commonJS({
1091
1091
  var dispatcher = resolveDispatcher();
1092
1092
  return dispatcher.useReducer(reducer, initialArg, init);
1093
1093
  }
1094
- function useRef(initialValue) {
1094
+ function useRef2(initialValue) {
1095
1095
  var dispatcher = resolveDispatcher();
1096
1096
  return dispatcher.useRef(initialValue);
1097
1097
  }
1098
- function useEffect(create, deps) {
1098
+ function useEffect2(create, deps) {
1099
1099
  var dispatcher = resolveDispatcher();
1100
1100
  return dispatcher.useEffect(create, deps);
1101
1101
  }
@@ -1878,14 +1878,14 @@ var require_react_development = __commonJS({
1878
1878
  exports.useContext = useContext;
1879
1879
  exports.useDebugValue = useDebugValue;
1880
1880
  exports.useDeferredValue = useDeferredValue;
1881
- exports.useEffect = useEffect;
1881
+ exports.useEffect = useEffect2;
1882
1882
  exports.useId = useId;
1883
1883
  exports.useImperativeHandle = useImperativeHandle;
1884
1884
  exports.useInsertionEffect = useInsertionEffect;
1885
1885
  exports.useLayoutEffect = useLayoutEffect;
1886
1886
  exports.useMemo = useMemo;
1887
1887
  exports.useReducer = useReducer;
1888
- exports.useRef = useRef;
1888
+ exports.useRef = useRef2;
1889
1889
  exports.useState = useState;
1890
1890
  exports.useSyncExternalStore = useSyncExternalStore;
1891
1891
  exports.useTransition = useTransition;
@@ -2793,11 +2793,11 @@ var require_react_jsx_runtime_development = __commonJS({
2793
2793
  return jsxWithValidation(type, props, key, false);
2794
2794
  }
2795
2795
  }
2796
- var jsx106 = jsxWithValidationDynamic;
2797
- var jsxs58 = jsxWithValidationStatic;
2796
+ var jsx107 = jsxWithValidationDynamic;
2797
+ var jsxs59 = jsxWithValidationStatic;
2798
2798
  exports.Fragment = REACT_FRAGMENT_TYPE;
2799
- exports.jsx = jsx106;
2800
- exports.jsxs = jsxs58;
2799
+ exports.jsx = jsx107;
2800
+ exports.jsxs = jsxs59;
2801
2801
  })();
2802
2802
  }
2803
2803
  }
@@ -3033,6 +3033,22 @@ var SiconCatalogix = ({ color = "currentColor", strokeWidth = 1.25, size = 24, .
3033
3033
  );
3034
3034
  };
3035
3035
  var sicon_catalogix_default = SiconCatalogix;
3036
+ var SiconClose = ({ color = "currentColor", strokeWidth = 1.25, size = 24, ...props }) => {
3037
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
3038
+ "svg",
3039
+ {
3040
+ ...props,
3041
+ width: size,
3042
+ height: size,
3043
+ strokeWidth,
3044
+ viewBox: "0 0 24 24",
3045
+ fill: "none",
3046
+ xmlns: "http://www.w3.org/2000/svg",
3047
+ children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { d: "M6.75824 17.2426L12.0009 12M12.0009 12L17.2435 6.75735M12.0009 12L6.75824 6.75735M12.0009 12L17.2435 17.2426", stroke: color, strokeWidth, strokeLinecap: "round", strokeLinejoin: "round" })
3048
+ }
3049
+ );
3050
+ };
3051
+ var sicon_close_default = SiconClose;
3036
3052
  var SiconCollapse = ({ color = "currentColor", strokeWidth = 1.25, size = 24, ...props }) => {
3037
3053
  return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
3038
3054
  "svg",
@@ -5773,7 +5789,7 @@ var ScSidebar = ({
5773
5789
  );
5774
5790
  };
5775
5791
 
5776
- // src/SC-sidebarnew/streamoid-sidebar.tsx
5792
+ // src/SC-Sidebar-new/streamoid-sidebar.tsx
5777
5793
  var import_jsx_runtime85 = __toESM(require_jsx_runtime());
5778
5794
  function SectionHeader({ label }) {
5779
5795
  return /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: "opacity-50 shrink-0 w-full", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
@@ -6212,6 +6228,323 @@ var ScSlider = ({
6212
6228
  ] });
6213
6229
  };
6214
6230
 
6231
+ // src/SC-WorkspaceSwitcher/streamoid-workspace-switcher.tsx
6232
+ var import_react = __toESM(require_react());
6233
+ var import_jsx_runtime87 = __toESM(require_jsx_runtime());
6234
+ var PRIMARY_ICON = "var(--alias-text---icons-primary)";
6235
+ function deriveInitials(name) {
6236
+ return name.split(/\s+/).slice(0, 2).map((w) => w[0]?.toUpperCase() ?? "").join("") || "WS";
6237
+ }
6238
+ function normalizeRole(role) {
6239
+ return role === "admin" ? "admin" : "member";
6240
+ }
6241
+ function roleLabel(role) {
6242
+ const normalized = normalizeRole(role);
6243
+ return normalized === "admin" ? "Admin" : "Member";
6244
+ }
6245
+ function WorkspaceRow({
6246
+ workspace,
6247
+ currentWorkspaceText,
6248
+ switchWorkspaceText,
6249
+ onSwitch
6250
+ }) {
6251
+ return /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
6252
+ "div",
6253
+ {
6254
+ className: "relative shrink-0 w-full",
6255
+ style: {
6256
+ backgroundColor: "var(--alias-surface-base)",
6257
+ borderRadius: "var(--radius-3xl)",
6258
+ backdropFilter: "blur(4px)"
6259
+ },
6260
+ children: [
6261
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
6262
+ "div",
6263
+ {
6264
+ "aria-hidden": "true",
6265
+ className: "absolute inset-0 pointer-events-none",
6266
+ style: {
6267
+ border: "1px solid var(--alias-border-subtle)",
6268
+ borderRadius: "var(--radius-3xl)"
6269
+ }
6270
+ }
6271
+ ),
6272
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
6273
+ "div",
6274
+ {
6275
+ className: "flex items-center w-full",
6276
+ style: {
6277
+ gap: "var(--spacing-3xl)",
6278
+ padding: "var(--spacing-6xl)"
6279
+ },
6280
+ children: [
6281
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
6282
+ "div",
6283
+ {
6284
+ className: "flex flex-1 items-center min-w-0",
6285
+ style: { gap: "var(--spacing-xl)" },
6286
+ children: [
6287
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
6288
+ ScIntialProfileCover,
6289
+ {
6290
+ intial: workspace.initials || deriveInitials(workspace.name),
6291
+ className: "shrink-0"
6292
+ }
6293
+ ),
6294
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
6295
+ "p",
6296
+ {
6297
+ className: "flex-1 min-w-0 overflow-hidden text-ellipsis",
6298
+ style: {
6299
+ color: "var(--alias-text---icons-primary)",
6300
+ fontFamily: "var(--font-family-font-family-body)",
6301
+ fontSize: "var(--font-size-font-size-md)",
6302
+ fontWeight: 500,
6303
+ lineHeight: "var(--line-height-line-height-md)",
6304
+ display: "-webkit-box",
6305
+ WebkitLineClamp: 2,
6306
+ WebkitBoxOrient: "vertical"
6307
+ },
6308
+ children: workspace.name
6309
+ }
6310
+ )
6311
+ ]
6312
+ }
6313
+ ),
6314
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
6315
+ "div",
6316
+ {
6317
+ className: "flex items-center justify-center shrink-0",
6318
+ style: {
6319
+ gap: "var(--spacing-6xl)",
6320
+ padding: "0 var(--spacing-3xl)"
6321
+ },
6322
+ children: [
6323
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
6324
+ ScRole,
6325
+ {
6326
+ type: normalizeRole(workspace.role),
6327
+ label: roleLabel(workspace.role),
6328
+ style: { width: 80 }
6329
+ }
6330
+ ),
6331
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("div", { className: "flex flex-row items-center self-stretch", children: /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
6332
+ "div",
6333
+ {
6334
+ className: "flex items-center shrink-0",
6335
+ style: { gap: "var(--spacing-3xl)" },
6336
+ children: [
6337
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("div", { style: { width: 120, flexShrink: 0 }, children: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
6338
+ ScPairtext,
6339
+ {
6340
+ icon: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(sicon_team_default, { className: "w-6 h-6", color: PRIMARY_ICON }),
6341
+ content: workspace.userCount || "\u2013",
6342
+ iconPosition: "left",
6343
+ type: "icon"
6344
+ }
6345
+ ) }),
6346
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(ScVDivider, {}),
6347
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
6348
+ "div",
6349
+ {
6350
+ className: "flex items-center",
6351
+ style: {
6352
+ width: 200,
6353
+ flexShrink: 0,
6354
+ gap: "var(--spacing-md)"
6355
+ },
6356
+ children: [
6357
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
6358
+ sicon_Crown_default,
6359
+ {
6360
+ className: "w-6 h-6 shrink-0",
6361
+ color: PRIMARY_ICON
6362
+ }
6363
+ ),
6364
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
6365
+ "span",
6366
+ {
6367
+ className: "truncate",
6368
+ style: {
6369
+ color: "var(--alias-text---icons-primary)",
6370
+ fontFamily: "var(--font-family-font-family-body)",
6371
+ fontSize: "var(--font-size-font-size-sm)",
6372
+ lineHeight: "var(--line-height-line-height-sm)"
6373
+ },
6374
+ children: workspace.ownerEmail || "\u2013"
6375
+ }
6376
+ )
6377
+ ]
6378
+ }
6379
+ )
6380
+ ]
6381
+ }
6382
+ ) })
6383
+ ]
6384
+ }
6385
+ ),
6386
+ workspace.isCurrent ? /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
6387
+ ScButton,
6388
+ {
6389
+ text: currentWorkspaceText,
6390
+ variant: "outline",
6391
+ state: "disabled",
6392
+ size: "lg",
6393
+ style: { width: 200, flexShrink: 0, opacity: 0.5 }
6394
+ }
6395
+ ) : /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
6396
+ ScButton,
6397
+ {
6398
+ text: switchWorkspaceText,
6399
+ variant: "secondary",
6400
+ size: "lg",
6401
+ styleVariant: "icon-left",
6402
+ icon: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(sicon_switch_default, { className: "w-5 h-5", color: PRIMARY_ICON }),
6403
+ style: { width: 200, flexShrink: 0 },
6404
+ onClick: onSwitch
6405
+ }
6406
+ )
6407
+ ]
6408
+ }
6409
+ ) })
6410
+ ]
6411
+ }
6412
+ );
6413
+ }
6414
+ function StreamoidWorkspaceSwitcher({
6415
+ open,
6416
+ onClose,
6417
+ workspaces,
6418
+ loading = false,
6419
+ onSwitchWorkspace,
6420
+ config
6421
+ }) {
6422
+ const modalRef = (0, import_react.useRef)(null);
6423
+ const title = config?.title || "Switch workspace";
6424
+ const loadingText = config?.loadingText || "Loading workspaces\u2026";
6425
+ const currentWorkspaceText = config?.currentWorkspaceText || "Current workspace";
6426
+ const switchWorkspaceText = config?.switchWorkspaceText || "Switch workspace";
6427
+ (0, import_react.useEffect)(() => {
6428
+ if (!open) return;
6429
+ function handleKeyDown(e) {
6430
+ if (e.key === "Escape") onClose();
6431
+ }
6432
+ document.addEventListener("keydown", handleKeyDown);
6433
+ return () => document.removeEventListener("keydown", handleKeyDown);
6434
+ }, [open, onClose]);
6435
+ if (!open) return null;
6436
+ return /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
6437
+ "div",
6438
+ {
6439
+ className: "fixed inset-0 z-50 flex items-center justify-center",
6440
+ style: { backgroundColor: "rgba(0, 0, 0, 0.6)" },
6441
+ onClick: (e) => {
6442
+ if (e.target === e.currentTarget) onClose();
6443
+ },
6444
+ children: /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
6445
+ "div",
6446
+ {
6447
+ ref: modalRef,
6448
+ className: "flex flex-col items-start relative",
6449
+ style: {
6450
+ backgroundColor: "var(--alias-surface-subtle)",
6451
+ borderRadius: "var(--radius-4xl)",
6452
+ border: "1px solid var(--alias-border-subtle)",
6453
+ width: "min(1000px, 90vw)",
6454
+ height: "60vh"
6455
+ },
6456
+ children: [
6457
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
6458
+ "div",
6459
+ {
6460
+ className: "shrink-0 w-full relative",
6461
+ style: {
6462
+ borderBottom: "1px solid var(--alias-border-divider)"
6463
+ },
6464
+ children: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
6465
+ "div",
6466
+ {
6467
+ className: "flex items-center w-full",
6468
+ style: {
6469
+ gap: "var(--spacing-3xl)",
6470
+ padding: "var(--spacing-3xl) var(--spacing-6xl)"
6471
+ },
6472
+ children: [
6473
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
6474
+ "p",
6475
+ {
6476
+ className: "flex-1 min-w-0 overflow-hidden text-ellipsis whitespace-nowrap",
6477
+ style: {
6478
+ color: "var(--alias-text---icons-primary)",
6479
+ fontFamily: "var(--font-family-font-family-body)",
6480
+ fontSize: "var(--font-size-font-size-lg)",
6481
+ fontWeight: 600,
6482
+ lineHeight: "var(--line-height-line-height-lg)"
6483
+ },
6484
+ children: title
6485
+ }
6486
+ ),
6487
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("div", { className: "shrink-0 cursor-pointer", onClick: onClose, children: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(sicon_close_default, { className: "w-6 h-6", color: PRIMARY_ICON }) })
6488
+ ]
6489
+ }
6490
+ ) })
6491
+ }
6492
+ ),
6493
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
6494
+ "div",
6495
+ {
6496
+ className: "flex-1 min-h-0 w-full overflow-y-auto",
6497
+ style: {
6498
+ borderRadius: "0 0 var(--radius-4xl) var(--radius-4xl)"
6499
+ },
6500
+ children: /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
6501
+ "div",
6502
+ {
6503
+ className: "flex flex-col items-start",
6504
+ style: {
6505
+ padding: "var(--spacing-6xl)",
6506
+ gap: "var(--spacing-3xl)"
6507
+ },
6508
+ children: [
6509
+ loading && workspaces.length === 0 ? /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
6510
+ "p",
6511
+ {
6512
+ style: {
6513
+ fontFamily: "var(--font-family-font-family-body)",
6514
+ fontSize: "var(--font-size-font-size-sm)",
6515
+ color: "var(--alias-text---icons-muted)"
6516
+ },
6517
+ children: loadingText
6518
+ }
6519
+ ) : null,
6520
+ workspaces.map((ws) => /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
6521
+ WorkspaceRow,
6522
+ {
6523
+ workspace: ws,
6524
+ currentWorkspaceText,
6525
+ switchWorkspaceText,
6526
+ onSwitch: () => {
6527
+ if (ws.isCurrent) {
6528
+ onClose();
6529
+ return;
6530
+ }
6531
+ void onSwitchWorkspace(ws);
6532
+ }
6533
+ },
6534
+ ws.id
6535
+ ))
6536
+ ]
6537
+ }
6538
+ )
6539
+ }
6540
+ )
6541
+ ]
6542
+ }
6543
+ )
6544
+ }
6545
+ );
6546
+ }
6547
+
6215
6548
  // src/SC-app listing card/ScAppListingCard.module.css
6216
6549
  var ScAppListingCard_default = {
6217
6550
  scAppListingCard: "ScAppListingCard_scAppListingCard",
@@ -6222,23 +6555,23 @@ var ScAppListingCard_default = {
6222
6555
  };
6223
6556
 
6224
6557
  // src/SC-app listing card/ScAppListingCard.tsx
6225
- var import_jsx_runtime87 = __toESM(require_jsx_runtime());
6558
+ var import_jsx_runtime88 = __toESM(require_jsx_runtime());
6226
6559
  var ScAppListingCard = ({
6227
- icon = /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(sicon_Cart_default, { className: ScAppListingCard_default.siconCartInstance }),
6560
+ icon = /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(sicon_Cart_default, { className: ScAppListingCard_default.siconCartInstance }),
6228
6561
  title = "Stores",
6229
6562
  descrp = "Centralized product and asset management for every storefront",
6230
6563
  className,
6231
6564
  ...props
6232
6565
  }) => {
6233
- return /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("div", { className: ScAppListingCard_default.scAppListingCard + " " + className, ...props, children: [
6234
- /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("div", { className: ScAppListingCard_default.header, children: [
6235
- /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("div", { className: ScAppListingCard_default.iconContainer, children: icon }),
6236
- /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("div", { className: ScAppListingCard_default.title, children: [
6566
+ return /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScAppListingCard_default.scAppListingCard + " " + className, ...props, children: [
6567
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScAppListingCard_default.header, children: [
6568
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("div", { className: ScAppListingCard_default.iconContainer, children: icon }),
6569
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScAppListingCard_default.title, children: [
6237
6570
  title,
6238
6571
  " "
6239
6572
  ] })
6240
6573
  ] }),
6241
- /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("div", { className: ScAppListingCard_default.description, children: [
6574
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScAppListingCard_default.description, children: [
6242
6575
  descrp,
6243
6576
  " "
6244
6577
  ] })
@@ -6255,22 +6588,22 @@ var ScAppCard_default = {
6255
6588
  };
6256
6589
 
6257
6590
  // src/SC-appCard/ScAppCard.tsx
6258
- var import_jsx_runtime88 = __toESM(require_jsx_runtime());
6591
+ var import_jsx_runtime89 = __toESM(require_jsx_runtime());
6259
6592
  var ScAppCard = ({
6260
- appIcon = /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(sicon_artifacts_default, { className: ScAppCard_default.siconArtifactsInstance }),
6593
+ appIcon = /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(sicon_artifacts_default, { className: ScAppCard_default.siconArtifactsInstance }),
6261
6594
  appName = "Artifax",
6262
6595
  appDescription = "Info about artifax",
6263
6596
  className,
6264
6597
  ...props
6265
6598
  }) => {
6266
- return /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScAppCard_default.scAppCard + " " + className, ...props, children: [
6267
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("div", { className: ScAppCard_default.iconContainer, children: appIcon }),
6268
- /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScAppCard_default.textContainer, children: [
6269
- /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScAppCard_default.title, children: [
6599
+ return /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)("div", { className: ScAppCard_default.scAppCard + " " + className, ...props, children: [
6600
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("div", { className: ScAppCard_default.iconContainer, children: appIcon }),
6601
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)("div", { className: ScAppCard_default.textContainer, children: [
6602
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)("div", { className: ScAppCard_default.title, children: [
6270
6603
  appName,
6271
6604
  " "
6272
6605
  ] }),
6273
- /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScAppCard_default.subtitle, children: [
6606
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)("div", { className: ScAppCard_default.subtitle, children: [
6274
6607
  appDescription,
6275
6608
  " "
6276
6609
  ] })
@@ -6306,19 +6639,19 @@ var ScToggleSwitch_default = {
6306
6639
  };
6307
6640
 
6308
6641
  // src/SC-toggleSwitch/ScToggleSwitch.tsx
6309
- var import_jsx_runtime89 = __toESM(require_jsx_runtime());
6642
+ var import_jsx_runtime90 = __toESM(require_jsx_runtime());
6310
6643
  var ScToggleSwitch = ({
6311
6644
  active = "false",
6312
6645
  className,
6313
6646
  ...props
6314
6647
  }) => {
6315
6648
  const variantsClassName = ScToggleSwitch_default["active-" + active];
6316
- return /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
6649
+ return /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
6317
6650
  "div",
6318
6651
  {
6319
6652
  className: ScToggleSwitch_default.scToggleSwitch + " " + className + " " + variantsClassName,
6320
6653
  ...props,
6321
- children: /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(
6654
+ children: /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)(
6322
6655
  "svg",
6323
6656
  {
6324
6657
  width: "41",
@@ -6327,21 +6660,21 @@ var ScToggleSwitch = ({
6327
6660
  fill: "none",
6328
6661
  xmlns: "http://www.w3.org/2000/svg",
6329
6662
  children: [
6330
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
6663
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
6331
6664
  "path",
6332
6665
  {
6333
6666
  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",
6334
6667
  fill: "var(--alias-fill-neutral-neutral, #1a1a1a)"
6335
6668
  }
6336
6669
  ),
6337
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
6670
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
6338
6671
  "path",
6339
6672
  {
6340
6673
  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",
6341
6674
  fill: "var(--alias-border-divider, #242424)"
6342
6675
  }
6343
6676
  ),
6344
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
6677
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
6345
6678
  "path",
6346
6679
  {
6347
6680
  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",
@@ -6356,7 +6689,7 @@ var ScToggleSwitch = ({
6356
6689
  };
6357
6690
 
6358
6691
  // src/SC-artifaxInvite/ScArtifaxInvite.tsx
6359
- var import_jsx_runtime90 = __toESM(require_jsx_runtime());
6692
+ var import_jsx_runtime91 = __toESM(require_jsx_runtime());
6360
6693
  var ScArtifaxInvite = ({
6361
6694
  active = "true",
6362
6695
  appName = "Artifax",
@@ -6366,22 +6699,22 @@ var ScArtifaxInvite = ({
6366
6699
  ...props
6367
6700
  }) => {
6368
6701
  const variantsClassName = ScArtifaxInvite_default["active-" + active];
6369
- return /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)(
6702
+ return /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)(
6370
6703
  "div",
6371
6704
  {
6372
6705
  className: ScArtifaxInvite_default.scArtifaxInvite + " " + className + " " + variantsClassName,
6373
6706
  ...props,
6374
6707
  children: [
6375
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
6708
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
6376
6709
  ScAppCard,
6377
6710
  {
6378
- appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(sicon_artifacts_default, { className: ScArtifaxInvite_default.siconArtifactsInstance }),
6711
+ appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(sicon_artifacts_default, { className: ScArtifaxInvite_default.siconArtifactsInstance }),
6379
6712
  appName,
6380
6713
  appDescription,
6381
6714
  className: ScArtifaxInvite_default.scAppCardInstance
6382
6715
  }
6383
6716
  ),
6384
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
6717
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
6385
6718
  ScToggleSwitch,
6386
6719
  {
6387
6720
  active: "false",
@@ -6402,22 +6735,22 @@ var ScPhtogenixInvite_default = {
6402
6735
  };
6403
6736
 
6404
6737
  // src/SC-phtogenixInvite/ScPhtogenixInvite.tsx
6405
- var import_jsx_runtime91 = __toESM(require_jsx_runtime());
6738
+ var import_jsx_runtime92 = __toESM(require_jsx_runtime());
6406
6739
  var ScPhtogenixInvite = ({
6407
6740
  active = "true",
6408
6741
  scAppCardappDescription = "Info about photogenix",
6409
6742
  scAppCardappName = "Photogenix",
6410
- scAppCardappIcon = /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(sicon_artifacts_default, { className: ScPhtogenixInvite_default.siconArtifactsInstance }),
6743
+ scAppCardappIcon = /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(sicon_artifacts_default, { className: ScPhtogenixInvite_default.siconArtifactsInstance }),
6411
6744
  className,
6412
6745
  ...props
6413
6746
  }) => {
6414
6747
  const variantsClassName = ScPhtogenixInvite_default["active-" + active];
6415
- return /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)(
6748
+ return /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(
6416
6749
  "div",
6417
6750
  {
6418
6751
  className: ScPhtogenixInvite_default.scPhtogenixInvite + " " + className + " " + variantsClassName,
6419
6752
  children: [
6420
- /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
6753
+ /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
6421
6754
  ScAppCard,
6422
6755
  {
6423
6756
  appIcon: scAppCardappIcon,
@@ -6426,7 +6759,7 @@ var ScPhtogenixInvite = ({
6426
6759
  className: ScPhtogenixInvite_default.scAppCardInstance
6427
6760
  }
6428
6761
  ),
6429
- /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
6762
+ /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
6430
6763
  ScToggleSwitch,
6431
6764
  {
6432
6765
  active: "false",
@@ -6467,10 +6800,10 @@ var ScOnlyField_default = {
6467
6800
  };
6468
6801
 
6469
6802
  // src/SC-onlyField/ScOnlyField.tsx
6470
- var import_jsx_runtime92 = __toESM(require_jsx_runtime());
6803
+ var import_jsx_runtime93 = __toESM(require_jsx_runtime());
6471
6804
  var ScOnlyField = ({
6472
- tfRightIcon = /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(sicon_bolt_default, { className: ScOnlyField_default.siconBoltInstance }),
6473
- tfLeftIcon = /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(sicon_bolt_default, { className: ScOnlyField_default.siconBoltInstance }),
6805
+ tfRightIcon = /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_bolt_default, { className: ScOnlyField_default.siconBoltInstance }),
6806
+ tfLeftIcon = /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_bolt_default, { className: ScOnlyField_default.siconBoltInstance }),
6474
6807
  state = "default",
6475
6808
  tfGroup = "icon-right",
6476
6809
  labelGroup = "none",
@@ -6479,25 +6812,25 @@ var ScOnlyField = ({
6479
6812
  ...props
6480
6813
  }) => {
6481
6814
  const variantsClassName = ScOnlyField_default["state-" + state] + " " + ScOnlyField_default["tf-group-" + tfGroup] + " " + ScOnlyField_default["label-group-" + labelGroup];
6482
- return /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
6815
+ return /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
6483
6816
  "div",
6484
6817
  {
6485
6818
  className: ScOnlyField_default.scOnlyField + " " + className + " " + variantsClassName,
6486
6819
  ...props,
6487
- children: /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)("div", { className: ScOnlyField_default.inputContainer, children: [
6488
- (tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(import_jsx_runtime92.Fragment, { children: tfLeftIcon }),
6489
- /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)("div", { className: ScOnlyField_default.inputText, children: [
6820
+ children: /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScOnlyField_default.inputContainer, children: [
6821
+ (tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(import_jsx_runtime93.Fragment, { children: tfLeftIcon }),
6822
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScOnlyField_default.inputText, children: [
6490
6823
  placeholderFilled,
6491
6824
  " "
6492
6825
  ] }),
6493
- (tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(import_jsx_runtime92.Fragment, { children: tfRightIcon })
6826
+ (tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(import_jsx_runtime93.Fragment, { children: tfRightIcon })
6494
6827
  ] })
6495
6828
  }
6496
6829
  );
6497
6830
  };
6498
6831
 
6499
6832
  // src/SC-catalogixInvite/ScCatalogixInvite.tsx
6500
- var import_jsx_runtime93 = __toESM(require_jsx_runtime());
6833
+ var import_jsx_runtime94 = __toESM(require_jsx_runtime());
6501
6834
  var ScCatalogixInvite = ({
6502
6835
  active = "false",
6503
6836
  appName = "Catalogix",
@@ -6510,23 +6843,23 @@ var ScCatalogixInvite = ({
6510
6843
  ...props
6511
6844
  }) => {
6512
6845
  const variantsClassName = ScCatalogixInvite_default["active-" + active];
6513
- return /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(
6846
+ return /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(
6514
6847
  "div",
6515
6848
  {
6516
6849
  className: ScCatalogixInvite_default.scCatalogixInvite + " " + className + " " + variantsClassName,
6517
6850
  ...props,
6518
6851
  children: [
6519
- /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScCatalogixInvite_default.appHeader, children: [
6520
- /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
6852
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScCatalogixInvite_default.appHeader, children: [
6853
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
6521
6854
  ScAppCard,
6522
6855
  {
6523
- appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_artifacts_default, { className: ScCatalogixInvite_default.siconArtifactsInstance }),
6856
+ appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(sicon_artifacts_default, { className: ScCatalogixInvite_default.siconArtifactsInstance }),
6524
6857
  appDescription,
6525
6858
  appName,
6526
6859
  className: ScCatalogixInvite_default.scAppCardInstance
6527
6860
  }
6528
6861
  ),
6529
- /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
6862
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
6530
6863
  ScToggleSwitch,
6531
6864
  {
6532
6865
  active: "false",
@@ -6534,67 +6867,67 @@ var ScCatalogixInvite = ({
6534
6867
  }
6535
6868
  )
6536
6869
  ] }),
6537
- active === "true" && /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(import_jsx_runtime93.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessContainer, children: [
6538
- /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessHeader, children: [
6539
- /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessTitle, children: [
6870
+ active === "true" && /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(import_jsx_runtime94.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessContainer, children: [
6871
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessHeader, children: [
6872
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessTitle, children: [
6540
6873
  storeAccessTitle,
6541
6874
  " "
6542
6875
  ] }),
6543
- /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScCatalogixInvite_default.selectedCount, children: [
6876
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScCatalogixInvite_default.selectedCount, children: [
6544
6877
  selectedCount,
6545
6878
  " "
6546
6879
  ] })
6547
6880
  ] }),
6548
- /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
6881
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
6549
6882
  ScOnlyField,
6550
6883
  {
6551
- tfLeftIcon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Search_default, { className: ScCatalogixInvite_default.siconSearchInstance }),
6552
- tfRightIcon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Search_default, { className: ScCatalogixInvite_default.siconSearchInstance }),
6884
+ tfLeftIcon: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(sicon_Search_default, { className: ScCatalogixInvite_default.siconSearchInstance }),
6885
+ tfRightIcon: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(sicon_Search_default, { className: ScCatalogixInvite_default.siconSearchInstance }),
6553
6886
  placeholderFilled: searchPlaceholder,
6554
6887
  className: ScCatalogixInvite_default.scOnlyFieldInstance
6555
6888
  }
6556
6889
  ),
6557
- /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScCatalogixInvite_default.storeListContainer, children: [
6558
- /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
6890
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScCatalogixInvite_default.storeListContainer, children: [
6891
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
6559
6892
  ScPairtext,
6560
6893
  {
6561
- icon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
6894
+ icon: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
6562
6895
  iconPosition: "right",
6563
6896
  type: "checkbox",
6564
6897
  className: ScCatalogixInvite_default.scPairtextInstance
6565
6898
  }
6566
6899
  ),
6567
- /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
6900
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
6568
6901
  ScPairtext,
6569
6902
  {
6570
- icon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
6903
+ icon: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
6571
6904
  iconPosition: "right",
6572
6905
  type: "checkbox",
6573
6906
  className: ScCatalogixInvite_default.scPairtextInstance
6574
6907
  }
6575
6908
  ),
6576
- /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
6909
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
6577
6910
  ScPairtext,
6578
6911
  {
6579
- icon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
6912
+ icon: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
6580
6913
  iconPosition: "right",
6581
6914
  type: "checkbox",
6582
6915
  className: ScCatalogixInvite_default.scPairtextInstance
6583
6916
  }
6584
6917
  ),
6585
- /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
6918
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
6586
6919
  ScPairtext,
6587
6920
  {
6588
- icon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
6921
+ icon: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
6589
6922
  iconPosition: "right",
6590
6923
  type: "checkbox",
6591
6924
  className: ScCatalogixInvite_default.scPairtextInstance
6592
6925
  }
6593
6926
  ),
6594
- /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
6927
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
6595
6928
  ScPairtext,
6596
6929
  {
6597
- icon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
6930
+ icon: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
6598
6931
  iconPosition: "right",
6599
6932
  type: "checkbox",
6600
6933
  className: ScCatalogixInvite_default.scPairtextInstance
@@ -6608,34 +6941,34 @@ var ScCatalogixInvite = ({
6608
6941
  };
6609
6942
 
6610
6943
  // src/SC-appField/ScAppField.tsx
6611
- var import_jsx_runtime94 = __toESM(require_jsx_runtime());
6944
+ var import_jsx_runtime95 = __toESM(require_jsx_runtime());
6612
6945
  var ScAppField = ({
6613
6946
  appFieldTitle = "App permission",
6614
6947
  className,
6615
6948
  ...props
6616
6949
  }) => {
6617
- return /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScAppField_default.scAppField + " " + className, ...props, children: [
6618
- /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("div", { className: ScAppField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScAppField_default.title, children: [
6950
+ return /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)("div", { className: ScAppField_default.scAppField + " " + className, ...props, children: [
6951
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("div", { className: ScAppField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)("div", { className: ScAppField_default.title, children: [
6619
6952
  appFieldTitle,
6620
6953
  " "
6621
6954
  ] }) }),
6622
- /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScAppField_default.inputContainer, children: [
6623
- /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
6955
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)("div", { className: ScAppField_default.inputContainer, children: [
6956
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
6624
6957
  ScArtifaxInvite,
6625
6958
  {
6626
6959
  className: ScAppField_default.scArtifaxInviteInstance
6627
6960
  }
6628
6961
  ),
6629
- /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
6962
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
6630
6963
  ScPhtogenixInvite,
6631
6964
  {
6632
6965
  scAppCardappDescription: "Info about photogenix",
6633
6966
  scAppCardappName: "Photogenix",
6634
- scAppCardappIcon: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(sicon_photogenix_default, { className: ScAppField_default.siconPhotogenixInstance }),
6967
+ scAppCardappIcon: /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(sicon_photogenix_default, { className: ScAppField_default.siconPhotogenixInstance }),
6635
6968
  className: ScAppField_default.scPhtogenixInviteInstance
6636
6969
  }
6637
6970
  ),
6638
- /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
6971
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
6639
6972
  ScCatalogixInvite,
6640
6973
  {
6641
6974
  active: "true",
@@ -6655,13 +6988,13 @@ var ScBillingHistoryHeader_default = {
6655
6988
  };
6656
6989
 
6657
6990
  // src/SC-billingHistoryHeader/ScBillingHistoryHeader.tsx
6658
- var import_jsx_runtime95 = __toESM(require_jsx_runtime());
6991
+ var import_jsx_runtime96 = __toESM(require_jsx_runtime());
6659
6992
  var ScBillingHistoryHeader = ({
6660
6993
  className,
6661
6994
  ...props
6662
6995
  }) => {
6663
- return /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
6664
- /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
6996
+ return /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
6997
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
6665
6998
  ScHeader,
6666
6999
  {
6667
7000
  text: "Invoice",
@@ -6669,7 +7002,7 @@ var ScBillingHistoryHeader = ({
6669
7002
  className: ScBillingHistoryHeader_default.scHeaderInstance
6670
7003
  }
6671
7004
  ),
6672
- /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
7005
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
6673
7006
  ScHeader,
6674
7007
  {
6675
7008
  text: "Amount",
@@ -6677,7 +7010,7 @@ var ScBillingHistoryHeader = ({
6677
7010
  className: ScBillingHistoryHeader_default.scHeaderInstance2
6678
7011
  }
6679
7012
  ),
6680
- /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
7013
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
6681
7014
  ScHeader,
6682
7015
  {
6683
7016
  text: "Date",
@@ -6685,7 +7018,7 @@ var ScBillingHistoryHeader = ({
6685
7018
  className: ScBillingHistoryHeader_default.scHeaderInstance2
6686
7019
  }
6687
7020
  ),
6688
- /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
7021
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
6689
7022
  ScHeader,
6690
7023
  {
6691
7024
  text: "Action",
@@ -6706,30 +7039,30 @@ var ScCheckField_default = {
6706
7039
  };
6707
7040
 
6708
7041
  // src/SC-checkField/ScCheckField.tsx
6709
- var import_jsx_runtime96 = __toESM(require_jsx_runtime());
7042
+ var import_jsx_runtime97 = __toESM(require_jsx_runtime());
6710
7043
  var ScCheckField = ({
6711
7044
  label = "Label",
6712
7045
  className,
6713
7046
  ...props
6714
7047
  }) => {
6715
- return /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)("div", { className: ScCheckField_default.scCheckField + " " + className, ...props, children: [
6716
- /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("div", { className: ScCheckField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)("div", { className: ScCheckField_default.label, children: [
7048
+ return /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: ScCheckField_default.scCheckField + " " + className, ...props, children: [
7049
+ /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("div", { className: ScCheckField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: ScCheckField_default.label, children: [
6717
7050
  label,
6718
7051
  " "
6719
7052
  ] }) }),
6720
- /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)("div", { className: ScCheckField_default.tabSwitcher, children: [
6721
- /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
7053
+ /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: ScCheckField_default.tabSwitcher, children: [
7054
+ /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
6722
7055
  ScPairtext,
6723
7056
  {
6724
- icon: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(sicon_Home_default, { className: ScCheckField_default.siconHomeInstance }),
7057
+ icon: /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(sicon_Home_default, { className: ScCheckField_default.siconHomeInstance }),
6725
7058
  type: "checkbox",
6726
7059
  className: ScCheckField_default.scPairtextInstance
6727
7060
  }
6728
7061
  ),
6729
- /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
7062
+ /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
6730
7063
  ScPairtext,
6731
7064
  {
6732
- icon: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(sicon_Home_default, { className: ScCheckField_default.siconHomeInstance }),
7065
+ icon: /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(sicon_Home_default, { className: ScCheckField_default.siconHomeInstance }),
6733
7066
  type: "checkbox",
6734
7067
  className: ScCheckField_default.scPairtextInstance
6735
7068
  }
@@ -6749,9 +7082,9 @@ var ScFieldButton_default = {
6749
7082
  };
6750
7083
 
6751
7084
  // src/SC-fieldButton/ScFieldButton.tsx
6752
- var import_jsx_runtime97 = __toESM(require_jsx_runtime());
7085
+ var import_jsx_runtime98 = __toESM(require_jsx_runtime());
6753
7086
  var ScFieldButton = ({
6754
- icon = /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(sicon_Home_default, { className: ScFieldButton_default.siconHomeInstance }),
7087
+ icon = /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(sicon_Home_default, { className: ScFieldButton_default.siconHomeInstance }),
6755
7088
  type = "default",
6756
7089
  state = "default",
6757
7090
  className,
@@ -6759,18 +7092,18 @@ var ScFieldButton = ({
6759
7092
  ...props
6760
7093
  }) => {
6761
7094
  const variantsClassName = ScFieldButton_default["type-" + type] + " " + ScFieldButton_default["state-" + state];
6762
- return /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
7095
+ return /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
6763
7096
  "div",
6764
7097
  {
6765
7098
  className: ScFieldButton_default.scFieldButton + " " + className + " " + variantsClassName,
6766
7099
  ...props,
6767
- children: /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: ScFieldButton_default.container, children: [
6768
- (type === "icon-right" || type === "only-icon") && /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(import_jsx_runtime97.Fragment, { children: icon }),
6769
- (type === "icon-left" || type === "default" || type === "icon-right") && /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(import_jsx_runtime97.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: ScFieldButton_default.label, children: [
7100
+ children: /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)("div", { className: ScFieldButton_default.container, children: [
7101
+ (type === "icon-right" || type === "only-icon") && /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(import_jsx_runtime98.Fragment, { children: icon }),
7102
+ (type === "icon-left" || type === "default" || type === "icon-right") && /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(import_jsx_runtime98.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)("div", { className: ScFieldButton_default.label, children: [
6770
7103
  text,
6771
7104
  " "
6772
7105
  ] }) }),
6773
- type === "icon-left" && /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(import_jsx_runtime97.Fragment, { children: icon })
7106
+ type === "icon-left" && /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(import_jsx_runtime98.Fragment, { children: icon })
6774
7107
  ] })
6775
7108
  }
6776
7109
  );
@@ -6784,16 +7117,16 @@ var ScPendingAction_default = {
6784
7117
  };
6785
7118
 
6786
7119
  // src/SC-pendingAction/ScPendingAction.tsx
6787
- var import_jsx_runtime98 = __toESM(require_jsx_runtime());
7120
+ var import_jsx_runtime99 = __toESM(require_jsx_runtime());
6788
7121
  var ScPendingAction = ({
6789
7122
  className,
6790
7123
  ...props
6791
7124
  }) => {
6792
- return /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
6793
- /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
7125
+ return /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
7126
+ /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
6794
7127
  ScButton,
6795
7128
  {
6796
- icon: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(sicon_Home_default, { className: ScPendingAction_default.siconHomeInstance }),
7129
+ icon: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(sicon_Home_default, { className: ScPendingAction_default.siconHomeInstance }),
6797
7130
  text: "Cancel",
6798
7131
  variant: "error",
6799
7132
  type: "tertiary",
@@ -6801,11 +7134,11 @@ var ScPendingAction = ({
6801
7134
  className: ScPendingAction_default.scButtonInstance
6802
7135
  }
6803
7136
  ),
6804
- /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(ScVDivider, { className: ScPendingAction_default.scVDividerInstance }),
6805
- /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
7137
+ /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(ScVDivider, { className: ScPendingAction_default.scVDividerInstance }),
7138
+ /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
6806
7139
  ScButton,
6807
7140
  {
6808
- icon: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(sicon_Home_default, { className: ScPendingAction_default.siconHomeInstance }),
7141
+ icon: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(sicon_Home_default, { className: ScPendingAction_default.siconHomeInstance }),
6809
7142
  text: "Resend",
6810
7143
  variant: "tertiary",
6811
7144
  size: "sm",
@@ -6828,7 +7161,7 @@ var ScQuickPrompt_default = {
6828
7161
  };
6829
7162
 
6830
7163
  // src/SC-quick prompt/ScQuickPrompt.tsx
6831
- var import_jsx_runtime99 = __toESM(require_jsx_runtime());
7164
+ var import_jsx_runtime100 = __toESM(require_jsx_runtime());
6832
7165
  var ScQuickPrompt = ({
6833
7166
  appName = "Photogenix",
6834
7167
  heading = "Swap Model and Background",
@@ -6836,20 +7169,20 @@ var ScQuickPrompt = ({
6836
7169
  className,
6837
7170
  ...props
6838
7171
  }) => {
6839
- return /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScQuickPrompt_default.scQuickPrompt + " " + className, ...props, children: [
6840
- /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScQuickPrompt_default.header, children: [
6841
- /* @__PURE__ */ (0, import_jsx_runtime99.jsx)("div", { className: ScQuickPrompt_default.iconContainer, children: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(sicon_bolt_default, { className: ScQuickPrompt_default.siconBoltInstance }) }),
6842
- /* @__PURE__ */ (0, import_jsx_runtime99.jsx)("div", { className: ScQuickPrompt_default.titleContainer, children: /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScQuickPrompt_default.title, children: [
7172
+ return /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { className: ScQuickPrompt_default.scQuickPrompt + " " + className, ...props, children: [
7173
+ /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { className: ScQuickPrompt_default.header, children: [
7174
+ /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("div", { className: ScQuickPrompt_default.iconContainer, children: /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(sicon_bolt_default, { className: ScQuickPrompt_default.siconBoltInstance }) }),
7175
+ /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("div", { className: ScQuickPrompt_default.titleContainer, children: /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { className: ScQuickPrompt_default.title, children: [
6843
7176
  appName,
6844
7177
  " "
6845
7178
  ] }) })
6846
7179
  ] }),
6847
- /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScQuickPrompt_default.body, children: [
6848
- /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScQuickPrompt_default.heading, children: [
7180
+ /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { className: ScQuickPrompt_default.body, children: [
7181
+ /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { className: ScQuickPrompt_default.heading, children: [
6849
7182
  heading,
6850
7183
  " "
6851
7184
  ] }),
6852
- /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScQuickPrompt_default.description, children: [
7185
+ /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { className: ScQuickPrompt_default.description, children: [
6853
7186
  description,
6854
7187
  " "
6855
7188
  ] })
@@ -6866,13 +7199,13 @@ var ScReferralTableHeader_default = {
6866
7199
  };
6867
7200
 
6868
7201
  // src/SC-referralTableHeader/ScReferralTableHeader.tsx
6869
- var import_jsx_runtime100 = __toESM(require_jsx_runtime());
7202
+ var import_jsx_runtime101 = __toESM(require_jsx_runtime());
6870
7203
  var ScReferralTableHeader = ({
6871
7204
  className,
6872
7205
  ...props
6873
7206
  }) => {
6874
- return /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
6875
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
7207
+ return /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
7208
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
6876
7209
  ScHeader,
6877
7210
  {
6878
7211
  text: "User",
@@ -6880,7 +7213,7 @@ var ScReferralTableHeader = ({
6880
7213
  className: ScReferralTableHeader_default.scHeaderInstance
6881
7214
  }
6882
7215
  ),
6883
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
7216
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
6884
7217
  ScHeader,
6885
7218
  {
6886
7219
  text: "Date",
@@ -6888,7 +7221,7 @@ var ScReferralTableHeader = ({
6888
7221
  className: ScReferralTableHeader_default.scHeaderInstance2
6889
7222
  }
6890
7223
  ),
6891
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
7224
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
6892
7225
  ScHeader,
6893
7226
  {
6894
7227
  text: "Status",
@@ -6896,7 +7229,7 @@ var ScReferralTableHeader = ({
6896
7229
  className: ScReferralTableHeader_default.scHeaderInstance3
6897
7230
  }
6898
7231
  ),
6899
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
7232
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
6900
7233
  ScHeader,
6901
7234
  {
6902
7235
  text: "Reward",
@@ -6917,7 +7250,7 @@ var ScReferralTableList_default = {
6917
7250
  };
6918
7251
 
6919
7252
  // src/SC-referralTableList/ScReferralTableList.tsx
6920
- var import_jsx_runtime101 = __toESM(require_jsx_runtime());
7253
+ var import_jsx_runtime102 = __toESM(require_jsx_runtime());
6921
7254
  var ScReferralTableList = ({
6922
7255
  userEmail = "chris@kepler.com",
6923
7256
  userName,
@@ -6927,8 +7260,8 @@ var ScReferralTableList = ({
6927
7260
  className,
6928
7261
  ...props
6929
7262
  }) => {
6930
- return /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
6931
- /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
7263
+ return /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
7264
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
6932
7265
  ScProfile,
6933
7266
  {
6934
7267
  subText: userEmail,
@@ -6936,12 +7269,12 @@ var ScReferralTableList = ({
6936
7269
  className: ScReferralTableList_default.scProfileInstance
6937
7270
  }
6938
7271
  ),
6939
- /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)("div", { className: ScReferralTableList_default.date, children: [
7272
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)("div", { className: ScReferralTableList_default.date, children: [
6940
7273
  date,
6941
7274
  " "
6942
7275
  ] }),
6943
- /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(ScBadges, { text: status, className: ScReferralTableList_default.scBadgesInstance }),
6944
- /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)("div", { className: ScReferralTableList_default.points, children: [
7276
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(ScBadges, { text: status, className: ScReferralTableList_default.scBadgesInstance }),
7277
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)("div", { className: ScReferralTableList_default.points, children: [
6945
7278
  points,
6946
7279
  " "
6947
7280
  ] })
@@ -6955,33 +7288,33 @@ var ScSettingsNav_default = {
6955
7288
  };
6956
7289
 
6957
7290
  // src/SC-settingsNav/ScSettingsNav.tsx
6958
- var import_jsx_runtime102 = __toESM(require_jsx_runtime());
7291
+ var import_jsx_runtime103 = __toESM(require_jsx_runtime());
6959
7292
  var ScSettingsNav = ({
6960
7293
  className,
6961
7294
  ...props
6962
7295
  }) => {
6963
- return /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("div", { className: ScSettingsNav_default.scSettingsNav + " " + className, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)("div", { className: ScSettingsNav_default.container, children: [
6964
- /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
7296
+ return /* @__PURE__ */ (0, import_jsx_runtime103.jsx)("div", { className: ScSettingsNav_default.scSettingsNav + " " + className, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)("div", { className: ScSettingsNav_default.container, children: [
7297
+ /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
6965
7298
  ScSidebarMenu,
6966
7299
  {
6967
- icon: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(sicon_team_default, { className: ScSettingsNav_default.siconTeamInstance }),
7300
+ icon: /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(sicon_team_default, { className: ScSettingsNav_default.siconTeamInstance }),
6968
7301
  text: "Profile",
6969
7302
  state: "active",
6970
7303
  className: ScSettingsNav_default.scSidebarMenuInstance
6971
7304
  }
6972
7305
  ),
6973
- /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
7306
+ /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
6974
7307
  ScSidebarMenu,
6975
7308
  {
6976
- icon: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(sicon_workspace_default, { className: ScSettingsNav_default.siconWorkspaceInstance }),
7309
+ icon: /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(sicon_workspace_default, { className: ScSettingsNav_default.siconWorkspaceInstance }),
6977
7310
  text: "Workspace",
6978
7311
  className: ScSettingsNav_default.scSidebarMenuInstance
6979
7312
  }
6980
7313
  ),
6981
- /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
7314
+ /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
6982
7315
  ScSidebarMenu,
6983
7316
  {
6984
- icon: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(sicon_referral_default, { className: ScSettingsNav_default.siconReferralInstance }),
7317
+ icon: /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(sicon_referral_default, { className: ScSettingsNav_default.siconReferralInstance }),
6985
7318
  text: "Referral",
6986
7319
  className: ScSettingsNav_default.scSidebarMenuInstance
6987
7320
  }
@@ -6997,18 +7330,18 @@ var ScTabField_default = {
6997
7330
  };
6998
7331
 
6999
7332
  // src/SC-tabField/ScTabField.tsx
7000
- var import_jsx_runtime103 = __toESM(require_jsx_runtime());
7333
+ var import_jsx_runtime104 = __toESM(require_jsx_runtime());
7001
7334
  var ScTabField = ({
7002
7335
  label = "Label",
7003
7336
  className,
7004
7337
  ...props
7005
7338
  }) => {
7006
- return /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)("div", { className: ScTabField_default.scTabField + " " + className, children: [
7007
- /* @__PURE__ */ (0, import_jsx_runtime103.jsx)("div", { className: ScTabField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)("div", { className: ScTabField_default.label, children: [
7339
+ return /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: ScTabField_default.scTabField + " " + className, children: [
7340
+ /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: ScTabField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: ScTabField_default.label, children: [
7008
7341
  label,
7009
7342
  " "
7010
7343
  ] }) }),
7011
- /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(ScTabSwitcher, { className: ScTabField_default.scTabSwitcherInstance })
7344
+ /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(ScTabSwitcher, { className: ScTabField_default.scTabSwitcherInstance })
7012
7345
  ] });
7013
7346
  };
7014
7347
 
@@ -7025,19 +7358,19 @@ var ScTableHeader_default = {
7025
7358
  };
7026
7359
 
7027
7360
  // src/SC-tableHeader/ScTableHeader.tsx
7028
- var import_jsx_runtime104 = __toESM(require_jsx_runtime());
7361
+ var import_jsx_runtime105 = __toESM(require_jsx_runtime());
7029
7362
  var ScTableHeader = ({
7030
7363
  type = "default",
7031
7364
  className,
7032
7365
  ...props
7033
7366
  }) => {
7034
7367
  const variantsClassName = ScTableHeader_default["type-" + type];
7035
- return /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(
7368
+ return /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(
7036
7369
  "div",
7037
7370
  {
7038
7371
  className: ScTableHeader_default.scTableHeader + " " + className + " " + variantsClassName,
7039
7372
  children: [
7040
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
7373
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
7041
7374
  ScHeader,
7042
7375
  {
7043
7376
  text: "User",
@@ -7045,7 +7378,7 @@ var ScTableHeader = ({
7045
7378
  className: ScTableHeader_default.scHeaderInstance
7046
7379
  }
7047
7380
  ),
7048
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
7381
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
7049
7382
  ScHeader,
7050
7383
  {
7051
7384
  text: "Role",
@@ -7053,7 +7386,7 @@ var ScTableHeader = ({
7053
7386
  className: ScTableHeader_default.scHeaderInstance2
7054
7387
  }
7055
7388
  ),
7056
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
7389
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
7057
7390
  ScHeader,
7058
7391
  {
7059
7392
  text: "Access",
@@ -7061,7 +7394,7 @@ var ScTableHeader = ({
7061
7394
  className: ScTableHeader_default.scHeaderInstance3
7062
7395
  }
7063
7396
  ),
7064
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
7397
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
7065
7398
  ScHeader,
7066
7399
  {
7067
7400
  text: "Invited by",
@@ -7069,7 +7402,7 @@ var ScTableHeader = ({
7069
7402
  className: ScTableHeader_default.scHeaderInstance4
7070
7403
  }
7071
7404
  ),
7072
- type === "pending" && /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(import_jsx_runtime104.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
7405
+ type === "pending" && /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(import_jsx_runtime105.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
7073
7406
  ScHeader,
7074
7407
  {
7075
7408
  text: "Invite action",
@@ -7077,7 +7410,7 @@ var ScTableHeader = ({
7077
7410
  className: ScTableHeader_default.scHeaderInstance5
7078
7411
  }
7079
7412
  ) }),
7080
- type === "default" && /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(import_jsx_runtime104.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
7413
+ type === "default" && /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(import_jsx_runtime105.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
7081
7414
  ScHeader,
7082
7415
  {
7083
7416
  text: "Signed On",
@@ -7109,7 +7442,7 @@ var ScTableList_default = {
7109
7442
  };
7110
7443
 
7111
7444
  // src/SC-tableList/ScTableList.tsx
7112
- var import_jsx_runtime105 = __toESM(require_jsx_runtime());
7445
+ var import_jsx_runtime106 = __toESM(require_jsx_runtime());
7113
7446
  var ScTableList = ({
7114
7447
  invitedBy = "Rohan",
7115
7448
  signedOn = "Nov 9th, 2025",
@@ -7121,51 +7454,51 @@ var ScTableList = ({
7121
7454
  ...props
7122
7455
  }) => {
7123
7456
  const variantsClassName = ScTableList_default["hover-" + hover] + " " + ScTableList_default["variant-" + variant];
7124
- return /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(
7457
+ return /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(
7125
7458
  "div",
7126
7459
  {
7127
7460
  className: ScTableList_default.scTableList + " " + className + " " + variantsClassName,
7128
7461
  onClick: (e) => onRowClick && onRowClick(invitedBy, e),
7129
7462
  ...props,
7130
7463
  children: [
7131
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
7464
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
7132
7465
  ScProfile,
7133
7466
  {
7134
7467
  subText: userEmail,
7135
7468
  className: ScTableList_default.scProfileInstance
7136
7469
  }
7137
7470
  ),
7138
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(ScRole, { className: ScTableList_default.scRoleInstance }),
7139
- /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)("div", { className: ScTableList_default.accessInfo, children: [
7140
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
7471
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(ScRole, { className: ScTableList_default.scRoleInstance }),
7472
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("div", { className: ScTableList_default.accessInfo, children: [
7473
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
7141
7474
  ScAccess,
7142
7475
  {
7143
- component: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(sicon_artifacts_default, { className: ScTableList_default.siconArtifactsInstance }),
7144
- component2: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(sicon_photogenix_default, { className: ScTableList_default.siconPhotogenixInstance }),
7476
+ component: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(sicon_artifacts_default, { className: ScTableList_default.siconArtifactsInstance }),
7477
+ component2: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(sicon_photogenix_default, { className: ScTableList_default.siconPhotogenixInstance }),
7145
7478
  className: ScTableList_default.scAccessInstance
7146
7479
  }
7147
7480
  ),
7148
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
7481
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
7149
7482
  ScAccess,
7150
7483
  {
7151
- component: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(sicon_userAdd_default, { className: ScTableList_default.siconUserAddInstance }),
7152
- component2: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(sicon_Coins_default, { className: ScTableList_default.siconCoinsInstance }),
7484
+ component: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(sicon_userAdd_default, { className: ScTableList_default.siconUserAddInstance }),
7485
+ component2: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(sicon_Coins_default, { className: ScTableList_default.siconCoinsInstance }),
7153
7486
  visibleSiconCatalogix: false,
7154
7487
  className: ScTableList_default.scAccessInstance
7155
7488
  }
7156
7489
  )
7157
7490
  ] }),
7158
- /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)("div", { className: ScTableList_default.userName, children: [
7491
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("div", { className: ScTableList_default.userName, children: [
7159
7492
  invitedBy,
7160
7493
  " "
7161
7494
  ] }),
7162
- variant === "pending" && /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(import_jsx_runtime105.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
7495
+ variant === "pending" && /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(import_jsx_runtime106.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
7163
7496
  ScPendingAction,
7164
7497
  {
7165
7498
  className: ScTableList_default.scPendingActionInstance
7166
7499
  }
7167
7500
  ) }),
7168
- variant === "active" && /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(import_jsx_runtime105.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)("div", { className: ScTableList_default.date, children: [
7501
+ variant === "active" && /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(import_jsx_runtime106.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("div", { className: ScTableList_default.date, children: [
7169
7502
  signedOn,
7170
7503
  " "
7171
7504
  ] }) })
@@ -7194,7 +7527,7 @@ var ScWorkspaceCard_default = {
7194
7527
  };
7195
7528
 
7196
7529
  // src/SC-workspaceCard/ScWorkspaceCard.tsx
7197
- var import_jsx_runtime106 = __toESM(require_jsx_runtime());
7530
+ var import_jsx_runtime107 = __toESM(require_jsx_runtime());
7198
7531
  var ScWorkspaceCard = ({
7199
7532
  workspaceName = "Stores",
7200
7533
  role = "Admin",
@@ -7204,21 +7537,21 @@ var ScWorkspaceCard = ({
7204
7537
  className,
7205
7538
  ...props
7206
7539
  }) => {
7207
- return /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("div", { className: ScWorkspaceCard_default.scWorkspaceCard + " " + className, ...props, children: [
7208
- /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("div", { className: ScWorkspaceCard_default.workspaceInfo, children: [
7209
- /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
7540
+ return /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("div", { className: ScWorkspaceCard_default.scWorkspaceCard + " " + className, ...props, children: [
7541
+ /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("div", { className: ScWorkspaceCard_default.workspaceInfo, children: [
7542
+ /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
7210
7543
  ScIntialProfileCover,
7211
7544
  {
7212
7545
  className: ScWorkspaceCard_default.scIntialProfileCoverInstance
7213
7546
  }
7214
7547
  ),
7215
- /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("div", { className: ScWorkspaceCard_default.workspaceName, children: [
7548
+ /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("div", { className: ScWorkspaceCard_default.workspaceName, children: [
7216
7549
  workspaceName,
7217
7550
  " "
7218
7551
  ] })
7219
7552
  ] }),
7220
- /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("div", { className: ScWorkspaceCard_default.userInfo, children: [
7221
- /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
7553
+ /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("div", { className: ScWorkspaceCard_default.userInfo, children: [
7554
+ /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
7222
7555
  ScBadges,
7223
7556
  {
7224
7557
  text: role,
@@ -7226,41 +7559,41 @@ var ScWorkspaceCard = ({
7226
7559
  className: ScWorkspaceCard_default.scBadgesInstance
7227
7560
  }
7228
7561
  ),
7229
- /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("div", { className: ScWorkspaceCard_default.userDetails, children: [
7230
- /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
7562
+ /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("div", { className: ScWorkspaceCard_default.userDetails, children: [
7563
+ /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
7231
7564
  ScPairtext,
7232
7565
  {
7233
- icon: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(sicon_team_default, { className: ScWorkspaceCard_default.siconTeamInstance }),
7566
+ icon: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(sicon_team_default, { className: ScWorkspaceCard_default.siconTeamInstance }),
7234
7567
  content: userCount,
7235
7568
  className: ScWorkspaceCard_default.scPairtextInstance
7236
7569
  }
7237
7570
  ),
7238
- /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(ScVDivider, { className: ScWorkspaceCard_default.scVDividerInstance }),
7239
- /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
7571
+ /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(ScVDivider, { className: ScWorkspaceCard_default.scVDividerInstance }),
7572
+ /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
7240
7573
  ScPairtext,
7241
7574
  {
7242
- icon: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(sicon_Crown_default, { className: ScWorkspaceCard_default.siconCrownInstance }),
7575
+ icon: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(sicon_Crown_default, { className: ScWorkspaceCard_default.siconCrownInstance }),
7243
7576
  content: ownerEmail,
7244
7577
  className: ScWorkspaceCard_default.scPairtextInstance
7245
7578
  }
7246
7579
  )
7247
7580
  ] })
7248
7581
  ] }),
7249
- /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
7582
+ /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
7250
7583
  ScButton,
7251
7584
  {
7252
- icon: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(sicon_switch_default, { className: ScWorkspaceCard_default.siconSwitchInstance }),
7585
+ icon: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(sicon_switch_default, { className: ScWorkspaceCard_default.siconSwitchInstance }),
7253
7586
  text: buttonText,
7254
7587
  state: "disabled",
7255
7588
  variant: "outline",
7256
7589
  className: ScWorkspaceCard_default.scButtonInstance
7257
7590
  }
7258
7591
  ),
7259
- /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
7592
+ /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
7260
7593
  ScButton,
7261
7594
  {
7262
7595
  text: "Leave workspace",
7263
- icon: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(sicon_logout_default, { className: ScWorkspaceCard_default.siconLogoutInstance }),
7596
+ icon: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(sicon_logout_default, { className: ScWorkspaceCard_default.siconLogoutInstance }),
7264
7597
  styleVariant: "icon-only",
7265
7598
  variant: "error",
7266
7599
  className: ScWorkspaceCard_default.scButtonInstance2
@@ -7326,9 +7659,9 @@ export {
7326
7659
  ScToggleSwitch,
7327
7660
  ScVDivider,
7328
7661
  ScVersion,
7329
- ScWorkspace,
7330
7662
  ScWorkspaceCard,
7331
- StreamoidSidebar
7663
+ StreamoidSidebar,
7664
+ StreamoidWorkspaceSwitcher
7332
7665
  };
7333
7666
  /*! Bundled license information:
7334
7667