@streamoid/ui 0.1.5 → 0.1.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.d.mts +49 -3
- package/dist/index.d.ts +49 -3
- package/dist/index.js +598 -188
- package/dist/index.mjs +598 -188
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2799,11 +2799,11 @@ var require_react_jsx_runtime_development = __commonJS({
|
|
|
2799
2799
|
return jsxWithValidation(type, props, key, false);
|
|
2800
2800
|
}
|
|
2801
2801
|
}
|
|
2802
|
-
var
|
|
2803
|
-
var
|
|
2802
|
+
var jsx106 = jsxWithValidationDynamic;
|
|
2803
|
+
var jsxs58 = jsxWithValidationStatic;
|
|
2804
2804
|
exports.Fragment = REACT_FRAGMENT_TYPE;
|
|
2805
|
-
exports.jsx =
|
|
2806
|
-
exports.jsxs =
|
|
2805
|
+
exports.jsx = jsx106;
|
|
2806
|
+
exports.jsxs = jsxs58;
|
|
2807
2807
|
})();
|
|
2808
2808
|
}
|
|
2809
2809
|
}
|
|
@@ -2882,7 +2882,8 @@ __export(index_exports, {
|
|
|
2882
2882
|
ScVDivider: () => ScVDivider,
|
|
2883
2883
|
ScVersion: () => ScVersion,
|
|
2884
2884
|
ScWorkspace: () => ScWorkspace,
|
|
2885
|
-
ScWorkspaceCard: () => ScWorkspaceCard
|
|
2885
|
+
ScWorkspaceCard: () => ScWorkspaceCard,
|
|
2886
|
+
StreamoidSidebar: () => StreamoidSidebar
|
|
2886
2887
|
});
|
|
2887
2888
|
module.exports = __toCommonJS(index_exports);
|
|
2888
2889
|
|
|
@@ -5430,7 +5431,7 @@ var import_jsx_runtime80 = __toESM(require_jsx_runtime());
|
|
|
5430
5431
|
var ScSidebarMenu = ({
|
|
5431
5432
|
icon = /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(sicon_Home_default, { className: ScSidebarMenu_default.siconHomeInstance }),
|
|
5432
5433
|
state = "default",
|
|
5433
|
-
variant = "
|
|
5434
|
+
variant = "expanded",
|
|
5434
5435
|
className,
|
|
5435
5436
|
text = "Menu Item",
|
|
5436
5437
|
...props
|
|
@@ -5443,7 +5444,7 @@ var ScSidebarMenu = ({
|
|
|
5443
5444
|
...props,
|
|
5444
5445
|
children: [
|
|
5445
5446
|
icon,
|
|
5446
|
-
variant === "
|
|
5447
|
+
variant === "expanded" && /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_jsx_runtime80.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: ScSidebarMenu_default.content, children: [
|
|
5447
5448
|
text,
|
|
5448
5449
|
" "
|
|
5449
5450
|
] }) })
|
|
@@ -5844,6 +5845,415 @@ var ScSidebar = ({
|
|
|
5844
5845
|
);
|
|
5845
5846
|
};
|
|
5846
5847
|
|
|
5848
|
+
// src/SC-sidebarnew/streamoid-sidebar.tsx
|
|
5849
|
+
var import_jsx_runtime85 = __toESM(require_jsx_runtime());
|
|
5850
|
+
function SectionHeader({ label }) {
|
|
5851
|
+
return /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: "opacity-50 shrink-0 w-full", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
5852
|
+
"div",
|
|
5853
|
+
{
|
|
5854
|
+
className: "flex items-center w-full text-text-xs-regular",
|
|
5855
|
+
style: {
|
|
5856
|
+
padding: "var(--spacing-xs) var(--spacing-3xl)",
|
|
5857
|
+
color: "var(--alias-text---icons-tertiary)"
|
|
5858
|
+
},
|
|
5859
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { children: label })
|
|
5860
|
+
}
|
|
5861
|
+
) }) });
|
|
5862
|
+
}
|
|
5863
|
+
function HDivider() {
|
|
5864
|
+
return /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
5865
|
+
"div",
|
|
5866
|
+
{
|
|
5867
|
+
className: "shrink-0 w-full",
|
|
5868
|
+
style: {
|
|
5869
|
+
height: "0.5px",
|
|
5870
|
+
backgroundColor: "var(--alias-border-subtle)"
|
|
5871
|
+
}
|
|
5872
|
+
}
|
|
5873
|
+
);
|
|
5874
|
+
}
|
|
5875
|
+
function resolveIcon(iconMap, item, active, expanded) {
|
|
5876
|
+
const renderer = iconMap[item.iconKey];
|
|
5877
|
+
if (!renderer) return null;
|
|
5878
|
+
if (typeof renderer === "function") {
|
|
5879
|
+
return renderer({ item, active, expanded });
|
|
5880
|
+
}
|
|
5881
|
+
return renderer;
|
|
5882
|
+
}
|
|
5883
|
+
function resolveToggleIcon(toggleIcon, expanded) {
|
|
5884
|
+
if (!toggleIcon) return null;
|
|
5885
|
+
if (typeof toggleIcon === "function") {
|
|
5886
|
+
return toggleIcon(expanded);
|
|
5887
|
+
}
|
|
5888
|
+
return toggleIcon;
|
|
5889
|
+
}
|
|
5890
|
+
function renderMenuItem({
|
|
5891
|
+
item,
|
|
5892
|
+
sectionId,
|
|
5893
|
+
expanded,
|
|
5894
|
+
activeItemId,
|
|
5895
|
+
iconMap,
|
|
5896
|
+
onItemSelect
|
|
5897
|
+
}) {
|
|
5898
|
+
const active = item.id === activeItemId;
|
|
5899
|
+
return /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
5900
|
+
ScSidebarMenu,
|
|
5901
|
+
{
|
|
5902
|
+
icon: resolveIcon(iconMap, item, active, expanded),
|
|
5903
|
+
text: expanded ? item.label : void 0,
|
|
5904
|
+
state: active ? "active" : "default",
|
|
5905
|
+
variant: expanded ? "expanded" : "collapsed",
|
|
5906
|
+
onClick: () => onItemSelect?.(item, sectionId)
|
|
5907
|
+
},
|
|
5908
|
+
item.id
|
|
5909
|
+
);
|
|
5910
|
+
}
|
|
5911
|
+
function StreamoidSidebar({
|
|
5912
|
+
expanded,
|
|
5913
|
+
onToggle,
|
|
5914
|
+
config,
|
|
5915
|
+
iconMap,
|
|
5916
|
+
activeItemId,
|
|
5917
|
+
onItemSelect,
|
|
5918
|
+
expandedLogo,
|
|
5919
|
+
collapsedLogo,
|
|
5920
|
+
profile,
|
|
5921
|
+
versionText = "v1.0.0",
|
|
5922
|
+
toggleIcon,
|
|
5923
|
+
className,
|
|
5924
|
+
style
|
|
5925
|
+
}) {
|
|
5926
|
+
if (expanded) {
|
|
5927
|
+
return /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
5928
|
+
"div",
|
|
5929
|
+
{
|
|
5930
|
+
className: `flex h-full items-center shrink-0 ${className ?? ""}`.trim(),
|
|
5931
|
+
style: { padding: "var(--spacing-3xl)", ...style },
|
|
5932
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
|
|
5933
|
+
"div",
|
|
5934
|
+
{
|
|
5935
|
+
className: "flex flex-col h-full relative shrink-0",
|
|
5936
|
+
style: {
|
|
5937
|
+
backgroundColor: "var(--alias-surface-base)",
|
|
5938
|
+
borderRadius: "var(--radius-3xl)",
|
|
5939
|
+
padding: "var(--spacing-md)",
|
|
5940
|
+
width: 256,
|
|
5941
|
+
gap: "var(--spacing-xxs)"
|
|
5942
|
+
},
|
|
5943
|
+
children: [
|
|
5944
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
5945
|
+
"div",
|
|
5946
|
+
{
|
|
5947
|
+
"aria-hidden": "true",
|
|
5948
|
+
className: "absolute inset-0 pointer-events-none",
|
|
5949
|
+
style: {
|
|
5950
|
+
border: "1px solid var(--alias-border-subtle)",
|
|
5951
|
+
borderRadius: "var(--radius-3xl)"
|
|
5952
|
+
}
|
|
5953
|
+
}
|
|
5954
|
+
),
|
|
5955
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
|
|
5956
|
+
"div",
|
|
5957
|
+
{
|
|
5958
|
+
className: "flex flex-col flex-1 items-start min-h-0 w-full overflow-y-auto sidebar-scroll",
|
|
5959
|
+
style: { gap: "var(--spacing-xxs)" },
|
|
5960
|
+
children: [
|
|
5961
|
+
expandedLogo,
|
|
5962
|
+
config.topItem && /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
5963
|
+
"div",
|
|
5964
|
+
{
|
|
5965
|
+
className: "flex flex-col items-start shrink-0 w-full",
|
|
5966
|
+
style: { padding: "var(--spacing-md) 0" },
|
|
5967
|
+
children: renderMenuItem({
|
|
5968
|
+
item: config.topItem,
|
|
5969
|
+
sectionId: "top",
|
|
5970
|
+
expanded: true,
|
|
5971
|
+
activeItemId,
|
|
5972
|
+
iconMap,
|
|
5973
|
+
onItemSelect
|
|
5974
|
+
})
|
|
5975
|
+
}
|
|
5976
|
+
),
|
|
5977
|
+
config.sections.map((section) => /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
|
|
5978
|
+
"div",
|
|
5979
|
+
{
|
|
5980
|
+
className: "flex flex-col items-start shrink-0 w-full",
|
|
5981
|
+
style: {
|
|
5982
|
+
padding: "var(--spacing-md) 0",
|
|
5983
|
+
gap: "var(--spacing-xxs)"
|
|
5984
|
+
},
|
|
5985
|
+
children: [
|
|
5986
|
+
section.label ? /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(SectionHeader, { label: section.label }) : null,
|
|
5987
|
+
section.items.map(
|
|
5988
|
+
(item) => renderMenuItem({
|
|
5989
|
+
item,
|
|
5990
|
+
sectionId: section.id,
|
|
5991
|
+
expanded: true,
|
|
5992
|
+
activeItemId,
|
|
5993
|
+
iconMap,
|
|
5994
|
+
onItemSelect
|
|
5995
|
+
})
|
|
5996
|
+
)
|
|
5997
|
+
]
|
|
5998
|
+
},
|
|
5999
|
+
section.id
|
|
6000
|
+
))
|
|
6001
|
+
]
|
|
6002
|
+
}
|
|
6003
|
+
),
|
|
6004
|
+
config.bottomItems?.length ? /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6005
|
+
"div",
|
|
6006
|
+
{
|
|
6007
|
+
className: "flex flex-col items-start shrink-0 w-full",
|
|
6008
|
+
style: { padding: "var(--spacing-md) 0" },
|
|
6009
|
+
children: config.bottomItems.map(
|
|
6010
|
+
(item) => renderMenuItem({
|
|
6011
|
+
item,
|
|
6012
|
+
sectionId: "bottom",
|
|
6013
|
+
expanded: true,
|
|
6014
|
+
activeItemId,
|
|
6015
|
+
iconMap,
|
|
6016
|
+
onItemSelect
|
|
6017
|
+
})
|
|
6018
|
+
)
|
|
6019
|
+
}
|
|
6020
|
+
) : null,
|
|
6021
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(HDivider, {}),
|
|
6022
|
+
profile ? /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(import_jsx_runtime85.Fragment, { children: [
|
|
6023
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
|
|
6024
|
+
"div",
|
|
6025
|
+
{
|
|
6026
|
+
className: "flex items-center shrink-0 w-full cursor-pointer",
|
|
6027
|
+
style: {
|
|
6028
|
+
padding: "var(--spacing-md)",
|
|
6029
|
+
gap: "var(--spacing-md)",
|
|
6030
|
+
borderRadius: "var(--radius-xl)"
|
|
6031
|
+
},
|
|
6032
|
+
onClick: profile.onClick,
|
|
6033
|
+
onMouseEnter: (e) => {
|
|
6034
|
+
e.currentTarget.style.background = "var(--alias-fill-neutral-neutral)";
|
|
6035
|
+
},
|
|
6036
|
+
onMouseLeave: (e) => {
|
|
6037
|
+
e.currentTarget.style.background = "transparent";
|
|
6038
|
+
},
|
|
6039
|
+
children: [
|
|
6040
|
+
profile.avatar,
|
|
6041
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: "flex flex-col flex-1 min-w-0", children: [
|
|
6042
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6043
|
+
"span",
|
|
6044
|
+
{
|
|
6045
|
+
className: "text-text-sm-medium truncate",
|
|
6046
|
+
style: { color: "var(--alias-text---icons-primary)" },
|
|
6047
|
+
children: profile.name
|
|
6048
|
+
}
|
|
6049
|
+
),
|
|
6050
|
+
profile.subtitle ? /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6051
|
+
"span",
|
|
6052
|
+
{
|
|
6053
|
+
className: "text-text-xs-regular truncate",
|
|
6054
|
+
style: { color: "var(--alias-text---icons-muted)" },
|
|
6055
|
+
children: profile.subtitle
|
|
6056
|
+
}
|
|
6057
|
+
) : null
|
|
6058
|
+
] })
|
|
6059
|
+
]
|
|
6060
|
+
}
|
|
6061
|
+
),
|
|
6062
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(HDivider, {})
|
|
6063
|
+
] }) : null,
|
|
6064
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: "shrink-0 w-full", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: "flex flex-row items-center size-full", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
|
|
6065
|
+
"div",
|
|
6066
|
+
{
|
|
6067
|
+
className: "flex items-center w-full",
|
|
6068
|
+
style: {
|
|
6069
|
+
gap: "var(--spacing-xs)",
|
|
6070
|
+
padding: "var(--spacing-xs) var(--spacing-xs) var(--spacing-xs) var(--spacing-3xl)"
|
|
6071
|
+
},
|
|
6072
|
+
children: [
|
|
6073
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6074
|
+
"p",
|
|
6075
|
+
{
|
|
6076
|
+
className: "flex-1 text-text-sm-regular truncate",
|
|
6077
|
+
style: { color: "var(--alias-text---icons-muted)" },
|
|
6078
|
+
children: versionText
|
|
6079
|
+
}
|
|
6080
|
+
),
|
|
6081
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6082
|
+
"div",
|
|
6083
|
+
{
|
|
6084
|
+
className: "flex items-center cursor-pointer",
|
|
6085
|
+
style: {
|
|
6086
|
+
padding: "var(--spacing-md)",
|
|
6087
|
+
borderRadius: "var(--radius-3xl)"
|
|
6088
|
+
},
|
|
6089
|
+
onClick: onToggle,
|
|
6090
|
+
children: resolveToggleIcon(toggleIcon, true)
|
|
6091
|
+
}
|
|
6092
|
+
)
|
|
6093
|
+
]
|
|
6094
|
+
}
|
|
6095
|
+
) }) })
|
|
6096
|
+
]
|
|
6097
|
+
}
|
|
6098
|
+
)
|
|
6099
|
+
}
|
|
6100
|
+
);
|
|
6101
|
+
}
|
|
6102
|
+
return /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6103
|
+
"div",
|
|
6104
|
+
{
|
|
6105
|
+
className: `flex h-full items-center justify-center shrink-0 ${className ?? ""}`.trim(),
|
|
6106
|
+
style,
|
|
6107
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
|
|
6108
|
+
"div",
|
|
6109
|
+
{
|
|
6110
|
+
className: "flex flex-col h-full items-center justify-center relative shrink-0",
|
|
6111
|
+
style: {
|
|
6112
|
+
backgroundColor: "var(--alias-surface-base)",
|
|
6113
|
+
padding: "var(--spacing-md)",
|
|
6114
|
+
gap: "var(--spacing-xxs)"
|
|
6115
|
+
},
|
|
6116
|
+
children: [
|
|
6117
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6118
|
+
"div",
|
|
6119
|
+
{
|
|
6120
|
+
"aria-hidden": "true",
|
|
6121
|
+
className: "absolute inset-0 pointer-events-none",
|
|
6122
|
+
style: {
|
|
6123
|
+
borderRight: "1px solid var(--alias-border-subtle)"
|
|
6124
|
+
}
|
|
6125
|
+
}
|
|
6126
|
+
),
|
|
6127
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
|
|
6128
|
+
"div",
|
|
6129
|
+
{
|
|
6130
|
+
className: "flex flex-col flex-1 items-center min-h-0 overflow-y-auto sidebar-scroll",
|
|
6131
|
+
style: { gap: "var(--spacing-xxs)" },
|
|
6132
|
+
children: [
|
|
6133
|
+
collapsedLogo,
|
|
6134
|
+
config.topItem ? /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(import_jsx_runtime85.Fragment, { children: [
|
|
6135
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6136
|
+
"div",
|
|
6137
|
+
{
|
|
6138
|
+
className: "flex flex-col items-start shrink-0",
|
|
6139
|
+
style: { padding: "var(--spacing-md) 0" },
|
|
6140
|
+
children: renderMenuItem({
|
|
6141
|
+
item: config.topItem,
|
|
6142
|
+
sectionId: "top",
|
|
6143
|
+
expanded: false,
|
|
6144
|
+
activeItemId,
|
|
6145
|
+
iconMap,
|
|
6146
|
+
onItemSelect
|
|
6147
|
+
})
|
|
6148
|
+
}
|
|
6149
|
+
),
|
|
6150
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(HDivider, {})
|
|
6151
|
+
] }) : null,
|
|
6152
|
+
config.sections.map((section, sectionIndex) => /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: "flex flex-col items-center w-full", children: [
|
|
6153
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6154
|
+
"div",
|
|
6155
|
+
{
|
|
6156
|
+
className: "flex flex-col items-start shrink-0",
|
|
6157
|
+
style: {
|
|
6158
|
+
padding: "var(--spacing-md) 0",
|
|
6159
|
+
gap: "var(--spacing-xxs)"
|
|
6160
|
+
},
|
|
6161
|
+
children: section.items.map(
|
|
6162
|
+
(item) => renderMenuItem({
|
|
6163
|
+
item,
|
|
6164
|
+
sectionId: section.id,
|
|
6165
|
+
expanded: false,
|
|
6166
|
+
activeItemId,
|
|
6167
|
+
iconMap,
|
|
6168
|
+
onItemSelect
|
|
6169
|
+
})
|
|
6170
|
+
)
|
|
6171
|
+
}
|
|
6172
|
+
),
|
|
6173
|
+
sectionIndex < config.sections.length - 1 ? /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(HDivider, {}) : null
|
|
6174
|
+
] }, section.id))
|
|
6175
|
+
]
|
|
6176
|
+
}
|
|
6177
|
+
),
|
|
6178
|
+
config.bottomItems?.length ? /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6179
|
+
"div",
|
|
6180
|
+
{
|
|
6181
|
+
className: "flex flex-col items-center justify-center shrink-0 w-full",
|
|
6182
|
+
style: { padding: "var(--spacing-md) 0" },
|
|
6183
|
+
children: config.bottomItems.map(
|
|
6184
|
+
(item) => renderMenuItem({
|
|
6185
|
+
item,
|
|
6186
|
+
sectionId: "bottom",
|
|
6187
|
+
expanded: false,
|
|
6188
|
+
activeItemId,
|
|
6189
|
+
iconMap,
|
|
6190
|
+
onItemSelect
|
|
6191
|
+
})
|
|
6192
|
+
)
|
|
6193
|
+
}
|
|
6194
|
+
) : null,
|
|
6195
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(HDivider, {}),
|
|
6196
|
+
profile ? /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(import_jsx_runtime85.Fragment, { children: [
|
|
6197
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6198
|
+
"div",
|
|
6199
|
+
{
|
|
6200
|
+
className: "flex items-center justify-center shrink-0 cursor-pointer",
|
|
6201
|
+
style: {
|
|
6202
|
+
padding: "var(--spacing-md) 0",
|
|
6203
|
+
borderRadius: "var(--radius-3xl)"
|
|
6204
|
+
},
|
|
6205
|
+
onClick: profile.onClick,
|
|
6206
|
+
onMouseEnter: (e) => {
|
|
6207
|
+
e.currentTarget.style.background = "var(--alias-fill-neutral-neutral)";
|
|
6208
|
+
},
|
|
6209
|
+
onMouseLeave: (e) => {
|
|
6210
|
+
e.currentTarget.style.background = "transparent";
|
|
6211
|
+
},
|
|
6212
|
+
children: profile.avatar
|
|
6213
|
+
}
|
|
6214
|
+
),
|
|
6215
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(HDivider, {})
|
|
6216
|
+
] }) : null,
|
|
6217
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
|
|
6218
|
+
"div",
|
|
6219
|
+
{
|
|
6220
|
+
className: "shrink-0 flex flex-col items-center",
|
|
6221
|
+
style: {
|
|
6222
|
+
gap: "var(--spacing-xl)",
|
|
6223
|
+
padding: "var(--spacing-md)",
|
|
6224
|
+
width: 56
|
|
6225
|
+
},
|
|
6226
|
+
children: [
|
|
6227
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6228
|
+
"div",
|
|
6229
|
+
{
|
|
6230
|
+
className: "flex items-center cursor-pointer",
|
|
6231
|
+
style: {
|
|
6232
|
+
padding: "var(--spacing-md)",
|
|
6233
|
+
borderRadius: "var(--radius-3xl)"
|
|
6234
|
+
},
|
|
6235
|
+
onClick: onToggle,
|
|
6236
|
+
children: resolveToggleIcon(toggleIcon, false)
|
|
6237
|
+
}
|
|
6238
|
+
),
|
|
6239
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6240
|
+
"p",
|
|
6241
|
+
{
|
|
6242
|
+
className: "text-text-xs-regular text-center truncate",
|
|
6243
|
+
style: { color: "var(--alias-text---icons-muted)" },
|
|
6244
|
+
children: versionText
|
|
6245
|
+
}
|
|
6246
|
+
)
|
|
6247
|
+
]
|
|
6248
|
+
}
|
|
6249
|
+
)
|
|
6250
|
+
]
|
|
6251
|
+
}
|
|
6252
|
+
)
|
|
6253
|
+
}
|
|
6254
|
+
);
|
|
6255
|
+
}
|
|
6256
|
+
|
|
5847
6257
|
// src/SC-Slider/ScSlider.module.css
|
|
5848
6258
|
var ScSlider_default = {
|
|
5849
6259
|
scSlider: "ScSlider_scSlider",
|
|
@@ -5854,23 +6264,23 @@ var ScSlider_default = {
|
|
|
5854
6264
|
};
|
|
5855
6265
|
|
|
5856
6266
|
// src/SC-Slider/ScSlider.tsx
|
|
5857
|
-
var
|
|
6267
|
+
var import_jsx_runtime86 = __toESM(require_jsx_runtime());
|
|
5858
6268
|
var ScSlider = ({
|
|
5859
6269
|
className,
|
|
5860
6270
|
onValueChange,
|
|
5861
6271
|
...props
|
|
5862
6272
|
}) => {
|
|
5863
|
-
return /* @__PURE__ */ (0,
|
|
5864
|
-
/* @__PURE__ */ (0,
|
|
5865
|
-
/* @__PURE__ */ (0,
|
|
5866
|
-
/* @__PURE__ */ (0,
|
|
5867
|
-
/* @__PURE__ */ (0,
|
|
5868
|
-
/* @__PURE__ */ (0,
|
|
5869
|
-
/* @__PURE__ */ (0,
|
|
5870
|
-
/* @__PURE__ */ (0,
|
|
5871
|
-
/* @__PURE__ */ (0,
|
|
5872
|
-
/* @__PURE__ */ (0,
|
|
5873
|
-
/* @__PURE__ */ (0,
|
|
6273
|
+
return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)("div", { className: ScSlider_default.scSlider + " " + className, ...props, children: [
|
|
6274
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScSlider_default.progressBar }),
|
|
6275
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScSlider_default.progressDot }),
|
|
6276
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScSlider_default.progressBar2 }),
|
|
6277
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScSlider_default.progressDot2 }),
|
|
6278
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScSlider_default.progressBar2 }),
|
|
6279
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScSlider_default.progressDot2 }),
|
|
6280
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScSlider_default.progressBar2 }),
|
|
6281
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScSlider_default.progressDot2 }),
|
|
6282
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScSlider_default.progressBar2 }),
|
|
6283
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScSlider_default.progressDot2 })
|
|
5874
6284
|
] });
|
|
5875
6285
|
};
|
|
5876
6286
|
|
|
@@ -5884,23 +6294,23 @@ var ScAppListingCard_default = {
|
|
|
5884
6294
|
};
|
|
5885
6295
|
|
|
5886
6296
|
// src/SC-app listing card/ScAppListingCard.tsx
|
|
5887
|
-
var
|
|
6297
|
+
var import_jsx_runtime87 = __toESM(require_jsx_runtime());
|
|
5888
6298
|
var ScAppListingCard = ({
|
|
5889
|
-
icon = /* @__PURE__ */ (0,
|
|
6299
|
+
icon = /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(sicon_Cart_default, { className: ScAppListingCard_default.siconCartInstance }),
|
|
5890
6300
|
title = "Stores",
|
|
5891
6301
|
descrp = "Centralized product and asset management for every storefront",
|
|
5892
6302
|
className,
|
|
5893
6303
|
...props
|
|
5894
6304
|
}) => {
|
|
5895
|
-
return /* @__PURE__ */ (0,
|
|
5896
|
-
/* @__PURE__ */ (0,
|
|
5897
|
-
/* @__PURE__ */ (0,
|
|
5898
|
-
/* @__PURE__ */ (0,
|
|
6305
|
+
return /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("div", { className: ScAppListingCard_default.scAppListingCard + " " + className, ...props, children: [
|
|
6306
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("div", { className: ScAppListingCard_default.header, children: [
|
|
6307
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("div", { className: ScAppListingCard_default.iconContainer, children: icon }),
|
|
6308
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("div", { className: ScAppListingCard_default.title, children: [
|
|
5899
6309
|
title,
|
|
5900
6310
|
" "
|
|
5901
6311
|
] })
|
|
5902
6312
|
] }),
|
|
5903
|
-
/* @__PURE__ */ (0,
|
|
6313
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("div", { className: ScAppListingCard_default.description, children: [
|
|
5904
6314
|
descrp,
|
|
5905
6315
|
" "
|
|
5906
6316
|
] })
|
|
@@ -5917,22 +6327,22 @@ var ScAppCard_default = {
|
|
|
5917
6327
|
};
|
|
5918
6328
|
|
|
5919
6329
|
// src/SC-appCard/ScAppCard.tsx
|
|
5920
|
-
var
|
|
6330
|
+
var import_jsx_runtime88 = __toESM(require_jsx_runtime());
|
|
5921
6331
|
var ScAppCard = ({
|
|
5922
|
-
appIcon = /* @__PURE__ */ (0,
|
|
6332
|
+
appIcon = /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(sicon_artifacts_default, { className: ScAppCard_default.siconArtifactsInstance }),
|
|
5923
6333
|
appName = "Artifax",
|
|
5924
6334
|
appDescription = "Info about artifax",
|
|
5925
6335
|
className,
|
|
5926
6336
|
...props
|
|
5927
6337
|
}) => {
|
|
5928
|
-
return /* @__PURE__ */ (0,
|
|
5929
|
-
/* @__PURE__ */ (0,
|
|
5930
|
-
/* @__PURE__ */ (0,
|
|
5931
|
-
/* @__PURE__ */ (0,
|
|
6338
|
+
return /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScAppCard_default.scAppCard + " " + className, ...props, children: [
|
|
6339
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("div", { className: ScAppCard_default.iconContainer, children: appIcon }),
|
|
6340
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScAppCard_default.textContainer, children: [
|
|
6341
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScAppCard_default.title, children: [
|
|
5932
6342
|
appName,
|
|
5933
6343
|
" "
|
|
5934
6344
|
] }),
|
|
5935
|
-
/* @__PURE__ */ (0,
|
|
6345
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScAppCard_default.subtitle, children: [
|
|
5936
6346
|
appDescription,
|
|
5937
6347
|
" "
|
|
5938
6348
|
] })
|
|
@@ -5968,19 +6378,19 @@ var ScToggleSwitch_default = {
|
|
|
5968
6378
|
};
|
|
5969
6379
|
|
|
5970
6380
|
// src/SC-toggleSwitch/ScToggleSwitch.tsx
|
|
5971
|
-
var
|
|
6381
|
+
var import_jsx_runtime89 = __toESM(require_jsx_runtime());
|
|
5972
6382
|
var ScToggleSwitch = ({
|
|
5973
6383
|
active = "false",
|
|
5974
6384
|
className,
|
|
5975
6385
|
...props
|
|
5976
6386
|
}) => {
|
|
5977
6387
|
const variantsClassName = ScToggleSwitch_default["active-" + active];
|
|
5978
|
-
return /* @__PURE__ */ (0,
|
|
6388
|
+
return /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
5979
6389
|
"div",
|
|
5980
6390
|
{
|
|
5981
6391
|
className: ScToggleSwitch_default.scToggleSwitch + " " + className + " " + variantsClassName,
|
|
5982
6392
|
...props,
|
|
5983
|
-
children: /* @__PURE__ */ (0,
|
|
6393
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(
|
|
5984
6394
|
"svg",
|
|
5985
6395
|
{
|
|
5986
6396
|
width: "41",
|
|
@@ -5989,21 +6399,21 @@ var ScToggleSwitch = ({
|
|
|
5989
6399
|
fill: "none",
|
|
5990
6400
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5991
6401
|
children: [
|
|
5992
|
-
/* @__PURE__ */ (0,
|
|
6402
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
5993
6403
|
"path",
|
|
5994
6404
|
{
|
|
5995
6405
|
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",
|
|
5996
6406
|
fill: "var(--alias-fill-neutral-neutral, #1a1a1a)"
|
|
5997
6407
|
}
|
|
5998
6408
|
),
|
|
5999
|
-
/* @__PURE__ */ (0,
|
|
6409
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
6000
6410
|
"path",
|
|
6001
6411
|
{
|
|
6002
6412
|
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",
|
|
6003
6413
|
fill: "var(--alias-border-divider, #242424)"
|
|
6004
6414
|
}
|
|
6005
6415
|
),
|
|
6006
|
-
/* @__PURE__ */ (0,
|
|
6416
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
6007
6417
|
"path",
|
|
6008
6418
|
{
|
|
6009
6419
|
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",
|
|
@@ -6018,7 +6428,7 @@ var ScToggleSwitch = ({
|
|
|
6018
6428
|
};
|
|
6019
6429
|
|
|
6020
6430
|
// src/SC-artifaxInvite/ScArtifaxInvite.tsx
|
|
6021
|
-
var
|
|
6431
|
+
var import_jsx_runtime90 = __toESM(require_jsx_runtime());
|
|
6022
6432
|
var ScArtifaxInvite = ({
|
|
6023
6433
|
active = "true",
|
|
6024
6434
|
appName = "Artifax",
|
|
@@ -6028,22 +6438,22 @@ var ScArtifaxInvite = ({
|
|
|
6028
6438
|
...props
|
|
6029
6439
|
}) => {
|
|
6030
6440
|
const variantsClassName = ScArtifaxInvite_default["active-" + active];
|
|
6031
|
-
return /* @__PURE__ */ (0,
|
|
6441
|
+
return /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)(
|
|
6032
6442
|
"div",
|
|
6033
6443
|
{
|
|
6034
6444
|
className: ScArtifaxInvite_default.scArtifaxInvite + " " + className + " " + variantsClassName,
|
|
6035
6445
|
...props,
|
|
6036
6446
|
children: [
|
|
6037
|
-
/* @__PURE__ */ (0,
|
|
6447
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
6038
6448
|
ScAppCard,
|
|
6039
6449
|
{
|
|
6040
|
-
appIcon: appIcon || /* @__PURE__ */ (0,
|
|
6450
|
+
appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(sicon_artifacts_default, { className: ScArtifaxInvite_default.siconArtifactsInstance }),
|
|
6041
6451
|
appName,
|
|
6042
6452
|
appDescription,
|
|
6043
6453
|
className: ScArtifaxInvite_default.scAppCardInstance
|
|
6044
6454
|
}
|
|
6045
6455
|
),
|
|
6046
|
-
/* @__PURE__ */ (0,
|
|
6456
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
6047
6457
|
ScToggleSwitch,
|
|
6048
6458
|
{
|
|
6049
6459
|
active: "false",
|
|
@@ -6064,22 +6474,22 @@ var ScPhtogenixInvite_default = {
|
|
|
6064
6474
|
};
|
|
6065
6475
|
|
|
6066
6476
|
// src/SC-phtogenixInvite/ScPhtogenixInvite.tsx
|
|
6067
|
-
var
|
|
6477
|
+
var import_jsx_runtime91 = __toESM(require_jsx_runtime());
|
|
6068
6478
|
var ScPhtogenixInvite = ({
|
|
6069
6479
|
active = "true",
|
|
6070
6480
|
scAppCardappDescription = "Info about photogenix",
|
|
6071
6481
|
scAppCardappName = "Photogenix",
|
|
6072
|
-
scAppCardappIcon = /* @__PURE__ */ (0,
|
|
6482
|
+
scAppCardappIcon = /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(sicon_artifacts_default, { className: ScPhtogenixInvite_default.siconArtifactsInstance }),
|
|
6073
6483
|
className,
|
|
6074
6484
|
...props
|
|
6075
6485
|
}) => {
|
|
6076
6486
|
const variantsClassName = ScPhtogenixInvite_default["active-" + active];
|
|
6077
|
-
return /* @__PURE__ */ (0,
|
|
6487
|
+
return /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)(
|
|
6078
6488
|
"div",
|
|
6079
6489
|
{
|
|
6080
6490
|
className: ScPhtogenixInvite_default.scPhtogenixInvite + " " + className + " " + variantsClassName,
|
|
6081
6491
|
children: [
|
|
6082
|
-
/* @__PURE__ */ (0,
|
|
6492
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
6083
6493
|
ScAppCard,
|
|
6084
6494
|
{
|
|
6085
6495
|
appIcon: scAppCardappIcon,
|
|
@@ -6088,7 +6498,7 @@ var ScPhtogenixInvite = ({
|
|
|
6088
6498
|
className: ScPhtogenixInvite_default.scAppCardInstance
|
|
6089
6499
|
}
|
|
6090
6500
|
),
|
|
6091
|
-
/* @__PURE__ */ (0,
|
|
6501
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
6092
6502
|
ScToggleSwitch,
|
|
6093
6503
|
{
|
|
6094
6504
|
active: "false",
|
|
@@ -6129,10 +6539,10 @@ var ScOnlyField_default = {
|
|
|
6129
6539
|
};
|
|
6130
6540
|
|
|
6131
6541
|
// src/SC-onlyField/ScOnlyField.tsx
|
|
6132
|
-
var
|
|
6542
|
+
var import_jsx_runtime92 = __toESM(require_jsx_runtime());
|
|
6133
6543
|
var ScOnlyField = ({
|
|
6134
|
-
tfRightIcon = /* @__PURE__ */ (0,
|
|
6135
|
-
tfLeftIcon = /* @__PURE__ */ (0,
|
|
6544
|
+
tfRightIcon = /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(sicon_bolt_default, { className: ScOnlyField_default.siconBoltInstance }),
|
|
6545
|
+
tfLeftIcon = /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(sicon_bolt_default, { className: ScOnlyField_default.siconBoltInstance }),
|
|
6136
6546
|
state = "default",
|
|
6137
6547
|
tfGroup = "icon-right",
|
|
6138
6548
|
labelGroup = "none",
|
|
@@ -6141,25 +6551,25 @@ var ScOnlyField = ({
|
|
|
6141
6551
|
...props
|
|
6142
6552
|
}) => {
|
|
6143
6553
|
const variantsClassName = ScOnlyField_default["state-" + state] + " " + ScOnlyField_default["tf-group-" + tfGroup] + " " + ScOnlyField_default["label-group-" + labelGroup];
|
|
6144
|
-
return /* @__PURE__ */ (0,
|
|
6554
|
+
return /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
6145
6555
|
"div",
|
|
6146
6556
|
{
|
|
6147
6557
|
className: ScOnlyField_default.scOnlyField + " " + className + " " + variantsClassName,
|
|
6148
6558
|
...props,
|
|
6149
|
-
children: /* @__PURE__ */ (0,
|
|
6150
|
-
(tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0,
|
|
6151
|
-
/* @__PURE__ */ (0,
|
|
6559
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)("div", { className: ScOnlyField_default.inputContainer, children: [
|
|
6560
|
+
(tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(import_jsx_runtime92.Fragment, { children: tfLeftIcon }),
|
|
6561
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsxs)("div", { className: ScOnlyField_default.inputText, children: [
|
|
6152
6562
|
placeholderFilled,
|
|
6153
6563
|
" "
|
|
6154
6564
|
] }),
|
|
6155
|
-
(tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0,
|
|
6565
|
+
(tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(import_jsx_runtime92.Fragment, { children: tfRightIcon })
|
|
6156
6566
|
] })
|
|
6157
6567
|
}
|
|
6158
6568
|
);
|
|
6159
6569
|
};
|
|
6160
6570
|
|
|
6161
6571
|
// src/SC-catalogixInvite/ScCatalogixInvite.tsx
|
|
6162
|
-
var
|
|
6572
|
+
var import_jsx_runtime93 = __toESM(require_jsx_runtime());
|
|
6163
6573
|
var ScCatalogixInvite = ({
|
|
6164
6574
|
active = "false",
|
|
6165
6575
|
appName = "Catalogix",
|
|
@@ -6172,23 +6582,23 @@ var ScCatalogixInvite = ({
|
|
|
6172
6582
|
...props
|
|
6173
6583
|
}) => {
|
|
6174
6584
|
const variantsClassName = ScCatalogixInvite_default["active-" + active];
|
|
6175
|
-
return /* @__PURE__ */ (0,
|
|
6585
|
+
return /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(
|
|
6176
6586
|
"div",
|
|
6177
6587
|
{
|
|
6178
6588
|
className: ScCatalogixInvite_default.scCatalogixInvite + " " + className + " " + variantsClassName,
|
|
6179
6589
|
...props,
|
|
6180
6590
|
children: [
|
|
6181
|
-
/* @__PURE__ */ (0,
|
|
6182
|
-
/* @__PURE__ */ (0,
|
|
6591
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScCatalogixInvite_default.appHeader, children: [
|
|
6592
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
6183
6593
|
ScAppCard,
|
|
6184
6594
|
{
|
|
6185
|
-
appIcon: appIcon || /* @__PURE__ */ (0,
|
|
6595
|
+
appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_artifacts_default, { className: ScCatalogixInvite_default.siconArtifactsInstance }),
|
|
6186
6596
|
appDescription,
|
|
6187
6597
|
appName,
|
|
6188
6598
|
className: ScCatalogixInvite_default.scAppCardInstance
|
|
6189
6599
|
}
|
|
6190
6600
|
),
|
|
6191
|
-
/* @__PURE__ */ (0,
|
|
6601
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
6192
6602
|
ScToggleSwitch,
|
|
6193
6603
|
{
|
|
6194
6604
|
active: "false",
|
|
@@ -6196,67 +6606,67 @@ var ScCatalogixInvite = ({
|
|
|
6196
6606
|
}
|
|
6197
6607
|
)
|
|
6198
6608
|
] }),
|
|
6199
|
-
active === "true" && /* @__PURE__ */ (0,
|
|
6200
|
-
/* @__PURE__ */ (0,
|
|
6201
|
-
/* @__PURE__ */ (0,
|
|
6609
|
+
active === "true" && /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(import_jsx_runtime93.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessContainer, children: [
|
|
6610
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessHeader, children: [
|
|
6611
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessTitle, children: [
|
|
6202
6612
|
storeAccessTitle,
|
|
6203
6613
|
" "
|
|
6204
6614
|
] }),
|
|
6205
|
-
/* @__PURE__ */ (0,
|
|
6615
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScCatalogixInvite_default.selectedCount, children: [
|
|
6206
6616
|
selectedCount,
|
|
6207
6617
|
" "
|
|
6208
6618
|
] })
|
|
6209
6619
|
] }),
|
|
6210
|
-
/* @__PURE__ */ (0,
|
|
6620
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
6211
6621
|
ScOnlyField,
|
|
6212
6622
|
{
|
|
6213
|
-
tfLeftIcon: /* @__PURE__ */ (0,
|
|
6214
|
-
tfRightIcon: /* @__PURE__ */ (0,
|
|
6623
|
+
tfLeftIcon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Search_default, { className: ScCatalogixInvite_default.siconSearchInstance }),
|
|
6624
|
+
tfRightIcon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Search_default, { className: ScCatalogixInvite_default.siconSearchInstance }),
|
|
6215
6625
|
placeholderFilled: searchPlaceholder,
|
|
6216
6626
|
className: ScCatalogixInvite_default.scOnlyFieldInstance
|
|
6217
6627
|
}
|
|
6218
6628
|
),
|
|
6219
|
-
/* @__PURE__ */ (0,
|
|
6220
|
-
/* @__PURE__ */ (0,
|
|
6629
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScCatalogixInvite_default.storeListContainer, children: [
|
|
6630
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
6221
6631
|
ScPairtext,
|
|
6222
6632
|
{
|
|
6223
|
-
icon: /* @__PURE__ */ (0,
|
|
6633
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
|
|
6224
6634
|
iconPosition: "right",
|
|
6225
6635
|
type: "checkbox",
|
|
6226
6636
|
className: ScCatalogixInvite_default.scPairtextInstance
|
|
6227
6637
|
}
|
|
6228
6638
|
),
|
|
6229
|
-
/* @__PURE__ */ (0,
|
|
6639
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
6230
6640
|
ScPairtext,
|
|
6231
6641
|
{
|
|
6232
|
-
icon: /* @__PURE__ */ (0,
|
|
6642
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
|
|
6233
6643
|
iconPosition: "right",
|
|
6234
6644
|
type: "checkbox",
|
|
6235
6645
|
className: ScCatalogixInvite_default.scPairtextInstance
|
|
6236
6646
|
}
|
|
6237
6647
|
),
|
|
6238
|
-
/* @__PURE__ */ (0,
|
|
6648
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
6239
6649
|
ScPairtext,
|
|
6240
6650
|
{
|
|
6241
|
-
icon: /* @__PURE__ */ (0,
|
|
6651
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
|
|
6242
6652
|
iconPosition: "right",
|
|
6243
6653
|
type: "checkbox",
|
|
6244
6654
|
className: ScCatalogixInvite_default.scPairtextInstance
|
|
6245
6655
|
}
|
|
6246
6656
|
),
|
|
6247
|
-
/* @__PURE__ */ (0,
|
|
6657
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
6248
6658
|
ScPairtext,
|
|
6249
6659
|
{
|
|
6250
|
-
icon: /* @__PURE__ */ (0,
|
|
6660
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
|
|
6251
6661
|
iconPosition: "right",
|
|
6252
6662
|
type: "checkbox",
|
|
6253
6663
|
className: ScCatalogixInvite_default.scPairtextInstance
|
|
6254
6664
|
}
|
|
6255
6665
|
),
|
|
6256
|
-
/* @__PURE__ */ (0,
|
|
6666
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
6257
6667
|
ScPairtext,
|
|
6258
6668
|
{
|
|
6259
|
-
icon: /* @__PURE__ */ (0,
|
|
6669
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
|
|
6260
6670
|
iconPosition: "right",
|
|
6261
6671
|
type: "checkbox",
|
|
6262
6672
|
className: ScCatalogixInvite_default.scPairtextInstance
|
|
@@ -6270,34 +6680,34 @@ var ScCatalogixInvite = ({
|
|
|
6270
6680
|
};
|
|
6271
6681
|
|
|
6272
6682
|
// src/SC-appField/ScAppField.tsx
|
|
6273
|
-
var
|
|
6683
|
+
var import_jsx_runtime94 = __toESM(require_jsx_runtime());
|
|
6274
6684
|
var ScAppField = ({
|
|
6275
6685
|
appFieldTitle = "App permission",
|
|
6276
6686
|
className,
|
|
6277
6687
|
...props
|
|
6278
6688
|
}) => {
|
|
6279
|
-
return /* @__PURE__ */ (0,
|
|
6280
|
-
/* @__PURE__ */ (0,
|
|
6689
|
+
return /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScAppField_default.scAppField + " " + className, ...props, children: [
|
|
6690
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)("div", { className: ScAppField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScAppField_default.title, children: [
|
|
6281
6691
|
appFieldTitle,
|
|
6282
6692
|
" "
|
|
6283
6693
|
] }) }),
|
|
6284
|
-
/* @__PURE__ */ (0,
|
|
6285
|
-
/* @__PURE__ */ (0,
|
|
6694
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScAppField_default.inputContainer, children: [
|
|
6695
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
6286
6696
|
ScArtifaxInvite,
|
|
6287
6697
|
{
|
|
6288
6698
|
className: ScAppField_default.scArtifaxInviteInstance
|
|
6289
6699
|
}
|
|
6290
6700
|
),
|
|
6291
|
-
/* @__PURE__ */ (0,
|
|
6701
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
6292
6702
|
ScPhtogenixInvite,
|
|
6293
6703
|
{
|
|
6294
6704
|
scAppCardappDescription: "Info about photogenix",
|
|
6295
6705
|
scAppCardappName: "Photogenix",
|
|
6296
|
-
scAppCardappIcon: /* @__PURE__ */ (0,
|
|
6706
|
+
scAppCardappIcon: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(sicon_photogenix_default, { className: ScAppField_default.siconPhotogenixInstance }),
|
|
6297
6707
|
className: ScAppField_default.scPhtogenixInviteInstance
|
|
6298
6708
|
}
|
|
6299
6709
|
),
|
|
6300
|
-
/* @__PURE__ */ (0,
|
|
6710
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
6301
6711
|
ScCatalogixInvite,
|
|
6302
6712
|
{
|
|
6303
6713
|
active: "true",
|
|
@@ -6317,13 +6727,13 @@ var ScBillingHistoryHeader_default = {
|
|
|
6317
6727
|
};
|
|
6318
6728
|
|
|
6319
6729
|
// src/SC-billingHistoryHeader/ScBillingHistoryHeader.tsx
|
|
6320
|
-
var
|
|
6730
|
+
var import_jsx_runtime95 = __toESM(require_jsx_runtime());
|
|
6321
6731
|
var ScBillingHistoryHeader = ({
|
|
6322
6732
|
className,
|
|
6323
6733
|
...props
|
|
6324
6734
|
}) => {
|
|
6325
|
-
return /* @__PURE__ */ (0,
|
|
6326
|
-
/* @__PURE__ */ (0,
|
|
6735
|
+
return /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
|
|
6736
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
6327
6737
|
ScHeader,
|
|
6328
6738
|
{
|
|
6329
6739
|
text: "Invoice",
|
|
@@ -6331,7 +6741,7 @@ var ScBillingHistoryHeader = ({
|
|
|
6331
6741
|
className: ScBillingHistoryHeader_default.scHeaderInstance
|
|
6332
6742
|
}
|
|
6333
6743
|
),
|
|
6334
|
-
/* @__PURE__ */ (0,
|
|
6744
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
6335
6745
|
ScHeader,
|
|
6336
6746
|
{
|
|
6337
6747
|
text: "Amount",
|
|
@@ -6339,7 +6749,7 @@ var ScBillingHistoryHeader = ({
|
|
|
6339
6749
|
className: ScBillingHistoryHeader_default.scHeaderInstance2
|
|
6340
6750
|
}
|
|
6341
6751
|
),
|
|
6342
|
-
/* @__PURE__ */ (0,
|
|
6752
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
6343
6753
|
ScHeader,
|
|
6344
6754
|
{
|
|
6345
6755
|
text: "Date",
|
|
@@ -6347,7 +6757,7 @@ var ScBillingHistoryHeader = ({
|
|
|
6347
6757
|
className: ScBillingHistoryHeader_default.scHeaderInstance2
|
|
6348
6758
|
}
|
|
6349
6759
|
),
|
|
6350
|
-
/* @__PURE__ */ (0,
|
|
6760
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
6351
6761
|
ScHeader,
|
|
6352
6762
|
{
|
|
6353
6763
|
text: "Action",
|
|
@@ -6368,30 +6778,30 @@ var ScCheckField_default = {
|
|
|
6368
6778
|
};
|
|
6369
6779
|
|
|
6370
6780
|
// src/SC-checkField/ScCheckField.tsx
|
|
6371
|
-
var
|
|
6781
|
+
var import_jsx_runtime96 = __toESM(require_jsx_runtime());
|
|
6372
6782
|
var ScCheckField = ({
|
|
6373
6783
|
label = "Label",
|
|
6374
6784
|
className,
|
|
6375
6785
|
...props
|
|
6376
6786
|
}) => {
|
|
6377
|
-
return /* @__PURE__ */ (0,
|
|
6378
|
-
/* @__PURE__ */ (0,
|
|
6787
|
+
return /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)("div", { className: ScCheckField_default.scCheckField + " " + className, ...props, children: [
|
|
6788
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("div", { className: ScCheckField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)("div", { className: ScCheckField_default.label, children: [
|
|
6379
6789
|
label,
|
|
6380
6790
|
" "
|
|
6381
6791
|
] }) }),
|
|
6382
|
-
/* @__PURE__ */ (0,
|
|
6383
|
-
/* @__PURE__ */ (0,
|
|
6792
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsxs)("div", { className: ScCheckField_default.tabSwitcher, children: [
|
|
6793
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
6384
6794
|
ScPairtext,
|
|
6385
6795
|
{
|
|
6386
|
-
icon: /* @__PURE__ */ (0,
|
|
6796
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(sicon_Home_default, { className: ScCheckField_default.siconHomeInstance }),
|
|
6387
6797
|
type: "checkbox",
|
|
6388
6798
|
className: ScCheckField_default.scPairtextInstance
|
|
6389
6799
|
}
|
|
6390
6800
|
),
|
|
6391
|
-
/* @__PURE__ */ (0,
|
|
6801
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
6392
6802
|
ScPairtext,
|
|
6393
6803
|
{
|
|
6394
|
-
icon: /* @__PURE__ */ (0,
|
|
6804
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(sicon_Home_default, { className: ScCheckField_default.siconHomeInstance }),
|
|
6395
6805
|
type: "checkbox",
|
|
6396
6806
|
className: ScCheckField_default.scPairtextInstance
|
|
6397
6807
|
}
|
|
@@ -6411,9 +6821,9 @@ var ScFieldButton_default = {
|
|
|
6411
6821
|
};
|
|
6412
6822
|
|
|
6413
6823
|
// src/SC-fieldButton/ScFieldButton.tsx
|
|
6414
|
-
var
|
|
6824
|
+
var import_jsx_runtime97 = __toESM(require_jsx_runtime());
|
|
6415
6825
|
var ScFieldButton = ({
|
|
6416
|
-
icon = /* @__PURE__ */ (0,
|
|
6826
|
+
icon = /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(sicon_Home_default, { className: ScFieldButton_default.siconHomeInstance }),
|
|
6417
6827
|
type = "default",
|
|
6418
6828
|
state = "default",
|
|
6419
6829
|
className,
|
|
@@ -6421,18 +6831,18 @@ var ScFieldButton = ({
|
|
|
6421
6831
|
...props
|
|
6422
6832
|
}) => {
|
|
6423
6833
|
const variantsClassName = ScFieldButton_default["type-" + type] + " " + ScFieldButton_default["state-" + state];
|
|
6424
|
-
return /* @__PURE__ */ (0,
|
|
6834
|
+
return /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
6425
6835
|
"div",
|
|
6426
6836
|
{
|
|
6427
6837
|
className: ScFieldButton_default.scFieldButton + " " + className + " " + variantsClassName,
|
|
6428
6838
|
...props,
|
|
6429
|
-
children: /* @__PURE__ */ (0,
|
|
6430
|
-
(type === "icon-right" || type === "only-icon") && /* @__PURE__ */ (0,
|
|
6431
|
-
(type === "icon-left" || type === "default" || type === "icon-right") && /* @__PURE__ */ (0,
|
|
6839
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: ScFieldButton_default.container, children: [
|
|
6840
|
+
(type === "icon-right" || type === "only-icon") && /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(import_jsx_runtime97.Fragment, { children: icon }),
|
|
6841
|
+
(type === "icon-left" || type === "default" || type === "icon-right") && /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(import_jsx_runtime97.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: ScFieldButton_default.label, children: [
|
|
6432
6842
|
text,
|
|
6433
6843
|
" "
|
|
6434
6844
|
] }) }),
|
|
6435
|
-
type === "icon-left" && /* @__PURE__ */ (0,
|
|
6845
|
+
type === "icon-left" && /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(import_jsx_runtime97.Fragment, { children: icon })
|
|
6436
6846
|
] })
|
|
6437
6847
|
}
|
|
6438
6848
|
);
|
|
@@ -6446,16 +6856,16 @@ var ScPendingAction_default = {
|
|
|
6446
6856
|
};
|
|
6447
6857
|
|
|
6448
6858
|
// src/SC-pendingAction/ScPendingAction.tsx
|
|
6449
|
-
var
|
|
6859
|
+
var import_jsx_runtime98 = __toESM(require_jsx_runtime());
|
|
6450
6860
|
var ScPendingAction = ({
|
|
6451
6861
|
className,
|
|
6452
6862
|
...props
|
|
6453
6863
|
}) => {
|
|
6454
|
-
return /* @__PURE__ */ (0,
|
|
6455
|
-
/* @__PURE__ */ (0,
|
|
6864
|
+
return /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
|
|
6865
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
6456
6866
|
ScButton,
|
|
6457
6867
|
{
|
|
6458
|
-
icon: /* @__PURE__ */ (0,
|
|
6868
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(sicon_Home_default, { className: ScPendingAction_default.siconHomeInstance }),
|
|
6459
6869
|
text: "Cancel",
|
|
6460
6870
|
variant: "error",
|
|
6461
6871
|
type: "tertiary",
|
|
@@ -6463,11 +6873,11 @@ var ScPendingAction = ({
|
|
|
6463
6873
|
className: ScPendingAction_default.scButtonInstance
|
|
6464
6874
|
}
|
|
6465
6875
|
),
|
|
6466
|
-
/* @__PURE__ */ (0,
|
|
6467
|
-
/* @__PURE__ */ (0,
|
|
6876
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsx)(ScVDivider, { className: ScPendingAction_default.scVDividerInstance }),
|
|
6877
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
6468
6878
|
ScButton,
|
|
6469
6879
|
{
|
|
6470
|
-
icon: /* @__PURE__ */ (0,
|
|
6880
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(sicon_Home_default, { className: ScPendingAction_default.siconHomeInstance }),
|
|
6471
6881
|
text: "Resend",
|
|
6472
6882
|
variant: "tertiary",
|
|
6473
6883
|
size: "sm",
|
|
@@ -6490,7 +6900,7 @@ var ScQuickPrompt_default = {
|
|
|
6490
6900
|
};
|
|
6491
6901
|
|
|
6492
6902
|
// src/SC-quick prompt/ScQuickPrompt.tsx
|
|
6493
|
-
var
|
|
6903
|
+
var import_jsx_runtime99 = __toESM(require_jsx_runtime());
|
|
6494
6904
|
var ScQuickPrompt = ({
|
|
6495
6905
|
appName = "Photogenix",
|
|
6496
6906
|
heading = "Swap Model and Background",
|
|
@@ -6498,20 +6908,20 @@ var ScQuickPrompt = ({
|
|
|
6498
6908
|
className,
|
|
6499
6909
|
...props
|
|
6500
6910
|
}) => {
|
|
6501
|
-
return /* @__PURE__ */ (0,
|
|
6502
|
-
/* @__PURE__ */ (0,
|
|
6503
|
-
/* @__PURE__ */ (0,
|
|
6504
|
-
/* @__PURE__ */ (0,
|
|
6911
|
+
return /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScQuickPrompt_default.scQuickPrompt + " " + className, ...props, children: [
|
|
6912
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScQuickPrompt_default.header, children: [
|
|
6913
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsx)("div", { className: ScQuickPrompt_default.iconContainer, children: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(sicon_bolt_default, { className: ScQuickPrompt_default.siconBoltInstance }) }),
|
|
6914
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsx)("div", { className: ScQuickPrompt_default.titleContainer, children: /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScQuickPrompt_default.title, children: [
|
|
6505
6915
|
appName,
|
|
6506
6916
|
" "
|
|
6507
6917
|
] }) })
|
|
6508
6918
|
] }),
|
|
6509
|
-
/* @__PURE__ */ (0,
|
|
6510
|
-
/* @__PURE__ */ (0,
|
|
6919
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScQuickPrompt_default.body, children: [
|
|
6920
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScQuickPrompt_default.heading, children: [
|
|
6511
6921
|
heading,
|
|
6512
6922
|
" "
|
|
6513
6923
|
] }),
|
|
6514
|
-
/* @__PURE__ */ (0,
|
|
6924
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScQuickPrompt_default.description, children: [
|
|
6515
6925
|
description,
|
|
6516
6926
|
" "
|
|
6517
6927
|
] })
|
|
@@ -6528,13 +6938,13 @@ var ScReferralTableHeader_default = {
|
|
|
6528
6938
|
};
|
|
6529
6939
|
|
|
6530
6940
|
// src/SC-referralTableHeader/ScReferralTableHeader.tsx
|
|
6531
|
-
var
|
|
6941
|
+
var import_jsx_runtime100 = __toESM(require_jsx_runtime());
|
|
6532
6942
|
var ScReferralTableHeader = ({
|
|
6533
6943
|
className,
|
|
6534
6944
|
...props
|
|
6535
6945
|
}) => {
|
|
6536
|
-
return /* @__PURE__ */ (0,
|
|
6537
|
-
/* @__PURE__ */ (0,
|
|
6946
|
+
return /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
|
|
6947
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
6538
6948
|
ScHeader,
|
|
6539
6949
|
{
|
|
6540
6950
|
text: "User",
|
|
@@ -6542,7 +6952,7 @@ var ScReferralTableHeader = ({
|
|
|
6542
6952
|
className: ScReferralTableHeader_default.scHeaderInstance
|
|
6543
6953
|
}
|
|
6544
6954
|
),
|
|
6545
|
-
/* @__PURE__ */ (0,
|
|
6955
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
6546
6956
|
ScHeader,
|
|
6547
6957
|
{
|
|
6548
6958
|
text: "Date",
|
|
@@ -6550,7 +6960,7 @@ var ScReferralTableHeader = ({
|
|
|
6550
6960
|
className: ScReferralTableHeader_default.scHeaderInstance2
|
|
6551
6961
|
}
|
|
6552
6962
|
),
|
|
6553
|
-
/* @__PURE__ */ (0,
|
|
6963
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
6554
6964
|
ScHeader,
|
|
6555
6965
|
{
|
|
6556
6966
|
text: "Status",
|
|
@@ -6558,7 +6968,7 @@ var ScReferralTableHeader = ({
|
|
|
6558
6968
|
className: ScReferralTableHeader_default.scHeaderInstance3
|
|
6559
6969
|
}
|
|
6560
6970
|
),
|
|
6561
|
-
/* @__PURE__ */ (0,
|
|
6971
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
6562
6972
|
ScHeader,
|
|
6563
6973
|
{
|
|
6564
6974
|
text: "Reward",
|
|
@@ -6579,7 +6989,7 @@ var ScReferralTableList_default = {
|
|
|
6579
6989
|
};
|
|
6580
6990
|
|
|
6581
6991
|
// src/SC-referralTableList/ScReferralTableList.tsx
|
|
6582
|
-
var
|
|
6992
|
+
var import_jsx_runtime101 = __toESM(require_jsx_runtime());
|
|
6583
6993
|
var ScReferralTableList = ({
|
|
6584
6994
|
userEmail = "chris@kepler.com",
|
|
6585
6995
|
userName,
|
|
@@ -6589,8 +6999,8 @@ var ScReferralTableList = ({
|
|
|
6589
6999
|
className,
|
|
6590
7000
|
...props
|
|
6591
7001
|
}) => {
|
|
6592
|
-
return /* @__PURE__ */ (0,
|
|
6593
|
-
/* @__PURE__ */ (0,
|
|
7002
|
+
return /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
|
|
7003
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
6594
7004
|
ScProfile,
|
|
6595
7005
|
{
|
|
6596
7006
|
subText: userEmail,
|
|
@@ -6598,12 +7008,12 @@ var ScReferralTableList = ({
|
|
|
6598
7008
|
className: ScReferralTableList_default.scProfileInstance
|
|
6599
7009
|
}
|
|
6600
7010
|
),
|
|
6601
|
-
/* @__PURE__ */ (0,
|
|
7011
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsxs)("div", { className: ScReferralTableList_default.date, children: [
|
|
6602
7012
|
date,
|
|
6603
7013
|
" "
|
|
6604
7014
|
] }),
|
|
6605
|
-
/* @__PURE__ */ (0,
|
|
6606
|
-
/* @__PURE__ */ (0,
|
|
7015
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)(ScBadges, { text: status, className: ScReferralTableList_default.scBadgesInstance }),
|
|
7016
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsxs)("div", { className: ScReferralTableList_default.points, children: [
|
|
6607
7017
|
points,
|
|
6608
7018
|
" "
|
|
6609
7019
|
] })
|
|
@@ -6617,33 +7027,33 @@ var ScSettingsNav_default = {
|
|
|
6617
7027
|
};
|
|
6618
7028
|
|
|
6619
7029
|
// src/SC-settingsNav/ScSettingsNav.tsx
|
|
6620
|
-
var
|
|
7030
|
+
var import_jsx_runtime102 = __toESM(require_jsx_runtime());
|
|
6621
7031
|
var ScSettingsNav = ({
|
|
6622
7032
|
className,
|
|
6623
7033
|
...props
|
|
6624
7034
|
}) => {
|
|
6625
|
-
return /* @__PURE__ */ (0,
|
|
6626
|
-
/* @__PURE__ */ (0,
|
|
7035
|
+
return /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("div", { className: ScSettingsNav_default.scSettingsNav + " " + className, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)("div", { className: ScSettingsNav_default.container, children: [
|
|
7036
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
6627
7037
|
ScSidebarMenu,
|
|
6628
7038
|
{
|
|
6629
|
-
icon: /* @__PURE__ */ (0,
|
|
7039
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(sicon_team_default, { className: ScSettingsNav_default.siconTeamInstance }),
|
|
6630
7040
|
text: "Profile",
|
|
6631
7041
|
state: "active",
|
|
6632
7042
|
className: ScSettingsNav_default.scSidebarMenuInstance
|
|
6633
7043
|
}
|
|
6634
7044
|
),
|
|
6635
|
-
/* @__PURE__ */ (0,
|
|
7045
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
6636
7046
|
ScSidebarMenu,
|
|
6637
7047
|
{
|
|
6638
|
-
icon: /* @__PURE__ */ (0,
|
|
7048
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(sicon_workspace_default, { className: ScSettingsNav_default.siconWorkspaceInstance }),
|
|
6639
7049
|
text: "Workspace",
|
|
6640
7050
|
className: ScSettingsNav_default.scSidebarMenuInstance
|
|
6641
7051
|
}
|
|
6642
7052
|
),
|
|
6643
|
-
/* @__PURE__ */ (0,
|
|
7053
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
6644
7054
|
ScSidebarMenu,
|
|
6645
7055
|
{
|
|
6646
|
-
icon: /* @__PURE__ */ (0,
|
|
7056
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(sicon_referral_default, { className: ScSettingsNav_default.siconReferralInstance }),
|
|
6647
7057
|
text: "Referral",
|
|
6648
7058
|
className: ScSettingsNav_default.scSidebarMenuInstance
|
|
6649
7059
|
}
|
|
@@ -6659,18 +7069,18 @@ var ScTabField_default = {
|
|
|
6659
7069
|
};
|
|
6660
7070
|
|
|
6661
7071
|
// src/SC-tabField/ScTabField.tsx
|
|
6662
|
-
var
|
|
7072
|
+
var import_jsx_runtime103 = __toESM(require_jsx_runtime());
|
|
6663
7073
|
var ScTabField = ({
|
|
6664
7074
|
label = "Label",
|
|
6665
7075
|
className,
|
|
6666
7076
|
...props
|
|
6667
7077
|
}) => {
|
|
6668
|
-
return /* @__PURE__ */ (0,
|
|
6669
|
-
/* @__PURE__ */ (0,
|
|
7078
|
+
return /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)("div", { className: ScTabField_default.scTabField + " " + className, children: [
|
|
7079
|
+
/* @__PURE__ */ (0, import_jsx_runtime103.jsx)("div", { className: ScTabField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)("div", { className: ScTabField_default.label, children: [
|
|
6670
7080
|
label,
|
|
6671
7081
|
" "
|
|
6672
7082
|
] }) }),
|
|
6673
|
-
/* @__PURE__ */ (0,
|
|
7083
|
+
/* @__PURE__ */ (0, import_jsx_runtime103.jsx)(ScTabSwitcher, { className: ScTabField_default.scTabSwitcherInstance })
|
|
6674
7084
|
] });
|
|
6675
7085
|
};
|
|
6676
7086
|
|
|
@@ -6687,19 +7097,19 @@ var ScTableHeader_default = {
|
|
|
6687
7097
|
};
|
|
6688
7098
|
|
|
6689
7099
|
// src/SC-tableHeader/ScTableHeader.tsx
|
|
6690
|
-
var
|
|
7100
|
+
var import_jsx_runtime104 = __toESM(require_jsx_runtime());
|
|
6691
7101
|
var ScTableHeader = ({
|
|
6692
7102
|
type = "default",
|
|
6693
7103
|
className,
|
|
6694
7104
|
...props
|
|
6695
7105
|
}) => {
|
|
6696
7106
|
const variantsClassName = ScTableHeader_default["type-" + type];
|
|
6697
|
-
return /* @__PURE__ */ (0,
|
|
7107
|
+
return /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(
|
|
6698
7108
|
"div",
|
|
6699
7109
|
{
|
|
6700
7110
|
className: ScTableHeader_default.scTableHeader + " " + className + " " + variantsClassName,
|
|
6701
7111
|
children: [
|
|
6702
|
-
/* @__PURE__ */ (0,
|
|
7112
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
6703
7113
|
ScHeader,
|
|
6704
7114
|
{
|
|
6705
7115
|
text: "User",
|
|
@@ -6707,7 +7117,7 @@ var ScTableHeader = ({
|
|
|
6707
7117
|
className: ScTableHeader_default.scHeaderInstance
|
|
6708
7118
|
}
|
|
6709
7119
|
),
|
|
6710
|
-
/* @__PURE__ */ (0,
|
|
7120
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
6711
7121
|
ScHeader,
|
|
6712
7122
|
{
|
|
6713
7123
|
text: "Role",
|
|
@@ -6715,7 +7125,7 @@ var ScTableHeader = ({
|
|
|
6715
7125
|
className: ScTableHeader_default.scHeaderInstance2
|
|
6716
7126
|
}
|
|
6717
7127
|
),
|
|
6718
|
-
/* @__PURE__ */ (0,
|
|
7128
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
6719
7129
|
ScHeader,
|
|
6720
7130
|
{
|
|
6721
7131
|
text: "Access",
|
|
@@ -6723,7 +7133,7 @@ var ScTableHeader = ({
|
|
|
6723
7133
|
className: ScTableHeader_default.scHeaderInstance3
|
|
6724
7134
|
}
|
|
6725
7135
|
),
|
|
6726
|
-
/* @__PURE__ */ (0,
|
|
7136
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
6727
7137
|
ScHeader,
|
|
6728
7138
|
{
|
|
6729
7139
|
text: "Invited by",
|
|
@@ -6731,7 +7141,7 @@ var ScTableHeader = ({
|
|
|
6731
7141
|
className: ScTableHeader_default.scHeaderInstance4
|
|
6732
7142
|
}
|
|
6733
7143
|
),
|
|
6734
|
-
type === "pending" && /* @__PURE__ */ (0,
|
|
7144
|
+
type === "pending" && /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(import_jsx_runtime104.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
6735
7145
|
ScHeader,
|
|
6736
7146
|
{
|
|
6737
7147
|
text: "Invite action",
|
|
@@ -6739,7 +7149,7 @@ var ScTableHeader = ({
|
|
|
6739
7149
|
className: ScTableHeader_default.scHeaderInstance5
|
|
6740
7150
|
}
|
|
6741
7151
|
) }),
|
|
6742
|
-
type === "default" && /* @__PURE__ */ (0,
|
|
7152
|
+
type === "default" && /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(import_jsx_runtime104.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
6743
7153
|
ScHeader,
|
|
6744
7154
|
{
|
|
6745
7155
|
text: "Signed On",
|
|
@@ -6771,7 +7181,7 @@ var ScTableList_default = {
|
|
|
6771
7181
|
};
|
|
6772
7182
|
|
|
6773
7183
|
// src/SC-tableList/ScTableList.tsx
|
|
6774
|
-
var
|
|
7184
|
+
var import_jsx_runtime105 = __toESM(require_jsx_runtime());
|
|
6775
7185
|
var ScTableList = ({
|
|
6776
7186
|
invitedBy = "Rohan",
|
|
6777
7187
|
signedOn = "Nov 9th, 2025",
|
|
@@ -6783,51 +7193,51 @@ var ScTableList = ({
|
|
|
6783
7193
|
...props
|
|
6784
7194
|
}) => {
|
|
6785
7195
|
const variantsClassName = ScTableList_default["hover-" + hover] + " " + ScTableList_default["variant-" + variant];
|
|
6786
|
-
return /* @__PURE__ */ (0,
|
|
7196
|
+
return /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(
|
|
6787
7197
|
"div",
|
|
6788
7198
|
{
|
|
6789
7199
|
className: ScTableList_default.scTableList + " " + className + " " + variantsClassName,
|
|
6790
7200
|
onClick: (e) => onRowClick && onRowClick(invitedBy, e),
|
|
6791
7201
|
...props,
|
|
6792
7202
|
children: [
|
|
6793
|
-
/* @__PURE__ */ (0,
|
|
7203
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
6794
7204
|
ScProfile,
|
|
6795
7205
|
{
|
|
6796
7206
|
subText: userEmail,
|
|
6797
7207
|
className: ScTableList_default.scProfileInstance
|
|
6798
7208
|
}
|
|
6799
7209
|
),
|
|
6800
|
-
/* @__PURE__ */ (0,
|
|
6801
|
-
/* @__PURE__ */ (0,
|
|
6802
|
-
/* @__PURE__ */ (0,
|
|
7210
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)(ScRole, { className: ScTableList_default.scRoleInstance }),
|
|
7211
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsxs)("div", { className: ScTableList_default.accessInfo, children: [
|
|
7212
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
6803
7213
|
ScAccess,
|
|
6804
7214
|
{
|
|
6805
|
-
component: /* @__PURE__ */ (0,
|
|
6806
|
-
component2: /* @__PURE__ */ (0,
|
|
7215
|
+
component: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(sicon_artifacts_default, { className: ScTableList_default.siconArtifactsInstance }),
|
|
7216
|
+
component2: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(sicon_photogenix_default, { className: ScTableList_default.siconPhotogenixInstance }),
|
|
6807
7217
|
className: ScTableList_default.scAccessInstance
|
|
6808
7218
|
}
|
|
6809
7219
|
),
|
|
6810
|
-
/* @__PURE__ */ (0,
|
|
7220
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
6811
7221
|
ScAccess,
|
|
6812
7222
|
{
|
|
6813
|
-
component: /* @__PURE__ */ (0,
|
|
6814
|
-
component2: /* @__PURE__ */ (0,
|
|
7223
|
+
component: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(sicon_userAdd_default, { className: ScTableList_default.siconUserAddInstance }),
|
|
7224
|
+
component2: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(sicon_Coins_default, { className: ScTableList_default.siconCoinsInstance }),
|
|
6815
7225
|
visibleSiconCatalogix: false,
|
|
6816
7226
|
className: ScTableList_default.scAccessInstance
|
|
6817
7227
|
}
|
|
6818
7228
|
)
|
|
6819
7229
|
] }),
|
|
6820
|
-
/* @__PURE__ */ (0,
|
|
7230
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsxs)("div", { className: ScTableList_default.userName, children: [
|
|
6821
7231
|
invitedBy,
|
|
6822
7232
|
" "
|
|
6823
7233
|
] }),
|
|
6824
|
-
variant === "pending" && /* @__PURE__ */ (0,
|
|
7234
|
+
variant === "pending" && /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(import_jsx_runtime105.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
6825
7235
|
ScPendingAction,
|
|
6826
7236
|
{
|
|
6827
7237
|
className: ScTableList_default.scPendingActionInstance
|
|
6828
7238
|
}
|
|
6829
7239
|
) }),
|
|
6830
|
-
variant === "active" && /* @__PURE__ */ (0,
|
|
7240
|
+
variant === "active" && /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(import_jsx_runtime105.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)("div", { className: ScTableList_default.date, children: [
|
|
6831
7241
|
signedOn,
|
|
6832
7242
|
" "
|
|
6833
7243
|
] }) })
|
|
@@ -6856,7 +7266,7 @@ var ScWorkspaceCard_default = {
|
|
|
6856
7266
|
};
|
|
6857
7267
|
|
|
6858
7268
|
// src/SC-workspaceCard/ScWorkspaceCard.tsx
|
|
6859
|
-
var
|
|
7269
|
+
var import_jsx_runtime106 = __toESM(require_jsx_runtime());
|
|
6860
7270
|
var ScWorkspaceCard = ({
|
|
6861
7271
|
workspaceName = "Stores",
|
|
6862
7272
|
role = "Admin",
|
|
@@ -6866,21 +7276,21 @@ var ScWorkspaceCard = ({
|
|
|
6866
7276
|
className,
|
|
6867
7277
|
...props
|
|
6868
7278
|
}) => {
|
|
6869
|
-
return /* @__PURE__ */ (0,
|
|
6870
|
-
/* @__PURE__ */ (0,
|
|
6871
|
-
/* @__PURE__ */ (0,
|
|
7279
|
+
return /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("div", { className: ScWorkspaceCard_default.scWorkspaceCard + " " + className, ...props, children: [
|
|
7280
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("div", { className: ScWorkspaceCard_default.workspaceInfo, children: [
|
|
7281
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
6872
7282
|
ScIntialProfileCover,
|
|
6873
7283
|
{
|
|
6874
7284
|
className: ScWorkspaceCard_default.scIntialProfileCoverInstance
|
|
6875
7285
|
}
|
|
6876
7286
|
),
|
|
6877
|
-
/* @__PURE__ */ (0,
|
|
7287
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("div", { className: ScWorkspaceCard_default.workspaceName, children: [
|
|
6878
7288
|
workspaceName,
|
|
6879
7289
|
" "
|
|
6880
7290
|
] })
|
|
6881
7291
|
] }),
|
|
6882
|
-
/* @__PURE__ */ (0,
|
|
6883
|
-
/* @__PURE__ */ (0,
|
|
7292
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("div", { className: ScWorkspaceCard_default.userInfo, children: [
|
|
7293
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
6884
7294
|
ScBadges,
|
|
6885
7295
|
{
|
|
6886
7296
|
text: role,
|
|
@@ -6888,41 +7298,41 @@ var ScWorkspaceCard = ({
|
|
|
6888
7298
|
className: ScWorkspaceCard_default.scBadgesInstance
|
|
6889
7299
|
}
|
|
6890
7300
|
),
|
|
6891
|
-
/* @__PURE__ */ (0,
|
|
6892
|
-
/* @__PURE__ */ (0,
|
|
7301
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("div", { className: ScWorkspaceCard_default.userDetails, children: [
|
|
7302
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
6893
7303
|
ScPairtext,
|
|
6894
7304
|
{
|
|
6895
|
-
icon: /* @__PURE__ */ (0,
|
|
7305
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(sicon_team_default, { className: ScWorkspaceCard_default.siconTeamInstance }),
|
|
6896
7306
|
content: userCount,
|
|
6897
7307
|
className: ScWorkspaceCard_default.scPairtextInstance
|
|
6898
7308
|
}
|
|
6899
7309
|
),
|
|
6900
|
-
/* @__PURE__ */ (0,
|
|
6901
|
-
/* @__PURE__ */ (0,
|
|
7310
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(ScVDivider, { className: ScWorkspaceCard_default.scVDividerInstance }),
|
|
7311
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
6902
7312
|
ScPairtext,
|
|
6903
7313
|
{
|
|
6904
|
-
icon: /* @__PURE__ */ (0,
|
|
7314
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(sicon_Crown_default, { className: ScWorkspaceCard_default.siconCrownInstance }),
|
|
6905
7315
|
content: ownerEmail,
|
|
6906
7316
|
className: ScWorkspaceCard_default.scPairtextInstance
|
|
6907
7317
|
}
|
|
6908
7318
|
)
|
|
6909
7319
|
] })
|
|
6910
7320
|
] }),
|
|
6911
|
-
/* @__PURE__ */ (0,
|
|
7321
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
6912
7322
|
ScButton,
|
|
6913
7323
|
{
|
|
6914
|
-
icon: /* @__PURE__ */ (0,
|
|
7324
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(sicon_switch_default, { className: ScWorkspaceCard_default.siconSwitchInstance }),
|
|
6915
7325
|
text: buttonText,
|
|
6916
7326
|
state: "disabled",
|
|
6917
7327
|
variant: "outline",
|
|
6918
7328
|
className: ScWorkspaceCard_default.scButtonInstance
|
|
6919
7329
|
}
|
|
6920
7330
|
),
|
|
6921
|
-
/* @__PURE__ */ (0,
|
|
7331
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
6922
7332
|
ScButton,
|
|
6923
7333
|
{
|
|
6924
7334
|
text: "Leave workspace",
|
|
6925
|
-
icon: /* @__PURE__ */ (0,
|
|
7335
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(sicon_logout_default, { className: ScWorkspaceCard_default.siconLogoutInstance }),
|
|
6926
7336
|
styleVariant: "icon-only",
|
|
6927
7337
|
variant: "error",
|
|
6928
7338
|
className: ScWorkspaceCard_default.scButtonInstance2
|