@streamoid/ui 0.6.54 → 0.6.56
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 +6 -3
- package/dist/docs/ScNewVersionNotice.md +189 -0
- package/dist/docs/ScWorkspaceAccountMenu.md +49 -1
- package/dist/docs/components.json +64 -2
- package/dist/index.d.mts +150 -2
- package/dist/index.d.ts +150 -2
- package/dist/index.js +1580 -1347
- package/dist/index.mjs +1558 -1325
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -597,6 +597,80 @@ interface IScMenuOptionsProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
597
597
|
}
|
|
598
598
|
declare const ScMenuOptions: ({ icon, version, hover, variant, className, text, ...props }: IScMenuOptionsProps) => React.JSX.Element;
|
|
599
599
|
|
|
600
|
+
interface IUseNewVersionAvailableOptions {
|
|
601
|
+
/** The build id baked into the bundle that is RUNNING.
|
|
602
|
+
*
|
|
603
|
+
* The host has to pass this: it comes from a compile-time define, and every
|
|
604
|
+
* app spells it differently (`__BUILD_ID__` in Artifax and Tactix,
|
|
605
|
+
* `__PHOTOGENIX_BUILD_ID__` in Photogenix). A library cannot read another
|
|
606
|
+
* bundle's define, so there is nothing to guess here.
|
|
607
|
+
*
|
|
608
|
+
* Empty or undefined disables the check rather than prompting: not knowing
|
|
609
|
+
* which build you are is not evidence that a newer one exists. */
|
|
610
|
+
buildId?: string;
|
|
611
|
+
/** Where the DEPLOYED build id is published. Defaults to `/version.json`,
|
|
612
|
+
* which is what every Streamoid app's build emits. */
|
|
613
|
+
manifestUrl?: string;
|
|
614
|
+
pollIntervalMs?: number;
|
|
615
|
+
/** Pass `false` in dev. There is nothing to compare against: the manifest is
|
|
616
|
+
* emitted by a build-only plugin, and the dev server rebuilds in place. */
|
|
617
|
+
enabled?: boolean;
|
|
618
|
+
}
|
|
619
|
+
/** The deployed build id out of a `/version.json` body, or `null`.
|
|
620
|
+
*
|
|
621
|
+
* Exported because it is where the surprises live, and a hook is awkward to
|
|
622
|
+
* test: the SPA catch-all can answer this route with `index.html`, a partial
|
|
623
|
+
* deploy can serve `{}`, and a hand-edited manifest can put a number there.
|
|
624
|
+
* None of those are a newer build. */
|
|
625
|
+
declare function parseVersionManifest(body: unknown): string | null;
|
|
626
|
+
/** Whether `deployed` is grounds to prompt someone to reload.
|
|
627
|
+
*
|
|
628
|
+
* Only a KNOWN id that DIFFERS counts. Not knowing which build is deployed,
|
|
629
|
+
* and not knowing which build you are running, are both the normal state —
|
|
630
|
+
* offline, mid-redeploy, a dev server — and neither is evidence of a newer
|
|
631
|
+
* build. Prompting on either would show the notice to everyone, forever. */
|
|
632
|
+
declare function shouldPromptForNewVersion(current: string | null | undefined, deployed: string | null | undefined): boolean;
|
|
633
|
+
/**
|
|
634
|
+
* Whether the server is serving a newer build than this tab is running.
|
|
635
|
+
*
|
|
636
|
+
* Latches once true: a build cannot become un-new, and flickering the prompt
|
|
637
|
+
* because one poll failed would be worse than not showing it.
|
|
638
|
+
*
|
|
639
|
+
* This was three near-identical copies — Artifax's and Photogenix's hooks of
|
|
640
|
+
* this name and CXO's toast — differing only in quote style, the name of the
|
|
641
|
+
* build-id global, and whether they handled a 204. They handle it here.
|
|
642
|
+
*/
|
|
643
|
+
declare function useNewVersionAvailable(options?: IUseNewVersionAvailableOptions): boolean;
|
|
644
|
+
|
|
645
|
+
interface IScNewVersionNoticeProps extends IUseNewVersionAvailableOptions {
|
|
646
|
+
title?: ReactNode;
|
|
647
|
+
description?: ReactNode;
|
|
648
|
+
refreshLabel?: ReactNode;
|
|
649
|
+
dismissLabel?: ReactNode;
|
|
650
|
+
/** Defaults to a plain `window.location.reload()`. Override only to save
|
|
651
|
+
* work first — and then still reload. */
|
|
652
|
+
onRefresh?: () => void;
|
|
653
|
+
testId?: string;
|
|
654
|
+
className?: string;
|
|
655
|
+
style?: CSSProperties;
|
|
656
|
+
}
|
|
657
|
+
/**
|
|
658
|
+
* Tell the user a newer build is deployed, and let them take it.
|
|
659
|
+
*
|
|
660
|
+
* DELIBERATELY NOT AUTOMATIC. Reloading under someone mid-sentence in a chat,
|
|
661
|
+
* mid-upload, or mid-form loses their work; every app that does this well asks
|
|
662
|
+
* rather than acts. It is persistent for the same reason — a notice about an
|
|
663
|
+
* update that disappears after five seconds is a notice nobody reads — and
|
|
664
|
+
* dismissible, because the next full page load picks the new version up
|
|
665
|
+
* regardless, so nothing is lost by ignoring it.
|
|
666
|
+
*
|
|
667
|
+
* TOP-RIGHT, because CXO raises this on a `Toaster` pinned there and the rest
|
|
668
|
+
* of the family follows it. Bottom-right puts the same message in a different
|
|
669
|
+
* corner of the same product family, and tends to land on a composer or a
|
|
670
|
+
* grid's controls — which is where someone is working.
|
|
671
|
+
*/
|
|
672
|
+
declare function ScNewVersionNotice({ title, description, refreshLabel, dismissLabel, onRefresh, testId, className, style, ...availability }: IScNewVersionNoticeProps): React$1.ReactPortal | null;
|
|
673
|
+
|
|
600
674
|
interface IScOnlyIconProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
601
675
|
className?: string;
|
|
602
676
|
variant?: "default";
|
|
@@ -924,9 +998,26 @@ interface ScSidebarSearchTriggerProps {
|
|
|
924
998
|
label?: string;
|
|
925
999
|
shortcut?: string;
|
|
926
1000
|
onClick?: () => void;
|
|
1001
|
+
/**
|
|
1002
|
+
* Hover or keyboard-focus, BEFORE the click — the host's cue to start
|
|
1003
|
+
* fetching whatever the search dialog needs.
|
|
1004
|
+
*
|
|
1005
|
+
* Every product opens this trigger onto a lazily-loaded dialog, and in CXO
|
|
1006
|
+
* and Artifax that dialog lives in `@streamoid/agent`: 5.3MB, behind a
|
|
1007
|
+
* `Suspense` fallback of `null`. So the FIRST click looked like it did
|
|
1008
|
+
* nothing at all while the chunk downloaded. Hovering is a strong enough
|
|
1009
|
+
* signal to pay for the same bytes the click needs a moment later, and it is
|
|
1010
|
+
* the reason this is on hover rather than on idle — most sessions never open
|
|
1011
|
+
* the dialog and should not download it.
|
|
1012
|
+
*
|
|
1013
|
+
* Must be cheap and idempotent: it fires on EVERY hover. A bare
|
|
1014
|
+
* `() => void import('@streamoid/agent')` is the intended shape — dynamic
|
|
1015
|
+
* imports are cached, so the second call costs nothing.
|
|
1016
|
+
*/
|
|
1017
|
+
onPrefetch?: () => void;
|
|
927
1018
|
className?: string;
|
|
928
1019
|
}
|
|
929
|
-
declare function ScSidebarSearchTrigger({ expanded, label, shortcut, onClick, className, }: ScSidebarSearchTriggerProps): JSX.Element;
|
|
1020
|
+
declare function ScSidebarSearchTrigger({ expanded, label, shortcut, onClick, onPrefetch, className, }: ScSidebarSearchTriggerProps): JSX.Element;
|
|
930
1021
|
interface ScSidebarAppIdentityProps {
|
|
931
1022
|
expanded: boolean;
|
|
932
1023
|
product?: AppcardProduct | "streamoid";
|
|
@@ -969,6 +1060,58 @@ interface ScWorkspaceAccountMenuProps extends Omit<React.HTMLAttributes<HTMLDivE
|
|
|
969
1060
|
/** Shared workspace/account menu used by every Streamoid application sidebar. */
|
|
970
1061
|
declare function ScWorkspaceAccountMenu({ workspaceName, workspaceRole, workspaceImage, credits, onSwitchWorkspace, onInviteMembers, onBilling, organizationName, organizationRole, onOrganizationClick, accountName, accountEmail, accountImage, onAccountClick, themeMode, onThemeModeChange, className, ...props }: ScWorkspaceAccountMenuProps): JSX.Element;
|
|
971
1062
|
|
|
1063
|
+
/** The shape `matchesStreamoidSearchShortcut` needs — a subset of
|
|
1064
|
+
* `KeyboardEvent`, so the predicate is testable without a DOM. */
|
|
1065
|
+
interface StreamoidSearchShortcutEvent {
|
|
1066
|
+
key: string;
|
|
1067
|
+
metaKey: boolean;
|
|
1068
|
+
ctrlKey: boolean;
|
|
1069
|
+
altKey: boolean;
|
|
1070
|
+
}
|
|
1071
|
+
/**
|
|
1072
|
+
* Is this keydown the search chord?
|
|
1073
|
+
*
|
|
1074
|
+
* Pure and exported so the decision can be tested without a DOM, the same way
|
|
1075
|
+
* `resolvePanelResize` is split out of the resize handle.
|
|
1076
|
+
*
|
|
1077
|
+
* - `metaKey` OR `ctrlKey`, so one binding serves macOS and everything else.
|
|
1078
|
+
* - `altKey` is excluded, so ⌥⌘K and Ctrl+Alt+K stay with the browser.
|
|
1079
|
+
* - `event.key` and not `event.code`: `key` carries the CHARACTER, already
|
|
1080
|
+
* resolved through the keyboard layout. `code` is physical, so on AZERTY or
|
|
1081
|
+
* Dvorak the key labelled K is not `KeyK` and the shortcut would land under
|
|
1082
|
+
* a different letter than the `⌘ K` hint promises.
|
|
1083
|
+
*/
|
|
1084
|
+
declare function matchesStreamoidSearchShortcut(event: StreamoidSearchShortcutEvent, letter?: string): boolean;
|
|
1085
|
+
interface StreamoidSearchShortcutOptions {
|
|
1086
|
+
/** Fired on ⌘K / Ctrl+K. Its identity does not matter — it is read through a
|
|
1087
|
+
* ref, so an inline arrow will not rebind the listener each render. */
|
|
1088
|
+
onTrigger: () => void;
|
|
1089
|
+
/** Bind the key. `false` unbinds — e.g. while a modal owns the keyboard. */
|
|
1090
|
+
enabled?: boolean;
|
|
1091
|
+
/** The letter pressed with the modifier. Case-insensitive. */
|
|
1092
|
+
letter?: string;
|
|
1093
|
+
}
|
|
1094
|
+
/**
|
|
1095
|
+
* ⌘K / Ctrl+K, for the dialog `ScSidebarSearchTrigger` advertises.
|
|
1096
|
+
*
|
|
1097
|
+
* The trigger has drawn a `⌘ K` hint since it shipped and NO APP EVER BOUND THE
|
|
1098
|
+
* KEY — the one affordance telling people the rail has a command bar did
|
|
1099
|
+
* nothing when used. This lives here so the component that makes the promise
|
|
1100
|
+
* and the hook that keeps it ship together, rather than each product
|
|
1101
|
+
* rediscovering the same eight lines and getting the modifier handling
|
|
1102
|
+
* slightly different.
|
|
1103
|
+
*
|
|
1104
|
+
* The host still owns the dialog's open state, so this reports the chord and
|
|
1105
|
+
* decides nothing. Wire it to a TOGGLE rather than an open: every other command
|
|
1106
|
+
* palette closes on the same chord that opened it.
|
|
1107
|
+
*
|
|
1108
|
+
* It calls `preventDefault`, because Ctrl+K is taken — Chrome and Firefox both
|
|
1109
|
+
* send it to the address bar, and without this the rail's own search loses to
|
|
1110
|
+
* the browser. And it fires even while a text field has focus, which is
|
|
1111
|
+
* deliberate: the chord is how you leave the field.
|
|
1112
|
+
*/
|
|
1113
|
+
declare function useStreamoidSearchShortcut({ onTrigger, enabled, letter, }: StreamoidSearchShortcutOptions): void;
|
|
1114
|
+
|
|
972
1115
|
interface StreamoidThemePreferenceOptions {
|
|
973
1116
|
defaultMode?: ScShellThemeMode;
|
|
974
1117
|
legacyStorageKeys?: string[];
|
|
@@ -1248,6 +1391,11 @@ interface AppSidebarHeader {
|
|
|
1248
1391
|
searchLabel?: string;
|
|
1249
1392
|
searchShortcut?: string;
|
|
1250
1393
|
onSearchClick?: () => void;
|
|
1394
|
+
/** Hover/focus on the search trigger, so the host can start loading the
|
|
1395
|
+
* dialog before it is clicked. See `ScSidebarSearchTriggerProps.onPrefetch`
|
|
1396
|
+
* — the dialog is a 5.3MB lazy chunk in CXO and Artifax, and without this
|
|
1397
|
+
* the first click looks inert while it downloads. */
|
|
1398
|
+
onSearchPrefetch?: () => void;
|
|
1251
1399
|
/** Omit the search field entirely — a product that has no search yet. */
|
|
1252
1400
|
hideSearch?: boolean;
|
|
1253
1401
|
}
|
|
@@ -2617,4 +2765,4 @@ interface IScProfilePopupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
2617
2765
|
*/
|
|
2618
2766
|
declare const ScProfilePopup: React$1.ForwardRefExoticComponent<IScProfilePopupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2619
2767
|
|
|
2620
|
-
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, SC_APP_SWITCH_PANEL_WIDTH, SC_WORKSPACE_MENU_WIDTH, 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 };
|
|
2768
|
+
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 IScNewVersionNoticeProps, 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 IUseNewVersionAvailableOptions, type IcListIconState, InvoiceHistoryMobile, NscWorkspaceSwitch, PANEL_RESIZE_STEP_PX, type PanelResizeEdge, type PanelResizeGesture, type PanelWidthBounds, type PlanComparisonRow, type PlanComparisonSection, type PlanFeatureSection, ProductCollapsedMark, ProductWordmark, SC_APP_SWITCH_PANEL_WIDTH, SC_WORKSPACE_MENU_WIDTH, 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, ScNewVersionNotice, 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, type StreamoidSearchShortcutEvent, type StreamoidSearchShortcutOptions, 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, matchesStreamoidSearchShortcut, parseVersionManifest, resolveAnchoredPopoverArrow, resolveAnchoredPopoverPosition, resolvePanelResize, resolvePanelResizeKey, scAppSwitchOrder, scCreatePostHogReporter, scGetErrorRef, shouldPromptForNewVersion, streamoidAppSwitchGroups, streamoidAppSwitchTagline, streamoidChangelogUrl, useNewVersionAvailable, useStreamoidAnchoredPopover, useStreamoidAnchoredPopoverPosition, useStreamoidPanelWidth, useStreamoidSearchShortcut, useStreamoidSidebarPopoverPosition, useStreamoidSidebarPreference, useStreamoidThemePreference };
|