@streamoid/ui 0.6.46 → 0.6.48
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/docs/AGENTS.md +3 -1
- package/dist/docs/ScErrorBoundary.md +160 -0
- package/dist/docs/components.json +32 -1
- package/dist/index.css +371 -301
- package/dist/index.d.mts +131 -3
- package/dist/index.d.ts +131 -3
- package/dist/index.js +1590 -1416
- package/dist/index.mjs +1505 -1331
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
import React__default, { CSSProperties, HTMLAttributes, ReactNode, RefObject } from 'react';
|
|
2
|
+
import React__default, { CSSProperties, HTMLAttributes, ReactNode, Component, ErrorInfo, RefObject } from 'react';
|
|
3
3
|
|
|
4
4
|
interface IScAccessProps {
|
|
5
5
|
component?: React.JSX.Element;
|
|
@@ -146,6 +146,46 @@ declare const ScAppSwitchRow: ({ item, }: {
|
|
|
146
146
|
* is shown as selected rather than missing. */
|
|
147
147
|
declare const ScAppSwitchPanel: ({ apps, systemItems, utilities, title, appsLabel, systemLabel, className, style, }: IScAppSwitchPanelProps) => JSX.Element;
|
|
148
148
|
|
|
149
|
+
/**
|
|
150
|
+
* The `/services` payload, turned into switch rows.
|
|
151
|
+
*
|
|
152
|
+
* Artifax and Photogenix each wrote this, independently, against the same
|
|
153
|
+
* backend — ~105 lines in one and ~70 in the other, down to the same
|
|
154
|
+
* `url.replace(/workspaceid/gi, id)`. The copies did not agree, and the
|
|
155
|
+
* disagreement has already shipped: a group's rows are SURFACES and which one
|
|
156
|
+
* sorts first is incidental, so preferring an item over the group's mapped
|
|
157
|
+
* home landed an Artifax hand-off on "Scout" instead of the product home.
|
|
158
|
+
*
|
|
159
|
+
* `ScAppSwitchPanel` already owns the order, the wordmarks and the taglines.
|
|
160
|
+
* This owns the step before it, so a product supplies the response and nothing
|
|
161
|
+
* else.
|
|
162
|
+
*
|
|
163
|
+
* WHAT STAYS WITH THE HOST: whether a link is followed in-app or opened in a
|
|
164
|
+
* new tab, and any cross-origin rewriting of a relative URL. Those depend on
|
|
165
|
+
* how the product is deployed, not on what the catalog says.
|
|
166
|
+
*/
|
|
167
|
+
/** Loosely typed on purpose: this is a backend response, and both observed
|
|
168
|
+
* shapes are handled below rather than asserted. */
|
|
169
|
+
interface StreamoidAppSwitchOptions {
|
|
170
|
+
/** Substituted for the literal `workspaceid` in any URL, case-insensitively. */
|
|
171
|
+
workspaceId?: string;
|
|
172
|
+
/** Matched case-insensitively against each group's key AND label, so
|
|
173
|
+
* "photogenix" marks a group keyed `Photogenix` or labelled
|
|
174
|
+
* "Photo Studio" when that alias is passed. */
|
|
175
|
+
currentProduct?: string | string[];
|
|
176
|
+
}
|
|
177
|
+
interface StreamoidAppSwitchGroup {
|
|
178
|
+
key: string;
|
|
179
|
+
/** The backend label. `ScAppSwitchPanel` matches this to a product wordmark,
|
|
180
|
+
* so it is passed through as-is rather than normalised. */
|
|
181
|
+
name: string;
|
|
182
|
+
description?: string;
|
|
183
|
+
/** Empty only for the current product, which does not navigate. */
|
|
184
|
+
link: string;
|
|
185
|
+
current: boolean;
|
|
186
|
+
}
|
|
187
|
+
declare function streamoidAppSwitchGroups(raw: unknown, { workspaceId, currentProduct }?: StreamoidAppSwitchOptions): StreamoidAppSwitchGroup[];
|
|
188
|
+
|
|
149
189
|
/** Bounds for a resizable panel, in px. */
|
|
150
190
|
interface PanelWidthBounds {
|
|
151
191
|
min: number;
|
|
@@ -384,8 +424,96 @@ interface CreditWarningBannerProps {
|
|
|
384
424
|
onBuyCredits: () => void;
|
|
385
425
|
expanded?: boolean;
|
|
386
426
|
onCollapsedClick?: () => void;
|
|
427
|
+
/** Called when the banner is dismissed. The banner hides itself either way —
|
|
428
|
+
* this is for a host that wants the dismissal to outlive a remount, e.g. by
|
|
429
|
+
* persisting it and then withholding `creditWarning` on the next render.
|
|
430
|
+
* Photogenix hand-rolled this whole banner to get a dismiss it already
|
|
431
|
+
* had; what it did not have was a way to know. */
|
|
432
|
+
onDismiss?: () => void;
|
|
433
|
+
}
|
|
434
|
+
declare function CreditWarningBanner({ availableCredits, remainingPct, level, onBuyCredits, onDismiss, expanded, onCollapsedClick, }: CreditWarningBannerProps): React$1.JSX.Element | null;
|
|
435
|
+
|
|
436
|
+
/** A failure the request wrapper has annotated. */
|
|
437
|
+
interface IScAnnotatedError {
|
|
438
|
+
/** `ERR-XXXXXXXXXXXX`, the first twelve characters of the server's trace id. */
|
|
439
|
+
errorRef?: string | null;
|
|
440
|
+
status?: number | null;
|
|
441
|
+
message?: string;
|
|
442
|
+
}
|
|
443
|
+
/** Anything shaped enough like PostHog to report through. */
|
|
444
|
+
interface IScErrorReporterClient {
|
|
445
|
+
capture?: (event: string, properties?: Record<string, unknown>) => void;
|
|
446
|
+
}
|
|
447
|
+
interface IScErrorReport {
|
|
448
|
+
/** The reference shown to the user, when the failure carried one. */
|
|
449
|
+
errorRef: string | null;
|
|
450
|
+
/** What the user typed, when they were asked. */
|
|
451
|
+
note?: string;
|
|
452
|
+
message: string;
|
|
453
|
+
componentStack?: string;
|
|
454
|
+
route: string;
|
|
455
|
+
service?: string;
|
|
456
|
+
}
|
|
457
|
+
type ScErrorReporter = (report: IScErrorReport) => void;
|
|
458
|
+
/** The server's reference for a failure, or null when it has none.
|
|
459
|
+
*
|
|
460
|
+
* Null is a real answer and not a gap to fill: a 502 from the edge never
|
|
461
|
+
* reached the application, so there is no trace to point at. Inventing a
|
|
462
|
+
* reference sends whoever reads it looking for something that does not exist.
|
|
463
|
+
*/
|
|
464
|
+
declare const scGetErrorRef: (error: unknown) => string | null;
|
|
465
|
+
/** Report through a PostHog instance the host already created.
|
|
466
|
+
*
|
|
467
|
+
* `$exception` is PostHog's own exception event, so these land in its error
|
|
468
|
+
* tracking rather than in a bespoke event nobody has a view for.
|
|
469
|
+
*/
|
|
470
|
+
declare const scCreatePostHogReporter: (client: IScErrorReporterClient | null | undefined, options?: {
|
|
471
|
+
service?: string;
|
|
472
|
+
}) => ScErrorReporter;
|
|
473
|
+
|
|
474
|
+
interface IScErrorBoundaryProps {
|
|
475
|
+
children: ReactNode;
|
|
476
|
+
/** Where this is mounted, recorded on the report. Defaults to the URL path. */
|
|
477
|
+
route?: string;
|
|
478
|
+
/** The service id from deployment/service.yaml, so a report routes itself. */
|
|
479
|
+
service?: string;
|
|
480
|
+
/** Called once per caught error, before anything is rendered. */
|
|
481
|
+
reporter?: ScErrorReporter;
|
|
482
|
+
/** Replaces the default fallback entirely. */
|
|
483
|
+
fallback?: (state: {
|
|
484
|
+
error: unknown;
|
|
485
|
+
errorRef: string | null;
|
|
486
|
+
report: () => void;
|
|
487
|
+
}) => ReactNode;
|
|
488
|
+
}
|
|
489
|
+
interface IScErrorBoundaryState {
|
|
490
|
+
error: unknown;
|
|
491
|
+
errorRef: string | null;
|
|
492
|
+
componentStack?: string;
|
|
493
|
+
reported: boolean;
|
|
494
|
+
}
|
|
495
|
+
/**
|
|
496
|
+
* Catches a render error, shows the user something better than a white screen,
|
|
497
|
+
* and gives them a way to say what happened.
|
|
498
|
+
*
|
|
499
|
+
* A white screen produces no request, so it is invisible to every server-side
|
|
500
|
+
* signal: no span, no access-log line, no status code. The only place it can be
|
|
501
|
+
* observed is here.
|
|
502
|
+
*
|
|
503
|
+
* The reference shown is the one the server minted for the failing request,
|
|
504
|
+
* derived from its trace id — so the string a user reads out is the same string
|
|
505
|
+
* that finds the trace. Where the failure never reached a server, there is no
|
|
506
|
+
* reference and none is invented.
|
|
507
|
+
*/
|
|
508
|
+
declare class ScErrorBoundary extends Component<IScErrorBoundaryProps, IScErrorBoundaryState> {
|
|
509
|
+
state: IScErrorBoundaryState;
|
|
510
|
+
static getDerivedStateFromError(error: unknown): Partial<IScErrorBoundaryState>;
|
|
511
|
+
componentDidCatch(error: unknown, info: ErrorInfo): void;
|
|
512
|
+
private buildReport;
|
|
513
|
+
private send;
|
|
514
|
+
private handleReport;
|
|
515
|
+
render(): ReactNode;
|
|
387
516
|
}
|
|
388
|
-
declare function CreditWarningBanner({ availableCredits, remainingPct, level, onBuyCredits, expanded, onCollapsedClick, }: CreditWarningBannerProps): React$1.JSX.Element | null;
|
|
389
517
|
|
|
390
518
|
interface ScDpProps {
|
|
391
519
|
/** "initial" shows initials text, "image" shows an image. */
|
|
@@ -2443,4 +2571,4 @@ interface IScProfilePopupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
2443
2571
|
*/
|
|
2444
2572
|
declare const ScProfilePopup: React$1.ForwardRefExoticComponent<IScProfilePopupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2445
2573
|
|
|
2446
|
-
export { type AppSidebarAppIdentity, type AppSidebarAssistantCta, type AppSidebarCreditWarning, type AppSidebarHeader, type AppSidebarIconContext, type AppSidebarIconMap, type AppSidebarIconRenderer, type AppSidebarMenuItem, type AppSidebarProfile, type AppSidebarSection, type AppcardProduct, type ArtifaxMenuItem, type ArtifaxSection, type ArtifaxSidebarAppIdentity, type ArtifaxSidebarAssistantCta, type ArtifaxSidebarCreditWarning, type ArtifaxSidebarIconContext, type ArtifaxSidebarIconMap, type ArtifaxSidebarIconRenderer, type ArtifaxSidebarProfile, type AssistantCta, 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 IScAppSidebarProps, type IScAppSwitchPanelProps, type IScAppcardLogosProps, type IScArtifaxInviteProps, type IScArtifaxSidebarProps, type IScAskAgentButtonProps, 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 IScCxoWordmarkProps, 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 IScPanelResizeHandleProps, type IScPendingActionProps, type IScPhtogenixInviteProps, type IScPlanCardProps, type IScPlanComparisonProps, type IScPlanDetailsCardMobileProps, type IScPlanDetailsCardProps, type IScPopUpMenuProps, type IScPopoverArrowProps, type IScProfileImageUpdateProps, type IScProfileOptionsProps, type IScProfilePopupProps, 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 IScSidebarPopoverProps, 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, PANEL_RESIZE_STEP_PX, type PanelResizeEdge, type PanelResizeGesture, type PanelWidthBounds, type PlanComparisonRow, type PlanComparisonSection, type PlanFeatureSection, ProductCollapsedMark, ProductWordmark, SIDEBAR_RESIZE_THRESHOLD_PX, STREAMOID_CHANGELOG_URL, STREAMOID_CHANGELOG_URLS, STREAMOID_STATUS_PAGE_URL, ScAccess, ScAppCard, ScAppCardForCopilot, ScAppCardV3, ScAppField, ScAppListingCard, ScAppSidebar, type ScAppSwitchItem, ScAppSwitchPanel, ScAppSwitchRow, type ScAppSwitchSystemItem, type ScAppSwitchUtilities, ScAppcardLogos, ScArtifaxInvite, ScArtifaxSidebar, ScAskAgentButton, ScAskAgentSlot, ScBadges, ScBeacon, type ScBeaconTone, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScBriefCard, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCatalogixSidebar, ScCatalogixStoreHeader, ScCatalogixStoreTableList, ScCheckField, ScCheckbox, ScCounter, ScCreditsUsageCard, ScCreditsUsageCardMobile, ScCxoCopilotLogo, ScCxoWordmark, 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, ScPanelResizeHandle, ScPendingAction, ScPhtogenixInvite, ScPlanCard, ScPlanComparison, ScPlanDetailsCard, ScPlanDetailsCardMobile, ScPopUpMenu, ScPopoverArrow, ScProfile, ScProfileImageUpdate, ScProfileOptions, ScProfilePopup, type ScProfilePopupThemeMode, ScProfileSettingsComp, ScProfileV2Mobile, ScProgressBar, ScQuickPrompt, ScRadio, ScReferralCardMobile, ScReferralTableHeader, ScReferralTableList, ScRole, ScRoleMobile, ScSelect, ScSelection, ScSelectionList, ScSelectionPill, ScSelectionPillGroup, ScSettingsNav, ScSettingsTabComp, type ScShellThemeMode, ScSideBarLogoUnit, ScSidebar, ScSidebarAppIdentity, type ScSidebarAppIdentityProps, ScSidebarIcons, ScSidebarMenu, ScSidebarPopover, ScSidebarProfile, ScSidebarResizeHandle, type ScSidebarResizeHandleProps, ScSidebarSearchTrigger, type ScSidebarSearchTriggerProps, ScSidebarSwitchMenu, ScSidebarWorkspaceTrigger, type ScSidebarWorkspaceTriggerProps, ScSlider, ScStoreCard, ScStrLogo, ScStreamoidMascot, ScStreamoidWordmark, ScSubAgent, type ScTab, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTableListMobile, ScTabs, ScTaxonomyPill, ScTextArea, ScTextField, ScThinkingStepIcon, ScTodoList, ScToggleSwitch, ScVDivider, ScValueMappingL1, ScVersion, ScWorkspaceAccountMenu, type ScWorkspaceAccountMenuProps, ScWorkspaceCard, ScWorkspaceSettingsMobile, ScWorkspaceSwitchCard, type ScWorkspaceSwitchCardProps, ScWorkspaceSwitchMobile, ScWorkspaceSwitchMobileV2, type SelectionListState, type SidebarAppIdentityConfig, type SidebarConfig, type SidebarIconContext, type SidebarIconMap, type SidebarIconRenderer, type SidebarMenuItemConfig, type SidebarProduct, type SidebarProfileConfig, type SidebarResizeGestureResult, type SidebarResizeGestureState, type SidebarSectionConfig, type StreamoidAnchorRect, type StreamoidAnchoredPopover, type StreamoidAnchoredPopoverArrow, type StreamoidAnchoredPopoverGeometry, type StreamoidAnchoredPopoverPosition, type StreamoidAnchoredPopoverPositionOptions, type StreamoidAppSwitchProduct, type StreamoidPanelWidthOptions, type StreamoidPanelWidthState, StreamoidSidebar, type StreamoidSidebarPopoverPlacement, type StreamoidSidebarPopoverPosition, type StreamoidSidebarPopoverPositionOptions, type StreamoidSidebarPreferenceOptions, type StreamoidSidebarPreferenceState, type StreamoidSidebarProps, type StreamoidThemePreferenceOptions, type StreamoidThemePreferenceState, StreamoidWorkspaceSwitcher, type StreamoidWorkspaceSwitcherProps, UsageHistoryMobile, type WorkspaceSwitcherConfig, type WorkspaceSwitcherItem, advanceSidebarResizeGesture, clampPanelWidth, createStreamoidAppSwitchUtilities, formatStreamoidAppVersion, formatSubAgentLabel, hasCollapsedMark, resolveAnchoredPopoverArrow, resolveAnchoredPopoverPosition, resolvePanelResize, resolvePanelResizeKey, scAppSwitchOrder, streamoidAppSwitchTagline, streamoidChangelogUrl, useStreamoidAnchoredPopover, useStreamoidAnchoredPopoverPosition, useStreamoidPanelWidth, useStreamoidSidebarPopoverPosition, useStreamoidSidebarPreference, useStreamoidThemePreference };
|
|
2574
|
+
export { type AppSidebarAppIdentity, type AppSidebarAssistantCta, type AppSidebarCreditWarning, type AppSidebarHeader, type AppSidebarIconContext, type AppSidebarIconMap, type AppSidebarIconRenderer, type AppSidebarMenuItem, type AppSidebarProfile, type AppSidebarSection, type AppcardProduct, type ArtifaxMenuItem, type ArtifaxSection, type ArtifaxSidebarAppIdentity, type ArtifaxSidebarAssistantCta, type ArtifaxSidebarCreditWarning, type ArtifaxSidebarIconContext, type ArtifaxSidebarIconMap, type ArtifaxSidebarIconRenderer, type ArtifaxSidebarProfile, type AssistantCta, type CatalogixNavItem, type CatalogixSidebarCreditWarning, type CatalogixSidebarIconContext, type CatalogixSidebarIconMap, type CatalogixSidebarIconRenderer, type CatalogixSidebarProfile, type CatalogixSwitchApp, CreditWarningBanner, type CreditWarningBannerProps, type DescriptionVisibility, type IInvoiceHistoryMobileProps, type IScAccessProps, type IScAnnotatedError, type IScAppCardForCopilotProps, type IScAppCardProps, type IScAppCardV3Props, type IScAppFieldProps, type IScAppListingCardProps, type IScAppSidebarProps, type IScAppSwitchPanelProps, type IScAppcardLogosProps, type IScArtifaxInviteProps, type IScArtifaxSidebarProps, type IScAskAgentButtonProps, 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 IScCxoWordmarkProps, type IScDefaultCardProps, type IScDrawerProps, type IScErrorBoundaryProps, type IScErrorReport, type IScErrorReporterClient, 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 IScPanelResizeHandleProps, type IScPendingActionProps, type IScPhtogenixInviteProps, type IScPlanCardProps, type IScPlanComparisonProps, type IScPlanDetailsCardMobileProps, type IScPlanDetailsCardProps, type IScPopUpMenuProps, type IScPopoverArrowProps, type IScProfileImageUpdateProps, type IScProfileOptionsProps, type IScProfilePopupProps, 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 IScSidebarPopoverProps, 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, PANEL_RESIZE_STEP_PX, type PanelResizeEdge, type PanelResizeGesture, type PanelWidthBounds, type PlanComparisonRow, type PlanComparisonSection, type PlanFeatureSection, ProductCollapsedMark, ProductWordmark, SIDEBAR_RESIZE_THRESHOLD_PX, STREAMOID_CHANGELOG_URL, STREAMOID_CHANGELOG_URLS, STREAMOID_STATUS_PAGE_URL, ScAccess, ScAppCard, ScAppCardForCopilot, ScAppCardV3, ScAppField, ScAppListingCard, ScAppSidebar, type ScAppSwitchItem, ScAppSwitchPanel, ScAppSwitchRow, type ScAppSwitchSystemItem, type ScAppSwitchUtilities, ScAppcardLogos, ScArtifaxInvite, ScArtifaxSidebar, ScAskAgentButton, ScAskAgentSlot, ScBadges, ScBeacon, type ScBeaconTone, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScBriefCard, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCatalogixSidebar, ScCatalogixStoreHeader, ScCatalogixStoreTableList, ScCheckField, ScCheckbox, ScCounter, ScCreditsUsageCard, ScCreditsUsageCardMobile, ScCxoCopilotLogo, ScCxoWordmark, ScDefaultCard, ScDp, type ScDpProps, ScDrawer, ScErrorBoundary, type ScErrorReporter, ScFieldButton, ScFileField, ScGoogleSignIn, ScGuide, ScHDivider, ScHeader, ScImageField, ScInChatList, ScInChatMessage, ScInfoPopup, ScIntialProfileCover, ScLogoUnit, ScMappingCard, ScMediaApproval, ScMediaSelect, ScMenuOptions, ScMobileBottomAction, ScMobileTopNav, ScModal, ScOnlyField, ScOnlyIcon, ScPagination, ScPairtext, ScPanelResizeHandle, ScPendingAction, ScPhtogenixInvite, ScPlanCard, ScPlanComparison, ScPlanDetailsCard, ScPlanDetailsCardMobile, ScPopUpMenu, ScPopoverArrow, ScProfile, ScProfileImageUpdate, ScProfileOptions, ScProfilePopup, type ScProfilePopupThemeMode, ScProfileSettingsComp, ScProfileV2Mobile, ScProgressBar, ScQuickPrompt, ScRadio, ScReferralCardMobile, ScReferralTableHeader, ScReferralTableList, ScRole, ScRoleMobile, ScSelect, ScSelection, ScSelectionList, ScSelectionPill, ScSelectionPillGroup, ScSettingsNav, ScSettingsTabComp, type ScShellThemeMode, ScSideBarLogoUnit, ScSidebar, ScSidebarAppIdentity, type ScSidebarAppIdentityProps, ScSidebarIcons, ScSidebarMenu, ScSidebarPopover, ScSidebarProfile, ScSidebarResizeHandle, type ScSidebarResizeHandleProps, ScSidebarSearchTrigger, type ScSidebarSearchTriggerProps, ScSidebarSwitchMenu, ScSidebarWorkspaceTrigger, type ScSidebarWorkspaceTriggerProps, ScSlider, ScStoreCard, ScStrLogo, ScStreamoidMascot, ScStreamoidWordmark, ScSubAgent, type ScTab, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTableListMobile, ScTabs, ScTaxonomyPill, ScTextArea, ScTextField, ScThinkingStepIcon, ScTodoList, ScToggleSwitch, ScVDivider, ScValueMappingL1, ScVersion, ScWorkspaceAccountMenu, type ScWorkspaceAccountMenuProps, ScWorkspaceCard, ScWorkspaceSettingsMobile, ScWorkspaceSwitchCard, type ScWorkspaceSwitchCardProps, ScWorkspaceSwitchMobile, ScWorkspaceSwitchMobileV2, type SelectionListState, type SidebarAppIdentityConfig, type SidebarConfig, type SidebarIconContext, type SidebarIconMap, type SidebarIconRenderer, type SidebarMenuItemConfig, type SidebarProduct, type SidebarProfileConfig, type SidebarResizeGestureResult, type SidebarResizeGestureState, type SidebarSectionConfig, type StreamoidAnchorRect, type StreamoidAnchoredPopover, type StreamoidAnchoredPopoverArrow, type StreamoidAnchoredPopoverGeometry, type StreamoidAnchoredPopoverPosition, type StreamoidAnchoredPopoverPositionOptions, type StreamoidAppSwitchGroup, type StreamoidAppSwitchOptions, type StreamoidAppSwitchProduct, type StreamoidPanelWidthOptions, type StreamoidPanelWidthState, StreamoidSidebar, type StreamoidSidebarPopoverPlacement, type StreamoidSidebarPopoverPosition, type StreamoidSidebarPopoverPositionOptions, type StreamoidSidebarPreferenceOptions, type StreamoidSidebarPreferenceState, type StreamoidSidebarProps, type StreamoidThemePreferenceOptions, type StreamoidThemePreferenceState, StreamoidWorkspaceSwitcher, type StreamoidWorkspaceSwitcherProps, UsageHistoryMobile, type WorkspaceSwitcherConfig, type WorkspaceSwitcherItem, advanceSidebarResizeGesture, clampPanelWidth, createStreamoidAppSwitchUtilities, formatStreamoidAppVersion, formatSubAgentLabel, hasCollapsedMark, resolveAnchoredPopoverArrow, resolveAnchoredPopoverPosition, resolvePanelResize, resolvePanelResizeKey, scAppSwitchOrder, scCreatePostHogReporter, scGetErrorRef, streamoidAppSwitchGroups, streamoidAppSwitchTagline, streamoidChangelogUrl, useStreamoidAnchoredPopover, useStreamoidAnchoredPopoverPosition, useStreamoidPanelWidth, useStreamoidSidebarPopoverPosition, useStreamoidSidebarPreference, useStreamoidThemePreference };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
import React__default, { CSSProperties, HTMLAttributes, ReactNode, RefObject } from 'react';
|
|
2
|
+
import React__default, { CSSProperties, HTMLAttributes, ReactNode, Component, ErrorInfo, RefObject } from 'react';
|
|
3
3
|
|
|
4
4
|
interface IScAccessProps {
|
|
5
5
|
component?: React.JSX.Element;
|
|
@@ -146,6 +146,46 @@ declare const ScAppSwitchRow: ({ item, }: {
|
|
|
146
146
|
* is shown as selected rather than missing. */
|
|
147
147
|
declare const ScAppSwitchPanel: ({ apps, systemItems, utilities, title, appsLabel, systemLabel, className, style, }: IScAppSwitchPanelProps) => JSX.Element;
|
|
148
148
|
|
|
149
|
+
/**
|
|
150
|
+
* The `/services` payload, turned into switch rows.
|
|
151
|
+
*
|
|
152
|
+
* Artifax and Photogenix each wrote this, independently, against the same
|
|
153
|
+
* backend — ~105 lines in one and ~70 in the other, down to the same
|
|
154
|
+
* `url.replace(/workspaceid/gi, id)`. The copies did not agree, and the
|
|
155
|
+
* disagreement has already shipped: a group's rows are SURFACES and which one
|
|
156
|
+
* sorts first is incidental, so preferring an item over the group's mapped
|
|
157
|
+
* home landed an Artifax hand-off on "Scout" instead of the product home.
|
|
158
|
+
*
|
|
159
|
+
* `ScAppSwitchPanel` already owns the order, the wordmarks and the taglines.
|
|
160
|
+
* This owns the step before it, so a product supplies the response and nothing
|
|
161
|
+
* else.
|
|
162
|
+
*
|
|
163
|
+
* WHAT STAYS WITH THE HOST: whether a link is followed in-app or opened in a
|
|
164
|
+
* new tab, and any cross-origin rewriting of a relative URL. Those depend on
|
|
165
|
+
* how the product is deployed, not on what the catalog says.
|
|
166
|
+
*/
|
|
167
|
+
/** Loosely typed on purpose: this is a backend response, and both observed
|
|
168
|
+
* shapes are handled below rather than asserted. */
|
|
169
|
+
interface StreamoidAppSwitchOptions {
|
|
170
|
+
/** Substituted for the literal `workspaceid` in any URL, case-insensitively. */
|
|
171
|
+
workspaceId?: string;
|
|
172
|
+
/** Matched case-insensitively against each group's key AND label, so
|
|
173
|
+
* "photogenix" marks a group keyed `Photogenix` or labelled
|
|
174
|
+
* "Photo Studio" when that alias is passed. */
|
|
175
|
+
currentProduct?: string | string[];
|
|
176
|
+
}
|
|
177
|
+
interface StreamoidAppSwitchGroup {
|
|
178
|
+
key: string;
|
|
179
|
+
/** The backend label. `ScAppSwitchPanel` matches this to a product wordmark,
|
|
180
|
+
* so it is passed through as-is rather than normalised. */
|
|
181
|
+
name: string;
|
|
182
|
+
description?: string;
|
|
183
|
+
/** Empty only for the current product, which does not navigate. */
|
|
184
|
+
link: string;
|
|
185
|
+
current: boolean;
|
|
186
|
+
}
|
|
187
|
+
declare function streamoidAppSwitchGroups(raw: unknown, { workspaceId, currentProduct }?: StreamoidAppSwitchOptions): StreamoidAppSwitchGroup[];
|
|
188
|
+
|
|
149
189
|
/** Bounds for a resizable panel, in px. */
|
|
150
190
|
interface PanelWidthBounds {
|
|
151
191
|
min: number;
|
|
@@ -384,8 +424,96 @@ interface CreditWarningBannerProps {
|
|
|
384
424
|
onBuyCredits: () => void;
|
|
385
425
|
expanded?: boolean;
|
|
386
426
|
onCollapsedClick?: () => void;
|
|
427
|
+
/** Called when the banner is dismissed. The banner hides itself either way —
|
|
428
|
+
* this is for a host that wants the dismissal to outlive a remount, e.g. by
|
|
429
|
+
* persisting it and then withholding `creditWarning` on the next render.
|
|
430
|
+
* Photogenix hand-rolled this whole banner to get a dismiss it already
|
|
431
|
+
* had; what it did not have was a way to know. */
|
|
432
|
+
onDismiss?: () => void;
|
|
433
|
+
}
|
|
434
|
+
declare function CreditWarningBanner({ availableCredits, remainingPct, level, onBuyCredits, onDismiss, expanded, onCollapsedClick, }: CreditWarningBannerProps): React$1.JSX.Element | null;
|
|
435
|
+
|
|
436
|
+
/** A failure the request wrapper has annotated. */
|
|
437
|
+
interface IScAnnotatedError {
|
|
438
|
+
/** `ERR-XXXXXXXXXXXX`, the first twelve characters of the server's trace id. */
|
|
439
|
+
errorRef?: string | null;
|
|
440
|
+
status?: number | null;
|
|
441
|
+
message?: string;
|
|
442
|
+
}
|
|
443
|
+
/** Anything shaped enough like PostHog to report through. */
|
|
444
|
+
interface IScErrorReporterClient {
|
|
445
|
+
capture?: (event: string, properties?: Record<string, unknown>) => void;
|
|
446
|
+
}
|
|
447
|
+
interface IScErrorReport {
|
|
448
|
+
/** The reference shown to the user, when the failure carried one. */
|
|
449
|
+
errorRef: string | null;
|
|
450
|
+
/** What the user typed, when they were asked. */
|
|
451
|
+
note?: string;
|
|
452
|
+
message: string;
|
|
453
|
+
componentStack?: string;
|
|
454
|
+
route: string;
|
|
455
|
+
service?: string;
|
|
456
|
+
}
|
|
457
|
+
type ScErrorReporter = (report: IScErrorReport) => void;
|
|
458
|
+
/** The server's reference for a failure, or null when it has none.
|
|
459
|
+
*
|
|
460
|
+
* Null is a real answer and not a gap to fill: a 502 from the edge never
|
|
461
|
+
* reached the application, so there is no trace to point at. Inventing a
|
|
462
|
+
* reference sends whoever reads it looking for something that does not exist.
|
|
463
|
+
*/
|
|
464
|
+
declare const scGetErrorRef: (error: unknown) => string | null;
|
|
465
|
+
/** Report through a PostHog instance the host already created.
|
|
466
|
+
*
|
|
467
|
+
* `$exception` is PostHog's own exception event, so these land in its error
|
|
468
|
+
* tracking rather than in a bespoke event nobody has a view for.
|
|
469
|
+
*/
|
|
470
|
+
declare const scCreatePostHogReporter: (client: IScErrorReporterClient | null | undefined, options?: {
|
|
471
|
+
service?: string;
|
|
472
|
+
}) => ScErrorReporter;
|
|
473
|
+
|
|
474
|
+
interface IScErrorBoundaryProps {
|
|
475
|
+
children: ReactNode;
|
|
476
|
+
/** Where this is mounted, recorded on the report. Defaults to the URL path. */
|
|
477
|
+
route?: string;
|
|
478
|
+
/** The service id from deployment/service.yaml, so a report routes itself. */
|
|
479
|
+
service?: string;
|
|
480
|
+
/** Called once per caught error, before anything is rendered. */
|
|
481
|
+
reporter?: ScErrorReporter;
|
|
482
|
+
/** Replaces the default fallback entirely. */
|
|
483
|
+
fallback?: (state: {
|
|
484
|
+
error: unknown;
|
|
485
|
+
errorRef: string | null;
|
|
486
|
+
report: () => void;
|
|
487
|
+
}) => ReactNode;
|
|
488
|
+
}
|
|
489
|
+
interface IScErrorBoundaryState {
|
|
490
|
+
error: unknown;
|
|
491
|
+
errorRef: string | null;
|
|
492
|
+
componentStack?: string;
|
|
493
|
+
reported: boolean;
|
|
494
|
+
}
|
|
495
|
+
/**
|
|
496
|
+
* Catches a render error, shows the user something better than a white screen,
|
|
497
|
+
* and gives them a way to say what happened.
|
|
498
|
+
*
|
|
499
|
+
* A white screen produces no request, so it is invisible to every server-side
|
|
500
|
+
* signal: no span, no access-log line, no status code. The only place it can be
|
|
501
|
+
* observed is here.
|
|
502
|
+
*
|
|
503
|
+
* The reference shown is the one the server minted for the failing request,
|
|
504
|
+
* derived from its trace id — so the string a user reads out is the same string
|
|
505
|
+
* that finds the trace. Where the failure never reached a server, there is no
|
|
506
|
+
* reference and none is invented.
|
|
507
|
+
*/
|
|
508
|
+
declare class ScErrorBoundary extends Component<IScErrorBoundaryProps, IScErrorBoundaryState> {
|
|
509
|
+
state: IScErrorBoundaryState;
|
|
510
|
+
static getDerivedStateFromError(error: unknown): Partial<IScErrorBoundaryState>;
|
|
511
|
+
componentDidCatch(error: unknown, info: ErrorInfo): void;
|
|
512
|
+
private buildReport;
|
|
513
|
+
private send;
|
|
514
|
+
private handleReport;
|
|
515
|
+
render(): ReactNode;
|
|
387
516
|
}
|
|
388
|
-
declare function CreditWarningBanner({ availableCredits, remainingPct, level, onBuyCredits, expanded, onCollapsedClick, }: CreditWarningBannerProps): React$1.JSX.Element | null;
|
|
389
517
|
|
|
390
518
|
interface ScDpProps {
|
|
391
519
|
/** "initial" shows initials text, "image" shows an image. */
|
|
@@ -2443,4 +2571,4 @@ interface IScProfilePopupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
2443
2571
|
*/
|
|
2444
2572
|
declare const ScProfilePopup: React$1.ForwardRefExoticComponent<IScProfilePopupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2445
2573
|
|
|
2446
|
-
export { type AppSidebarAppIdentity, type AppSidebarAssistantCta, type AppSidebarCreditWarning, type AppSidebarHeader, type AppSidebarIconContext, type AppSidebarIconMap, type AppSidebarIconRenderer, type AppSidebarMenuItem, type AppSidebarProfile, type AppSidebarSection, type AppcardProduct, type ArtifaxMenuItem, type ArtifaxSection, type ArtifaxSidebarAppIdentity, type ArtifaxSidebarAssistantCta, type ArtifaxSidebarCreditWarning, type ArtifaxSidebarIconContext, type ArtifaxSidebarIconMap, type ArtifaxSidebarIconRenderer, type ArtifaxSidebarProfile, type AssistantCta, 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 IScAppSidebarProps, type IScAppSwitchPanelProps, type IScAppcardLogosProps, type IScArtifaxInviteProps, type IScArtifaxSidebarProps, type IScAskAgentButtonProps, 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 IScCxoWordmarkProps, 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 IScPanelResizeHandleProps, type IScPendingActionProps, type IScPhtogenixInviteProps, type IScPlanCardProps, type IScPlanComparisonProps, type IScPlanDetailsCardMobileProps, type IScPlanDetailsCardProps, type IScPopUpMenuProps, type IScPopoverArrowProps, type IScProfileImageUpdateProps, type IScProfileOptionsProps, type IScProfilePopupProps, 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 IScSidebarPopoverProps, 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, PANEL_RESIZE_STEP_PX, type PanelResizeEdge, type PanelResizeGesture, type PanelWidthBounds, type PlanComparisonRow, type PlanComparisonSection, type PlanFeatureSection, ProductCollapsedMark, ProductWordmark, SIDEBAR_RESIZE_THRESHOLD_PX, STREAMOID_CHANGELOG_URL, STREAMOID_CHANGELOG_URLS, STREAMOID_STATUS_PAGE_URL, ScAccess, ScAppCard, ScAppCardForCopilot, ScAppCardV3, ScAppField, ScAppListingCard, ScAppSidebar, type ScAppSwitchItem, ScAppSwitchPanel, ScAppSwitchRow, type ScAppSwitchSystemItem, type ScAppSwitchUtilities, ScAppcardLogos, ScArtifaxInvite, ScArtifaxSidebar, ScAskAgentButton, ScAskAgentSlot, ScBadges, ScBeacon, type ScBeaconTone, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScBriefCard, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCatalogixSidebar, ScCatalogixStoreHeader, ScCatalogixStoreTableList, ScCheckField, ScCheckbox, ScCounter, ScCreditsUsageCard, ScCreditsUsageCardMobile, ScCxoCopilotLogo, ScCxoWordmark, 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, ScPanelResizeHandle, ScPendingAction, ScPhtogenixInvite, ScPlanCard, ScPlanComparison, ScPlanDetailsCard, ScPlanDetailsCardMobile, ScPopUpMenu, ScPopoverArrow, ScProfile, ScProfileImageUpdate, ScProfileOptions, ScProfilePopup, type ScProfilePopupThemeMode, ScProfileSettingsComp, ScProfileV2Mobile, ScProgressBar, ScQuickPrompt, ScRadio, ScReferralCardMobile, ScReferralTableHeader, ScReferralTableList, ScRole, ScRoleMobile, ScSelect, ScSelection, ScSelectionList, ScSelectionPill, ScSelectionPillGroup, ScSettingsNav, ScSettingsTabComp, type ScShellThemeMode, ScSideBarLogoUnit, ScSidebar, ScSidebarAppIdentity, type ScSidebarAppIdentityProps, ScSidebarIcons, ScSidebarMenu, ScSidebarPopover, ScSidebarProfile, ScSidebarResizeHandle, type ScSidebarResizeHandleProps, ScSidebarSearchTrigger, type ScSidebarSearchTriggerProps, ScSidebarSwitchMenu, ScSidebarWorkspaceTrigger, type ScSidebarWorkspaceTriggerProps, ScSlider, ScStoreCard, ScStrLogo, ScStreamoidMascot, ScStreamoidWordmark, ScSubAgent, type ScTab, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTableListMobile, ScTabs, ScTaxonomyPill, ScTextArea, ScTextField, ScThinkingStepIcon, ScTodoList, ScToggleSwitch, ScVDivider, ScValueMappingL1, ScVersion, ScWorkspaceAccountMenu, type ScWorkspaceAccountMenuProps, ScWorkspaceCard, ScWorkspaceSettingsMobile, ScWorkspaceSwitchCard, type ScWorkspaceSwitchCardProps, ScWorkspaceSwitchMobile, ScWorkspaceSwitchMobileV2, type SelectionListState, type SidebarAppIdentityConfig, type SidebarConfig, type SidebarIconContext, type SidebarIconMap, type SidebarIconRenderer, type SidebarMenuItemConfig, type SidebarProduct, type SidebarProfileConfig, type SidebarResizeGestureResult, type SidebarResizeGestureState, type SidebarSectionConfig, type StreamoidAnchorRect, type StreamoidAnchoredPopover, type StreamoidAnchoredPopoverArrow, type StreamoidAnchoredPopoverGeometry, type StreamoidAnchoredPopoverPosition, type StreamoidAnchoredPopoverPositionOptions, type StreamoidAppSwitchProduct, type StreamoidPanelWidthOptions, type StreamoidPanelWidthState, StreamoidSidebar, type StreamoidSidebarPopoverPlacement, type StreamoidSidebarPopoverPosition, type StreamoidSidebarPopoverPositionOptions, type StreamoidSidebarPreferenceOptions, type StreamoidSidebarPreferenceState, type StreamoidSidebarProps, type StreamoidThemePreferenceOptions, type StreamoidThemePreferenceState, StreamoidWorkspaceSwitcher, type StreamoidWorkspaceSwitcherProps, UsageHistoryMobile, type WorkspaceSwitcherConfig, type WorkspaceSwitcherItem, advanceSidebarResizeGesture, clampPanelWidth, createStreamoidAppSwitchUtilities, formatStreamoidAppVersion, formatSubAgentLabel, hasCollapsedMark, resolveAnchoredPopoverArrow, resolveAnchoredPopoverPosition, resolvePanelResize, resolvePanelResizeKey, scAppSwitchOrder, streamoidAppSwitchTagline, streamoidChangelogUrl, useStreamoidAnchoredPopover, useStreamoidAnchoredPopoverPosition, useStreamoidPanelWidth, useStreamoidSidebarPopoverPosition, useStreamoidSidebarPreference, useStreamoidThemePreference };
|
|
2574
|
+
export { type AppSidebarAppIdentity, type AppSidebarAssistantCta, type AppSidebarCreditWarning, type AppSidebarHeader, type AppSidebarIconContext, type AppSidebarIconMap, type AppSidebarIconRenderer, type AppSidebarMenuItem, type AppSidebarProfile, type AppSidebarSection, type AppcardProduct, type ArtifaxMenuItem, type ArtifaxSection, type ArtifaxSidebarAppIdentity, type ArtifaxSidebarAssistantCta, type ArtifaxSidebarCreditWarning, type ArtifaxSidebarIconContext, type ArtifaxSidebarIconMap, type ArtifaxSidebarIconRenderer, type ArtifaxSidebarProfile, type AssistantCta, type CatalogixNavItem, type CatalogixSidebarCreditWarning, type CatalogixSidebarIconContext, type CatalogixSidebarIconMap, type CatalogixSidebarIconRenderer, type CatalogixSidebarProfile, type CatalogixSwitchApp, CreditWarningBanner, type CreditWarningBannerProps, type DescriptionVisibility, type IInvoiceHistoryMobileProps, type IScAccessProps, type IScAnnotatedError, type IScAppCardForCopilotProps, type IScAppCardProps, type IScAppCardV3Props, type IScAppFieldProps, type IScAppListingCardProps, type IScAppSidebarProps, type IScAppSwitchPanelProps, type IScAppcardLogosProps, type IScArtifaxInviteProps, type IScArtifaxSidebarProps, type IScAskAgentButtonProps, 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 IScCxoWordmarkProps, type IScDefaultCardProps, type IScDrawerProps, type IScErrorBoundaryProps, type IScErrorReport, type IScErrorReporterClient, 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 IScPanelResizeHandleProps, type IScPendingActionProps, type IScPhtogenixInviteProps, type IScPlanCardProps, type IScPlanComparisonProps, type IScPlanDetailsCardMobileProps, type IScPlanDetailsCardProps, type IScPopUpMenuProps, type IScPopoverArrowProps, type IScProfileImageUpdateProps, type IScProfileOptionsProps, type IScProfilePopupProps, 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 IScSidebarPopoverProps, 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, PANEL_RESIZE_STEP_PX, type PanelResizeEdge, type PanelResizeGesture, type PanelWidthBounds, type PlanComparisonRow, type PlanComparisonSection, type PlanFeatureSection, ProductCollapsedMark, ProductWordmark, SIDEBAR_RESIZE_THRESHOLD_PX, STREAMOID_CHANGELOG_URL, STREAMOID_CHANGELOG_URLS, STREAMOID_STATUS_PAGE_URL, ScAccess, ScAppCard, ScAppCardForCopilot, ScAppCardV3, ScAppField, ScAppListingCard, ScAppSidebar, type ScAppSwitchItem, ScAppSwitchPanel, ScAppSwitchRow, type ScAppSwitchSystemItem, type ScAppSwitchUtilities, ScAppcardLogos, ScArtifaxInvite, ScArtifaxSidebar, ScAskAgentButton, ScAskAgentSlot, ScBadges, ScBeacon, type ScBeaconTone, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScBriefCard, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCatalogixSidebar, ScCatalogixStoreHeader, ScCatalogixStoreTableList, ScCheckField, ScCheckbox, ScCounter, ScCreditsUsageCard, ScCreditsUsageCardMobile, ScCxoCopilotLogo, ScCxoWordmark, ScDefaultCard, ScDp, type ScDpProps, ScDrawer, ScErrorBoundary, type ScErrorReporter, ScFieldButton, ScFileField, ScGoogleSignIn, ScGuide, ScHDivider, ScHeader, ScImageField, ScInChatList, ScInChatMessage, ScInfoPopup, ScIntialProfileCover, ScLogoUnit, ScMappingCard, ScMediaApproval, ScMediaSelect, ScMenuOptions, ScMobileBottomAction, ScMobileTopNav, ScModal, ScOnlyField, ScOnlyIcon, ScPagination, ScPairtext, ScPanelResizeHandle, ScPendingAction, ScPhtogenixInvite, ScPlanCard, ScPlanComparison, ScPlanDetailsCard, ScPlanDetailsCardMobile, ScPopUpMenu, ScPopoverArrow, ScProfile, ScProfileImageUpdate, ScProfileOptions, ScProfilePopup, type ScProfilePopupThemeMode, ScProfileSettingsComp, ScProfileV2Mobile, ScProgressBar, ScQuickPrompt, ScRadio, ScReferralCardMobile, ScReferralTableHeader, ScReferralTableList, ScRole, ScRoleMobile, ScSelect, ScSelection, ScSelectionList, ScSelectionPill, ScSelectionPillGroup, ScSettingsNav, ScSettingsTabComp, type ScShellThemeMode, ScSideBarLogoUnit, ScSidebar, ScSidebarAppIdentity, type ScSidebarAppIdentityProps, ScSidebarIcons, ScSidebarMenu, ScSidebarPopover, ScSidebarProfile, ScSidebarResizeHandle, type ScSidebarResizeHandleProps, ScSidebarSearchTrigger, type ScSidebarSearchTriggerProps, ScSidebarSwitchMenu, ScSidebarWorkspaceTrigger, type ScSidebarWorkspaceTriggerProps, ScSlider, ScStoreCard, ScStrLogo, ScStreamoidMascot, ScStreamoidWordmark, ScSubAgent, type ScTab, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTableListMobile, ScTabs, ScTaxonomyPill, ScTextArea, ScTextField, ScThinkingStepIcon, ScTodoList, ScToggleSwitch, ScVDivider, ScValueMappingL1, ScVersion, ScWorkspaceAccountMenu, type ScWorkspaceAccountMenuProps, ScWorkspaceCard, ScWorkspaceSettingsMobile, ScWorkspaceSwitchCard, type ScWorkspaceSwitchCardProps, ScWorkspaceSwitchMobile, ScWorkspaceSwitchMobileV2, type SelectionListState, type SidebarAppIdentityConfig, type SidebarConfig, type SidebarIconContext, type SidebarIconMap, type SidebarIconRenderer, type SidebarMenuItemConfig, type SidebarProduct, type SidebarProfileConfig, type SidebarResizeGestureResult, type SidebarResizeGestureState, type SidebarSectionConfig, type StreamoidAnchorRect, type StreamoidAnchoredPopover, type StreamoidAnchoredPopoverArrow, type StreamoidAnchoredPopoverGeometry, type StreamoidAnchoredPopoverPosition, type StreamoidAnchoredPopoverPositionOptions, type StreamoidAppSwitchGroup, type StreamoidAppSwitchOptions, type StreamoidAppSwitchProduct, type StreamoidPanelWidthOptions, type StreamoidPanelWidthState, StreamoidSidebar, type StreamoidSidebarPopoverPlacement, type StreamoidSidebarPopoverPosition, type StreamoidSidebarPopoverPositionOptions, type StreamoidSidebarPreferenceOptions, type StreamoidSidebarPreferenceState, type StreamoidSidebarProps, type StreamoidThemePreferenceOptions, type StreamoidThemePreferenceState, StreamoidWorkspaceSwitcher, type StreamoidWorkspaceSwitcherProps, UsageHistoryMobile, type WorkspaceSwitcherConfig, type WorkspaceSwitcherItem, advanceSidebarResizeGesture, clampPanelWidth, createStreamoidAppSwitchUtilities, formatStreamoidAppVersion, formatSubAgentLabel, hasCollapsedMark, resolveAnchoredPopoverArrow, resolveAnchoredPopoverPosition, resolvePanelResize, resolvePanelResizeKey, scAppSwitchOrder, scCreatePostHogReporter, scGetErrorRef, streamoidAppSwitchGroups, streamoidAppSwitchTagline, streamoidChangelogUrl, useStreamoidAnchoredPopover, useStreamoidAnchoredPopoverPosition, useStreamoidPanelWidth, useStreamoidSidebarPopoverPosition, useStreamoidSidebarPreference, useStreamoidThemePreference };
|