@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.d.mts +24 -8
- package/dist/index.d.ts +24 -8
- package/dist/index.js +513 -180
- package/dist/index.mjs +513 -180
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1097,11 +1097,11 @@ var require_react_development = __commonJS({
|
|
|
1097
1097
|
var dispatcher = resolveDispatcher();
|
|
1098
1098
|
return dispatcher.useReducer(reducer, initialArg, init);
|
|
1099
1099
|
}
|
|
1100
|
-
function
|
|
1100
|
+
function useRef2(initialValue) {
|
|
1101
1101
|
var dispatcher = resolveDispatcher();
|
|
1102
1102
|
return dispatcher.useRef(initialValue);
|
|
1103
1103
|
}
|
|
1104
|
-
function
|
|
1104
|
+
function useEffect2(create, deps) {
|
|
1105
1105
|
var dispatcher = resolveDispatcher();
|
|
1106
1106
|
return dispatcher.useEffect(create, deps);
|
|
1107
1107
|
}
|
|
@@ -1884,14 +1884,14 @@ var require_react_development = __commonJS({
|
|
|
1884
1884
|
exports.useContext = useContext;
|
|
1885
1885
|
exports.useDebugValue = useDebugValue;
|
|
1886
1886
|
exports.useDeferredValue = useDeferredValue;
|
|
1887
|
-
exports.useEffect =
|
|
1887
|
+
exports.useEffect = useEffect2;
|
|
1888
1888
|
exports.useId = useId;
|
|
1889
1889
|
exports.useImperativeHandle = useImperativeHandle;
|
|
1890
1890
|
exports.useInsertionEffect = useInsertionEffect;
|
|
1891
1891
|
exports.useLayoutEffect = useLayoutEffect;
|
|
1892
1892
|
exports.useMemo = useMemo;
|
|
1893
1893
|
exports.useReducer = useReducer;
|
|
1894
|
-
exports.useRef =
|
|
1894
|
+
exports.useRef = useRef2;
|
|
1895
1895
|
exports.useState = useState;
|
|
1896
1896
|
exports.useSyncExternalStore = useSyncExternalStore;
|
|
1897
1897
|
exports.useTransition = useTransition;
|
|
@@ -2799,11 +2799,11 @@ var require_react_jsx_runtime_development = __commonJS({
|
|
|
2799
2799
|
return jsxWithValidation(type, props, key, false);
|
|
2800
2800
|
}
|
|
2801
2801
|
}
|
|
2802
|
-
var
|
|
2803
|
-
var
|
|
2802
|
+
var jsx107 = jsxWithValidationDynamic;
|
|
2803
|
+
var jsxs59 = jsxWithValidationStatic;
|
|
2804
2804
|
exports.Fragment = REACT_FRAGMENT_TYPE;
|
|
2805
|
-
exports.jsx =
|
|
2806
|
-
exports.jsxs =
|
|
2805
|
+
exports.jsx = jsx107;
|
|
2806
|
+
exports.jsxs = jsxs59;
|
|
2807
2807
|
})();
|
|
2808
2808
|
}
|
|
2809
2809
|
}
|
|
@@ -2881,9 +2881,9 @@ __export(index_exports, {
|
|
|
2881
2881
|
ScToggleSwitch: () => ScToggleSwitch,
|
|
2882
2882
|
ScVDivider: () => ScVDivider,
|
|
2883
2883
|
ScVersion: () => ScVersion,
|
|
2884
|
-
ScWorkspace: () => ScWorkspace,
|
|
2885
2884
|
ScWorkspaceCard: () => ScWorkspaceCard,
|
|
2886
|
-
StreamoidSidebar: () => StreamoidSidebar
|
|
2885
|
+
StreamoidSidebar: () => StreamoidSidebar,
|
|
2886
|
+
StreamoidWorkspaceSwitcher: () => StreamoidWorkspaceSwitcher
|
|
2887
2887
|
});
|
|
2888
2888
|
module.exports = __toCommonJS(index_exports);
|
|
2889
2889
|
|
|
@@ -3105,6 +3105,22 @@ var SiconCatalogix = ({ color = "currentColor", strokeWidth = 1.25, size = 24, .
|
|
|
3105
3105
|
);
|
|
3106
3106
|
};
|
|
3107
3107
|
var sicon_catalogix_default = SiconCatalogix;
|
|
3108
|
+
var SiconClose = ({ color = "currentColor", strokeWidth = 1.25, size = 24, ...props }) => {
|
|
3109
|
+
return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
3110
|
+
"svg",
|
|
3111
|
+
{
|
|
3112
|
+
...props,
|
|
3113
|
+
width: size,
|
|
3114
|
+
height: size,
|
|
3115
|
+
strokeWidth,
|
|
3116
|
+
viewBox: "0 0 24 24",
|
|
3117
|
+
fill: "none",
|
|
3118
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3119
|
+
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" })
|
|
3120
|
+
}
|
|
3121
|
+
);
|
|
3122
|
+
};
|
|
3123
|
+
var sicon_close_default = SiconClose;
|
|
3108
3124
|
var SiconCollapse = ({ color = "currentColor", strokeWidth = 1.25, size = 24, ...props }) => {
|
|
3109
3125
|
return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
3110
3126
|
"svg",
|
|
@@ -5845,7 +5861,7 @@ var ScSidebar = ({
|
|
|
5845
5861
|
);
|
|
5846
5862
|
};
|
|
5847
5863
|
|
|
5848
|
-
// src/SC-
|
|
5864
|
+
// src/SC-Sidebar-new/streamoid-sidebar.tsx
|
|
5849
5865
|
var import_jsx_runtime85 = __toESM(require_jsx_runtime());
|
|
5850
5866
|
function SectionHeader({ label }) {
|
|
5851
5867
|
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)(
|
|
@@ -6284,6 +6300,323 @@ var ScSlider = ({
|
|
|
6284
6300
|
] });
|
|
6285
6301
|
};
|
|
6286
6302
|
|
|
6303
|
+
// src/SC-WorkspaceSwitcher/streamoid-workspace-switcher.tsx
|
|
6304
|
+
var import_react = __toESM(require_react());
|
|
6305
|
+
var import_jsx_runtime87 = __toESM(require_jsx_runtime());
|
|
6306
|
+
var PRIMARY_ICON = "var(--alias-text---icons-primary)";
|
|
6307
|
+
function deriveInitials(name) {
|
|
6308
|
+
return name.split(/\s+/).slice(0, 2).map((w) => w[0]?.toUpperCase() ?? "").join("") || "WS";
|
|
6309
|
+
}
|
|
6310
|
+
function normalizeRole(role) {
|
|
6311
|
+
return role === "admin" ? "admin" : "member";
|
|
6312
|
+
}
|
|
6313
|
+
function roleLabel(role) {
|
|
6314
|
+
const normalized = normalizeRole(role);
|
|
6315
|
+
return normalized === "admin" ? "Admin" : "Member";
|
|
6316
|
+
}
|
|
6317
|
+
function WorkspaceRow({
|
|
6318
|
+
workspace,
|
|
6319
|
+
currentWorkspaceText,
|
|
6320
|
+
switchWorkspaceText,
|
|
6321
|
+
onSwitch
|
|
6322
|
+
}) {
|
|
6323
|
+
return /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
|
|
6324
|
+
"div",
|
|
6325
|
+
{
|
|
6326
|
+
className: "relative shrink-0 w-full",
|
|
6327
|
+
style: {
|
|
6328
|
+
backgroundColor: "var(--alias-surface-base)",
|
|
6329
|
+
borderRadius: "var(--radius-3xl)",
|
|
6330
|
+
backdropFilter: "blur(4px)"
|
|
6331
|
+
},
|
|
6332
|
+
children: [
|
|
6333
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
6334
|
+
"div",
|
|
6335
|
+
{
|
|
6336
|
+
"aria-hidden": "true",
|
|
6337
|
+
className: "absolute inset-0 pointer-events-none",
|
|
6338
|
+
style: {
|
|
6339
|
+
border: "1px solid var(--alias-border-subtle)",
|
|
6340
|
+
borderRadius: "var(--radius-3xl)"
|
|
6341
|
+
}
|
|
6342
|
+
}
|
|
6343
|
+
),
|
|
6344
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
|
|
6345
|
+
"div",
|
|
6346
|
+
{
|
|
6347
|
+
className: "flex items-center w-full",
|
|
6348
|
+
style: {
|
|
6349
|
+
gap: "var(--spacing-3xl)",
|
|
6350
|
+
padding: "var(--spacing-6xl)"
|
|
6351
|
+
},
|
|
6352
|
+
children: [
|
|
6353
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
|
|
6354
|
+
"div",
|
|
6355
|
+
{
|
|
6356
|
+
className: "flex flex-1 items-center min-w-0",
|
|
6357
|
+
style: { gap: "var(--spacing-xl)" },
|
|
6358
|
+
children: [
|
|
6359
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
6360
|
+
ScIntialProfileCover,
|
|
6361
|
+
{
|
|
6362
|
+
intial: workspace.initials || deriveInitials(workspace.name),
|
|
6363
|
+
className: "shrink-0"
|
|
6364
|
+
}
|
|
6365
|
+
),
|
|
6366
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
6367
|
+
"p",
|
|
6368
|
+
{
|
|
6369
|
+
className: "flex-1 min-w-0 overflow-hidden text-ellipsis",
|
|
6370
|
+
style: {
|
|
6371
|
+
color: "var(--alias-text---icons-primary)",
|
|
6372
|
+
fontFamily: "var(--font-family-font-family-body)",
|
|
6373
|
+
fontSize: "var(--font-size-font-size-md)",
|
|
6374
|
+
fontWeight: 500,
|
|
6375
|
+
lineHeight: "var(--line-height-line-height-md)",
|
|
6376
|
+
display: "-webkit-box",
|
|
6377
|
+
WebkitLineClamp: 2,
|
|
6378
|
+
WebkitBoxOrient: "vertical"
|
|
6379
|
+
},
|
|
6380
|
+
children: workspace.name
|
|
6381
|
+
}
|
|
6382
|
+
)
|
|
6383
|
+
]
|
|
6384
|
+
}
|
|
6385
|
+
),
|
|
6386
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
|
|
6387
|
+
"div",
|
|
6388
|
+
{
|
|
6389
|
+
className: "flex items-center justify-center shrink-0",
|
|
6390
|
+
style: {
|
|
6391
|
+
gap: "var(--spacing-6xl)",
|
|
6392
|
+
padding: "0 var(--spacing-3xl)"
|
|
6393
|
+
},
|
|
6394
|
+
children: [
|
|
6395
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
6396
|
+
ScRole,
|
|
6397
|
+
{
|
|
6398
|
+
type: normalizeRole(workspace.role),
|
|
6399
|
+
label: roleLabel(workspace.role),
|
|
6400
|
+
style: { width: 80 }
|
|
6401
|
+
}
|
|
6402
|
+
),
|
|
6403
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("div", { className: "flex flex-row items-center self-stretch", children: /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
|
|
6404
|
+
"div",
|
|
6405
|
+
{
|
|
6406
|
+
className: "flex items-center shrink-0",
|
|
6407
|
+
style: { gap: "var(--spacing-3xl)" },
|
|
6408
|
+
children: [
|
|
6409
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("div", { style: { width: 120, flexShrink: 0 }, children: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
6410
|
+
ScPairtext,
|
|
6411
|
+
{
|
|
6412
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(sicon_team_default, { className: "w-6 h-6", color: PRIMARY_ICON }),
|
|
6413
|
+
content: workspace.userCount || "\u2013",
|
|
6414
|
+
iconPosition: "left",
|
|
6415
|
+
type: "icon"
|
|
6416
|
+
}
|
|
6417
|
+
) }),
|
|
6418
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)(ScVDivider, {}),
|
|
6419
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
|
|
6420
|
+
"div",
|
|
6421
|
+
{
|
|
6422
|
+
className: "flex items-center",
|
|
6423
|
+
style: {
|
|
6424
|
+
width: 200,
|
|
6425
|
+
flexShrink: 0,
|
|
6426
|
+
gap: "var(--spacing-md)"
|
|
6427
|
+
},
|
|
6428
|
+
children: [
|
|
6429
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
6430
|
+
sicon_Crown_default,
|
|
6431
|
+
{
|
|
6432
|
+
className: "w-6 h-6 shrink-0",
|
|
6433
|
+
color: PRIMARY_ICON
|
|
6434
|
+
}
|
|
6435
|
+
),
|
|
6436
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
6437
|
+
"span",
|
|
6438
|
+
{
|
|
6439
|
+
className: "truncate",
|
|
6440
|
+
style: {
|
|
6441
|
+
color: "var(--alias-text---icons-primary)",
|
|
6442
|
+
fontFamily: "var(--font-family-font-family-body)",
|
|
6443
|
+
fontSize: "var(--font-size-font-size-sm)",
|
|
6444
|
+
lineHeight: "var(--line-height-line-height-sm)"
|
|
6445
|
+
},
|
|
6446
|
+
children: workspace.ownerEmail || "\u2013"
|
|
6447
|
+
}
|
|
6448
|
+
)
|
|
6449
|
+
]
|
|
6450
|
+
}
|
|
6451
|
+
)
|
|
6452
|
+
]
|
|
6453
|
+
}
|
|
6454
|
+
) })
|
|
6455
|
+
]
|
|
6456
|
+
}
|
|
6457
|
+
),
|
|
6458
|
+
workspace.isCurrent ? /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
6459
|
+
ScButton,
|
|
6460
|
+
{
|
|
6461
|
+
text: currentWorkspaceText,
|
|
6462
|
+
variant: "outline",
|
|
6463
|
+
state: "disabled",
|
|
6464
|
+
size: "lg",
|
|
6465
|
+
style: { width: 200, flexShrink: 0, opacity: 0.5 }
|
|
6466
|
+
}
|
|
6467
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
6468
|
+
ScButton,
|
|
6469
|
+
{
|
|
6470
|
+
text: switchWorkspaceText,
|
|
6471
|
+
variant: "secondary",
|
|
6472
|
+
size: "lg",
|
|
6473
|
+
styleVariant: "icon-left",
|
|
6474
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(sicon_switch_default, { className: "w-5 h-5", color: PRIMARY_ICON }),
|
|
6475
|
+
style: { width: 200, flexShrink: 0 },
|
|
6476
|
+
onClick: onSwitch
|
|
6477
|
+
}
|
|
6478
|
+
)
|
|
6479
|
+
]
|
|
6480
|
+
}
|
|
6481
|
+
) })
|
|
6482
|
+
]
|
|
6483
|
+
}
|
|
6484
|
+
);
|
|
6485
|
+
}
|
|
6486
|
+
function StreamoidWorkspaceSwitcher({
|
|
6487
|
+
open,
|
|
6488
|
+
onClose,
|
|
6489
|
+
workspaces,
|
|
6490
|
+
loading = false,
|
|
6491
|
+
onSwitchWorkspace,
|
|
6492
|
+
config
|
|
6493
|
+
}) {
|
|
6494
|
+
const modalRef = (0, import_react.useRef)(null);
|
|
6495
|
+
const title = config?.title || "Switch workspace";
|
|
6496
|
+
const loadingText = config?.loadingText || "Loading workspaces\u2026";
|
|
6497
|
+
const currentWorkspaceText = config?.currentWorkspaceText || "Current workspace";
|
|
6498
|
+
const switchWorkspaceText = config?.switchWorkspaceText || "Switch workspace";
|
|
6499
|
+
(0, import_react.useEffect)(() => {
|
|
6500
|
+
if (!open) return;
|
|
6501
|
+
function handleKeyDown(e) {
|
|
6502
|
+
if (e.key === "Escape") onClose();
|
|
6503
|
+
}
|
|
6504
|
+
document.addEventListener("keydown", handleKeyDown);
|
|
6505
|
+
return () => document.removeEventListener("keydown", handleKeyDown);
|
|
6506
|
+
}, [open, onClose]);
|
|
6507
|
+
if (!open) return null;
|
|
6508
|
+
return /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
6509
|
+
"div",
|
|
6510
|
+
{
|
|
6511
|
+
className: "fixed inset-0 z-50 flex items-center justify-center",
|
|
6512
|
+
style: { backgroundColor: "rgba(0, 0, 0, 0.6)" },
|
|
6513
|
+
onClick: (e) => {
|
|
6514
|
+
if (e.target === e.currentTarget) onClose();
|
|
6515
|
+
},
|
|
6516
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
|
|
6517
|
+
"div",
|
|
6518
|
+
{
|
|
6519
|
+
ref: modalRef,
|
|
6520
|
+
className: "flex flex-col items-start relative",
|
|
6521
|
+
style: {
|
|
6522
|
+
backgroundColor: "var(--alias-surface-subtle)",
|
|
6523
|
+
borderRadius: "var(--radius-4xl)",
|
|
6524
|
+
border: "1px solid var(--alias-border-subtle)",
|
|
6525
|
+
width: "min(1000px, 90vw)",
|
|
6526
|
+
height: "60vh"
|
|
6527
|
+
},
|
|
6528
|
+
children: [
|
|
6529
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
6530
|
+
"div",
|
|
6531
|
+
{
|
|
6532
|
+
className: "shrink-0 w-full relative",
|
|
6533
|
+
style: {
|
|
6534
|
+
borderBottom: "1px solid var(--alias-border-divider)"
|
|
6535
|
+
},
|
|
6536
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
|
|
6537
|
+
"div",
|
|
6538
|
+
{
|
|
6539
|
+
className: "flex items-center w-full",
|
|
6540
|
+
style: {
|
|
6541
|
+
gap: "var(--spacing-3xl)",
|
|
6542
|
+
padding: "var(--spacing-3xl) var(--spacing-6xl)"
|
|
6543
|
+
},
|
|
6544
|
+
children: [
|
|
6545
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
6546
|
+
"p",
|
|
6547
|
+
{
|
|
6548
|
+
className: "flex-1 min-w-0 overflow-hidden text-ellipsis whitespace-nowrap",
|
|
6549
|
+
style: {
|
|
6550
|
+
color: "var(--alias-text---icons-primary)",
|
|
6551
|
+
fontFamily: "var(--font-family-font-family-body)",
|
|
6552
|
+
fontSize: "var(--font-size-font-size-lg)",
|
|
6553
|
+
fontWeight: 600,
|
|
6554
|
+
lineHeight: "var(--line-height-line-height-lg)"
|
|
6555
|
+
},
|
|
6556
|
+
children: title
|
|
6557
|
+
}
|
|
6558
|
+
),
|
|
6559
|
+
/* @__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 }) })
|
|
6560
|
+
]
|
|
6561
|
+
}
|
|
6562
|
+
) })
|
|
6563
|
+
}
|
|
6564
|
+
),
|
|
6565
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
6566
|
+
"div",
|
|
6567
|
+
{
|
|
6568
|
+
className: "flex-1 min-h-0 w-full overflow-y-auto",
|
|
6569
|
+
style: {
|
|
6570
|
+
borderRadius: "0 0 var(--radius-4xl) var(--radius-4xl)"
|
|
6571
|
+
},
|
|
6572
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
|
|
6573
|
+
"div",
|
|
6574
|
+
{
|
|
6575
|
+
className: "flex flex-col items-start",
|
|
6576
|
+
style: {
|
|
6577
|
+
padding: "var(--spacing-6xl)",
|
|
6578
|
+
gap: "var(--spacing-3xl)"
|
|
6579
|
+
},
|
|
6580
|
+
children: [
|
|
6581
|
+
loading && workspaces.length === 0 ? /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
6582
|
+
"p",
|
|
6583
|
+
{
|
|
6584
|
+
style: {
|
|
6585
|
+
fontFamily: "var(--font-family-font-family-body)",
|
|
6586
|
+
fontSize: "var(--font-size-font-size-sm)",
|
|
6587
|
+
color: "var(--alias-text---icons-muted)"
|
|
6588
|
+
},
|
|
6589
|
+
children: loadingText
|
|
6590
|
+
}
|
|
6591
|
+
) : null,
|
|
6592
|
+
workspaces.map((ws) => /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
6593
|
+
WorkspaceRow,
|
|
6594
|
+
{
|
|
6595
|
+
workspace: ws,
|
|
6596
|
+
currentWorkspaceText,
|
|
6597
|
+
switchWorkspaceText,
|
|
6598
|
+
onSwitch: () => {
|
|
6599
|
+
if (ws.isCurrent) {
|
|
6600
|
+
onClose();
|
|
6601
|
+
return;
|
|
6602
|
+
}
|
|
6603
|
+
void onSwitchWorkspace(ws);
|
|
6604
|
+
}
|
|
6605
|
+
},
|
|
6606
|
+
ws.id
|
|
6607
|
+
))
|
|
6608
|
+
]
|
|
6609
|
+
}
|
|
6610
|
+
)
|
|
6611
|
+
}
|
|
6612
|
+
)
|
|
6613
|
+
]
|
|
6614
|
+
}
|
|
6615
|
+
)
|
|
6616
|
+
}
|
|
6617
|
+
);
|
|
6618
|
+
}
|
|
6619
|
+
|
|
6287
6620
|
// src/SC-app listing card/ScAppListingCard.module.css
|
|
6288
6621
|
var ScAppListingCard_default = {
|
|
6289
6622
|
scAppListingCard: "ScAppListingCard_scAppListingCard",
|
|
@@ -6294,23 +6627,23 @@ var ScAppListingCard_default = {
|
|
|
6294
6627
|
};
|
|
6295
6628
|
|
|
6296
6629
|
// src/SC-app listing card/ScAppListingCard.tsx
|
|
6297
|
-
var
|
|
6630
|
+
var import_jsx_runtime88 = __toESM(require_jsx_runtime());
|
|
6298
6631
|
var ScAppListingCard = ({
|
|
6299
|
-
icon = /* @__PURE__ */ (0,
|
|
6632
|
+
icon = /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(sicon_Cart_default, { className: ScAppListingCard_default.siconCartInstance }),
|
|
6300
6633
|
title = "Stores",
|
|
6301
6634
|
descrp = "Centralized product and asset management for every storefront",
|
|
6302
6635
|
className,
|
|
6303
6636
|
...props
|
|
6304
6637
|
}) => {
|
|
6305
|
-
return /* @__PURE__ */ (0,
|
|
6306
|
-
/* @__PURE__ */ (0,
|
|
6307
|
-
/* @__PURE__ */ (0,
|
|
6308
|
-
/* @__PURE__ */ (0,
|
|
6638
|
+
return /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScAppListingCard_default.scAppListingCard + " " + className, ...props, children: [
|
|
6639
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScAppListingCard_default.header, children: [
|
|
6640
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("div", { className: ScAppListingCard_default.iconContainer, children: icon }),
|
|
6641
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScAppListingCard_default.title, children: [
|
|
6309
6642
|
title,
|
|
6310
6643
|
" "
|
|
6311
6644
|
] })
|
|
6312
6645
|
] }),
|
|
6313
|
-
/* @__PURE__ */ (0,
|
|
6646
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScAppListingCard_default.description, children: [
|
|
6314
6647
|
descrp,
|
|
6315
6648
|
" "
|
|
6316
6649
|
] })
|
|
@@ -6327,22 +6660,22 @@ var ScAppCard_default = {
|
|
|
6327
6660
|
};
|
|
6328
6661
|
|
|
6329
6662
|
// src/SC-appCard/ScAppCard.tsx
|
|
6330
|
-
var
|
|
6663
|
+
var import_jsx_runtime89 = __toESM(require_jsx_runtime());
|
|
6331
6664
|
var ScAppCard = ({
|
|
6332
|
-
appIcon = /* @__PURE__ */ (0,
|
|
6665
|
+
appIcon = /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(sicon_artifacts_default, { className: ScAppCard_default.siconArtifactsInstance }),
|
|
6333
6666
|
appName = "Artifax",
|
|
6334
6667
|
appDescription = "Info about artifax",
|
|
6335
6668
|
className,
|
|
6336
6669
|
...props
|
|
6337
6670
|
}) => {
|
|
6338
|
-
return /* @__PURE__ */ (0,
|
|
6339
|
-
/* @__PURE__ */ (0,
|
|
6340
|
-
/* @__PURE__ */ (0,
|
|
6341
|
-
/* @__PURE__ */ (0,
|
|
6671
|
+
return /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)("div", { className: ScAppCard_default.scAppCard + " " + className, ...props, children: [
|
|
6672
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("div", { className: ScAppCard_default.iconContainer, children: appIcon }),
|
|
6673
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsxs)("div", { className: ScAppCard_default.textContainer, children: [
|
|
6674
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsxs)("div", { className: ScAppCard_default.title, children: [
|
|
6342
6675
|
appName,
|
|
6343
6676
|
" "
|
|
6344
6677
|
] }),
|
|
6345
|
-
/* @__PURE__ */ (0,
|
|
6678
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsxs)("div", { className: ScAppCard_default.subtitle, children: [
|
|
6346
6679
|
appDescription,
|
|
6347
6680
|
" "
|
|
6348
6681
|
] })
|
|
@@ -6378,19 +6711,19 @@ var ScToggleSwitch_default = {
|
|
|
6378
6711
|
};
|
|
6379
6712
|
|
|
6380
6713
|
// src/SC-toggleSwitch/ScToggleSwitch.tsx
|
|
6381
|
-
var
|
|
6714
|
+
var import_jsx_runtime90 = __toESM(require_jsx_runtime());
|
|
6382
6715
|
var ScToggleSwitch = ({
|
|
6383
6716
|
active = "false",
|
|
6384
6717
|
className,
|
|
6385
6718
|
...props
|
|
6386
6719
|
}) => {
|
|
6387
6720
|
const variantsClassName = ScToggleSwitch_default["active-" + active];
|
|
6388
|
-
return /* @__PURE__ */ (0,
|
|
6721
|
+
return /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
6389
6722
|
"div",
|
|
6390
6723
|
{
|
|
6391
6724
|
className: ScToggleSwitch_default.scToggleSwitch + " " + className + " " + variantsClassName,
|
|
6392
6725
|
...props,
|
|
6393
|
-
children: /* @__PURE__ */ (0,
|
|
6726
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)(
|
|
6394
6727
|
"svg",
|
|
6395
6728
|
{
|
|
6396
6729
|
width: "41",
|
|
@@ -6399,21 +6732,21 @@ var ScToggleSwitch = ({
|
|
|
6399
6732
|
fill: "none",
|
|
6400
6733
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6401
6734
|
children: [
|
|
6402
|
-
/* @__PURE__ */ (0,
|
|
6735
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
6403
6736
|
"path",
|
|
6404
6737
|
{
|
|
6405
6738
|
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",
|
|
6406
6739
|
fill: "var(--alias-fill-neutral-neutral, #1a1a1a)"
|
|
6407
6740
|
}
|
|
6408
6741
|
),
|
|
6409
|
-
/* @__PURE__ */ (0,
|
|
6742
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
6410
6743
|
"path",
|
|
6411
6744
|
{
|
|
6412
6745
|
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",
|
|
6413
6746
|
fill: "var(--alias-border-divider, #242424)"
|
|
6414
6747
|
}
|
|
6415
6748
|
),
|
|
6416
|
-
/* @__PURE__ */ (0,
|
|
6749
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
6417
6750
|
"path",
|
|
6418
6751
|
{
|
|
6419
6752
|
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",
|
|
@@ -6428,7 +6761,7 @@ var ScToggleSwitch = ({
|
|
|
6428
6761
|
};
|
|
6429
6762
|
|
|
6430
6763
|
// src/SC-artifaxInvite/ScArtifaxInvite.tsx
|
|
6431
|
-
var
|
|
6764
|
+
var import_jsx_runtime91 = __toESM(require_jsx_runtime());
|
|
6432
6765
|
var ScArtifaxInvite = ({
|
|
6433
6766
|
active = "true",
|
|
6434
6767
|
appName = "Artifax",
|
|
@@ -6438,22 +6771,22 @@ var ScArtifaxInvite = ({
|
|
|
6438
6771
|
...props
|
|
6439
6772
|
}) => {
|
|
6440
6773
|
const variantsClassName = ScArtifaxInvite_default["active-" + active];
|
|
6441
|
-
return /* @__PURE__ */ (0,
|
|
6774
|
+
return /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)(
|
|
6442
6775
|
"div",
|
|
6443
6776
|
{
|
|
6444
6777
|
className: ScArtifaxInvite_default.scArtifaxInvite + " " + className + " " + variantsClassName,
|
|
6445
6778
|
...props,
|
|
6446
6779
|
children: [
|
|
6447
|
-
/* @__PURE__ */ (0,
|
|
6780
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
6448
6781
|
ScAppCard,
|
|
6449
6782
|
{
|
|
6450
|
-
appIcon: appIcon || /* @__PURE__ */ (0,
|
|
6783
|
+
appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(sicon_artifacts_default, { className: ScArtifaxInvite_default.siconArtifactsInstance }),
|
|
6451
6784
|
appName,
|
|
6452
6785
|
appDescription,
|
|
6453
6786
|
className: ScArtifaxInvite_default.scAppCardInstance
|
|
6454
6787
|
}
|
|
6455
6788
|
),
|
|
6456
|
-
/* @__PURE__ */ (0,
|
|
6789
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
6457
6790
|
ScToggleSwitch,
|
|
6458
6791
|
{
|
|
6459
6792
|
active: "false",
|
|
@@ -6474,22 +6807,22 @@ var ScPhtogenixInvite_default = {
|
|
|
6474
6807
|
};
|
|
6475
6808
|
|
|
6476
6809
|
// src/SC-phtogenixInvite/ScPhtogenixInvite.tsx
|
|
6477
|
-
var
|
|
6810
|
+
var import_jsx_runtime92 = __toESM(require_jsx_runtime());
|
|
6478
6811
|
var ScPhtogenixInvite = ({
|
|
6479
6812
|
active = "true",
|
|
6480
6813
|
scAppCardappDescription = "Info about photogenix",
|
|
6481
6814
|
scAppCardappName = "Photogenix",
|
|
6482
|
-
scAppCardappIcon = /* @__PURE__ */ (0,
|
|
6815
|
+
scAppCardappIcon = /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(sicon_artifacts_default, { className: ScPhtogenixInvite_default.siconArtifactsInstance }),
|
|
6483
6816
|
className,
|
|
6484
6817
|
...props
|
|
6485
6818
|
}) => {
|
|
6486
6819
|
const variantsClassName = ScPhtogenixInvite_default["active-" + active];
|
|
6487
|
-
return /* @__PURE__ */ (0,
|
|
6820
|
+
return /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(
|
|
6488
6821
|
"div",
|
|
6489
6822
|
{
|
|
6490
6823
|
className: ScPhtogenixInvite_default.scPhtogenixInvite + " " + className + " " + variantsClassName,
|
|
6491
6824
|
children: [
|
|
6492
|
-
/* @__PURE__ */ (0,
|
|
6825
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
6493
6826
|
ScAppCard,
|
|
6494
6827
|
{
|
|
6495
6828
|
appIcon: scAppCardappIcon,
|
|
@@ -6498,7 +6831,7 @@ var ScPhtogenixInvite = ({
|
|
|
6498
6831
|
className: ScPhtogenixInvite_default.scAppCardInstance
|
|
6499
6832
|
}
|
|
6500
6833
|
),
|
|
6501
|
-
/* @__PURE__ */ (0,
|
|
6834
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
6502
6835
|
ScToggleSwitch,
|
|
6503
6836
|
{
|
|
6504
6837
|
active: "false",
|
|
@@ -6539,10 +6872,10 @@ var ScOnlyField_default = {
|
|
|
6539
6872
|
};
|
|
6540
6873
|
|
|
6541
6874
|
// src/SC-onlyField/ScOnlyField.tsx
|
|
6542
|
-
var
|
|
6875
|
+
var import_jsx_runtime93 = __toESM(require_jsx_runtime());
|
|
6543
6876
|
var ScOnlyField = ({
|
|
6544
|
-
tfRightIcon = /* @__PURE__ */ (0,
|
|
6545
|
-
tfLeftIcon = /* @__PURE__ */ (0,
|
|
6877
|
+
tfRightIcon = /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_bolt_default, { className: ScOnlyField_default.siconBoltInstance }),
|
|
6878
|
+
tfLeftIcon = /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_bolt_default, { className: ScOnlyField_default.siconBoltInstance }),
|
|
6546
6879
|
state = "default",
|
|
6547
6880
|
tfGroup = "icon-right",
|
|
6548
6881
|
labelGroup = "none",
|
|
@@ -6551,25 +6884,25 @@ var ScOnlyField = ({
|
|
|
6551
6884
|
...props
|
|
6552
6885
|
}) => {
|
|
6553
6886
|
const variantsClassName = ScOnlyField_default["state-" + state] + " " + ScOnlyField_default["tf-group-" + tfGroup] + " " + ScOnlyField_default["label-group-" + labelGroup];
|
|
6554
|
-
return /* @__PURE__ */ (0,
|
|
6887
|
+
return /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
6555
6888
|
"div",
|
|
6556
6889
|
{
|
|
6557
6890
|
className: ScOnlyField_default.scOnlyField + " " + className + " " + variantsClassName,
|
|
6558
6891
|
...props,
|
|
6559
|
-
children: /* @__PURE__ */ (0,
|
|
6560
|
-
(tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0,
|
|
6561
|
-
/* @__PURE__ */ (0,
|
|
6892
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScOnlyField_default.inputContainer, children: [
|
|
6893
|
+
(tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(import_jsx_runtime93.Fragment, { children: tfLeftIcon }),
|
|
6894
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScOnlyField_default.inputText, children: [
|
|
6562
6895
|
placeholderFilled,
|
|
6563
6896
|
" "
|
|
6564
6897
|
] }),
|
|
6565
|
-
(tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0,
|
|
6898
|
+
(tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(import_jsx_runtime93.Fragment, { children: tfRightIcon })
|
|
6566
6899
|
] })
|
|
6567
6900
|
}
|
|
6568
6901
|
);
|
|
6569
6902
|
};
|
|
6570
6903
|
|
|
6571
6904
|
// src/SC-catalogixInvite/ScCatalogixInvite.tsx
|
|
6572
|
-
var
|
|
6905
|
+
var import_jsx_runtime94 = __toESM(require_jsx_runtime());
|
|
6573
6906
|
var ScCatalogixInvite = ({
|
|
6574
6907
|
active = "false",
|
|
6575
6908
|
appName = "Catalogix",
|
|
@@ -6582,23 +6915,23 @@ var ScCatalogixInvite = ({
|
|
|
6582
6915
|
...props
|
|
6583
6916
|
}) => {
|
|
6584
6917
|
const variantsClassName = ScCatalogixInvite_default["active-" + active];
|
|
6585
|
-
return /* @__PURE__ */ (0,
|
|
6918
|
+
return /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(
|
|
6586
6919
|
"div",
|
|
6587
6920
|
{
|
|
6588
6921
|
className: ScCatalogixInvite_default.scCatalogixInvite + " " + className + " " + variantsClassName,
|
|
6589
6922
|
...props,
|
|
6590
6923
|
children: [
|
|
6591
|
-
/* @__PURE__ */ (0,
|
|
6592
|
-
/* @__PURE__ */ (0,
|
|
6924
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScCatalogixInvite_default.appHeader, children: [
|
|
6925
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
6593
6926
|
ScAppCard,
|
|
6594
6927
|
{
|
|
6595
|
-
appIcon: appIcon || /* @__PURE__ */ (0,
|
|
6928
|
+
appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(sicon_artifacts_default, { className: ScCatalogixInvite_default.siconArtifactsInstance }),
|
|
6596
6929
|
appDescription,
|
|
6597
6930
|
appName,
|
|
6598
6931
|
className: ScCatalogixInvite_default.scAppCardInstance
|
|
6599
6932
|
}
|
|
6600
6933
|
),
|
|
6601
|
-
/* @__PURE__ */ (0,
|
|
6934
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
6602
6935
|
ScToggleSwitch,
|
|
6603
6936
|
{
|
|
6604
6937
|
active: "false",
|
|
@@ -6606,67 +6939,67 @@ var ScCatalogixInvite = ({
|
|
|
6606
6939
|
}
|
|
6607
6940
|
)
|
|
6608
6941
|
] }),
|
|
6609
|
-
active === "true" && /* @__PURE__ */ (0,
|
|
6610
|
-
/* @__PURE__ */ (0,
|
|
6611
|
-
/* @__PURE__ */ (0,
|
|
6942
|
+
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: [
|
|
6943
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessHeader, children: [
|
|
6944
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessTitle, children: [
|
|
6612
6945
|
storeAccessTitle,
|
|
6613
6946
|
" "
|
|
6614
6947
|
] }),
|
|
6615
|
-
/* @__PURE__ */ (0,
|
|
6948
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScCatalogixInvite_default.selectedCount, children: [
|
|
6616
6949
|
selectedCount,
|
|
6617
6950
|
" "
|
|
6618
6951
|
] })
|
|
6619
6952
|
] }),
|
|
6620
|
-
/* @__PURE__ */ (0,
|
|
6953
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
6621
6954
|
ScOnlyField,
|
|
6622
6955
|
{
|
|
6623
|
-
tfLeftIcon: /* @__PURE__ */ (0,
|
|
6624
|
-
tfRightIcon: /* @__PURE__ */ (0,
|
|
6956
|
+
tfLeftIcon: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(sicon_Search_default, { className: ScCatalogixInvite_default.siconSearchInstance }),
|
|
6957
|
+
tfRightIcon: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(sicon_Search_default, { className: ScCatalogixInvite_default.siconSearchInstance }),
|
|
6625
6958
|
placeholderFilled: searchPlaceholder,
|
|
6626
6959
|
className: ScCatalogixInvite_default.scOnlyFieldInstance
|
|
6627
6960
|
}
|
|
6628
6961
|
),
|
|
6629
|
-
/* @__PURE__ */ (0,
|
|
6630
|
-
/* @__PURE__ */ (0,
|
|
6962
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScCatalogixInvite_default.storeListContainer, children: [
|
|
6963
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
6631
6964
|
ScPairtext,
|
|
6632
6965
|
{
|
|
6633
|
-
icon: /* @__PURE__ */ (0,
|
|
6966
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
|
|
6634
6967
|
iconPosition: "right",
|
|
6635
6968
|
type: "checkbox",
|
|
6636
6969
|
className: ScCatalogixInvite_default.scPairtextInstance
|
|
6637
6970
|
}
|
|
6638
6971
|
),
|
|
6639
|
-
/* @__PURE__ */ (0,
|
|
6972
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
6640
6973
|
ScPairtext,
|
|
6641
6974
|
{
|
|
6642
|
-
icon: /* @__PURE__ */ (0,
|
|
6975
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
|
|
6643
6976
|
iconPosition: "right",
|
|
6644
6977
|
type: "checkbox",
|
|
6645
6978
|
className: ScCatalogixInvite_default.scPairtextInstance
|
|
6646
6979
|
}
|
|
6647
6980
|
),
|
|
6648
|
-
/* @__PURE__ */ (0,
|
|
6981
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
6649
6982
|
ScPairtext,
|
|
6650
6983
|
{
|
|
6651
|
-
icon: /* @__PURE__ */ (0,
|
|
6984
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
|
|
6652
6985
|
iconPosition: "right",
|
|
6653
6986
|
type: "checkbox",
|
|
6654
6987
|
className: ScCatalogixInvite_default.scPairtextInstance
|
|
6655
6988
|
}
|
|
6656
6989
|
),
|
|
6657
|
-
/* @__PURE__ */ (0,
|
|
6990
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
6658
6991
|
ScPairtext,
|
|
6659
6992
|
{
|
|
6660
|
-
icon: /* @__PURE__ */ (0,
|
|
6993
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
|
|
6661
6994
|
iconPosition: "right",
|
|
6662
6995
|
type: "checkbox",
|
|
6663
6996
|
className: ScCatalogixInvite_default.scPairtextInstance
|
|
6664
6997
|
}
|
|
6665
6998
|
),
|
|
6666
|
-
/* @__PURE__ */ (0,
|
|
6999
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
6667
7000
|
ScPairtext,
|
|
6668
7001
|
{
|
|
6669
|
-
icon: /* @__PURE__ */ (0,
|
|
7002
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
|
|
6670
7003
|
iconPosition: "right",
|
|
6671
7004
|
type: "checkbox",
|
|
6672
7005
|
className: ScCatalogixInvite_default.scPairtextInstance
|
|
@@ -6680,34 +7013,34 @@ var ScCatalogixInvite = ({
|
|
|
6680
7013
|
};
|
|
6681
7014
|
|
|
6682
7015
|
// src/SC-appField/ScAppField.tsx
|
|
6683
|
-
var
|
|
7016
|
+
var import_jsx_runtime95 = __toESM(require_jsx_runtime());
|
|
6684
7017
|
var ScAppField = ({
|
|
6685
7018
|
appFieldTitle = "App permission",
|
|
6686
7019
|
className,
|
|
6687
7020
|
...props
|
|
6688
7021
|
}) => {
|
|
6689
|
-
return /* @__PURE__ */ (0,
|
|
6690
|
-
/* @__PURE__ */ (0,
|
|
7022
|
+
return /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)("div", { className: ScAppField_default.scAppField + " " + className, ...props, children: [
|
|
7023
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)("div", { className: ScAppField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)("div", { className: ScAppField_default.title, children: [
|
|
6691
7024
|
appFieldTitle,
|
|
6692
7025
|
" "
|
|
6693
7026
|
] }) }),
|
|
6694
|
-
/* @__PURE__ */ (0,
|
|
6695
|
-
/* @__PURE__ */ (0,
|
|
7027
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsxs)("div", { className: ScAppField_default.inputContainer, children: [
|
|
7028
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
6696
7029
|
ScArtifaxInvite,
|
|
6697
7030
|
{
|
|
6698
7031
|
className: ScAppField_default.scArtifaxInviteInstance
|
|
6699
7032
|
}
|
|
6700
7033
|
),
|
|
6701
|
-
/* @__PURE__ */ (0,
|
|
7034
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
6702
7035
|
ScPhtogenixInvite,
|
|
6703
7036
|
{
|
|
6704
7037
|
scAppCardappDescription: "Info about photogenix",
|
|
6705
7038
|
scAppCardappName: "Photogenix",
|
|
6706
|
-
scAppCardappIcon: /* @__PURE__ */ (0,
|
|
7039
|
+
scAppCardappIcon: /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(sicon_photogenix_default, { className: ScAppField_default.siconPhotogenixInstance }),
|
|
6707
7040
|
className: ScAppField_default.scPhtogenixInviteInstance
|
|
6708
7041
|
}
|
|
6709
7042
|
),
|
|
6710
|
-
/* @__PURE__ */ (0,
|
|
7043
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
6711
7044
|
ScCatalogixInvite,
|
|
6712
7045
|
{
|
|
6713
7046
|
active: "true",
|
|
@@ -6727,13 +7060,13 @@ var ScBillingHistoryHeader_default = {
|
|
|
6727
7060
|
};
|
|
6728
7061
|
|
|
6729
7062
|
// src/SC-billingHistoryHeader/ScBillingHistoryHeader.tsx
|
|
6730
|
-
var
|
|
7063
|
+
var import_jsx_runtime96 = __toESM(require_jsx_runtime());
|
|
6731
7064
|
var ScBillingHistoryHeader = ({
|
|
6732
7065
|
className,
|
|
6733
7066
|
...props
|
|
6734
7067
|
}) => {
|
|
6735
|
-
return /* @__PURE__ */ (0,
|
|
6736
|
-
/* @__PURE__ */ (0,
|
|
7068
|
+
return /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
|
|
7069
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
6737
7070
|
ScHeader,
|
|
6738
7071
|
{
|
|
6739
7072
|
text: "Invoice",
|
|
@@ -6741,7 +7074,7 @@ var ScBillingHistoryHeader = ({
|
|
|
6741
7074
|
className: ScBillingHistoryHeader_default.scHeaderInstance
|
|
6742
7075
|
}
|
|
6743
7076
|
),
|
|
6744
|
-
/* @__PURE__ */ (0,
|
|
7077
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
6745
7078
|
ScHeader,
|
|
6746
7079
|
{
|
|
6747
7080
|
text: "Amount",
|
|
@@ -6749,7 +7082,7 @@ var ScBillingHistoryHeader = ({
|
|
|
6749
7082
|
className: ScBillingHistoryHeader_default.scHeaderInstance2
|
|
6750
7083
|
}
|
|
6751
7084
|
),
|
|
6752
|
-
/* @__PURE__ */ (0,
|
|
7085
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
6753
7086
|
ScHeader,
|
|
6754
7087
|
{
|
|
6755
7088
|
text: "Date",
|
|
@@ -6757,7 +7090,7 @@ var ScBillingHistoryHeader = ({
|
|
|
6757
7090
|
className: ScBillingHistoryHeader_default.scHeaderInstance2
|
|
6758
7091
|
}
|
|
6759
7092
|
),
|
|
6760
|
-
/* @__PURE__ */ (0,
|
|
7093
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
6761
7094
|
ScHeader,
|
|
6762
7095
|
{
|
|
6763
7096
|
text: "Action",
|
|
@@ -6778,30 +7111,30 @@ var ScCheckField_default = {
|
|
|
6778
7111
|
};
|
|
6779
7112
|
|
|
6780
7113
|
// src/SC-checkField/ScCheckField.tsx
|
|
6781
|
-
var
|
|
7114
|
+
var import_jsx_runtime97 = __toESM(require_jsx_runtime());
|
|
6782
7115
|
var ScCheckField = ({
|
|
6783
7116
|
label = "Label",
|
|
6784
7117
|
className,
|
|
6785
7118
|
...props
|
|
6786
7119
|
}) => {
|
|
6787
|
-
return /* @__PURE__ */ (0,
|
|
6788
|
-
/* @__PURE__ */ (0,
|
|
7120
|
+
return /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: ScCheckField_default.scCheckField + " " + className, ...props, children: [
|
|
7121
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)("div", { className: ScCheckField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: ScCheckField_default.label, children: [
|
|
6789
7122
|
label,
|
|
6790
7123
|
" "
|
|
6791
7124
|
] }) }),
|
|
6792
|
-
/* @__PURE__ */ (0,
|
|
6793
|
-
/* @__PURE__ */ (0,
|
|
7125
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: ScCheckField_default.tabSwitcher, children: [
|
|
7126
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
6794
7127
|
ScPairtext,
|
|
6795
7128
|
{
|
|
6796
|
-
icon: /* @__PURE__ */ (0,
|
|
7129
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(sicon_Home_default, { className: ScCheckField_default.siconHomeInstance }),
|
|
6797
7130
|
type: "checkbox",
|
|
6798
7131
|
className: ScCheckField_default.scPairtextInstance
|
|
6799
7132
|
}
|
|
6800
7133
|
),
|
|
6801
|
-
/* @__PURE__ */ (0,
|
|
7134
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
6802
7135
|
ScPairtext,
|
|
6803
7136
|
{
|
|
6804
|
-
icon: /* @__PURE__ */ (0,
|
|
7137
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(sicon_Home_default, { className: ScCheckField_default.siconHomeInstance }),
|
|
6805
7138
|
type: "checkbox",
|
|
6806
7139
|
className: ScCheckField_default.scPairtextInstance
|
|
6807
7140
|
}
|
|
@@ -6821,9 +7154,9 @@ var ScFieldButton_default = {
|
|
|
6821
7154
|
};
|
|
6822
7155
|
|
|
6823
7156
|
// src/SC-fieldButton/ScFieldButton.tsx
|
|
6824
|
-
var
|
|
7157
|
+
var import_jsx_runtime98 = __toESM(require_jsx_runtime());
|
|
6825
7158
|
var ScFieldButton = ({
|
|
6826
|
-
icon = /* @__PURE__ */ (0,
|
|
7159
|
+
icon = /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(sicon_Home_default, { className: ScFieldButton_default.siconHomeInstance }),
|
|
6827
7160
|
type = "default",
|
|
6828
7161
|
state = "default",
|
|
6829
7162
|
className,
|
|
@@ -6831,18 +7164,18 @@ var ScFieldButton = ({
|
|
|
6831
7164
|
...props
|
|
6832
7165
|
}) => {
|
|
6833
7166
|
const variantsClassName = ScFieldButton_default["type-" + type] + " " + ScFieldButton_default["state-" + state];
|
|
6834
|
-
return /* @__PURE__ */ (0,
|
|
7167
|
+
return /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
6835
7168
|
"div",
|
|
6836
7169
|
{
|
|
6837
7170
|
className: ScFieldButton_default.scFieldButton + " " + className + " " + variantsClassName,
|
|
6838
7171
|
...props,
|
|
6839
|
-
children: /* @__PURE__ */ (0,
|
|
6840
|
-
(type === "icon-right" || type === "only-icon") && /* @__PURE__ */ (0,
|
|
6841
|
-
(type === "icon-left" || type === "default" || type === "icon-right") && /* @__PURE__ */ (0,
|
|
7172
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)("div", { className: ScFieldButton_default.container, children: [
|
|
7173
|
+
(type === "icon-right" || type === "only-icon") && /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(import_jsx_runtime98.Fragment, { children: icon }),
|
|
7174
|
+
(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: [
|
|
6842
7175
|
text,
|
|
6843
7176
|
" "
|
|
6844
7177
|
] }) }),
|
|
6845
|
-
type === "icon-left" && /* @__PURE__ */ (0,
|
|
7178
|
+
type === "icon-left" && /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(import_jsx_runtime98.Fragment, { children: icon })
|
|
6846
7179
|
] })
|
|
6847
7180
|
}
|
|
6848
7181
|
);
|
|
@@ -6856,16 +7189,16 @@ var ScPendingAction_default = {
|
|
|
6856
7189
|
};
|
|
6857
7190
|
|
|
6858
7191
|
// src/SC-pendingAction/ScPendingAction.tsx
|
|
6859
|
-
var
|
|
7192
|
+
var import_jsx_runtime99 = __toESM(require_jsx_runtime());
|
|
6860
7193
|
var ScPendingAction = ({
|
|
6861
7194
|
className,
|
|
6862
7195
|
...props
|
|
6863
7196
|
}) => {
|
|
6864
|
-
return /* @__PURE__ */ (0,
|
|
6865
|
-
/* @__PURE__ */ (0,
|
|
7197
|
+
return /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
|
|
7198
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
6866
7199
|
ScButton,
|
|
6867
7200
|
{
|
|
6868
|
-
icon: /* @__PURE__ */ (0,
|
|
7201
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(sicon_Home_default, { className: ScPendingAction_default.siconHomeInstance }),
|
|
6869
7202
|
text: "Cancel",
|
|
6870
7203
|
variant: "error",
|
|
6871
7204
|
type: "tertiary",
|
|
@@ -6873,11 +7206,11 @@ var ScPendingAction = ({
|
|
|
6873
7206
|
className: ScPendingAction_default.scButtonInstance
|
|
6874
7207
|
}
|
|
6875
7208
|
),
|
|
6876
|
-
/* @__PURE__ */ (0,
|
|
6877
|
-
/* @__PURE__ */ (0,
|
|
7209
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsx)(ScVDivider, { className: ScPendingAction_default.scVDividerInstance }),
|
|
7210
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
6878
7211
|
ScButton,
|
|
6879
7212
|
{
|
|
6880
|
-
icon: /* @__PURE__ */ (0,
|
|
7213
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(sicon_Home_default, { className: ScPendingAction_default.siconHomeInstance }),
|
|
6881
7214
|
text: "Resend",
|
|
6882
7215
|
variant: "tertiary",
|
|
6883
7216
|
size: "sm",
|
|
@@ -6900,7 +7233,7 @@ var ScQuickPrompt_default = {
|
|
|
6900
7233
|
};
|
|
6901
7234
|
|
|
6902
7235
|
// src/SC-quick prompt/ScQuickPrompt.tsx
|
|
6903
|
-
var
|
|
7236
|
+
var import_jsx_runtime100 = __toESM(require_jsx_runtime());
|
|
6904
7237
|
var ScQuickPrompt = ({
|
|
6905
7238
|
appName = "Photogenix",
|
|
6906
7239
|
heading = "Swap Model and Background",
|
|
@@ -6908,20 +7241,20 @@ var ScQuickPrompt = ({
|
|
|
6908
7241
|
className,
|
|
6909
7242
|
...props
|
|
6910
7243
|
}) => {
|
|
6911
|
-
return /* @__PURE__ */ (0,
|
|
6912
|
-
/* @__PURE__ */ (0,
|
|
6913
|
-
/* @__PURE__ */ (0,
|
|
6914
|
-
/* @__PURE__ */ (0,
|
|
7244
|
+
return /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { className: ScQuickPrompt_default.scQuickPrompt + " " + className, ...props, children: [
|
|
7245
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { className: ScQuickPrompt_default.header, children: [
|
|
7246
|
+
/* @__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 }) }),
|
|
7247
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)("div", { className: ScQuickPrompt_default.titleContainer, children: /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { className: ScQuickPrompt_default.title, children: [
|
|
6915
7248
|
appName,
|
|
6916
7249
|
" "
|
|
6917
7250
|
] }) })
|
|
6918
7251
|
] }),
|
|
6919
|
-
/* @__PURE__ */ (0,
|
|
6920
|
-
/* @__PURE__ */ (0,
|
|
7252
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { className: ScQuickPrompt_default.body, children: [
|
|
7253
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { className: ScQuickPrompt_default.heading, children: [
|
|
6921
7254
|
heading,
|
|
6922
7255
|
" "
|
|
6923
7256
|
] }),
|
|
6924
|
-
/* @__PURE__ */ (0,
|
|
7257
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { className: ScQuickPrompt_default.description, children: [
|
|
6925
7258
|
description,
|
|
6926
7259
|
" "
|
|
6927
7260
|
] })
|
|
@@ -6938,13 +7271,13 @@ var ScReferralTableHeader_default = {
|
|
|
6938
7271
|
};
|
|
6939
7272
|
|
|
6940
7273
|
// src/SC-referralTableHeader/ScReferralTableHeader.tsx
|
|
6941
|
-
var
|
|
7274
|
+
var import_jsx_runtime101 = __toESM(require_jsx_runtime());
|
|
6942
7275
|
var ScReferralTableHeader = ({
|
|
6943
7276
|
className,
|
|
6944
7277
|
...props
|
|
6945
7278
|
}) => {
|
|
6946
|
-
return /* @__PURE__ */ (0,
|
|
6947
|
-
/* @__PURE__ */ (0,
|
|
7279
|
+
return /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
|
|
7280
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
6948
7281
|
ScHeader,
|
|
6949
7282
|
{
|
|
6950
7283
|
text: "User",
|
|
@@ -6952,7 +7285,7 @@ var ScReferralTableHeader = ({
|
|
|
6952
7285
|
className: ScReferralTableHeader_default.scHeaderInstance
|
|
6953
7286
|
}
|
|
6954
7287
|
),
|
|
6955
|
-
/* @__PURE__ */ (0,
|
|
7288
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
6956
7289
|
ScHeader,
|
|
6957
7290
|
{
|
|
6958
7291
|
text: "Date",
|
|
@@ -6960,7 +7293,7 @@ var ScReferralTableHeader = ({
|
|
|
6960
7293
|
className: ScReferralTableHeader_default.scHeaderInstance2
|
|
6961
7294
|
}
|
|
6962
7295
|
),
|
|
6963
|
-
/* @__PURE__ */ (0,
|
|
7296
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
6964
7297
|
ScHeader,
|
|
6965
7298
|
{
|
|
6966
7299
|
text: "Status",
|
|
@@ -6968,7 +7301,7 @@ var ScReferralTableHeader = ({
|
|
|
6968
7301
|
className: ScReferralTableHeader_default.scHeaderInstance3
|
|
6969
7302
|
}
|
|
6970
7303
|
),
|
|
6971
|
-
/* @__PURE__ */ (0,
|
|
7304
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
6972
7305
|
ScHeader,
|
|
6973
7306
|
{
|
|
6974
7307
|
text: "Reward",
|
|
@@ -6989,7 +7322,7 @@ var ScReferralTableList_default = {
|
|
|
6989
7322
|
};
|
|
6990
7323
|
|
|
6991
7324
|
// src/SC-referralTableList/ScReferralTableList.tsx
|
|
6992
|
-
var
|
|
7325
|
+
var import_jsx_runtime102 = __toESM(require_jsx_runtime());
|
|
6993
7326
|
var ScReferralTableList = ({
|
|
6994
7327
|
userEmail = "chris@kepler.com",
|
|
6995
7328
|
userName,
|
|
@@ -6999,8 +7332,8 @@ var ScReferralTableList = ({
|
|
|
6999
7332
|
className,
|
|
7000
7333
|
...props
|
|
7001
7334
|
}) => {
|
|
7002
|
-
return /* @__PURE__ */ (0,
|
|
7003
|
-
/* @__PURE__ */ (0,
|
|
7335
|
+
return /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
|
|
7336
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
7004
7337
|
ScProfile,
|
|
7005
7338
|
{
|
|
7006
7339
|
subText: userEmail,
|
|
@@ -7008,12 +7341,12 @@ var ScReferralTableList = ({
|
|
|
7008
7341
|
className: ScReferralTableList_default.scProfileInstance
|
|
7009
7342
|
}
|
|
7010
7343
|
),
|
|
7011
|
-
/* @__PURE__ */ (0,
|
|
7344
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)("div", { className: ScReferralTableList_default.date, children: [
|
|
7012
7345
|
date,
|
|
7013
7346
|
" "
|
|
7014
7347
|
] }),
|
|
7015
|
-
/* @__PURE__ */ (0,
|
|
7016
|
-
/* @__PURE__ */ (0,
|
|
7348
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)(ScBadges, { text: status, className: ScReferralTableList_default.scBadgesInstance }),
|
|
7349
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)("div", { className: ScReferralTableList_default.points, children: [
|
|
7017
7350
|
points,
|
|
7018
7351
|
" "
|
|
7019
7352
|
] })
|
|
@@ -7027,33 +7360,33 @@ var ScSettingsNav_default = {
|
|
|
7027
7360
|
};
|
|
7028
7361
|
|
|
7029
7362
|
// src/SC-settingsNav/ScSettingsNav.tsx
|
|
7030
|
-
var
|
|
7363
|
+
var import_jsx_runtime103 = __toESM(require_jsx_runtime());
|
|
7031
7364
|
var ScSettingsNav = ({
|
|
7032
7365
|
className,
|
|
7033
7366
|
...props
|
|
7034
7367
|
}) => {
|
|
7035
|
-
return /* @__PURE__ */ (0,
|
|
7036
|
-
/* @__PURE__ */ (0,
|
|
7368
|
+
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: [
|
|
7369
|
+
/* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
7037
7370
|
ScSidebarMenu,
|
|
7038
7371
|
{
|
|
7039
|
-
icon: /* @__PURE__ */ (0,
|
|
7372
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(sicon_team_default, { className: ScSettingsNav_default.siconTeamInstance }),
|
|
7040
7373
|
text: "Profile",
|
|
7041
7374
|
state: "active",
|
|
7042
7375
|
className: ScSettingsNav_default.scSidebarMenuInstance
|
|
7043
7376
|
}
|
|
7044
7377
|
),
|
|
7045
|
-
/* @__PURE__ */ (0,
|
|
7378
|
+
/* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
7046
7379
|
ScSidebarMenu,
|
|
7047
7380
|
{
|
|
7048
|
-
icon: /* @__PURE__ */ (0,
|
|
7381
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(sicon_workspace_default, { className: ScSettingsNav_default.siconWorkspaceInstance }),
|
|
7049
7382
|
text: "Workspace",
|
|
7050
7383
|
className: ScSettingsNav_default.scSidebarMenuInstance
|
|
7051
7384
|
}
|
|
7052
7385
|
),
|
|
7053
|
-
/* @__PURE__ */ (0,
|
|
7386
|
+
/* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
7054
7387
|
ScSidebarMenu,
|
|
7055
7388
|
{
|
|
7056
|
-
icon: /* @__PURE__ */ (0,
|
|
7389
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(sicon_referral_default, { className: ScSettingsNav_default.siconReferralInstance }),
|
|
7057
7390
|
text: "Referral",
|
|
7058
7391
|
className: ScSettingsNav_default.scSidebarMenuInstance
|
|
7059
7392
|
}
|
|
@@ -7069,18 +7402,18 @@ var ScTabField_default = {
|
|
|
7069
7402
|
};
|
|
7070
7403
|
|
|
7071
7404
|
// src/SC-tabField/ScTabField.tsx
|
|
7072
|
-
var
|
|
7405
|
+
var import_jsx_runtime104 = __toESM(require_jsx_runtime());
|
|
7073
7406
|
var ScTabField = ({
|
|
7074
7407
|
label = "Label",
|
|
7075
7408
|
className,
|
|
7076
7409
|
...props
|
|
7077
7410
|
}) => {
|
|
7078
|
-
return /* @__PURE__ */ (0,
|
|
7079
|
-
/* @__PURE__ */ (0,
|
|
7411
|
+
return /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: ScTabField_default.scTabField + " " + className, children: [
|
|
7412
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: ScTabField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: ScTabField_default.label, children: [
|
|
7080
7413
|
label,
|
|
7081
7414
|
" "
|
|
7082
7415
|
] }) }),
|
|
7083
|
-
/* @__PURE__ */ (0,
|
|
7416
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(ScTabSwitcher, { className: ScTabField_default.scTabSwitcherInstance })
|
|
7084
7417
|
] });
|
|
7085
7418
|
};
|
|
7086
7419
|
|
|
@@ -7097,19 +7430,19 @@ var ScTableHeader_default = {
|
|
|
7097
7430
|
};
|
|
7098
7431
|
|
|
7099
7432
|
// src/SC-tableHeader/ScTableHeader.tsx
|
|
7100
|
-
var
|
|
7433
|
+
var import_jsx_runtime105 = __toESM(require_jsx_runtime());
|
|
7101
7434
|
var ScTableHeader = ({
|
|
7102
7435
|
type = "default",
|
|
7103
7436
|
className,
|
|
7104
7437
|
...props
|
|
7105
7438
|
}) => {
|
|
7106
7439
|
const variantsClassName = ScTableHeader_default["type-" + type];
|
|
7107
|
-
return /* @__PURE__ */ (0,
|
|
7440
|
+
return /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(
|
|
7108
7441
|
"div",
|
|
7109
7442
|
{
|
|
7110
7443
|
className: ScTableHeader_default.scTableHeader + " " + className + " " + variantsClassName,
|
|
7111
7444
|
children: [
|
|
7112
|
-
/* @__PURE__ */ (0,
|
|
7445
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
7113
7446
|
ScHeader,
|
|
7114
7447
|
{
|
|
7115
7448
|
text: "User",
|
|
@@ -7117,7 +7450,7 @@ var ScTableHeader = ({
|
|
|
7117
7450
|
className: ScTableHeader_default.scHeaderInstance
|
|
7118
7451
|
}
|
|
7119
7452
|
),
|
|
7120
|
-
/* @__PURE__ */ (0,
|
|
7453
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
7121
7454
|
ScHeader,
|
|
7122
7455
|
{
|
|
7123
7456
|
text: "Role",
|
|
@@ -7125,7 +7458,7 @@ var ScTableHeader = ({
|
|
|
7125
7458
|
className: ScTableHeader_default.scHeaderInstance2
|
|
7126
7459
|
}
|
|
7127
7460
|
),
|
|
7128
|
-
/* @__PURE__ */ (0,
|
|
7461
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
7129
7462
|
ScHeader,
|
|
7130
7463
|
{
|
|
7131
7464
|
text: "Access",
|
|
@@ -7133,7 +7466,7 @@ var ScTableHeader = ({
|
|
|
7133
7466
|
className: ScTableHeader_default.scHeaderInstance3
|
|
7134
7467
|
}
|
|
7135
7468
|
),
|
|
7136
|
-
/* @__PURE__ */ (0,
|
|
7469
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
7137
7470
|
ScHeader,
|
|
7138
7471
|
{
|
|
7139
7472
|
text: "Invited by",
|
|
@@ -7141,7 +7474,7 @@ var ScTableHeader = ({
|
|
|
7141
7474
|
className: ScTableHeader_default.scHeaderInstance4
|
|
7142
7475
|
}
|
|
7143
7476
|
),
|
|
7144
|
-
type === "pending" && /* @__PURE__ */ (0,
|
|
7477
|
+
type === "pending" && /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(import_jsx_runtime105.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
7145
7478
|
ScHeader,
|
|
7146
7479
|
{
|
|
7147
7480
|
text: "Invite action",
|
|
@@ -7149,7 +7482,7 @@ var ScTableHeader = ({
|
|
|
7149
7482
|
className: ScTableHeader_default.scHeaderInstance5
|
|
7150
7483
|
}
|
|
7151
7484
|
) }),
|
|
7152
|
-
type === "default" && /* @__PURE__ */ (0,
|
|
7485
|
+
type === "default" && /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(import_jsx_runtime105.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
7153
7486
|
ScHeader,
|
|
7154
7487
|
{
|
|
7155
7488
|
text: "Signed On",
|
|
@@ -7181,7 +7514,7 @@ var ScTableList_default = {
|
|
|
7181
7514
|
};
|
|
7182
7515
|
|
|
7183
7516
|
// src/SC-tableList/ScTableList.tsx
|
|
7184
|
-
var
|
|
7517
|
+
var import_jsx_runtime106 = __toESM(require_jsx_runtime());
|
|
7185
7518
|
var ScTableList = ({
|
|
7186
7519
|
invitedBy = "Rohan",
|
|
7187
7520
|
signedOn = "Nov 9th, 2025",
|
|
@@ -7193,51 +7526,51 @@ var ScTableList = ({
|
|
|
7193
7526
|
...props
|
|
7194
7527
|
}) => {
|
|
7195
7528
|
const variantsClassName = ScTableList_default["hover-" + hover] + " " + ScTableList_default["variant-" + variant];
|
|
7196
|
-
return /* @__PURE__ */ (0,
|
|
7529
|
+
return /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(
|
|
7197
7530
|
"div",
|
|
7198
7531
|
{
|
|
7199
7532
|
className: ScTableList_default.scTableList + " " + className + " " + variantsClassName,
|
|
7200
7533
|
onClick: (e) => onRowClick && onRowClick(invitedBy, e),
|
|
7201
7534
|
...props,
|
|
7202
7535
|
children: [
|
|
7203
|
-
/* @__PURE__ */ (0,
|
|
7536
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
7204
7537
|
ScProfile,
|
|
7205
7538
|
{
|
|
7206
7539
|
subText: userEmail,
|
|
7207
7540
|
className: ScTableList_default.scProfileInstance
|
|
7208
7541
|
}
|
|
7209
7542
|
),
|
|
7210
|
-
/* @__PURE__ */ (0,
|
|
7211
|
-
/* @__PURE__ */ (0,
|
|
7212
|
-
/* @__PURE__ */ (0,
|
|
7543
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(ScRole, { className: ScTableList_default.scRoleInstance }),
|
|
7544
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("div", { className: ScTableList_default.accessInfo, children: [
|
|
7545
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
7213
7546
|
ScAccess,
|
|
7214
7547
|
{
|
|
7215
|
-
component: /* @__PURE__ */ (0,
|
|
7216
|
-
component2: /* @__PURE__ */ (0,
|
|
7548
|
+
component: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(sicon_artifacts_default, { className: ScTableList_default.siconArtifactsInstance }),
|
|
7549
|
+
component2: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(sicon_photogenix_default, { className: ScTableList_default.siconPhotogenixInstance }),
|
|
7217
7550
|
className: ScTableList_default.scAccessInstance
|
|
7218
7551
|
}
|
|
7219
7552
|
),
|
|
7220
|
-
/* @__PURE__ */ (0,
|
|
7553
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
7221
7554
|
ScAccess,
|
|
7222
7555
|
{
|
|
7223
|
-
component: /* @__PURE__ */ (0,
|
|
7224
|
-
component2: /* @__PURE__ */ (0,
|
|
7556
|
+
component: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(sicon_userAdd_default, { className: ScTableList_default.siconUserAddInstance }),
|
|
7557
|
+
component2: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(sicon_Coins_default, { className: ScTableList_default.siconCoinsInstance }),
|
|
7225
7558
|
visibleSiconCatalogix: false,
|
|
7226
7559
|
className: ScTableList_default.scAccessInstance
|
|
7227
7560
|
}
|
|
7228
7561
|
)
|
|
7229
7562
|
] }),
|
|
7230
|
-
/* @__PURE__ */ (0,
|
|
7563
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("div", { className: ScTableList_default.userName, children: [
|
|
7231
7564
|
invitedBy,
|
|
7232
7565
|
" "
|
|
7233
7566
|
] }),
|
|
7234
|
-
variant === "pending" && /* @__PURE__ */ (0,
|
|
7567
|
+
variant === "pending" && /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(import_jsx_runtime106.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
7235
7568
|
ScPendingAction,
|
|
7236
7569
|
{
|
|
7237
7570
|
className: ScTableList_default.scPendingActionInstance
|
|
7238
7571
|
}
|
|
7239
7572
|
) }),
|
|
7240
|
-
variant === "active" && /* @__PURE__ */ (0,
|
|
7573
|
+
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: [
|
|
7241
7574
|
signedOn,
|
|
7242
7575
|
" "
|
|
7243
7576
|
] }) })
|
|
@@ -7266,7 +7599,7 @@ var ScWorkspaceCard_default = {
|
|
|
7266
7599
|
};
|
|
7267
7600
|
|
|
7268
7601
|
// src/SC-workspaceCard/ScWorkspaceCard.tsx
|
|
7269
|
-
var
|
|
7602
|
+
var import_jsx_runtime107 = __toESM(require_jsx_runtime());
|
|
7270
7603
|
var ScWorkspaceCard = ({
|
|
7271
7604
|
workspaceName = "Stores",
|
|
7272
7605
|
role = "Admin",
|
|
@@ -7276,21 +7609,21 @@ var ScWorkspaceCard = ({
|
|
|
7276
7609
|
className,
|
|
7277
7610
|
...props
|
|
7278
7611
|
}) => {
|
|
7279
|
-
return /* @__PURE__ */ (0,
|
|
7280
|
-
/* @__PURE__ */ (0,
|
|
7281
|
-
/* @__PURE__ */ (0,
|
|
7612
|
+
return /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("div", { className: ScWorkspaceCard_default.scWorkspaceCard + " " + className, ...props, children: [
|
|
7613
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("div", { className: ScWorkspaceCard_default.workspaceInfo, children: [
|
|
7614
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
7282
7615
|
ScIntialProfileCover,
|
|
7283
7616
|
{
|
|
7284
7617
|
className: ScWorkspaceCard_default.scIntialProfileCoverInstance
|
|
7285
7618
|
}
|
|
7286
7619
|
),
|
|
7287
|
-
/* @__PURE__ */ (0,
|
|
7620
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("div", { className: ScWorkspaceCard_default.workspaceName, children: [
|
|
7288
7621
|
workspaceName,
|
|
7289
7622
|
" "
|
|
7290
7623
|
] })
|
|
7291
7624
|
] }),
|
|
7292
|
-
/* @__PURE__ */ (0,
|
|
7293
|
-
/* @__PURE__ */ (0,
|
|
7625
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("div", { className: ScWorkspaceCard_default.userInfo, children: [
|
|
7626
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
7294
7627
|
ScBadges,
|
|
7295
7628
|
{
|
|
7296
7629
|
text: role,
|
|
@@ -7298,41 +7631,41 @@ var ScWorkspaceCard = ({
|
|
|
7298
7631
|
className: ScWorkspaceCard_default.scBadgesInstance
|
|
7299
7632
|
}
|
|
7300
7633
|
),
|
|
7301
|
-
/* @__PURE__ */ (0,
|
|
7302
|
-
/* @__PURE__ */ (0,
|
|
7634
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("div", { className: ScWorkspaceCard_default.userDetails, children: [
|
|
7635
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
7303
7636
|
ScPairtext,
|
|
7304
7637
|
{
|
|
7305
|
-
icon: /* @__PURE__ */ (0,
|
|
7638
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(sicon_team_default, { className: ScWorkspaceCard_default.siconTeamInstance }),
|
|
7306
7639
|
content: userCount,
|
|
7307
7640
|
className: ScWorkspaceCard_default.scPairtextInstance
|
|
7308
7641
|
}
|
|
7309
7642
|
),
|
|
7310
|
-
/* @__PURE__ */ (0,
|
|
7311
|
-
/* @__PURE__ */ (0,
|
|
7643
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsx)(ScVDivider, { className: ScWorkspaceCard_default.scVDividerInstance }),
|
|
7644
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
7312
7645
|
ScPairtext,
|
|
7313
7646
|
{
|
|
7314
|
-
icon: /* @__PURE__ */ (0,
|
|
7647
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(sicon_Crown_default, { className: ScWorkspaceCard_default.siconCrownInstance }),
|
|
7315
7648
|
content: ownerEmail,
|
|
7316
7649
|
className: ScWorkspaceCard_default.scPairtextInstance
|
|
7317
7650
|
}
|
|
7318
7651
|
)
|
|
7319
7652
|
] })
|
|
7320
7653
|
] }),
|
|
7321
|
-
/* @__PURE__ */ (0,
|
|
7654
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
7322
7655
|
ScButton,
|
|
7323
7656
|
{
|
|
7324
|
-
icon: /* @__PURE__ */ (0,
|
|
7657
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(sicon_switch_default, { className: ScWorkspaceCard_default.siconSwitchInstance }),
|
|
7325
7658
|
text: buttonText,
|
|
7326
7659
|
state: "disabled",
|
|
7327
7660
|
variant: "outline",
|
|
7328
7661
|
className: ScWorkspaceCard_default.scButtonInstance
|
|
7329
7662
|
}
|
|
7330
7663
|
),
|
|
7331
|
-
/* @__PURE__ */ (0,
|
|
7664
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
7332
7665
|
ScButton,
|
|
7333
7666
|
{
|
|
7334
7667
|
text: "Leave workspace",
|
|
7335
|
-
icon: /* @__PURE__ */ (0,
|
|
7668
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(sicon_logout_default, { className: ScWorkspaceCard_default.siconLogoutInstance }),
|
|
7336
7669
|
styleVariant: "icon-only",
|
|
7337
7670
|
variant: "error",
|
|
7338
7671
|
className: ScWorkspaceCard_default.scButtonInstance2
|