@streamoid/ui 0.6.12 → 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.d.ts CHANGED
@@ -1,4 +1,5 @@
1
- import React$1, { CSSProperties, HTMLAttributes, ReactNode } from 'react';
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?: React$1.CSSProperties;
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
 
@@ -870,12 +873,13 @@ declare const ScCheckField: ({ label, className, checkboxes, ...props }: IScChec
870
873
  interface IScCheckboxProps {
871
874
  state?: "default" | "partial" | "selected";
872
875
  checked?: boolean;
876
+ disabled?: boolean;
873
877
  onChange?: (checked: boolean) => void;
874
878
  className?: string;
875
879
  style?: React.CSSProperties;
876
880
  onClick?: React.MouseEventHandler<HTMLDivElement>;
877
881
  }
878
- declare const ScCheckbox: ({ state, checked, onChange, className, ...props }: IScCheckboxProps & Omit<React.HTMLAttributes<HTMLDivElement>, "onChange">) => JSX.Element;
882
+ declare const ScCheckbox: ({ state, checked, disabled, onChange, className, style, onClick, ...props }: IScCheckboxProps & Omit<React.HTMLAttributes<HTMLDivElement>, "onChange">) => JSX.Element;
879
883
 
880
884
  interface IScFieldButtonProps extends React.HTMLAttributes<HTMLDivElement> {
881
885
  icon?: JSX.Element;
@@ -1025,16 +1029,36 @@ interface IScTextFieldProps extends React.InputHTMLAttributes<HTMLInputElement>
1025
1029
  className?: string;
1026
1030
  placeholderFilled?: string;
1027
1031
  label?: string;
1028
- }
1029
- declare const ScTextField: ({ tfRightIcon, tfLeftIcon, state, tfGroup, labelGroup, className, placeholderFilled, label, style, ...props }: IScTextFieldProps) => JSX.Element;
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>>;
1030
1053
 
1031
1054
  interface IScToggleSwitchProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onToggle"> {
1032
1055
  active?: "true" | "false";
1033
1056
  checked?: boolean;
1057
+ disabled?: boolean;
1034
1058
  onToggle?: (active: boolean) => void;
1035
1059
  className?: string;
1036
1060
  }
1037
- declare const ScToggleSwitch: ({ active, checked, onToggle, className, ...props }: IScToggleSwitchProps) => JSX.Element;
1061
+ declare const ScToggleSwitch: ({ active, checked, disabled, onToggle, className, ...props }: IScToggleSwitchProps) => JSX.Element;
1038
1062
 
1039
1063
  interface IScVersionProps extends React.HTMLAttributes<HTMLDivElement> {
1040
1064
  state?: "expanded" | "collapsed";
@@ -1073,6 +1097,80 @@ declare function ScWorkspaceSwitchCard({ wsName, role, plan, ownerId, initials,
1073
1097
  /** @deprecated Use ScWorkspaceSwitchCard directly */
1074
1098
  declare const NscWorkspaceSwitch: typeof ScWorkspaceSwitchCard;
1075
1099
 
1100
+ interface IScModalProps {
1101
+ children?: React.ReactNode;
1102
+ onClose?: () => void;
1103
+ open?: boolean;
1104
+ className?: string;
1105
+ style?: React.CSSProperties;
1106
+ contentClassName?: string;
1107
+ contentStyle?: React.CSSProperties;
1108
+ closeOnBackdrop?: boolean;
1109
+ closeOnEsc?: boolean;
1110
+ }
1111
+ declare const ScModal: ({ children, onClose, open, className, style, contentClassName, contentStyle, closeOnBackdrop, closeOnEsc, }: IScModalProps) => JSX.Element | null;
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
+
1157
+ interface IScInfoPopupProps {
1158
+ content?: React.ReactNode;
1159
+ className?: string;
1160
+ }
1161
+ declare const ScInfoPopup: ({ content, className, }: IScInfoPopupProps) => JSX.Element;
1162
+
1163
+ interface IScPaginationProps {
1164
+ itemsCount: number;
1165
+ itemsPerPage: number | string;
1166
+ page: number | string;
1167
+ setPage: (page: number | string) => void;
1168
+ setOffsetValue: (offset: number) => void;
1169
+ onPageChangeAction: () => void;
1170
+ className?: string;
1171
+ }
1172
+ declare const ScPagination: ({ itemsCount, itemsPerPage, page, setPage, setOffsetValue, onPageChangeAction, className, }: IScPaginationProps) => JSX.Element;
1173
+
1076
1174
  type ScBeaconTone = "success" | "warning" | "error" | "neutral";
1077
1175
  interface IScBeaconProps extends React.HTMLAttributes<HTMLSpanElement> {
1078
1176
  tone?: ScBeaconTone;
@@ -1116,11 +1214,11 @@ interface IScCatalogixStoreTableListProps extends React.HTMLAttributes<HTMLDivEl
1116
1214
  }
1117
1215
  declare const ScCatalogixStoreTableList: ({ storeName, status, statusTone, products, assets, createdOn, createdBy, showAssets, showCreatedBy, className, ...props }: IScCatalogixStoreTableListProps) => JSX.Element;
1118
1216
 
1119
- interface IScThinkingStepIconProps extends Omit<React$1.HTMLAttributes<HTMLSpanElement>, "children"> {
1217
+ interface IScThinkingStepIconProps extends Omit<React__default.HTMLAttributes<HTMLSpanElement>, "children"> {
1120
1218
  state?: "default" | "working" | "completed" | "error";
1121
1219
  size?: number;
1122
1220
  className?: string;
1123
- style?: React$1.CSSProperties;
1221
+ style?: React__default.CSSProperties;
1124
1222
  }
1125
1223
  declare const ScThinkingStepIcon: ({ state, size, className, style, ...props }: IScThinkingStepIconProps) => JSX.Element;
1126
1224
 
@@ -1138,7 +1236,7 @@ interface IScInChatListProps {
1138
1236
  toolUsing?: string;
1139
1237
  onToggle?: () => void;
1140
1238
  className?: string;
1141
- style?: React$1.CSSProperties;
1239
+ style?: React__default.CSSProperties;
1142
1240
  }
1143
1241
  declare const ScInChatList: ({ title, description, descriptionVisibility, leadingIndicator, iconState, showSteps, stepCount, showTool, toolUsing, onToggle, className, style, }: IScInChatListProps) => JSX.Element;
1144
1242
 
@@ -1308,11 +1406,11 @@ interface IScTableListMobileProps {
1308
1406
  /** Access icons - second group */
1309
1407
  permissionIcons?: JSX.Element[];
1310
1408
  /** Callback on row click */
1311
- onRowClick?: (e: React$1.MouseEvent) => void;
1409
+ onRowClick?: (e: React__default.MouseEvent) => void;
1312
1410
  /** Additional class name */
1313
1411
  className?: string;
1314
1412
  }
1315
- declare const ScTableListMobile: ({ name, email, imageUrl, role, accessIcons, permissionIcons, onRowClick, className, ...props }: IScTableListMobileProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
1413
+ declare const ScTableListMobile: ({ name, email, imageUrl, role, accessIcons, permissionIcons, onRowClick, className, ...props }: IScTableListMobileProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
1316
1414
 
1317
1415
  interface IScWorkspaceSwitchMobileProps {
1318
1416
  /** Workspace name */
@@ -1330,9 +1428,9 @@ interface IScWorkspaceSwitchMobileProps {
1330
1428
  /** Additional class name */
1331
1429
  className?: string;
1332
1430
  /** Click handler */
1333
- onClick?: (e: React$1.MouseEvent) => void;
1431
+ onClick?: (e: React__default.MouseEvent) => void;
1334
1432
  }
1335
- declare const ScWorkspaceSwitchMobile: ({ storeName, initials, role, ownerId, currentWs, ownerIcon, className, onClick, ...props }: IScWorkspaceSwitchMobileProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
1433
+ declare const ScWorkspaceSwitchMobile: ({ storeName, initials, role, ownerId, currentWs, ownerIcon, className, onClick, ...props }: IScWorkspaceSwitchMobileProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
1336
1434
 
1337
1435
  interface IScWorkspaceSettingsMobileProps {
1338
1436
  /** Workspace name */
@@ -1354,9 +1452,9 @@ interface IScWorkspaceSettingsMobileProps {
1354
1452
  /** Additional class name */
1355
1453
  className?: string;
1356
1454
  /** Click handler */
1357
- onClick?: (e: React$1.MouseEvent) => void;
1455
+ onClick?: (e: React__default.MouseEvent) => void;
1358
1456
  }
1359
- declare const ScWorkspaceSettingsMobile: ({ storeName, initials, role, ownerId, teamCount, currentWs, ownerIcon, teamIcon, className, onClick, ...props }: IScWorkspaceSettingsMobileProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
1457
+ declare const ScWorkspaceSettingsMobile: ({ storeName, initials, role, ownerId, teamCount, currentWs, ownerIcon, teamIcon, className, onClick, ...props }: IScWorkspaceSettingsMobileProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
1360
1458
 
1361
1459
  interface IScMobileTopNavProps {
1362
1460
  /** Navigation type */
@@ -1382,19 +1480,19 @@ interface IScMobileTopNavProps {
1382
1480
  /** More icon element */
1383
1481
  moreIcon?: JSX.Element;
1384
1482
  /** Callback on menu click */
1385
- onMenuClick?: (e: React$1.MouseEvent) => void;
1483
+ onMenuClick?: (e: React__default.MouseEvent) => void;
1386
1484
  /** Callback on search icon click */
1387
- onSearchClick?: (e: React$1.MouseEvent) => void;
1485
+ onSearchClick?: (e: React__default.MouseEvent) => void;
1388
1486
  /** Callback on close click */
1389
- onCloseClick?: (e: React$1.MouseEvent) => void;
1487
+ onCloseClick?: (e: React__default.MouseEvent) => void;
1390
1488
  /** Callback on more click */
1391
- onMoreClick?: (e: React$1.MouseEvent) => void;
1489
+ onMoreClick?: (e: React__default.MouseEvent) => void;
1392
1490
  /** Callback on search input change */
1393
1491
  onSearchChange?: (value: string) => void;
1394
1492
  /** Additional class name */
1395
1493
  className?: string;
1396
1494
  }
1397
- declare const ScMobileTopNav: ({ type, searchIcon, search, heading, chatTitle, searchPlaceholder, searchValue, menuIcon, searchIconElement, closeIcon, moreIcon, onMenuClick, onSearchClick, onCloseClick, onMoreClick, onSearchChange, className, ...props }: IScMobileTopNavProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
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;
1398
1496
 
1399
1497
  interface IScMobileBottomActionProps {
1400
1498
  /** Primary button text */
@@ -1402,17 +1500,17 @@ interface IScMobileBottomActionProps {
1402
1500
  /** Whether primary button is disabled */
1403
1501
  disabled?: boolean;
1404
1502
  /** Primary button click handler */
1405
- onClick?: (e: React$1.MouseEvent) => void;
1503
+ onClick?: (e: React__default.MouseEvent) => void;
1406
1504
  /** Secondary (outline) button text — renders 2-button layout when provided */
1407
1505
  secondaryText?: string;
1408
1506
  /** Whether secondary button is disabled */
1409
1507
  secondaryDisabled?: boolean;
1410
1508
  /** Secondary button click handler */
1411
- onSecondaryClick?: (e: React$1.MouseEvent) => void;
1509
+ onSecondaryClick?: (e: React__default.MouseEvent) => void;
1412
1510
  /** Additional class name */
1413
1511
  className?: string;
1414
1512
  }
1415
- declare const ScMobileBottomAction: ({ text, disabled, onClick, secondaryText, secondaryDisabled, onSecondaryClick, className, ...props }: IScMobileBottomActionProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
1513
+ declare const ScMobileBottomAction: ({ text, disabled, onClick, secondaryText, secondaryDisabled, onSecondaryClick, className, ...props }: IScMobileBottomActionProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
1416
1514
 
1417
1515
  interface IScPopUpMenuProps {
1418
1516
  /** Menu label text */
@@ -1422,11 +1520,11 @@ interface IScPopUpMenuProps {
1422
1520
  /** Icon element */
1423
1521
  icon?: JSX.Element;
1424
1522
  /** Click handler */
1425
- onClick?: (e: React$1.MouseEvent) => void;
1523
+ onClick?: (e: React__default.MouseEvent) => void;
1426
1524
  /** Additional class name */
1427
1525
  className?: string;
1428
1526
  }
1429
- declare const ScPopUpMenu: ({ menu, state, icon, onClick, className, ...props }: IScPopUpMenuProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
1527
+ declare const ScPopUpMenu: ({ menu, state, icon, onClick, className, ...props }: IScPopUpMenuProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
1430
1528
 
1431
1529
  interface IScReferralCardMobileProps {
1432
1530
  /** User name */
@@ -1442,11 +1540,11 @@ interface IScReferralCardMobileProps {
1442
1540
  /** Credit amount */
1443
1541
  credits?: string;
1444
1542
  /** Click handler */
1445
- onClick?: (e: React$1.MouseEvent) => void;
1543
+ onClick?: (e: React__default.MouseEvent) => void;
1446
1544
  /** Additional class name */
1447
1545
  className?: string;
1448
1546
  }
1449
- declare const ScReferralCardMobile: ({ name, email, imageUrl, badge, date, credits, onClick, className, ...props }: IScReferralCardMobileProps & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
1547
+ declare const ScReferralCardMobile: ({ name, email, imageUrl, badge, date, credits, onClick, className, ...props }: IScReferralCardMobileProps & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
1450
1548
 
1451
1549
  interface IInvoiceHistoryMobileProps {
1452
1550
  invoiceId?: string;
@@ -1482,11 +1580,11 @@ interface IScWorkspaceSwitchMobileV2Props {
1482
1580
  /** Card type */
1483
1581
  type?: "currentWS" | "otherWS" | "display";
1484
1582
  /** Click handler */
1485
- onClick?: (e: React$1.MouseEvent) => void;
1583
+ onClick?: (e: React__default.MouseEvent) => void;
1486
1584
  /** Additional class name */
1487
1585
  className?: string;
1488
1586
  }
1489
- declare const ScWorkspaceSwitchMobileV2: ({ wsName, initials, imageUrl, role, plan, ownerId, type, onClick, className, ...props }: IScWorkspaceSwitchMobileV2Props & React$1.HTMLAttributes<HTMLDivElement>) => JSX.Element;
1587
+ declare const ScWorkspaceSwitchMobileV2: ({ wsName, initials, imageUrl, role, plan, ownerId, type, onClick, className, ...props }: IScWorkspaceSwitchMobileV2Props & React__default.HTMLAttributes<HTMLDivElement>) => JSX.Element;
1490
1588
 
1491
1589
  interface IScImageFieldProps {
1492
1590
  label?: string;
@@ -1534,4 +1632,4 @@ interface IScPlanDetailsCardMobileProps extends React.HTMLAttributes<HTMLDivElem
1534
1632
  }
1535
1633
  declare const ScPlanDetailsCardMobile: ({ planName, planCredits, planPrice, badgeText, badgeSubText, currentPlanLabel, upgradeButtonText, isLoading, onUpgrade, className, ...props }: IScPlanDetailsCardMobileProps) => JSX.Element;
1536
1634
 
1537
- 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 IScIntialProfileCoverProps, type IScLogoUnitProps, type IScMediaApprovalProps, type IScMediaSelectProps, type IScMenuOptionsProps, type IScMobileBottomActionProps, type IScMobileTopNavProps, type IScOnlyFieldProps, type IScOnlyIconProps, 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, ScIntialProfileCover, ScLogoUnit, ScMediaApproval, ScMediaSelect, ScMenuOptions, ScMobileBottomAction, ScMobileTopNav, ScOnlyField, ScOnlyIcon, 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 };