@streamoid/ui 0.6.10 → 0.6.12
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 +1117 -0
- package/dist/index.d.mts +130 -1
- package/dist/index.d.ts +130 -1
- package/dist/index.js +1357 -210
- package/dist/index.mjs +1357 -210
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1073,6 +1073,49 @@ declare function ScWorkspaceSwitchCard({ wsName, role, plan, ownerId, initials,
|
|
|
1073
1073
|
/** @deprecated Use ScWorkspaceSwitchCard directly */
|
|
1074
1074
|
declare const NscWorkspaceSwitch: typeof ScWorkspaceSwitchCard;
|
|
1075
1075
|
|
|
1076
|
+
type ScBeaconTone = "success" | "warning" | "error" | "neutral";
|
|
1077
|
+
interface IScBeaconProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
1078
|
+
tone?: ScBeaconTone;
|
|
1079
|
+
className?: string;
|
|
1080
|
+
}
|
|
1081
|
+
declare const ScBeacon: ({ tone, className, ...props }: IScBeaconProps) => JSX.Element;
|
|
1082
|
+
|
|
1083
|
+
interface IScStoreCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1084
|
+
storeName?: string;
|
|
1085
|
+
noOfProducts?: string;
|
|
1086
|
+
dateCreated?: string;
|
|
1087
|
+
tone?: ScBeaconTone;
|
|
1088
|
+
className?: string;
|
|
1089
|
+
}
|
|
1090
|
+
declare const ScStoreCard: ({ storeName, noOfProducts, dateCreated, tone, className, ...props }: IScStoreCardProps) => JSX.Element;
|
|
1091
|
+
|
|
1092
|
+
interface IScCatalogixStoreHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1093
|
+
storeNameLabel?: string;
|
|
1094
|
+
statusLabel?: string;
|
|
1095
|
+
productsLabel?: string;
|
|
1096
|
+
assetsLabel?: string;
|
|
1097
|
+
createdOnLabel?: string;
|
|
1098
|
+
createdByLabel?: string;
|
|
1099
|
+
showAssets?: boolean;
|
|
1100
|
+
showCreatedBy?: boolean;
|
|
1101
|
+
className?: string;
|
|
1102
|
+
}
|
|
1103
|
+
declare const ScCatalogixStoreHeader: ({ storeNameLabel, statusLabel, productsLabel, assetsLabel, createdOnLabel, createdByLabel, showAssets, showCreatedBy, className, ...props }: IScCatalogixStoreHeaderProps) => JSX.Element;
|
|
1104
|
+
|
|
1105
|
+
interface IScCatalogixStoreTableListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1106
|
+
storeName?: string;
|
|
1107
|
+
status?: string;
|
|
1108
|
+
statusTone?: ScBeaconTone;
|
|
1109
|
+
products?: string;
|
|
1110
|
+
assets?: string;
|
|
1111
|
+
createdOn?: string;
|
|
1112
|
+
createdBy?: string;
|
|
1113
|
+
showAssets?: boolean;
|
|
1114
|
+
showCreatedBy?: boolean;
|
|
1115
|
+
className?: string;
|
|
1116
|
+
}
|
|
1117
|
+
declare const ScCatalogixStoreTableList: ({ storeName, status, statusTone, products, assets, createdOn, createdBy, showAssets, showCreatedBy, className, ...props }: IScCatalogixStoreTableListProps) => JSX.Element;
|
|
1118
|
+
|
|
1076
1119
|
interface IScThinkingStepIconProps extends Omit<React$1.HTMLAttributes<HTMLSpanElement>, "children"> {
|
|
1077
1120
|
state?: "default" | "working" | "completed" | "error";
|
|
1078
1121
|
size?: number;
|
|
@@ -1143,6 +1186,92 @@ interface IScSelectionListProps extends Omit<React.HTMLAttributes<HTMLDivElement
|
|
|
1143
1186
|
}
|
|
1144
1187
|
declare const ScSelectionList: ({ state, label, optionValues, onChange, onApprove, onReject, disabled, className, ...props }: IScSelectionListProps) => JSX.Element;
|
|
1145
1188
|
|
|
1189
|
+
interface IScTextAreaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
1190
|
+
state?: "default" | "active" | "error" | "disabled" | "filled";
|
|
1191
|
+
labelGroup?: "" | "label" | "text";
|
|
1192
|
+
label?: string;
|
|
1193
|
+
info?: string;
|
|
1194
|
+
placeholderFilled?: string;
|
|
1195
|
+
className?: string;
|
|
1196
|
+
}
|
|
1197
|
+
declare const ScTextArea: ({ state, labelGroup, label, info, placeholderFilled, className, style, ...props }: IScTextAreaProps) => JSX.Element;
|
|
1198
|
+
|
|
1199
|
+
interface IScSelectOption {
|
|
1200
|
+
id: string;
|
|
1201
|
+
label: string;
|
|
1202
|
+
description?: string;
|
|
1203
|
+
}
|
|
1204
|
+
interface IScSelectProps {
|
|
1205
|
+
value?: string;
|
|
1206
|
+
onChange?: (id: string) => void;
|
|
1207
|
+
options?: IScSelectOption[];
|
|
1208
|
+
placeholder?: string;
|
|
1209
|
+
label?: string;
|
|
1210
|
+
labelGroup?: "" | "label";
|
|
1211
|
+
disabled?: boolean;
|
|
1212
|
+
className?: string;
|
|
1213
|
+
}
|
|
1214
|
+
declare const ScSelect: (props: IScSelectProps) => JSX.Element;
|
|
1215
|
+
|
|
1216
|
+
interface IScFileFieldProps {
|
|
1217
|
+
onFileSelect?: (files: FileList | null) => void;
|
|
1218
|
+
accept?: string;
|
|
1219
|
+
multiple?: boolean;
|
|
1220
|
+
fileName?: string | null;
|
|
1221
|
+
uploading?: boolean;
|
|
1222
|
+
progress?: number;
|
|
1223
|
+
error?: string | null;
|
|
1224
|
+
onClear?: () => void;
|
|
1225
|
+
label?: string;
|
|
1226
|
+
className?: string;
|
|
1227
|
+
}
|
|
1228
|
+
declare const ScFileField: (props: IScFileFieldProps) => JSX.Element;
|
|
1229
|
+
|
|
1230
|
+
interface IScMediaApprovalProps {
|
|
1231
|
+
mediaUrls?: string[];
|
|
1232
|
+
mediaType?: "image" | "video" | "mixed";
|
|
1233
|
+
activeIndex?: number;
|
|
1234
|
+
onIndexChange?: (i: number) => void;
|
|
1235
|
+
onPreview?: (url: string) => void;
|
|
1236
|
+
loading?: boolean;
|
|
1237
|
+
feedbackLabel?: string;
|
|
1238
|
+
feedbackValue?: string;
|
|
1239
|
+
onFeedbackChange?: (v: string) => void;
|
|
1240
|
+
feedbackPlaceholder?: string;
|
|
1241
|
+
className?: string;
|
|
1242
|
+
}
|
|
1243
|
+
declare const ScMediaApproval: (props: IScMediaApprovalProps) => JSX.Element;
|
|
1244
|
+
|
|
1245
|
+
interface IScMediaSelectProps {
|
|
1246
|
+
items?: string[];
|
|
1247
|
+
selected?: string[];
|
|
1248
|
+
onToggle?: (url: string) => void;
|
|
1249
|
+
onSelectAll?: () => void;
|
|
1250
|
+
onDeselectAll?: () => void;
|
|
1251
|
+
min?: number;
|
|
1252
|
+
max?: number;
|
|
1253
|
+
mediaType?: "image" | "video" | "mixed";
|
|
1254
|
+
onPreview?: (url: string) => void;
|
|
1255
|
+
className?: string;
|
|
1256
|
+
}
|
|
1257
|
+
declare const ScMediaSelect: (props: IScMediaSelectProps) => JSX.Element;
|
|
1258
|
+
|
|
1259
|
+
interface IScTodoItem {
|
|
1260
|
+
id: string;
|
|
1261
|
+
content: string;
|
|
1262
|
+
status: "pending" | "completed";
|
|
1263
|
+
}
|
|
1264
|
+
interface IScTodoListProps {
|
|
1265
|
+
items?: IScTodoItem[];
|
|
1266
|
+
onToggle?: (id: string) => void;
|
|
1267
|
+
onEdit?: (id: string, content: string) => void;
|
|
1268
|
+
onDelete?: (id: string) => void;
|
|
1269
|
+
onAdd?: (content: string) => void;
|
|
1270
|
+
addPlaceholder?: string;
|
|
1271
|
+
className?: string;
|
|
1272
|
+
}
|
|
1273
|
+
declare const ScTodoList: ({ items, onToggle, onEdit, onDelete, onAdd, addPlaceholder, className, }: IScTodoListProps) => JSX.Element;
|
|
1274
|
+
|
|
1146
1275
|
interface IScRoleMobileProps {
|
|
1147
1276
|
/** Role variant */
|
|
1148
1277
|
role?: "admin" | "member";
|
|
@@ -1405,4 +1534,4 @@ interface IScPlanDetailsCardMobileProps extends React.HTMLAttributes<HTMLDivElem
|
|
|
1405
1534
|
}
|
|
1406
1535
|
declare const ScPlanDetailsCardMobile: ({ planName, planCredits, planPrice, badgeText, badgeSubText, currentPlanLabel, upgradeButtonText, isLoading, onUpgrade, className, ...props }: IScPlanDetailsCardMobileProps) => JSX.Element;
|
|
1407
1536
|
|
|
1408
|
-
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 IScBillingHistoryHeaderProps, type IScBillingHistoryTableListProps, type IScBillingLogsTableHeaderProps, type IScBillingLogsTableListProps, type IScBriefCardProps, type IScButtonProps, type IScCalendarDateCompsProps, type IScCalendarProps, type IScCatalogixInviteProps, type IScCatalogixSidebarProps, type IScCheckFieldProps, type IScCheckboxProps, type IScCreditsUsageCardMobileProps, type IScCreditsUsageCardProps, type IScCxoCopilotLogoProps, type IScFieldButtonProps, type IScGoogleSignInProps, type IScGuideProps, type IScHDividerProps, type IScHeaderProps, type IScImageFieldProps, type IScInChatListProps, type IScInChatMessageProps, type IScIntialProfileCoverProps, type IScLogoUnitProps, 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 IScSelectionListProps, type IScSelectionProps, type IScSettingsNavProps, type IScSettingsTabCompProps, type IScSideBarLogoUnitProps, type IScSidebarIconsProps, type IScSidebarMenuProps, type IScSidebarProfileProps, type IScSidebarProps, type IScSidebarSwitchMenuProps, type IScSliderProps, type IScStrLogoProps, type IScStreamoidMascotProps, type IScStreamoidWordmarkProps, type IScSubAgentProps, type IScTabCompProps, type IScTabFieldProps, type IScTabSwitcherProps, type IScTableHeaderProps, type IScTableListMobileProps, type IScTableListProps, type IScTextFieldProps, type IScThinkingStepIconProps, 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, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScBriefCard, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCatalogixSidebar, ScCheckField, ScCheckbox, ScCreditsUsageCard, ScCreditsUsageCardMobile, ScCxoCopilotLogo, ScDp, type ScDpProps, ScFieldButton, ScGoogleSignIn, ScGuide, ScHDivider, ScHeader, ScImageField, ScInChatList, ScInChatMessage, ScIntialProfileCover, ScLogoUnit, 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, ScSelection, ScSelectionList, ScSettingsNav, ScSettingsTabComp, ScSideBarLogoUnit, ScSidebar, ScSidebarIcons, ScSidebarMenu, ScSidebarProfile, ScSidebarSwitchMenu, ScSlider, ScStrLogo, ScStreamoidMascot, ScStreamoidWordmark, ScSubAgent, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTableListMobile, ScTextField, ScThinkingStepIcon, 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 };
|
|
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -1073,6 +1073,49 @@ declare function ScWorkspaceSwitchCard({ wsName, role, plan, ownerId, initials,
|
|
|
1073
1073
|
/** @deprecated Use ScWorkspaceSwitchCard directly */
|
|
1074
1074
|
declare const NscWorkspaceSwitch: typeof ScWorkspaceSwitchCard;
|
|
1075
1075
|
|
|
1076
|
+
type ScBeaconTone = "success" | "warning" | "error" | "neutral";
|
|
1077
|
+
interface IScBeaconProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
1078
|
+
tone?: ScBeaconTone;
|
|
1079
|
+
className?: string;
|
|
1080
|
+
}
|
|
1081
|
+
declare const ScBeacon: ({ tone, className, ...props }: IScBeaconProps) => JSX.Element;
|
|
1082
|
+
|
|
1083
|
+
interface IScStoreCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1084
|
+
storeName?: string;
|
|
1085
|
+
noOfProducts?: string;
|
|
1086
|
+
dateCreated?: string;
|
|
1087
|
+
tone?: ScBeaconTone;
|
|
1088
|
+
className?: string;
|
|
1089
|
+
}
|
|
1090
|
+
declare const ScStoreCard: ({ storeName, noOfProducts, dateCreated, tone, className, ...props }: IScStoreCardProps) => JSX.Element;
|
|
1091
|
+
|
|
1092
|
+
interface IScCatalogixStoreHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1093
|
+
storeNameLabel?: string;
|
|
1094
|
+
statusLabel?: string;
|
|
1095
|
+
productsLabel?: string;
|
|
1096
|
+
assetsLabel?: string;
|
|
1097
|
+
createdOnLabel?: string;
|
|
1098
|
+
createdByLabel?: string;
|
|
1099
|
+
showAssets?: boolean;
|
|
1100
|
+
showCreatedBy?: boolean;
|
|
1101
|
+
className?: string;
|
|
1102
|
+
}
|
|
1103
|
+
declare const ScCatalogixStoreHeader: ({ storeNameLabel, statusLabel, productsLabel, assetsLabel, createdOnLabel, createdByLabel, showAssets, showCreatedBy, className, ...props }: IScCatalogixStoreHeaderProps) => JSX.Element;
|
|
1104
|
+
|
|
1105
|
+
interface IScCatalogixStoreTableListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1106
|
+
storeName?: string;
|
|
1107
|
+
status?: string;
|
|
1108
|
+
statusTone?: ScBeaconTone;
|
|
1109
|
+
products?: string;
|
|
1110
|
+
assets?: string;
|
|
1111
|
+
createdOn?: string;
|
|
1112
|
+
createdBy?: string;
|
|
1113
|
+
showAssets?: boolean;
|
|
1114
|
+
showCreatedBy?: boolean;
|
|
1115
|
+
className?: string;
|
|
1116
|
+
}
|
|
1117
|
+
declare const ScCatalogixStoreTableList: ({ storeName, status, statusTone, products, assets, createdOn, createdBy, showAssets, showCreatedBy, className, ...props }: IScCatalogixStoreTableListProps) => JSX.Element;
|
|
1118
|
+
|
|
1076
1119
|
interface IScThinkingStepIconProps extends Omit<React$1.HTMLAttributes<HTMLSpanElement>, "children"> {
|
|
1077
1120
|
state?: "default" | "working" | "completed" | "error";
|
|
1078
1121
|
size?: number;
|
|
@@ -1143,6 +1186,92 @@ interface IScSelectionListProps extends Omit<React.HTMLAttributes<HTMLDivElement
|
|
|
1143
1186
|
}
|
|
1144
1187
|
declare const ScSelectionList: ({ state, label, optionValues, onChange, onApprove, onReject, disabled, className, ...props }: IScSelectionListProps) => JSX.Element;
|
|
1145
1188
|
|
|
1189
|
+
interface IScTextAreaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
1190
|
+
state?: "default" | "active" | "error" | "disabled" | "filled";
|
|
1191
|
+
labelGroup?: "" | "label" | "text";
|
|
1192
|
+
label?: string;
|
|
1193
|
+
info?: string;
|
|
1194
|
+
placeholderFilled?: string;
|
|
1195
|
+
className?: string;
|
|
1196
|
+
}
|
|
1197
|
+
declare const ScTextArea: ({ state, labelGroup, label, info, placeholderFilled, className, style, ...props }: IScTextAreaProps) => JSX.Element;
|
|
1198
|
+
|
|
1199
|
+
interface IScSelectOption {
|
|
1200
|
+
id: string;
|
|
1201
|
+
label: string;
|
|
1202
|
+
description?: string;
|
|
1203
|
+
}
|
|
1204
|
+
interface IScSelectProps {
|
|
1205
|
+
value?: string;
|
|
1206
|
+
onChange?: (id: string) => void;
|
|
1207
|
+
options?: IScSelectOption[];
|
|
1208
|
+
placeholder?: string;
|
|
1209
|
+
label?: string;
|
|
1210
|
+
labelGroup?: "" | "label";
|
|
1211
|
+
disabled?: boolean;
|
|
1212
|
+
className?: string;
|
|
1213
|
+
}
|
|
1214
|
+
declare const ScSelect: (props: IScSelectProps) => JSX.Element;
|
|
1215
|
+
|
|
1216
|
+
interface IScFileFieldProps {
|
|
1217
|
+
onFileSelect?: (files: FileList | null) => void;
|
|
1218
|
+
accept?: string;
|
|
1219
|
+
multiple?: boolean;
|
|
1220
|
+
fileName?: string | null;
|
|
1221
|
+
uploading?: boolean;
|
|
1222
|
+
progress?: number;
|
|
1223
|
+
error?: string | null;
|
|
1224
|
+
onClear?: () => void;
|
|
1225
|
+
label?: string;
|
|
1226
|
+
className?: string;
|
|
1227
|
+
}
|
|
1228
|
+
declare const ScFileField: (props: IScFileFieldProps) => JSX.Element;
|
|
1229
|
+
|
|
1230
|
+
interface IScMediaApprovalProps {
|
|
1231
|
+
mediaUrls?: string[];
|
|
1232
|
+
mediaType?: "image" | "video" | "mixed";
|
|
1233
|
+
activeIndex?: number;
|
|
1234
|
+
onIndexChange?: (i: number) => void;
|
|
1235
|
+
onPreview?: (url: string) => void;
|
|
1236
|
+
loading?: boolean;
|
|
1237
|
+
feedbackLabel?: string;
|
|
1238
|
+
feedbackValue?: string;
|
|
1239
|
+
onFeedbackChange?: (v: string) => void;
|
|
1240
|
+
feedbackPlaceholder?: string;
|
|
1241
|
+
className?: string;
|
|
1242
|
+
}
|
|
1243
|
+
declare const ScMediaApproval: (props: IScMediaApprovalProps) => JSX.Element;
|
|
1244
|
+
|
|
1245
|
+
interface IScMediaSelectProps {
|
|
1246
|
+
items?: string[];
|
|
1247
|
+
selected?: string[];
|
|
1248
|
+
onToggle?: (url: string) => void;
|
|
1249
|
+
onSelectAll?: () => void;
|
|
1250
|
+
onDeselectAll?: () => void;
|
|
1251
|
+
min?: number;
|
|
1252
|
+
max?: number;
|
|
1253
|
+
mediaType?: "image" | "video" | "mixed";
|
|
1254
|
+
onPreview?: (url: string) => void;
|
|
1255
|
+
className?: string;
|
|
1256
|
+
}
|
|
1257
|
+
declare const ScMediaSelect: (props: IScMediaSelectProps) => JSX.Element;
|
|
1258
|
+
|
|
1259
|
+
interface IScTodoItem {
|
|
1260
|
+
id: string;
|
|
1261
|
+
content: string;
|
|
1262
|
+
status: "pending" | "completed";
|
|
1263
|
+
}
|
|
1264
|
+
interface IScTodoListProps {
|
|
1265
|
+
items?: IScTodoItem[];
|
|
1266
|
+
onToggle?: (id: string) => void;
|
|
1267
|
+
onEdit?: (id: string, content: string) => void;
|
|
1268
|
+
onDelete?: (id: string) => void;
|
|
1269
|
+
onAdd?: (content: string) => void;
|
|
1270
|
+
addPlaceholder?: string;
|
|
1271
|
+
className?: string;
|
|
1272
|
+
}
|
|
1273
|
+
declare const ScTodoList: ({ items, onToggle, onEdit, onDelete, onAdd, addPlaceholder, className, }: IScTodoListProps) => JSX.Element;
|
|
1274
|
+
|
|
1146
1275
|
interface IScRoleMobileProps {
|
|
1147
1276
|
/** Role variant */
|
|
1148
1277
|
role?: "admin" | "member";
|
|
@@ -1405,4 +1534,4 @@ interface IScPlanDetailsCardMobileProps extends React.HTMLAttributes<HTMLDivElem
|
|
|
1405
1534
|
}
|
|
1406
1535
|
declare const ScPlanDetailsCardMobile: ({ planName, planCredits, planPrice, badgeText, badgeSubText, currentPlanLabel, upgradeButtonText, isLoading, onUpgrade, className, ...props }: IScPlanDetailsCardMobileProps) => JSX.Element;
|
|
1407
1536
|
|
|
1408
|
-
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 IScBillingHistoryHeaderProps, type IScBillingHistoryTableListProps, type IScBillingLogsTableHeaderProps, type IScBillingLogsTableListProps, type IScBriefCardProps, type IScButtonProps, type IScCalendarDateCompsProps, type IScCalendarProps, type IScCatalogixInviteProps, type IScCatalogixSidebarProps, type IScCheckFieldProps, type IScCheckboxProps, type IScCreditsUsageCardMobileProps, type IScCreditsUsageCardProps, type IScCxoCopilotLogoProps, type IScFieldButtonProps, type IScGoogleSignInProps, type IScGuideProps, type IScHDividerProps, type IScHeaderProps, type IScImageFieldProps, type IScInChatListProps, type IScInChatMessageProps, type IScIntialProfileCoverProps, type IScLogoUnitProps, 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 IScSelectionListProps, type IScSelectionProps, type IScSettingsNavProps, type IScSettingsTabCompProps, type IScSideBarLogoUnitProps, type IScSidebarIconsProps, type IScSidebarMenuProps, type IScSidebarProfileProps, type IScSidebarProps, type IScSidebarSwitchMenuProps, type IScSliderProps, type IScStrLogoProps, type IScStreamoidMascotProps, type IScStreamoidWordmarkProps, type IScSubAgentProps, type IScTabCompProps, type IScTabFieldProps, type IScTabSwitcherProps, type IScTableHeaderProps, type IScTableListMobileProps, type IScTableListProps, type IScTextFieldProps, type IScThinkingStepIconProps, 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, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScBriefCard, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCatalogixSidebar, ScCheckField, ScCheckbox, ScCreditsUsageCard, ScCreditsUsageCardMobile, ScCxoCopilotLogo, ScDp, type ScDpProps, ScFieldButton, ScGoogleSignIn, ScGuide, ScHDivider, ScHeader, ScImageField, ScInChatList, ScInChatMessage, ScIntialProfileCover, ScLogoUnit, 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, ScSelection, ScSelectionList, ScSettingsNav, ScSettingsTabComp, ScSideBarLogoUnit, ScSidebar, ScSidebarIcons, ScSidebarMenu, ScSidebarProfile, ScSidebarSwitchMenu, ScSlider, ScStrLogo, ScStreamoidMascot, ScStreamoidWordmark, ScSubAgent, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTableListMobile, ScTextField, ScThinkingStepIcon, 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 };
|
|
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 };
|