@streamoid/ui 0.6.13 → 0.6.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +194 -39
- package/dist/index.d.mts +96 -30
- package/dist/index.d.ts +96 -30
- package/dist/index.js +1332 -1102
- package/dist/index.mjs +1287 -1057
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1244,6 +1244,7 @@
|
|
|
1244
1244
|
position: relative;
|
|
1245
1245
|
overflow: visible;
|
|
1246
1246
|
aspect-ratio: 1;
|
|
1247
|
+
cursor: pointer;
|
|
1247
1248
|
}
|
|
1248
1249
|
.ScRadio_scRadio .ScRadio_vector {
|
|
1249
1250
|
width: 100%;
|
|
@@ -1452,6 +1453,32 @@
|
|
|
1452
1453
|
.ScButton_scButton.ScButton_state-hover.ScButton_variant-primary {
|
|
1453
1454
|
background: var(--alias-fill-base-basehover, #bfbfbf);
|
|
1454
1455
|
}
|
|
1456
|
+
.ScButton_scButton.ScButton_variant-mono {
|
|
1457
|
+
background: var(--alias-surface-inverse, #f5f5f5);
|
|
1458
|
+
}
|
|
1459
|
+
.ScButton_scButton.ScButton_variant-mono .ScButton_label,
|
|
1460
|
+
.ScButton_scButton.ScButton_variant-mono .ScButton_container {
|
|
1461
|
+
color: var(--alias-text-and-icons-inverse, #101010);
|
|
1462
|
+
}
|
|
1463
|
+
.ScButton_scButton.ScButton_variant-mono:hover,
|
|
1464
|
+
.ScButton_scButton.ScButton_state-hover.ScButton_variant-mono {
|
|
1465
|
+
background: var(--alias-surface-inverse, #f5f5f5);
|
|
1466
|
+
transform: scale(1.03);
|
|
1467
|
+
}
|
|
1468
|
+
.ScButton_spinner {
|
|
1469
|
+
display: inline-block;
|
|
1470
|
+
width: 1.25rem;
|
|
1471
|
+
height: 1.25rem;
|
|
1472
|
+
border: 0.15rem solid currentColor;
|
|
1473
|
+
border-top-color: transparent;
|
|
1474
|
+
border-radius: 50%;
|
|
1475
|
+
animation: ScButton_sc-btn-spin 0.8s linear infinite;
|
|
1476
|
+
}
|
|
1477
|
+
@keyframes ScButton_sc-btn-spin {
|
|
1478
|
+
to {
|
|
1479
|
+
transform: rotate(360deg);
|
|
1480
|
+
}
|
|
1481
|
+
}
|
|
1455
1482
|
.ScButton_scButton.ScButton_size-sm .ScButton_siconHomeInstance {
|
|
1456
1483
|
width: 1rem !important;
|
|
1457
1484
|
height: 1rem !important;
|
|
@@ -3146,6 +3173,75 @@
|
|
|
3146
3173
|
.ScTextField_scTextField.ScTextField_label-group-none .ScTextField_labelContainer {
|
|
3147
3174
|
display: none;
|
|
3148
3175
|
}
|
|
3176
|
+
.ScTextField_required {
|
|
3177
|
+
color: var(--alias-text-and-icons-error, #d11a1a);
|
|
3178
|
+
margin-left: 0.125rem;
|
|
3179
|
+
}
|
|
3180
|
+
.ScTextField_desc {
|
|
3181
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
3182
|
+
text-align: left;
|
|
3183
|
+
font-family: var(--text-text-xs-regular-font-family, "Inter-Regular", sans-serif);
|
|
3184
|
+
font-size: var(--text-text-xs-regular-font-size, 0.75rem);
|
|
3185
|
+
line-height: var(--text-text-xs-regular-line-height, 1.125rem);
|
|
3186
|
+
font-weight: var(--text-text-xs-regular-font-weight, 400);
|
|
3187
|
+
align-self: stretch;
|
|
3188
|
+
}
|
|
3189
|
+
.ScTextField_scTextField.ScTextField_tall .ScTextField_inputContainer {
|
|
3190
|
+
height: auto;
|
|
3191
|
+
min-height: 5rem;
|
|
3192
|
+
align-items: flex-start;
|
|
3193
|
+
}
|
|
3194
|
+
|
|
3195
|
+
/* src/SC-InfoPopup/ScInfoPopup.module.css */
|
|
3196
|
+
.ScInfoPopup_scInfoPopup,
|
|
3197
|
+
.ScInfoPopup_scInfoPopup * {
|
|
3198
|
+
box-sizing: border-box;
|
|
3199
|
+
}
|
|
3200
|
+
.ScInfoPopup_scInfoPopup {
|
|
3201
|
+
position: relative;
|
|
3202
|
+
display: inline-block;
|
|
3203
|
+
}
|
|
3204
|
+
.ScInfoPopup_infoIcon {
|
|
3205
|
+
display: block;
|
|
3206
|
+
cursor: pointer;
|
|
3207
|
+
margin: 0 12px;
|
|
3208
|
+
width: 18px;
|
|
3209
|
+
height: 18px;
|
|
3210
|
+
}
|
|
3211
|
+
.ScInfoPopup_content {
|
|
3212
|
+
position: absolute;
|
|
3213
|
+
top: 18px;
|
|
3214
|
+
right: 0;
|
|
3215
|
+
transform: translateX(50%);
|
|
3216
|
+
width: max-content;
|
|
3217
|
+
max-width: 300px;
|
|
3218
|
+
background-color: var(--alias-surface-base, #101010);
|
|
3219
|
+
border-radius: 6px;
|
|
3220
|
+
padding: 8px;
|
|
3221
|
+
z-index: 2;
|
|
3222
|
+
box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
|
|
3223
|
+
}
|
|
3224
|
+
.ScInfoPopup_closeIconContainer {
|
|
3225
|
+
position: relative;
|
|
3226
|
+
}
|
|
3227
|
+
.ScInfoPopup_closeIcon {
|
|
3228
|
+
position: absolute;
|
|
3229
|
+
right: 0;
|
|
3230
|
+
width: 18px;
|
|
3231
|
+
height: 18px;
|
|
3232
|
+
cursor: pointer;
|
|
3233
|
+
margin: 0;
|
|
3234
|
+
}
|
|
3235
|
+
.ScInfoPopup_contentText {
|
|
3236
|
+
display: block;
|
|
3237
|
+
font-size: 12px;
|
|
3238
|
+
margin-top: 0px;
|
|
3239
|
+
margin-right: 18px;
|
|
3240
|
+
max-height: 100px;
|
|
3241
|
+
overflow-y: auto;
|
|
3242
|
+
line-height: 1.4;
|
|
3243
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
3244
|
+
}
|
|
3149
3245
|
|
|
3150
3246
|
/* src/SC-Role/ScRole.module.css */
|
|
3151
3247
|
.ScRole_scRole,
|
|
@@ -5859,55 +5955,114 @@
|
|
|
5859
5955
|
opacity: 1;
|
|
5860
5956
|
}
|
|
5861
5957
|
|
|
5862
|
-
/* src/SC-
|
|
5863
|
-
.
|
|
5864
|
-
.
|
|
5958
|
+
/* src/SC-Drawer/ScDrawer.module.css */
|
|
5959
|
+
.ScDrawer_drawer,
|
|
5960
|
+
.ScDrawer_drawer * {
|
|
5865
5961
|
box-sizing: border-box;
|
|
5866
5962
|
}
|
|
5867
|
-
.
|
|
5868
|
-
|
|
5869
|
-
|
|
5963
|
+
.ScDrawer_drawer {
|
|
5964
|
+
width: 512px;
|
|
5965
|
+
height: 100vh;
|
|
5966
|
+
position: fixed;
|
|
5967
|
+
top: 0;
|
|
5968
|
+
background: var(--alias-surface-subtleraised, #1a1a1a);
|
|
5969
|
+
overflow: hidden;
|
|
5970
|
+
z-index: 10;
|
|
5870
5971
|
}
|
|
5871
|
-
.
|
|
5872
|
-
|
|
5972
|
+
.ScDrawer_side-right {
|
|
5973
|
+
right: 0;
|
|
5974
|
+
border-radius: 24px 0 0 24px;
|
|
5975
|
+
box-shadow: -8px 0 56px 8px rgba(0, 0, 0, 0.16);
|
|
5976
|
+
}
|
|
5977
|
+
.ScDrawer_side-left {
|
|
5978
|
+
left: 0;
|
|
5979
|
+
border-radius: 0 24px 24px 0;
|
|
5980
|
+
box-shadow: 8px 0 56px 8px rgba(0, 0, 0, 0.16);
|
|
5981
|
+
}
|
|
5982
|
+
.ScDrawer_content {
|
|
5983
|
+
padding: 56px 96px 0 96px;
|
|
5984
|
+
height: 100%;
|
|
5985
|
+
display: flex;
|
|
5986
|
+
flex-direction: column;
|
|
5987
|
+
overflow: hidden;
|
|
5988
|
+
}
|
|
5989
|
+
|
|
5990
|
+
/* src/SC-Tabs/ScTabs.module.css */
|
|
5991
|
+
.ScTabs_tabs,
|
|
5992
|
+
.ScTabs_tabs * {
|
|
5993
|
+
box-sizing: border-box;
|
|
5994
|
+
}
|
|
5995
|
+
.ScTabs_tabs {
|
|
5996
|
+
width: 100%;
|
|
5997
|
+
display: flex;
|
|
5998
|
+
align-items: center;
|
|
5999
|
+
gap: 12px;
|
|
6000
|
+
}
|
|
6001
|
+
.ScTabs_tab {
|
|
6002
|
+
padding: 6px 12px;
|
|
5873
6003
|
cursor: pointer;
|
|
5874
|
-
|
|
5875
|
-
|
|
5876
|
-
|
|
6004
|
+
text-transform: capitalize;
|
|
6005
|
+
white-space: nowrap;
|
|
6006
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6007
|
+
font-size: 14px;
|
|
6008
|
+
font-weight: 400;
|
|
6009
|
+
line-height: 20px;
|
|
6010
|
+
border-radius: 100px;
|
|
6011
|
+
border: 1px solid var(--alias-surface-canvas, #0f0f0f);
|
|
5877
6012
|
}
|
|
5878
|
-
.
|
|
5879
|
-
|
|
5880
|
-
|
|
5881
|
-
|
|
5882
|
-
transform: translateX(50%);
|
|
6013
|
+
.ScTabs_active {
|
|
6014
|
+
background: var(--alias-surface-canvas, #0f0f0f);
|
|
6015
|
+
}
|
|
6016
|
+
.ScTabs_autoWidth {
|
|
5883
6017
|
width: max-content;
|
|
5884
|
-
max-width: 300px;
|
|
5885
|
-
background-color: var(--alias-surface-base, #101010);
|
|
5886
|
-
border-radius: 6px;
|
|
5887
|
-
padding: 8px;
|
|
5888
|
-
z-index: 2;
|
|
5889
|
-
box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
|
|
5890
6018
|
}
|
|
5891
|
-
.
|
|
5892
|
-
|
|
6019
|
+
.ScTabs_allowWrap {
|
|
6020
|
+
flex-wrap: wrap;
|
|
6021
|
+
row-gap: 8px;
|
|
5893
6022
|
}
|
|
5894
|
-
.
|
|
5895
|
-
|
|
5896
|
-
|
|
5897
|
-
|
|
5898
|
-
|
|
6023
|
+
.ScTabs_compact {
|
|
6024
|
+
gap: 8px;
|
|
6025
|
+
}
|
|
6026
|
+
.ScTabs_compact .ScTabs_tab {
|
|
6027
|
+
padding: 4px 10px;
|
|
6028
|
+
font-size: 13px;
|
|
6029
|
+
line-height: 18px;
|
|
6030
|
+
}
|
|
6031
|
+
|
|
6032
|
+
/* src/SC-Counter/ScCounter.module.css */
|
|
6033
|
+
.ScCounter_counter,
|
|
6034
|
+
.ScCounter_counter * {
|
|
6035
|
+
box-sizing: border-box;
|
|
6036
|
+
}
|
|
6037
|
+
.ScCounter_counter {
|
|
6038
|
+
display: flex;
|
|
6039
|
+
justify-content: space-around;
|
|
6040
|
+
align-items: center;
|
|
6041
|
+
background: var(--alias-fill-neutral-neutralplus, #151515);
|
|
6042
|
+
border: 1px solid var(--alias-surface-infohover, #2a2a2a);
|
|
6043
|
+
border-radius: 16px;
|
|
6044
|
+
padding: 12px 16px;
|
|
6045
|
+
width: 100%;
|
|
6046
|
+
}
|
|
6047
|
+
.ScCounter_step {
|
|
5899
6048
|
cursor: pointer;
|
|
5900
|
-
|
|
6049
|
+
display: flex;
|
|
6050
|
+
align-items: center;
|
|
5901
6051
|
}
|
|
5902
|
-
.
|
|
5903
|
-
|
|
5904
|
-
|
|
5905
|
-
|
|
5906
|
-
|
|
5907
|
-
|
|
5908
|
-
|
|
5909
|
-
|
|
5910
|
-
|
|
6052
|
+
.ScCounter_value {
|
|
6053
|
+
cursor: pointer;
|
|
6054
|
+
}
|
|
6055
|
+
.ScCounter_inputContainer {
|
|
6056
|
+
display: flex;
|
|
6057
|
+
justify-content: center;
|
|
6058
|
+
align-items: center;
|
|
6059
|
+
}
|
|
6060
|
+
.ScCounter_inputContainer input {
|
|
6061
|
+
border: none;
|
|
6062
|
+
outline: none;
|
|
6063
|
+
width: 30%;
|
|
6064
|
+
background-color: var(--alias-fill-neutral-neutralplus, #151515);
|
|
6065
|
+
color: inherit;
|
|
5911
6066
|
}
|
|
5912
6067
|
|
|
5913
6068
|
/* src/SC-Pagination/ScPagination.module.css */
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React$1
|
|
1
|
+
import * as React$1 from 'react';
|
|
2
|
+
import React__default, { CSSProperties, HTMLAttributes, ReactNode } from 'react';
|
|
2
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
4
|
|
|
4
5
|
interface IScAccessProps {
|
|
@@ -146,12 +147,14 @@ interface IScButtonProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
146
147
|
icon?: JSX.Element;
|
|
147
148
|
styleVariant?: "default" | "icon-right" | "icon-left" | "icon-only";
|
|
148
149
|
state?: "default" | "hover" | "disabled";
|
|
149
|
-
variant?: "primary" | "secondary" | "tertiary" | "outline" | "error";
|
|
150
|
+
variant?: "primary" | "secondary" | "tertiary" | "outline" | "error" | "mono";
|
|
150
151
|
type?: "primary" | "secondary" | "tertiary";
|
|
151
152
|
size?: "lg" | "md" | "sm";
|
|
152
153
|
className?: string;
|
|
154
|
+
/** Show a spinner in place of the label (e.g. async submit). */
|
|
155
|
+
loading?: boolean;
|
|
153
156
|
}
|
|
154
|
-
declare const ScButton: ({ text, icon, styleVariant, state, variant, type, size, className, ...props }: IScButtonProps) => JSX.Element;
|
|
157
|
+
declare const ScButton: ({ text, icon, styleVariant, state, variant, type, size, className, loading, children, ...props }: IScButtonProps) => JSX.Element;
|
|
155
158
|
|
|
156
159
|
interface IScCalendarProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
157
160
|
className?: string;
|
|
@@ -211,7 +214,7 @@ interface ScDpProps {
|
|
|
211
214
|
/** Width & height in pixels. Defaults to 60. */
|
|
212
215
|
size?: number;
|
|
213
216
|
className?: string;
|
|
214
|
-
style?:
|
|
217
|
+
style?: React__default.CSSProperties;
|
|
215
218
|
}
|
|
216
219
|
declare function ScDp({ type, variant, initial, imageUrl, size, className, style, }: ScDpProps): react_jsx_runtime.JSX.Element;
|
|
217
220
|
|
|
@@ -1026,8 +1029,27 @@ interface IScTextFieldProps extends React.InputHTMLAttributes<HTMLInputElement>
|
|
|
1026
1029
|
className?: string;
|
|
1027
1030
|
placeholderFilled?: string;
|
|
1028
1031
|
label?: string;
|
|
1029
|
-
|
|
1030
|
-
|
|
1032
|
+
/** Adds a `*` after the label. */
|
|
1033
|
+
required?: boolean;
|
|
1034
|
+
/** Info-popover content shown beside the label. */
|
|
1035
|
+
info?: React.ReactNode;
|
|
1036
|
+
/** Helper/description text rendered below the field. */
|
|
1037
|
+
desc?: React.ReactNode;
|
|
1038
|
+
/** Taller input. */
|
|
1039
|
+
tall?: boolean;
|
|
1040
|
+
/** Arbitrary adornment(s) rendered at the left/right inside the field. */
|
|
1041
|
+
leftSlot?: React.ReactNode;
|
|
1042
|
+
rightSlot?: React.ReactNode;
|
|
1043
|
+
/** Style/class escape hatches (root wrapper / field container / input / desc). */
|
|
1044
|
+
rootClassName?: string;
|
|
1045
|
+
rootStyle?: React.CSSProperties;
|
|
1046
|
+
containerClassName?: string;
|
|
1047
|
+
containerStyle?: React.CSSProperties;
|
|
1048
|
+
inputStyle?: React.CSSProperties;
|
|
1049
|
+
descClassName?: string;
|
|
1050
|
+
descStyle?: React.CSSProperties;
|
|
1051
|
+
}
|
|
1052
|
+
declare const ScTextField: React$1.ForwardRefExoticComponent<IScTextFieldProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
1031
1053
|
|
|
1032
1054
|
interface IScToggleSwitchProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onToggle"> {
|
|
1033
1055
|
active?: "true" | "false";
|
|
@@ -1088,6 +1110,50 @@ interface IScModalProps {
|
|
|
1088
1110
|
}
|
|
1089
1111
|
declare const ScModal: ({ children, onClose, open, className, style, contentClassName, contentStyle, closeOnBackdrop, closeOnEsc, }: IScModalProps) => JSX.Element | null;
|
|
1090
1112
|
|
|
1113
|
+
interface IScDrawerProps {
|
|
1114
|
+
children?: React.ReactNode;
|
|
1115
|
+
onClose?: () => void;
|
|
1116
|
+
open?: boolean;
|
|
1117
|
+
side?: "right" | "left";
|
|
1118
|
+
className?: string;
|
|
1119
|
+
style?: React.CSSProperties;
|
|
1120
|
+
contentClassName?: string;
|
|
1121
|
+
contentStyle?: React.CSSProperties;
|
|
1122
|
+
closeOnOutside?: boolean;
|
|
1123
|
+
closeOnEsc?: boolean;
|
|
1124
|
+
}
|
|
1125
|
+
declare const ScDrawer: ({ children, onClose, open, side, className, style, contentClassName, contentStyle, closeOnOutside, closeOnEsc, }: IScDrawerProps) => JSX.Element | null;
|
|
1126
|
+
|
|
1127
|
+
type ScTab = string | {
|
|
1128
|
+
label?: string;
|
|
1129
|
+
value?: string;
|
|
1130
|
+
};
|
|
1131
|
+
interface IScTabsProps {
|
|
1132
|
+
tabs: ScTab[];
|
|
1133
|
+
activeTab?: string;
|
|
1134
|
+
onClickTab?: (value: string) => void;
|
|
1135
|
+
/** Shrink-wrap to content width instead of full width. */
|
|
1136
|
+
isAutoWidth?: boolean;
|
|
1137
|
+
/** Wrap pills onto multiple rows. */
|
|
1138
|
+
allowWrap?: boolean;
|
|
1139
|
+
/** Denser pills (smaller padding/font). */
|
|
1140
|
+
isCompact?: boolean;
|
|
1141
|
+
className?: string;
|
|
1142
|
+
}
|
|
1143
|
+
declare const ScTabs: ({ tabs, activeTab, onClickTab, isAutoWidth, allowWrap, isCompact, className, }: IScTabsProps) => JSX.Element;
|
|
1144
|
+
|
|
1145
|
+
interface IScCounterProps {
|
|
1146
|
+
count: number;
|
|
1147
|
+
onChange: (next: number) => void;
|
|
1148
|
+
label?: React.ReactNode;
|
|
1149
|
+
/** Optional clamp bounds; omit for unbounded (legacy) behavior. */
|
|
1150
|
+
min?: number;
|
|
1151
|
+
max?: number;
|
|
1152
|
+
className?: string;
|
|
1153
|
+
style?: React.CSSProperties;
|
|
1154
|
+
}
|
|
1155
|
+
declare const ScCounter: ({ count, onChange, label, min, max, className, style, }: IScCounterProps) => JSX.Element;
|
|
1156
|
+
|
|
1091
1157
|
interface IScInfoPopupProps {
|
|
1092
1158
|
content?: React.ReactNode;
|
|
1093
1159
|
className?: string;
|
|
@@ -1148,11 +1214,11 @@ interface IScCatalogixStoreTableListProps extends React.HTMLAttributes<HTMLDivEl
|
|
|
1148
1214
|
}
|
|
1149
1215
|
declare const ScCatalogixStoreTableList: ({ storeName, status, statusTone, products, assets, createdOn, createdBy, showAssets, showCreatedBy, className, ...props }: IScCatalogixStoreTableListProps) => JSX.Element;
|
|
1150
1216
|
|
|
1151
|
-
interface IScThinkingStepIconProps extends Omit<
|
|
1217
|
+
interface IScThinkingStepIconProps extends Omit<React__default.HTMLAttributes<HTMLSpanElement>, "children"> {
|
|
1152
1218
|
state?: "default" | "working" | "completed" | "error";
|
|
1153
1219
|
size?: number;
|
|
1154
1220
|
className?: string;
|
|
1155
|
-
style?:
|
|
1221
|
+
style?: React__default.CSSProperties;
|
|
1156
1222
|
}
|
|
1157
1223
|
declare const ScThinkingStepIcon: ({ state, size, className, style, ...props }: IScThinkingStepIconProps) => JSX.Element;
|
|
1158
1224
|
|
|
@@ -1170,7 +1236,7 @@ interface IScInChatListProps {
|
|
|
1170
1236
|
toolUsing?: string;
|
|
1171
1237
|
onToggle?: () => void;
|
|
1172
1238
|
className?: string;
|
|
1173
|
-
style?:
|
|
1239
|
+
style?: React__default.CSSProperties;
|
|
1174
1240
|
}
|
|
1175
1241
|
declare const ScInChatList: ({ title, description, descriptionVisibility, leadingIndicator, iconState, showSteps, stepCount, showTool, toolUsing, onToggle, className, style, }: IScInChatListProps) => JSX.Element;
|
|
1176
1242
|
|
|
@@ -1340,11 +1406,11 @@ interface IScTableListMobileProps {
|
|
|
1340
1406
|
/** Access icons - second group */
|
|
1341
1407
|
permissionIcons?: JSX.Element[];
|
|
1342
1408
|
/** Callback on row click */
|
|
1343
|
-
onRowClick?: (e:
|
|
1409
|
+
onRowClick?: (e: React__default.MouseEvent) => void;
|
|
1344
1410
|
/** Additional class name */
|
|
1345
1411
|
className?: string;
|
|
1346
1412
|
}
|
|
1347
|
-
declare const ScTableListMobile: ({ name, email, imageUrl, role, accessIcons, permissionIcons, onRowClick, className, ...props }: IScTableListMobileProps &
|
|
1413
|
+
declare const ScTableListMobile: ({ name, email, imageUrl, role, accessIcons, permissionIcons, onRowClick, className, ...props }: IScTableListMobileProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1348
1414
|
|
|
1349
1415
|
interface IScWorkspaceSwitchMobileProps {
|
|
1350
1416
|
/** Workspace name */
|
|
@@ -1362,9 +1428,9 @@ interface IScWorkspaceSwitchMobileProps {
|
|
|
1362
1428
|
/** Additional class name */
|
|
1363
1429
|
className?: string;
|
|
1364
1430
|
/** Click handler */
|
|
1365
|
-
onClick?: (e:
|
|
1431
|
+
onClick?: (e: React__default.MouseEvent) => void;
|
|
1366
1432
|
}
|
|
1367
|
-
declare const ScWorkspaceSwitchMobile: ({ storeName, initials, role, ownerId, currentWs, ownerIcon, className, onClick, ...props }: IScWorkspaceSwitchMobileProps &
|
|
1433
|
+
declare const ScWorkspaceSwitchMobile: ({ storeName, initials, role, ownerId, currentWs, ownerIcon, className, onClick, ...props }: IScWorkspaceSwitchMobileProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1368
1434
|
|
|
1369
1435
|
interface IScWorkspaceSettingsMobileProps {
|
|
1370
1436
|
/** Workspace name */
|
|
@@ -1386,9 +1452,9 @@ interface IScWorkspaceSettingsMobileProps {
|
|
|
1386
1452
|
/** Additional class name */
|
|
1387
1453
|
className?: string;
|
|
1388
1454
|
/** Click handler */
|
|
1389
|
-
onClick?: (e:
|
|
1455
|
+
onClick?: (e: React__default.MouseEvent) => void;
|
|
1390
1456
|
}
|
|
1391
|
-
declare const ScWorkspaceSettingsMobile: ({ storeName, initials, role, ownerId, teamCount, currentWs, ownerIcon, teamIcon, className, onClick, ...props }: IScWorkspaceSettingsMobileProps &
|
|
1457
|
+
declare const ScWorkspaceSettingsMobile: ({ storeName, initials, role, ownerId, teamCount, currentWs, ownerIcon, teamIcon, className, onClick, ...props }: IScWorkspaceSettingsMobileProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1392
1458
|
|
|
1393
1459
|
interface IScMobileTopNavProps {
|
|
1394
1460
|
/** Navigation type */
|
|
@@ -1414,19 +1480,19 @@ interface IScMobileTopNavProps {
|
|
|
1414
1480
|
/** More icon element */
|
|
1415
1481
|
moreIcon?: JSX.Element;
|
|
1416
1482
|
/** Callback on menu click */
|
|
1417
|
-
onMenuClick?: (e:
|
|
1483
|
+
onMenuClick?: (e: React__default.MouseEvent) => void;
|
|
1418
1484
|
/** Callback on search icon click */
|
|
1419
|
-
onSearchClick?: (e:
|
|
1485
|
+
onSearchClick?: (e: React__default.MouseEvent) => void;
|
|
1420
1486
|
/** Callback on close click */
|
|
1421
|
-
onCloseClick?: (e:
|
|
1487
|
+
onCloseClick?: (e: React__default.MouseEvent) => void;
|
|
1422
1488
|
/** Callback on more click */
|
|
1423
|
-
onMoreClick?: (e:
|
|
1489
|
+
onMoreClick?: (e: React__default.MouseEvent) => void;
|
|
1424
1490
|
/** Callback on search input change */
|
|
1425
1491
|
onSearchChange?: (value: string) => void;
|
|
1426
1492
|
/** Additional class name */
|
|
1427
1493
|
className?: string;
|
|
1428
1494
|
}
|
|
1429
|
-
declare const ScMobileTopNav: ({ type, searchIcon, search, heading, chatTitle, searchPlaceholder, searchValue, menuIcon, searchIconElement, closeIcon, moreIcon, onMenuClick, onSearchClick, onCloseClick, onMoreClick, onSearchChange, className, ...props }: IScMobileTopNavProps &
|
|
1495
|
+
declare const ScMobileTopNav: ({ type, searchIcon, search, heading, chatTitle, searchPlaceholder, searchValue, menuIcon, searchIconElement, closeIcon, moreIcon, onMenuClick, onSearchClick, onCloseClick, onMoreClick, onSearchChange, className, ...props }: IScMobileTopNavProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1430
1496
|
|
|
1431
1497
|
interface IScMobileBottomActionProps {
|
|
1432
1498
|
/** Primary button text */
|
|
@@ -1434,17 +1500,17 @@ interface IScMobileBottomActionProps {
|
|
|
1434
1500
|
/** Whether primary button is disabled */
|
|
1435
1501
|
disabled?: boolean;
|
|
1436
1502
|
/** Primary button click handler */
|
|
1437
|
-
onClick?: (e:
|
|
1503
|
+
onClick?: (e: React__default.MouseEvent) => void;
|
|
1438
1504
|
/** Secondary (outline) button text — renders 2-button layout when provided */
|
|
1439
1505
|
secondaryText?: string;
|
|
1440
1506
|
/** Whether secondary button is disabled */
|
|
1441
1507
|
secondaryDisabled?: boolean;
|
|
1442
1508
|
/** Secondary button click handler */
|
|
1443
|
-
onSecondaryClick?: (e:
|
|
1509
|
+
onSecondaryClick?: (e: React__default.MouseEvent) => void;
|
|
1444
1510
|
/** Additional class name */
|
|
1445
1511
|
className?: string;
|
|
1446
1512
|
}
|
|
1447
|
-
declare const ScMobileBottomAction: ({ text, disabled, onClick, secondaryText, secondaryDisabled, onSecondaryClick, className, ...props }: IScMobileBottomActionProps &
|
|
1513
|
+
declare const ScMobileBottomAction: ({ text, disabled, onClick, secondaryText, secondaryDisabled, onSecondaryClick, className, ...props }: IScMobileBottomActionProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1448
1514
|
|
|
1449
1515
|
interface IScPopUpMenuProps {
|
|
1450
1516
|
/** Menu label text */
|
|
@@ -1454,11 +1520,11 @@ interface IScPopUpMenuProps {
|
|
|
1454
1520
|
/** Icon element */
|
|
1455
1521
|
icon?: JSX.Element;
|
|
1456
1522
|
/** Click handler */
|
|
1457
|
-
onClick?: (e:
|
|
1523
|
+
onClick?: (e: React__default.MouseEvent) => void;
|
|
1458
1524
|
/** Additional class name */
|
|
1459
1525
|
className?: string;
|
|
1460
1526
|
}
|
|
1461
|
-
declare const ScPopUpMenu: ({ menu, state, icon, onClick, className, ...props }: IScPopUpMenuProps &
|
|
1527
|
+
declare const ScPopUpMenu: ({ menu, state, icon, onClick, className, ...props }: IScPopUpMenuProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1462
1528
|
|
|
1463
1529
|
interface IScReferralCardMobileProps {
|
|
1464
1530
|
/** User name */
|
|
@@ -1474,11 +1540,11 @@ interface IScReferralCardMobileProps {
|
|
|
1474
1540
|
/** Credit amount */
|
|
1475
1541
|
credits?: string;
|
|
1476
1542
|
/** Click handler */
|
|
1477
|
-
onClick?: (e:
|
|
1543
|
+
onClick?: (e: React__default.MouseEvent) => void;
|
|
1478
1544
|
/** Additional class name */
|
|
1479
1545
|
className?: string;
|
|
1480
1546
|
}
|
|
1481
|
-
declare const ScReferralCardMobile: ({ name, email, imageUrl, badge, date, credits, onClick, className, ...props }: IScReferralCardMobileProps &
|
|
1547
|
+
declare const ScReferralCardMobile: ({ name, email, imageUrl, badge, date, credits, onClick, className, ...props }: IScReferralCardMobileProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1482
1548
|
|
|
1483
1549
|
interface IInvoiceHistoryMobileProps {
|
|
1484
1550
|
invoiceId?: string;
|
|
@@ -1514,11 +1580,11 @@ interface IScWorkspaceSwitchMobileV2Props {
|
|
|
1514
1580
|
/** Card type */
|
|
1515
1581
|
type?: "currentWS" | "otherWS" | "display";
|
|
1516
1582
|
/** Click handler */
|
|
1517
|
-
onClick?: (e:
|
|
1583
|
+
onClick?: (e: React__default.MouseEvent) => void;
|
|
1518
1584
|
/** Additional class name */
|
|
1519
1585
|
className?: string;
|
|
1520
1586
|
}
|
|
1521
|
-
declare const ScWorkspaceSwitchMobileV2: ({ wsName, initials, imageUrl, role, plan, ownerId, type, onClick, className, ...props }: IScWorkspaceSwitchMobileV2Props &
|
|
1587
|
+
declare const ScWorkspaceSwitchMobileV2: ({ wsName, initials, imageUrl, role, plan, ownerId, type, onClick, className, ...props }: IScWorkspaceSwitchMobileV2Props & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1522
1588
|
|
|
1523
1589
|
interface IScImageFieldProps {
|
|
1524
1590
|
label?: string;
|
|
@@ -1566,4 +1632,4 @@ interface IScPlanDetailsCardMobileProps extends React.HTMLAttributes<HTMLDivElem
|
|
|
1566
1632
|
}
|
|
1567
1633
|
declare const ScPlanDetailsCardMobile: ({ planName, planCredits, planPrice, badgeText, badgeSubText, currentPlanLabel, upgradeButtonText, isLoading, onUpgrade, className, ...props }: IScPlanDetailsCardMobileProps) => JSX.Element;
|
|
1568
1634
|
|
|
1569
|
-
export { type AppcardProduct, type ArtifaxMenuItem, type ArtifaxSection, type ArtifaxSidebarAssistantCta, type ArtifaxSidebarCreditWarning, type ArtifaxSidebarIconContext, type ArtifaxSidebarIconMap, type ArtifaxSidebarIconRenderer, type ArtifaxSidebarProfile, type CatalogixNavItem, type CatalogixSidebarCreditWarning, type CatalogixSidebarIconContext, type CatalogixSidebarIconMap, type CatalogixSidebarIconRenderer, type CatalogixSidebarProfile, type CatalogixSwitchApp, CreditWarningBanner, type CreditWarningBannerProps, type DescriptionVisibility, type IInvoiceHistoryMobileProps, type IScAccessProps, type IScAppCardForCopilotProps, type IScAppCardProps, type IScAppCardV3Props, type IScAppFieldProps, type IScAppListingCardProps, type IScAppSwitchPanelProps, type IScAppcardLogosProps, type IScArtifaxInviteProps, type IScArtifaxSidebarProps, type IScBadgesProps, type IScBeaconProps, type IScBillingHistoryHeaderProps, type IScBillingHistoryTableListProps, type IScBillingLogsTableHeaderProps, type IScBillingLogsTableListProps, type IScBriefCardProps, type IScButtonProps, type IScCalendarDateCompsProps, type IScCalendarProps, type IScCatalogixInviteProps, type IScCatalogixSidebarProps, type IScCatalogixStoreHeaderProps, type IScCatalogixStoreTableListProps, type IScCheckFieldProps, type IScCheckboxProps, type IScCreditsUsageCardMobileProps, type IScCreditsUsageCardProps, type IScCxoCopilotLogoProps, type IScFieldButtonProps, type IScFileFieldProps, type IScGoogleSignInProps, type IScGuideProps, type IScHDividerProps, type IScHeaderProps, type IScImageFieldProps, type IScInChatListProps, type IScInChatMessageProps, type IScInfoPopupProps, type IScIntialProfileCoverProps, type IScLogoUnitProps, type IScMediaApprovalProps, type IScMediaSelectProps, type IScMenuOptionsProps, type IScMobileBottomActionProps, type IScMobileTopNavProps, type IScModalProps, type IScOnlyFieldProps, type IScOnlyIconProps, type IScPaginationProps, type IScPairtextProps, type IScPendingActionProps, type IScPhtogenixInviteProps, type IScPlanCardProps, type IScPlanComparisonProps, type IScPlanDetailsCardMobileProps, type IScPlanDetailsCardProps, type IScPopUpMenuProps, type IScProfileImageUpdateProps, type IScProfileOptionsProps, type IScProfileProps, type IScProfileSettingsCompProps, type IScProfileV2MobileProps, type IScProgressBarProps, type IScQuickPromptProps, type IScRadioProps, type IScReferralCardMobileProps, type IScReferralTableHeaderProps, type IScReferralTableListProps, type IScRoleMobileProps, type IScRoleProps, type IScSelectOption, type IScSelectProps, type IScSelectionListProps, type IScSelectionProps, type IScSettingsNavProps, type IScSettingsTabCompProps, type IScSideBarLogoUnitProps, type IScSidebarIconsProps, type IScSidebarMenuProps, type IScSidebarProfileProps, type IScSidebarProps, type IScSidebarSwitchMenuProps, type IScSliderProps, type IScStoreCardProps, type IScStrLogoProps, type IScStreamoidMascotProps, type IScStreamoidWordmarkProps, type IScSubAgentProps, type IScTabCompProps, type IScTabFieldProps, type IScTabSwitcherProps, type IScTableHeaderProps, type IScTableListMobileProps, type IScTableListProps, type IScTextAreaProps, type IScTextFieldProps, type IScThinkingStepIconProps, type IScTodoItem, type IScTodoListProps, type IScToggleSwitchProps, type IScVDividerProps, type IScVersionProps, type IScWorkspaceCardProps, type IScWorkspaceSettingsMobileProps, type IScWorkspaceSwitchMobileProps, type IScWorkspaceSwitchMobileV2Props, type IUsageHistoryMobileProps, type IcListIconState, InvoiceHistoryMobile, NscWorkspaceSwitch, type PlanComparisonRow, type PlanComparisonSection, type PlanFeatureSection, ProductCollapsedMark, ProductWordmark, ScAccess, ScAppCard, ScAppCardForCopilot, ScAppCardV3, ScAppField, ScAppListingCard, type ScAppSwitchItem, ScAppSwitchPanel, ScAppSwitchRow, ScAppcardLogos, ScArtifaxInvite, ScArtifaxSidebar, ScBadges, ScBeacon, type ScBeaconTone, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScBriefCard, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCatalogixSidebar, ScCatalogixStoreHeader, ScCatalogixStoreTableList, ScCheckField, ScCheckbox, ScCreditsUsageCard, ScCreditsUsageCardMobile, ScCxoCopilotLogo, ScDp, type ScDpProps, ScFieldButton, ScFileField, ScGoogleSignIn, ScGuide, ScHDivider, ScHeader, ScImageField, ScInChatList, ScInChatMessage, ScInfoPopup, ScIntialProfileCover, ScLogoUnit, ScMediaApproval, ScMediaSelect, ScMenuOptions, ScMobileBottomAction, ScMobileTopNav, ScModal, ScOnlyField, ScOnlyIcon, ScPagination, ScPairtext, ScPendingAction, ScPhtogenixInvite, ScPlanCard, ScPlanComparison, ScPlanDetailsCard, ScPlanDetailsCardMobile, ScPopUpMenu, ScProfile, ScProfileImageUpdate, ScProfileOptions, ScProfileSettingsComp, ScProfileV2Mobile, ScProgressBar, ScQuickPrompt, ScRadio, ScReferralCardMobile, ScReferralTableHeader, ScReferralTableList, ScRole, ScRoleMobile, ScSelect, ScSelection, ScSelectionList, ScSettingsNav, ScSettingsTabComp, ScSideBarLogoUnit, ScSidebar, ScSidebarIcons, ScSidebarMenu, ScSidebarProfile, ScSidebarSwitchMenu, ScSlider, ScStoreCard, ScStrLogo, ScStreamoidMascot, ScStreamoidWordmark, ScSubAgent, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTableListMobile, ScTextArea, ScTextField, ScThinkingStepIcon, ScTodoList, ScToggleSwitch, ScVDivider, ScVersion, ScWorkspaceCard, ScWorkspaceSettingsMobile, ScWorkspaceSwitchCard, type ScWorkspaceSwitchCardProps, ScWorkspaceSwitchMobile, ScWorkspaceSwitchMobileV2, type SelectionListState, type SidebarConfig, type SidebarIconContext, type SidebarIconMap, type SidebarIconRenderer, type SidebarMenuItemConfig, type SidebarProduct, type SidebarProfileConfig, type SidebarSectionConfig, StreamoidSidebar, type StreamoidSidebarProps, StreamoidWorkspaceSwitcher, type StreamoidWorkspaceSwitcherProps, UsageHistoryMobile, type WorkspaceSwitcherConfig, type WorkspaceSwitcherItem, formatSubAgentLabel, hasCollapsedMark };
|
|
1635
|
+
export { type AppcardProduct, type ArtifaxMenuItem, type ArtifaxSection, type ArtifaxSidebarAssistantCta, type ArtifaxSidebarCreditWarning, type ArtifaxSidebarIconContext, type ArtifaxSidebarIconMap, type ArtifaxSidebarIconRenderer, type ArtifaxSidebarProfile, type CatalogixNavItem, type CatalogixSidebarCreditWarning, type CatalogixSidebarIconContext, type CatalogixSidebarIconMap, type CatalogixSidebarIconRenderer, type CatalogixSidebarProfile, type CatalogixSwitchApp, CreditWarningBanner, type CreditWarningBannerProps, type DescriptionVisibility, type IInvoiceHistoryMobileProps, type IScAccessProps, type IScAppCardForCopilotProps, type IScAppCardProps, type IScAppCardV3Props, type IScAppFieldProps, type IScAppListingCardProps, type IScAppSwitchPanelProps, type IScAppcardLogosProps, type IScArtifaxInviteProps, type IScArtifaxSidebarProps, type IScBadgesProps, type IScBeaconProps, type IScBillingHistoryHeaderProps, type IScBillingHistoryTableListProps, type IScBillingLogsTableHeaderProps, type IScBillingLogsTableListProps, type IScBriefCardProps, type IScButtonProps, type IScCalendarDateCompsProps, type IScCalendarProps, type IScCatalogixInviteProps, type IScCatalogixSidebarProps, type IScCatalogixStoreHeaderProps, type IScCatalogixStoreTableListProps, type IScCheckFieldProps, type IScCheckboxProps, type IScCounterProps, type IScCreditsUsageCardMobileProps, type IScCreditsUsageCardProps, type IScCxoCopilotLogoProps, type IScDrawerProps, type IScFieldButtonProps, type IScFileFieldProps, type IScGoogleSignInProps, type IScGuideProps, type IScHDividerProps, type IScHeaderProps, type IScImageFieldProps, type IScInChatListProps, type IScInChatMessageProps, type IScInfoPopupProps, type IScIntialProfileCoverProps, type IScLogoUnitProps, type IScMediaApprovalProps, type IScMediaSelectProps, type IScMenuOptionsProps, type IScMobileBottomActionProps, type IScMobileTopNavProps, type IScModalProps, type IScOnlyFieldProps, type IScOnlyIconProps, type IScPaginationProps, type IScPairtextProps, type IScPendingActionProps, type IScPhtogenixInviteProps, type IScPlanCardProps, type IScPlanComparisonProps, type IScPlanDetailsCardMobileProps, type IScPlanDetailsCardProps, type IScPopUpMenuProps, type IScProfileImageUpdateProps, type IScProfileOptionsProps, type IScProfileProps, type IScProfileSettingsCompProps, type IScProfileV2MobileProps, type IScProgressBarProps, type IScQuickPromptProps, type IScRadioProps, type IScReferralCardMobileProps, type IScReferralTableHeaderProps, type IScReferralTableListProps, type IScRoleMobileProps, type IScRoleProps, type IScSelectOption, type IScSelectProps, type IScSelectionListProps, type IScSelectionProps, type IScSettingsNavProps, type IScSettingsTabCompProps, type IScSideBarLogoUnitProps, type IScSidebarIconsProps, type IScSidebarMenuProps, type IScSidebarProfileProps, type IScSidebarProps, type IScSidebarSwitchMenuProps, type IScSliderProps, type IScStoreCardProps, type IScStrLogoProps, type IScStreamoidMascotProps, type IScStreamoidWordmarkProps, type IScSubAgentProps, type IScTabCompProps, type IScTabFieldProps, type IScTabSwitcherProps, type IScTableHeaderProps, type IScTableListMobileProps, type IScTableListProps, type IScTabsProps, type IScTextAreaProps, type IScTextFieldProps, type IScThinkingStepIconProps, type IScTodoItem, type IScTodoListProps, type IScToggleSwitchProps, type IScVDividerProps, type IScVersionProps, type IScWorkspaceCardProps, type IScWorkspaceSettingsMobileProps, type IScWorkspaceSwitchMobileProps, type IScWorkspaceSwitchMobileV2Props, type IUsageHistoryMobileProps, type IcListIconState, InvoiceHistoryMobile, NscWorkspaceSwitch, type PlanComparisonRow, type PlanComparisonSection, type PlanFeatureSection, ProductCollapsedMark, ProductWordmark, ScAccess, ScAppCard, ScAppCardForCopilot, ScAppCardV3, ScAppField, ScAppListingCard, type ScAppSwitchItem, ScAppSwitchPanel, ScAppSwitchRow, ScAppcardLogos, ScArtifaxInvite, ScArtifaxSidebar, ScBadges, ScBeacon, type ScBeaconTone, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScBriefCard, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCatalogixSidebar, ScCatalogixStoreHeader, ScCatalogixStoreTableList, ScCheckField, ScCheckbox, ScCounter, ScCreditsUsageCard, ScCreditsUsageCardMobile, ScCxoCopilotLogo, ScDp, type ScDpProps, ScDrawer, ScFieldButton, ScFileField, ScGoogleSignIn, ScGuide, ScHDivider, ScHeader, ScImageField, ScInChatList, ScInChatMessage, ScInfoPopup, ScIntialProfileCover, ScLogoUnit, ScMediaApproval, ScMediaSelect, ScMenuOptions, ScMobileBottomAction, ScMobileTopNav, ScModal, ScOnlyField, ScOnlyIcon, ScPagination, ScPairtext, ScPendingAction, ScPhtogenixInvite, ScPlanCard, ScPlanComparison, ScPlanDetailsCard, ScPlanDetailsCardMobile, ScPopUpMenu, ScProfile, ScProfileImageUpdate, ScProfileOptions, ScProfileSettingsComp, ScProfileV2Mobile, ScProgressBar, ScQuickPrompt, ScRadio, ScReferralCardMobile, ScReferralTableHeader, ScReferralTableList, ScRole, ScRoleMobile, ScSelect, ScSelection, ScSelectionList, ScSettingsNav, ScSettingsTabComp, ScSideBarLogoUnit, ScSidebar, ScSidebarIcons, ScSidebarMenu, ScSidebarProfile, ScSidebarSwitchMenu, ScSlider, ScStoreCard, ScStrLogo, ScStreamoidMascot, ScStreamoidWordmark, ScSubAgent, type ScTab, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTableListMobile, ScTabs, ScTextArea, ScTextField, ScThinkingStepIcon, ScTodoList, ScToggleSwitch, ScVDivider, ScVersion, ScWorkspaceCard, ScWorkspaceSettingsMobile, ScWorkspaceSwitchCard, type ScWorkspaceSwitchCardProps, ScWorkspaceSwitchMobile, ScWorkspaceSwitchMobileV2, type SelectionListState, type SidebarConfig, type SidebarIconContext, type SidebarIconMap, type SidebarIconRenderer, type SidebarMenuItemConfig, type SidebarProduct, type SidebarProfileConfig, type SidebarSectionConfig, StreamoidSidebar, type StreamoidSidebarProps, StreamoidWorkspaceSwitcher, type StreamoidWorkspaceSwitcherProps, UsageHistoryMobile, type WorkspaceSwitcherConfig, type WorkspaceSwitcherItem, formatSubAgentLabel, hasCollapsedMark };
|