@streamoid/ui 0.1.7 → 0.1.9

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