@orbit-work/ui 0.1.2 → 0.1.4
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/appearance.cjs +4 -2
- package/dist/appearance.cjs.map +1 -1
- package/dist/appearance.d.cts +7 -1
- package/dist/appearance.d.ts +7 -1
- package/dist/appearance.js +5 -3
- package/dist/brand-preview.cjs +14 -0
- package/dist/brand-preview.cjs.map +1 -0
- package/dist/brand-preview.d.cts +13 -0
- package/dist/brand-preview.d.ts +13 -0
- package/dist/brand-preview.js +14 -0
- package/dist/brand-preview.js.map +1 -0
- package/dist/{chunk-KRP43SUA.cjs → chunk-JC7BHKS4.cjs} +2 -398
- package/dist/chunk-JC7BHKS4.cjs.map +1 -0
- package/dist/chunk-K7ONUTLA.cjs +240 -0
- package/dist/chunk-K7ONUTLA.cjs.map +1 -0
- package/dist/chunk-KTNWR3H5.js +399 -0
- package/dist/chunk-KTNWR3H5.js.map +1 -0
- package/dist/{chunk-S3R5QFO4.js → chunk-LSGO6AQR.js} +2 -398
- package/dist/chunk-LSGO6AQR.js.map +1 -0
- package/dist/chunk-Q7B4M5GC.cjs +399 -0
- package/dist/chunk-Q7B4M5GC.cjs.map +1 -0
- package/dist/chunk-ZXMHCL6D.js +240 -0
- package/dist/chunk-ZXMHCL6D.js.map +1 -0
- package/dist/core.css +12 -3
- package/dist/core.scoped.css +7888 -0
- package/dist/index.cjs +212 -377
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +37 -4
- package/dist/index.d.ts +37 -4
- package/dist/index.js +191 -356
- package/dist/index.js.map +1 -1
- package/dist/{appearance-D7uh_ZTy.d.cts → unifiedTheme-DQ-sETKO.d.cts} +13 -4
- package/dist/{appearance-D7uh_ZTy.d.ts → unifiedTheme-DQ-sETKO.d.ts} +13 -4
- package/dist/workbench.css +12 -3
- package/package.json +16 -2
- package/dist/chunk-KRP43SUA.cjs.map +0 -1
- package/dist/chunk-S3R5QFO4.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -6,8 +6,9 @@ import { H as HostPlatform } from './index-nLo7jMlP.cjs';
|
|
|
6
6
|
export { D as DESKTOP_LOGIN_CLAIM, a as DESKTOP_LOGIN_CLAIM_NOTE, b as DesktopLoginLabels, c as DesktopLoginQr, d as DesktopLoginStage, e as DesktopLoginView, f as DesktopLoginViewProps, L as LoginProviderKind, g as LoginProviderOption } from './index-nLo7jMlP.cjs';
|
|
7
7
|
import { LocaleDictionary, TranslationValues, Translator, UiLocale } from './locale.cjs';
|
|
8
8
|
export { DEFAULT_UI_LOCALE, UI_LOCALES, isUiLocale } from './locale.cjs';
|
|
9
|
-
import {
|
|
10
|
-
export {
|
|
9
|
+
import { d as Theme, R as ResolvedTheme, e as OrbitworkSkin, O as OrbitworkFontScale, B as BrandTheme, a as TenantTheme, U as UnifiedTheme } from './unifiedTheme-DQ-sETKO.cjs';
|
|
10
|
+
export { L as LocalizedBranding, f as ORBITWORK_FONT_SCALES, g as OrbitworkSkinChatBackgroundMask, h as OrbitworkSkinTokens, S as SkinValidationResult, T as TenantBranding, i as TenantThemeColors, j as hasOrbitworkSkinChatBackground, k as isOrbitworkFontScale, l as localizedCopy, o as orbitworkSkinChatBackgroundMaskColor, p as parseOrbitworkSkin, r as resolveOrbitworkFontScale, n as resolveOrbitworkSkinChatBackgroundMask } from './unifiedTheme-DQ-sETKO.cjs';
|
|
11
|
+
export { BUILTIN_ORBITWORK_SKINS, DEFAULT_ORBITWORK_SKIN_ID } from './appearance.cjs';
|
|
11
12
|
|
|
12
13
|
declare const avatarVariants: (props?: ({
|
|
13
14
|
size?: "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
@@ -8792,6 +8793,11 @@ declare function DesktopConnectorDetailView({ logo, name, author, version, descr
|
|
|
8792
8793
|
interface DesktopHomeViewProps {
|
|
8793
8794
|
/** 主视觉句(裁决 18 定的品牌口吻)。 */
|
|
8794
8795
|
title?: string;
|
|
8796
|
+
/**
|
|
8797
|
+
* 品牌 Logo 覆盖(OEM/Dev Host 运行时品牌):传入时用该图片(34×34 等
|
|
8798
|
+
* 大 contain)替换 §12 锁定件 `OrbitworkMark`。缺省保持官方锁定件。
|
|
8799
|
+
*/
|
|
8800
|
+
brandLogoSrc?: string;
|
|
8795
8801
|
/** 背景线纹槽:传 `<HomeBackdrop />`。**只有主屏传**,别的屏留空——它不是全局水印。 */
|
|
8796
8802
|
backdrop?: ReactNode;
|
|
8797
8803
|
/** 起手胶囊槽:传 `<StarterCapsules />`。 */
|
|
@@ -8804,7 +8810,7 @@ interface DesktopHomeViewProps {
|
|
|
8804
8810
|
children?: ReactNode;
|
|
8805
8811
|
className?: string;
|
|
8806
8812
|
}
|
|
8807
|
-
declare function DesktopHomeView({ title, backdrop, capsules, mounts, onDismissMounts, children, className, }: DesktopHomeViewProps): react.JSX.Element;
|
|
8813
|
+
declare function DesktopHomeView({ title, brandLogoSrc, backdrop, capsules, mounts, onDismissMounts, children, className, }: DesktopHomeViewProps): react.JSX.Element;
|
|
8808
8814
|
|
|
8809
8815
|
type DesktopLibraryAuthorizationScope = {
|
|
8810
8816
|
title: string;
|
|
@@ -9373,6 +9379,11 @@ interface DesktopSidebarViewProps {
|
|
|
9373
9379
|
onShareThread: (threadId: string) => void;
|
|
9374
9380
|
onFeedback: () => void;
|
|
9375
9381
|
onLogout: () => void;
|
|
9382
|
+
/**
|
|
9383
|
+
* 品牌 Logo 覆盖(OEM/Dev Host 运行时品牌):传入时用该图片替换 §12 锁定
|
|
9384
|
+
* 排字标 `OrbitworkLockup`(等高校 20px,宽度随图片比例)。缺省保持官方锁定件。
|
|
9385
|
+
*/
|
|
9386
|
+
brandLogoSrc?: string;
|
|
9376
9387
|
update?: DesktopSidebarUpdate;
|
|
9377
9388
|
onUpdateClick?: () => void;
|
|
9378
9389
|
onInstallUpdate?: () => Promise<void> | void;
|
|
@@ -10585,6 +10596,28 @@ declare function PdfPageNav({ page, totalPages, onPageChange, showReadout, }: {
|
|
|
10585
10596
|
type PdfPreviewDialogProps = Omit<FilePreviewDialogProps, "children" | "surface"> & Pick<PdfPreviewProps, "src" | "page" | "onPageChange" | "totalPages">;
|
|
10586
10597
|
declare function PdfPreviewDialog({ src, page, onPageChange, totalPages, meta, actions, ...shell }: PdfPreviewDialogProps): react.JSX.Element;
|
|
10587
10598
|
|
|
10599
|
+
interface BrandPreviewScopeProps {
|
|
10600
|
+
/** Merged brand layer (OEM build-time shape); applied only inside this scope. */
|
|
10601
|
+
brandTheme: BrandTheme;
|
|
10602
|
+
/** Resolved color mode; also stamped as data-theme on the scope element. */
|
|
10603
|
+
mode: ResolvedTheme;
|
|
10604
|
+
/** Locale used to resolve localized branding copy. */
|
|
10605
|
+
locale?: string;
|
|
10606
|
+
className?: string;
|
|
10607
|
+
children: ReactNode;
|
|
10608
|
+
}
|
|
10609
|
+
/**
|
|
10610
|
+
* Scoped brand preview container for host apps embedding real ui components
|
|
10611
|
+
* (login/about/sidebar views) inside their own pages. Unlike ThemeProvider —
|
|
10612
|
+
* which writes --ow-* custom properties onto document.documentElement — this
|
|
10613
|
+
* applies the merged unified theme to a local wrapper div carrying the
|
|
10614
|
+
* `ow-ui-scope` class (paired with `styles/core.scoped.css`) and `data-theme`,
|
|
10615
|
+
* so the host page keeps its own styling. Also provides BrandingContext so
|
|
10616
|
+
* components reading `useBranding()` (e.g. the sidebar brand row) see the
|
|
10617
|
+
* brand's localized copy.
|
|
10618
|
+
*/
|
|
10619
|
+
declare function BrandPreviewScope({ brandTheme, mode, locale, className, children }: BrandPreviewScopeProps): react.JSX.Element;
|
|
10620
|
+
|
|
10588
10621
|
type McpServerViewStatus = "available" | "configured" | "auto_disabled" | "starting" | "restarting" | "degraded" | "error" | "missing" | "sidecar_error" | "unknown";
|
|
10589
10622
|
interface McpServerViewModel {
|
|
10590
10623
|
id: string;
|
|
@@ -11099,4 +11132,4 @@ type LocalLinkTargetOptions = {
|
|
|
11099
11132
|
declare function basenameFromLocalPath(path: string): string;
|
|
11100
11133
|
declare function collectMarkdownFileRefs(text: string, seen: Set<string>, refs: AttachmentItem[], options?: LocalLinkTargetOptions): void;
|
|
11101
11134
|
|
|
11102
|
-
export { ACCOUNT_CREDITS_WARN_RATIO, ActionStatus, type ActionStatusProps, AgentLoopSegment, type AgentLoopSegmentProps, AgentTurn, type AgentTurnProps, AppLayout, type AppLayoutProps, Archive, Arrow, ArrowDown, ArtifactCard, type ArtifactCardProps, type ArtifactOpenWithApp, ArtifactPreviewCard, type ArtifactPreviewCardProps, type ArtifactPreviewPanelMode, ArtifactPreviewSidebarView, type ArtifactPreviewSidebarViewProps, type ArtifactPreviewView, ArtifactTrail, AskQuestionCardView, type AskQuestionCardViewProps, type AskQuestionRecapItem, AssistantChannelCard, type AssistantChannelCardProps, type AssistantChannelPlatform, Atom, Attachment, type AttachmentItem, AttachmentList, type AttachmentListProps, type AttachmentMenuOption, type AttachmentOpenOption, type AttachmentProps, type AttachmentStatus, type AttachmentTone, type AttachmentVariant, AuthorizationCard, type AuthorizationCardProps, Avatar, type AvatarProps, type AvatarVariant, BEACON_ICON_NAMES, BackButton, type BackButtonProps, BackTop, type BackTopProps, Badge, type BadgeProps, type BadgeVariant, Banner, type BannerProps, type BannerVariant, BarChart, type BarChartDatum, type BarChartProps, BeaconIcon, type BeaconIconName, type BeaconIconProps, BeaconSpinner, type BeaconSpinnerProps, Bell, Bolt, Brain, Branch, BranchDivider, type BranchDividerProps, BrandTheme, type BrandingContextValue, BrowserAnnotationPopupView, type BrowserAnnotationPopupViewProps, type BrowserClearDataOptions, type BrowserDevicePreset, type BrowserDeviceToolbarLabels, BrowserDeviceToolbarView, type BrowserDeviceToolbarViewProps, BrowserFindBarView, type BrowserFindBarViewProps, type BrowserImportDialogLabels, BrowserImportDialogView, type BrowserImportDialogViewProps, type BrowserImportOptions, type BrowserImportProfile, BrowserLoadErrorView, type BrowserLoadErrorViewProps, type BrowserMoreMenuLabels, BrowserMoreMenuView, type BrowserMoreMenuViewProps, BrowserNavBarView, type BrowserNavBarViewProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, Card, CardGridSkeleton, type CardProps, CatalogEmptyState, type CatalogEmptyStateProps, type ChartSeries, Check, Checkbox, type CheckboxProps, ChevDown, ChevLeft, ChevRight, ChevUp, Chip, type ChipDotTone, type ChipProps, type ChipShape, type ChipTone, Circle, ClipboardList, Clock, Close, CodeBlock, type CodeBlockProps, CodeDiff, type CodeDiffProps, CodePreview, type CodePreviewProps, CommandPalette, type CommandPaletteGroup, type CommandPaletteItem, type CommandPaletteProps, CommentPlus, Compass, Composer, ComposerAudioSpectrum, type ComposerAudioSpectrumProps, ComposerAuthorization, type ComposerAuthorizationOption, type ComposerAuthorizationProps, type ComposerMention, ComposerMentions, type ComposerMentionsProps, ComposerMenu, type ComposerMenuAction, type ComposerMenuGroup, type ComposerMenuItem, ComposerMenuPopover, type ComposerMenuPopoverProps, type ComposerMenuProps, type ComposerMode, ComposerPopover, type ComposerPopoverProps, type ComposerProjectOption, ComposerProjectPicker, type ComposerProjectPickerProps, type ComposerProps, ComposerQueue, type ComposerQueueItem, type ComposerQueueItemKind, type ComposerQueueItemStatus, type ComposerQueueNotice, type ComposerQueueProps, type ComposerQueueTone, type ComposerSubmitState, ComposerVoiceInput, type ComposerVoiceInputProps, CompressionDivider, type CompressionDividerProps, ComputerUseWindowOverlayView, type ComputerUseWindowOverlayViewProps, ContentRecommendation, type ContentRecommendationItem, type ContentRecommendationProps, ContextUsage, type ContextUsageIndicatorCopy, ContextUsageIndicatorView, type ContextUsageIndicatorViewProps, type ContextUsageProps, Copy, Cpu, CreateProjectDialog, type CreateProjectDialogProps, CsvPreview, type CsvPreviewProps, Cut, DESKTOP_ACCOUNT_MENU_WIDTH, DataManagementSectionView, type DataManagementSectionViewProps, DataTable, type DataTableAlign, type DataTableColumn, type DataTableDensity, type DataTableProps, type DataTableSort, type DataTableSortDirection, DataTableToolbar, type DataTableToolbarProps, DateDivider, type DateDividerProps, DesktopAboutSettingsView, type DesktopAboutSettingsViewCopy, type DesktopAboutSettingsViewProps, type DesktopAccountMenuCredits, type DesktopAccountMenuPlan, type DesktopAccountMenuUpdate, type DesktopAccountMenuUpdateState, type DesktopAccountMenuUser, DesktopAccountMenuView, type DesktopAccountMenuViewProps, DesktopAgentCardView, type DesktopAgentCardViewProps, DesktopAgentDetailActions, type DesktopAgentDetailActionsProps, type DesktopAgentDetailItemView, DesktopAgentDetailView, type DesktopAgentDetailViewProps, type DesktopAgentMemberView, type DesktopAgentOverviewItemView, type DesktopAgentOverviewLinkView, DesktopAgentOverviewView, DesktopAgentRosterView, type DesktopAgentRosterViewProps, DesktopAppearanceSettings, type DesktopAppearanceSettingsCopy, type DesktopAppearanceSettingsProps, DesktopAssistantAdvanced, type DesktopAssistantAdvancedProps, DesktopAssistantBindCard, DesktopAssistantConfigActions, DesktopAssistantConfigContent, DesktopAssistantConfigFields, DesktopAssistantConfigLayout, type DesktopAssistantConfigValue, DesktopAssistantConfigView, type DesktopAssistantConfigViewProps, DesktopAssistantField, type DesktopAssistantFieldProps, DesktopAssistantFieldState, type DesktopAssistantFieldStateProps, DesktopAssistantFooterHint, type DesktopAssistantFooterHintProps, type DesktopAssistantPlatform, DesktopAssistantQr, DesktopAssistantScanHint, DesktopAssistantScanPanel, type DesktopAvailableUpdateView, type DesktopCatalogActionView, type DesktopCatalogCardMetaItem, DesktopCatalogCardView, type DesktopCatalogCardViewProps, DesktopCatalogDetailActions, type DesktopCatalogDetailActionsProps, DesktopCatalogDetailShell, type DesktopCatalogDetailShellProps, DesktopCatalogGridView, type DesktopCatalogGridViewProps, DesktopCatalogToolbarView, type DesktopCatalogToolbarViewProps, type DesktopChatAgentMessageView, DesktopChatAgentTurnView, type DesktopChatAgentTurnViewProps, type DesktopChatAttachmentView, DesktopChatCompressionDivider, type DesktopChatCompressionDividerProps, type DesktopChatContextView, DesktopChatEmptyStateView, type DesktopChatEmptyStateViewProps, DesktopChatHeaderView, type DesktopChatHeaderViewProps, DesktopChatHistoryEmptyStateView, type DesktopChatHistoryEmptyStateViewProps, type DesktopChatMessageFeedback, DesktopChatMessageView, type DesktopChatMessageViewProps, DesktopChatReconnectDivider, type DesktopChatReconnectDividerProps, type DesktopChatRunState, DesktopChatUserTurnView, type DesktopChatUserTurnViewProps, DesktopComposer, type DesktopComposerAddAction, type DesktopComposerContext, DesktopComposerModelButton, type DesktopComposerModelButtonProps, type DesktopComposerProps, type DesktopConnectorActionView, DesktopConnectorCardView, type DesktopConnectorCardViewProps, DesktopConnectorDetailView, type DesktopConnectorDetailViewProps, type DesktopConnectorMetaView, type DesktopConnectorToolView, type DesktopConversationGroupView, DesktopConversationView, type DesktopConversationViewProps, type DesktopDetailChipView, DesktopDetailChips, DesktopDetailList, type DesktopDetailListItemView, type DesktopDetailRowView, DesktopDetailRows, DesktopDetailSection, DesktopDetailText, type DesktopFontScale, DesktopHomeView, type DesktopHomeViewProps, DesktopLibraryAuthorizationDialog, type DesktopLibraryAuthorizationDialogCopy, type DesktopLibraryAuthorizationDialogProps, type DesktopLibraryAuthorizationScope, DesktopLibraryPageView, type DesktopLibraryPageViewProps, type DesktopOnboardingTourLabels, type DesktopOnboardingTourRect, type DesktopOnboardingTourStep, DesktopOnboardingTourView, type DesktopOnboardingTourViewProps, DesktopPet, type DesktopPetAnchor, type DesktopPetContentSize, type DesktopPetHandle, type DesktopPetNativeDragEvent, type DesktopPetProps, type DesktopPetSessionBubble, DesktopProcessStepGroupView, type DesktopProcessStepGroupViewProps, DesktopProcessTimelineView, type DesktopProcessTimelineViewProps, DesktopRuntimeSettingsView, type DesktopRuntimeSettingsViewProps, type DesktopRuntimeToolState, type DesktopRuntimeToolView, type DesktopSettingsMemoryItem, DesktopSettingsMemorySection, type DesktopSettingsMemorySectionGroup, type DesktopSettingsMemorySectionProps, type DesktopSettingsNavItem, DesktopSettingsView, type DesktopSettingsViewProps, DesktopShareSelectionBarView, type DesktopShareSelectionBarViewProps, type DesktopSidebarNavId, type DesktopSidebarProject, type DesktopSidebarSourceIcon, type DesktopSidebarThread, type DesktopSidebarUpdate, type DesktopSidebarUpdateState, type DesktopSidebarUser, DesktopSidebarView, type DesktopSidebarViewProps, type DesktopSiteItem, type DesktopSiteReleaseItem, DesktopSiteReleasesView, type DesktopSiteReleasesViewProps, DesktopSitesListView, type DesktopSitesListViewProps, type DesktopSkillsCategory, DesktopSkillsPageView, type DesktopSkillsPageViewProps, type DesktopSkillsSection, type DesktopTaskDetailKind, type DesktopTaskDetailLabels, type DesktopTaskDetailModel, type DesktopTaskDetailStatus, DesktopTaskDetailView, type DesktopTaskDetailViewProps, type DesktopToolCallInlineStatusMode, type DesktopToolCallListItem, type DesktopToolCallListKind, DesktopToolCallListView, type DesktopToolCallListViewProps, type DesktopToolCallStatus, DesktopToolCallView, type DesktopToolCallViewProps, type DesktopUnsupportedToggle, type DesktopUpdateProgressState, type DesktopUpdateProgressView, DesktopWorkbenchShell, type DesktopWorkbenchShellProps, type DesktopWorkbenchView, DetailOverflowMenu, DetailPanel, type DetailPanelProps, DetailScaffold, type DetailScaffoldProps, Device, Dialog, type DialogIconTone, type DialogProps, type DialogVariant, DingTalk, DingTalkAi, Dislike, Divider, type DividerProps, Doc, Download, DropZone, type DropZoneProps, Edit, ElementDispatcher, EmptyState, type EmptyStateProps, type EmptyStateSize, type EmptyStateVariant, ErrorCircle, ExecutionDetail, type ExecutionDetailProps, ExecutionSummary, type ExecutionSummaryProps, ExecutionSummaryRow, type ExecutionSummaryTool, type FeedbackCategoryValue, type FeedbackContextMenuAction, FeedbackContextMenuView, type FeedbackContextMenuViewProps, FeedbackDialogView, type FeedbackDialogViewProps, Feishu, Field, type FieldProps, type FieldShellVariants, FileBrowser, type FileBrowserBreadcrumb, FileBrowserPreviewState, type FileBrowserPreviewStateProps, type FileBrowserProps, FileIcon, type FileIconProps, type FilePreviewContentLabels, FilePreviewContentView, type FilePreviewContentViewProps, FilePreviewDialog, type FilePreviewDialogProps, FileTree, type FileTreeNode, type FileTreeProps, Filter, FilterBar, type FilterBarFilter, type FilterBarProps, Folder, FormField, type FormFieldProps, Gauge, Globe, GlyphToneProvider, Grid, HOME_STARTER_CAPSULES, Hand, Help, HomeBackdrop, type HomeBackdropProps, HostPlatform, IME_COMMIT_GUARD_MS, Icon, type IconName, type IconProps, Icons, Image, ImagePreview, type ImagePreviewCopy, type ImagePreviewItem, type ImagePreviewProps, type ImeCompositionEvent, type ImeKeyboardEvent, InfoCircle, InlineAttachment, type InlineAttachmentProps, InlineMessage, type InlineMessageProps, type InlineMessageTone, type InlineMessageVariant, JumpToLatest, type JumpToLatestProps, Key, KeyValueField, type KeyValueFieldProps, type KeyValuePair, Keyboard, Keycap, KeycapCombo, type KeycapComboProps, type KeycapProps, Layers, Like, LikeFill, ListRow, type ListRowControl, type ListRowDensity, ListRowGroup, type ListRowGroupProps, type ListRowProps, type ListRowSurface, Loader, type LocalImagePreviewResolver, type LocalLinkTargetOptions, type LocalMarkdownPreview, Lock, Logout, MENU_SEPARATOR, Mail, Markdown, MarkdownPreview, MarkdownPreviewDialog, type MarkdownPreviewDialogProps, type MarkdownPreviewProps, type MarkdownProps, Maximize, McpServerListView, type McpServerListViewProps, type McpServerViewModel, type McpServerViewStatus, Memo, Menu, type MenuEntry, type MenuGroupEntry, type MenuItem, type MenuItemVariants, type MenuProps, type MenuSeparatorEntry, MenuSurface, type MenuSurfaceProps, type MenuTriggerState, type MessageActionItem, type MessageActionKind, MessageActions, type MessageActionsProps, MessageFeedbackDialog, type MessageFeedbackDialogProps, type MessageFeedbackReasonCode, type MessageFeedbackSubmission, Mic, ModalityAudio, ModalityImage, ModalityText, ModalityVideo, ModelCatalogErrorState, type ModelCatalogErrorStateProps, type ModelModality, ModelModalityFlow, type ModelModalityFlowProps, ModelPickerList, type ModelPickerListDensity, type ModelPickerListProps, type ModelPickerOption, ModelSelect, type ModelSelectOption, type ModelSelectProps, type ModelThinkingEffort, ModelsSettingsSectionView, type ModelsSettingsSectionViewProps, Moon, More, NAV_MENU_DIVIDER, NavMenu, type NavMenuDividerType, type NavMenuEntry, type NavMenuItemType, type NavMenuProps, NewTask, NoPlanPanelView, type NoPlanPanelViewProps, type OfficeFileType, OfficePreview, OfficePreviewDialog, type OfficePreviewDialogProps, type OfficePreviewProps, OpenWithMenu, type OpenWithMenuProps, OrbitworkFontScale, type OrbitworkIconProps, OrbitworkLockup, type OrbitworkLockupProps, type OrbitworkLockupTheme, OrbitworkMark, type OrbitworkMarkProps, type OrbitworkMarkVariant, OrbitworkSkin, PT_TO_PX, Package, PageHead, type PageHeadProps, Pagination, type PaginationProps, PanelFold, PanelSidebar, PanelSidebarCollapse, Paperclip, Pause, PdfPageNav, PdfPreview, PdfPreviewDialog, type PdfPreviewDialogProps, type PdfPreviewProps, type PetAnimation, type PetManifest, type PetPosition, type PetToolbarItem, Pin, PlanCard, type PlanCardProps, type PlanCardStep, type PlanCardStepState, type PlanChoiceView, PlanEntitlementCard, type PlanEntitlementCardProps, type PlanEntitlementFeature, PlanEntitlementGrid, type PlanEntitlementGridProps, PlanFeatureIcon, type PlanFeatureIconKind, type PlanFeatureIconProps, type PlanSettingsChoiceView, PlanSettingsSectionView, type PlanSettingsSectionViewProps, type PlanSettingsStats, Play, Plus, Popover, type PopoverPlacement, type PopoverProps, type PptxElement, type PptxParseResult, PptxSlide, type PreviewSurface, PreviewSurfaceArea, ProgressBar, type ProgressBarProps, ProjectSelect, type ProjectSelectProps, Quote, Radio, RadioCardGroup, type RadioCardGroupProps, type RadioCardOption, RadioGroup, type RadioGroupProps, type RadioProps, Refresh, ResolvedTheme, ResourceConfirmation, ResourceDetailView, type ResourceListFailure, type ResourceListFilters, ResourceListView, ResourceNotice, type ResourceNoticeProps, ResourceOverviewView, ResourceReleasesView, type ResourceRow, type ResourceRowAction, ResourceRowActionDialog, type ResourceTab, ResourceWorkbenchView, RichCard, type RichCardProps, type RichCardVariant, RichLink, type RichLinkProps, RichList, type RichListProps, type RichResourceItem, type RichResourceListProps, type RichTextListProps, Rotate, RowOverflowMenu, type RowOverflowMenuItem, type RowOverflowMenuProps, SIDE_PANEL_EMPTY_ACTIONS, STATUS_TAG_PRESETS, SandboxPermissionPrompt, type SandboxPermissionPromptData, type SandboxPermissionPromptProps, type ScheduledTaskCardStatus, ScheduledTaskCardView, type ScheduledTaskCardViewModel, type ScheduledTaskCardViewProps, ScheduledTaskDeleteDialog, type ScheduledTaskDeleteDialogProps, type ScheduledTaskDetailModel, type ScheduledTaskDetailStatusKey, ScheduledTaskDetailView, type ScheduledTaskDetailViewProps, type ScheduledTaskRunStatusKey, type ScheduledTaskRunViewModel, ScheduledTasksSpaceView, type ScheduledTasksSpaceViewProps, Search, SearchInput, type SearchInputProps, SearchResult, type SearchResultItem, type SearchResultProps, Section, type SectionProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, type SegmentedControlSize, type SegmentedControlVariant, Select, type SelectOption, type SelectProps, SelectTrigger, type SelectTriggerProps, type SelectedOptionLocatorOptions, SelectionBulkBar, type SelectionBulkBarProps, SeriesChart, type SeriesChartProps, Server, SessionContextAgentView, type SessionContextAgentViewProps, SessionContextMenuView, type SessionContextMenuViewProps, type SessionContextPanelSection, type SessionContextPanelSectionState, SessionContextPanelView, type SessionContextPanelViewProps, Settings, SettingsPathDescription, type SettingsPathDescriptionProps, SettingsRow, type SettingsRowProps, Share, type ShareAccessScope, type ShareMemberSearch, ShareSettingsDialogView, ShareSettingsEditorView, type ShareSettingsEditorViewProps, type ShareSettingsMember, ShareStrip, type ShareStripProps, type SharedResourceItem, Shield, type ShortcutGroup, ShortcutGroupTable, type ShortcutGroupTableProps, type ShortcutItem, type ShortcutKey, ShortcutSheet, type ShortcutSheetProps, SidePanelEmpty, type SidePanelEmptyAction, type SidePanelEmptyProps, SidebarIcon, SidebarShell, type SidebarShellProps, SidebarToggle, type SidebarToggleProps, SitesArtifactCardView, type SitesArtifactCardViewProps, Skeleton, type SkeletonProps, type SkillAvatarGlyph, type SkillAvatarTone, SkillAvatarView, type SkillAvatarViewProps, SkillCardView, type SkillCardViewProps, SkillDetailPanelView, type SkillDetailPanelViewProps, SkillDetailView, type SkillDetailViewProps, SkillImportDialogView, type SkillImportDialogViewProps, type SkillImportItemStatus, SkillImportResultDialogView, type SkillImportResultDialogViewProps, type SkillImportResultItemView, Skills, type Slide, SnapshotContentView, type SnapshotContentViewProps, SnapshotImageExportView, type SnapshotImageExportViewProps, type SnapshotMessageView, Sort, Sparkles, Spinner, type SpinnerProps, type SpinnerSize, Splash, type SplashProps, type StarterCapsuleOption, StarterCapsules, type StarterCapsulesProps, StatusTag, type StatusTagPreset, type StatusTagProps, type StatusTagTone, Stop, SubAgentPane, type SubAgentPaneProps, type SubAgentPaneTurn, type SubAgentProcess, type SubAgentProcessStatus, SubAgentThread, type SubAgentThreadProps, SuccessCircle, Sun, Switch, type SwitchProps, type TabItem, Tabs, type TabsProps, type TabsSize, Tag, type TagProps, type TagShape, type TagSize, type TagVariant, TenantTheme, type TenantThemeValidationResult, Terminal, TerminalPane, type TerminalPaneProps, Theme, type ThemeContextValue, ThemeProvider, type ThemeProviderProps, Thinking, type ThinkingProps, ThreadDot, TimePicker, type TimePickerProps, TitleBar, type TitleBarProps, Toast, type ToastProps, ToastRegion, type ToastRegionProps, type ToastVariant, type ToolArtifactView, ToolCallRow, type ToolCallRowProps, type ToolCallRowState, ToolDetailModalView, type ToolDetailModalViewProps, type ToolDetailStatus, Tooltip, type TooltipAlign, type TooltipProps, type TooltipSide, TraceDot, type TraceDotProps, Transcript, type TranscriptMode, type TranscriptProps, TranscriptSpine, type TranscriptSpineProps, type TranscriptSurface, type TranscriptToolCall, type TranscriptTurn, Trash, UiLocale, type UiLocaleDictionary, UiLocaleProvider, type UiLocaleProviderProps, type UiMessageKey, type UiMessageTranslator, type UiTranslationValues, type UiTranslator, UninstallConfirmDialog, UnreadDivider, type UnreadDividerProps, Usage, UserTurn, type UserTurnProps, Volume, WORKBENCH_SIDE_PANEL_WIDTH, WarningTriangle, WeCom, WebPreviewConsole, type WebPreviewConsoleEntry, type WebPreviewConsoleLevel, type WebPreviewConsoleProps, WebPreviewDialog, type WebPreviewDialogLabels, type WebPreviewDialogProps, WebPreviewNav, type WebPreviewNavLabels, type WebPreviewNavProps, WebPreviewShell, type WebPreviewShellProps, type WebPreviewTab, WindowBand, type WindowBandProps, WindowChrome, type WindowChromeProps, WindowTrafficLightGhost, type WindowTrafficLightGhostProps, WorkbenchPreviewLayout, WorkbenchSidePanel, WorkbenchSidePanelBody, type WorkbenchSidePanelProps, type WorkbenchSidePanelWidth, WorkspaceMigrateConfirm, type WorkspaceMigrateConfirmProps, Zap, ZoomIn, ZoomOut, basenameFromLocalPath, catalogInstallStatus, collectMarkdownFileRefs, configureUiMessageTranslator, createUiTranslator, dataSeriesColor, desktopToolStatusLabel, findFixedOffsetAncestor, formatExecutionFailure, formatExecutionMeta, formatProcessDuration, formatShortcut, formatShortcutKeys, formatToolMetrics, hashToDataColor, inferAttachmentMeta, isImeCommitEnter, isMacHostPlatform, localizeUiCopy, normalizePreviewUrl, owFloatingActionClass, parseTenantTheme, ptToPx, resolveFileIcon, skillAvatarTone, skillGlyph, uiMessage, updateRowText, useBranding, useImeAwareEnter, useSelectedOptionLocator, useTheme, useUiLocale };
|
|
11135
|
+
export { ACCOUNT_CREDITS_WARN_RATIO, ActionStatus, type ActionStatusProps, AgentLoopSegment, type AgentLoopSegmentProps, AgentTurn, type AgentTurnProps, AppLayout, type AppLayoutProps, Archive, Arrow, ArrowDown, ArtifactCard, type ArtifactCardProps, type ArtifactOpenWithApp, ArtifactPreviewCard, type ArtifactPreviewCardProps, type ArtifactPreviewPanelMode, ArtifactPreviewSidebarView, type ArtifactPreviewSidebarViewProps, type ArtifactPreviewView, ArtifactTrail, AskQuestionCardView, type AskQuestionCardViewProps, type AskQuestionRecapItem, AssistantChannelCard, type AssistantChannelCardProps, type AssistantChannelPlatform, Atom, Attachment, type AttachmentItem, AttachmentList, type AttachmentListProps, type AttachmentMenuOption, type AttachmentOpenOption, type AttachmentProps, type AttachmentStatus, type AttachmentTone, type AttachmentVariant, AuthorizationCard, type AuthorizationCardProps, Avatar, type AvatarProps, type AvatarVariant, BEACON_ICON_NAMES, BackButton, type BackButtonProps, BackTop, type BackTopProps, Badge, type BadgeProps, type BadgeVariant, Banner, type BannerProps, type BannerVariant, BarChart, type BarChartDatum, type BarChartProps, BeaconIcon, type BeaconIconName, type BeaconIconProps, BeaconSpinner, type BeaconSpinnerProps, Bell, Bolt, Brain, Branch, BranchDivider, type BranchDividerProps, BrandPreviewScope, type BrandPreviewScopeProps, BrandTheme, type BrandingContextValue, BrowserAnnotationPopupView, type BrowserAnnotationPopupViewProps, type BrowserClearDataOptions, type BrowserDevicePreset, type BrowserDeviceToolbarLabels, BrowserDeviceToolbarView, type BrowserDeviceToolbarViewProps, BrowserFindBarView, type BrowserFindBarViewProps, type BrowserImportDialogLabels, BrowserImportDialogView, type BrowserImportDialogViewProps, type BrowserImportOptions, type BrowserImportProfile, BrowserLoadErrorView, type BrowserLoadErrorViewProps, type BrowserMoreMenuLabels, BrowserMoreMenuView, type BrowserMoreMenuViewProps, BrowserNavBarView, type BrowserNavBarViewProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, Card, CardGridSkeleton, type CardProps, CatalogEmptyState, type CatalogEmptyStateProps, type ChartSeries, Check, Checkbox, type CheckboxProps, ChevDown, ChevLeft, ChevRight, ChevUp, Chip, type ChipDotTone, type ChipProps, type ChipShape, type ChipTone, Circle, ClipboardList, Clock, Close, CodeBlock, type CodeBlockProps, CodeDiff, type CodeDiffProps, CodePreview, type CodePreviewProps, CommandPalette, type CommandPaletteGroup, type CommandPaletteItem, type CommandPaletteProps, CommentPlus, Compass, Composer, ComposerAudioSpectrum, type ComposerAudioSpectrumProps, ComposerAuthorization, type ComposerAuthorizationOption, type ComposerAuthorizationProps, type ComposerMention, ComposerMentions, type ComposerMentionsProps, ComposerMenu, type ComposerMenuAction, type ComposerMenuGroup, type ComposerMenuItem, ComposerMenuPopover, type ComposerMenuPopoverProps, type ComposerMenuProps, type ComposerMode, ComposerPopover, type ComposerPopoverProps, type ComposerProjectOption, ComposerProjectPicker, type ComposerProjectPickerProps, type ComposerProps, ComposerQueue, type ComposerQueueItem, type ComposerQueueItemKind, type ComposerQueueItemStatus, type ComposerQueueNotice, type ComposerQueueProps, type ComposerQueueTone, type ComposerSubmitState, ComposerVoiceInput, type ComposerVoiceInputProps, CompressionDivider, type CompressionDividerProps, ComputerUseWindowOverlayView, type ComputerUseWindowOverlayViewProps, ContentRecommendation, type ContentRecommendationItem, type ContentRecommendationProps, ContextUsage, type ContextUsageIndicatorCopy, ContextUsageIndicatorView, type ContextUsageIndicatorViewProps, type ContextUsageProps, Copy, Cpu, CreateProjectDialog, type CreateProjectDialogProps, CsvPreview, type CsvPreviewProps, Cut, DESKTOP_ACCOUNT_MENU_WIDTH, DataManagementSectionView, type DataManagementSectionViewProps, DataTable, type DataTableAlign, type DataTableColumn, type DataTableDensity, type DataTableProps, type DataTableSort, type DataTableSortDirection, DataTableToolbar, type DataTableToolbarProps, DateDivider, type DateDividerProps, DesktopAboutSettingsView, type DesktopAboutSettingsViewCopy, type DesktopAboutSettingsViewProps, type DesktopAccountMenuCredits, type DesktopAccountMenuPlan, type DesktopAccountMenuUpdate, type DesktopAccountMenuUpdateState, type DesktopAccountMenuUser, DesktopAccountMenuView, type DesktopAccountMenuViewProps, DesktopAgentCardView, type DesktopAgentCardViewProps, DesktopAgentDetailActions, type DesktopAgentDetailActionsProps, type DesktopAgentDetailItemView, DesktopAgentDetailView, type DesktopAgentDetailViewProps, type DesktopAgentMemberView, type DesktopAgentOverviewItemView, type DesktopAgentOverviewLinkView, DesktopAgentOverviewView, DesktopAgentRosterView, type DesktopAgentRosterViewProps, DesktopAppearanceSettings, type DesktopAppearanceSettingsCopy, type DesktopAppearanceSettingsProps, DesktopAssistantAdvanced, type DesktopAssistantAdvancedProps, DesktopAssistantBindCard, DesktopAssistantConfigActions, DesktopAssistantConfigContent, DesktopAssistantConfigFields, DesktopAssistantConfigLayout, type DesktopAssistantConfigValue, DesktopAssistantConfigView, type DesktopAssistantConfigViewProps, DesktopAssistantField, type DesktopAssistantFieldProps, DesktopAssistantFieldState, type DesktopAssistantFieldStateProps, DesktopAssistantFooterHint, type DesktopAssistantFooterHintProps, type DesktopAssistantPlatform, DesktopAssistantQr, DesktopAssistantScanHint, DesktopAssistantScanPanel, type DesktopAvailableUpdateView, type DesktopCatalogActionView, type DesktopCatalogCardMetaItem, DesktopCatalogCardView, type DesktopCatalogCardViewProps, DesktopCatalogDetailActions, type DesktopCatalogDetailActionsProps, DesktopCatalogDetailShell, type DesktopCatalogDetailShellProps, DesktopCatalogGridView, type DesktopCatalogGridViewProps, DesktopCatalogToolbarView, type DesktopCatalogToolbarViewProps, type DesktopChatAgentMessageView, DesktopChatAgentTurnView, type DesktopChatAgentTurnViewProps, type DesktopChatAttachmentView, DesktopChatCompressionDivider, type DesktopChatCompressionDividerProps, type DesktopChatContextView, DesktopChatEmptyStateView, type DesktopChatEmptyStateViewProps, DesktopChatHeaderView, type DesktopChatHeaderViewProps, DesktopChatHistoryEmptyStateView, type DesktopChatHistoryEmptyStateViewProps, type DesktopChatMessageFeedback, DesktopChatMessageView, type DesktopChatMessageViewProps, DesktopChatReconnectDivider, type DesktopChatReconnectDividerProps, type DesktopChatRunState, DesktopChatUserTurnView, type DesktopChatUserTurnViewProps, DesktopComposer, type DesktopComposerAddAction, type DesktopComposerContext, DesktopComposerModelButton, type DesktopComposerModelButtonProps, type DesktopComposerProps, type DesktopConnectorActionView, DesktopConnectorCardView, type DesktopConnectorCardViewProps, DesktopConnectorDetailView, type DesktopConnectorDetailViewProps, type DesktopConnectorMetaView, type DesktopConnectorToolView, type DesktopConversationGroupView, DesktopConversationView, type DesktopConversationViewProps, type DesktopDetailChipView, DesktopDetailChips, DesktopDetailList, type DesktopDetailListItemView, type DesktopDetailRowView, DesktopDetailRows, DesktopDetailSection, DesktopDetailText, type DesktopFontScale, DesktopHomeView, type DesktopHomeViewProps, DesktopLibraryAuthorizationDialog, type DesktopLibraryAuthorizationDialogCopy, type DesktopLibraryAuthorizationDialogProps, type DesktopLibraryAuthorizationScope, DesktopLibraryPageView, type DesktopLibraryPageViewProps, type DesktopOnboardingTourLabels, type DesktopOnboardingTourRect, type DesktopOnboardingTourStep, DesktopOnboardingTourView, type DesktopOnboardingTourViewProps, DesktopPet, type DesktopPetAnchor, type DesktopPetContentSize, type DesktopPetHandle, type DesktopPetNativeDragEvent, type DesktopPetProps, type DesktopPetSessionBubble, DesktopProcessStepGroupView, type DesktopProcessStepGroupViewProps, DesktopProcessTimelineView, type DesktopProcessTimelineViewProps, DesktopRuntimeSettingsView, type DesktopRuntimeSettingsViewProps, type DesktopRuntimeToolState, type DesktopRuntimeToolView, type DesktopSettingsMemoryItem, DesktopSettingsMemorySection, type DesktopSettingsMemorySectionGroup, type DesktopSettingsMemorySectionProps, type DesktopSettingsNavItem, DesktopSettingsView, type DesktopSettingsViewProps, DesktopShareSelectionBarView, type DesktopShareSelectionBarViewProps, type DesktopSidebarNavId, type DesktopSidebarProject, type DesktopSidebarSourceIcon, type DesktopSidebarThread, type DesktopSidebarUpdate, type DesktopSidebarUpdateState, type DesktopSidebarUser, DesktopSidebarView, type DesktopSidebarViewProps, type DesktopSiteItem, type DesktopSiteReleaseItem, DesktopSiteReleasesView, type DesktopSiteReleasesViewProps, DesktopSitesListView, type DesktopSitesListViewProps, type DesktopSkillsCategory, DesktopSkillsPageView, type DesktopSkillsPageViewProps, type DesktopSkillsSection, type DesktopTaskDetailKind, type DesktopTaskDetailLabels, type DesktopTaskDetailModel, type DesktopTaskDetailStatus, DesktopTaskDetailView, type DesktopTaskDetailViewProps, type DesktopToolCallInlineStatusMode, type DesktopToolCallListItem, type DesktopToolCallListKind, DesktopToolCallListView, type DesktopToolCallListViewProps, type DesktopToolCallStatus, DesktopToolCallView, type DesktopToolCallViewProps, type DesktopUnsupportedToggle, type DesktopUpdateProgressState, type DesktopUpdateProgressView, DesktopWorkbenchShell, type DesktopWorkbenchShellProps, type DesktopWorkbenchView, DetailOverflowMenu, DetailPanel, type DetailPanelProps, DetailScaffold, type DetailScaffoldProps, Device, Dialog, type DialogIconTone, type DialogProps, type DialogVariant, DingTalk, DingTalkAi, Dislike, Divider, type DividerProps, Doc, Download, DropZone, type DropZoneProps, Edit, ElementDispatcher, EmptyState, type EmptyStateProps, type EmptyStateSize, type EmptyStateVariant, ErrorCircle, ExecutionDetail, type ExecutionDetailProps, ExecutionSummary, type ExecutionSummaryProps, ExecutionSummaryRow, type ExecutionSummaryTool, type FeedbackCategoryValue, type FeedbackContextMenuAction, FeedbackContextMenuView, type FeedbackContextMenuViewProps, FeedbackDialogView, type FeedbackDialogViewProps, Feishu, Field, type FieldProps, type FieldShellVariants, FileBrowser, type FileBrowserBreadcrumb, FileBrowserPreviewState, type FileBrowserPreviewStateProps, type FileBrowserProps, FileIcon, type FileIconProps, type FilePreviewContentLabels, FilePreviewContentView, type FilePreviewContentViewProps, FilePreviewDialog, type FilePreviewDialogProps, FileTree, type FileTreeNode, type FileTreeProps, Filter, FilterBar, type FilterBarFilter, type FilterBarProps, Folder, FormField, type FormFieldProps, Gauge, Globe, GlyphToneProvider, Grid, HOME_STARTER_CAPSULES, Hand, Help, HomeBackdrop, type HomeBackdropProps, HostPlatform, IME_COMMIT_GUARD_MS, Icon, type IconName, type IconProps, Icons, Image, ImagePreview, type ImagePreviewCopy, type ImagePreviewItem, type ImagePreviewProps, type ImeCompositionEvent, type ImeKeyboardEvent, InfoCircle, InlineAttachment, type InlineAttachmentProps, InlineMessage, type InlineMessageProps, type InlineMessageTone, type InlineMessageVariant, JumpToLatest, type JumpToLatestProps, Key, KeyValueField, type KeyValueFieldProps, type KeyValuePair, Keyboard, Keycap, KeycapCombo, type KeycapComboProps, type KeycapProps, Layers, Like, LikeFill, ListRow, type ListRowControl, type ListRowDensity, ListRowGroup, type ListRowGroupProps, type ListRowProps, type ListRowSurface, Loader, type LocalImagePreviewResolver, type LocalLinkTargetOptions, type LocalMarkdownPreview, Lock, Logout, MENU_SEPARATOR, Mail, Markdown, MarkdownPreview, MarkdownPreviewDialog, type MarkdownPreviewDialogProps, type MarkdownPreviewProps, type MarkdownProps, Maximize, McpServerListView, type McpServerListViewProps, type McpServerViewModel, type McpServerViewStatus, Memo, Menu, type MenuEntry, type MenuGroupEntry, type MenuItem, type MenuItemVariants, type MenuProps, type MenuSeparatorEntry, MenuSurface, type MenuSurfaceProps, type MenuTriggerState, type MessageActionItem, type MessageActionKind, MessageActions, type MessageActionsProps, MessageFeedbackDialog, type MessageFeedbackDialogProps, type MessageFeedbackReasonCode, type MessageFeedbackSubmission, Mic, ModalityAudio, ModalityImage, ModalityText, ModalityVideo, ModelCatalogErrorState, type ModelCatalogErrorStateProps, type ModelModality, ModelModalityFlow, type ModelModalityFlowProps, ModelPickerList, type ModelPickerListDensity, type ModelPickerListProps, type ModelPickerOption, ModelSelect, type ModelSelectOption, type ModelSelectProps, type ModelThinkingEffort, ModelsSettingsSectionView, type ModelsSettingsSectionViewProps, Moon, More, NAV_MENU_DIVIDER, NavMenu, type NavMenuDividerType, type NavMenuEntry, type NavMenuItemType, type NavMenuProps, NewTask, NoPlanPanelView, type NoPlanPanelViewProps, type OfficeFileType, OfficePreview, OfficePreviewDialog, type OfficePreviewDialogProps, type OfficePreviewProps, OpenWithMenu, type OpenWithMenuProps, OrbitworkFontScale, type OrbitworkIconProps, OrbitworkLockup, type OrbitworkLockupProps, type OrbitworkLockupTheme, OrbitworkMark, type OrbitworkMarkProps, type OrbitworkMarkVariant, OrbitworkSkin, PT_TO_PX, Package, PageHead, type PageHeadProps, Pagination, type PaginationProps, PanelFold, PanelSidebar, PanelSidebarCollapse, Paperclip, Pause, PdfPageNav, PdfPreview, PdfPreviewDialog, type PdfPreviewDialogProps, type PdfPreviewProps, type PetAnimation, type PetManifest, type PetPosition, type PetToolbarItem, Pin, PlanCard, type PlanCardProps, type PlanCardStep, type PlanCardStepState, type PlanChoiceView, PlanEntitlementCard, type PlanEntitlementCardProps, type PlanEntitlementFeature, PlanEntitlementGrid, type PlanEntitlementGridProps, PlanFeatureIcon, type PlanFeatureIconKind, type PlanFeatureIconProps, type PlanSettingsChoiceView, PlanSettingsSectionView, type PlanSettingsSectionViewProps, type PlanSettingsStats, Play, Plus, Popover, type PopoverPlacement, type PopoverProps, type PptxElement, type PptxParseResult, PptxSlide, type PreviewSurface, PreviewSurfaceArea, ProgressBar, type ProgressBarProps, ProjectSelect, type ProjectSelectProps, Quote, Radio, RadioCardGroup, type RadioCardGroupProps, type RadioCardOption, RadioGroup, type RadioGroupProps, type RadioProps, Refresh, ResolvedTheme, ResourceConfirmation, ResourceDetailView, type ResourceListFailure, type ResourceListFilters, ResourceListView, ResourceNotice, type ResourceNoticeProps, ResourceOverviewView, ResourceReleasesView, type ResourceRow, type ResourceRowAction, ResourceRowActionDialog, type ResourceTab, ResourceWorkbenchView, RichCard, type RichCardProps, type RichCardVariant, RichLink, type RichLinkProps, RichList, type RichListProps, type RichResourceItem, type RichResourceListProps, type RichTextListProps, Rotate, RowOverflowMenu, type RowOverflowMenuItem, type RowOverflowMenuProps, SIDE_PANEL_EMPTY_ACTIONS, STATUS_TAG_PRESETS, SandboxPermissionPrompt, type SandboxPermissionPromptData, type SandboxPermissionPromptProps, type ScheduledTaskCardStatus, ScheduledTaskCardView, type ScheduledTaskCardViewModel, type ScheduledTaskCardViewProps, ScheduledTaskDeleteDialog, type ScheduledTaskDeleteDialogProps, type ScheduledTaskDetailModel, type ScheduledTaskDetailStatusKey, ScheduledTaskDetailView, type ScheduledTaskDetailViewProps, type ScheduledTaskRunStatusKey, type ScheduledTaskRunViewModel, ScheduledTasksSpaceView, type ScheduledTasksSpaceViewProps, Search, SearchInput, type SearchInputProps, SearchResult, type SearchResultItem, type SearchResultProps, Section, type SectionProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, type SegmentedControlSize, type SegmentedControlVariant, Select, type SelectOption, type SelectProps, SelectTrigger, type SelectTriggerProps, type SelectedOptionLocatorOptions, SelectionBulkBar, type SelectionBulkBarProps, SeriesChart, type SeriesChartProps, Server, SessionContextAgentView, type SessionContextAgentViewProps, SessionContextMenuView, type SessionContextMenuViewProps, type SessionContextPanelSection, type SessionContextPanelSectionState, SessionContextPanelView, type SessionContextPanelViewProps, Settings, SettingsPathDescription, type SettingsPathDescriptionProps, SettingsRow, type SettingsRowProps, Share, type ShareAccessScope, type ShareMemberSearch, ShareSettingsDialogView, ShareSettingsEditorView, type ShareSettingsEditorViewProps, type ShareSettingsMember, ShareStrip, type ShareStripProps, type SharedResourceItem, Shield, type ShortcutGroup, ShortcutGroupTable, type ShortcutGroupTableProps, type ShortcutItem, type ShortcutKey, ShortcutSheet, type ShortcutSheetProps, SidePanelEmpty, type SidePanelEmptyAction, type SidePanelEmptyProps, SidebarIcon, SidebarShell, type SidebarShellProps, SidebarToggle, type SidebarToggleProps, SitesArtifactCardView, type SitesArtifactCardViewProps, Skeleton, type SkeletonProps, type SkillAvatarGlyph, type SkillAvatarTone, SkillAvatarView, type SkillAvatarViewProps, SkillCardView, type SkillCardViewProps, SkillDetailPanelView, type SkillDetailPanelViewProps, SkillDetailView, type SkillDetailViewProps, SkillImportDialogView, type SkillImportDialogViewProps, type SkillImportItemStatus, SkillImportResultDialogView, type SkillImportResultDialogViewProps, type SkillImportResultItemView, Skills, type Slide, SnapshotContentView, type SnapshotContentViewProps, SnapshotImageExportView, type SnapshotImageExportViewProps, type SnapshotMessageView, Sort, Sparkles, Spinner, type SpinnerProps, type SpinnerSize, Splash, type SplashProps, type StarterCapsuleOption, StarterCapsules, type StarterCapsulesProps, StatusTag, type StatusTagPreset, type StatusTagProps, type StatusTagTone, Stop, SubAgentPane, type SubAgentPaneProps, type SubAgentPaneTurn, type SubAgentProcess, type SubAgentProcessStatus, SubAgentThread, type SubAgentThreadProps, SuccessCircle, Sun, Switch, type SwitchProps, type TabItem, Tabs, type TabsProps, type TabsSize, Tag, type TagProps, type TagShape, type TagSize, type TagVariant, TenantTheme, type TenantThemeValidationResult, Terminal, TerminalPane, type TerminalPaneProps, Theme, type ThemeContextValue, ThemeProvider, type ThemeProviderProps, Thinking, type ThinkingProps, ThreadDot, TimePicker, type TimePickerProps, TitleBar, type TitleBarProps, Toast, type ToastProps, ToastRegion, type ToastRegionProps, type ToastVariant, type ToolArtifactView, ToolCallRow, type ToolCallRowProps, type ToolCallRowState, ToolDetailModalView, type ToolDetailModalViewProps, type ToolDetailStatus, Tooltip, type TooltipAlign, type TooltipProps, type TooltipSide, TraceDot, type TraceDotProps, Transcript, type TranscriptMode, type TranscriptProps, TranscriptSpine, type TranscriptSpineProps, type TranscriptSurface, type TranscriptToolCall, type TranscriptTurn, Trash, UiLocale, type UiLocaleDictionary, UiLocaleProvider, type UiLocaleProviderProps, type UiMessageKey, type UiMessageTranslator, type UiTranslationValues, type UiTranslator, UninstallConfirmDialog, UnreadDivider, type UnreadDividerProps, Usage, UserTurn, type UserTurnProps, Volume, WORKBENCH_SIDE_PANEL_WIDTH, WarningTriangle, WeCom, WebPreviewConsole, type WebPreviewConsoleEntry, type WebPreviewConsoleLevel, type WebPreviewConsoleProps, WebPreviewDialog, type WebPreviewDialogLabels, type WebPreviewDialogProps, WebPreviewNav, type WebPreviewNavLabels, type WebPreviewNavProps, WebPreviewShell, type WebPreviewShellProps, type WebPreviewTab, WindowBand, type WindowBandProps, WindowChrome, type WindowChromeProps, WindowTrafficLightGhost, type WindowTrafficLightGhostProps, WorkbenchPreviewLayout, WorkbenchSidePanel, WorkbenchSidePanelBody, type WorkbenchSidePanelProps, type WorkbenchSidePanelWidth, WorkspaceMigrateConfirm, type WorkspaceMigrateConfirmProps, Zap, ZoomIn, ZoomOut, basenameFromLocalPath, catalogInstallStatus, collectMarkdownFileRefs, configureUiMessageTranslator, createUiTranslator, dataSeriesColor, desktopToolStatusLabel, findFixedOffsetAncestor, formatExecutionFailure, formatExecutionMeta, formatProcessDuration, formatShortcut, formatShortcutKeys, formatToolMetrics, hashToDataColor, inferAttachmentMeta, isImeCommitEnter, isMacHostPlatform, localizeUiCopy, normalizePreviewUrl, owFloatingActionClass, parseTenantTheme, ptToPx, resolveFileIcon, skillAvatarTone, skillGlyph, uiMessage, updateRowText, useBranding, useImeAwareEnter, useSelectedOptionLocator, useTheme, useUiLocale };
|
package/dist/index.d.ts
CHANGED
|
@@ -6,8 +6,9 @@ import { H as HostPlatform } from './index-nLo7jMlP.js';
|
|
|
6
6
|
export { D as DESKTOP_LOGIN_CLAIM, a as DESKTOP_LOGIN_CLAIM_NOTE, b as DesktopLoginLabels, c as DesktopLoginQr, d as DesktopLoginStage, e as DesktopLoginView, f as DesktopLoginViewProps, L as LoginProviderKind, g as LoginProviderOption } from './index-nLo7jMlP.js';
|
|
7
7
|
import { LocaleDictionary, TranslationValues, Translator, UiLocale } from './locale.js';
|
|
8
8
|
export { DEFAULT_UI_LOCALE, UI_LOCALES, isUiLocale } from './locale.js';
|
|
9
|
-
import {
|
|
10
|
-
export {
|
|
9
|
+
import { d as Theme, R as ResolvedTheme, e as OrbitworkSkin, O as OrbitworkFontScale, B as BrandTheme, a as TenantTheme, U as UnifiedTheme } from './unifiedTheme-DQ-sETKO.js';
|
|
10
|
+
export { L as LocalizedBranding, f as ORBITWORK_FONT_SCALES, g as OrbitworkSkinChatBackgroundMask, h as OrbitworkSkinTokens, S as SkinValidationResult, T as TenantBranding, i as TenantThemeColors, j as hasOrbitworkSkinChatBackground, k as isOrbitworkFontScale, l as localizedCopy, o as orbitworkSkinChatBackgroundMaskColor, p as parseOrbitworkSkin, r as resolveOrbitworkFontScale, n as resolveOrbitworkSkinChatBackgroundMask } from './unifiedTheme-DQ-sETKO.js';
|
|
11
|
+
export { BUILTIN_ORBITWORK_SKINS, DEFAULT_ORBITWORK_SKIN_ID } from './appearance.js';
|
|
11
12
|
|
|
12
13
|
declare const avatarVariants: (props?: ({
|
|
13
14
|
size?: "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
@@ -8792,6 +8793,11 @@ declare function DesktopConnectorDetailView({ logo, name, author, version, descr
|
|
|
8792
8793
|
interface DesktopHomeViewProps {
|
|
8793
8794
|
/** 主视觉句(裁决 18 定的品牌口吻)。 */
|
|
8794
8795
|
title?: string;
|
|
8796
|
+
/**
|
|
8797
|
+
* 品牌 Logo 覆盖(OEM/Dev Host 运行时品牌):传入时用该图片(34×34 等
|
|
8798
|
+
* 大 contain)替换 §12 锁定件 `OrbitworkMark`。缺省保持官方锁定件。
|
|
8799
|
+
*/
|
|
8800
|
+
brandLogoSrc?: string;
|
|
8795
8801
|
/** 背景线纹槽:传 `<HomeBackdrop />`。**只有主屏传**,别的屏留空——它不是全局水印。 */
|
|
8796
8802
|
backdrop?: ReactNode;
|
|
8797
8803
|
/** 起手胶囊槽:传 `<StarterCapsules />`。 */
|
|
@@ -8804,7 +8810,7 @@ interface DesktopHomeViewProps {
|
|
|
8804
8810
|
children?: ReactNode;
|
|
8805
8811
|
className?: string;
|
|
8806
8812
|
}
|
|
8807
|
-
declare function DesktopHomeView({ title, backdrop, capsules, mounts, onDismissMounts, children, className, }: DesktopHomeViewProps): react.JSX.Element;
|
|
8813
|
+
declare function DesktopHomeView({ title, brandLogoSrc, backdrop, capsules, mounts, onDismissMounts, children, className, }: DesktopHomeViewProps): react.JSX.Element;
|
|
8808
8814
|
|
|
8809
8815
|
type DesktopLibraryAuthorizationScope = {
|
|
8810
8816
|
title: string;
|
|
@@ -9373,6 +9379,11 @@ interface DesktopSidebarViewProps {
|
|
|
9373
9379
|
onShareThread: (threadId: string) => void;
|
|
9374
9380
|
onFeedback: () => void;
|
|
9375
9381
|
onLogout: () => void;
|
|
9382
|
+
/**
|
|
9383
|
+
* 品牌 Logo 覆盖(OEM/Dev Host 运行时品牌):传入时用该图片替换 §12 锁定
|
|
9384
|
+
* 排字标 `OrbitworkLockup`(等高校 20px,宽度随图片比例)。缺省保持官方锁定件。
|
|
9385
|
+
*/
|
|
9386
|
+
brandLogoSrc?: string;
|
|
9376
9387
|
update?: DesktopSidebarUpdate;
|
|
9377
9388
|
onUpdateClick?: () => void;
|
|
9378
9389
|
onInstallUpdate?: () => Promise<void> | void;
|
|
@@ -10585,6 +10596,28 @@ declare function PdfPageNav({ page, totalPages, onPageChange, showReadout, }: {
|
|
|
10585
10596
|
type PdfPreviewDialogProps = Omit<FilePreviewDialogProps, "children" | "surface"> & Pick<PdfPreviewProps, "src" | "page" | "onPageChange" | "totalPages">;
|
|
10586
10597
|
declare function PdfPreviewDialog({ src, page, onPageChange, totalPages, meta, actions, ...shell }: PdfPreviewDialogProps): react.JSX.Element;
|
|
10587
10598
|
|
|
10599
|
+
interface BrandPreviewScopeProps {
|
|
10600
|
+
/** Merged brand layer (OEM build-time shape); applied only inside this scope. */
|
|
10601
|
+
brandTheme: BrandTheme;
|
|
10602
|
+
/** Resolved color mode; also stamped as data-theme on the scope element. */
|
|
10603
|
+
mode: ResolvedTheme;
|
|
10604
|
+
/** Locale used to resolve localized branding copy. */
|
|
10605
|
+
locale?: string;
|
|
10606
|
+
className?: string;
|
|
10607
|
+
children: ReactNode;
|
|
10608
|
+
}
|
|
10609
|
+
/**
|
|
10610
|
+
* Scoped brand preview container for host apps embedding real ui components
|
|
10611
|
+
* (login/about/sidebar views) inside their own pages. Unlike ThemeProvider —
|
|
10612
|
+
* which writes --ow-* custom properties onto document.documentElement — this
|
|
10613
|
+
* applies the merged unified theme to a local wrapper div carrying the
|
|
10614
|
+
* `ow-ui-scope` class (paired with `styles/core.scoped.css`) and `data-theme`,
|
|
10615
|
+
* so the host page keeps its own styling. Also provides BrandingContext so
|
|
10616
|
+
* components reading `useBranding()` (e.g. the sidebar brand row) see the
|
|
10617
|
+
* brand's localized copy.
|
|
10618
|
+
*/
|
|
10619
|
+
declare function BrandPreviewScope({ brandTheme, mode, locale, className, children }: BrandPreviewScopeProps): react.JSX.Element;
|
|
10620
|
+
|
|
10588
10621
|
type McpServerViewStatus = "available" | "configured" | "auto_disabled" | "starting" | "restarting" | "degraded" | "error" | "missing" | "sidecar_error" | "unknown";
|
|
10589
10622
|
interface McpServerViewModel {
|
|
10590
10623
|
id: string;
|
|
@@ -11099,4 +11132,4 @@ type LocalLinkTargetOptions = {
|
|
|
11099
11132
|
declare function basenameFromLocalPath(path: string): string;
|
|
11100
11133
|
declare function collectMarkdownFileRefs(text: string, seen: Set<string>, refs: AttachmentItem[], options?: LocalLinkTargetOptions): void;
|
|
11101
11134
|
|
|
11102
|
-
export { ACCOUNT_CREDITS_WARN_RATIO, ActionStatus, type ActionStatusProps, AgentLoopSegment, type AgentLoopSegmentProps, AgentTurn, type AgentTurnProps, AppLayout, type AppLayoutProps, Archive, Arrow, ArrowDown, ArtifactCard, type ArtifactCardProps, type ArtifactOpenWithApp, ArtifactPreviewCard, type ArtifactPreviewCardProps, type ArtifactPreviewPanelMode, ArtifactPreviewSidebarView, type ArtifactPreviewSidebarViewProps, type ArtifactPreviewView, ArtifactTrail, AskQuestionCardView, type AskQuestionCardViewProps, type AskQuestionRecapItem, AssistantChannelCard, type AssistantChannelCardProps, type AssistantChannelPlatform, Atom, Attachment, type AttachmentItem, AttachmentList, type AttachmentListProps, type AttachmentMenuOption, type AttachmentOpenOption, type AttachmentProps, type AttachmentStatus, type AttachmentTone, type AttachmentVariant, AuthorizationCard, type AuthorizationCardProps, Avatar, type AvatarProps, type AvatarVariant, BEACON_ICON_NAMES, BackButton, type BackButtonProps, BackTop, type BackTopProps, Badge, type BadgeProps, type BadgeVariant, Banner, type BannerProps, type BannerVariant, BarChart, type BarChartDatum, type BarChartProps, BeaconIcon, type BeaconIconName, type BeaconIconProps, BeaconSpinner, type BeaconSpinnerProps, Bell, Bolt, Brain, Branch, BranchDivider, type BranchDividerProps, BrandTheme, type BrandingContextValue, BrowserAnnotationPopupView, type BrowserAnnotationPopupViewProps, type BrowserClearDataOptions, type BrowserDevicePreset, type BrowserDeviceToolbarLabels, BrowserDeviceToolbarView, type BrowserDeviceToolbarViewProps, BrowserFindBarView, type BrowserFindBarViewProps, type BrowserImportDialogLabels, BrowserImportDialogView, type BrowserImportDialogViewProps, type BrowserImportOptions, type BrowserImportProfile, BrowserLoadErrorView, type BrowserLoadErrorViewProps, type BrowserMoreMenuLabels, BrowserMoreMenuView, type BrowserMoreMenuViewProps, BrowserNavBarView, type BrowserNavBarViewProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, Card, CardGridSkeleton, type CardProps, CatalogEmptyState, type CatalogEmptyStateProps, type ChartSeries, Check, Checkbox, type CheckboxProps, ChevDown, ChevLeft, ChevRight, ChevUp, Chip, type ChipDotTone, type ChipProps, type ChipShape, type ChipTone, Circle, ClipboardList, Clock, Close, CodeBlock, type CodeBlockProps, CodeDiff, type CodeDiffProps, CodePreview, type CodePreviewProps, CommandPalette, type CommandPaletteGroup, type CommandPaletteItem, type CommandPaletteProps, CommentPlus, Compass, Composer, ComposerAudioSpectrum, type ComposerAudioSpectrumProps, ComposerAuthorization, type ComposerAuthorizationOption, type ComposerAuthorizationProps, type ComposerMention, ComposerMentions, type ComposerMentionsProps, ComposerMenu, type ComposerMenuAction, type ComposerMenuGroup, type ComposerMenuItem, ComposerMenuPopover, type ComposerMenuPopoverProps, type ComposerMenuProps, type ComposerMode, ComposerPopover, type ComposerPopoverProps, type ComposerProjectOption, ComposerProjectPicker, type ComposerProjectPickerProps, type ComposerProps, ComposerQueue, type ComposerQueueItem, type ComposerQueueItemKind, type ComposerQueueItemStatus, type ComposerQueueNotice, type ComposerQueueProps, type ComposerQueueTone, type ComposerSubmitState, ComposerVoiceInput, type ComposerVoiceInputProps, CompressionDivider, type CompressionDividerProps, ComputerUseWindowOverlayView, type ComputerUseWindowOverlayViewProps, ContentRecommendation, type ContentRecommendationItem, type ContentRecommendationProps, ContextUsage, type ContextUsageIndicatorCopy, ContextUsageIndicatorView, type ContextUsageIndicatorViewProps, type ContextUsageProps, Copy, Cpu, CreateProjectDialog, type CreateProjectDialogProps, CsvPreview, type CsvPreviewProps, Cut, DESKTOP_ACCOUNT_MENU_WIDTH, DataManagementSectionView, type DataManagementSectionViewProps, DataTable, type DataTableAlign, type DataTableColumn, type DataTableDensity, type DataTableProps, type DataTableSort, type DataTableSortDirection, DataTableToolbar, type DataTableToolbarProps, DateDivider, type DateDividerProps, DesktopAboutSettingsView, type DesktopAboutSettingsViewCopy, type DesktopAboutSettingsViewProps, type DesktopAccountMenuCredits, type DesktopAccountMenuPlan, type DesktopAccountMenuUpdate, type DesktopAccountMenuUpdateState, type DesktopAccountMenuUser, DesktopAccountMenuView, type DesktopAccountMenuViewProps, DesktopAgentCardView, type DesktopAgentCardViewProps, DesktopAgentDetailActions, type DesktopAgentDetailActionsProps, type DesktopAgentDetailItemView, DesktopAgentDetailView, type DesktopAgentDetailViewProps, type DesktopAgentMemberView, type DesktopAgentOverviewItemView, type DesktopAgentOverviewLinkView, DesktopAgentOverviewView, DesktopAgentRosterView, type DesktopAgentRosterViewProps, DesktopAppearanceSettings, type DesktopAppearanceSettingsCopy, type DesktopAppearanceSettingsProps, DesktopAssistantAdvanced, type DesktopAssistantAdvancedProps, DesktopAssistantBindCard, DesktopAssistantConfigActions, DesktopAssistantConfigContent, DesktopAssistantConfigFields, DesktopAssistantConfigLayout, type DesktopAssistantConfigValue, DesktopAssistantConfigView, type DesktopAssistantConfigViewProps, DesktopAssistantField, type DesktopAssistantFieldProps, DesktopAssistantFieldState, type DesktopAssistantFieldStateProps, DesktopAssistantFooterHint, type DesktopAssistantFooterHintProps, type DesktopAssistantPlatform, DesktopAssistantQr, DesktopAssistantScanHint, DesktopAssistantScanPanel, type DesktopAvailableUpdateView, type DesktopCatalogActionView, type DesktopCatalogCardMetaItem, DesktopCatalogCardView, type DesktopCatalogCardViewProps, DesktopCatalogDetailActions, type DesktopCatalogDetailActionsProps, DesktopCatalogDetailShell, type DesktopCatalogDetailShellProps, DesktopCatalogGridView, type DesktopCatalogGridViewProps, DesktopCatalogToolbarView, type DesktopCatalogToolbarViewProps, type DesktopChatAgentMessageView, DesktopChatAgentTurnView, type DesktopChatAgentTurnViewProps, type DesktopChatAttachmentView, DesktopChatCompressionDivider, type DesktopChatCompressionDividerProps, type DesktopChatContextView, DesktopChatEmptyStateView, type DesktopChatEmptyStateViewProps, DesktopChatHeaderView, type DesktopChatHeaderViewProps, DesktopChatHistoryEmptyStateView, type DesktopChatHistoryEmptyStateViewProps, type DesktopChatMessageFeedback, DesktopChatMessageView, type DesktopChatMessageViewProps, DesktopChatReconnectDivider, type DesktopChatReconnectDividerProps, type DesktopChatRunState, DesktopChatUserTurnView, type DesktopChatUserTurnViewProps, DesktopComposer, type DesktopComposerAddAction, type DesktopComposerContext, DesktopComposerModelButton, type DesktopComposerModelButtonProps, type DesktopComposerProps, type DesktopConnectorActionView, DesktopConnectorCardView, type DesktopConnectorCardViewProps, DesktopConnectorDetailView, type DesktopConnectorDetailViewProps, type DesktopConnectorMetaView, type DesktopConnectorToolView, type DesktopConversationGroupView, DesktopConversationView, type DesktopConversationViewProps, type DesktopDetailChipView, DesktopDetailChips, DesktopDetailList, type DesktopDetailListItemView, type DesktopDetailRowView, DesktopDetailRows, DesktopDetailSection, DesktopDetailText, type DesktopFontScale, DesktopHomeView, type DesktopHomeViewProps, DesktopLibraryAuthorizationDialog, type DesktopLibraryAuthorizationDialogCopy, type DesktopLibraryAuthorizationDialogProps, type DesktopLibraryAuthorizationScope, DesktopLibraryPageView, type DesktopLibraryPageViewProps, type DesktopOnboardingTourLabels, type DesktopOnboardingTourRect, type DesktopOnboardingTourStep, DesktopOnboardingTourView, type DesktopOnboardingTourViewProps, DesktopPet, type DesktopPetAnchor, type DesktopPetContentSize, type DesktopPetHandle, type DesktopPetNativeDragEvent, type DesktopPetProps, type DesktopPetSessionBubble, DesktopProcessStepGroupView, type DesktopProcessStepGroupViewProps, DesktopProcessTimelineView, type DesktopProcessTimelineViewProps, DesktopRuntimeSettingsView, type DesktopRuntimeSettingsViewProps, type DesktopRuntimeToolState, type DesktopRuntimeToolView, type DesktopSettingsMemoryItem, DesktopSettingsMemorySection, type DesktopSettingsMemorySectionGroup, type DesktopSettingsMemorySectionProps, type DesktopSettingsNavItem, DesktopSettingsView, type DesktopSettingsViewProps, DesktopShareSelectionBarView, type DesktopShareSelectionBarViewProps, type DesktopSidebarNavId, type DesktopSidebarProject, type DesktopSidebarSourceIcon, type DesktopSidebarThread, type DesktopSidebarUpdate, type DesktopSidebarUpdateState, type DesktopSidebarUser, DesktopSidebarView, type DesktopSidebarViewProps, type DesktopSiteItem, type DesktopSiteReleaseItem, DesktopSiteReleasesView, type DesktopSiteReleasesViewProps, DesktopSitesListView, type DesktopSitesListViewProps, type DesktopSkillsCategory, DesktopSkillsPageView, type DesktopSkillsPageViewProps, type DesktopSkillsSection, type DesktopTaskDetailKind, type DesktopTaskDetailLabels, type DesktopTaskDetailModel, type DesktopTaskDetailStatus, DesktopTaskDetailView, type DesktopTaskDetailViewProps, type DesktopToolCallInlineStatusMode, type DesktopToolCallListItem, type DesktopToolCallListKind, DesktopToolCallListView, type DesktopToolCallListViewProps, type DesktopToolCallStatus, DesktopToolCallView, type DesktopToolCallViewProps, type DesktopUnsupportedToggle, type DesktopUpdateProgressState, type DesktopUpdateProgressView, DesktopWorkbenchShell, type DesktopWorkbenchShellProps, type DesktopWorkbenchView, DetailOverflowMenu, DetailPanel, type DetailPanelProps, DetailScaffold, type DetailScaffoldProps, Device, Dialog, type DialogIconTone, type DialogProps, type DialogVariant, DingTalk, DingTalkAi, Dislike, Divider, type DividerProps, Doc, Download, DropZone, type DropZoneProps, Edit, ElementDispatcher, EmptyState, type EmptyStateProps, type EmptyStateSize, type EmptyStateVariant, ErrorCircle, ExecutionDetail, type ExecutionDetailProps, ExecutionSummary, type ExecutionSummaryProps, ExecutionSummaryRow, type ExecutionSummaryTool, type FeedbackCategoryValue, type FeedbackContextMenuAction, FeedbackContextMenuView, type FeedbackContextMenuViewProps, FeedbackDialogView, type FeedbackDialogViewProps, Feishu, Field, type FieldProps, type FieldShellVariants, FileBrowser, type FileBrowserBreadcrumb, FileBrowserPreviewState, type FileBrowserPreviewStateProps, type FileBrowserProps, FileIcon, type FileIconProps, type FilePreviewContentLabels, FilePreviewContentView, type FilePreviewContentViewProps, FilePreviewDialog, type FilePreviewDialogProps, FileTree, type FileTreeNode, type FileTreeProps, Filter, FilterBar, type FilterBarFilter, type FilterBarProps, Folder, FormField, type FormFieldProps, Gauge, Globe, GlyphToneProvider, Grid, HOME_STARTER_CAPSULES, Hand, Help, HomeBackdrop, type HomeBackdropProps, HostPlatform, IME_COMMIT_GUARD_MS, Icon, type IconName, type IconProps, Icons, Image, ImagePreview, type ImagePreviewCopy, type ImagePreviewItem, type ImagePreviewProps, type ImeCompositionEvent, type ImeKeyboardEvent, InfoCircle, InlineAttachment, type InlineAttachmentProps, InlineMessage, type InlineMessageProps, type InlineMessageTone, type InlineMessageVariant, JumpToLatest, type JumpToLatestProps, Key, KeyValueField, type KeyValueFieldProps, type KeyValuePair, Keyboard, Keycap, KeycapCombo, type KeycapComboProps, type KeycapProps, Layers, Like, LikeFill, ListRow, type ListRowControl, type ListRowDensity, ListRowGroup, type ListRowGroupProps, type ListRowProps, type ListRowSurface, Loader, type LocalImagePreviewResolver, type LocalLinkTargetOptions, type LocalMarkdownPreview, Lock, Logout, MENU_SEPARATOR, Mail, Markdown, MarkdownPreview, MarkdownPreviewDialog, type MarkdownPreviewDialogProps, type MarkdownPreviewProps, type MarkdownProps, Maximize, McpServerListView, type McpServerListViewProps, type McpServerViewModel, type McpServerViewStatus, Memo, Menu, type MenuEntry, type MenuGroupEntry, type MenuItem, type MenuItemVariants, type MenuProps, type MenuSeparatorEntry, MenuSurface, type MenuSurfaceProps, type MenuTriggerState, type MessageActionItem, type MessageActionKind, MessageActions, type MessageActionsProps, MessageFeedbackDialog, type MessageFeedbackDialogProps, type MessageFeedbackReasonCode, type MessageFeedbackSubmission, Mic, ModalityAudio, ModalityImage, ModalityText, ModalityVideo, ModelCatalogErrorState, type ModelCatalogErrorStateProps, type ModelModality, ModelModalityFlow, type ModelModalityFlowProps, ModelPickerList, type ModelPickerListDensity, type ModelPickerListProps, type ModelPickerOption, ModelSelect, type ModelSelectOption, type ModelSelectProps, type ModelThinkingEffort, ModelsSettingsSectionView, type ModelsSettingsSectionViewProps, Moon, More, NAV_MENU_DIVIDER, NavMenu, type NavMenuDividerType, type NavMenuEntry, type NavMenuItemType, type NavMenuProps, NewTask, NoPlanPanelView, type NoPlanPanelViewProps, type OfficeFileType, OfficePreview, OfficePreviewDialog, type OfficePreviewDialogProps, type OfficePreviewProps, OpenWithMenu, type OpenWithMenuProps, OrbitworkFontScale, type OrbitworkIconProps, OrbitworkLockup, type OrbitworkLockupProps, type OrbitworkLockupTheme, OrbitworkMark, type OrbitworkMarkProps, type OrbitworkMarkVariant, OrbitworkSkin, PT_TO_PX, Package, PageHead, type PageHeadProps, Pagination, type PaginationProps, PanelFold, PanelSidebar, PanelSidebarCollapse, Paperclip, Pause, PdfPageNav, PdfPreview, PdfPreviewDialog, type PdfPreviewDialogProps, type PdfPreviewProps, type PetAnimation, type PetManifest, type PetPosition, type PetToolbarItem, Pin, PlanCard, type PlanCardProps, type PlanCardStep, type PlanCardStepState, type PlanChoiceView, PlanEntitlementCard, type PlanEntitlementCardProps, type PlanEntitlementFeature, PlanEntitlementGrid, type PlanEntitlementGridProps, PlanFeatureIcon, type PlanFeatureIconKind, type PlanFeatureIconProps, type PlanSettingsChoiceView, PlanSettingsSectionView, type PlanSettingsSectionViewProps, type PlanSettingsStats, Play, Plus, Popover, type PopoverPlacement, type PopoverProps, type PptxElement, type PptxParseResult, PptxSlide, type PreviewSurface, PreviewSurfaceArea, ProgressBar, type ProgressBarProps, ProjectSelect, type ProjectSelectProps, Quote, Radio, RadioCardGroup, type RadioCardGroupProps, type RadioCardOption, RadioGroup, type RadioGroupProps, type RadioProps, Refresh, ResolvedTheme, ResourceConfirmation, ResourceDetailView, type ResourceListFailure, type ResourceListFilters, ResourceListView, ResourceNotice, type ResourceNoticeProps, ResourceOverviewView, ResourceReleasesView, type ResourceRow, type ResourceRowAction, ResourceRowActionDialog, type ResourceTab, ResourceWorkbenchView, RichCard, type RichCardProps, type RichCardVariant, RichLink, type RichLinkProps, RichList, type RichListProps, type RichResourceItem, type RichResourceListProps, type RichTextListProps, Rotate, RowOverflowMenu, type RowOverflowMenuItem, type RowOverflowMenuProps, SIDE_PANEL_EMPTY_ACTIONS, STATUS_TAG_PRESETS, SandboxPermissionPrompt, type SandboxPermissionPromptData, type SandboxPermissionPromptProps, type ScheduledTaskCardStatus, ScheduledTaskCardView, type ScheduledTaskCardViewModel, type ScheduledTaskCardViewProps, ScheduledTaskDeleteDialog, type ScheduledTaskDeleteDialogProps, type ScheduledTaskDetailModel, type ScheduledTaskDetailStatusKey, ScheduledTaskDetailView, type ScheduledTaskDetailViewProps, type ScheduledTaskRunStatusKey, type ScheduledTaskRunViewModel, ScheduledTasksSpaceView, type ScheduledTasksSpaceViewProps, Search, SearchInput, type SearchInputProps, SearchResult, type SearchResultItem, type SearchResultProps, Section, type SectionProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, type SegmentedControlSize, type SegmentedControlVariant, Select, type SelectOption, type SelectProps, SelectTrigger, type SelectTriggerProps, type SelectedOptionLocatorOptions, SelectionBulkBar, type SelectionBulkBarProps, SeriesChart, type SeriesChartProps, Server, SessionContextAgentView, type SessionContextAgentViewProps, SessionContextMenuView, type SessionContextMenuViewProps, type SessionContextPanelSection, type SessionContextPanelSectionState, SessionContextPanelView, type SessionContextPanelViewProps, Settings, SettingsPathDescription, type SettingsPathDescriptionProps, SettingsRow, type SettingsRowProps, Share, type ShareAccessScope, type ShareMemberSearch, ShareSettingsDialogView, ShareSettingsEditorView, type ShareSettingsEditorViewProps, type ShareSettingsMember, ShareStrip, type ShareStripProps, type SharedResourceItem, Shield, type ShortcutGroup, ShortcutGroupTable, type ShortcutGroupTableProps, type ShortcutItem, type ShortcutKey, ShortcutSheet, type ShortcutSheetProps, SidePanelEmpty, type SidePanelEmptyAction, type SidePanelEmptyProps, SidebarIcon, SidebarShell, type SidebarShellProps, SidebarToggle, type SidebarToggleProps, SitesArtifactCardView, type SitesArtifactCardViewProps, Skeleton, type SkeletonProps, type SkillAvatarGlyph, type SkillAvatarTone, SkillAvatarView, type SkillAvatarViewProps, SkillCardView, type SkillCardViewProps, SkillDetailPanelView, type SkillDetailPanelViewProps, SkillDetailView, type SkillDetailViewProps, SkillImportDialogView, type SkillImportDialogViewProps, type SkillImportItemStatus, SkillImportResultDialogView, type SkillImportResultDialogViewProps, type SkillImportResultItemView, Skills, type Slide, SnapshotContentView, type SnapshotContentViewProps, SnapshotImageExportView, type SnapshotImageExportViewProps, type SnapshotMessageView, Sort, Sparkles, Spinner, type SpinnerProps, type SpinnerSize, Splash, type SplashProps, type StarterCapsuleOption, StarterCapsules, type StarterCapsulesProps, StatusTag, type StatusTagPreset, type StatusTagProps, type StatusTagTone, Stop, SubAgentPane, type SubAgentPaneProps, type SubAgentPaneTurn, type SubAgentProcess, type SubAgentProcessStatus, SubAgentThread, type SubAgentThreadProps, SuccessCircle, Sun, Switch, type SwitchProps, type TabItem, Tabs, type TabsProps, type TabsSize, Tag, type TagProps, type TagShape, type TagSize, type TagVariant, TenantTheme, type TenantThemeValidationResult, Terminal, TerminalPane, type TerminalPaneProps, Theme, type ThemeContextValue, ThemeProvider, type ThemeProviderProps, Thinking, type ThinkingProps, ThreadDot, TimePicker, type TimePickerProps, TitleBar, type TitleBarProps, Toast, type ToastProps, ToastRegion, type ToastRegionProps, type ToastVariant, type ToolArtifactView, ToolCallRow, type ToolCallRowProps, type ToolCallRowState, ToolDetailModalView, type ToolDetailModalViewProps, type ToolDetailStatus, Tooltip, type TooltipAlign, type TooltipProps, type TooltipSide, TraceDot, type TraceDotProps, Transcript, type TranscriptMode, type TranscriptProps, TranscriptSpine, type TranscriptSpineProps, type TranscriptSurface, type TranscriptToolCall, type TranscriptTurn, Trash, UiLocale, type UiLocaleDictionary, UiLocaleProvider, type UiLocaleProviderProps, type UiMessageKey, type UiMessageTranslator, type UiTranslationValues, type UiTranslator, UninstallConfirmDialog, UnreadDivider, type UnreadDividerProps, Usage, UserTurn, type UserTurnProps, Volume, WORKBENCH_SIDE_PANEL_WIDTH, WarningTriangle, WeCom, WebPreviewConsole, type WebPreviewConsoleEntry, type WebPreviewConsoleLevel, type WebPreviewConsoleProps, WebPreviewDialog, type WebPreviewDialogLabels, type WebPreviewDialogProps, WebPreviewNav, type WebPreviewNavLabels, type WebPreviewNavProps, WebPreviewShell, type WebPreviewShellProps, type WebPreviewTab, WindowBand, type WindowBandProps, WindowChrome, type WindowChromeProps, WindowTrafficLightGhost, type WindowTrafficLightGhostProps, WorkbenchPreviewLayout, WorkbenchSidePanel, WorkbenchSidePanelBody, type WorkbenchSidePanelProps, type WorkbenchSidePanelWidth, WorkspaceMigrateConfirm, type WorkspaceMigrateConfirmProps, Zap, ZoomIn, ZoomOut, basenameFromLocalPath, catalogInstallStatus, collectMarkdownFileRefs, configureUiMessageTranslator, createUiTranslator, dataSeriesColor, desktopToolStatusLabel, findFixedOffsetAncestor, formatExecutionFailure, formatExecutionMeta, formatProcessDuration, formatShortcut, formatShortcutKeys, formatToolMetrics, hashToDataColor, inferAttachmentMeta, isImeCommitEnter, isMacHostPlatform, localizeUiCopy, normalizePreviewUrl, owFloatingActionClass, parseTenantTheme, ptToPx, resolveFileIcon, skillAvatarTone, skillGlyph, uiMessage, updateRowText, useBranding, useImeAwareEnter, useSelectedOptionLocator, useTheme, useUiLocale };
|
|
11135
|
+
export { ACCOUNT_CREDITS_WARN_RATIO, ActionStatus, type ActionStatusProps, AgentLoopSegment, type AgentLoopSegmentProps, AgentTurn, type AgentTurnProps, AppLayout, type AppLayoutProps, Archive, Arrow, ArrowDown, ArtifactCard, type ArtifactCardProps, type ArtifactOpenWithApp, ArtifactPreviewCard, type ArtifactPreviewCardProps, type ArtifactPreviewPanelMode, ArtifactPreviewSidebarView, type ArtifactPreviewSidebarViewProps, type ArtifactPreviewView, ArtifactTrail, AskQuestionCardView, type AskQuestionCardViewProps, type AskQuestionRecapItem, AssistantChannelCard, type AssistantChannelCardProps, type AssistantChannelPlatform, Atom, Attachment, type AttachmentItem, AttachmentList, type AttachmentListProps, type AttachmentMenuOption, type AttachmentOpenOption, type AttachmentProps, type AttachmentStatus, type AttachmentTone, type AttachmentVariant, AuthorizationCard, type AuthorizationCardProps, Avatar, type AvatarProps, type AvatarVariant, BEACON_ICON_NAMES, BackButton, type BackButtonProps, BackTop, type BackTopProps, Badge, type BadgeProps, type BadgeVariant, Banner, type BannerProps, type BannerVariant, BarChart, type BarChartDatum, type BarChartProps, BeaconIcon, type BeaconIconName, type BeaconIconProps, BeaconSpinner, type BeaconSpinnerProps, Bell, Bolt, Brain, Branch, BranchDivider, type BranchDividerProps, BrandPreviewScope, type BrandPreviewScopeProps, BrandTheme, type BrandingContextValue, BrowserAnnotationPopupView, type BrowserAnnotationPopupViewProps, type BrowserClearDataOptions, type BrowserDevicePreset, type BrowserDeviceToolbarLabels, BrowserDeviceToolbarView, type BrowserDeviceToolbarViewProps, BrowserFindBarView, type BrowserFindBarViewProps, type BrowserImportDialogLabels, BrowserImportDialogView, type BrowserImportDialogViewProps, type BrowserImportOptions, type BrowserImportProfile, BrowserLoadErrorView, type BrowserLoadErrorViewProps, type BrowserMoreMenuLabels, BrowserMoreMenuView, type BrowserMoreMenuViewProps, BrowserNavBarView, type BrowserNavBarViewProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, Card, CardGridSkeleton, type CardProps, CatalogEmptyState, type CatalogEmptyStateProps, type ChartSeries, Check, Checkbox, type CheckboxProps, ChevDown, ChevLeft, ChevRight, ChevUp, Chip, type ChipDotTone, type ChipProps, type ChipShape, type ChipTone, Circle, ClipboardList, Clock, Close, CodeBlock, type CodeBlockProps, CodeDiff, type CodeDiffProps, CodePreview, type CodePreviewProps, CommandPalette, type CommandPaletteGroup, type CommandPaletteItem, type CommandPaletteProps, CommentPlus, Compass, Composer, ComposerAudioSpectrum, type ComposerAudioSpectrumProps, ComposerAuthorization, type ComposerAuthorizationOption, type ComposerAuthorizationProps, type ComposerMention, ComposerMentions, type ComposerMentionsProps, ComposerMenu, type ComposerMenuAction, type ComposerMenuGroup, type ComposerMenuItem, ComposerMenuPopover, type ComposerMenuPopoverProps, type ComposerMenuProps, type ComposerMode, ComposerPopover, type ComposerPopoverProps, type ComposerProjectOption, ComposerProjectPicker, type ComposerProjectPickerProps, type ComposerProps, ComposerQueue, type ComposerQueueItem, type ComposerQueueItemKind, type ComposerQueueItemStatus, type ComposerQueueNotice, type ComposerQueueProps, type ComposerQueueTone, type ComposerSubmitState, ComposerVoiceInput, type ComposerVoiceInputProps, CompressionDivider, type CompressionDividerProps, ComputerUseWindowOverlayView, type ComputerUseWindowOverlayViewProps, ContentRecommendation, type ContentRecommendationItem, type ContentRecommendationProps, ContextUsage, type ContextUsageIndicatorCopy, ContextUsageIndicatorView, type ContextUsageIndicatorViewProps, type ContextUsageProps, Copy, Cpu, CreateProjectDialog, type CreateProjectDialogProps, CsvPreview, type CsvPreviewProps, Cut, DESKTOP_ACCOUNT_MENU_WIDTH, DataManagementSectionView, type DataManagementSectionViewProps, DataTable, type DataTableAlign, type DataTableColumn, type DataTableDensity, type DataTableProps, type DataTableSort, type DataTableSortDirection, DataTableToolbar, type DataTableToolbarProps, DateDivider, type DateDividerProps, DesktopAboutSettingsView, type DesktopAboutSettingsViewCopy, type DesktopAboutSettingsViewProps, type DesktopAccountMenuCredits, type DesktopAccountMenuPlan, type DesktopAccountMenuUpdate, type DesktopAccountMenuUpdateState, type DesktopAccountMenuUser, DesktopAccountMenuView, type DesktopAccountMenuViewProps, DesktopAgentCardView, type DesktopAgentCardViewProps, DesktopAgentDetailActions, type DesktopAgentDetailActionsProps, type DesktopAgentDetailItemView, DesktopAgentDetailView, type DesktopAgentDetailViewProps, type DesktopAgentMemberView, type DesktopAgentOverviewItemView, type DesktopAgentOverviewLinkView, DesktopAgentOverviewView, DesktopAgentRosterView, type DesktopAgentRosterViewProps, DesktopAppearanceSettings, type DesktopAppearanceSettingsCopy, type DesktopAppearanceSettingsProps, DesktopAssistantAdvanced, type DesktopAssistantAdvancedProps, DesktopAssistantBindCard, DesktopAssistantConfigActions, DesktopAssistantConfigContent, DesktopAssistantConfigFields, DesktopAssistantConfigLayout, type DesktopAssistantConfigValue, DesktopAssistantConfigView, type DesktopAssistantConfigViewProps, DesktopAssistantField, type DesktopAssistantFieldProps, DesktopAssistantFieldState, type DesktopAssistantFieldStateProps, DesktopAssistantFooterHint, type DesktopAssistantFooterHintProps, type DesktopAssistantPlatform, DesktopAssistantQr, DesktopAssistantScanHint, DesktopAssistantScanPanel, type DesktopAvailableUpdateView, type DesktopCatalogActionView, type DesktopCatalogCardMetaItem, DesktopCatalogCardView, type DesktopCatalogCardViewProps, DesktopCatalogDetailActions, type DesktopCatalogDetailActionsProps, DesktopCatalogDetailShell, type DesktopCatalogDetailShellProps, DesktopCatalogGridView, type DesktopCatalogGridViewProps, DesktopCatalogToolbarView, type DesktopCatalogToolbarViewProps, type DesktopChatAgentMessageView, DesktopChatAgentTurnView, type DesktopChatAgentTurnViewProps, type DesktopChatAttachmentView, DesktopChatCompressionDivider, type DesktopChatCompressionDividerProps, type DesktopChatContextView, DesktopChatEmptyStateView, type DesktopChatEmptyStateViewProps, DesktopChatHeaderView, type DesktopChatHeaderViewProps, DesktopChatHistoryEmptyStateView, type DesktopChatHistoryEmptyStateViewProps, type DesktopChatMessageFeedback, DesktopChatMessageView, type DesktopChatMessageViewProps, DesktopChatReconnectDivider, type DesktopChatReconnectDividerProps, type DesktopChatRunState, DesktopChatUserTurnView, type DesktopChatUserTurnViewProps, DesktopComposer, type DesktopComposerAddAction, type DesktopComposerContext, DesktopComposerModelButton, type DesktopComposerModelButtonProps, type DesktopComposerProps, type DesktopConnectorActionView, DesktopConnectorCardView, type DesktopConnectorCardViewProps, DesktopConnectorDetailView, type DesktopConnectorDetailViewProps, type DesktopConnectorMetaView, type DesktopConnectorToolView, type DesktopConversationGroupView, DesktopConversationView, type DesktopConversationViewProps, type DesktopDetailChipView, DesktopDetailChips, DesktopDetailList, type DesktopDetailListItemView, type DesktopDetailRowView, DesktopDetailRows, DesktopDetailSection, DesktopDetailText, type DesktopFontScale, DesktopHomeView, type DesktopHomeViewProps, DesktopLibraryAuthorizationDialog, type DesktopLibraryAuthorizationDialogCopy, type DesktopLibraryAuthorizationDialogProps, type DesktopLibraryAuthorizationScope, DesktopLibraryPageView, type DesktopLibraryPageViewProps, type DesktopOnboardingTourLabels, type DesktopOnboardingTourRect, type DesktopOnboardingTourStep, DesktopOnboardingTourView, type DesktopOnboardingTourViewProps, DesktopPet, type DesktopPetAnchor, type DesktopPetContentSize, type DesktopPetHandle, type DesktopPetNativeDragEvent, type DesktopPetProps, type DesktopPetSessionBubble, DesktopProcessStepGroupView, type DesktopProcessStepGroupViewProps, DesktopProcessTimelineView, type DesktopProcessTimelineViewProps, DesktopRuntimeSettingsView, type DesktopRuntimeSettingsViewProps, type DesktopRuntimeToolState, type DesktopRuntimeToolView, type DesktopSettingsMemoryItem, DesktopSettingsMemorySection, type DesktopSettingsMemorySectionGroup, type DesktopSettingsMemorySectionProps, type DesktopSettingsNavItem, DesktopSettingsView, type DesktopSettingsViewProps, DesktopShareSelectionBarView, type DesktopShareSelectionBarViewProps, type DesktopSidebarNavId, type DesktopSidebarProject, type DesktopSidebarSourceIcon, type DesktopSidebarThread, type DesktopSidebarUpdate, type DesktopSidebarUpdateState, type DesktopSidebarUser, DesktopSidebarView, type DesktopSidebarViewProps, type DesktopSiteItem, type DesktopSiteReleaseItem, DesktopSiteReleasesView, type DesktopSiteReleasesViewProps, DesktopSitesListView, type DesktopSitesListViewProps, type DesktopSkillsCategory, DesktopSkillsPageView, type DesktopSkillsPageViewProps, type DesktopSkillsSection, type DesktopTaskDetailKind, type DesktopTaskDetailLabels, type DesktopTaskDetailModel, type DesktopTaskDetailStatus, DesktopTaskDetailView, type DesktopTaskDetailViewProps, type DesktopToolCallInlineStatusMode, type DesktopToolCallListItem, type DesktopToolCallListKind, DesktopToolCallListView, type DesktopToolCallListViewProps, type DesktopToolCallStatus, DesktopToolCallView, type DesktopToolCallViewProps, type DesktopUnsupportedToggle, type DesktopUpdateProgressState, type DesktopUpdateProgressView, DesktopWorkbenchShell, type DesktopWorkbenchShellProps, type DesktopWorkbenchView, DetailOverflowMenu, DetailPanel, type DetailPanelProps, DetailScaffold, type DetailScaffoldProps, Device, Dialog, type DialogIconTone, type DialogProps, type DialogVariant, DingTalk, DingTalkAi, Dislike, Divider, type DividerProps, Doc, Download, DropZone, type DropZoneProps, Edit, ElementDispatcher, EmptyState, type EmptyStateProps, type EmptyStateSize, type EmptyStateVariant, ErrorCircle, ExecutionDetail, type ExecutionDetailProps, ExecutionSummary, type ExecutionSummaryProps, ExecutionSummaryRow, type ExecutionSummaryTool, type FeedbackCategoryValue, type FeedbackContextMenuAction, FeedbackContextMenuView, type FeedbackContextMenuViewProps, FeedbackDialogView, type FeedbackDialogViewProps, Feishu, Field, type FieldProps, type FieldShellVariants, FileBrowser, type FileBrowserBreadcrumb, FileBrowserPreviewState, type FileBrowserPreviewStateProps, type FileBrowserProps, FileIcon, type FileIconProps, type FilePreviewContentLabels, FilePreviewContentView, type FilePreviewContentViewProps, FilePreviewDialog, type FilePreviewDialogProps, FileTree, type FileTreeNode, type FileTreeProps, Filter, FilterBar, type FilterBarFilter, type FilterBarProps, Folder, FormField, type FormFieldProps, Gauge, Globe, GlyphToneProvider, Grid, HOME_STARTER_CAPSULES, Hand, Help, HomeBackdrop, type HomeBackdropProps, HostPlatform, IME_COMMIT_GUARD_MS, Icon, type IconName, type IconProps, Icons, Image, ImagePreview, type ImagePreviewCopy, type ImagePreviewItem, type ImagePreviewProps, type ImeCompositionEvent, type ImeKeyboardEvent, InfoCircle, InlineAttachment, type InlineAttachmentProps, InlineMessage, type InlineMessageProps, type InlineMessageTone, type InlineMessageVariant, JumpToLatest, type JumpToLatestProps, Key, KeyValueField, type KeyValueFieldProps, type KeyValuePair, Keyboard, Keycap, KeycapCombo, type KeycapComboProps, type KeycapProps, Layers, Like, LikeFill, ListRow, type ListRowControl, type ListRowDensity, ListRowGroup, type ListRowGroupProps, type ListRowProps, type ListRowSurface, Loader, type LocalImagePreviewResolver, type LocalLinkTargetOptions, type LocalMarkdownPreview, Lock, Logout, MENU_SEPARATOR, Mail, Markdown, MarkdownPreview, MarkdownPreviewDialog, type MarkdownPreviewDialogProps, type MarkdownPreviewProps, type MarkdownProps, Maximize, McpServerListView, type McpServerListViewProps, type McpServerViewModel, type McpServerViewStatus, Memo, Menu, type MenuEntry, type MenuGroupEntry, type MenuItem, type MenuItemVariants, type MenuProps, type MenuSeparatorEntry, MenuSurface, type MenuSurfaceProps, type MenuTriggerState, type MessageActionItem, type MessageActionKind, MessageActions, type MessageActionsProps, MessageFeedbackDialog, type MessageFeedbackDialogProps, type MessageFeedbackReasonCode, type MessageFeedbackSubmission, Mic, ModalityAudio, ModalityImage, ModalityText, ModalityVideo, ModelCatalogErrorState, type ModelCatalogErrorStateProps, type ModelModality, ModelModalityFlow, type ModelModalityFlowProps, ModelPickerList, type ModelPickerListDensity, type ModelPickerListProps, type ModelPickerOption, ModelSelect, type ModelSelectOption, type ModelSelectProps, type ModelThinkingEffort, ModelsSettingsSectionView, type ModelsSettingsSectionViewProps, Moon, More, NAV_MENU_DIVIDER, NavMenu, type NavMenuDividerType, type NavMenuEntry, type NavMenuItemType, type NavMenuProps, NewTask, NoPlanPanelView, type NoPlanPanelViewProps, type OfficeFileType, OfficePreview, OfficePreviewDialog, type OfficePreviewDialogProps, type OfficePreviewProps, OpenWithMenu, type OpenWithMenuProps, OrbitworkFontScale, type OrbitworkIconProps, OrbitworkLockup, type OrbitworkLockupProps, type OrbitworkLockupTheme, OrbitworkMark, type OrbitworkMarkProps, type OrbitworkMarkVariant, OrbitworkSkin, PT_TO_PX, Package, PageHead, type PageHeadProps, Pagination, type PaginationProps, PanelFold, PanelSidebar, PanelSidebarCollapse, Paperclip, Pause, PdfPageNav, PdfPreview, PdfPreviewDialog, type PdfPreviewDialogProps, type PdfPreviewProps, type PetAnimation, type PetManifest, type PetPosition, type PetToolbarItem, Pin, PlanCard, type PlanCardProps, type PlanCardStep, type PlanCardStepState, type PlanChoiceView, PlanEntitlementCard, type PlanEntitlementCardProps, type PlanEntitlementFeature, PlanEntitlementGrid, type PlanEntitlementGridProps, PlanFeatureIcon, type PlanFeatureIconKind, type PlanFeatureIconProps, type PlanSettingsChoiceView, PlanSettingsSectionView, type PlanSettingsSectionViewProps, type PlanSettingsStats, Play, Plus, Popover, type PopoverPlacement, type PopoverProps, type PptxElement, type PptxParseResult, PptxSlide, type PreviewSurface, PreviewSurfaceArea, ProgressBar, type ProgressBarProps, ProjectSelect, type ProjectSelectProps, Quote, Radio, RadioCardGroup, type RadioCardGroupProps, type RadioCardOption, RadioGroup, type RadioGroupProps, type RadioProps, Refresh, ResolvedTheme, ResourceConfirmation, ResourceDetailView, type ResourceListFailure, type ResourceListFilters, ResourceListView, ResourceNotice, type ResourceNoticeProps, ResourceOverviewView, ResourceReleasesView, type ResourceRow, type ResourceRowAction, ResourceRowActionDialog, type ResourceTab, ResourceWorkbenchView, RichCard, type RichCardProps, type RichCardVariant, RichLink, type RichLinkProps, RichList, type RichListProps, type RichResourceItem, type RichResourceListProps, type RichTextListProps, Rotate, RowOverflowMenu, type RowOverflowMenuItem, type RowOverflowMenuProps, SIDE_PANEL_EMPTY_ACTIONS, STATUS_TAG_PRESETS, SandboxPermissionPrompt, type SandboxPermissionPromptData, type SandboxPermissionPromptProps, type ScheduledTaskCardStatus, ScheduledTaskCardView, type ScheduledTaskCardViewModel, type ScheduledTaskCardViewProps, ScheduledTaskDeleteDialog, type ScheduledTaskDeleteDialogProps, type ScheduledTaskDetailModel, type ScheduledTaskDetailStatusKey, ScheduledTaskDetailView, type ScheduledTaskDetailViewProps, type ScheduledTaskRunStatusKey, type ScheduledTaskRunViewModel, ScheduledTasksSpaceView, type ScheduledTasksSpaceViewProps, Search, SearchInput, type SearchInputProps, SearchResult, type SearchResultItem, type SearchResultProps, Section, type SectionProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, type SegmentedControlSize, type SegmentedControlVariant, Select, type SelectOption, type SelectProps, SelectTrigger, type SelectTriggerProps, type SelectedOptionLocatorOptions, SelectionBulkBar, type SelectionBulkBarProps, SeriesChart, type SeriesChartProps, Server, SessionContextAgentView, type SessionContextAgentViewProps, SessionContextMenuView, type SessionContextMenuViewProps, type SessionContextPanelSection, type SessionContextPanelSectionState, SessionContextPanelView, type SessionContextPanelViewProps, Settings, SettingsPathDescription, type SettingsPathDescriptionProps, SettingsRow, type SettingsRowProps, Share, type ShareAccessScope, type ShareMemberSearch, ShareSettingsDialogView, ShareSettingsEditorView, type ShareSettingsEditorViewProps, type ShareSettingsMember, ShareStrip, type ShareStripProps, type SharedResourceItem, Shield, type ShortcutGroup, ShortcutGroupTable, type ShortcutGroupTableProps, type ShortcutItem, type ShortcutKey, ShortcutSheet, type ShortcutSheetProps, SidePanelEmpty, type SidePanelEmptyAction, type SidePanelEmptyProps, SidebarIcon, SidebarShell, type SidebarShellProps, SidebarToggle, type SidebarToggleProps, SitesArtifactCardView, type SitesArtifactCardViewProps, Skeleton, type SkeletonProps, type SkillAvatarGlyph, type SkillAvatarTone, SkillAvatarView, type SkillAvatarViewProps, SkillCardView, type SkillCardViewProps, SkillDetailPanelView, type SkillDetailPanelViewProps, SkillDetailView, type SkillDetailViewProps, SkillImportDialogView, type SkillImportDialogViewProps, type SkillImportItemStatus, SkillImportResultDialogView, type SkillImportResultDialogViewProps, type SkillImportResultItemView, Skills, type Slide, SnapshotContentView, type SnapshotContentViewProps, SnapshotImageExportView, type SnapshotImageExportViewProps, type SnapshotMessageView, Sort, Sparkles, Spinner, type SpinnerProps, type SpinnerSize, Splash, type SplashProps, type StarterCapsuleOption, StarterCapsules, type StarterCapsulesProps, StatusTag, type StatusTagPreset, type StatusTagProps, type StatusTagTone, Stop, SubAgentPane, type SubAgentPaneProps, type SubAgentPaneTurn, type SubAgentProcess, type SubAgentProcessStatus, SubAgentThread, type SubAgentThreadProps, SuccessCircle, Sun, Switch, type SwitchProps, type TabItem, Tabs, type TabsProps, type TabsSize, Tag, type TagProps, type TagShape, type TagSize, type TagVariant, TenantTheme, type TenantThemeValidationResult, Terminal, TerminalPane, type TerminalPaneProps, Theme, type ThemeContextValue, ThemeProvider, type ThemeProviderProps, Thinking, type ThinkingProps, ThreadDot, TimePicker, type TimePickerProps, TitleBar, type TitleBarProps, Toast, type ToastProps, ToastRegion, type ToastRegionProps, type ToastVariant, type ToolArtifactView, ToolCallRow, type ToolCallRowProps, type ToolCallRowState, ToolDetailModalView, type ToolDetailModalViewProps, type ToolDetailStatus, Tooltip, type TooltipAlign, type TooltipProps, type TooltipSide, TraceDot, type TraceDotProps, Transcript, type TranscriptMode, type TranscriptProps, TranscriptSpine, type TranscriptSpineProps, type TranscriptSurface, type TranscriptToolCall, type TranscriptTurn, Trash, UiLocale, type UiLocaleDictionary, UiLocaleProvider, type UiLocaleProviderProps, type UiMessageKey, type UiMessageTranslator, type UiTranslationValues, type UiTranslator, UninstallConfirmDialog, UnreadDivider, type UnreadDividerProps, Usage, UserTurn, type UserTurnProps, Volume, WORKBENCH_SIDE_PANEL_WIDTH, WarningTriangle, WeCom, WebPreviewConsole, type WebPreviewConsoleEntry, type WebPreviewConsoleLevel, type WebPreviewConsoleProps, WebPreviewDialog, type WebPreviewDialogLabels, type WebPreviewDialogProps, WebPreviewNav, type WebPreviewNavLabels, type WebPreviewNavProps, WebPreviewShell, type WebPreviewShellProps, type WebPreviewTab, WindowBand, type WindowBandProps, WindowChrome, type WindowChromeProps, WindowTrafficLightGhost, type WindowTrafficLightGhostProps, WorkbenchPreviewLayout, WorkbenchSidePanel, WorkbenchSidePanelBody, type WorkbenchSidePanelProps, type WorkbenchSidePanelWidth, WorkspaceMigrateConfirm, type WorkspaceMigrateConfirmProps, Zap, ZoomIn, ZoomOut, basenameFromLocalPath, catalogInstallStatus, collectMarkdownFileRefs, configureUiMessageTranslator, createUiTranslator, dataSeriesColor, desktopToolStatusLabel, findFixedOffsetAncestor, formatExecutionFailure, formatExecutionMeta, formatProcessDuration, formatShortcut, formatShortcutKeys, formatToolMetrics, hashToDataColor, inferAttachmentMeta, isImeCommitEnter, isMacHostPlatform, localizeUiCopy, normalizePreviewUrl, owFloatingActionClass, parseTenantTheme, ptToPx, resolveFileIcon, skillAvatarTone, skillGlyph, uiMessage, updateRowText, useBranding, useImeAwareEnter, useSelectedOptionLocator, useTheme, useUiLocale };
|