@streamoid/ui 0.6.13 → 0.6.15
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 +706 -39
- package/dist/index.d.mts +188 -30
- package/dist/index.d.ts +188 -30
- package/dist/index.js +1769 -1123
- package/dist/index.mjs +1731 -1079
- package/package.json +1 -1
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,56 @@ 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
|
+
/** Render a dim scrim behind the panel (default off, preserving the
|
|
1125
|
+
* backdrop-less SideDrawer behaviour). Clicking it closes via onClose. */
|
|
1126
|
+
backdrop?: boolean;
|
|
1127
|
+
/** Override the stacking order (panel = zIndex, backdrop = zIndex - 1).
|
|
1128
|
+
* Needed when the drawer opens over another body-level overlay/modal. */
|
|
1129
|
+
zIndex?: number;
|
|
1130
|
+
}
|
|
1131
|
+
declare const ScDrawer: ({ children, onClose, open, side, className, style, contentClassName, contentStyle, closeOnOutside, closeOnEsc, backdrop, zIndex, }: IScDrawerProps) => JSX.Element | null;
|
|
1132
|
+
|
|
1133
|
+
type ScTab = string | {
|
|
1134
|
+
label?: string;
|
|
1135
|
+
value?: string;
|
|
1136
|
+
};
|
|
1137
|
+
interface IScTabsProps {
|
|
1138
|
+
tabs: ScTab[];
|
|
1139
|
+
activeTab?: string;
|
|
1140
|
+
onClickTab?: (value: string) => void;
|
|
1141
|
+
/** Shrink-wrap to content width instead of full width. */
|
|
1142
|
+
isAutoWidth?: boolean;
|
|
1143
|
+
/** Wrap pills onto multiple rows. */
|
|
1144
|
+
allowWrap?: boolean;
|
|
1145
|
+
/** Denser pills (smaller padding/font). */
|
|
1146
|
+
isCompact?: boolean;
|
|
1147
|
+
className?: string;
|
|
1148
|
+
}
|
|
1149
|
+
declare const ScTabs: ({ tabs, activeTab, onClickTab, isAutoWidth, allowWrap, isCompact, className, }: IScTabsProps) => JSX.Element;
|
|
1150
|
+
|
|
1151
|
+
interface IScCounterProps {
|
|
1152
|
+
count: number;
|
|
1153
|
+
onChange: (next: number) => void;
|
|
1154
|
+
label?: React.ReactNode;
|
|
1155
|
+
/** Optional clamp bounds; omit for unbounded (legacy) behavior. */
|
|
1156
|
+
min?: number;
|
|
1157
|
+
max?: number;
|
|
1158
|
+
className?: string;
|
|
1159
|
+
style?: React.CSSProperties;
|
|
1160
|
+
}
|
|
1161
|
+
declare const ScCounter: ({ count, onChange, label, min, max, className, style, }: IScCounterProps) => JSX.Element;
|
|
1162
|
+
|
|
1091
1163
|
interface IScInfoPopupProps {
|
|
1092
1164
|
content?: React.ReactNode;
|
|
1093
1165
|
className?: string;
|
|
@@ -1148,11 +1220,97 @@ interface IScCatalogixStoreTableListProps extends React.HTMLAttributes<HTMLDivEl
|
|
|
1148
1220
|
}
|
|
1149
1221
|
declare const ScCatalogixStoreTableList: ({ storeName, status, statusTone, products, assets, createdOn, createdBy, showAssets, showCreatedBy, className, ...props }: IScCatalogixStoreTableListProps) => JSX.Element;
|
|
1150
1222
|
|
|
1151
|
-
interface
|
|
1223
|
+
interface IScDefaultCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1224
|
+
title?: string;
|
|
1225
|
+
description?: string;
|
|
1226
|
+
/** Show the description line. When false the card renders title-only. */
|
|
1227
|
+
showDescription?: boolean;
|
|
1228
|
+
/** Force the visual state (also applied on real :hover). */
|
|
1229
|
+
state?: "default" | "hover";
|
|
1230
|
+
className?: string;
|
|
1231
|
+
}
|
|
1232
|
+
declare const ScDefaultCard: ({ title, description, showDescription, state, className, ...props }: IScDefaultCardProps) => JSX.Element;
|
|
1233
|
+
|
|
1234
|
+
interface IScValueMappingL1Props extends React.HTMLAttributes<HTMLDivElement> {
|
|
1235
|
+
label?: string;
|
|
1236
|
+
/** Force the visual state ("active" = currently-selected row; :hover also fires). */
|
|
1237
|
+
state?: "default" | "hover" | "active";
|
|
1238
|
+
/** Render the trailing "updated" dot. */
|
|
1239
|
+
updated?: boolean;
|
|
1240
|
+
className?: string;
|
|
1241
|
+
}
|
|
1242
|
+
declare const ScValueMappingL1: ({ label, state, updated, className, ...props }: IScValueMappingL1Props) => JSX.Element;
|
|
1243
|
+
|
|
1244
|
+
interface IScTaxonomyPillProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1245
|
+
/** "pill" = node label; "expand" = count + down chevron; "collapse" = up chevron. */
|
|
1246
|
+
type?: "pill" | "expand" | "collapse";
|
|
1247
|
+
/** Force the visual state (also applied on real :hover). */
|
|
1248
|
+
state?: "default" | "hover";
|
|
1249
|
+
/** Node label for type="pill". */
|
|
1250
|
+
label?: string;
|
|
1251
|
+
/** Child count for type="expand". */
|
|
1252
|
+
count?: number | string;
|
|
1253
|
+
className?: string;
|
|
1254
|
+
}
|
|
1255
|
+
declare const ScTaxonomyPill: ({ type, state, label, count, className, ...props }: IScTaxonomyPillProps) => JSX.Element;
|
|
1256
|
+
|
|
1257
|
+
interface IScSelectionPillProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onSelect"> {
|
|
1258
|
+
label?: string;
|
|
1259
|
+
/** Selected pill = dark fill + inverse text. */
|
|
1260
|
+
selected?: boolean;
|
|
1261
|
+
value?: string;
|
|
1262
|
+
onSelect?: (value?: string) => void;
|
|
1263
|
+
className?: string;
|
|
1264
|
+
}
|
|
1265
|
+
declare const ScSelectionPill: ({ label, selected, value, onSelect, onClick, className, ...props }: IScSelectionPillProps) => JSX.Element;
|
|
1266
|
+
|
|
1267
|
+
interface IScSelectionPillOption {
|
|
1268
|
+
label: string;
|
|
1269
|
+
value: string;
|
|
1270
|
+
}
|
|
1271
|
+
interface IScSelectionPillGroupProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onChange"> {
|
|
1272
|
+
options?: IScSelectionPillOption[];
|
|
1273
|
+
/** Value of the currently-selected pill. */
|
|
1274
|
+
value?: string;
|
|
1275
|
+
onChange?: (value: string) => void;
|
|
1276
|
+
className?: string;
|
|
1277
|
+
}
|
|
1278
|
+
declare const ScSelectionPillGroup: ({ options, value, onChange, className, ...props }: IScSelectionPillGroupProps) => JSX.Element;
|
|
1279
|
+
|
|
1280
|
+
interface IScMappingCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1281
|
+
/** Narrow left-gutter badge letter, e.g. "A". */
|
|
1282
|
+
badge?: string;
|
|
1283
|
+
/** Source feed-column name, e.g. "STYLE ID". */
|
|
1284
|
+
columnName: string;
|
|
1285
|
+
/** Sample-value preview lines shown under the name (default state only). */
|
|
1286
|
+
sampleRows?: string[];
|
|
1287
|
+
/** "+" add-another-target handler (default state). */
|
|
1288
|
+
onAddColumn?: () => void;
|
|
1289
|
+
/** Visual + behavioural state. */
|
|
1290
|
+
status?: "default" | "confirmed" | "ignored";
|
|
1291
|
+
/** SLOT: target dropdown rows (default state) — the host renders its selects here. */
|
|
1292
|
+
targets?: React.ReactNode;
|
|
1293
|
+
/** Confirmed state: mapped target names, rendered as read-only field boxes. */
|
|
1294
|
+
confirmedTargets?: string[];
|
|
1295
|
+
/** Validity line, e.g. "50% of rows in this column have valid data (200 out of 400)". */
|
|
1296
|
+
validityText?: string;
|
|
1297
|
+
/** Link-warning message (default state). */
|
|
1298
|
+
warning?: React.ReactNode;
|
|
1299
|
+
/** Show "Confirm Mapping" (default state). */
|
|
1300
|
+
canConfirm?: boolean;
|
|
1301
|
+
onIgnore?: () => void;
|
|
1302
|
+
onConfirm?: () => void;
|
|
1303
|
+
/** Edit handler for confirmed/ignored states. */
|
|
1304
|
+
onEdit?: () => void;
|
|
1305
|
+
className?: string;
|
|
1306
|
+
}
|
|
1307
|
+
declare const ScMappingCard: ({ badge, columnName, sampleRows, onAddColumn, status, targets, confirmedTargets, validityText, warning, canConfirm, onIgnore, onConfirm, onEdit, className, ...props }: IScMappingCardProps) => JSX.Element;
|
|
1308
|
+
|
|
1309
|
+
interface IScThinkingStepIconProps extends Omit<React__default.HTMLAttributes<HTMLSpanElement>, "children"> {
|
|
1152
1310
|
state?: "default" | "working" | "completed" | "error";
|
|
1153
1311
|
size?: number;
|
|
1154
1312
|
className?: string;
|
|
1155
|
-
style?:
|
|
1313
|
+
style?: React__default.CSSProperties;
|
|
1156
1314
|
}
|
|
1157
1315
|
declare const ScThinkingStepIcon: ({ state, size, className, style, ...props }: IScThinkingStepIconProps) => JSX.Element;
|
|
1158
1316
|
|
|
@@ -1170,7 +1328,7 @@ interface IScInChatListProps {
|
|
|
1170
1328
|
toolUsing?: string;
|
|
1171
1329
|
onToggle?: () => void;
|
|
1172
1330
|
className?: string;
|
|
1173
|
-
style?:
|
|
1331
|
+
style?: React__default.CSSProperties;
|
|
1174
1332
|
}
|
|
1175
1333
|
declare const ScInChatList: ({ title, description, descriptionVisibility, leadingIndicator, iconState, showSteps, stepCount, showTool, toolUsing, onToggle, className, style, }: IScInChatListProps) => JSX.Element;
|
|
1176
1334
|
|
|
@@ -1340,11 +1498,11 @@ interface IScTableListMobileProps {
|
|
|
1340
1498
|
/** Access icons - second group */
|
|
1341
1499
|
permissionIcons?: JSX.Element[];
|
|
1342
1500
|
/** Callback on row click */
|
|
1343
|
-
onRowClick?: (e:
|
|
1501
|
+
onRowClick?: (e: React__default.MouseEvent) => void;
|
|
1344
1502
|
/** Additional class name */
|
|
1345
1503
|
className?: string;
|
|
1346
1504
|
}
|
|
1347
|
-
declare const ScTableListMobile: ({ name, email, imageUrl, role, accessIcons, permissionIcons, onRowClick, className, ...props }: IScTableListMobileProps &
|
|
1505
|
+
declare const ScTableListMobile: ({ name, email, imageUrl, role, accessIcons, permissionIcons, onRowClick, className, ...props }: IScTableListMobileProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1348
1506
|
|
|
1349
1507
|
interface IScWorkspaceSwitchMobileProps {
|
|
1350
1508
|
/** Workspace name */
|
|
@@ -1362,9 +1520,9 @@ interface IScWorkspaceSwitchMobileProps {
|
|
|
1362
1520
|
/** Additional class name */
|
|
1363
1521
|
className?: string;
|
|
1364
1522
|
/** Click handler */
|
|
1365
|
-
onClick?: (e:
|
|
1523
|
+
onClick?: (e: React__default.MouseEvent) => void;
|
|
1366
1524
|
}
|
|
1367
|
-
declare const ScWorkspaceSwitchMobile: ({ storeName, initials, role, ownerId, currentWs, ownerIcon, className, onClick, ...props }: IScWorkspaceSwitchMobileProps &
|
|
1525
|
+
declare const ScWorkspaceSwitchMobile: ({ storeName, initials, role, ownerId, currentWs, ownerIcon, className, onClick, ...props }: IScWorkspaceSwitchMobileProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1368
1526
|
|
|
1369
1527
|
interface IScWorkspaceSettingsMobileProps {
|
|
1370
1528
|
/** Workspace name */
|
|
@@ -1386,9 +1544,9 @@ interface IScWorkspaceSettingsMobileProps {
|
|
|
1386
1544
|
/** Additional class name */
|
|
1387
1545
|
className?: string;
|
|
1388
1546
|
/** Click handler */
|
|
1389
|
-
onClick?: (e:
|
|
1547
|
+
onClick?: (e: React__default.MouseEvent) => void;
|
|
1390
1548
|
}
|
|
1391
|
-
declare const ScWorkspaceSettingsMobile: ({ storeName, initials, role, ownerId, teamCount, currentWs, ownerIcon, teamIcon, className, onClick, ...props }: IScWorkspaceSettingsMobileProps &
|
|
1549
|
+
declare const ScWorkspaceSettingsMobile: ({ storeName, initials, role, ownerId, teamCount, currentWs, ownerIcon, teamIcon, className, onClick, ...props }: IScWorkspaceSettingsMobileProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1392
1550
|
|
|
1393
1551
|
interface IScMobileTopNavProps {
|
|
1394
1552
|
/** Navigation type */
|
|
@@ -1414,19 +1572,19 @@ interface IScMobileTopNavProps {
|
|
|
1414
1572
|
/** More icon element */
|
|
1415
1573
|
moreIcon?: JSX.Element;
|
|
1416
1574
|
/** Callback on menu click */
|
|
1417
|
-
onMenuClick?: (e:
|
|
1575
|
+
onMenuClick?: (e: React__default.MouseEvent) => void;
|
|
1418
1576
|
/** Callback on search icon click */
|
|
1419
|
-
onSearchClick?: (e:
|
|
1577
|
+
onSearchClick?: (e: React__default.MouseEvent) => void;
|
|
1420
1578
|
/** Callback on close click */
|
|
1421
|
-
onCloseClick?: (e:
|
|
1579
|
+
onCloseClick?: (e: React__default.MouseEvent) => void;
|
|
1422
1580
|
/** Callback on more click */
|
|
1423
|
-
onMoreClick?: (e:
|
|
1581
|
+
onMoreClick?: (e: React__default.MouseEvent) => void;
|
|
1424
1582
|
/** Callback on search input change */
|
|
1425
1583
|
onSearchChange?: (value: string) => void;
|
|
1426
1584
|
/** Additional class name */
|
|
1427
1585
|
className?: string;
|
|
1428
1586
|
}
|
|
1429
|
-
declare const ScMobileTopNav: ({ type, searchIcon, search, heading, chatTitle, searchPlaceholder, searchValue, menuIcon, searchIconElement, closeIcon, moreIcon, onMenuClick, onSearchClick, onCloseClick, onMoreClick, onSearchChange, className, ...props }: IScMobileTopNavProps &
|
|
1587
|
+
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
1588
|
|
|
1431
1589
|
interface IScMobileBottomActionProps {
|
|
1432
1590
|
/** Primary button text */
|
|
@@ -1434,17 +1592,17 @@ interface IScMobileBottomActionProps {
|
|
|
1434
1592
|
/** Whether primary button is disabled */
|
|
1435
1593
|
disabled?: boolean;
|
|
1436
1594
|
/** Primary button click handler */
|
|
1437
|
-
onClick?: (e:
|
|
1595
|
+
onClick?: (e: React__default.MouseEvent) => void;
|
|
1438
1596
|
/** Secondary (outline) button text — renders 2-button layout when provided */
|
|
1439
1597
|
secondaryText?: string;
|
|
1440
1598
|
/** Whether secondary button is disabled */
|
|
1441
1599
|
secondaryDisabled?: boolean;
|
|
1442
1600
|
/** Secondary button click handler */
|
|
1443
|
-
onSecondaryClick?: (e:
|
|
1601
|
+
onSecondaryClick?: (e: React__default.MouseEvent) => void;
|
|
1444
1602
|
/** Additional class name */
|
|
1445
1603
|
className?: string;
|
|
1446
1604
|
}
|
|
1447
|
-
declare const ScMobileBottomAction: ({ text, disabled, onClick, secondaryText, secondaryDisabled, onSecondaryClick, className, ...props }: IScMobileBottomActionProps &
|
|
1605
|
+
declare const ScMobileBottomAction: ({ text, disabled, onClick, secondaryText, secondaryDisabled, onSecondaryClick, className, ...props }: IScMobileBottomActionProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1448
1606
|
|
|
1449
1607
|
interface IScPopUpMenuProps {
|
|
1450
1608
|
/** Menu label text */
|
|
@@ -1454,11 +1612,11 @@ interface IScPopUpMenuProps {
|
|
|
1454
1612
|
/** Icon element */
|
|
1455
1613
|
icon?: JSX.Element;
|
|
1456
1614
|
/** Click handler */
|
|
1457
|
-
onClick?: (e:
|
|
1615
|
+
onClick?: (e: React__default.MouseEvent) => void;
|
|
1458
1616
|
/** Additional class name */
|
|
1459
1617
|
className?: string;
|
|
1460
1618
|
}
|
|
1461
|
-
declare const ScPopUpMenu: ({ menu, state, icon, onClick, className, ...props }: IScPopUpMenuProps &
|
|
1619
|
+
declare const ScPopUpMenu: ({ menu, state, icon, onClick, className, ...props }: IScPopUpMenuProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1462
1620
|
|
|
1463
1621
|
interface IScReferralCardMobileProps {
|
|
1464
1622
|
/** User name */
|
|
@@ -1474,11 +1632,11 @@ interface IScReferralCardMobileProps {
|
|
|
1474
1632
|
/** Credit amount */
|
|
1475
1633
|
credits?: string;
|
|
1476
1634
|
/** Click handler */
|
|
1477
|
-
onClick?: (e:
|
|
1635
|
+
onClick?: (e: React__default.MouseEvent) => void;
|
|
1478
1636
|
/** Additional class name */
|
|
1479
1637
|
className?: string;
|
|
1480
1638
|
}
|
|
1481
|
-
declare const ScReferralCardMobile: ({ name, email, imageUrl, badge, date, credits, onClick, className, ...props }: IScReferralCardMobileProps &
|
|
1639
|
+
declare const ScReferralCardMobile: ({ name, email, imageUrl, badge, date, credits, onClick, className, ...props }: IScReferralCardMobileProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1482
1640
|
|
|
1483
1641
|
interface IInvoiceHistoryMobileProps {
|
|
1484
1642
|
invoiceId?: string;
|
|
@@ -1514,11 +1672,11 @@ interface IScWorkspaceSwitchMobileV2Props {
|
|
|
1514
1672
|
/** Card type */
|
|
1515
1673
|
type?: "currentWS" | "otherWS" | "display";
|
|
1516
1674
|
/** Click handler */
|
|
1517
|
-
onClick?: (e:
|
|
1675
|
+
onClick?: (e: React__default.MouseEvent) => void;
|
|
1518
1676
|
/** Additional class name */
|
|
1519
1677
|
className?: string;
|
|
1520
1678
|
}
|
|
1521
|
-
declare const ScWorkspaceSwitchMobileV2: ({ wsName, initials, imageUrl, role, plan, ownerId, type, onClick, className, ...props }: IScWorkspaceSwitchMobileV2Props &
|
|
1679
|
+
declare const ScWorkspaceSwitchMobileV2: ({ wsName, initials, imageUrl, role, plan, ownerId, type, onClick, className, ...props }: IScWorkspaceSwitchMobileV2Props & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
|
1522
1680
|
|
|
1523
1681
|
interface IScImageFieldProps {
|
|
1524
1682
|
label?: string;
|
|
@@ -1566,4 +1724,4 @@ interface IScPlanDetailsCardMobileProps extends React.HTMLAttributes<HTMLDivElem
|
|
|
1566
1724
|
}
|
|
1567
1725
|
declare const ScPlanDetailsCardMobile: ({ planName, planCredits, planPrice, badgeText, badgeSubText, currentPlanLabel, upgradeButtonText, isLoading, onUpgrade, className, ...props }: IScPlanDetailsCardMobileProps) => JSX.Element;
|
|
1568
1726
|
|
|
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 };
|
|
1727
|
+
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 IScDefaultCardProps, 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 IScMappingCardProps, 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 IScSelectionPillGroupProps, type IScSelectionPillOption, type IScSelectionPillProps, 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 IScTaxonomyPillProps, type IScTextAreaProps, type IScTextFieldProps, type IScThinkingStepIconProps, type IScTodoItem, type IScTodoListProps, type IScToggleSwitchProps, type IScVDividerProps, type IScValueMappingL1Props, 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, ScDefaultCard, ScDp, type ScDpProps, ScDrawer, ScFieldButton, ScFileField, ScGoogleSignIn, ScGuide, ScHDivider, ScHeader, ScImageField, ScInChatList, ScInChatMessage, ScInfoPopup, ScIntialProfileCover, ScLogoUnit, ScMappingCard, 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, ScSelectionPill, ScSelectionPillGroup, ScSettingsNav, ScSettingsTabComp, ScSideBarLogoUnit, ScSidebar, ScSidebarIcons, ScSidebarMenu, ScSidebarProfile, ScSidebarSwitchMenu, ScSlider, ScStoreCard, ScStrLogo, ScStreamoidMascot, ScStreamoidWordmark, ScSubAgent, type ScTab, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTableListMobile, ScTabs, ScTaxonomyPill, ScTextArea, ScTextField, ScThinkingStepIcon, ScTodoList, ScToggleSwitch, ScVDivider, ScValueMappingL1, 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 };
|