@streamoid/ui 0.4.6 → 0.4.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +94 -0
- package/dist/index.d.mts +8 -1
- package/dist/index.d.ts +8 -1
- package/dist/index.js +384 -344
- package/dist/index.mjs +384 -344
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -35,6 +35,7 @@ __export(index_exports, {
|
|
|
35
35
|
ScBillingHistoryTableList: () => ScBillingHistoryTableList,
|
|
36
36
|
ScBillingLogsTableHeader: () => ScBillingLogsTableHeader,
|
|
37
37
|
ScBillingLogsTableList: () => ScBillingLogsTableList,
|
|
38
|
+
ScBriefCard: () => ScBriefCard,
|
|
38
39
|
ScButton: () => ScButton,
|
|
39
40
|
ScCalendar: () => ScCalendar,
|
|
40
41
|
ScCalendarDateComps: () => ScCalendarDateComps,
|
|
@@ -4288,6 +4289,45 @@ var ScAppCardV3 = ({
|
|
|
4288
4289
|
);
|
|
4289
4290
|
};
|
|
4290
4291
|
|
|
4292
|
+
// src/SC-BriefCard/ScBriefCard.module.css
|
|
4293
|
+
var ScBriefCard_default = {
|
|
4294
|
+
scBriefCard: "ScBriefCard_scBriefCard",
|
|
4295
|
+
cardBorder: "ScBriefCard_cardBorder",
|
|
4296
|
+
scBriefCardActive: "ScBriefCard_scBriefCardActive",
|
|
4297
|
+
glow: "ScBriefCard_glow",
|
|
4298
|
+
glowHover: "ScBriefCard_glowHover",
|
|
4299
|
+
body: "ScBriefCard_body",
|
|
4300
|
+
description: "ScBriefCard_description"
|
|
4301
|
+
};
|
|
4302
|
+
|
|
4303
|
+
// src/SC-BriefCard/ScBriefCard.tsx
|
|
4304
|
+
var import_jsx_runtime50 = require("react/jsx-runtime");
|
|
4305
|
+
var ScBriefCard = ({
|
|
4306
|
+
description = "Centralized product and asset management for every storefront",
|
|
4307
|
+
active = false,
|
|
4308
|
+
className,
|
|
4309
|
+
style,
|
|
4310
|
+
...props
|
|
4311
|
+
}) => {
|
|
4312
|
+
const cardClass = [
|
|
4313
|
+
ScBriefCard_default.scBriefCard,
|
|
4314
|
+
active ? ScBriefCard_default.scBriefCardActive : ""
|
|
4315
|
+
].filter(Boolean).join(" ");
|
|
4316
|
+
return /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
4317
|
+
"div",
|
|
4318
|
+
{
|
|
4319
|
+
className: [ScBriefCard_default.cardBorder, className || ""].filter(Boolean).join(" "),
|
|
4320
|
+
style,
|
|
4321
|
+
...props,
|
|
4322
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", { className: cardClass, children: [
|
|
4323
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("div", { className: ScBriefCard_default.glow }),
|
|
4324
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("div", { className: ScBriefCard_default.glowHover }),
|
|
4325
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("div", { className: ScBriefCard_default.body, children: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("p", { className: ScBriefCard_default.description, children: description }) })
|
|
4326
|
+
] })
|
|
4327
|
+
}
|
|
4328
|
+
);
|
|
4329
|
+
};
|
|
4330
|
+
|
|
4291
4331
|
// src/SC-appField/ScAppField.module.css
|
|
4292
4332
|
var ScAppField_default = {
|
|
4293
4333
|
scAppField: "ScAppField_scAppField",
|
|
@@ -4319,7 +4359,7 @@ var ScToggleSwitch_default = {
|
|
|
4319
4359
|
};
|
|
4320
4360
|
|
|
4321
4361
|
// src/SC-toggleSwitch/ScToggleSwitch.tsx
|
|
4322
|
-
var
|
|
4362
|
+
var import_jsx_runtime51 = require("react/jsx-runtime");
|
|
4323
4363
|
var ScToggleSwitch = ({
|
|
4324
4364
|
active = "false",
|
|
4325
4365
|
checked,
|
|
@@ -4329,7 +4369,7 @@ var ScToggleSwitch = ({
|
|
|
4329
4369
|
}) => {
|
|
4330
4370
|
const isActive = checked !== void 0 ? checked : active === "true";
|
|
4331
4371
|
const variantsClassName = ScToggleSwitch_default["active-" + (isActive ? "true" : "false")];
|
|
4332
|
-
return /* @__PURE__ */ (0,
|
|
4372
|
+
return /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
4333
4373
|
"div",
|
|
4334
4374
|
{
|
|
4335
4375
|
className: ScToggleSwitch_default.scToggleSwitch + " " + className + " " + variantsClassName,
|
|
@@ -4339,20 +4379,20 @@ var ScToggleSwitch = ({
|
|
|
4339
4379
|
props.onClick?.(e);
|
|
4340
4380
|
},
|
|
4341
4381
|
style: { cursor: "pointer", ...props.style },
|
|
4342
|
-
children: isActive ? /* @__PURE__ */ (0,
|
|
4343
|
-
/* @__PURE__ */ (0,
|
|
4344
|
-
/* @__PURE__ */ (0,
|
|
4345
|
-
] }) : /* @__PURE__ */ (0,
|
|
4346
|
-
/* @__PURE__ */ (0,
|
|
4347
|
-
/* @__PURE__ */ (0,
|
|
4348
|
-
/* @__PURE__ */ (0,
|
|
4382
|
+
children: isActive ? /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("svg", { width: "40", height: "24", viewBox: "0 0 40 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4383
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("rect", { width: "40", height: "24", rx: "12", fill: "var(--alias-fill-base-base, #f5f5f5)" }),
|
|
4384
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("circle", { cx: "28", cy: "12", r: "10", fill: "var(--alias-text---icons-inverse, #101010)" })
|
|
4385
|
+
] }) : /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("svg", { width: "41", height: "25", viewBox: "0 0 41 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4386
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M0.25 12.25C0.25 5.62258 5.62258 0.25 12.25 0.25H28.25C34.8774 0.25 40.25 5.62258 40.25 12.25C40.25 18.8774 34.8774 24.25 28.25 24.25H12.25C5.62258 24.25 0.25 18.8774 0.25 12.25Z", fill: "var(--alias-fill-neutral-neutral, #1a1a1a)" }),
|
|
4387
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M40 12.25C40 5.76065 34.7393 0.5 28.25 0.5H12.25C5.76065 0.5 0.5 5.76065 0.5 12.25C0.5 18.7393 5.76065 24 12.25 24H28.25C34.7393 24 40 18.7393 40 12.25ZM40.5 12.25C40.5 19.0155 35.0155 24.5 28.25 24.5H12.25C5.48451 24.5 0 19.0155 0 12.25C0 5.48451 5.48451 0 12.25 0H28.25C35.0155 0 40.5 5.48451 40.5 12.25Z", fill: "var(--alias-border-divider, #242424)" }),
|
|
4388
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M2.25 12.25C2.25 6.72715 6.72715 2.25 12.25 2.25C17.7728 2.25 22.25 6.72715 22.25 12.25C22.25 17.7728 17.7728 22.25 12.25 22.25C6.72715 22.25 2.25 17.7728 2.25 12.25Z", fill: "var(--alias-fill-neutral-neutralactive, #313131)" })
|
|
4349
4389
|
] })
|
|
4350
4390
|
}
|
|
4351
4391
|
);
|
|
4352
4392
|
};
|
|
4353
4393
|
|
|
4354
4394
|
// src/SC-artifaxInvite/ScArtifaxInvite.tsx
|
|
4355
|
-
var
|
|
4395
|
+
var import_jsx_runtime52 = require("react/jsx-runtime");
|
|
4356
4396
|
var ScArtifaxInvite = ({
|
|
4357
4397
|
active = "true",
|
|
4358
4398
|
appName = "Artifax",
|
|
@@ -4365,22 +4405,22 @@ var ScArtifaxInvite = ({
|
|
|
4365
4405
|
}) => {
|
|
4366
4406
|
const isEnabled = enabled !== void 0 ? enabled : active === "true";
|
|
4367
4407
|
const variantsClassName = ScArtifaxInvite_default["active-" + (isEnabled ? "true" : "false")];
|
|
4368
|
-
return /* @__PURE__ */ (0,
|
|
4408
|
+
return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
|
|
4369
4409
|
"div",
|
|
4370
4410
|
{
|
|
4371
4411
|
className: ScArtifaxInvite_default.scArtifaxInvite + " " + className + " " + variantsClassName,
|
|
4372
4412
|
...props,
|
|
4373
4413
|
children: [
|
|
4374
|
-
/* @__PURE__ */ (0,
|
|
4414
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
4375
4415
|
ScAppCard,
|
|
4376
4416
|
{
|
|
4377
|
-
appIcon: appIcon || /* @__PURE__ */ (0,
|
|
4417
|
+
appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(import_icons42.SiconArtifacts, { className: ScArtifaxInvite_default.siconArtifactsInstance }),
|
|
4378
4418
|
appName,
|
|
4379
4419
|
appDescription,
|
|
4380
4420
|
className: ScArtifaxInvite_default.scAppCardInstance
|
|
4381
4421
|
}
|
|
4382
4422
|
),
|
|
4383
|
-
/* @__PURE__ */ (0,
|
|
4423
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
4384
4424
|
ScToggleSwitch,
|
|
4385
4425
|
{
|
|
4386
4426
|
checked: isEnabled,
|
|
@@ -4406,12 +4446,12 @@ var ScPhtogenixInvite_default = {
|
|
|
4406
4446
|
|
|
4407
4447
|
// src/SC-phtogenixInvite/ScPhtogenixInvite.tsx
|
|
4408
4448
|
var import_icons43 = require("@streamoid/icons");
|
|
4409
|
-
var
|
|
4449
|
+
var import_jsx_runtime53 = require("react/jsx-runtime");
|
|
4410
4450
|
var ScPhtogenixInvite = ({
|
|
4411
4451
|
active = "true",
|
|
4412
4452
|
scAppCardappDescription = "Info about photogenix",
|
|
4413
4453
|
scAppCardappName = "Photogenix",
|
|
4414
|
-
scAppCardappIcon = /* @__PURE__ */ (0,
|
|
4454
|
+
scAppCardappIcon = /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_icons43.SiconArtifacts, { className: ScPhtogenixInvite_default.siconArtifactsInstance }),
|
|
4415
4455
|
className,
|
|
4416
4456
|
enabled,
|
|
4417
4457
|
onToggle,
|
|
@@ -4419,12 +4459,12 @@ var ScPhtogenixInvite = ({
|
|
|
4419
4459
|
}) => {
|
|
4420
4460
|
const isEnabled = enabled !== void 0 ? enabled : active === "true";
|
|
4421
4461
|
const variantsClassName = ScPhtogenixInvite_default["active-" + (isEnabled ? "true" : "false")];
|
|
4422
|
-
return /* @__PURE__ */ (0,
|
|
4462
|
+
return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
|
|
4423
4463
|
"div",
|
|
4424
4464
|
{
|
|
4425
4465
|
className: ScPhtogenixInvite_default.scPhtogenixInvite + " " + className + " " + variantsClassName,
|
|
4426
4466
|
children: [
|
|
4427
|
-
/* @__PURE__ */ (0,
|
|
4467
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
4428
4468
|
ScAppCard,
|
|
4429
4469
|
{
|
|
4430
4470
|
appIcon: scAppCardappIcon,
|
|
@@ -4433,7 +4473,7 @@ var ScPhtogenixInvite = ({
|
|
|
4433
4473
|
className: ScPhtogenixInvite_default.scAppCardInstance
|
|
4434
4474
|
}
|
|
4435
4475
|
),
|
|
4436
|
-
/* @__PURE__ */ (0,
|
|
4476
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
4437
4477
|
ScToggleSwitch,
|
|
4438
4478
|
{
|
|
4439
4479
|
checked: isEnabled,
|
|
@@ -4483,10 +4523,10 @@ var ScOnlyField_default = {
|
|
|
4483
4523
|
|
|
4484
4524
|
// src/SC-onlyField/ScOnlyField.tsx
|
|
4485
4525
|
var import_icons44 = require("@streamoid/icons");
|
|
4486
|
-
var
|
|
4526
|
+
var import_jsx_runtime54 = require("react/jsx-runtime");
|
|
4487
4527
|
var ScOnlyField = ({
|
|
4488
|
-
tfRightIcon = /* @__PURE__ */ (0,
|
|
4489
|
-
tfLeftIcon = /* @__PURE__ */ (0,
|
|
4528
|
+
tfRightIcon = /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_icons44.SiconBolt, { className: ScOnlyField_default.siconBoltInstance }),
|
|
4529
|
+
tfLeftIcon = /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(import_icons44.SiconBolt, { className: ScOnlyField_default.siconBoltInstance }),
|
|
4490
4530
|
state = "default",
|
|
4491
4531
|
tfGroup = "icon-right",
|
|
4492
4532
|
labelGroup = "none",
|
|
@@ -4499,14 +4539,14 @@ var ScOnlyField = ({
|
|
|
4499
4539
|
...props
|
|
4500
4540
|
}) => {
|
|
4501
4541
|
const variantsClassName = ScOnlyField_default["state-" + state] + " " + ScOnlyField_default["tf-group-" + tfGroup] + " " + ScOnlyField_default["label-group-" + labelGroup] + (size !== "default" ? " " + ScOnlyField_default["size-" + size] : "");
|
|
4502
|
-
return /* @__PURE__ */ (0,
|
|
4542
|
+
return /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
4503
4543
|
"div",
|
|
4504
4544
|
{
|
|
4505
4545
|
className: ScOnlyField_default.scOnlyField + " " + className + " " + variantsClassName,
|
|
4506
4546
|
...props,
|
|
4507
|
-
children: /* @__PURE__ */ (0,
|
|
4508
|
-
(tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0,
|
|
4509
|
-
/* @__PURE__ */ (0,
|
|
4547
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)("div", { className: ScOnlyField_default.inputContainer, children: [
|
|
4548
|
+
(tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("div", { className: ScOnlyField_default.iconWrapper, children: tfLeftIcon }),
|
|
4549
|
+
/* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
4510
4550
|
"input",
|
|
4511
4551
|
{
|
|
4512
4552
|
className: ScOnlyField_default.inputText,
|
|
@@ -4526,7 +4566,7 @@ var ScOnlyField = ({
|
|
|
4526
4566
|
...inputProps
|
|
4527
4567
|
}
|
|
4528
4568
|
),
|
|
4529
|
-
(tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0,
|
|
4569
|
+
(tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("div", { className: ScOnlyField_default.iconWrapper, children: tfRightIcon })
|
|
4530
4570
|
] })
|
|
4531
4571
|
}
|
|
4532
4572
|
);
|
|
@@ -4534,7 +4574,7 @@ var ScOnlyField = ({
|
|
|
4534
4574
|
|
|
4535
4575
|
// src/SC-catalogixInvite/ScCatalogixInvite.tsx
|
|
4536
4576
|
var import_icons47 = require("@streamoid/icons");
|
|
4537
|
-
var
|
|
4577
|
+
var import_jsx_runtime55 = require("react/jsx-runtime");
|
|
4538
4578
|
var ScCatalogixInvite = ({
|
|
4539
4579
|
active = "false",
|
|
4540
4580
|
appName = "Catalogix",
|
|
@@ -4556,23 +4596,23 @@ var ScCatalogixInvite = ({
|
|
|
4556
4596
|
const isEnabled = enabled !== void 0 ? enabled : active === "true";
|
|
4557
4597
|
const variantsClassName = ScCatalogixInvite_default["active-" + (isEnabled ? "true" : "false")];
|
|
4558
4598
|
const displayCount = selectedStores ? `${selectedStores.length} Selected` : selectedCount;
|
|
4559
|
-
return /* @__PURE__ */ (0,
|
|
4599
|
+
return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
|
|
4560
4600
|
"div",
|
|
4561
4601
|
{
|
|
4562
4602
|
className: ScCatalogixInvite_default.scCatalogixInvite + " " + className + " " + variantsClassName,
|
|
4563
4603
|
...props,
|
|
4564
4604
|
children: [
|
|
4565
|
-
/* @__PURE__ */ (0,
|
|
4566
|
-
/* @__PURE__ */ (0,
|
|
4605
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScCatalogixInvite_default.appHeader, children: [
|
|
4606
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
4567
4607
|
ScAppCard,
|
|
4568
4608
|
{
|
|
4569
|
-
appIcon: appIcon || /* @__PURE__ */ (0,
|
|
4609
|
+
appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons45.SiconArtifacts, { className: ScCatalogixInvite_default.siconArtifactsInstance }),
|
|
4570
4610
|
appDescription,
|
|
4571
4611
|
appName,
|
|
4572
4612
|
className: ScCatalogixInvite_default.scAppCardInstance
|
|
4573
4613
|
}
|
|
4574
4614
|
),
|
|
4575
|
-
/* @__PURE__ */ (0,
|
|
4615
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
4576
4616
|
ScToggleSwitch,
|
|
4577
4617
|
{
|
|
4578
4618
|
checked: isEnabled,
|
|
@@ -4581,29 +4621,29 @@ var ScCatalogixInvite = ({
|
|
|
4581
4621
|
}
|
|
4582
4622
|
)
|
|
4583
4623
|
] }),
|
|
4584
|
-
isEnabled && /* @__PURE__ */ (0,
|
|
4585
|
-
/* @__PURE__ */ (0,
|
|
4586
|
-
/* @__PURE__ */ (0,
|
|
4624
|
+
isEnabled && /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_jsx_runtime55.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessContainer, children: [
|
|
4625
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessHeader, children: [
|
|
4626
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessTitle, children: [
|
|
4587
4627
|
storeAccessTitle,
|
|
4588
4628
|
" "
|
|
4589
4629
|
] }),
|
|
4590
|
-
/* @__PURE__ */ (0,
|
|
4630
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { className: ScCatalogixInvite_default.selectedCount, children: [
|
|
4591
4631
|
displayCount,
|
|
4592
4632
|
" "
|
|
4593
4633
|
] })
|
|
4594
4634
|
] }),
|
|
4595
|
-
/* @__PURE__ */ (0,
|
|
4635
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
4596
4636
|
ScOnlyField,
|
|
4597
4637
|
{
|
|
4598
|
-
tfLeftIcon: /* @__PURE__ */ (0,
|
|
4599
|
-
tfRightIcon: /* @__PURE__ */ (0,
|
|
4638
|
+
tfLeftIcon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons46.SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
|
|
4639
|
+
tfRightIcon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons46.SiconSearch, { className: ScCatalogixInvite_default.siconSearchInstance }),
|
|
4600
4640
|
placeholderFilled: searchPlaceholder,
|
|
4601
4641
|
value: searchValue,
|
|
4602
4642
|
onInputChange: onSearchChange,
|
|
4603
4643
|
className: ScCatalogixInvite_default.scOnlyFieldInstance
|
|
4604
4644
|
}
|
|
4605
4645
|
),
|
|
4606
|
-
/* @__PURE__ */ (0,
|
|
4646
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("div", { className: ScCatalogixInvite_default.storeListContainer, children: stores ? stores.length > 0 ? stores.map((store) => /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
4607
4647
|
ScPairtext,
|
|
4608
4648
|
{
|
|
4609
4649
|
content: store.name,
|
|
@@ -4614,53 +4654,53 @@ var ScCatalogixInvite = ({
|
|
|
4614
4654
|
className: ScCatalogixInvite_default.scPairtextInstance
|
|
4615
4655
|
},
|
|
4616
4656
|
store.id
|
|
4617
|
-
)) : /* @__PURE__ */ (0,
|
|
4657
|
+
)) : /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("div", { style: {
|
|
4618
4658
|
padding: "var(--spacing-3xl, 16px)",
|
|
4619
4659
|
color: "var(--alias-text-and-icons-muted, #7a7a7a)",
|
|
4620
4660
|
fontFamily: "var(--font-family-font-family-body, Inter, sans-serif)",
|
|
4621
4661
|
fontSize: "var(--font-size-font-size-sm, 14px)",
|
|
4622
4662
|
lineHeight: "var(--line-height-line-height-sm, 20px)"
|
|
4623
|
-
}, children: "No stores found" }) : /* @__PURE__ */ (0,
|
|
4624
|
-
/* @__PURE__ */ (0,
|
|
4663
|
+
}, children: "No stores found" }) : /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(import_jsx_runtime55.Fragment, { children: [
|
|
4664
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
4625
4665
|
ScPairtext,
|
|
4626
4666
|
{
|
|
4627
|
-
icon: /* @__PURE__ */ (0,
|
|
4667
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons47.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
|
|
4628
4668
|
iconPosition: "right",
|
|
4629
4669
|
type: "checkbox",
|
|
4630
4670
|
className: ScCatalogixInvite_default.scPairtextInstance
|
|
4631
4671
|
}
|
|
4632
4672
|
),
|
|
4633
|
-
/* @__PURE__ */ (0,
|
|
4673
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
4634
4674
|
ScPairtext,
|
|
4635
4675
|
{
|
|
4636
|
-
icon: /* @__PURE__ */ (0,
|
|
4676
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons47.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
|
|
4637
4677
|
iconPosition: "right",
|
|
4638
4678
|
type: "checkbox",
|
|
4639
4679
|
className: ScCatalogixInvite_default.scPairtextInstance
|
|
4640
4680
|
}
|
|
4641
4681
|
),
|
|
4642
|
-
/* @__PURE__ */ (0,
|
|
4682
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
4643
4683
|
ScPairtext,
|
|
4644
4684
|
{
|
|
4645
|
-
icon: /* @__PURE__ */ (0,
|
|
4685
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons47.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
|
|
4646
4686
|
iconPosition: "right",
|
|
4647
4687
|
type: "checkbox",
|
|
4648
4688
|
className: ScCatalogixInvite_default.scPairtextInstance
|
|
4649
4689
|
}
|
|
4650
4690
|
),
|
|
4651
|
-
/* @__PURE__ */ (0,
|
|
4691
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
4652
4692
|
ScPairtext,
|
|
4653
4693
|
{
|
|
4654
|
-
icon: /* @__PURE__ */ (0,
|
|
4694
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons47.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
|
|
4655
4695
|
iconPosition: "right",
|
|
4656
4696
|
type: "checkbox",
|
|
4657
4697
|
className: ScCatalogixInvite_default.scPairtextInstance
|
|
4658
4698
|
}
|
|
4659
4699
|
),
|
|
4660
|
-
/* @__PURE__ */ (0,
|
|
4700
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
4661
4701
|
ScPairtext,
|
|
4662
4702
|
{
|
|
4663
|
-
icon: /* @__PURE__ */ (0,
|
|
4703
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_icons47.SiconHome, { className: ScCatalogixInvite_default.siconHomeInstance }),
|
|
4664
4704
|
iconPosition: "right",
|
|
4665
4705
|
type: "checkbox",
|
|
4666
4706
|
className: ScCatalogixInvite_default.scPairtextInstance
|
|
@@ -4674,7 +4714,7 @@ var ScCatalogixInvite = ({
|
|
|
4674
4714
|
};
|
|
4675
4715
|
|
|
4676
4716
|
// src/SC-appField/ScAppField.tsx
|
|
4677
|
-
var
|
|
4717
|
+
var import_jsx_runtime56 = require("react/jsx-runtime");
|
|
4678
4718
|
var ScAppField = ({
|
|
4679
4719
|
appFieldTitle = "App permission",
|
|
4680
4720
|
className,
|
|
@@ -4691,13 +4731,13 @@ var ScAppField = ({
|
|
|
4691
4731
|
onCatalogixSearchChange,
|
|
4692
4732
|
...props
|
|
4693
4733
|
}) => {
|
|
4694
|
-
return /* @__PURE__ */ (0,
|
|
4695
|
-
/* @__PURE__ */ (0,
|
|
4734
|
+
return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScAppField_default.scAppField + " " + className, ...props, children: [
|
|
4735
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: ScAppField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScAppField_default.title, children: [
|
|
4696
4736
|
appFieldTitle,
|
|
4697
4737
|
" "
|
|
4698
4738
|
] }) }),
|
|
4699
|
-
/* @__PURE__ */ (0,
|
|
4700
|
-
/* @__PURE__ */ (0,
|
|
4739
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: ScAppField_default.inputContainer, children: [
|
|
4740
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
4701
4741
|
ScArtifaxInvite,
|
|
4702
4742
|
{
|
|
4703
4743
|
enabled: artifaxEnabled,
|
|
@@ -4705,18 +4745,18 @@ var ScAppField = ({
|
|
|
4705
4745
|
className: ScAppField_default.scArtifaxInviteInstance
|
|
4706
4746
|
}
|
|
4707
4747
|
),
|
|
4708
|
-
/* @__PURE__ */ (0,
|
|
4748
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
4709
4749
|
ScPhtogenixInvite,
|
|
4710
4750
|
{
|
|
4711
4751
|
enabled: photogenixEnabled,
|
|
4712
4752
|
onToggle: onPhotogenixToggle,
|
|
4713
4753
|
scAppCardappDescription: "Info about photogenix",
|
|
4714
4754
|
scAppCardappName: "Photogenix",
|
|
4715
|
-
scAppCardappIcon: /* @__PURE__ */ (0,
|
|
4755
|
+
scAppCardappIcon: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(import_icons48.SiconPhotogenix, { className: ScAppField_default.siconPhotogenixInstance }),
|
|
4716
4756
|
className: ScAppField_default.scPhtogenixInviteInstance
|
|
4717
4757
|
}
|
|
4718
4758
|
),
|
|
4719
|
-
/* @__PURE__ */ (0,
|
|
4759
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
4720
4760
|
ScCatalogixInvite,
|
|
4721
4761
|
{
|
|
4722
4762
|
enabled: catalogixEnabled,
|
|
@@ -4743,13 +4783,13 @@ var ScBillingHistoryHeader_default = {
|
|
|
4743
4783
|
};
|
|
4744
4784
|
|
|
4745
4785
|
// src/SC-billingHistoryHeader/ScBillingHistoryHeader.tsx
|
|
4746
|
-
var
|
|
4786
|
+
var import_jsx_runtime57 = require("react/jsx-runtime");
|
|
4747
4787
|
var ScBillingHistoryHeader = ({
|
|
4748
4788
|
className,
|
|
4749
4789
|
...props
|
|
4750
4790
|
}) => {
|
|
4751
|
-
return /* @__PURE__ */ (0,
|
|
4752
|
-
/* @__PURE__ */ (0,
|
|
4791
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
|
|
4792
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
4753
4793
|
ScHeader,
|
|
4754
4794
|
{
|
|
4755
4795
|
text: "Invoice",
|
|
@@ -4757,7 +4797,7 @@ var ScBillingHistoryHeader = ({
|
|
|
4757
4797
|
className: ScBillingHistoryHeader_default.scHeaderInstance
|
|
4758
4798
|
}
|
|
4759
4799
|
),
|
|
4760
|
-
/* @__PURE__ */ (0,
|
|
4800
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
4761
4801
|
ScHeader,
|
|
4762
4802
|
{
|
|
4763
4803
|
text: "Amount",
|
|
@@ -4765,7 +4805,7 @@ var ScBillingHistoryHeader = ({
|
|
|
4765
4805
|
className: ScBillingHistoryHeader_default.scHeaderInstance2
|
|
4766
4806
|
}
|
|
4767
4807
|
),
|
|
4768
|
-
/* @__PURE__ */ (0,
|
|
4808
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
4769
4809
|
ScHeader,
|
|
4770
4810
|
{
|
|
4771
4811
|
text: "Date",
|
|
@@ -4773,7 +4813,7 @@ var ScBillingHistoryHeader = ({
|
|
|
4773
4813
|
className: ScBillingHistoryHeader_default.scHeaderInstance2
|
|
4774
4814
|
}
|
|
4775
4815
|
),
|
|
4776
|
-
/* @__PURE__ */ (0,
|
|
4816
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
4777
4817
|
ScHeader,
|
|
4778
4818
|
{
|
|
4779
4819
|
text: "Action",
|
|
@@ -4795,19 +4835,19 @@ var ScCheckField_default = {
|
|
|
4795
4835
|
|
|
4796
4836
|
// src/SC-checkField/ScCheckField.tsx
|
|
4797
4837
|
var import_icons49 = require("@streamoid/icons");
|
|
4798
|
-
var
|
|
4838
|
+
var import_jsx_runtime58 = require("react/jsx-runtime");
|
|
4799
4839
|
var ScCheckField = ({
|
|
4800
4840
|
label = "Label",
|
|
4801
4841
|
className,
|
|
4802
4842
|
checkboxes,
|
|
4803
4843
|
...props
|
|
4804
4844
|
}) => {
|
|
4805
|
-
return /* @__PURE__ */ (0,
|
|
4806
|
-
/* @__PURE__ */ (0,
|
|
4845
|
+
return /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: ScCheckField_default.scCheckField + " " + className, ...props, children: [
|
|
4846
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)("div", { className: ScCheckField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", { className: ScCheckField_default.label, children: [
|
|
4807
4847
|
label,
|
|
4808
4848
|
" "
|
|
4809
4849
|
] }) }),
|
|
4810
|
-
/* @__PURE__ */ (0,
|
|
4850
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)("div", { className: ScCheckField_default.tabSwitcher, children: checkboxes ? checkboxes.map((item, i) => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
4811
4851
|
ScPairtext,
|
|
4812
4852
|
{
|
|
4813
4853
|
content: item.label,
|
|
@@ -4817,19 +4857,19 @@ var ScCheckField = ({
|
|
|
4817
4857
|
className: ScCheckField_default.scPairtextInstance
|
|
4818
4858
|
},
|
|
4819
4859
|
i
|
|
4820
|
-
)) : /* @__PURE__ */ (0,
|
|
4821
|
-
/* @__PURE__ */ (0,
|
|
4860
|
+
)) : /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)(import_jsx_runtime58.Fragment, { children: [
|
|
4861
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
4822
4862
|
ScPairtext,
|
|
4823
4863
|
{
|
|
4824
|
-
icon: /* @__PURE__ */ (0,
|
|
4864
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons49.SiconHome, { className: ScCheckField_default.siconHomeInstance }),
|
|
4825
4865
|
type: "checkbox",
|
|
4826
4866
|
className: ScCheckField_default.scPairtextInstance
|
|
4827
4867
|
}
|
|
4828
4868
|
),
|
|
4829
|
-
/* @__PURE__ */ (0,
|
|
4869
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
4830
4870
|
ScPairtext,
|
|
4831
4871
|
{
|
|
4832
|
-
icon: /* @__PURE__ */ (0,
|
|
4872
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(import_icons49.SiconHome, { className: ScCheckField_default.siconHomeInstance }),
|
|
4833
4873
|
type: "checkbox",
|
|
4834
4874
|
className: ScCheckField_default.scPairtextInstance
|
|
4835
4875
|
}
|
|
@@ -4850,9 +4890,9 @@ var ScFieldButton_default = {
|
|
|
4850
4890
|
|
|
4851
4891
|
// src/SC-fieldButton/ScFieldButton.tsx
|
|
4852
4892
|
var import_icons50 = require("@streamoid/icons");
|
|
4853
|
-
var
|
|
4893
|
+
var import_jsx_runtime59 = require("react/jsx-runtime");
|
|
4854
4894
|
var ScFieldButton = ({
|
|
4855
|
-
icon = /* @__PURE__ */ (0,
|
|
4895
|
+
icon = /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_icons50.SiconHome, { className: ScFieldButton_default.siconHomeInstance }),
|
|
4856
4896
|
type = "default",
|
|
4857
4897
|
state = "default",
|
|
4858
4898
|
className,
|
|
@@ -4860,18 +4900,18 @@ var ScFieldButton = ({
|
|
|
4860
4900
|
...props
|
|
4861
4901
|
}) => {
|
|
4862
4902
|
const variantsClassName = ScFieldButton_default["type-" + type] + " " + ScFieldButton_default["state-" + state];
|
|
4863
|
-
return /* @__PURE__ */ (0,
|
|
4903
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
4864
4904
|
"div",
|
|
4865
4905
|
{
|
|
4866
4906
|
className: ScFieldButton_default.scFieldButton + " " + className + " " + variantsClassName,
|
|
4867
4907
|
...props,
|
|
4868
|
-
children: /* @__PURE__ */ (0,
|
|
4869
|
-
(type === "icon-right" || type === "only-icon") && /* @__PURE__ */ (0,
|
|
4870
|
-
(type === "icon-left" || type === "default" || type === "icon-right") && /* @__PURE__ */ (0,
|
|
4908
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: ScFieldButton_default.container, children: [
|
|
4909
|
+
(type === "icon-right" || type === "only-icon") && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_jsx_runtime59.Fragment, { children: icon }),
|
|
4910
|
+
(type === "icon-left" || type === "default" || type === "icon-right") && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_jsx_runtime59.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: ScFieldButton_default.label, children: [
|
|
4871
4911
|
text,
|
|
4872
4912
|
" "
|
|
4873
4913
|
] }) }),
|
|
4874
|
-
type === "icon-left" && /* @__PURE__ */ (0,
|
|
4914
|
+
type === "icon-left" && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_jsx_runtime59.Fragment, { children: icon })
|
|
4875
4915
|
] })
|
|
4876
4916
|
}
|
|
4877
4917
|
);
|
|
@@ -4886,16 +4926,16 @@ var ScPendingAction_default = {
|
|
|
4886
4926
|
|
|
4887
4927
|
// src/SC-pendingAction/ScPendingAction.tsx
|
|
4888
4928
|
var import_icons51 = require("@streamoid/icons");
|
|
4889
|
-
var
|
|
4929
|
+
var import_jsx_runtime60 = require("react/jsx-runtime");
|
|
4890
4930
|
var ScPendingAction = ({
|
|
4891
4931
|
className,
|
|
4892
4932
|
...props
|
|
4893
4933
|
}) => {
|
|
4894
|
-
return /* @__PURE__ */ (0,
|
|
4895
|
-
/* @__PURE__ */ (0,
|
|
4934
|
+
return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
|
|
4935
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
4896
4936
|
ScButton,
|
|
4897
4937
|
{
|
|
4898
|
-
icon: /* @__PURE__ */ (0,
|
|
4938
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(import_icons51.SiconHome, { className: ScPendingAction_default.siconHomeInstance }),
|
|
4899
4939
|
text: "Cancel",
|
|
4900
4940
|
variant: "error",
|
|
4901
4941
|
type: "tertiary",
|
|
@@ -4903,11 +4943,11 @@ var ScPendingAction = ({
|
|
|
4903
4943
|
className: ScPendingAction_default.scButtonInstance
|
|
4904
4944
|
}
|
|
4905
4945
|
),
|
|
4906
|
-
/* @__PURE__ */ (0,
|
|
4907
|
-
/* @__PURE__ */ (0,
|
|
4946
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)(ScVDivider, { className: ScPendingAction_default.scVDividerInstance }),
|
|
4947
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
4908
4948
|
ScButton,
|
|
4909
4949
|
{
|
|
4910
|
-
icon: /* @__PURE__ */ (0,
|
|
4950
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(import_icons51.SiconHome, { className: ScPendingAction_default.siconHomeInstance }),
|
|
4911
4951
|
text: "Resend",
|
|
4912
4952
|
variant: "tertiary",
|
|
4913
4953
|
size: "sm",
|
|
@@ -4931,7 +4971,7 @@ var ScQuickPrompt_default = {
|
|
|
4931
4971
|
|
|
4932
4972
|
// src/SC-quick prompt/ScQuickPrompt.tsx
|
|
4933
4973
|
var import_icons52 = require("@streamoid/icons");
|
|
4934
|
-
var
|
|
4974
|
+
var import_jsx_runtime61 = require("react/jsx-runtime");
|
|
4935
4975
|
var ScQuickPrompt = ({
|
|
4936
4976
|
appName = "Photogenix",
|
|
4937
4977
|
heading = "Swap Model and Background",
|
|
@@ -4939,20 +4979,20 @@ var ScQuickPrompt = ({
|
|
|
4939
4979
|
className,
|
|
4940
4980
|
...props
|
|
4941
4981
|
}) => {
|
|
4942
|
-
return /* @__PURE__ */ (0,
|
|
4943
|
-
/* @__PURE__ */ (0,
|
|
4944
|
-
/* @__PURE__ */ (0,
|
|
4945
|
-
/* @__PURE__ */ (0,
|
|
4982
|
+
return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScQuickPrompt_default.scQuickPrompt + " " + className, ...props, children: [
|
|
4983
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScQuickPrompt_default.header, children: [
|
|
4984
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)("div", { className: ScQuickPrompt_default.iconContainer, children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_icons52.SiconBolt, { className: ScQuickPrompt_default.siconBoltInstance }) }),
|
|
4985
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)("div", { className: ScQuickPrompt_default.titleContainer, children: /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScQuickPrompt_default.title, children: [
|
|
4946
4986
|
appName,
|
|
4947
4987
|
" "
|
|
4948
4988
|
] }) })
|
|
4949
4989
|
] }),
|
|
4950
|
-
/* @__PURE__ */ (0,
|
|
4951
|
-
/* @__PURE__ */ (0,
|
|
4990
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScQuickPrompt_default.body, children: [
|
|
4991
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScQuickPrompt_default.heading, children: [
|
|
4952
4992
|
heading,
|
|
4953
4993
|
" "
|
|
4954
4994
|
] }),
|
|
4955
|
-
/* @__PURE__ */ (0,
|
|
4995
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", { className: ScQuickPrompt_default.description, children: [
|
|
4956
4996
|
description,
|
|
4957
4997
|
" "
|
|
4958
4998
|
] })
|
|
@@ -4969,13 +5009,13 @@ var ScReferralTableHeader_default = {
|
|
|
4969
5009
|
};
|
|
4970
5010
|
|
|
4971
5011
|
// src/SC-referralTableHeader/ScReferralTableHeader.tsx
|
|
4972
|
-
var
|
|
5012
|
+
var import_jsx_runtime62 = require("react/jsx-runtime");
|
|
4973
5013
|
var ScReferralTableHeader = ({
|
|
4974
5014
|
className,
|
|
4975
5015
|
...props
|
|
4976
5016
|
}) => {
|
|
4977
|
-
return /* @__PURE__ */ (0,
|
|
4978
|
-
/* @__PURE__ */ (0,
|
|
5017
|
+
return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
|
|
5018
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
4979
5019
|
ScHeader,
|
|
4980
5020
|
{
|
|
4981
5021
|
text: "User",
|
|
@@ -4983,7 +5023,7 @@ var ScReferralTableHeader = ({
|
|
|
4983
5023
|
className: ScReferralTableHeader_default.scHeaderInstance
|
|
4984
5024
|
}
|
|
4985
5025
|
),
|
|
4986
|
-
/* @__PURE__ */ (0,
|
|
5026
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
4987
5027
|
ScHeader,
|
|
4988
5028
|
{
|
|
4989
5029
|
text: "Date",
|
|
@@ -4991,7 +5031,7 @@ var ScReferralTableHeader = ({
|
|
|
4991
5031
|
className: ScReferralTableHeader_default.scHeaderInstance2
|
|
4992
5032
|
}
|
|
4993
5033
|
),
|
|
4994
|
-
/* @__PURE__ */ (0,
|
|
5034
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
4995
5035
|
ScHeader,
|
|
4996
5036
|
{
|
|
4997
5037
|
text: "Status",
|
|
@@ -4999,7 +5039,7 @@ var ScReferralTableHeader = ({
|
|
|
4999
5039
|
className: ScReferralTableHeader_default.scHeaderInstance3
|
|
5000
5040
|
}
|
|
5001
5041
|
),
|
|
5002
|
-
/* @__PURE__ */ (0,
|
|
5042
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
5003
5043
|
ScHeader,
|
|
5004
5044
|
{
|
|
5005
5045
|
text: "Reward",
|
|
@@ -5020,7 +5060,7 @@ var ScReferralTableList_default = {
|
|
|
5020
5060
|
};
|
|
5021
5061
|
|
|
5022
5062
|
// src/SC-referralTableList/ScReferralTableList.tsx
|
|
5023
|
-
var
|
|
5063
|
+
var import_jsx_runtime63 = require("react/jsx-runtime");
|
|
5024
5064
|
var ScReferralTableList = ({
|
|
5025
5065
|
userEmail = "chris@kepler.com",
|
|
5026
5066
|
userName,
|
|
@@ -5030,8 +5070,8 @@ var ScReferralTableList = ({
|
|
|
5030
5070
|
className,
|
|
5031
5071
|
...props
|
|
5032
5072
|
}) => {
|
|
5033
|
-
return /* @__PURE__ */ (0,
|
|
5034
|
-
/* @__PURE__ */ (0,
|
|
5073
|
+
return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
|
|
5074
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
5035
5075
|
ScProfile,
|
|
5036
5076
|
{
|
|
5037
5077
|
subText: userEmail,
|
|
@@ -5039,12 +5079,12 @@ var ScReferralTableList = ({
|
|
|
5039
5079
|
className: ScReferralTableList_default.scProfileInstance
|
|
5040
5080
|
}
|
|
5041
5081
|
),
|
|
5042
|
-
/* @__PURE__ */ (0,
|
|
5082
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScReferralTableList_default.date, children: [
|
|
5043
5083
|
date,
|
|
5044
5084
|
" "
|
|
5045
5085
|
] }),
|
|
5046
|
-
/* @__PURE__ */ (0,
|
|
5047
|
-
/* @__PURE__ */ (0,
|
|
5086
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)(ScBadges, { text: status, className: ScReferralTableList_default.scBadgesInstance }),
|
|
5087
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: ScReferralTableList_default.points, children: [
|
|
5048
5088
|
points,
|
|
5049
5089
|
" "
|
|
5050
5090
|
] })
|
|
@@ -5060,33 +5100,33 @@ var ScSettingsNav_default = {
|
|
|
5060
5100
|
// src/SC-settingsNav/ScSettingsNav.tsx
|
|
5061
5101
|
var import_icons53 = require("@streamoid/icons");
|
|
5062
5102
|
var import_icons54 = require("@streamoid/icons");
|
|
5063
|
-
var
|
|
5103
|
+
var import_jsx_runtime64 = require("react/jsx-runtime");
|
|
5064
5104
|
var ScSettingsNav = ({
|
|
5065
5105
|
className,
|
|
5066
5106
|
...props
|
|
5067
5107
|
}) => {
|
|
5068
|
-
return /* @__PURE__ */ (0,
|
|
5069
|
-
/* @__PURE__ */ (0,
|
|
5108
|
+
return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("div", { className: ScSettingsNav_default.scSettingsNav + " " + className, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: ScSettingsNav_default.container, children: [
|
|
5109
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
5070
5110
|
ScSidebarMenu,
|
|
5071
5111
|
{
|
|
5072
|
-
icon: /* @__PURE__ */ (0,
|
|
5112
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_icons53.SiconTeam, { className: ScSettingsNav_default.siconTeamInstance }),
|
|
5073
5113
|
text: "Profile",
|
|
5074
5114
|
state: "active",
|
|
5075
5115
|
className: ScSettingsNav_default.scSidebarMenuInstance
|
|
5076
5116
|
}
|
|
5077
5117
|
),
|
|
5078
|
-
/* @__PURE__ */ (0,
|
|
5118
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
5079
5119
|
ScSidebarMenu,
|
|
5080
5120
|
{
|
|
5081
|
-
icon: /* @__PURE__ */ (0,
|
|
5121
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_icons54.SiconWorkspace, { className: ScSettingsNav_default.siconWorkspaceInstance }),
|
|
5082
5122
|
text: "Workspace",
|
|
5083
5123
|
className: ScSettingsNav_default.scSidebarMenuInstance
|
|
5084
5124
|
}
|
|
5085
5125
|
),
|
|
5086
|
-
/* @__PURE__ */ (0,
|
|
5126
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
5087
5127
|
ScSidebarMenu,
|
|
5088
5128
|
{
|
|
5089
|
-
icon: /* @__PURE__ */ (0,
|
|
5129
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_icons54.SiconReferral, { className: ScSettingsNav_default.siconReferralInstance }),
|
|
5090
5130
|
text: "Referral",
|
|
5091
5131
|
className: ScSettingsNav_default.scSidebarMenuInstance
|
|
5092
5132
|
}
|
|
@@ -5102,7 +5142,7 @@ var ScTabField_default = {
|
|
|
5102
5142
|
};
|
|
5103
5143
|
|
|
5104
5144
|
// src/SC-tabField/ScTabField.tsx
|
|
5105
|
-
var
|
|
5145
|
+
var import_jsx_runtime65 = require("react/jsx-runtime");
|
|
5106
5146
|
var ScTabField = ({
|
|
5107
5147
|
label = "Label",
|
|
5108
5148
|
className,
|
|
@@ -5111,17 +5151,17 @@ var ScTabField = ({
|
|
|
5111
5151
|
onTabChange,
|
|
5112
5152
|
...props
|
|
5113
5153
|
}) => {
|
|
5114
|
-
return /* @__PURE__ */ (0,
|
|
5115
|
-
/* @__PURE__ */ (0,
|
|
5154
|
+
return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)("div", { className: ScTabField_default.scTabField + " " + className, children: [
|
|
5155
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)("div", { className: ScTabField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)("div", { className: ScTabField_default.label, children: [
|
|
5116
5156
|
label,
|
|
5117
5157
|
" "
|
|
5118
5158
|
] }) }),
|
|
5119
|
-
tabs ? /* @__PURE__ */ (0,
|
|
5159
|
+
tabs ? /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
5120
5160
|
ScTabSwitcher,
|
|
5121
5161
|
{
|
|
5122
5162
|
tabCount: String(tabs.length),
|
|
5123
5163
|
className: ScTabField_default.scTabSwitcherInstance,
|
|
5124
|
-
component: tabs[0] ? /* @__PURE__ */ (0,
|
|
5164
|
+
component: tabs[0] ? /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
5125
5165
|
ScTabComp,
|
|
5126
5166
|
{
|
|
5127
5167
|
text: tabs[0].label,
|
|
@@ -5131,7 +5171,7 @@ var ScTabField = ({
|
|
|
5131
5171
|
style: { flex: 1 }
|
|
5132
5172
|
}
|
|
5133
5173
|
) : void 0,
|
|
5134
|
-
component2: tabs[1] ? /* @__PURE__ */ (0,
|
|
5174
|
+
component2: tabs[1] ? /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
5135
5175
|
ScTabComp,
|
|
5136
5176
|
{
|
|
5137
5177
|
text: tabs[1].label,
|
|
@@ -5142,7 +5182,7 @@ var ScTabField = ({
|
|
|
5142
5182
|
}
|
|
5143
5183
|
) : void 0
|
|
5144
5184
|
}
|
|
5145
|
-
) : /* @__PURE__ */ (0,
|
|
5185
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(ScTabSwitcher, { className: ScTabField_default.scTabSwitcherInstance })
|
|
5146
5186
|
] });
|
|
5147
5187
|
};
|
|
5148
5188
|
|
|
@@ -5159,19 +5199,19 @@ var ScTableHeader_default = {
|
|
|
5159
5199
|
};
|
|
5160
5200
|
|
|
5161
5201
|
// src/SC-tableHeader/ScTableHeader.tsx
|
|
5162
|
-
var
|
|
5202
|
+
var import_jsx_runtime66 = require("react/jsx-runtime");
|
|
5163
5203
|
var ScTableHeader = ({
|
|
5164
5204
|
type = "default",
|
|
5165
5205
|
className,
|
|
5166
5206
|
...props
|
|
5167
5207
|
}) => {
|
|
5168
5208
|
const variantsClassName = ScTableHeader_default["type-" + type];
|
|
5169
|
-
return /* @__PURE__ */ (0,
|
|
5209
|
+
return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
|
|
5170
5210
|
"div",
|
|
5171
5211
|
{
|
|
5172
5212
|
className: ScTableHeader_default.scTableHeader + " " + className + " " + variantsClassName,
|
|
5173
5213
|
children: [
|
|
5174
|
-
/* @__PURE__ */ (0,
|
|
5214
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
5175
5215
|
ScHeader,
|
|
5176
5216
|
{
|
|
5177
5217
|
text: "User",
|
|
@@ -5179,7 +5219,7 @@ var ScTableHeader = ({
|
|
|
5179
5219
|
className: ScTableHeader_default.scHeaderInstance
|
|
5180
5220
|
}
|
|
5181
5221
|
),
|
|
5182
|
-
/* @__PURE__ */ (0,
|
|
5222
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
5183
5223
|
ScHeader,
|
|
5184
5224
|
{
|
|
5185
5225
|
text: "Role",
|
|
@@ -5187,7 +5227,7 @@ var ScTableHeader = ({
|
|
|
5187
5227
|
className: ScTableHeader_default.scHeaderInstance2
|
|
5188
5228
|
}
|
|
5189
5229
|
),
|
|
5190
|
-
/* @__PURE__ */ (0,
|
|
5230
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
5191
5231
|
ScHeader,
|
|
5192
5232
|
{
|
|
5193
5233
|
text: "Access",
|
|
@@ -5195,7 +5235,7 @@ var ScTableHeader = ({
|
|
|
5195
5235
|
className: ScTableHeader_default.scHeaderInstance3
|
|
5196
5236
|
}
|
|
5197
5237
|
),
|
|
5198
|
-
/* @__PURE__ */ (0,
|
|
5238
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
5199
5239
|
ScHeader,
|
|
5200
5240
|
{
|
|
5201
5241
|
text: "Invited by",
|
|
@@ -5203,7 +5243,7 @@ var ScTableHeader = ({
|
|
|
5203
5243
|
className: ScTableHeader_default.scHeaderInstance4
|
|
5204
5244
|
}
|
|
5205
5245
|
),
|
|
5206
|
-
type === "pending" && /* @__PURE__ */ (0,
|
|
5246
|
+
type === "pending" && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(import_jsx_runtime66.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
5207
5247
|
ScHeader,
|
|
5208
5248
|
{
|
|
5209
5249
|
text: "Invite action",
|
|
@@ -5211,7 +5251,7 @@ var ScTableHeader = ({
|
|
|
5211
5251
|
className: ScTableHeader_default.scHeaderInstance5
|
|
5212
5252
|
}
|
|
5213
5253
|
) }),
|
|
5214
|
-
type === "default" && /* @__PURE__ */ (0,
|
|
5254
|
+
type === "default" && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(import_jsx_runtime66.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
5215
5255
|
ScHeader,
|
|
5216
5256
|
{
|
|
5217
5257
|
text: "Signed On",
|
|
@@ -5245,7 +5285,7 @@ var ScTableList_default = {
|
|
|
5245
5285
|
// src/SC-tableList/ScTableList.tsx
|
|
5246
5286
|
var import_icons55 = require("@streamoid/icons");
|
|
5247
5287
|
var import_icons56 = require("@streamoid/icons");
|
|
5248
|
-
var
|
|
5288
|
+
var import_jsx_runtime67 = require("react/jsx-runtime");
|
|
5249
5289
|
var ScTableList = ({
|
|
5250
5290
|
invitedBy = "Rohan",
|
|
5251
5291
|
signedOn = "Nov 9th, 2025",
|
|
@@ -5257,51 +5297,51 @@ var ScTableList = ({
|
|
|
5257
5297
|
...props
|
|
5258
5298
|
}) => {
|
|
5259
5299
|
const variantsClassName = ScTableList_default["hover-" + hover] + " " + ScTableList_default["variant-" + variant];
|
|
5260
|
-
return /* @__PURE__ */ (0,
|
|
5300
|
+
return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
|
|
5261
5301
|
"div",
|
|
5262
5302
|
{
|
|
5263
5303
|
className: ScTableList_default.scTableList + " " + className + " " + variantsClassName,
|
|
5264
5304
|
onClick: (e) => onRowClick && onRowClick(invitedBy, e),
|
|
5265
5305
|
...props,
|
|
5266
5306
|
children: [
|
|
5267
|
-
/* @__PURE__ */ (0,
|
|
5307
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
5268
5308
|
ScProfile,
|
|
5269
5309
|
{
|
|
5270
5310
|
subText: userEmail,
|
|
5271
5311
|
className: ScTableList_default.scProfileInstance
|
|
5272
5312
|
}
|
|
5273
5313
|
),
|
|
5274
|
-
/* @__PURE__ */ (0,
|
|
5275
|
-
/* @__PURE__ */ (0,
|
|
5276
|
-
/* @__PURE__ */ (0,
|
|
5314
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)(ScRole, { className: ScTableList_default.scRoleInstance }),
|
|
5315
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScTableList_default.accessInfo, children: [
|
|
5316
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
5277
5317
|
ScAccess,
|
|
5278
5318
|
{
|
|
5279
|
-
component: /* @__PURE__ */ (0,
|
|
5280
|
-
component2: /* @__PURE__ */ (0,
|
|
5319
|
+
component: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_icons55.SiconArtifacts, { className: ScTableList_default.siconArtifactsInstance }),
|
|
5320
|
+
component2: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_icons55.SiconPhotogenix, { className: ScTableList_default.siconPhotogenixInstance }),
|
|
5281
5321
|
className: ScTableList_default.scAccessInstance
|
|
5282
5322
|
}
|
|
5283
5323
|
),
|
|
5284
|
-
/* @__PURE__ */ (0,
|
|
5324
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
5285
5325
|
ScAccess,
|
|
5286
5326
|
{
|
|
5287
|
-
component: /* @__PURE__ */ (0,
|
|
5288
|
-
component2: /* @__PURE__ */ (0,
|
|
5327
|
+
component: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_icons56.SiconUserAdd, { className: ScTableList_default.siconUserAddInstance }),
|
|
5328
|
+
component2: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_icons56.SiconCoins, { className: ScTableList_default.siconCoinsInstance }),
|
|
5289
5329
|
visibleSiconCatalogix: false,
|
|
5290
5330
|
className: ScTableList_default.scAccessInstance
|
|
5291
5331
|
}
|
|
5292
5332
|
)
|
|
5293
5333
|
] }),
|
|
5294
|
-
/* @__PURE__ */ (0,
|
|
5334
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScTableList_default.userName, children: [
|
|
5295
5335
|
invitedBy,
|
|
5296
5336
|
" "
|
|
5297
5337
|
] }),
|
|
5298
|
-
variant === "pending" && /* @__PURE__ */ (0,
|
|
5338
|
+
variant === "pending" && /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_jsx_runtime67.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
5299
5339
|
ScPendingAction,
|
|
5300
5340
|
{
|
|
5301
5341
|
className: ScTableList_default.scPendingActionInstance
|
|
5302
5342
|
}
|
|
5303
5343
|
) }),
|
|
5304
|
-
variant === "active" && /* @__PURE__ */ (0,
|
|
5344
|
+
variant === "active" && /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_jsx_runtime67.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: ScTableList_default.date, children: [
|
|
5305
5345
|
signedOn,
|
|
5306
5346
|
" "
|
|
5307
5347
|
] }) })
|
|
@@ -5331,7 +5371,7 @@ var ScWorkspaceCard_default = {
|
|
|
5331
5371
|
|
|
5332
5372
|
// src/SC-workspaceCard/ScWorkspaceCard.tsx
|
|
5333
5373
|
var import_icons57 = require("@streamoid/icons");
|
|
5334
|
-
var
|
|
5374
|
+
var import_jsx_runtime68 = require("react/jsx-runtime");
|
|
5335
5375
|
var ScWorkspaceCard = ({
|
|
5336
5376
|
workspaceName = "Stores",
|
|
5337
5377
|
role = "Admin",
|
|
@@ -5341,21 +5381,21 @@ var ScWorkspaceCard = ({
|
|
|
5341
5381
|
className,
|
|
5342
5382
|
...props
|
|
5343
5383
|
}) => {
|
|
5344
|
-
return /* @__PURE__ */ (0,
|
|
5345
|
-
/* @__PURE__ */ (0,
|
|
5346
|
-
/* @__PURE__ */ (0,
|
|
5384
|
+
return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceCard_default.scWorkspaceCard + " " + className, ...props, children: [
|
|
5385
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceCard_default.workspaceInfo, children: [
|
|
5386
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
5347
5387
|
ScIntialProfileCover,
|
|
5348
5388
|
{
|
|
5349
5389
|
className: ScWorkspaceCard_default.scIntialProfileCoverInstance
|
|
5350
5390
|
}
|
|
5351
5391
|
),
|
|
5352
|
-
/* @__PURE__ */ (0,
|
|
5392
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceCard_default.workspaceName, children: [
|
|
5353
5393
|
workspaceName,
|
|
5354
5394
|
" "
|
|
5355
5395
|
] })
|
|
5356
5396
|
] }),
|
|
5357
|
-
/* @__PURE__ */ (0,
|
|
5358
|
-
/* @__PURE__ */ (0,
|
|
5397
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceCard_default.userInfo, children: [
|
|
5398
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
5359
5399
|
ScBadges,
|
|
5360
5400
|
{
|
|
5361
5401
|
text: role,
|
|
@@ -5363,41 +5403,41 @@ var ScWorkspaceCard = ({
|
|
|
5363
5403
|
className: ScWorkspaceCard_default.scBadgesInstance
|
|
5364
5404
|
}
|
|
5365
5405
|
),
|
|
5366
|
-
/* @__PURE__ */ (0,
|
|
5367
|
-
/* @__PURE__ */ (0,
|
|
5406
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { className: ScWorkspaceCard_default.userDetails, children: [
|
|
5407
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
5368
5408
|
ScPairtext,
|
|
5369
5409
|
{
|
|
5370
|
-
icon: /* @__PURE__ */ (0,
|
|
5410
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(import_icons57.SiconTeam, { className: ScWorkspaceCard_default.siconTeamInstance }),
|
|
5371
5411
|
content: userCount,
|
|
5372
5412
|
className: ScWorkspaceCard_default.scPairtextInstance
|
|
5373
5413
|
}
|
|
5374
5414
|
),
|
|
5375
|
-
/* @__PURE__ */ (0,
|
|
5376
|
-
/* @__PURE__ */ (0,
|
|
5415
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(ScVDivider, { className: ScWorkspaceCard_default.scVDividerInstance }),
|
|
5416
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
5377
5417
|
ScPairtext,
|
|
5378
5418
|
{
|
|
5379
|
-
icon: /* @__PURE__ */ (0,
|
|
5419
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(import_icons57.SiconCrown, { className: ScWorkspaceCard_default.siconCrownInstance }),
|
|
5380
5420
|
content: ownerEmail,
|
|
5381
5421
|
className: ScWorkspaceCard_default.scPairtextInstance
|
|
5382
5422
|
}
|
|
5383
5423
|
)
|
|
5384
5424
|
] })
|
|
5385
5425
|
] }),
|
|
5386
|
-
/* @__PURE__ */ (0,
|
|
5426
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
5387
5427
|
ScButton,
|
|
5388
5428
|
{
|
|
5389
|
-
icon: /* @__PURE__ */ (0,
|
|
5429
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(import_icons57.SiconSwitch, { className: ScWorkspaceCard_default.siconSwitchInstance }),
|
|
5390
5430
|
text: buttonText,
|
|
5391
5431
|
state: "disabled",
|
|
5392
5432
|
variant: "outline",
|
|
5393
5433
|
className: ScWorkspaceCard_default.scButtonInstance
|
|
5394
5434
|
}
|
|
5395
5435
|
),
|
|
5396
|
-
/* @__PURE__ */ (0,
|
|
5436
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
5397
5437
|
ScButton,
|
|
5398
5438
|
{
|
|
5399
5439
|
text: "Leave workspace",
|
|
5400
|
-
icon: /* @__PURE__ */ (0,
|
|
5440
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(import_icons57.SiconLogout, { className: ScWorkspaceCard_default.siconLogoutInstance }),
|
|
5401
5441
|
styleVariant: "icon-only",
|
|
5402
5442
|
variant: "error",
|
|
5403
5443
|
className: ScWorkspaceCard_default.scButtonInstance2
|
|
@@ -5433,7 +5473,7 @@ var ScWorkspaceSwitchCard_default = {
|
|
|
5433
5473
|
};
|
|
5434
5474
|
|
|
5435
5475
|
// src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.tsx
|
|
5436
|
-
var
|
|
5476
|
+
var import_jsx_runtime69 = require("react/jsx-runtime");
|
|
5437
5477
|
function ScWorkspaceSwitchCard({
|
|
5438
5478
|
wsName = "Workspace name is kepler",
|
|
5439
5479
|
role = "Admin",
|
|
@@ -5463,14 +5503,14 @@ function ScWorkspaceSwitchCard({
|
|
|
5463
5503
|
].filter(Boolean).join(" ");
|
|
5464
5504
|
const dpBg = isCurrent ? "var(--alias-fill-neutral-neutralactive, #313131)" : "var(--alias-fill-neutral-neutralselected, #242424)";
|
|
5465
5505
|
const roleColorClass = isAdmin ? ScWorkspaceSwitchCard_default.detailValueRole : ScWorkspaceSwitchCard_default.detailValueInfo;
|
|
5466
|
-
return /* @__PURE__ */ (0,
|
|
5506
|
+
return /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
5467
5507
|
"div",
|
|
5468
5508
|
{
|
|
5469
5509
|
className: cardClass,
|
|
5470
5510
|
onMouseEnter: () => setInternalHover(true),
|
|
5471
5511
|
onMouseLeave: () => setInternalHover(false),
|
|
5472
|
-
children: /* @__PURE__ */ (0,
|
|
5473
|
-
/* @__PURE__ */ (0,
|
|
5512
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSwitchCard_default.wsInfo, children: [
|
|
5513
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
5474
5514
|
ScDp,
|
|
5475
5515
|
{
|
|
5476
5516
|
type: imageUrl ? "image" : "initial",
|
|
@@ -5484,26 +5524,26 @@ function ScWorkspaceSwitchCard({
|
|
|
5484
5524
|
}
|
|
5485
5525
|
}
|
|
5486
5526
|
),
|
|
5487
|
-
/* @__PURE__ */ (0,
|
|
5488
|
-
/* @__PURE__ */ (0,
|
|
5489
|
-
/* @__PURE__ */ (0,
|
|
5490
|
-
/* @__PURE__ */ (0,
|
|
5491
|
-
/* @__PURE__ */ (0,
|
|
5492
|
-
/* @__PURE__ */ (0,
|
|
5527
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSwitchCard_default.infoCol, children: [
|
|
5528
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)("p", { className: ScWorkspaceSwitchCard_default.wsName, children: wsName }),
|
|
5529
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailsRow, children: [
|
|
5530
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
|
|
5531
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Role" }),
|
|
5532
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: roleColorClass, children: displayRole })
|
|
5493
5533
|
] }),
|
|
5494
|
-
/* @__PURE__ */ (0,
|
|
5495
|
-
/* @__PURE__ */ (0,
|
|
5496
|
-
/* @__PURE__ */ (0,
|
|
5497
|
-
/* @__PURE__ */ (0,
|
|
5534
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
|
|
5535
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
|
|
5536
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Plan" }),
|
|
5537
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: plan })
|
|
5498
5538
|
] }),
|
|
5499
|
-
/* @__PURE__ */ (0,
|
|
5500
|
-
/* @__PURE__ */ (0,
|
|
5501
|
-
/* @__PURE__ */ (0,
|
|
5502
|
-
/* @__PURE__ */ (0,
|
|
5539
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
|
|
5540
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("div", { className: ScWorkspaceSwitchCard_default.detailItemFlex, children: [
|
|
5541
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Workspace Owner" }),
|
|
5542
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: ownerId })
|
|
5503
5543
|
] })
|
|
5504
5544
|
] })
|
|
5505
5545
|
] }),
|
|
5506
|
-
isHover && isOther && /* @__PURE__ */ (0,
|
|
5546
|
+
isHover && isOther && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
5507
5547
|
"div",
|
|
5508
5548
|
{
|
|
5509
5549
|
onClick: (e) => {
|
|
@@ -5511,19 +5551,19 @@ function ScWorkspaceSwitchCard({
|
|
|
5511
5551
|
onSwitch?.();
|
|
5512
5552
|
},
|
|
5513
5553
|
style: { cursor: "pointer" },
|
|
5514
|
-
children: /* @__PURE__ */ (0,
|
|
5554
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
5515
5555
|
ScButton,
|
|
5516
5556
|
{
|
|
5517
5557
|
text: "Switch Workspace",
|
|
5518
5558
|
variant: "secondary",
|
|
5519
5559
|
size: "sm",
|
|
5520
5560
|
styleVariant: "icon-left",
|
|
5521
|
-
icon: /* @__PURE__ */ (0,
|
|
5561
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(import_icons58.SiconSwitch, { className: ScWorkspaceSwitchCard_default.btnIcon })
|
|
5522
5562
|
}
|
|
5523
5563
|
)
|
|
5524
5564
|
}
|
|
5525
5565
|
),
|
|
5526
|
-
isHover && isAdmin && /* @__PURE__ */ (0,
|
|
5566
|
+
isHover && isAdmin && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
5527
5567
|
"div",
|
|
5528
5568
|
{
|
|
5529
5569
|
onClick: (e) => {
|
|
@@ -5531,18 +5571,18 @@ function ScWorkspaceSwitchCard({
|
|
|
5531
5571
|
onSettings?.();
|
|
5532
5572
|
},
|
|
5533
5573
|
style: { cursor: "pointer" },
|
|
5534
|
-
children: /* @__PURE__ */ (0,
|
|
5574
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
5535
5575
|
ScButton,
|
|
5536
5576
|
{
|
|
5537
5577
|
styleVariant: "icon-only",
|
|
5538
5578
|
variant: "outline",
|
|
5539
5579
|
size: "sm",
|
|
5540
|
-
icon: /* @__PURE__ */ (0,
|
|
5580
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(import_icons58.SiconSettings, { className: ScWorkspaceSwitchCard_default.btnIcon })
|
|
5541
5581
|
}
|
|
5542
5582
|
)
|
|
5543
5583
|
}
|
|
5544
5584
|
),
|
|
5545
|
-
isHover && !isAdmin && /* @__PURE__ */ (0,
|
|
5585
|
+
isHover && !isAdmin && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
5546
5586
|
"div",
|
|
5547
5587
|
{
|
|
5548
5588
|
className: ScWorkspaceSwitchCard_default.leaveBtn,
|
|
@@ -5550,7 +5590,7 @@ function ScWorkspaceSwitchCard({
|
|
|
5550
5590
|
e.stopPropagation();
|
|
5551
5591
|
onLeave?.();
|
|
5552
5592
|
},
|
|
5553
|
-
children: /* @__PURE__ */ (0,
|
|
5593
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(import_icons58.SiconLogout, { className: ScWorkspaceSwitchCard_default.btnIcon, color: "currentColor" })
|
|
5554
5594
|
}
|
|
5555
5595
|
)
|
|
5556
5596
|
] })
|
|
@@ -5568,18 +5608,18 @@ var ScRoleMobile_default = {
|
|
|
5568
5608
|
};
|
|
5569
5609
|
|
|
5570
5610
|
// src/SC-Role-Mobile/ScRoleMobile.tsx
|
|
5571
|
-
var
|
|
5611
|
+
var import_jsx_runtime70 = require("react/jsx-runtime");
|
|
5572
5612
|
var ScRoleMobile = ({
|
|
5573
5613
|
role = "admin",
|
|
5574
5614
|
className,
|
|
5575
5615
|
...props
|
|
5576
5616
|
}) => {
|
|
5577
|
-
return /* @__PURE__ */ (0,
|
|
5617
|
+
return /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
5578
5618
|
"div",
|
|
5579
5619
|
{
|
|
5580
5620
|
className: ScRoleMobile_default.scRoleMobile + " " + ScRoleMobile_default["role-" + role] + " " + className,
|
|
5581
5621
|
...props,
|
|
5582
|
-
children: /* @__PURE__ */ (0,
|
|
5622
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("p", { className: ScRoleMobile_default.text, children: role === "admin" ? "Admin" : "Member" })
|
|
5583
5623
|
}
|
|
5584
5624
|
);
|
|
5585
5625
|
};
|
|
@@ -5596,7 +5636,7 @@ var ScProfileV2Mobile_default = {
|
|
|
5596
5636
|
};
|
|
5597
5637
|
|
|
5598
5638
|
// src/SC-Profile-V2-Mobile/ScProfileV2Mobile.tsx
|
|
5599
|
-
var
|
|
5639
|
+
var import_jsx_runtime71 = require("react/jsx-runtime");
|
|
5600
5640
|
var ScProfileV2Mobile = ({
|
|
5601
5641
|
name = "Chris Hemsworth",
|
|
5602
5642
|
email = "chris@kepler.com",
|
|
@@ -5606,17 +5646,17 @@ var ScProfileV2Mobile = ({
|
|
|
5606
5646
|
...props
|
|
5607
5647
|
}) => {
|
|
5608
5648
|
const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
|
|
5609
|
-
const profileImage = /* @__PURE__ */ (0,
|
|
5610
|
-
return /* @__PURE__ */ (0,
|
|
5649
|
+
const profileImage = /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("div", { className: ScProfileV2Mobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("img", { src: imageUrl, alt: name, className: ScProfileV2Mobile_default.image }) : /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("div", { className: ScProfileV2Mobile_default.initials, children: initials }) });
|
|
5650
|
+
return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
|
|
5611
5651
|
"div",
|
|
5612
5652
|
{
|
|
5613
5653
|
className: ScProfileV2Mobile_default.scProfileV2Mobile + " " + className,
|
|
5614
5654
|
...props,
|
|
5615
5655
|
children: [
|
|
5616
5656
|
dpPosition === "left" && profileImage,
|
|
5617
|
-
/* @__PURE__ */ (0,
|
|
5618
|
-
/* @__PURE__ */ (0,
|
|
5619
|
-
/* @__PURE__ */ (0,
|
|
5657
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsxs)("div", { className: ScProfileV2Mobile_default.userInfo, children: [
|
|
5658
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)("p", { className: ScProfileV2Mobile_default.userName, children: name }),
|
|
5659
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)("p", { className: ScProfileV2Mobile_default.userEmail, children: email })
|
|
5620
5660
|
] }),
|
|
5621
5661
|
dpPosition === "right" && profileImage
|
|
5622
5662
|
]
|
|
@@ -5643,7 +5683,7 @@ var ScTableListMobile_default = {
|
|
|
5643
5683
|
};
|
|
5644
5684
|
|
|
5645
5685
|
// src/SC-tableList-mobile/ScTableListMobile.tsx
|
|
5646
|
-
var
|
|
5686
|
+
var import_jsx_runtime72 = require("react/jsx-runtime");
|
|
5647
5687
|
var ScTableListMobile = ({
|
|
5648
5688
|
name = "Chris Hemsworth",
|
|
5649
5689
|
email = "chris@kepler.com",
|
|
@@ -5656,25 +5696,25 @@ var ScTableListMobile = ({
|
|
|
5656
5696
|
...props
|
|
5657
5697
|
}) => {
|
|
5658
5698
|
const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
|
|
5659
|
-
return /* @__PURE__ */ (0,
|
|
5699
|
+
return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
|
|
5660
5700
|
"div",
|
|
5661
5701
|
{
|
|
5662
5702
|
className: ScTableListMobile_default.scTableListMobile + " " + className,
|
|
5663
5703
|
onClick: onRowClick,
|
|
5664
5704
|
...props,
|
|
5665
5705
|
children: [
|
|
5666
|
-
/* @__PURE__ */ (0,
|
|
5667
|
-
/* @__PURE__ */ (0,
|
|
5668
|
-
/* @__PURE__ */ (0,
|
|
5669
|
-
/* @__PURE__ */ (0,
|
|
5706
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScTableListMobile_default.profileRow, children: [
|
|
5707
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScTableListMobile_default.userInfo, children: [
|
|
5708
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScTableListMobile_default.userName, children: name }),
|
|
5709
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScTableListMobile_default.userEmail, children: email })
|
|
5670
5710
|
] }),
|
|
5671
|
-
/* @__PURE__ */ (0,
|
|
5711
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("div", { className: ScTableListMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("img", { src: imageUrl, alt: name, className: ScTableListMobile_default.image }) : /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("div", { className: ScTableListMobile_default.initials, children: initials }) })
|
|
5672
5712
|
] }),
|
|
5673
|
-
/* @__PURE__ */ (0,
|
|
5674
|
-
/* @__PURE__ */ (0,
|
|
5675
|
-
/* @__PURE__ */ (0,
|
|
5676
|
-
accessIcons && accessIcons.length > 0 && /* @__PURE__ */ (0,
|
|
5677
|
-
permissionIcons && permissionIcons.length > 0 && /* @__PURE__ */ (0,
|
|
5713
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScTableListMobile_default.detailsRow, children: [
|
|
5714
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("div", { className: ScTableListMobile_default.roleBadge, children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("p", { className: ScTableListMobile_default.roleText, children: role }) }),
|
|
5715
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: ScTableListMobile_default.accessInfo, children: [
|
|
5716
|
+
accessIcons && accessIcons.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("div", { className: ScTableListMobile_default.accessGroup, children: accessIcons.map((icon, i) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) }),
|
|
5717
|
+
permissionIcons && permissionIcons.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("div", { className: ScTableListMobile_default.accessGroup, children: permissionIcons.map((icon, i) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("span", { className: ScTableListMobile_default.accessIcon, children: icon }, i)) })
|
|
5678
5718
|
] })
|
|
5679
5719
|
] })
|
|
5680
5720
|
]
|
|
@@ -5702,7 +5742,7 @@ var ScWorkspaceSwitchMobile_default = {
|
|
|
5702
5742
|
};
|
|
5703
5743
|
|
|
5704
5744
|
// src/SC-workspaceSwitch-Mobile/ScWorkspaceSwitchMobile.tsx
|
|
5705
|
-
var
|
|
5745
|
+
var import_jsx_runtime73 = require("react/jsx-runtime");
|
|
5706
5746
|
var ScWorkspaceSwitchMobile = ({
|
|
5707
5747
|
storeName = "Stores",
|
|
5708
5748
|
initials = "WS",
|
|
@@ -5715,24 +5755,24 @@ var ScWorkspaceSwitchMobile = ({
|
|
|
5715
5755
|
...props
|
|
5716
5756
|
}) => {
|
|
5717
5757
|
const variant = currentWs ? "current" : "other";
|
|
5718
|
-
return /* @__PURE__ */ (0,
|
|
5758
|
+
return /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)(
|
|
5719
5759
|
"div",
|
|
5720
5760
|
{
|
|
5721
5761
|
className: ScWorkspaceSwitchMobile_default.scWorkspaceSwitchMobile + " " + ScWorkspaceSwitchMobile_default["variant-" + variant] + " " + className,
|
|
5722
5762
|
onClick,
|
|
5723
5763
|
...props,
|
|
5724
5764
|
children: [
|
|
5725
|
-
/* @__PURE__ */ (0,
|
|
5726
|
-
/* @__PURE__ */ (0,
|
|
5727
|
-
/* @__PURE__ */ (0,
|
|
5728
|
-
/* @__PURE__ */ (0,
|
|
5765
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.workspaceInfo, children: [
|
|
5766
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.wsNameRow, children: [
|
|
5767
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: ScWorkspaceSwitchMobile_default.initialsBox, children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("span", { className: ScWorkspaceSwitchMobile_default.initialsText, children: initials }) }),
|
|
5768
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScWorkspaceSwitchMobile_default.storeName, children: storeName })
|
|
5729
5769
|
] }),
|
|
5730
|
-
/* @__PURE__ */ (0,
|
|
5770
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: ScWorkspaceSwitchMobile_default.roleBadge, children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScWorkspaceSwitchMobile_default.roleText, children: role }) })
|
|
5731
5771
|
] }),
|
|
5732
|
-
/* @__PURE__ */ (0,
|
|
5733
|
-
/* @__PURE__ */ (0,
|
|
5734
|
-
/* @__PURE__ */ (0,
|
|
5735
|
-
/* @__PURE__ */ (0,
|
|
5772
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: ScWorkspaceSwitchMobile_default.divider }),
|
|
5773
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("div", { className: ScWorkspaceSwitchMobile_default.ownerRow, children: [
|
|
5774
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("div", { className: ScWorkspaceSwitchMobile_default.ownerIconContainer, children: ownerIcon && /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("span", { className: ScWorkspaceSwitchMobile_default.ownerIcon, children: ownerIcon }) }),
|
|
5775
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("p", { className: ScWorkspaceSwitchMobile_default.ownerText, children: ownerId })
|
|
5736
5776
|
] })
|
|
5737
5777
|
]
|
|
5738
5778
|
}
|
|
@@ -5759,7 +5799,7 @@ var ScWorkspaceSettingsMobile_default = {
|
|
|
5759
5799
|
};
|
|
5760
5800
|
|
|
5761
5801
|
// src/SC-workspaceSettings-Mobile/ScWorkspaceSettingsMobile.tsx
|
|
5762
|
-
var
|
|
5802
|
+
var import_jsx_runtime74 = require("react/jsx-runtime");
|
|
5763
5803
|
var ScWorkspaceSettingsMobile = ({
|
|
5764
5804
|
storeName = "Stores",
|
|
5765
5805
|
initials = "WS",
|
|
@@ -5774,28 +5814,28 @@ var ScWorkspaceSettingsMobile = ({
|
|
|
5774
5814
|
...props
|
|
5775
5815
|
}) => {
|
|
5776
5816
|
const variant = currentWs ? "current" : "other";
|
|
5777
|
-
return /* @__PURE__ */ (0,
|
|
5817
|
+
return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(
|
|
5778
5818
|
"div",
|
|
5779
5819
|
{
|
|
5780
5820
|
className: ScWorkspaceSettingsMobile_default.scWorkspaceSettingsMobile + " " + ScWorkspaceSettingsMobile_default["variant-" + variant] + " " + className,
|
|
5781
5821
|
onClick,
|
|
5782
5822
|
...props,
|
|
5783
5823
|
children: [
|
|
5784
|
-
/* @__PURE__ */ (0,
|
|
5785
|
-
/* @__PURE__ */ (0,
|
|
5786
|
-
/* @__PURE__ */ (0,
|
|
5787
|
-
/* @__PURE__ */ (0,
|
|
5824
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.workspaceInfo, children: [
|
|
5825
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.wsNameRow, children: [
|
|
5826
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScWorkspaceSettingsMobile_default.initialsBox, children: /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("span", { className: ScWorkspaceSettingsMobile_default.initialsText, children: initials }) }),
|
|
5827
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("p", { className: ScWorkspaceSettingsMobile_default.storeName, children: storeName })
|
|
5788
5828
|
] }),
|
|
5789
|
-
/* @__PURE__ */ (0,
|
|
5829
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScWorkspaceSettingsMobile_default.roleBadge, children: /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("p", { className: ScWorkspaceSettingsMobile_default.roleText, children: role }) })
|
|
5790
5830
|
] }),
|
|
5791
|
-
/* @__PURE__ */ (0,
|
|
5792
|
-
/* @__PURE__ */ (0,
|
|
5793
|
-
/* @__PURE__ */ (0,
|
|
5794
|
-
/* @__PURE__ */ (0,
|
|
5831
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScWorkspaceSettingsMobile_default.divider }),
|
|
5832
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
|
|
5833
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: ownerIcon && /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("span", { className: ScWorkspaceSettingsMobile_default.icon, children: ownerIcon }) }),
|
|
5834
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: ownerId })
|
|
5795
5835
|
] }),
|
|
5796
|
-
/* @__PURE__ */ (0,
|
|
5797
|
-
/* @__PURE__ */ (0,
|
|
5798
|
-
/* @__PURE__ */ (0,
|
|
5836
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("div", { className: ScWorkspaceSettingsMobile_default.infoRow, children: [
|
|
5837
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { className: ScWorkspaceSettingsMobile_default.iconContainer, children: teamIcon && /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("span", { className: ScWorkspaceSettingsMobile_default.icon, children: teamIcon }) }),
|
|
5838
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("p", { className: ScWorkspaceSettingsMobile_default.infoText, children: teamCount })
|
|
5799
5839
|
] })
|
|
5800
5840
|
]
|
|
5801
5841
|
}
|
|
@@ -5818,7 +5858,7 @@ var ScMobileTopNav_default = {
|
|
|
5818
5858
|
};
|
|
5819
5859
|
|
|
5820
5860
|
// src/SC-MobileTopNav/ScMobileTopNav.tsx
|
|
5821
|
-
var
|
|
5861
|
+
var import_jsx_runtime75 = require("react/jsx-runtime");
|
|
5822
5862
|
var ScMobileTopNav = ({
|
|
5823
5863
|
type = "home",
|
|
5824
5864
|
searchIcon = false,
|
|
@@ -5841,22 +5881,22 @@ var ScMobileTopNav = ({
|
|
|
5841
5881
|
}) => {
|
|
5842
5882
|
const hasBorder = type === "chat" || type === "inApp";
|
|
5843
5883
|
const showSearch = type === "inApp" && searchIcon && search;
|
|
5844
|
-
return /* @__PURE__ */ (0,
|
|
5884
|
+
return /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(
|
|
5845
5885
|
"div",
|
|
5846
5886
|
{
|
|
5847
5887
|
className: ScMobileTopNav_default.scMobileTopNav + " " + (hasBorder ? ScMobileTopNav_default.withBorder : "") + " " + className,
|
|
5848
5888
|
...props,
|
|
5849
5889
|
children: [
|
|
5850
|
-
type === "home" && /* @__PURE__ */ (0,
|
|
5851
|
-
type === "chat" && /* @__PURE__ */ (0,
|
|
5852
|
-
/* @__PURE__ */ (0,
|
|
5853
|
-
/* @__PURE__ */ (0,
|
|
5854
|
-
/* @__PURE__ */ (0,
|
|
5890
|
+
type === "home" && /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
|
|
5891
|
+
type === "chat" && /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(import_jsx_runtime75.Fragment, { children: [
|
|
5892
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
|
|
5893
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("p", { className: ScMobileTopNav_default.chatTitle, children: chatTitle }),
|
|
5894
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMoreClick, children: moreIcon || /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
|
|
5855
5895
|
] }),
|
|
5856
|
-
showSearch && /* @__PURE__ */ (0,
|
|
5857
|
-
/* @__PURE__ */ (0,
|
|
5858
|
-
/* @__PURE__ */ (0,
|
|
5859
|
-
/* @__PURE__ */ (0,
|
|
5896
|
+
showSearch && /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(import_jsx_runtime75.Fragment, { children: [
|
|
5897
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.searchRow, children: /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)("div", { className: ScMobileTopNav_default.searchInputContainer, children: [
|
|
5898
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onSearchClick, children: searchIconElement || /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
|
|
5899
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.searchInput, children: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
5860
5900
|
"input",
|
|
5861
5901
|
{
|
|
5862
5902
|
type: "text",
|
|
@@ -5867,17 +5907,17 @@ var ScMobileTopNav = ({
|
|
|
5867
5907
|
}
|
|
5868
5908
|
) })
|
|
5869
5909
|
] }) }),
|
|
5870
|
-
/* @__PURE__ */ (0,
|
|
5910
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onCloseClick, children: closeIcon || /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) })
|
|
5871
5911
|
] }),
|
|
5872
|
-
type === "inApp" && !search && /* @__PURE__ */ (0,
|
|
5873
|
-
/* @__PURE__ */ (0,
|
|
5874
|
-
/* @__PURE__ */ (0,
|
|
5875
|
-
/* @__PURE__ */ (0,
|
|
5912
|
+
type === "inApp" && !search && /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(import_jsx_runtime75.Fragment, { children: [
|
|
5913
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconContainer, onClick: onMenuClick, children: menuIcon || /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) }),
|
|
5914
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("p", { className: ScMobileTopNav_default.heading, children: heading }),
|
|
5915
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
5876
5916
|
"div",
|
|
5877
5917
|
{
|
|
5878
5918
|
className: ScMobileTopNav_default.iconContainer + " " + (!searchIcon ? ScMobileTopNav_default.hidden : ""),
|
|
5879
5919
|
onClick: onSearchClick,
|
|
5880
|
-
children: searchIcon ? searchIconElement || /* @__PURE__ */ (0,
|
|
5920
|
+
children: searchIcon ? searchIconElement || /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder }) : /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { className: ScMobileTopNav_default.iconPlaceholder })
|
|
5881
5921
|
}
|
|
5882
5922
|
)
|
|
5883
5923
|
] })
|
|
@@ -5898,7 +5938,7 @@ var ScMobileBottomAction_default = {
|
|
|
5898
5938
|
};
|
|
5899
5939
|
|
|
5900
5940
|
// src/SC-MobileBottomAction/ScMobileBottomAction.tsx
|
|
5901
|
-
var
|
|
5941
|
+
var import_jsx_runtime76 = require("react/jsx-runtime");
|
|
5902
5942
|
var ScMobileBottomAction = ({
|
|
5903
5943
|
text = "Save Changes",
|
|
5904
5944
|
disabled = false,
|
|
@@ -5910,28 +5950,28 @@ var ScMobileBottomAction = ({
|
|
|
5910
5950
|
...props
|
|
5911
5951
|
}) => {
|
|
5912
5952
|
const isTwoButton = !!secondaryText;
|
|
5913
|
-
return /* @__PURE__ */ (0,
|
|
5953
|
+
return /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(
|
|
5914
5954
|
"div",
|
|
5915
5955
|
{
|
|
5916
5956
|
className: ScMobileBottomAction_default.scMobileBottomAction + (isTwoButton ? " " + ScMobileBottomAction_default.twoButton : "") + " " + className,
|
|
5917
5957
|
...props,
|
|
5918
5958
|
children: [
|
|
5919
|
-
isTwoButton && /* @__PURE__ */ (0,
|
|
5959
|
+
isTwoButton && /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
5920
5960
|
"button",
|
|
5921
5961
|
{
|
|
5922
5962
|
className: ScMobileBottomAction_default.outlineButton + " " + (secondaryDisabled ? ScMobileBottomAction_default.disabled : ""),
|
|
5923
5963
|
onClick: onSecondaryClick,
|
|
5924
5964
|
disabled: secondaryDisabled,
|
|
5925
|
-
children: /* @__PURE__ */ (0,
|
|
5965
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("span", { className: ScMobileBottomAction_default.outlineButtonText, children: secondaryText })
|
|
5926
5966
|
}
|
|
5927
5967
|
),
|
|
5928
|
-
/* @__PURE__ */ (0,
|
|
5968
|
+
/* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
5929
5969
|
"button",
|
|
5930
5970
|
{
|
|
5931
5971
|
className: ScMobileBottomAction_default.button + " " + (disabled ? ScMobileBottomAction_default.disabled : ""),
|
|
5932
5972
|
onClick,
|
|
5933
5973
|
disabled,
|
|
5934
|
-
children: /* @__PURE__ */ (0,
|
|
5974
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("span", { className: ScMobileBottomAction_default.buttonText, children: text })
|
|
5935
5975
|
}
|
|
5936
5976
|
)
|
|
5937
5977
|
]
|
|
@@ -5949,7 +5989,7 @@ var ScPopUpMenu_default = {
|
|
|
5949
5989
|
};
|
|
5950
5990
|
|
|
5951
5991
|
// src/SC-PopUpMenu/ScPopUpMenu.tsx
|
|
5952
|
-
var
|
|
5992
|
+
var import_jsx_runtime77 = require("react/jsx-runtime");
|
|
5953
5993
|
var ScPopUpMenu = ({
|
|
5954
5994
|
menu = "Options",
|
|
5955
5995
|
state = "default",
|
|
@@ -5958,15 +5998,15 @@ var ScPopUpMenu = ({
|
|
|
5958
5998
|
className,
|
|
5959
5999
|
...props
|
|
5960
6000
|
}) => {
|
|
5961
|
-
return /* @__PURE__ */ (0,
|
|
6001
|
+
return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
|
|
5962
6002
|
"div",
|
|
5963
6003
|
{
|
|
5964
6004
|
className: ScPopUpMenu_default.scPopUpMenu + " " + ScPopUpMenu_default["state-" + state] + " " + className,
|
|
5965
6005
|
onClick,
|
|
5966
6006
|
...props,
|
|
5967
6007
|
children: [
|
|
5968
|
-
icon && /* @__PURE__ */ (0,
|
|
5969
|
-
/* @__PURE__ */ (0,
|
|
6008
|
+
icon && /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("span", { className: ScPopUpMenu_default.icon, children: icon }),
|
|
6009
|
+
/* @__PURE__ */ (0, import_jsx_runtime77.jsx)("p", { className: ScPopUpMenu_default.menuText, children: menu })
|
|
5970
6010
|
]
|
|
5971
6011
|
}
|
|
5972
6012
|
);
|
|
@@ -5992,7 +6032,7 @@ var ScReferralCardMobile_default = {
|
|
|
5992
6032
|
};
|
|
5993
6033
|
|
|
5994
6034
|
// src/SC-referralCard-Mobile/ScReferralCardMobile.tsx
|
|
5995
|
-
var
|
|
6035
|
+
var import_jsx_runtime78 = require("react/jsx-runtime");
|
|
5996
6036
|
var ScReferralCardMobile = ({
|
|
5997
6037
|
name = "Chris Hemsworth",
|
|
5998
6038
|
email = "chris@kepler.com",
|
|
@@ -6005,27 +6045,27 @@ var ScReferralCardMobile = ({
|
|
|
6005
6045
|
...props
|
|
6006
6046
|
}) => {
|
|
6007
6047
|
const initials = name.split(" ").map((n) => n[0]).join("").toUpperCase().slice(0, 2);
|
|
6008
|
-
return /* @__PURE__ */ (0,
|
|
6048
|
+
return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
|
|
6009
6049
|
"div",
|
|
6010
6050
|
{
|
|
6011
6051
|
className: ScReferralCardMobile_default.scReferralCardMobile + " " + className,
|
|
6012
6052
|
onClick,
|
|
6013
6053
|
...props,
|
|
6014
6054
|
children: [
|
|
6015
|
-
/* @__PURE__ */ (0,
|
|
6016
|
-
/* @__PURE__ */ (0,
|
|
6017
|
-
/* @__PURE__ */ (0,
|
|
6018
|
-
/* @__PURE__ */ (0,
|
|
6019
|
-
/* @__PURE__ */ (0,
|
|
6020
|
-
/* @__PURE__ */ (0,
|
|
6055
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: ScReferralCardMobile_default.userRow, children: [
|
|
6056
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: ScReferralCardMobile_default.profileSection, children: [
|
|
6057
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScReferralCardMobile_default.profileImage, children: imageUrl ? /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("img", { src: imageUrl, alt: name, className: ScReferralCardMobile_default.image }) : /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScReferralCardMobile_default.initials, children: initials }) }),
|
|
6058
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: ScReferralCardMobile_default.userInfo, children: [
|
|
6059
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("p", { className: ScReferralCardMobile_default.userName, children: name }),
|
|
6060
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("p", { className: ScReferralCardMobile_default.userEmail, children: email })
|
|
6021
6061
|
] })
|
|
6022
6062
|
] }),
|
|
6023
|
-
/* @__PURE__ */ (0,
|
|
6063
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScReferralCardMobile_default.badge, children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("p", { className: ScReferralCardMobile_default.badgeText, children: badge }) })
|
|
6024
6064
|
] }),
|
|
6025
|
-
/* @__PURE__ */ (0,
|
|
6026
|
-
/* @__PURE__ */ (0,
|
|
6027
|
-
/* @__PURE__ */ (0,
|
|
6028
|
-
/* @__PURE__ */ (0,
|
|
6065
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("div", { className: ScReferralCardMobile_default.divider }),
|
|
6066
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsxs)("div", { className: ScReferralCardMobile_default.detailsRow, children: [
|
|
6067
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("p", { className: ScReferralCardMobile_default.dateText, children: date }),
|
|
6068
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("p", { className: ScReferralCardMobile_default.creditsText, children: credits })
|
|
6029
6069
|
] })
|
|
6030
6070
|
]
|
|
6031
6071
|
}
|
|
@@ -6042,19 +6082,19 @@ var InvoiceHistoryMobile_default = {
|
|
|
6042
6082
|
};
|
|
6043
6083
|
|
|
6044
6084
|
// src/SC-InvoiceHistoryMobile/InvoiceHistoryMobile.tsx
|
|
6045
|
-
var
|
|
6085
|
+
var import_jsx_runtime79 = require("react/jsx-runtime");
|
|
6046
6086
|
var InvoiceHistoryMobile = ({
|
|
6047
6087
|
invoiceId = "# INV-2800-2026",
|
|
6048
6088
|
date = "Nov 9th, 2025",
|
|
6049
6089
|
amount = "$320.89",
|
|
6050
6090
|
className
|
|
6051
6091
|
}) => {
|
|
6052
|
-
return /* @__PURE__ */ (0,
|
|
6053
|
-
/* @__PURE__ */ (0,
|
|
6054
|
-
/* @__PURE__ */ (0,
|
|
6055
|
-
/* @__PURE__ */ (0,
|
|
6092
|
+
return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: InvoiceHistoryMobile_default.invoiceHistoryMobile + " " + (className ?? ""), children: [
|
|
6093
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: InvoiceHistoryMobile_default.info, children: [
|
|
6094
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: InvoiceHistoryMobile_default.invoiceId, children: invoiceId }),
|
|
6095
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: InvoiceHistoryMobile_default.date, children: date })
|
|
6056
6096
|
] }),
|
|
6057
|
-
/* @__PURE__ */ (0,
|
|
6097
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: InvoiceHistoryMobile_default.amount, children: amount })
|
|
6058
6098
|
] });
|
|
6059
6099
|
};
|
|
6060
6100
|
|
|
@@ -6072,7 +6112,7 @@ var UsageHistoryMobile_default = {
|
|
|
6072
6112
|
};
|
|
6073
6113
|
|
|
6074
6114
|
// src/SC-UsageHistoryMobile/UsageHistoryMobile.tsx
|
|
6075
|
-
var
|
|
6115
|
+
var import_jsx_runtime80 = require("react/jsx-runtime");
|
|
6076
6116
|
var UsageHistoryMobile = ({
|
|
6077
6117
|
serviceName = "Artifax Generation",
|
|
6078
6118
|
credits = "50",
|
|
@@ -6081,18 +6121,18 @@ var UsageHistoryMobile = ({
|
|
|
6081
6121
|
balance = "84,902",
|
|
6082
6122
|
className
|
|
6083
6123
|
}) => {
|
|
6084
|
-
return /* @__PURE__ */ (0,
|
|
6085
|
-
/* @__PURE__ */ (0,
|
|
6086
|
-
/* @__PURE__ */ (0,
|
|
6087
|
-
/* @__PURE__ */ (0,
|
|
6124
|
+
return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: UsageHistoryMobile_default.usageHistoryMobile + " " + (className ?? ""), children: [
|
|
6125
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: UsageHistoryMobile_default.row1, children: [
|
|
6126
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: UsageHistoryMobile_default.serviceName, children: serviceName }),
|
|
6127
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: UsageHistoryMobile_default.credits, children: credits })
|
|
6088
6128
|
] }),
|
|
6089
|
-
/* @__PURE__ */ (0,
|
|
6090
|
-
/* @__PURE__ */ (0,
|
|
6091
|
-
/* @__PURE__ */ (0,
|
|
6092
|
-
/* @__PURE__ */ (0,
|
|
6093
|
-
/* @__PURE__ */ (0,
|
|
6129
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: UsageHistoryMobile_default.row2, children: [
|
|
6130
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: UsageHistoryMobile_default.metaLeft, children: [
|
|
6131
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: UsageHistoryMobile_default.metaText, children: userName }),
|
|
6132
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)("div", { className: UsageHistoryMobile_default.divider }),
|
|
6133
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: UsageHistoryMobile_default.metaText, children: date })
|
|
6094
6134
|
] }),
|
|
6095
|
-
/* @__PURE__ */ (0,
|
|
6135
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { className: UsageHistoryMobile_default.balance, children: balance })
|
|
6096
6136
|
] })
|
|
6097
6137
|
] });
|
|
6098
6138
|
};
|
|
@@ -6116,7 +6156,7 @@ var ScWorkspaceSwitchMobileV2_default = {
|
|
|
6116
6156
|
};
|
|
6117
6157
|
|
|
6118
6158
|
// src/SC-WorkspaceSwitchMobile-V2/ScWorkspaceSwitchMobileV2.tsx
|
|
6119
|
-
var
|
|
6159
|
+
var import_jsx_runtime81 = require("react/jsx-runtime");
|
|
6120
6160
|
var ScWorkspaceSwitchMobileV2 = ({
|
|
6121
6161
|
wsName = "Workspace name is kepler",
|
|
6122
6162
|
initials = "WS",
|
|
@@ -6129,14 +6169,14 @@ var ScWorkspaceSwitchMobileV2 = ({
|
|
|
6129
6169
|
className,
|
|
6130
6170
|
...props
|
|
6131
6171
|
}) => {
|
|
6132
|
-
return /* @__PURE__ */ (0,
|
|
6172
|
+
return /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
6133
6173
|
"div",
|
|
6134
6174
|
{
|
|
6135
6175
|
className: ScWorkspaceSwitchMobileV2_default.scWorkspaceSwitchMobileV2 + " " + ScWorkspaceSwitchMobileV2_default["type-" + type] + " " + className,
|
|
6136
6176
|
onClick,
|
|
6137
6177
|
...props,
|
|
6138
|
-
children: /* @__PURE__ */ (0,
|
|
6139
|
-
/* @__PURE__ */ (0,
|
|
6178
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.workspaceInfo, children: [
|
|
6179
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dpContainer, children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
6140
6180
|
ScDp,
|
|
6141
6181
|
{
|
|
6142
6182
|
type: imageUrl ? "image" : "initial",
|
|
@@ -6150,14 +6190,14 @@ var ScWorkspaceSwitchMobileV2 = ({
|
|
|
6150
6190
|
}
|
|
6151
6191
|
}
|
|
6152
6192
|
) }),
|
|
6153
|
-
/* @__PURE__ */ (0,
|
|
6154
|
-
/* @__PURE__ */ (0,
|
|
6155
|
-
/* @__PURE__ */ (0,
|
|
6156
|
-
/* @__PURE__ */ (0,
|
|
6157
|
-
/* @__PURE__ */ (0,
|
|
6158
|
-
/* @__PURE__ */ (0,
|
|
6159
|
-
/* @__PURE__ */ (0,
|
|
6160
|
-
/* @__PURE__ */ (0,
|
|
6193
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.textContainer, children: [
|
|
6194
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("p", { className: ScWorkspaceSwitchMobileV2_default.wsName, children: wsName }),
|
|
6195
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsxs)("div", { className: ScWorkspaceSwitchMobileV2_default.userDetails, children: [
|
|
6196
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.roleText + (role === "Member" ? " " + ScWorkspaceSwitchMobileV2_default.roleMember : ""), children: role }),
|
|
6197
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
|
|
6198
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.planText, children: plan }),
|
|
6199
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: ScWorkspaceSwitchMobileV2_default.dot }),
|
|
6200
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("span", { className: ScWorkspaceSwitchMobileV2_default.ownerText, children: ownerId })
|
|
6161
6201
|
] })
|
|
6162
6202
|
] })
|
|
6163
6203
|
] })
|
|
@@ -6184,7 +6224,7 @@ var ScImageField_default = {
|
|
|
6184
6224
|
|
|
6185
6225
|
// src/SC-imageField/ScImageField.tsx
|
|
6186
6226
|
var import_icons59 = require("@streamoid/icons");
|
|
6187
|
-
var
|
|
6227
|
+
var import_jsx_runtime82 = require("react/jsx-runtime");
|
|
6188
6228
|
var ScImageField = ({
|
|
6189
6229
|
label = "Label",
|
|
6190
6230
|
imagePreview,
|
|
@@ -6207,8 +6247,8 @@ var ScImageField = ({
|
|
|
6207
6247
|
}
|
|
6208
6248
|
e.target.value = "";
|
|
6209
6249
|
}
|
|
6210
|
-
return /* @__PURE__ */ (0,
|
|
6211
|
-
/* @__PURE__ */ (0,
|
|
6250
|
+
return /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)("div", { className: ScImageField_default.scImageField + " " + (className ?? ""), children: [
|
|
6251
|
+
/* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
6212
6252
|
"input",
|
|
6213
6253
|
{
|
|
6214
6254
|
ref: inputRef,
|
|
@@ -6218,9 +6258,9 @@ var ScImageField = ({
|
|
|
6218
6258
|
onChange: handleChange
|
|
6219
6259
|
}
|
|
6220
6260
|
),
|
|
6221
|
-
/* @__PURE__ */ (0,
|
|
6222
|
-
hasImage ? /* @__PURE__ */ (0,
|
|
6223
|
-
/* @__PURE__ */ (0,
|
|
6261
|
+
/* @__PURE__ */ (0, import_jsx_runtime82.jsx)("div", { className: ScImageField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("div", { className: ScImageField_default.label, children: label }) }),
|
|
6262
|
+
hasImage ? /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)("div", { className: ScImageField_default.previewArea, children: [
|
|
6263
|
+
/* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
6224
6264
|
"img",
|
|
6225
6265
|
{
|
|
6226
6266
|
className: ScImageField_default.previewImage,
|
|
@@ -6228,8 +6268,8 @@ var ScImageField = ({
|
|
|
6228
6268
|
alt: "preview"
|
|
6229
6269
|
}
|
|
6230
6270
|
),
|
|
6231
|
-
/* @__PURE__ */ (0,
|
|
6232
|
-
/* @__PURE__ */ (0,
|
|
6271
|
+
/* @__PURE__ */ (0, import_jsx_runtime82.jsx)("span", { className: ScImageField_default.fileName, children: imageName || "image" }),
|
|
6272
|
+
/* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
6233
6273
|
import_icons59.SiconDelete,
|
|
6234
6274
|
{
|
|
6235
6275
|
className: ScImageField_default.removeIcon,
|
|
@@ -6240,9 +6280,9 @@ var ScImageField = ({
|
|
|
6240
6280
|
}
|
|
6241
6281
|
}
|
|
6242
6282
|
)
|
|
6243
|
-
] }) : /* @__PURE__ */ (0,
|
|
6244
|
-
/* @__PURE__ */ (0,
|
|
6245
|
-
/* @__PURE__ */ (0,
|
|
6283
|
+
] }) : /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)("div", { className: ScImageField_default.uploadArea, onClick: handleClick, children: [
|
|
6284
|
+
/* @__PURE__ */ (0, import_jsx_runtime82.jsx)(import_icons59.SiconUpload, { className: ScImageField_default.uploadIcon, color: "var(--alias-text-and-icons-secondary, #dadada)" }),
|
|
6285
|
+
/* @__PURE__ */ (0, import_jsx_runtime82.jsx)("span", { className: ScImageField_default.uploadText, children: "Click to upload" })
|
|
6246
6286
|
] })
|
|
6247
6287
|
] });
|
|
6248
6288
|
};
|
|
@@ -6256,7 +6296,7 @@ var ScSettingsTabComp_default = {
|
|
|
6256
6296
|
};
|
|
6257
6297
|
|
|
6258
6298
|
// src/SC-settingsTabComp/ScSettingsTabComp.tsx
|
|
6259
|
-
var
|
|
6299
|
+
var import_jsx_runtime83 = require("react/jsx-runtime");
|
|
6260
6300
|
var ScSettingsTabComp = ({
|
|
6261
6301
|
tabName = "Tab",
|
|
6262
6302
|
active = false,
|
|
@@ -6264,12 +6304,12 @@ var ScSettingsTabComp = ({
|
|
|
6264
6304
|
className
|
|
6265
6305
|
}) => {
|
|
6266
6306
|
const variantsClassName = ScSettingsTabComp_default["active-" + active];
|
|
6267
|
-
return /* @__PURE__ */ (0,
|
|
6307
|
+
return /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
|
|
6268
6308
|
"div",
|
|
6269
6309
|
{
|
|
6270
6310
|
className: ScSettingsTabComp_default.scSettingsTabComp + " " + variantsClassName + " " + (className ?? ""),
|
|
6271
6311
|
onClick,
|
|
6272
|
-
children: /* @__PURE__ */ (0,
|
|
6312
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("span", { className: ScSettingsTabComp_default.tabText, children: tabName })
|
|
6273
6313
|
}
|
|
6274
6314
|
);
|
|
6275
6315
|
};
|
|
@@ -6289,7 +6329,7 @@ var ScCreditsUsageCardMobile_default = {
|
|
|
6289
6329
|
|
|
6290
6330
|
// src/SC-Credits usage card-Mobile/ScCreditsUsageCardMobile.tsx
|
|
6291
6331
|
var import_icons60 = require("@streamoid/icons");
|
|
6292
|
-
var
|
|
6332
|
+
var import_jsx_runtime84 = require("react/jsx-runtime");
|
|
6293
6333
|
var ScCreditsUsageCardMobile = ({
|
|
6294
6334
|
usageLabel = "Credits usage",
|
|
6295
6335
|
usageText = "8,450 / 30,000",
|
|
@@ -6299,23 +6339,23 @@ var ScCreditsUsageCardMobile = ({
|
|
|
6299
6339
|
className,
|
|
6300
6340
|
...props
|
|
6301
6341
|
}) => {
|
|
6302
|
-
return /* @__PURE__ */ (0,
|
|
6303
|
-
/* @__PURE__ */ (0,
|
|
6304
|
-
/* @__PURE__ */ (0,
|
|
6342
|
+
return /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { className: ScCreditsUsageCardMobile_default.scCreditsUsageCardMobile + " " + (className ?? ""), ...props, children: [
|
|
6343
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { className: ScCreditsUsageCardMobile_default.header, children: [
|
|
6344
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
6305
6345
|
import_icons60.SiconCredits,
|
|
6306
6346
|
{
|
|
6307
6347
|
className: ScCreditsUsageCardMobile_default.headerIcon,
|
|
6308
6348
|
color: "var(--alias-text-and-icons-tertiary, #9e9e9e)"
|
|
6309
6349
|
}
|
|
6310
6350
|
),
|
|
6311
|
-
/* @__PURE__ */ (0,
|
|
6351
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("span", { className: ScCreditsUsageCardMobile_default.headerLabel, children: usageLabel })
|
|
6312
6352
|
] }),
|
|
6313
|
-
/* @__PURE__ */ (0,
|
|
6314
|
-
/* @__PURE__ */ (0,
|
|
6315
|
-
/* @__PURE__ */ (0,
|
|
6316
|
-
/* @__PURE__ */ (0,
|
|
6353
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("div", { className: ScCreditsUsageCardMobile_default.divider }),
|
|
6354
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { className: ScCreditsUsageCardMobile_default.usageInfo, children: [
|
|
6355
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("div", { className: ScCreditsUsageCardMobile_default.usageText, children: usageText }),
|
|
6356
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("div", { className: ScCreditsUsageCardMobile_default.remainingText, children: remainingText })
|
|
6317
6357
|
] }),
|
|
6318
|
-
/* @__PURE__ */ (0,
|
|
6358
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
6319
6359
|
ScButton,
|
|
6320
6360
|
{
|
|
6321
6361
|
text: buyButtonText,
|
|
@@ -6347,7 +6387,7 @@ var ScPlanDetailsCardMobile_default = {
|
|
|
6347
6387
|
|
|
6348
6388
|
// src/SC-Plan details card-Mobile/ScPlanDetailsCardMobile.tsx
|
|
6349
6389
|
var import_icons61 = require("@streamoid/icons");
|
|
6350
|
-
var
|
|
6390
|
+
var import_jsx_runtime85 = require("react/jsx-runtime");
|
|
6351
6391
|
var ScPlanDetailsCardMobile = ({
|
|
6352
6392
|
planName = "Pro",
|
|
6353
6393
|
planCredits = "30,000 credits",
|
|
@@ -6359,19 +6399,19 @@ var ScPlanDetailsCardMobile = ({
|
|
|
6359
6399
|
className,
|
|
6360
6400
|
...props
|
|
6361
6401
|
}) => {
|
|
6362
|
-
return /* @__PURE__ */ (0,
|
|
6363
|
-
/* @__PURE__ */ (0,
|
|
6364
|
-
/* @__PURE__ */ (0,
|
|
6365
|
-
/* @__PURE__ */ (0,
|
|
6402
|
+
return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: ScPlanDetailsCardMobile_default.scPlanDetailsCardMobile + " " + (className ?? ""), ...props, children: [
|
|
6403
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planHeader, children: [
|
|
6404
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: ScPlanDetailsCardMobile_default.headerLeft, children: [
|
|
6405
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6366
6406
|
import_icons61.SiconBilling,
|
|
6367
6407
|
{
|
|
6368
6408
|
className: ScPlanDetailsCardMobile_default.headerIcon,
|
|
6369
6409
|
color: "var(--alias-text-and-icons-tertiary, #9e9e9e)"
|
|
6370
6410
|
}
|
|
6371
6411
|
),
|
|
6372
|
-
/* @__PURE__ */ (0,
|
|
6412
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { className: ScPlanDetailsCardMobile_default.headerLabel, children: currentPlanLabel })
|
|
6373
6413
|
] }),
|
|
6374
|
-
/* @__PURE__ */ (0,
|
|
6414
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6375
6415
|
ScBadges,
|
|
6376
6416
|
{
|
|
6377
6417
|
text: badgeText,
|
|
@@ -6381,16 +6421,16 @@ var ScPlanDetailsCardMobile = ({
|
|
|
6381
6421
|
}
|
|
6382
6422
|
)
|
|
6383
6423
|
] }),
|
|
6384
|
-
/* @__PURE__ */ (0,
|
|
6385
|
-
/* @__PURE__ */ (0,
|
|
6386
|
-
/* @__PURE__ */ (0,
|
|
6387
|
-
/* @__PURE__ */ (0,
|
|
6388
|
-
/* @__PURE__ */ (0,
|
|
6389
|
-
/* @__PURE__ */ (0,
|
|
6424
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScPlanDetailsCardMobile_default.divider }),
|
|
6425
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planInfo, children: [
|
|
6426
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: ScPlanDetailsCardMobile_default.planNameRow, children: [
|
|
6427
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { className: ScPlanDetailsCardMobile_default.planName, children: planName }),
|
|
6428
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScPlanDetailsCardMobile_default.dot }),
|
|
6429
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { className: ScPlanDetailsCardMobile_default.planName, children: planCredits })
|
|
6390
6430
|
] }),
|
|
6391
|
-
/* @__PURE__ */ (0,
|
|
6431
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScPlanDetailsCardMobile_default.planPrice, children: planPrice })
|
|
6392
6432
|
] }),
|
|
6393
|
-
/* @__PURE__ */ (0,
|
|
6433
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6394
6434
|
ScButton,
|
|
6395
6435
|
{
|
|
6396
6436
|
text: upgradeButtonText,
|