@streamoid/ui 0.1.6 → 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.mjs CHANGED
@@ -2793,11 +2793,11 @@ var require_react_jsx_runtime_development = __commonJS({
2793
2793
  return jsxWithValidation(type, props, key, false);
2794
2794
  }
2795
2795
  }
2796
- var jsx105 = jsxWithValidationDynamic;
2797
- var jsxs57 = jsxWithValidationStatic;
2796
+ var jsx106 = jsxWithValidationDynamic;
2797
+ var jsxs58 = jsxWithValidationStatic;
2798
2798
  exports.Fragment = REACT_FRAGMENT_TYPE;
2799
- exports.jsx = jsx105;
2800
- exports.jsxs = jsxs57;
2799
+ exports.jsx = jsx106;
2800
+ exports.jsxs = jsxs58;
2801
2801
  })();
2802
2802
  }
2803
2803
  }
@@ -5773,6 +5773,415 @@ var ScSidebar = ({
5773
5773
  );
5774
5774
  };
5775
5775
 
5776
+ // src/SC-sidebarnew/streamoid-sidebar.tsx
5777
+ var import_jsx_runtime85 = __toESM(require_jsx_runtime());
5778
+ function SectionHeader({ label }) {
5779
+ 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)(
5780
+ "div",
5781
+ {
5782
+ className: "flex items-center w-full text-text-xs-regular",
5783
+ style: {
5784
+ padding: "var(--spacing-xs) var(--spacing-3xl)",
5785
+ color: "var(--alias-text---icons-tertiary)"
5786
+ },
5787
+ children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { children: label })
5788
+ }
5789
+ ) }) });
5790
+ }
5791
+ function HDivider() {
5792
+ return /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
5793
+ "div",
5794
+ {
5795
+ className: "shrink-0 w-full",
5796
+ style: {
5797
+ height: "0.5px",
5798
+ backgroundColor: "var(--alias-border-subtle)"
5799
+ }
5800
+ }
5801
+ );
5802
+ }
5803
+ function resolveIcon(iconMap, item, active, expanded) {
5804
+ const renderer = iconMap[item.iconKey];
5805
+ if (!renderer) return null;
5806
+ if (typeof renderer === "function") {
5807
+ return renderer({ item, active, expanded });
5808
+ }
5809
+ return renderer;
5810
+ }
5811
+ function resolveToggleIcon(toggleIcon, expanded) {
5812
+ if (!toggleIcon) return null;
5813
+ if (typeof toggleIcon === "function") {
5814
+ return toggleIcon(expanded);
5815
+ }
5816
+ return toggleIcon;
5817
+ }
5818
+ function renderMenuItem({
5819
+ item,
5820
+ sectionId,
5821
+ expanded,
5822
+ activeItemId,
5823
+ iconMap,
5824
+ onItemSelect
5825
+ }) {
5826
+ const active = item.id === activeItemId;
5827
+ return /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
5828
+ ScSidebarMenu,
5829
+ {
5830
+ icon: resolveIcon(iconMap, item, active, expanded),
5831
+ text: expanded ? item.label : void 0,
5832
+ state: active ? "active" : "default",
5833
+ variant: expanded ? "expanded" : "collapsed",
5834
+ onClick: () => onItemSelect?.(item, sectionId)
5835
+ },
5836
+ item.id
5837
+ );
5838
+ }
5839
+ function StreamoidSidebar({
5840
+ expanded,
5841
+ onToggle,
5842
+ config,
5843
+ iconMap,
5844
+ activeItemId,
5845
+ onItemSelect,
5846
+ expandedLogo,
5847
+ collapsedLogo,
5848
+ profile,
5849
+ versionText = "v1.0.0",
5850
+ toggleIcon,
5851
+ className,
5852
+ style
5853
+ }) {
5854
+ if (expanded) {
5855
+ return /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
5856
+ "div",
5857
+ {
5858
+ className: `flex h-full items-center shrink-0 ${className ?? ""}`.trim(),
5859
+ style: { padding: "var(--spacing-3xl)", ...style },
5860
+ children: /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
5861
+ "div",
5862
+ {
5863
+ className: "flex flex-col h-full relative shrink-0",
5864
+ style: {
5865
+ backgroundColor: "var(--alias-surface-base)",
5866
+ borderRadius: "var(--radius-3xl)",
5867
+ padding: "var(--spacing-md)",
5868
+ width: 256,
5869
+ gap: "var(--spacing-xxs)"
5870
+ },
5871
+ children: [
5872
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
5873
+ "div",
5874
+ {
5875
+ "aria-hidden": "true",
5876
+ className: "absolute inset-0 pointer-events-none",
5877
+ style: {
5878
+ border: "1px solid var(--alias-border-subtle)",
5879
+ borderRadius: "var(--radius-3xl)"
5880
+ }
5881
+ }
5882
+ ),
5883
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
5884
+ "div",
5885
+ {
5886
+ className: "flex flex-col flex-1 items-start min-h-0 w-full overflow-y-auto sidebar-scroll",
5887
+ style: { gap: "var(--spacing-xxs)" },
5888
+ children: [
5889
+ expandedLogo,
5890
+ config.topItem && /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
5891
+ "div",
5892
+ {
5893
+ className: "flex flex-col items-start shrink-0 w-full",
5894
+ style: { padding: "var(--spacing-md) 0" },
5895
+ children: renderMenuItem({
5896
+ item: config.topItem,
5897
+ sectionId: "top",
5898
+ expanded: true,
5899
+ activeItemId,
5900
+ iconMap,
5901
+ onItemSelect
5902
+ })
5903
+ }
5904
+ ),
5905
+ config.sections.map((section) => /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
5906
+ "div",
5907
+ {
5908
+ className: "flex flex-col items-start shrink-0 w-full",
5909
+ style: {
5910
+ padding: "var(--spacing-md) 0",
5911
+ gap: "var(--spacing-xxs)"
5912
+ },
5913
+ children: [
5914
+ section.label ? /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(SectionHeader, { label: section.label }) : null,
5915
+ section.items.map(
5916
+ (item) => renderMenuItem({
5917
+ item,
5918
+ sectionId: section.id,
5919
+ expanded: true,
5920
+ activeItemId,
5921
+ iconMap,
5922
+ onItemSelect
5923
+ })
5924
+ )
5925
+ ]
5926
+ },
5927
+ section.id
5928
+ ))
5929
+ ]
5930
+ }
5931
+ ),
5932
+ config.bottomItems?.length ? /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
5933
+ "div",
5934
+ {
5935
+ className: "flex flex-col items-start shrink-0 w-full",
5936
+ style: { padding: "var(--spacing-md) 0" },
5937
+ children: config.bottomItems.map(
5938
+ (item) => renderMenuItem({
5939
+ item,
5940
+ sectionId: "bottom",
5941
+ expanded: true,
5942
+ activeItemId,
5943
+ iconMap,
5944
+ onItemSelect
5945
+ })
5946
+ )
5947
+ }
5948
+ ) : null,
5949
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(HDivider, {}),
5950
+ profile ? /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(import_jsx_runtime85.Fragment, { children: [
5951
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
5952
+ "div",
5953
+ {
5954
+ className: "flex items-center shrink-0 w-full cursor-pointer",
5955
+ style: {
5956
+ padding: "var(--spacing-md)",
5957
+ gap: "var(--spacing-md)",
5958
+ borderRadius: "var(--radius-xl)"
5959
+ },
5960
+ onClick: profile.onClick,
5961
+ onMouseEnter: (e) => {
5962
+ e.currentTarget.style.background = "var(--alias-fill-neutral-neutral)";
5963
+ },
5964
+ onMouseLeave: (e) => {
5965
+ e.currentTarget.style.background = "transparent";
5966
+ },
5967
+ children: [
5968
+ profile.avatar,
5969
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: "flex flex-col flex-1 min-w-0", children: [
5970
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
5971
+ "span",
5972
+ {
5973
+ className: "text-text-sm-medium truncate",
5974
+ style: { color: "var(--alias-text---icons-primary)" },
5975
+ children: profile.name
5976
+ }
5977
+ ),
5978
+ profile.subtitle ? /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
5979
+ "span",
5980
+ {
5981
+ className: "text-text-xs-regular truncate",
5982
+ style: { color: "var(--alias-text---icons-muted)" },
5983
+ children: profile.subtitle
5984
+ }
5985
+ ) : null
5986
+ ] })
5987
+ ]
5988
+ }
5989
+ ),
5990
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(HDivider, {})
5991
+ ] }) : null,
5992
+ /* @__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)(
5993
+ "div",
5994
+ {
5995
+ className: "flex items-center w-full",
5996
+ style: {
5997
+ gap: "var(--spacing-xs)",
5998
+ padding: "var(--spacing-xs) var(--spacing-xs) var(--spacing-xs) var(--spacing-3xl)"
5999
+ },
6000
+ children: [
6001
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6002
+ "p",
6003
+ {
6004
+ className: "flex-1 text-text-sm-regular truncate",
6005
+ style: { color: "var(--alias-text---icons-muted)" },
6006
+ children: versionText
6007
+ }
6008
+ ),
6009
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6010
+ "div",
6011
+ {
6012
+ className: "flex items-center cursor-pointer",
6013
+ style: {
6014
+ padding: "var(--spacing-md)",
6015
+ borderRadius: "var(--radius-3xl)"
6016
+ },
6017
+ onClick: onToggle,
6018
+ children: resolveToggleIcon(toggleIcon, true)
6019
+ }
6020
+ )
6021
+ ]
6022
+ }
6023
+ ) }) })
6024
+ ]
6025
+ }
6026
+ )
6027
+ }
6028
+ );
6029
+ }
6030
+ return /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6031
+ "div",
6032
+ {
6033
+ className: `flex h-full items-center justify-center shrink-0 ${className ?? ""}`.trim(),
6034
+ style,
6035
+ children: /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
6036
+ "div",
6037
+ {
6038
+ className: "flex flex-col h-full items-center justify-center relative shrink-0",
6039
+ style: {
6040
+ backgroundColor: "var(--alias-surface-base)",
6041
+ padding: "var(--spacing-md)",
6042
+ gap: "var(--spacing-xxs)"
6043
+ },
6044
+ children: [
6045
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6046
+ "div",
6047
+ {
6048
+ "aria-hidden": "true",
6049
+ className: "absolute inset-0 pointer-events-none",
6050
+ style: {
6051
+ borderRight: "1px solid var(--alias-border-subtle)"
6052
+ }
6053
+ }
6054
+ ),
6055
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
6056
+ "div",
6057
+ {
6058
+ className: "flex flex-col flex-1 items-center min-h-0 overflow-y-auto sidebar-scroll",
6059
+ style: { gap: "var(--spacing-xxs)" },
6060
+ children: [
6061
+ collapsedLogo,
6062
+ config.topItem ? /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(import_jsx_runtime85.Fragment, { children: [
6063
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6064
+ "div",
6065
+ {
6066
+ className: "flex flex-col items-start shrink-0",
6067
+ style: { padding: "var(--spacing-md) 0" },
6068
+ children: renderMenuItem({
6069
+ item: config.topItem,
6070
+ sectionId: "top",
6071
+ expanded: false,
6072
+ activeItemId,
6073
+ iconMap,
6074
+ onItemSelect
6075
+ })
6076
+ }
6077
+ ),
6078
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(HDivider, {})
6079
+ ] }) : null,
6080
+ config.sections.map((section, sectionIndex) => /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: "flex flex-col items-center w-full", children: [
6081
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6082
+ "div",
6083
+ {
6084
+ className: "flex flex-col items-start shrink-0",
6085
+ style: {
6086
+ padding: "var(--spacing-md) 0",
6087
+ gap: "var(--spacing-xxs)"
6088
+ },
6089
+ children: section.items.map(
6090
+ (item) => renderMenuItem({
6091
+ item,
6092
+ sectionId: section.id,
6093
+ expanded: false,
6094
+ activeItemId,
6095
+ iconMap,
6096
+ onItemSelect
6097
+ })
6098
+ )
6099
+ }
6100
+ ),
6101
+ sectionIndex < config.sections.length - 1 ? /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(HDivider, {}) : null
6102
+ ] }, section.id))
6103
+ ]
6104
+ }
6105
+ ),
6106
+ config.bottomItems?.length ? /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6107
+ "div",
6108
+ {
6109
+ className: "flex flex-col items-center justify-center shrink-0 w-full",
6110
+ style: { padding: "var(--spacing-md) 0" },
6111
+ children: config.bottomItems.map(
6112
+ (item) => renderMenuItem({
6113
+ item,
6114
+ sectionId: "bottom",
6115
+ expanded: false,
6116
+ activeItemId,
6117
+ iconMap,
6118
+ onItemSelect
6119
+ })
6120
+ )
6121
+ }
6122
+ ) : null,
6123
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(HDivider, {}),
6124
+ profile ? /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(import_jsx_runtime85.Fragment, { children: [
6125
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6126
+ "div",
6127
+ {
6128
+ className: "flex items-center justify-center shrink-0 cursor-pointer",
6129
+ style: {
6130
+ padding: "var(--spacing-md) 0",
6131
+ borderRadius: "var(--radius-3xl)"
6132
+ },
6133
+ onClick: profile.onClick,
6134
+ onMouseEnter: (e) => {
6135
+ e.currentTarget.style.background = "var(--alias-fill-neutral-neutral)";
6136
+ },
6137
+ onMouseLeave: (e) => {
6138
+ e.currentTarget.style.background = "transparent";
6139
+ },
6140
+ children: profile.avatar
6141
+ }
6142
+ ),
6143
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(HDivider, {})
6144
+ ] }) : null,
6145
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
6146
+ "div",
6147
+ {
6148
+ className: "shrink-0 flex flex-col items-center",
6149
+ style: {
6150
+ gap: "var(--spacing-xl)",
6151
+ padding: "var(--spacing-md)",
6152
+ width: 56
6153
+ },
6154
+ children: [
6155
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6156
+ "div",
6157
+ {
6158
+ className: "flex items-center cursor-pointer",
6159
+ style: {
6160
+ padding: "var(--spacing-md)",
6161
+ borderRadius: "var(--radius-3xl)"
6162
+ },
6163
+ onClick: onToggle,
6164
+ children: resolveToggleIcon(toggleIcon, false)
6165
+ }
6166
+ ),
6167
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6168
+ "p",
6169
+ {
6170
+ className: "text-text-xs-regular text-center truncate",
6171
+ style: { color: "var(--alias-text---icons-muted)" },
6172
+ children: versionText
6173
+ }
6174
+ )
6175
+ ]
6176
+ }
6177
+ )
6178
+ ]
6179
+ }
6180
+ )
6181
+ }
6182
+ );
6183
+ }
6184
+
5776
6185
  // src/SC-Slider/ScSlider.module.css
5777
6186
  var ScSlider_default = {
5778
6187
  scSlider: "ScSlider_scSlider",
@@ -5783,23 +6192,23 @@ var ScSlider_default = {
5783
6192
  };
5784
6193
 
5785
6194
  // src/SC-Slider/ScSlider.tsx
5786
- var import_jsx_runtime85 = __toESM(require_jsx_runtime());
6195
+ var import_jsx_runtime86 = __toESM(require_jsx_runtime());
5787
6196
  var ScSlider = ({
5788
6197
  className,
5789
6198
  onValueChange,
5790
6199
  ...props
5791
6200
  }) => {
5792
- return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: ScSlider_default.scSlider + " " + className, ...props, children: [
5793
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScSlider_default.progressBar }),
5794
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScSlider_default.progressDot }),
5795
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScSlider_default.progressBar2 }),
5796
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScSlider_default.progressDot2 }),
5797
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScSlider_default.progressBar2 }),
5798
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScSlider_default.progressDot2 }),
5799
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScSlider_default.progressBar2 }),
5800
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScSlider_default.progressDot2 }),
5801
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScSlider_default.progressBar2 }),
5802
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: ScSlider_default.progressDot2 })
6201
+ return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)("div", { className: ScSlider_default.scSlider + " " + className, ...props, children: [
6202
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScSlider_default.progressBar }),
6203
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScSlider_default.progressDot }),
6204
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScSlider_default.progressBar2 }),
6205
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScSlider_default.progressDot2 }),
6206
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScSlider_default.progressBar2 }),
6207
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScSlider_default.progressDot2 }),
6208
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScSlider_default.progressBar2 }),
6209
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScSlider_default.progressDot2 }),
6210
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScSlider_default.progressBar2 }),
6211
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScSlider_default.progressDot2 })
5803
6212
  ] });
5804
6213
  };
5805
6214
 
@@ -5813,23 +6222,23 @@ var ScAppListingCard_default = {
5813
6222
  };
5814
6223
 
5815
6224
  // src/SC-app listing card/ScAppListingCard.tsx
5816
- var import_jsx_runtime86 = __toESM(require_jsx_runtime());
6225
+ var import_jsx_runtime87 = __toESM(require_jsx_runtime());
5817
6226
  var ScAppListingCard = ({
5818
- icon = /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(sicon_Cart_default, { className: ScAppListingCard_default.siconCartInstance }),
6227
+ icon = /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(sicon_Cart_default, { className: ScAppListingCard_default.siconCartInstance }),
5819
6228
  title = "Stores",
5820
6229
  descrp = "Centralized product and asset management for every storefront",
5821
6230
  className,
5822
6231
  ...props
5823
6232
  }) => {
5824
- return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)("div", { className: ScAppListingCard_default.scAppListingCard + " " + className, ...props, children: [
5825
- /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)("div", { className: ScAppListingCard_default.header, children: [
5826
- /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { className: ScAppListingCard_default.iconContainer, children: icon }),
5827
- /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)("div", { className: ScAppListingCard_default.title, children: [
6233
+ return /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("div", { className: ScAppListingCard_default.scAppListingCard + " " + className, ...props, children: [
6234
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("div", { className: ScAppListingCard_default.header, children: [
6235
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("div", { className: ScAppListingCard_default.iconContainer, children: icon }),
6236
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("div", { className: ScAppListingCard_default.title, children: [
5828
6237
  title,
5829
6238
  " "
5830
6239
  ] })
5831
6240
  ] }),
5832
- /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)("div", { className: ScAppListingCard_default.description, children: [
6241
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("div", { className: ScAppListingCard_default.description, children: [
5833
6242
  descrp,
5834
6243
  " "
5835
6244
  ] })
@@ -5846,22 +6255,22 @@ var ScAppCard_default = {
5846
6255
  };
5847
6256
 
5848
6257
  // src/SC-appCard/ScAppCard.tsx
5849
- var import_jsx_runtime87 = __toESM(require_jsx_runtime());
6258
+ var import_jsx_runtime88 = __toESM(require_jsx_runtime());
5850
6259
  var ScAppCard = ({
5851
- appIcon = /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(sicon_artifacts_default, { className: ScAppCard_default.siconArtifactsInstance }),
6260
+ appIcon = /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(sicon_artifacts_default, { className: ScAppCard_default.siconArtifactsInstance }),
5852
6261
  appName = "Artifax",
5853
6262
  appDescription = "Info about artifax",
5854
6263
  className,
5855
6264
  ...props
5856
6265
  }) => {
5857
- return /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("div", { className: ScAppCard_default.scAppCard + " " + className, ...props, children: [
5858
- /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("div", { className: ScAppCard_default.iconContainer, children: appIcon }),
5859
- /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("div", { className: ScAppCard_default.textContainer, children: [
5860
- /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("div", { className: ScAppCard_default.title, children: [
6266
+ return /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScAppCard_default.scAppCard + " " + className, ...props, children: [
6267
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("div", { className: ScAppCard_default.iconContainer, children: appIcon }),
6268
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScAppCard_default.textContainer, children: [
6269
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScAppCard_default.title, children: [
5861
6270
  appName,
5862
6271
  " "
5863
6272
  ] }),
5864
- /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("div", { className: ScAppCard_default.subtitle, children: [
6273
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)("div", { className: ScAppCard_default.subtitle, children: [
5865
6274
  appDescription,
5866
6275
  " "
5867
6276
  ] })
@@ -5897,19 +6306,19 @@ var ScToggleSwitch_default = {
5897
6306
  };
5898
6307
 
5899
6308
  // src/SC-toggleSwitch/ScToggleSwitch.tsx
5900
- var import_jsx_runtime88 = __toESM(require_jsx_runtime());
6309
+ var import_jsx_runtime89 = __toESM(require_jsx_runtime());
5901
6310
  var ScToggleSwitch = ({
5902
6311
  active = "false",
5903
6312
  className,
5904
6313
  ...props
5905
6314
  }) => {
5906
6315
  const variantsClassName = ScToggleSwitch_default["active-" + active];
5907
- return /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
6316
+ return /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
5908
6317
  "div",
5909
6318
  {
5910
6319
  className: ScToggleSwitch_default.scToggleSwitch + " " + className + " " + variantsClassName,
5911
6320
  ...props,
5912
- children: /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)(
6321
+ children: /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(
5913
6322
  "svg",
5914
6323
  {
5915
6324
  width: "41",
@@ -5918,21 +6327,21 @@ var ScToggleSwitch = ({
5918
6327
  fill: "none",
5919
6328
  xmlns: "http://www.w3.org/2000/svg",
5920
6329
  children: [
5921
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
6330
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
5922
6331
  "path",
5923
6332
  {
5924
6333
  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",
5925
6334
  fill: "var(--alias-fill-neutral-neutral, #1a1a1a)"
5926
6335
  }
5927
6336
  ),
5928
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
6337
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
5929
6338
  "path",
5930
6339
  {
5931
6340
  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",
5932
6341
  fill: "var(--alias-border-divider, #242424)"
5933
6342
  }
5934
6343
  ),
5935
- /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
6344
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
5936
6345
  "path",
5937
6346
  {
5938
6347
  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",
@@ -5947,7 +6356,7 @@ var ScToggleSwitch = ({
5947
6356
  };
5948
6357
 
5949
6358
  // src/SC-artifaxInvite/ScArtifaxInvite.tsx
5950
- var import_jsx_runtime89 = __toESM(require_jsx_runtime());
6359
+ var import_jsx_runtime90 = __toESM(require_jsx_runtime());
5951
6360
  var ScArtifaxInvite = ({
5952
6361
  active = "true",
5953
6362
  appName = "Artifax",
@@ -5957,22 +6366,22 @@ var ScArtifaxInvite = ({
5957
6366
  ...props
5958
6367
  }) => {
5959
6368
  const variantsClassName = ScArtifaxInvite_default["active-" + active];
5960
- return /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(
6369
+ return /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)(
5961
6370
  "div",
5962
6371
  {
5963
6372
  className: ScArtifaxInvite_default.scArtifaxInvite + " " + className + " " + variantsClassName,
5964
6373
  ...props,
5965
6374
  children: [
5966
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
6375
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
5967
6376
  ScAppCard,
5968
6377
  {
5969
- appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(sicon_artifacts_default, { className: ScArtifaxInvite_default.siconArtifactsInstance }),
6378
+ appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(sicon_artifacts_default, { className: ScArtifaxInvite_default.siconArtifactsInstance }),
5970
6379
  appName,
5971
6380
  appDescription,
5972
6381
  className: ScArtifaxInvite_default.scAppCardInstance
5973
6382
  }
5974
6383
  ),
5975
- /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
6384
+ /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
5976
6385
  ScToggleSwitch,
5977
6386
  {
5978
6387
  active: "false",
@@ -5993,22 +6402,22 @@ var ScPhtogenixInvite_default = {
5993
6402
  };
5994
6403
 
5995
6404
  // src/SC-phtogenixInvite/ScPhtogenixInvite.tsx
5996
- var import_jsx_runtime90 = __toESM(require_jsx_runtime());
6405
+ var import_jsx_runtime91 = __toESM(require_jsx_runtime());
5997
6406
  var ScPhtogenixInvite = ({
5998
6407
  active = "true",
5999
6408
  scAppCardappDescription = "Info about photogenix",
6000
6409
  scAppCardappName = "Photogenix",
6001
- scAppCardappIcon = /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(sicon_artifacts_default, { className: ScPhtogenixInvite_default.siconArtifactsInstance }),
6410
+ scAppCardappIcon = /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(sicon_artifacts_default, { className: ScPhtogenixInvite_default.siconArtifactsInstance }),
6002
6411
  className,
6003
6412
  ...props
6004
6413
  }) => {
6005
6414
  const variantsClassName = ScPhtogenixInvite_default["active-" + active];
6006
- return /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)(
6415
+ return /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)(
6007
6416
  "div",
6008
6417
  {
6009
6418
  className: ScPhtogenixInvite_default.scPhtogenixInvite + " " + className + " " + variantsClassName,
6010
6419
  children: [
6011
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
6420
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
6012
6421
  ScAppCard,
6013
6422
  {
6014
6423
  appIcon: scAppCardappIcon,
@@ -6017,7 +6426,7 @@ var ScPhtogenixInvite = ({
6017
6426
  className: ScPhtogenixInvite_default.scAppCardInstance
6018
6427
  }
6019
6428
  ),
6020
- /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
6429
+ /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
6021
6430
  ScToggleSwitch,
6022
6431
  {
6023
6432
  active: "false",
@@ -6058,10 +6467,10 @@ var ScOnlyField_default = {
6058
6467
  };
6059
6468
 
6060
6469
  // src/SC-onlyField/ScOnlyField.tsx
6061
- var import_jsx_runtime91 = __toESM(require_jsx_runtime());
6470
+ var import_jsx_runtime92 = __toESM(require_jsx_runtime());
6062
6471
  var ScOnlyField = ({
6063
- tfRightIcon = /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(sicon_bolt_default, { className: ScOnlyField_default.siconBoltInstance }),
6064
- tfLeftIcon = /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(sicon_bolt_default, { className: ScOnlyField_default.siconBoltInstance }),
6472
+ tfRightIcon = /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(sicon_bolt_default, { className: ScOnlyField_default.siconBoltInstance }),
6473
+ tfLeftIcon = /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(sicon_bolt_default, { className: ScOnlyField_default.siconBoltInstance }),
6065
6474
  state = "default",
6066
6475
  tfGroup = "icon-right",
6067
6476
  labelGroup = "none",
@@ -6070,25 +6479,25 @@ var ScOnlyField = ({
6070
6479
  ...props
6071
6480
  }) => {
6072
6481
  const variantsClassName = ScOnlyField_default["state-" + state] + " " + ScOnlyField_default["tf-group-" + tfGroup] + " " + ScOnlyField_default["label-group-" + labelGroup];
6073
- return /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
6482
+ return /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
6074
6483
  "div",
6075
6484
  {
6076
6485
  className: ScOnlyField_default.scOnlyField + " " + className + " " + variantsClassName,
6077
6486
  ...props,
6078
- children: /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)("div", { className: ScOnlyField_default.inputContainer, children: [
6079
- (tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(import_jsx_runtime91.Fragment, { children: tfLeftIcon }),
6080
- /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)("div", { className: ScOnlyField_default.inputText, children: [
6487
+ children: /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)("div", { className: ScOnlyField_default.inputContainer, children: [
6488
+ (tfGroup === "icon-left" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(import_jsx_runtime92.Fragment, { children: tfLeftIcon }),
6489
+ /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)("div", { className: ScOnlyField_default.inputText, children: [
6081
6490
  placeholderFilled,
6082
6491
  " "
6083
6492
  ] }),
6084
- (tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(import_jsx_runtime91.Fragment, { children: tfRightIcon })
6493
+ (tfGroup === "icon-right" || tfGroup === "icon-left-right") && /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(import_jsx_runtime92.Fragment, { children: tfRightIcon })
6085
6494
  ] })
6086
6495
  }
6087
6496
  );
6088
6497
  };
6089
6498
 
6090
6499
  // src/SC-catalogixInvite/ScCatalogixInvite.tsx
6091
- var import_jsx_runtime92 = __toESM(require_jsx_runtime());
6500
+ var import_jsx_runtime93 = __toESM(require_jsx_runtime());
6092
6501
  var ScCatalogixInvite = ({
6093
6502
  active = "false",
6094
6503
  appName = "Catalogix",
@@ -6101,23 +6510,23 @@ var ScCatalogixInvite = ({
6101
6510
  ...props
6102
6511
  }) => {
6103
6512
  const variantsClassName = ScCatalogixInvite_default["active-" + active];
6104
- return /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(
6513
+ return /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(
6105
6514
  "div",
6106
6515
  {
6107
6516
  className: ScCatalogixInvite_default.scCatalogixInvite + " " + className + " " + variantsClassName,
6108
6517
  ...props,
6109
6518
  children: [
6110
- /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)("div", { className: ScCatalogixInvite_default.appHeader, children: [
6111
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
6519
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScCatalogixInvite_default.appHeader, children: [
6520
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
6112
6521
  ScAppCard,
6113
6522
  {
6114
- appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(sicon_artifacts_default, { className: ScCatalogixInvite_default.siconArtifactsInstance }),
6523
+ appIcon: appIcon || /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_artifacts_default, { className: ScCatalogixInvite_default.siconArtifactsInstance }),
6115
6524
  appDescription,
6116
6525
  appName,
6117
6526
  className: ScCatalogixInvite_default.scAppCardInstance
6118
6527
  }
6119
6528
  ),
6120
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
6529
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
6121
6530
  ScToggleSwitch,
6122
6531
  {
6123
6532
  active: "false",
@@ -6125,67 +6534,67 @@ var ScCatalogixInvite = ({
6125
6534
  }
6126
6535
  )
6127
6536
  ] }),
6128
- active === "true" && /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(import_jsx_runtime92.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessContainer, children: [
6129
- /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessHeader, children: [
6130
- /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessTitle, children: [
6537
+ active === "true" && /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(import_jsx_runtime93.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessContainer, children: [
6538
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessHeader, children: [
6539
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScCatalogixInvite_default.storeAccessTitle, children: [
6131
6540
  storeAccessTitle,
6132
6541
  " "
6133
6542
  ] }),
6134
- /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)("div", { className: ScCatalogixInvite_default.selectedCount, children: [
6543
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScCatalogixInvite_default.selectedCount, children: [
6135
6544
  selectedCount,
6136
6545
  " "
6137
6546
  ] })
6138
6547
  ] }),
6139
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
6548
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
6140
6549
  ScOnlyField,
6141
6550
  {
6142
- tfLeftIcon: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(sicon_Search_default, { className: ScCatalogixInvite_default.siconSearchInstance }),
6143
- tfRightIcon: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(sicon_Search_default, { className: ScCatalogixInvite_default.siconSearchInstance }),
6551
+ tfLeftIcon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Search_default, { className: ScCatalogixInvite_default.siconSearchInstance }),
6552
+ tfRightIcon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Search_default, { className: ScCatalogixInvite_default.siconSearchInstance }),
6144
6553
  placeholderFilled: searchPlaceholder,
6145
6554
  className: ScCatalogixInvite_default.scOnlyFieldInstance
6146
6555
  }
6147
6556
  ),
6148
- /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)("div", { className: ScCatalogixInvite_default.storeListContainer, children: [
6149
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
6557
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScCatalogixInvite_default.storeListContainer, children: [
6558
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
6150
6559
  ScPairtext,
6151
6560
  {
6152
- icon: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
6561
+ icon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
6153
6562
  iconPosition: "right",
6154
6563
  type: "checkbox",
6155
6564
  className: ScCatalogixInvite_default.scPairtextInstance
6156
6565
  }
6157
6566
  ),
6158
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
6567
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
6159
6568
  ScPairtext,
6160
6569
  {
6161
- icon: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
6570
+ icon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
6162
6571
  iconPosition: "right",
6163
6572
  type: "checkbox",
6164
6573
  className: ScCatalogixInvite_default.scPairtextInstance
6165
6574
  }
6166
6575
  ),
6167
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
6576
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
6168
6577
  ScPairtext,
6169
6578
  {
6170
- icon: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
6579
+ icon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
6171
6580
  iconPosition: "right",
6172
6581
  type: "checkbox",
6173
6582
  className: ScCatalogixInvite_default.scPairtextInstance
6174
6583
  }
6175
6584
  ),
6176
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
6585
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
6177
6586
  ScPairtext,
6178
6587
  {
6179
- icon: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
6588
+ icon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
6180
6589
  iconPosition: "right",
6181
6590
  type: "checkbox",
6182
6591
  className: ScCatalogixInvite_default.scPairtextInstance
6183
6592
  }
6184
6593
  ),
6185
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
6594
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
6186
6595
  ScPairtext,
6187
6596
  {
6188
- icon: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
6597
+ icon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_Home_default, { className: ScCatalogixInvite_default.siconHomeInstance }),
6189
6598
  iconPosition: "right",
6190
6599
  type: "checkbox",
6191
6600
  className: ScCatalogixInvite_default.scPairtextInstance
@@ -6199,34 +6608,34 @@ var ScCatalogixInvite = ({
6199
6608
  };
6200
6609
 
6201
6610
  // src/SC-appField/ScAppField.tsx
6202
- var import_jsx_runtime93 = __toESM(require_jsx_runtime());
6611
+ var import_jsx_runtime94 = __toESM(require_jsx_runtime());
6203
6612
  var ScAppField = ({
6204
6613
  appFieldTitle = "App permission",
6205
6614
  className,
6206
6615
  ...props
6207
6616
  }) => {
6208
- return /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScAppField_default.scAppField + " " + className, ...props, children: [
6209
- /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("div", { className: ScAppField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScAppField_default.title, children: [
6617
+ return /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScAppField_default.scAppField + " " + className, ...props, children: [
6618
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("div", { className: ScAppField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScAppField_default.title, children: [
6210
6619
  appFieldTitle,
6211
6620
  " "
6212
6621
  ] }) }),
6213
- /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: ScAppField_default.inputContainer, children: [
6214
- /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
6622
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScAppField_default.inputContainer, children: [
6623
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
6215
6624
  ScArtifaxInvite,
6216
6625
  {
6217
6626
  className: ScAppField_default.scArtifaxInviteInstance
6218
6627
  }
6219
6628
  ),
6220
- /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
6629
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
6221
6630
  ScPhtogenixInvite,
6222
6631
  {
6223
6632
  scAppCardappDescription: "Info about photogenix",
6224
6633
  scAppCardappName: "Photogenix",
6225
- scAppCardappIcon: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(sicon_photogenix_default, { className: ScAppField_default.siconPhotogenixInstance }),
6634
+ scAppCardappIcon: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(sicon_photogenix_default, { className: ScAppField_default.siconPhotogenixInstance }),
6226
6635
  className: ScAppField_default.scPhtogenixInviteInstance
6227
6636
  }
6228
6637
  ),
6229
- /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
6638
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
6230
6639
  ScCatalogixInvite,
6231
6640
  {
6232
6641
  active: "true",
@@ -6246,13 +6655,13 @@ var ScBillingHistoryHeader_default = {
6246
6655
  };
6247
6656
 
6248
6657
  // src/SC-billingHistoryHeader/ScBillingHistoryHeader.tsx
6249
- var import_jsx_runtime94 = __toESM(require_jsx_runtime());
6658
+ var import_jsx_runtime95 = __toESM(require_jsx_runtime());
6250
6659
  var ScBillingHistoryHeader = ({
6251
6660
  className,
6252
6661
  ...props
6253
6662
  }) => {
6254
- return /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
6255
- /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
6663
+ return /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)("div", { className: ScBillingHistoryHeader_default.scBillingHistoryHeader + " " + className, children: [
6664
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
6256
6665
  ScHeader,
6257
6666
  {
6258
6667
  text: "Invoice",
@@ -6260,7 +6669,7 @@ var ScBillingHistoryHeader = ({
6260
6669
  className: ScBillingHistoryHeader_default.scHeaderInstance
6261
6670
  }
6262
6671
  ),
6263
- /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
6672
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
6264
6673
  ScHeader,
6265
6674
  {
6266
6675
  text: "Amount",
@@ -6268,7 +6677,7 @@ var ScBillingHistoryHeader = ({
6268
6677
  className: ScBillingHistoryHeader_default.scHeaderInstance2
6269
6678
  }
6270
6679
  ),
6271
- /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
6680
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
6272
6681
  ScHeader,
6273
6682
  {
6274
6683
  text: "Date",
@@ -6276,7 +6685,7 @@ var ScBillingHistoryHeader = ({
6276
6685
  className: ScBillingHistoryHeader_default.scHeaderInstance2
6277
6686
  }
6278
6687
  ),
6279
- /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
6688
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
6280
6689
  ScHeader,
6281
6690
  {
6282
6691
  text: "Action",
@@ -6297,30 +6706,30 @@ var ScCheckField_default = {
6297
6706
  };
6298
6707
 
6299
6708
  // src/SC-checkField/ScCheckField.tsx
6300
- var import_jsx_runtime95 = __toESM(require_jsx_runtime());
6709
+ var import_jsx_runtime96 = __toESM(require_jsx_runtime());
6301
6710
  var ScCheckField = ({
6302
6711
  label = "Label",
6303
6712
  className,
6304
6713
  ...props
6305
6714
  }) => {
6306
- return /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)("div", { className: ScCheckField_default.scCheckField + " " + className, ...props, children: [
6307
- /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("div", { className: ScCheckField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)("div", { className: ScCheckField_default.label, children: [
6715
+ return /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)("div", { className: ScCheckField_default.scCheckField + " " + className, ...props, children: [
6716
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("div", { className: ScCheckField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)("div", { className: ScCheckField_default.label, children: [
6308
6717
  label,
6309
6718
  " "
6310
6719
  ] }) }),
6311
- /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)("div", { className: ScCheckField_default.tabSwitcher, children: [
6312
- /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
6720
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)("div", { className: ScCheckField_default.tabSwitcher, children: [
6721
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
6313
6722
  ScPairtext,
6314
6723
  {
6315
- icon: /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(sicon_Home_default, { className: ScCheckField_default.siconHomeInstance }),
6724
+ icon: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(sicon_Home_default, { className: ScCheckField_default.siconHomeInstance }),
6316
6725
  type: "checkbox",
6317
6726
  className: ScCheckField_default.scPairtextInstance
6318
6727
  }
6319
6728
  ),
6320
- /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
6729
+ /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
6321
6730
  ScPairtext,
6322
6731
  {
6323
- icon: /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(sicon_Home_default, { className: ScCheckField_default.siconHomeInstance }),
6732
+ icon: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(sicon_Home_default, { className: ScCheckField_default.siconHomeInstance }),
6324
6733
  type: "checkbox",
6325
6734
  className: ScCheckField_default.scPairtextInstance
6326
6735
  }
@@ -6340,9 +6749,9 @@ var ScFieldButton_default = {
6340
6749
  };
6341
6750
 
6342
6751
  // src/SC-fieldButton/ScFieldButton.tsx
6343
- var import_jsx_runtime96 = __toESM(require_jsx_runtime());
6752
+ var import_jsx_runtime97 = __toESM(require_jsx_runtime());
6344
6753
  var ScFieldButton = ({
6345
- icon = /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(sicon_Home_default, { className: ScFieldButton_default.siconHomeInstance }),
6754
+ icon = /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(sicon_Home_default, { className: ScFieldButton_default.siconHomeInstance }),
6346
6755
  type = "default",
6347
6756
  state = "default",
6348
6757
  className,
@@ -6350,18 +6759,18 @@ var ScFieldButton = ({
6350
6759
  ...props
6351
6760
  }) => {
6352
6761
  const variantsClassName = ScFieldButton_default["type-" + type] + " " + ScFieldButton_default["state-" + state];
6353
- return /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
6762
+ return /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
6354
6763
  "div",
6355
6764
  {
6356
6765
  className: ScFieldButton_default.scFieldButton + " " + className + " " + variantsClassName,
6357
6766
  ...props,
6358
- children: /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)("div", { className: ScFieldButton_default.container, children: [
6359
- (type === "icon-right" || type === "only-icon") && /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(import_jsx_runtime96.Fragment, { children: icon }),
6360
- (type === "icon-left" || type === "default" || type === "icon-right") && /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(import_jsx_runtime96.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)("div", { className: ScFieldButton_default.label, children: [
6767
+ children: /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: ScFieldButton_default.container, children: [
6768
+ (type === "icon-right" || type === "only-icon") && /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(import_jsx_runtime97.Fragment, { children: icon }),
6769
+ (type === "icon-left" || type === "default" || type === "icon-right") && /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(import_jsx_runtime97.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: ScFieldButton_default.label, children: [
6361
6770
  text,
6362
6771
  " "
6363
6772
  ] }) }),
6364
- type === "icon-left" && /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(import_jsx_runtime96.Fragment, { children: icon })
6773
+ type === "icon-left" && /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(import_jsx_runtime97.Fragment, { children: icon })
6365
6774
  ] })
6366
6775
  }
6367
6776
  );
@@ -6375,16 +6784,16 @@ var ScPendingAction_default = {
6375
6784
  };
6376
6785
 
6377
6786
  // src/SC-pendingAction/ScPendingAction.tsx
6378
- var import_jsx_runtime97 = __toESM(require_jsx_runtime());
6787
+ var import_jsx_runtime98 = __toESM(require_jsx_runtime());
6379
6788
  var ScPendingAction = ({
6380
6789
  className,
6381
6790
  ...props
6382
6791
  }) => {
6383
- return /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
6384
- /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
6792
+ return /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)("div", { className: ScPendingAction_default.scPendingAction + " " + className, ...props, children: [
6793
+ /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
6385
6794
  ScButton,
6386
6795
  {
6387
- icon: /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(sicon_Home_default, { className: ScPendingAction_default.siconHomeInstance }),
6796
+ icon: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(sicon_Home_default, { className: ScPendingAction_default.siconHomeInstance }),
6388
6797
  text: "Cancel",
6389
6798
  variant: "error",
6390
6799
  type: "tertiary",
@@ -6392,11 +6801,11 @@ var ScPendingAction = ({
6392
6801
  className: ScPendingAction_default.scButtonInstance
6393
6802
  }
6394
6803
  ),
6395
- /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(ScVDivider, { className: ScPendingAction_default.scVDividerInstance }),
6396
- /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
6804
+ /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(ScVDivider, { className: ScPendingAction_default.scVDividerInstance }),
6805
+ /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
6397
6806
  ScButton,
6398
6807
  {
6399
- icon: /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(sicon_Home_default, { className: ScPendingAction_default.siconHomeInstance }),
6808
+ icon: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(sicon_Home_default, { className: ScPendingAction_default.siconHomeInstance }),
6400
6809
  text: "Resend",
6401
6810
  variant: "tertiary",
6402
6811
  size: "sm",
@@ -6419,7 +6828,7 @@ var ScQuickPrompt_default = {
6419
6828
  };
6420
6829
 
6421
6830
  // src/SC-quick prompt/ScQuickPrompt.tsx
6422
- var import_jsx_runtime98 = __toESM(require_jsx_runtime());
6831
+ var import_jsx_runtime99 = __toESM(require_jsx_runtime());
6423
6832
  var ScQuickPrompt = ({
6424
6833
  appName = "Photogenix",
6425
6834
  heading = "Swap Model and Background",
@@ -6427,20 +6836,20 @@ var ScQuickPrompt = ({
6427
6836
  className,
6428
6837
  ...props
6429
6838
  }) => {
6430
- return /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)("div", { className: ScQuickPrompt_default.scQuickPrompt + " " + className, ...props, children: [
6431
- /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)("div", { className: ScQuickPrompt_default.header, children: [
6432
- /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("div", { className: ScQuickPrompt_default.iconContainer, children: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(sicon_bolt_default, { className: ScQuickPrompt_default.siconBoltInstance }) }),
6433
- /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("div", { className: ScQuickPrompt_default.titleContainer, children: /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)("div", { className: ScQuickPrompt_default.title, children: [
6839
+ return /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScQuickPrompt_default.scQuickPrompt + " " + className, ...props, children: [
6840
+ /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScQuickPrompt_default.header, children: [
6841
+ /* @__PURE__ */ (0, import_jsx_runtime99.jsx)("div", { className: ScQuickPrompt_default.iconContainer, children: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(sicon_bolt_default, { className: ScQuickPrompt_default.siconBoltInstance }) }),
6842
+ /* @__PURE__ */ (0, import_jsx_runtime99.jsx)("div", { className: ScQuickPrompt_default.titleContainer, children: /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScQuickPrompt_default.title, children: [
6434
6843
  appName,
6435
6844
  " "
6436
6845
  ] }) })
6437
6846
  ] }),
6438
- /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)("div", { className: ScQuickPrompt_default.body, children: [
6439
- /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)("div", { className: ScQuickPrompt_default.heading, children: [
6847
+ /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScQuickPrompt_default.body, children: [
6848
+ /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScQuickPrompt_default.heading, children: [
6440
6849
  heading,
6441
6850
  " "
6442
6851
  ] }),
6443
- /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)("div", { className: ScQuickPrompt_default.description, children: [
6852
+ /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScQuickPrompt_default.description, children: [
6444
6853
  description,
6445
6854
  " "
6446
6855
  ] })
@@ -6457,13 +6866,13 @@ var ScReferralTableHeader_default = {
6457
6866
  };
6458
6867
 
6459
6868
  // src/SC-referralTableHeader/ScReferralTableHeader.tsx
6460
- var import_jsx_runtime99 = __toESM(require_jsx_runtime());
6869
+ var import_jsx_runtime100 = __toESM(require_jsx_runtime());
6461
6870
  var ScReferralTableHeader = ({
6462
6871
  className,
6463
6872
  ...props
6464
6873
  }) => {
6465
- return /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
6466
- /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
6874
+ return /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { className: ScReferralTableHeader_default.scReferralTableHeader + " " + className, children: [
6875
+ /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
6467
6876
  ScHeader,
6468
6877
  {
6469
6878
  text: "User",
@@ -6471,7 +6880,7 @@ var ScReferralTableHeader = ({
6471
6880
  className: ScReferralTableHeader_default.scHeaderInstance
6472
6881
  }
6473
6882
  ),
6474
- /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
6883
+ /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
6475
6884
  ScHeader,
6476
6885
  {
6477
6886
  text: "Date",
@@ -6479,7 +6888,7 @@ var ScReferralTableHeader = ({
6479
6888
  className: ScReferralTableHeader_default.scHeaderInstance2
6480
6889
  }
6481
6890
  ),
6482
- /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
6891
+ /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
6483
6892
  ScHeader,
6484
6893
  {
6485
6894
  text: "Status",
@@ -6487,7 +6896,7 @@ var ScReferralTableHeader = ({
6487
6896
  className: ScReferralTableHeader_default.scHeaderInstance3
6488
6897
  }
6489
6898
  ),
6490
- /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
6899
+ /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
6491
6900
  ScHeader,
6492
6901
  {
6493
6902
  text: "Reward",
@@ -6508,7 +6917,7 @@ var ScReferralTableList_default = {
6508
6917
  };
6509
6918
 
6510
6919
  // src/SC-referralTableList/ScReferralTableList.tsx
6511
- var import_jsx_runtime100 = __toESM(require_jsx_runtime());
6920
+ var import_jsx_runtime101 = __toESM(require_jsx_runtime());
6512
6921
  var ScReferralTableList = ({
6513
6922
  userEmail = "chris@kepler.com",
6514
6923
  userName,
@@ -6518,8 +6927,8 @@ var ScReferralTableList = ({
6518
6927
  className,
6519
6928
  ...props
6520
6929
  }) => {
6521
- return /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
6522
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
6930
+ return /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)("div", { className: ScReferralTableList_default.scReferralTableList + " " + className, ...props, children: [
6931
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
6523
6932
  ScProfile,
6524
6933
  {
6525
6934
  subText: userEmail,
@@ -6527,12 +6936,12 @@ var ScReferralTableList = ({
6527
6936
  className: ScReferralTableList_default.scProfileInstance
6528
6937
  }
6529
6938
  ),
6530
- /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { className: ScReferralTableList_default.date, children: [
6939
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)("div", { className: ScReferralTableList_default.date, children: [
6531
6940
  date,
6532
6941
  " "
6533
6942
  ] }),
6534
- /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(ScBadges, { text: status, className: ScReferralTableList_default.scBadgesInstance }),
6535
- /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { className: ScReferralTableList_default.points, children: [
6943
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(ScBadges, { text: status, className: ScReferralTableList_default.scBadgesInstance }),
6944
+ /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)("div", { className: ScReferralTableList_default.points, children: [
6536
6945
  points,
6537
6946
  " "
6538
6947
  ] })
@@ -6546,33 +6955,33 @@ var ScSettingsNav_default = {
6546
6955
  };
6547
6956
 
6548
6957
  // src/SC-settingsNav/ScSettingsNav.tsx
6549
- var import_jsx_runtime101 = __toESM(require_jsx_runtime());
6958
+ var import_jsx_runtime102 = __toESM(require_jsx_runtime());
6550
6959
  var ScSettingsNav = ({
6551
6960
  className,
6552
6961
  ...props
6553
6962
  }) => {
6554
- return /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("div", { className: ScSettingsNav_default.scSettingsNav + " " + className, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)("div", { className: ScSettingsNav_default.container, children: [
6555
- /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
6963
+ return /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("div", { className: ScSettingsNav_default.scSettingsNav + " " + className, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)("div", { className: ScSettingsNav_default.container, children: [
6964
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
6556
6965
  ScSidebarMenu,
6557
6966
  {
6558
- icon: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(sicon_team_default, { className: ScSettingsNav_default.siconTeamInstance }),
6967
+ icon: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(sicon_team_default, { className: ScSettingsNav_default.siconTeamInstance }),
6559
6968
  text: "Profile",
6560
6969
  state: "active",
6561
6970
  className: ScSettingsNav_default.scSidebarMenuInstance
6562
6971
  }
6563
6972
  ),
6564
- /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
6973
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
6565
6974
  ScSidebarMenu,
6566
6975
  {
6567
- icon: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(sicon_workspace_default, { className: ScSettingsNav_default.siconWorkspaceInstance }),
6976
+ icon: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(sicon_workspace_default, { className: ScSettingsNav_default.siconWorkspaceInstance }),
6568
6977
  text: "Workspace",
6569
6978
  className: ScSettingsNav_default.scSidebarMenuInstance
6570
6979
  }
6571
6980
  ),
6572
- /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
6981
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
6573
6982
  ScSidebarMenu,
6574
6983
  {
6575
- icon: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(sicon_referral_default, { className: ScSettingsNav_default.siconReferralInstance }),
6984
+ icon: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(sicon_referral_default, { className: ScSettingsNav_default.siconReferralInstance }),
6576
6985
  text: "Referral",
6577
6986
  className: ScSettingsNav_default.scSidebarMenuInstance
6578
6987
  }
@@ -6588,18 +6997,18 @@ var ScTabField_default = {
6588
6997
  };
6589
6998
 
6590
6999
  // src/SC-tabField/ScTabField.tsx
6591
- var import_jsx_runtime102 = __toESM(require_jsx_runtime());
7000
+ var import_jsx_runtime103 = __toESM(require_jsx_runtime());
6592
7001
  var ScTabField = ({
6593
7002
  label = "Label",
6594
7003
  className,
6595
7004
  ...props
6596
7005
  }) => {
6597
- return /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)("div", { className: ScTabField_default.scTabField + " " + className, children: [
6598
- /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("div", { className: ScTabField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)("div", { className: ScTabField_default.label, children: [
7006
+ return /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)("div", { className: ScTabField_default.scTabField + " " + className, children: [
7007
+ /* @__PURE__ */ (0, import_jsx_runtime103.jsx)("div", { className: ScTabField_default.labelContainer, children: /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)("div", { className: ScTabField_default.label, children: [
6599
7008
  label,
6600
7009
  " "
6601
7010
  ] }) }),
6602
- /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(ScTabSwitcher, { className: ScTabField_default.scTabSwitcherInstance })
7011
+ /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(ScTabSwitcher, { className: ScTabField_default.scTabSwitcherInstance })
6603
7012
  ] });
6604
7013
  };
6605
7014
 
@@ -6616,19 +7025,19 @@ var ScTableHeader_default = {
6616
7025
  };
6617
7026
 
6618
7027
  // src/SC-tableHeader/ScTableHeader.tsx
6619
- var import_jsx_runtime103 = __toESM(require_jsx_runtime());
7028
+ var import_jsx_runtime104 = __toESM(require_jsx_runtime());
6620
7029
  var ScTableHeader = ({
6621
7030
  type = "default",
6622
7031
  className,
6623
7032
  ...props
6624
7033
  }) => {
6625
7034
  const variantsClassName = ScTableHeader_default["type-" + type];
6626
- return /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)(
7035
+ return /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(
6627
7036
  "div",
6628
7037
  {
6629
7038
  className: ScTableHeader_default.scTableHeader + " " + className + " " + variantsClassName,
6630
7039
  children: [
6631
- /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
7040
+ /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
6632
7041
  ScHeader,
6633
7042
  {
6634
7043
  text: "User",
@@ -6636,7 +7045,7 @@ var ScTableHeader = ({
6636
7045
  className: ScTableHeader_default.scHeaderInstance
6637
7046
  }
6638
7047
  ),
6639
- /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
7048
+ /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
6640
7049
  ScHeader,
6641
7050
  {
6642
7051
  text: "Role",
@@ -6644,7 +7053,7 @@ var ScTableHeader = ({
6644
7053
  className: ScTableHeader_default.scHeaderInstance2
6645
7054
  }
6646
7055
  ),
6647
- /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
7056
+ /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
6648
7057
  ScHeader,
6649
7058
  {
6650
7059
  text: "Access",
@@ -6652,7 +7061,7 @@ var ScTableHeader = ({
6652
7061
  className: ScTableHeader_default.scHeaderInstance3
6653
7062
  }
6654
7063
  ),
6655
- /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
7064
+ /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
6656
7065
  ScHeader,
6657
7066
  {
6658
7067
  text: "Invited by",
@@ -6660,7 +7069,7 @@ var ScTableHeader = ({
6660
7069
  className: ScTableHeader_default.scHeaderInstance4
6661
7070
  }
6662
7071
  ),
6663
- type === "pending" && /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(import_jsx_runtime103.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
7072
+ type === "pending" && /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(import_jsx_runtime104.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
6664
7073
  ScHeader,
6665
7074
  {
6666
7075
  text: "Invite action",
@@ -6668,7 +7077,7 @@ var ScTableHeader = ({
6668
7077
  className: ScTableHeader_default.scHeaderInstance5
6669
7078
  }
6670
7079
  ) }),
6671
- type === "default" && /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(import_jsx_runtime103.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
7080
+ type === "default" && /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(import_jsx_runtime104.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
6672
7081
  ScHeader,
6673
7082
  {
6674
7083
  text: "Signed On",
@@ -6700,7 +7109,7 @@ var ScTableList_default = {
6700
7109
  };
6701
7110
 
6702
7111
  // src/SC-tableList/ScTableList.tsx
6703
- var import_jsx_runtime104 = __toESM(require_jsx_runtime());
7112
+ var import_jsx_runtime105 = __toESM(require_jsx_runtime());
6704
7113
  var ScTableList = ({
6705
7114
  invitedBy = "Rohan",
6706
7115
  signedOn = "Nov 9th, 2025",
@@ -6712,51 +7121,51 @@ var ScTableList = ({
6712
7121
  ...props
6713
7122
  }) => {
6714
7123
  const variantsClassName = ScTableList_default["hover-" + hover] + " " + ScTableList_default["variant-" + variant];
6715
- return /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(
7124
+ return /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(
6716
7125
  "div",
6717
7126
  {
6718
7127
  className: ScTableList_default.scTableList + " " + className + " " + variantsClassName,
6719
7128
  onClick: (e) => onRowClick && onRowClick(invitedBy, e),
6720
7129
  ...props,
6721
7130
  children: [
6722
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
7131
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
6723
7132
  ScProfile,
6724
7133
  {
6725
7134
  subText: userEmail,
6726
7135
  className: ScTableList_default.scProfileInstance
6727
7136
  }
6728
7137
  ),
6729
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(ScRole, { className: ScTableList_default.scRoleInstance }),
6730
- /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: ScTableList_default.accessInfo, children: [
6731
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
7138
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(ScRole, { className: ScTableList_default.scRoleInstance }),
7139
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)("div", { className: ScTableList_default.accessInfo, children: [
7140
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
6732
7141
  ScAccess,
6733
7142
  {
6734
- component: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(sicon_artifacts_default, { className: ScTableList_default.siconArtifactsInstance }),
6735
- component2: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(sicon_photogenix_default, { className: ScTableList_default.siconPhotogenixInstance }),
7143
+ component: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(sicon_artifacts_default, { className: ScTableList_default.siconArtifactsInstance }),
7144
+ component2: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(sicon_photogenix_default, { className: ScTableList_default.siconPhotogenixInstance }),
6736
7145
  className: ScTableList_default.scAccessInstance
6737
7146
  }
6738
7147
  ),
6739
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
7148
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
6740
7149
  ScAccess,
6741
7150
  {
6742
- component: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(sicon_userAdd_default, { className: ScTableList_default.siconUserAddInstance }),
6743
- component2: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(sicon_Coins_default, { className: ScTableList_default.siconCoinsInstance }),
7151
+ component: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(sicon_userAdd_default, { className: ScTableList_default.siconUserAddInstance }),
7152
+ component2: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(sicon_Coins_default, { className: ScTableList_default.siconCoinsInstance }),
6744
7153
  visibleSiconCatalogix: false,
6745
7154
  className: ScTableList_default.scAccessInstance
6746
7155
  }
6747
7156
  )
6748
7157
  ] }),
6749
- /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: ScTableList_default.userName, children: [
7158
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)("div", { className: ScTableList_default.userName, children: [
6750
7159
  invitedBy,
6751
7160
  " "
6752
7161
  ] }),
6753
- variant === "pending" && /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(import_jsx_runtime104.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
7162
+ variant === "pending" && /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(import_jsx_runtime105.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
6754
7163
  ScPendingAction,
6755
7164
  {
6756
7165
  className: ScTableList_default.scPendingActionInstance
6757
7166
  }
6758
7167
  ) }),
6759
- variant === "active" && /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(import_jsx_runtime104.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: ScTableList_default.date, children: [
7168
+ variant === "active" && /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(import_jsx_runtime105.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)("div", { className: ScTableList_default.date, children: [
6760
7169
  signedOn,
6761
7170
  " "
6762
7171
  ] }) })
@@ -6785,7 +7194,7 @@ var ScWorkspaceCard_default = {
6785
7194
  };
6786
7195
 
6787
7196
  // src/SC-workspaceCard/ScWorkspaceCard.tsx
6788
- var import_jsx_runtime105 = __toESM(require_jsx_runtime());
7197
+ var import_jsx_runtime106 = __toESM(require_jsx_runtime());
6789
7198
  var ScWorkspaceCard = ({
6790
7199
  workspaceName = "Stores",
6791
7200
  role = "Admin",
@@ -6795,21 +7204,21 @@ var ScWorkspaceCard = ({
6795
7204
  className,
6796
7205
  ...props
6797
7206
  }) => {
6798
- return /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)("div", { className: ScWorkspaceCard_default.scWorkspaceCard + " " + className, ...props, children: [
6799
- /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)("div", { className: ScWorkspaceCard_default.workspaceInfo, children: [
6800
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
7207
+ return /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("div", { className: ScWorkspaceCard_default.scWorkspaceCard + " " + className, ...props, children: [
7208
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("div", { className: ScWorkspaceCard_default.workspaceInfo, children: [
7209
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
6801
7210
  ScIntialProfileCover,
6802
7211
  {
6803
7212
  className: ScWorkspaceCard_default.scIntialProfileCoverInstance
6804
7213
  }
6805
7214
  ),
6806
- /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)("div", { className: ScWorkspaceCard_default.workspaceName, children: [
7215
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("div", { className: ScWorkspaceCard_default.workspaceName, children: [
6807
7216
  workspaceName,
6808
7217
  " "
6809
7218
  ] })
6810
7219
  ] }),
6811
- /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)("div", { className: ScWorkspaceCard_default.userInfo, children: [
6812
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
7220
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("div", { className: ScWorkspaceCard_default.userInfo, children: [
7221
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
6813
7222
  ScBadges,
6814
7223
  {
6815
7224
  text: role,
@@ -6817,41 +7226,41 @@ var ScWorkspaceCard = ({
6817
7226
  className: ScWorkspaceCard_default.scBadgesInstance
6818
7227
  }
6819
7228
  ),
6820
- /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)("div", { className: ScWorkspaceCard_default.userDetails, children: [
6821
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
7229
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)("div", { className: ScWorkspaceCard_default.userDetails, children: [
7230
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
6822
7231
  ScPairtext,
6823
7232
  {
6824
- icon: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(sicon_team_default, { className: ScWorkspaceCard_default.siconTeamInstance }),
7233
+ icon: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(sicon_team_default, { className: ScWorkspaceCard_default.siconTeamInstance }),
6825
7234
  content: userCount,
6826
7235
  className: ScWorkspaceCard_default.scPairtextInstance
6827
7236
  }
6828
7237
  ),
6829
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(ScVDivider, { className: ScWorkspaceCard_default.scVDividerInstance }),
6830
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
7238
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(ScVDivider, { className: ScWorkspaceCard_default.scVDividerInstance }),
7239
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
6831
7240
  ScPairtext,
6832
7241
  {
6833
- icon: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(sicon_Crown_default, { className: ScWorkspaceCard_default.siconCrownInstance }),
7242
+ icon: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(sicon_Crown_default, { className: ScWorkspaceCard_default.siconCrownInstance }),
6834
7243
  content: ownerEmail,
6835
7244
  className: ScWorkspaceCard_default.scPairtextInstance
6836
7245
  }
6837
7246
  )
6838
7247
  ] })
6839
7248
  ] }),
6840
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
7249
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
6841
7250
  ScButton,
6842
7251
  {
6843
- icon: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(sicon_switch_default, { className: ScWorkspaceCard_default.siconSwitchInstance }),
7252
+ icon: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(sicon_switch_default, { className: ScWorkspaceCard_default.siconSwitchInstance }),
6844
7253
  text: buttonText,
6845
7254
  state: "disabled",
6846
7255
  variant: "outline",
6847
7256
  className: ScWorkspaceCard_default.scButtonInstance
6848
7257
  }
6849
7258
  ),
6850
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
7259
+ /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
6851
7260
  ScButton,
6852
7261
  {
6853
7262
  text: "Leave workspace",
6854
- icon: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(sicon_logout_default, { className: ScWorkspaceCard_default.siconLogoutInstance }),
7263
+ icon: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(sicon_logout_default, { className: ScWorkspaceCard_default.siconLogoutInstance }),
6855
7264
  styleVariant: "icon-only",
6856
7265
  variant: "error",
6857
7266
  className: ScWorkspaceCard_default.scButtonInstance2
@@ -6918,7 +7327,8 @@ export {
6918
7327
  ScVDivider,
6919
7328
  ScVersion,
6920
7329
  ScWorkspace,
6921
- ScWorkspaceCard
7330
+ ScWorkspaceCard,
7331
+ StreamoidSidebar
6922
7332
  };
6923
7333
  /*! Bundled license information:
6924
7334