@orbit-work/ui 0.1.0
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/README.md +110 -0
- package/dist/about-window.cjs +1 -0
- package/dist/about-window.d.cts +12 -0
- package/dist/about-window.d.ts +12 -0
- package/dist/about-window.js +1 -0
- package/dist/appearance-D5uQ53j3.d.cts +210 -0
- package/dist/appearance-D5uQ53j3.d.ts +210 -0
- package/dist/appearance.cjs +1 -0
- package/dist/appearance.d.cts +1 -0
- package/dist/appearance.d.ts +1 -0
- package/dist/appearance.js +1 -0
- package/dist/browser-annotation-popup.cjs +1 -0
- package/dist/browser-annotation-popup.d.cts +48 -0
- package/dist/browser-annotation-popup.d.ts +48 -0
- package/dist/browser-annotation-popup.js +1 -0
- package/dist/chunk-3KT7IU4X.js +13 -0
- package/dist/chunk-5VLBKOG7.cjs +194 -0
- package/dist/chunk-7YJY64LZ.js +82 -0
- package/dist/chunk-EF2BSN3K.cjs +13 -0
- package/dist/chunk-GMMYDILD.cjs +82 -0
- package/dist/chunk-VG7FQQ7K.js +194 -0
- package/dist/fonts/JetBrainsMono-Medium.ttf +0 -0
- package/dist/fonts/JetBrainsMono-Regular.ttf +0 -0
- package/dist/fonts/SpaceGrotesk-500-latin-ext.woff2 +0 -0
- package/dist/fonts/SpaceGrotesk-500-latin.woff2 +0 -0
- package/dist/fonts/SpaceGrotesk-700-latin-ext.woff2 +0 -0
- package/dist/fonts/SpaceGrotesk-700-latin.woff2 +0 -0
- package/dist/fonts/ibm-plex-mono-latin-400-italic.woff2 +0 -0
- package/dist/fonts/ibm-plex-mono-latin-400.woff2 +0 -0
- package/dist/fonts/ibm-plex-mono-latin-500.woff2 +0 -0
- package/dist/fonts/ibm-plex-mono-latin-ext-400-italic.woff2 +0 -0
- package/dist/fonts/ibm-plex-mono-latin-ext-400.woff2 +0 -0
- package/dist/fonts/ibm-plex-mono-latin-ext-500.woff2 +0 -0
- package/dist/index.cjs +32 -0
- package/dist/index.css +1 -0
- package/dist/index.d.cts +10345 -0
- package/dist/index.d.ts +10345 -0
- package/dist/index.js +32 -0
- package/dist/orbitwork.css +22134 -0
- package/package.json +119 -0
- package/src/components/Layout/AppLayout/AppLayout.stories.tsx +246 -0
- package/src/components/Layout/AppLayout/AppLayoutSource.test.mjs +37 -0
- package/src/components/Layout/AppLayout/index.tsx +122 -0
- package/src/components/Layout/Sidebar/index.tsx +13 -0
- package/src/components/Layout/SidebarShell/SidebarShell.stories.tsx +676 -0
- package/src/components/Layout/SidebarShell/SidebarShellSource.test.mjs +161 -0
- package/src/components/Layout/SidebarShell/index.tsx +326 -0
- package/src/components/Layout/index.ts +10 -0
- package/src/components/composite/ActionBar/ActionBar.stories.tsx +26 -0
- package/src/components/composite/ActionBar/index.tsx +31 -0
- package/src/components/composite/ActionStatus/ActionStatus.stories.tsx +60 -0
- package/src/components/composite/ActionStatus/index.tsx +21 -0
- package/src/components/composite/AskQuestionCardView/AskQuestionCardView.stories.tsx +175 -0
- package/src/components/composite/AskQuestionCardView/AskQuestionCardViewSource.test.mjs +92 -0
- package/src/components/composite/AskQuestionCardView/index.tsx +119 -0
- package/src/components/composite/AssistantChannelCard/AssistantChannelCard.stories.tsx +265 -0
- package/src/components/composite/AssistantChannelCard/AssistantChannelCardSource.test.mjs +45 -0
- package/src/components/composite/AssistantChannelCard/index.tsx +102 -0
- package/src/components/composite/AssistantToggleRow/AssistantToggleRow.stories.tsx +197 -0
- package/src/components/composite/AssistantToggleRow/index.tsx +35 -0
- package/src/components/composite/AttachmentCard/AttachmentCard.stories.tsx +125 -0
- package/src/components/composite/AttachmentCard/index.tsx +80 -0
- package/src/components/composite/BackButton/BackButton.stories.tsx +93 -0
- package/src/components/composite/BackButton/BackButtonSource.test.mjs +29 -0
- package/src/components/composite/BackButton/index.tsx +48 -0
- package/src/components/composite/Banner/Banner.stories.tsx +180 -0
- package/src/components/composite/Banner/BannerSource.test.mjs +67 -0
- package/src/components/composite/Banner/index.tsx +125 -0
- package/src/components/composite/BeaconIcons/BeaconIcons.stories.tsx +153 -0
- package/src/components/composite/BeaconIcons/index.tsx +265 -0
- package/src/components/composite/BeaconSpinner/BeaconSpinner.stories.tsx +144 -0
- package/src/components/composite/BeaconSpinner/index.tsx +185 -0
- package/src/components/composite/CatalogStates/CatalogEmptyState.stories.tsx +108 -0
- package/src/components/composite/CatalogStates/CatalogStates.stories.tsx +53 -0
- package/src/components/composite/CatalogStates/CatalogStatesSource.test.mjs +149 -0
- package/src/components/composite/CatalogStates/index.tsx +113 -0
- package/src/components/composite/Charts/Charts.stories.tsx +174 -0
- package/src/components/composite/Charts/ChartsSource.test.mjs +111 -0
- package/src/components/composite/Charts/index.tsx +385 -0
- package/src/components/composite/CodeBlock/CodeBlock.stories.tsx +308 -0
- package/src/components/composite/CodeBlock/CodeFaceSource.test.mjs +89 -0
- package/src/components/composite/CodeBlock/index.tsx +300 -0
- package/src/components/composite/CodeDiff/CodeDiff.stories.tsx +169 -0
- package/src/components/composite/CodeDiff/index.tsx +373 -0
- package/src/components/composite/CodePreview/CodePreview.stories.tsx +127 -0
- package/src/components/composite/CodePreview/CodePreviewSource.test.mjs +43 -0
- package/src/components/composite/CodePreview/index.tsx +98 -0
- package/src/components/composite/CommandPalette/CommandPalette.stories.tsx +89 -0
- package/src/components/composite/CommandPalette/CommandPaletteSource.test.mjs +61 -0
- package/src/components/composite/CommandPalette/index.tsx +310 -0
- package/src/components/composite/ContentRecommendation/ContentRecommendation.stories.tsx +300 -0
- package/src/components/composite/ContentRecommendation/ContentRecommendationSource.test.mjs +48 -0
- package/src/components/composite/ContentRecommendation/index.tsx +116 -0
- package/src/components/composite/ContextChip/ContextChip.stories.tsx +123 -0
- package/src/components/composite/ContextChip/ContextChipSource.test.mjs +24 -0
- package/src/components/composite/ContextChip/index.tsx +25 -0
- package/src/components/composite/ContextUsageIndicatorView/ContextUsageIndicatorSizeSource.test.mjs +15 -0
- package/src/components/composite/ContextUsageIndicatorView/ContextUsageIndicatorView.stories.tsx +110 -0
- package/src/components/composite/ContextUsageIndicatorView/ContextUsageLoadingSource.test.mjs +23 -0
- package/src/components/composite/ContextUsageIndicatorView/index.tsx +139 -0
- package/src/components/composite/Controls/Controls.stories.tsx +227 -0
- package/src/components/composite/Controls/index.tsx +15 -0
- package/src/components/composite/CreateProjectDialog/CreateProjectDialog.stories.tsx +56 -0
- package/src/components/composite/CreateProjectDialog/index.tsx +70 -0
- package/src/components/composite/DataManagementSectionView/DataManagementSectionView.stories.tsx +123 -0
- package/src/components/composite/DataManagementSectionView/DataManagementSectionViewSource.test.mjs +45 -0
- package/src/components/composite/DataManagementSectionView/index.tsx +110 -0
- package/src/components/composite/DataTable/DataTable.stories.tsx +159 -0
- package/src/components/composite/DataTable/DataTableSource.test.mjs +96 -0
- package/src/components/composite/DataTable/index.tsx +373 -0
- package/src/components/composite/DetailChrome/DetailChrome.stories.tsx +61 -0
- package/src/components/composite/DetailChrome/DetailChromeSource.test.mjs +31 -0
- package/src/components/composite/DetailChrome/index.tsx +94 -0
- package/src/components/composite/DetailPanel/DetailPanel.stories.tsx +185 -0
- package/src/components/composite/DetailPanel/DetailPanelSource.test.mjs +49 -0
- package/src/components/composite/DetailPanel/index.tsx +120 -0
- package/src/components/composite/DetailScaffold/DetailScaffold.stories.tsx +203 -0
- package/src/components/composite/DetailScaffold/DetailScaffoldSource.test.mjs +38 -0
- package/src/components/composite/DetailScaffold/index.tsx +114 -0
- package/src/components/composite/Dialog/Dialog.stories.tsx +343 -0
- package/src/components/composite/Dialog/DialogSource.test.mjs +130 -0
- package/src/components/composite/Dialog/index.tsx +333 -0
- package/src/components/composite/DropZone/DropZone.stories.tsx +105 -0
- package/src/components/composite/DropZone/DropZoneSource.test.mjs +68 -0
- package/src/components/composite/DropZone/index.tsx +196 -0
- package/src/components/composite/FSelect/FSelect.stories.tsx +64 -0
- package/src/components/composite/FSelect/index.tsx +29 -0
- package/src/components/composite/FeedbackContextMenuView/FeedbackContextMenuView.stories.tsx +106 -0
- package/src/components/composite/FeedbackContextMenuView/index.tsx +51 -0
- package/src/components/composite/FeedbackDialogView/FeedbackDialogView.stories.tsx +291 -0
- package/src/components/composite/FeedbackDialogView/index.tsx +95 -0
- package/src/components/composite/FileReferenceCard/FileReferenceCard.stories.tsx +364 -0
- package/src/components/composite/FileReferenceCard/FileReferenceCardSource.test.mjs +48 -0
- package/src/components/composite/FileReferenceCard/index.tsx +122 -0
- package/src/components/composite/FilterBar/FilterBar.stories.tsx +167 -0
- package/src/components/composite/FilterBar/FilterBarSource.test.mjs +75 -0
- package/src/components/composite/FilterBar/index.tsx +206 -0
- package/src/components/composite/FormField/FormField.stories.tsx +158 -0
- package/src/components/composite/FormField/FormFieldSource.test.mjs +56 -0
- package/src/components/composite/FormField/index.tsx +219 -0
- package/src/components/composite/HomeBackdrop/HomeBackdrop.stories.tsx +54 -0
- package/src/components/composite/HomeBackdrop/HomeBackdropSource.test.mjs +50 -0
- package/src/components/composite/HomeBackdrop/index.tsx +53 -0
- package/src/components/composite/Icons/Icons.stories.tsx +153 -0
- package/src/components/composite/Icons/IconsSource.test.mjs +23 -0
- package/src/components/composite/Icons/index.tsx +1347 -0
- package/src/components/composite/ImageCard/ImageCard.stories.tsx +54 -0
- package/src/components/composite/ImageCard/index.tsx +33 -0
- package/src/components/composite/ImagePreview/ImagePreview.stories.tsx +172 -0
- package/src/components/composite/ImagePreview/ImagePreviewSource.test.mjs +95 -0
- package/src/components/composite/ImagePreview/index.tsx +339 -0
- package/src/components/composite/ListRow/ListRow.stories.tsx +257 -0
- package/src/components/composite/ListRow/ListRowSource.test.mjs +101 -0
- package/src/components/composite/ListRow/index.tsx +309 -0
- package/src/components/composite/Markdown/Markdown.stories.tsx +192 -0
- package/src/components/composite/Markdown/MarkdownSource.test.mjs +126 -0
- package/src/components/composite/Markdown/MarkdownStyleSource.test.mjs +152 -0
- package/src/components/composite/Markdown/index.tsx +702 -0
- package/src/components/composite/MarkdownPreview/MarkdownPreview.stories.tsx +174 -0
- package/src/components/composite/MarkdownPreview/MarkdownPreviewTabsSource.test.mjs +31 -0
- package/src/components/composite/MarkdownPreview/MarkdownRenderedStyleSource.test.mjs +84 -0
- package/src/components/composite/MarkdownPreview/index.tsx +140 -0
- package/src/components/composite/MarkdownPreviewModalView/MarkdownPreviewModalView.stories.tsx +104 -0
- package/src/components/composite/MarkdownPreviewModalView/index.tsx +85 -0
- package/src/components/composite/MessageFeedbackDialog/MessageFeedbackDialog.stories.tsx +66 -0
- package/src/components/composite/MessageFeedbackDialog/index.tsx +115 -0
- package/src/components/composite/ModelCatalogErrorState/ModelCatalogErrorState.stories.tsx +101 -0
- package/src/components/composite/ModelCatalogErrorState/ModelCatalogRetrySource.test.mjs +86 -0
- package/src/components/composite/ModelCatalogErrorState/index.tsx +59 -0
- package/src/components/composite/ModelModalityFlow/ModelModalityFlow.stories.tsx +224 -0
- package/src/components/composite/ModelModalityFlow/ModelModalityFlowSource.test.mjs +56 -0
- package/src/components/composite/ModelModalityFlow/index.tsx +113 -0
- package/src/components/composite/ModelPickerList/ModelPickerList.stories.tsx +313 -0
- package/src/components/composite/ModelPickerList/index.tsx +142 -0
- package/src/components/composite/ModelSelect/ModelSelect.stories.tsx +90 -0
- package/src/components/composite/ModelSelect/index.tsx +148 -0
- package/src/components/composite/ModelsSettingsSectionView/ModelsSettingsSectionView.stories.tsx +170 -0
- package/src/components/composite/ModelsSettingsSectionView/index.tsx +139 -0
- package/src/components/composite/NativeControls/NativeControls.stories.tsx +386 -0
- package/src/components/composite/NativeControls/NativeControlsStyleSource.test.mjs +63 -0
- package/src/components/composite/NativeControls/index.tsx +97 -0
- package/src/components/composite/NavMenu/NavMenu.stories.tsx +383 -0
- package/src/components/composite/NavMenu/NavMenuSource.test.mjs +56 -0
- package/src/components/composite/NavMenu/index.tsx +142 -0
- package/src/components/composite/NoPlanPanelView/NoPlanPanelView.stories.tsx +344 -0
- package/src/components/composite/NoPlanPanelView/NoPlanPanelViewSource.test.mjs +34 -0
- package/src/components/composite/NoPlanPanelView/index.tsx +97 -0
- package/src/components/composite/OpenWithButton/OpenWithButton.stories.tsx +78 -0
- package/src/components/composite/OpenWithButton/index.tsx +46 -0
- package/src/components/composite/OrbitworkLogo/OrbitworkLogo.stories.tsx +192 -0
- package/src/components/composite/OrbitworkLogo/index.tsx +207 -0
- package/src/components/composite/OrbitworkModal/OrbitworkModal.stories.tsx +58 -0
- package/src/components/composite/OrbitworkModal/index.tsx +31 -0
- package/src/components/composite/PageHead/PageHead.stories.tsx +235 -0
- package/src/components/composite/PageHead/PageHeadSource.test.mjs +76 -0
- package/src/components/composite/PageHead/index.tsx +128 -0
- package/src/components/composite/PlanFeatureIcon/PlanFeatureIcon.stories.tsx +205 -0
- package/src/components/composite/PlanFeatureIcon/PlanFeatureIconSource.test.mjs +38 -0
- package/src/components/composite/PlanFeatureIcon/index.tsx +48 -0
- package/src/components/composite/PlanSettingsSectionView/PlanSettingsSectionView.stories.tsx +231 -0
- package/src/components/composite/PlanSettingsSectionView/PlanSettingsSectionViewSource.test.mjs +85 -0
- package/src/components/composite/PlanSettingsSectionView/index.tsx +264 -0
- package/src/components/composite/Popover/Popover.stories.tsx +175 -0
- package/src/components/composite/Popover/PopoverSource.test.mjs +59 -0
- package/src/components/composite/Popover/index.tsx +176 -0
- package/src/components/composite/PptxRenderer/ElementDispatcher/index.tsx +70 -0
- package/src/components/composite/PptxRenderer/PptxChromeStyleSource.test.mjs +36 -0
- package/src/components/composite/PptxRenderer/PptxRenderer.stories.tsx +128 -0
- package/src/components/composite/PptxRenderer/PptxSlide/index.tsx +48 -0
- package/src/components/composite/PptxRenderer/constants.ts +2 -0
- package/src/components/composite/PptxRenderer/elements/AudioElement/index.tsx +48 -0
- package/src/components/composite/PptxRenderer/elements/ChartElement/index.tsx +172 -0
- package/src/components/composite/PptxRenderer/elements/DiagramElement/index.tsx +46 -0
- package/src/components/composite/PptxRenderer/elements/GroupElement/index.tsx +28 -0
- package/src/components/composite/PptxRenderer/elements/ImageElement/index.tsx +61 -0
- package/src/components/composite/PptxRenderer/elements/MathElement/index.tsx +57 -0
- package/src/components/composite/PptxRenderer/elements/ShapeElement/index.tsx +327 -0
- package/src/components/composite/PptxRenderer/elements/TableElement/index.tsx +90 -0
- package/src/components/composite/PptxRenderer/elements/TextElement/index.tsx +57 -0
- package/src/components/composite/PptxRenderer/elements/VideoElement/index.tsx +43 -0
- package/src/components/composite/PptxRenderer/index.ts +24 -0
- package/src/components/composite/PptxRenderer/types.ts +326 -0
- package/src/components/composite/PptxRenderer/utils.ts +129 -0
- package/src/components/composite/ProjectSelect/ProjectSelect.stories.tsx +112 -0
- package/src/components/composite/ProjectSelect/ProjectSelectSource.test.mjs +34 -0
- package/src/components/composite/ProjectSelect/index.tsx +155 -0
- package/src/components/composite/RadioCard/RadioCard.stories.tsx +130 -0
- package/src/components/composite/RadioCard/RadioCardSource.test.mjs +42 -0
- package/src/components/composite/RadioCard/index.tsx +171 -0
- package/src/components/composite/RowOverflowMenu/RowOverflowMenu.stories.tsx +113 -0
- package/src/components/composite/RowOverflowMenu/RowOverflowMenuSource.test.mjs +59 -0
- package/src/components/composite/RowOverflowMenu/index.tsx +101 -0
- package/src/components/composite/SandboxPermissionPrompt/SandboxPermissionPrompt.stories.tsx +159 -0
- package/src/components/composite/SandboxPermissionPrompt/SandboxPermissionPromptSource.test.mjs +71 -0
- package/src/components/composite/SandboxPermissionPrompt/index.tsx +157 -0
- package/src/components/composite/SearchInput/SearchInput.stories.tsx +127 -0
- package/src/components/composite/SearchInput/index.tsx +91 -0
- package/src/components/composite/SearchResult/SearchResult.stories.tsx +305 -0
- package/src/components/composite/SearchResult/SearchResultSource.test.mjs +45 -0
- package/src/components/composite/SearchResult/index.tsx +148 -0
- package/src/components/composite/Section/Section.stories.tsx +148 -0
- package/src/components/composite/Section/SectionSource.test.mjs +59 -0
- package/src/components/composite/Section/index.tsx +105 -0
- package/src/components/composite/SelectionBulkBar/SelectionBulkBar.stories.tsx +111 -0
- package/src/components/composite/SelectionBulkBar/SelectionBulkBarSource.test.mjs +44 -0
- package/src/components/composite/SelectionBulkBar/index.tsx +99 -0
- package/src/components/composite/ShareStrip/ShareStrip.stories.tsx +123 -0
- package/src/components/composite/ShareStrip/index.tsx +83 -0
- package/src/components/composite/ShortcutSheet/ShortcutSheet.stories.tsx +90 -0
- package/src/components/composite/ShortcutSheet/ShortcutSheetSource.test.mjs +49 -0
- package/src/components/composite/ShortcutSheet/index.tsx +163 -0
- package/src/components/composite/SitesArtifactCardView/SitesArtifactCardView.stories.tsx +328 -0
- package/src/components/composite/SitesArtifactCardView/SitesArtifactCardViewSource.test.mjs +45 -0
- package/src/components/composite/SitesArtifactCardView/index.tsx +100 -0
- package/src/components/composite/Skeleton/Skeleton.stories.tsx +188 -0
- package/src/components/composite/Skeleton/SkeletonSource.test.mjs +25 -0
- package/src/components/composite/Skeleton/index.tsx +152 -0
- package/src/components/composite/Splash/Splash.stories.tsx +150 -0
- package/src/components/composite/Splash/index.tsx +229 -0
- package/src/components/composite/StatusTag/StatusTag.stories.tsx +66 -0
- package/src/components/composite/StatusTag/StatusTagSource.test.mjs +64 -0
- package/src/components/composite/StatusTag/index.tsx +78 -0
- package/src/components/composite/StepList/StepList.stories.tsx +352 -0
- package/src/components/composite/StepList/index.tsx +23 -0
- package/src/components/composite/Tag/Tag.stories.tsx +279 -0
- package/src/components/composite/Tag/TagSource.test.mjs +67 -0
- package/src/components/composite/Tag/index.tsx +229 -0
- package/src/components/composite/TimePicker/TimePicker.stories.tsx +91 -0
- package/src/components/composite/TimePicker/TimePickerSource.test.mjs +98 -0
- package/src/components/composite/TimePicker/index.tsx +208 -0
- package/src/components/composite/TitleBar/TitleBar.stories.tsx +329 -0
- package/src/components/composite/TitleBar/TitleBarSource.test.mjs +140 -0
- package/src/components/composite/TitleBar/index.tsx +350 -0
- package/src/components/composite/Toast/Toast.stories.tsx +304 -0
- package/src/components/composite/Toast/ToastSource.test.mjs +63 -0
- package/src/components/composite/Toast/index.tsx +135 -0
- package/src/components/composite/Tooltip/Tooltip.stories.tsx +304 -0
- package/src/components/composite/Tooltip/TooltipSource.test.mjs +34 -0
- package/src/components/composite/Tooltip/index.tsx +204 -0
- package/src/components/composite/TranscriptDividers/TranscriptDividers.stories.tsx +160 -0
- package/src/components/composite/TranscriptDividers/TranscriptDividersSource.test.mjs +90 -0
- package/src/components/composite/TranscriptDividers/index.tsx +352 -0
- package/src/components/composite/WCardShell/WCardShell.stories.tsx +228 -0
- package/src/components/composite/WCardShell/index.tsx +101 -0
- package/src/components/composite/index.ts +81 -0
- package/src/components/domain/artifacts/ArtifactPreviewSidebarView/ArtifactPreviewSidebarView.stories.tsx +128 -0
- package/src/components/domain/artifacts/ArtifactPreviewSidebarView/ArtifactPreviewSidebarViewSource.test.mjs +69 -0
- package/src/components/domain/artifacts/ArtifactPreviewSidebarView/index.tsx +212 -0
- package/src/components/domain/artifacts/index.ts +1 -0
- package/src/components/domain/browser/BrowserAnnotationPopupView/BrowserAnnotationPopupView.stories.tsx +211 -0
- package/src/components/domain/browser/BrowserAnnotationPopupView/BrowserAnnotationPopupViewSource.test.mjs +82 -0
- package/src/components/domain/browser/BrowserAnnotationPopupView/index.tsx +235 -0
- package/src/components/domain/browser/BrowserDeviceToolbarView/BrowserDeviceToolbarView.stories.tsx +260 -0
- package/src/components/domain/browser/BrowserDeviceToolbarView/BrowserDeviceToolbarViewSource.test.mjs +12 -0
- package/src/components/domain/browser/BrowserDeviceToolbarView/index.tsx +154 -0
- package/src/components/domain/browser/BrowserFindBarView/BrowserFindBarView.stories.tsx +52 -0
- package/src/components/domain/browser/BrowserFindBarView/index.tsx +111 -0
- package/src/components/domain/browser/BrowserImportDialogView/BrowserImportDialogView.stories.tsx +89 -0
- package/src/components/domain/browser/BrowserImportDialogView/index.tsx +155 -0
- package/src/components/domain/browser/BrowserLoadErrorView/BrowserLoadErrorView.stories.tsx +197 -0
- package/src/components/domain/browser/BrowserLoadErrorView/BrowserLoadErrorViewSource.test.mjs +29 -0
- package/src/components/domain/browser/BrowserLoadErrorView/index.tsx +45 -0
- package/src/components/domain/browser/BrowserMoreMenuView/BrowserMoreMenuView.stories.tsx +66 -0
- package/src/components/domain/browser/BrowserMoreMenuView/index.tsx +268 -0
- package/src/components/domain/browser/BrowserNavBarView/BrowserNavBarView.stories.tsx +149 -0
- package/src/components/domain/browser/BrowserNavBarView/index.tsx +156 -0
- package/src/components/domain/browser/BrowserTabBarView/index.tsx +18 -0
- package/src/components/domain/browser/SubAgentPane/SubAgentPane.stories.tsx +96 -0
- package/src/components/domain/browser/SubAgentPane/SubAgentPaneSource.test.mjs +48 -0
- package/src/components/domain/browser/SubAgentPane/index.tsx +121 -0
- package/src/components/domain/browser/TerminalPane/TerminalPane.stories.tsx +95 -0
- package/src/components/domain/browser/TerminalPane/TerminalPaneSource.test.mjs +52 -0
- package/src/components/domain/browser/TerminalPane/index.tsx +75 -0
- package/src/components/domain/browser/WebPreview/WebPreview.stories.tsx +71 -0
- package/src/components/domain/browser/WebPreview/index.tsx +141 -0
- package/src/components/domain/browser/WebPreviewConsole/WebPreviewConsole.stories.tsx +61 -0
- package/src/components/domain/browser/WebPreviewConsole/WebPreviewConsoleSource.test.mjs +66 -0
- package/src/components/domain/browser/WebPreviewConsole/index.tsx +239 -0
- package/src/components/domain/browser/WebPreviewDialog/WebPreviewDialog.stories.tsx +288 -0
- package/src/components/domain/browser/WebPreviewDialog/WebPreviewDialogSource.test.mjs +62 -0
- package/src/components/domain/browser/WebPreviewDialog/index.tsx +82 -0
- package/src/components/domain/browser/WebPreviewNav/WebPreviewNav.stories.tsx +462 -0
- package/src/components/domain/browser/WebPreviewNav/WebPreviewNavSource.test.mjs +353 -0
- package/src/components/domain/browser/WebPreviewNav/index.tsx +351 -0
- package/src/components/domain/browser/WebPreviewShell/WebPreviewShell.stories.tsx +226 -0
- package/src/components/domain/browser/WebPreviewShell/WebPreviewShellSource.test.mjs +172 -0
- package/src/components/domain/browser/WebPreviewShell/index.tsx +324 -0
- package/src/components/domain/browser/index.ts +45 -0
- package/src/components/domain/chat/AgentLoopSegment/AgentLoopSegment.stories.tsx +107 -0
- package/src/components/domain/chat/AgentLoopSegment/AgentLoopSegmentSource.test.mjs +45 -0
- package/src/components/domain/chat/AgentLoopSegment/index.tsx +29 -0
- package/src/components/domain/chat/AgentTurn/AgentTurn.stories.tsx +162 -0
- package/src/components/domain/chat/AgentTurn/AgentTurnSource.test.mjs +98 -0
- package/src/components/domain/chat/AgentTurn/beaconContext.ts +37 -0
- package/src/components/domain/chat/AgentTurn/index.tsx +226 -0
- package/src/components/domain/chat/ArtifactCard/ArtifactCard.stories.tsx +127 -0
- package/src/components/domain/chat/ArtifactCard/index.tsx +249 -0
- package/src/components/domain/chat/Attachment/Attachment.stories.tsx +235 -0
- package/src/components/domain/chat/Attachment/AttachmentSource.test.mjs +160 -0
- package/src/components/domain/chat/Attachment/index.tsx +857 -0
- package/src/components/domain/chat/AuthorizationCard/AuthorizationCard.stories.tsx +53 -0
- package/src/components/domain/chat/AuthorizationCard/AuthorizationCardSource.test.mjs +80 -0
- package/src/components/domain/chat/AuthorizationCard/index.tsx +89 -0
- package/src/components/domain/chat/ChatBubble/ChatBubble.stories.tsx +32 -0
- package/src/components/domain/chat/ChatBubble/index.tsx +24 -0
- package/src/components/domain/chat/ChatMessage/ChatMessage.stories.tsx +31 -0
- package/src/components/domain/chat/ChatMessage/index.tsx +23 -0
- package/src/components/domain/chat/ChatR2ReviewSource.test.mjs +98 -0
- package/src/components/domain/chat/ChatThinking/ChatThinking.stories.tsx +125 -0
- package/src/components/domain/chat/ChatThinking/index.tsx +55 -0
- package/src/components/domain/chat/Chatbot/Chatbot.stories.tsx +49 -0
- package/src/components/domain/chat/Chatbot/index.tsx +37 -0
- package/src/components/domain/chat/Composer/Composer.stories.tsx +227 -0
- package/src/components/domain/chat/Composer/ComposerSource.test.mjs +175 -0
- package/src/components/domain/chat/Composer/index.tsx +450 -0
- package/src/components/domain/chat/Composer/parts/ComposerAudioSpectrum.stories.tsx +203 -0
- package/src/components/domain/chat/Composer/parts/ComposerAudioSpectrum.tsx +110 -0
- package/src/components/domain/chat/Composer/parts/ComposerAudioSpectrumSource.test.mjs +54 -0
- package/src/components/domain/chat/Composer/parts/ComposerAuthorization.stories.tsx +155 -0
- package/src/components/domain/chat/Composer/parts/ComposerAuthorization.tsx +108 -0
- package/src/components/domain/chat/Composer/parts/ComposerMentions.stories.tsx +76 -0
- package/src/components/domain/chat/Composer/parts/ComposerMentions.tsx +83 -0
- package/src/components/domain/chat/Composer/parts/ComposerMentionsSource.test.mjs +85 -0
- package/src/components/domain/chat/Composer/parts/ComposerMenu.stories.tsx +266 -0
- package/src/components/domain/chat/Composer/parts/ComposerMenu.tsx +232 -0
- package/src/components/domain/chat/Composer/parts/ComposerMenuPopover.stories.tsx +166 -0
- package/src/components/domain/chat/Composer/parts/ComposerMenuPopover.tsx +87 -0
- package/src/components/domain/chat/Composer/parts/ComposerMenuPopoverSource.test.mjs +56 -0
- package/src/components/domain/chat/Composer/parts/ComposerPopover.stories.tsx +257 -0
- package/src/components/domain/chat/Composer/parts/ComposerPopover.tsx +221 -0
- package/src/components/domain/chat/Composer/parts/ComposerPopoverSource.test.mjs +71 -0
- package/src/components/domain/chat/Composer/parts/ComposerProjectPicker.stories.tsx +260 -0
- package/src/components/domain/chat/Composer/parts/ComposerProjectPicker.tsx +246 -0
- package/src/components/domain/chat/Composer/parts/ComposerProjectPickerSource.test.mjs +46 -0
- package/src/components/domain/chat/Composer/parts/ComposerQueue.stories.tsx +275 -0
- package/src/components/domain/chat/Composer/parts/ComposerQueue.tsx +155 -0
- package/src/components/domain/chat/Composer/parts/ComposerQueueSource.test.mjs +95 -0
- package/src/components/domain/chat/Composer/parts/ComposerVoiceInput.stories.tsx +77 -0
- package/src/components/domain/chat/Composer/parts/ComposerVoiceInput.tsx +70 -0
- package/src/components/domain/chat/Composer/parts/mountChip.ts +21 -0
- package/src/components/domain/chat/ContextUsage/ContextUsage.stories.tsx +62 -0
- package/src/components/domain/chat/ContextUsage/index.tsx +69 -0
- package/src/components/domain/chat/ExecutionSummary/ExecutionSummary.stories.tsx +238 -0
- package/src/components/domain/chat/ExecutionSummary/ExecutionSummarySource.test.mjs +210 -0
- package/src/components/domain/chat/ExecutionSummary/index.tsx +487 -0
- package/src/components/domain/chat/Message/Message.stories.tsx +264 -0
- package/src/components/domain/chat/Message/index.tsx +44 -0
- package/src/components/domain/chat/MessageActions/MessageActions.stories.tsx +132 -0
- package/src/components/domain/chat/MessageActions/MessageActionsSource.test.mjs +79 -0
- package/src/components/domain/chat/MessageActions/index.tsx +186 -0
- package/src/components/domain/chat/PlanCard/PlanCard.stories.tsx +87 -0
- package/src/components/domain/chat/PlanCard/index.tsx +170 -0
- package/src/components/domain/chat/RichContent/RichContent.stories.tsx +102 -0
- package/src/components/domain/chat/RichContent/RichContentSource.test.mjs +82 -0
- package/src/components/domain/chat/RichContent/index.tsx +465 -0
- package/src/components/domain/chat/SubAgentThread/SubAgentThread.stories.tsx +119 -0
- package/src/components/domain/chat/SubAgentThread/index.tsx +104 -0
- package/src/components/domain/chat/Thinking/Thinking.stories.tsx +196 -0
- package/src/components/domain/chat/Thinking/ThinkingInlineSource.test.mjs +154 -0
- package/src/components/domain/chat/Thinking/index.tsx +237 -0
- package/src/components/domain/chat/ToolCallRow/ToolCallRow.stories.tsx +105 -0
- package/src/components/domain/chat/ToolCallRow/ToolCallRowSource.test.mjs +83 -0
- package/src/components/domain/chat/ToolCallRow/index.tsx +113 -0
- package/src/components/domain/chat/Transcript/Transcript.stories.tsx +296 -0
- package/src/components/domain/chat/Transcript/TranscriptSource.test.mjs +189 -0
- package/src/components/domain/chat/Transcript/index.tsx +187 -0
- package/src/components/domain/chat/TranscriptSpine/TranscriptSpine.stories.tsx +124 -0
- package/src/components/domain/chat/TranscriptSpine/index.tsx +245 -0
- package/src/components/domain/chat/UserTurn/UserTurn.stories.tsx +176 -0
- package/src/components/domain/chat/UserTurn/UserTurnSource.test.mjs +150 -0
- package/src/components/domain/chat/UserTurn/index.tsx +194 -0
- package/src/components/domain/chat/index.ts +22 -0
- package/src/components/domain/desktop/DesktopAccountMenuView/DesktopAccountMenuView.stories.tsx +116 -0
- package/src/components/domain/desktop/DesktopAccountMenuView/DesktopAccountMenuViewSource.test.mjs +80 -0
- package/src/components/domain/desktop/DesktopAccountMenuView/index.tsx +355 -0
- package/src/components/domain/desktop/DesktopAppearanceSettings/DesktopAppearanceSettings.stories.tsx +96 -0
- package/src/components/domain/desktop/DesktopAppearanceSettings/DesktopAppearanceSettingsSource.test.mjs +89 -0
- package/src/components/domain/desktop/DesktopAppearanceSettings/index.tsx +155 -0
- package/src/components/domain/desktop/DesktopAssistantConfigView/DesktopAssistantConfigView.stories.tsx +275 -0
- package/src/components/domain/desktop/DesktopAssistantConfigView/DesktopAssistantConfigViewSource.test.mjs +37 -0
- package/src/components/domain/desktop/DesktopAssistantConfigView/index.tsx +221 -0
- package/src/components/domain/desktop/DesktopCatalogView/DesktopCatalogView.stories.tsx +537 -0
- package/src/components/domain/desktop/DesktopCatalogView/DesktopCatalogViewSource.test.mjs +339 -0
- package/src/components/domain/desktop/DesktopCatalogView/index.tsx +1074 -0
- package/src/components/domain/desktop/DesktopChatBranchDivider/DesktopChatBranchDivider.stories.tsx +58 -0
- package/src/components/domain/desktop/DesktopChatBranchDivider/index.tsx +33 -0
- package/src/components/domain/desktop/DesktopChatEmptyStateView/DesktopChatEmptyStateView.stories.tsx +75 -0
- package/src/components/domain/desktop/DesktopChatEmptyStateView/DesktopChatEmptyStateViewSource.test.mjs +54 -0
- package/src/components/domain/desktop/DesktopChatEmptyStateView/index.tsx +64 -0
- package/src/components/domain/desktop/DesktopChatHeaderView/DesktopChatHeaderView.stories.tsx +83 -0
- package/src/components/domain/desktop/DesktopChatHeaderView/DesktopChatHeaderViewSource.test.mjs +126 -0
- package/src/components/domain/desktop/DesktopChatHeaderView/index.tsx +169 -0
- package/src/components/domain/desktop/DesktopChatMessageView/DesktopChatMessageView.stories.tsx +170 -0
- package/src/components/domain/desktop/DesktopChatMessageView/DesktopChatMessageViewSource.test.mjs +47 -0
- package/src/components/domain/desktop/DesktopChatMessageView/index.tsx +213 -0
- package/src/components/domain/desktop/DesktopChatTurnView/DesktopChatTurnView.stories.tsx +498 -0
- package/src/components/domain/desktop/DesktopChatTurnView/DesktopChatTurnViewSource.test.mjs +187 -0
- package/src/components/domain/desktop/DesktopChatTurnView/index.tsx +490 -0
- package/src/components/domain/desktop/DesktopComposer/DesktopComposer.stories.tsx +195 -0
- package/src/components/domain/desktop/DesktopComposer/DesktopComposerModelPickerSource.test.mjs +132 -0
- package/src/components/domain/desktop/DesktopComposer/DesktopComposerMountChipSource.test.mjs +43 -0
- package/src/components/domain/desktop/DesktopComposer/DesktopComposerResponsiveSource.test.mjs +44 -0
- package/src/components/domain/desktop/DesktopComposer/DesktopMcpFormThemeSource.test.mjs +30 -0
- package/src/components/domain/desktop/DesktopComposer/index.tsx +206 -0
- package/src/components/domain/desktop/DesktopConnectorDetailView/DesktopConnectorDetailView.stories.tsx +72 -0
- package/src/components/domain/desktop/DesktopConnectorDetailView/DesktopConnectorDetailViewSource.test.mjs +81 -0
- package/src/components/domain/desktop/DesktopConnectorDetailView/index.tsx +301 -0
- package/src/components/domain/desktop/DesktopHomeView/DesktopHomeView.stories.tsx +103 -0
- package/src/components/domain/desktop/DesktopHomeView/DesktopHomeViewSource.test.mjs +51 -0
- package/src/components/domain/desktop/DesktopHomeView/index.tsx +122 -0
- package/src/components/domain/desktop/DesktopLibraryAuthorizationDialog/DesktopLibraryAuthorizationDialog.stories.tsx +55 -0
- package/src/components/domain/desktop/DesktopLibraryAuthorizationDialog/index.tsx +156 -0
- package/src/components/domain/desktop/DesktopLibraryPageView/DesktopLibraryPageView.stories.tsx +42 -0
- package/src/components/domain/desktop/DesktopLibraryPageView/index.tsx +35 -0
- package/src/components/domain/desktop/DesktopLoginView/DesktopLoginView.css +75 -0
- package/src/components/domain/desktop/DesktopLoginView/DesktopLoginView.stories.tsx +230 -0
- package/src/components/domain/desktop/DesktopLoginView/DesktopLoginViewSource.test.mjs +149 -0
- package/src/components/domain/desktop/DesktopLoginView/index.tsx +418 -0
- package/src/components/domain/desktop/DesktopOnboardingTourView/DesktopOnboardingTourView.stories.tsx +103 -0
- package/src/components/domain/desktop/DesktopOnboardingTourView/DesktopOnboardingTourViewSource.test.mjs +57 -0
- package/src/components/domain/desktop/DesktopOnboardingTourView/index.tsx +189 -0
- package/src/components/domain/desktop/DesktopPet/DesktopPet.fixture.ts +243 -0
- package/src/components/domain/desktop/DesktopPet/DesktopPet.stories.tsx +337 -0
- package/src/components/domain/desktop/DesktopPet/DesktopPetSource.test.mjs +191 -0
- package/src/components/domain/desktop/DesktopPet/index.tsx +591 -0
- package/src/components/domain/desktop/DesktopPetSettings/DesktopPetSettings.stories.tsx +159 -0
- package/src/components/domain/desktop/DesktopPetSettings/DesktopPetSettingsSource.test.mjs +76 -0
- package/src/components/domain/desktop/DesktopPetSettings/index.tsx +140 -0
- package/src/components/domain/desktop/DesktopRunStatusView/DesktopRunStatusView.stories.tsx +166 -0
- package/src/components/domain/desktop/DesktopRunStatusView/DesktopRunStatusViewSource.test.mjs +51 -0
- package/src/components/domain/desktop/DesktopRunStatusView/index.tsx +34 -0
- package/src/components/domain/desktop/DesktopSelectionCard/DesktopSelectionCard.stories.tsx +122 -0
- package/src/components/domain/desktop/DesktopSelectionCard/DesktopSelectionCardSource.test.mjs +42 -0
- package/src/components/domain/desktop/DesktopSelectionCard/index.tsx +75 -0
- package/src/components/domain/desktop/DesktopSettingsMemorySection/DesktopSettingsMemorySection.stories.tsx +225 -0
- package/src/components/domain/desktop/DesktopSettingsMemorySection/DesktopSettingsMemorySectionSource.test.mjs +105 -0
- package/src/components/domain/desktop/DesktopSettingsMemorySection/index.tsx +340 -0
- package/src/components/domain/desktop/DesktopSettingsView/DesktopSettingsView.stories.tsx +177 -0
- package/src/components/domain/desktop/DesktopSettingsView/DesktopSettingsViewSource.test.mjs +195 -0
- package/src/components/domain/desktop/DesktopSettingsView/index.tsx +176 -0
- package/src/components/domain/desktop/DesktopShareSelectionBarView/DesktopShareSelectionBarView.stories.tsx +77 -0
- package/src/components/domain/desktop/DesktopShareSelectionBarView/DesktopShareSelectionBarViewSource.test.mjs +76 -0
- package/src/components/domain/desktop/DesktopShareSelectionBarView/index.tsx +55 -0
- package/src/components/domain/desktop/DesktopSidebarView/DesktopSidebarView.stories.tsx +454 -0
- package/src/components/domain/desktop/DesktopSidebarView/DesktopSidebarViewSource.test.mjs +386 -0
- package/src/components/domain/desktop/DesktopSidebarView/index.tsx +1072 -0
- package/src/components/domain/desktop/DesktopSiteReleasesView/DesktopSiteReleasesView.stories.tsx +369 -0
- package/src/components/domain/desktop/DesktopSiteReleasesView/DesktopSiteReleasesViewSource.test.mjs +123 -0
- package/src/components/domain/desktop/DesktopSiteReleasesView/index.tsx +392 -0
- package/src/components/domain/desktop/DesktopSitesListView/DesktopSitesListView.stories.tsx +244 -0
- package/src/components/domain/desktop/DesktopSitesListView/DesktopSitesListViewSource.test.mjs +198 -0
- package/src/components/domain/desktop/DesktopSitesListView/index.tsx +417 -0
- package/src/components/domain/desktop/DesktopSkillsPageView/DesktopSkillsPageView.stories.tsx +230 -0
- package/src/components/domain/desktop/DesktopSkillsPageView/DesktopSkillsPageViewSource.test.mjs +149 -0
- package/src/components/domain/desktop/DesktopSkillsPageView/index.tsx +235 -0
- package/src/components/domain/desktop/DesktopTaskDetailView/index.tsx +111 -0
- package/src/components/domain/desktop/DesktopToolCallView/DesktopToolCallListViewSource.test.mjs +302 -0
- package/src/components/domain/desktop/DesktopToolCallView/DesktopToolCallView.stories.tsx +409 -0
- package/src/components/domain/desktop/DesktopToolCallView/index.tsx +388 -0
- package/src/components/domain/desktop/DesktopWorkbenchShell/DesktopWorkbenchShell.stories.tsx +418 -0
- package/src/components/domain/desktop/DesktopWorkbenchShell/DesktopWorkbenchShellSource.test.mjs +151 -0
- package/src/components/domain/desktop/DesktopWorkbenchShell/index.tsx +167 -0
- package/src/components/domain/desktop/DesktopWorkspacePageView/DesktopWorkspacePageView.stories.tsx +135 -0
- package/src/components/domain/desktop/DesktopWorkspacePageView/DesktopWorkspacePageViewSource.test.mjs +57 -0
- package/src/components/domain/desktop/DesktopWorkspacePageView/index.tsx +114 -0
- package/src/components/domain/desktop/DesktopWorkspaceView/DesktopWorkspaceView.stories.tsx +227 -0
- package/src/components/domain/desktop/DesktopWorkspaceView/DesktopWorkspaceViewSource.test.mjs +175 -0
- package/src/components/domain/desktop/DesktopWorkspaceView/index.tsx +580 -0
- package/src/components/domain/desktop/ResourceManagement/ResourceManagement.stories.tsx +19 -0
- package/src/components/domain/desktop/ResourceManagement/ResourceManagementSource.test.mjs +54 -0
- package/src/components/domain/desktop/ResourceManagement/SharesList.tsx +323 -0
- package/src/components/domain/desktop/ResourceManagement/SnapshotViews.tsx +92 -0
- package/src/components/domain/desktop/ResourceManagement/SnapshotViewsSource.test.mjs +15 -0
- package/src/components/domain/desktop/ResourceManagement/index.tsx +246 -0
- package/src/components/domain/desktop/ShareSettingsDialogView/index.tsx +234 -0
- package/src/components/domain/desktop/SidePanelEmpty/SidePanelEmpty.stories.tsx +100 -0
- package/src/components/domain/desktop/SidePanelEmpty/SidePanelEmptySource.test.mjs +67 -0
- package/src/components/domain/desktop/SidePanelEmpty/index.tsx +113 -0
- package/src/components/domain/desktop/StarterCapsules/StarterCapsules.stories.tsx +65 -0
- package/src/components/domain/desktop/StarterCapsules/StarterCapsulesSource.test.mjs +43 -0
- package/src/components/domain/desktop/StarterCapsules/index.tsx +90 -0
- package/src/components/domain/desktop/WorkbenchSidePanel/WorkbenchSidePanel.stories.tsx +59 -0
- package/src/components/domain/desktop/WorkbenchSidePanel/WorkbenchSidePanelSource.test.mjs +51 -0
- package/src/components/domain/desktop/WorkbenchSidePanel/index.tsx +74 -0
- package/src/components/domain/desktop/WorkspaceMigrateConfirm/WorkspaceMigrateConfirm.stories.tsx +79 -0
- package/src/components/domain/desktop/WorkspaceMigrateConfirm/WorkspaceMigrateConfirmSource.test.mjs +34 -0
- package/src/components/domain/desktop/WorkspaceMigrateConfirm/index.tsx +92 -0
- package/src/components/domain/desktop/index.ts +64 -0
- package/src/components/domain/files/FileBrowser/FileBrowser.stories.tsx +397 -0
- package/src/components/domain/files/FileBrowser/FileBrowserSource.test.mjs +75 -0
- package/src/components/domain/files/FileBrowser/index.tsx +221 -0
- package/src/components/domain/files/FileIcon/FileIcon.stories.tsx +207 -0
- package/src/components/domain/files/FileIcon/FileIconSource.test.mjs +39 -0
- package/src/components/domain/files/FileIcon/index.tsx +133 -0
- package/src/components/domain/files/FilePreviewContentView/FilePreviewContentView.stories.tsx +242 -0
- package/src/components/domain/files/FilePreviewContentView/FilePreviewContentViewSource.test.mjs +44 -0
- package/src/components/domain/files/FilePreviewContentView/index.tsx +125 -0
- package/src/components/domain/files/FileTree/FileTree.stories.tsx +204 -0
- package/src/components/domain/files/FileTree/FileTreeSource.test.mjs +18 -0
- package/src/components/domain/files/FileTree/index.tsx +106 -0
- package/src/components/domain/files/PreviewDialog/PreviewDialog.stories.tsx +178 -0
- package/src/components/domain/files/PreviewDialog/PreviewDialogSource.test.mjs +92 -0
- package/src/components/domain/files/PreviewDialog/index.tsx +294 -0
- package/src/components/domain/files/index.ts +5 -0
- package/src/components/domain/index.ts +8 -0
- package/src/components/domain/office/CsvPreview/CsvPreview.stories.tsx +264 -0
- package/src/components/domain/office/CsvPreview/CsvPreviewSource.test.mjs +77 -0
- package/src/components/domain/office/CsvPreview/index.tsx +224 -0
- package/src/components/domain/office/OfficePreview/OfficePreview.stories.tsx +265 -0
- package/src/components/domain/office/OfficePreview/OfficePreviewDialog.stories.tsx +71 -0
- package/src/components/domain/office/OfficePreview/OfficePreviewDialog.tsx +43 -0
- package/src/components/domain/office/OfficePreview/OfficePreviewSource.test.mjs +126 -0
- package/src/components/domain/office/OfficePreview/index.tsx +782 -0
- package/src/components/domain/office/PdfPreview/PdfPreview.stories.tsx +280 -0
- package/src/components/domain/office/PdfPreview/PdfPreviewDialog.stories.tsx +61 -0
- package/src/components/domain/office/PdfPreview/PdfPreviewDialog.tsx +61 -0
- package/src/components/domain/office/PdfPreview/PdfPreviewSource.test.mjs +70 -0
- package/src/components/domain/office/PdfPreview/index.tsx +217 -0
- package/src/components/domain/office/index.ts +5 -0
- package/src/components/domain/skills/McpServerListView/McpServerListView.stories.tsx +510 -0
- package/src/components/domain/skills/McpServerListView/McpServerListViewSource.test.mjs +101 -0
- package/src/components/domain/skills/McpServerListView/index.tsx +250 -0
- package/src/components/domain/skills/SkillAvatarView/SkillAvatarView.stories.tsx +121 -0
- package/src/components/domain/skills/SkillAvatarView/SkillAvatarViewSource.test.mjs +67 -0
- package/src/components/domain/skills/SkillAvatarView/index.tsx +112 -0
- package/src/components/domain/skills/SkillCardView/SkillCardView.stories.tsx +374 -0
- package/src/components/domain/skills/SkillCardView/SkillCardViewSource.test.mjs +35 -0
- package/src/components/domain/skills/SkillCardView/index.tsx +88 -0
- package/src/components/domain/skills/SkillDetailPanelView/SkillDetailPanelView.stories.tsx +113 -0
- package/src/components/domain/skills/SkillDetailPanelView/index.tsx +115 -0
- package/src/components/domain/skills/SkillDetailView/SkillDetailView.stories.tsx +274 -0
- package/src/components/domain/skills/SkillDetailView/index.tsx +121 -0
- package/src/components/domain/skills/SkillImportDialogView/SkillImportDialogView.stories.tsx +128 -0
- package/src/components/domain/skills/SkillImportDialogView/SkillImportDialogViewSource.test.mjs +11 -0
- package/src/components/domain/skills/SkillImportDialogView/index.tsx +147 -0
- package/src/components/domain/skills/ToolDetailModalView/ToolDetailModalView.stories.tsx +160 -0
- package/src/components/domain/skills/ToolDetailModalView/ToolDetailModalViewSource.test.mjs +99 -0
- package/src/components/domain/skills/ToolDetailModalView/index.tsx +160 -0
- package/src/components/domain/skills/index.ts +7 -0
- package/src/components/domain/tasks/ScheduledTaskCardView/ScheduledTaskCardView.stories.tsx +120 -0
- package/src/components/domain/tasks/ScheduledTaskCardView/ScheduledTaskCardViewSource.test.mjs +40 -0
- package/src/components/domain/tasks/ScheduledTaskCardView/index.tsx +135 -0
- package/src/components/domain/tasks/ScheduledTaskDeleteDialog/ScheduledTaskDeleteDialog.stories.tsx +56 -0
- package/src/components/domain/tasks/ScheduledTaskDeleteDialog/ScheduledTaskDeleteDialogSource.test.mjs +35 -0
- package/src/components/domain/tasks/ScheduledTaskDeleteDialog/index.tsx +73 -0
- package/src/components/domain/tasks/ScheduledTaskDetailView/ScheduledTaskDetailView.stories.tsx +121 -0
- package/src/components/domain/tasks/ScheduledTaskDetailView/ScheduledTaskDetailViewSource.test.mjs +115 -0
- package/src/components/domain/tasks/ScheduledTaskDetailView/index.tsx +223 -0
- package/src/components/domain/tasks/ScheduledTasksSpaceView/ScheduledTasksSpaceView.stories.tsx +526 -0
- package/src/components/domain/tasks/ScheduledTasksSpaceView/ScheduledTasksSpaceViewSource.test.mjs +85 -0
- package/src/components/domain/tasks/ScheduledTasksSpaceView/index.tsx +118 -0
- package/src/components/domain/tasks/index.ts +4 -0
- package/src/components/domain/theme/SkinManager.stories.tsx +43 -0
- package/src/components/domain/theme/SkinManagerUI.tsx +382 -0
- package/src/components/domain/theme/ThemeDemo.stories.tsx +12 -0
- package/src/components/domain/theme/ThemeDemo.tsx +224 -0
- package/src/components/index.ts +11 -0
- package/src/components/primitives/Avatar/Avatar.stories.tsx +170 -0
- package/src/components/primitives/Avatar/AvatarSource.test.mjs +37 -0
- package/src/components/primitives/Avatar/index.tsx +180 -0
- package/src/components/primitives/BackTop/BackTop.stories.tsx +122 -0
- package/src/components/primitives/BackTop/BackTopSource.test.mjs +61 -0
- package/src/components/primitives/BackTop/index.tsx +93 -0
- package/src/components/primitives/Badge/Badge.stories.tsx +376 -0
- package/src/components/primitives/Badge/BadgeSource.test.mjs +27 -0
- package/src/components/primitives/Badge/index.tsx +65 -0
- package/src/components/primitives/Button/Button.stories.tsx +287 -0
- package/src/components/primitives/Button/ButtonSource.test.mjs +84 -0
- package/src/components/primitives/Button/index.tsx +216 -0
- package/src/components/primitives/Card/Card.stories.tsx +186 -0
- package/src/components/primitives/Card/CardSource.test.mjs +73 -0
- package/src/components/primitives/Card/index.tsx +137 -0
- package/src/components/primitives/Checkbox/Checkbox.stories.tsx +79 -0
- package/src/components/primitives/Checkbox/CheckboxSource.test.mjs +43 -0
- package/src/components/primitives/Checkbox/index.tsx +87 -0
- package/src/components/primitives/Chip/Chip.stories.tsx +149 -0
- package/src/components/primitives/Chip/ChipSource.test.mjs +73 -0
- package/src/components/primitives/Chip/index.tsx +252 -0
- package/src/components/primitives/Divider/Divider.stories.tsx +68 -0
- package/src/components/primitives/Divider/DividerSource.test.mjs +26 -0
- package/src/components/primitives/Divider/index.tsx +65 -0
- package/src/components/primitives/Dropdown/Dropdown.stories.tsx +38 -0
- package/src/components/primitives/Dropdown/DropdownSource.test.mjs +23 -0
- package/src/components/primitives/Dropdown/index.tsx +29 -0
- package/src/components/primitives/EmptyState/EmptyState.stories.tsx +159 -0
- package/src/components/primitives/EmptyState/EmptyStateSource.test.mjs +169 -0
- package/src/components/primitives/EmptyState/index.tsx +185 -0
- package/src/components/primitives/ErrorCard/ErrorCard.stories.tsx +50 -0
- package/src/components/primitives/ErrorCard/index.tsx +78 -0
- package/src/components/primitives/Field/Field.stories.tsx +208 -0
- package/src/components/primitives/Field/FieldSource.test.mjs +70 -0
- package/src/components/primitives/Field/index.tsx +297 -0
- package/src/components/primitives/InlineMessage/InlineMessage.stories.tsx +137 -0
- package/src/components/primitives/InlineMessage/InlineMessageSource.test.mjs +50 -0
- package/src/components/primitives/InlineMessage/index.tsx +141 -0
- package/src/components/primitives/Input/Input.stories.tsx +30 -0
- package/src/components/primitives/Input/index.tsx +12 -0
- package/src/components/primitives/Keycap/Keycap.stories.tsx +93 -0
- package/src/components/primitives/Keycap/KeycapSource.test.mjs +30 -0
- package/src/components/primitives/Keycap/index.tsx +67 -0
- package/src/components/primitives/Menu/Menu.stories.tsx +416 -0
- package/src/components/primitives/Menu/MenuEmptySource.test.mjs +23 -0
- package/src/components/primitives/Menu/MenuSource.test.mjs +207 -0
- package/src/components/primitives/Menu/index.tsx +922 -0
- package/src/components/primitives/Pagination/Pagination.stories.tsx +77 -0
- package/src/components/primitives/Pagination/PaginationSource.test.mjs +24 -0
- package/src/components/primitives/Pagination/index.tsx +85 -0
- package/src/components/primitives/Pagination/pagination.ts +25 -0
- package/src/components/primitives/Pagination/paginationModel.test.mjs +18 -0
- package/src/components/primitives/ProgressBar/ProgressBar.stories.tsx +103 -0
- package/src/components/primitives/ProgressBar/ProgressBarSource.test.mjs +44 -0
- package/src/components/primitives/ProgressBar/index.tsx +68 -0
- package/src/components/primitives/Radio/Radio.stories.tsx +84 -0
- package/src/components/primitives/Radio/RadioSource.test.mjs +38 -0
- package/src/components/primitives/Radio/index.tsx +161 -0
- package/src/components/primitives/SegmentedControl/SegmentedControl.stories.tsx +110 -0
- package/src/components/primitives/SegmentedControl/SegmentedControlSource.test.mjs +75 -0
- package/src/components/primitives/SegmentedControl/index.tsx +188 -0
- package/src/components/primitives/Select/Select.stories.tsx +158 -0
- package/src/components/primitives/Select/SelectSource.test.mjs +94 -0
- package/src/components/primitives/Select/index.tsx +364 -0
- package/src/components/primitives/Spinner/index.tsx +58 -0
- package/src/components/primitives/Switch/Switch.stories.tsx +64 -0
- package/src/components/primitives/Switch/SwitchSource.test.mjs +38 -0
- package/src/components/primitives/Switch/index.tsx +84 -0
- package/src/components/primitives/Tabs/Tabs.stories.tsx +230 -0
- package/src/components/primitives/Tabs/TabsSource.test.mjs +91 -0
- package/src/components/primitives/Tabs/index.tsx +183 -0
- package/src/components/primitives/index.ts +24 -0
- package/src/examples/ResourceManagementExample.tsx +119 -0
- package/src/examples/SiteWorkbenchExample.tsx +96 -0
- package/src/hooks/index.ts +7 -0
- package/src/hooks/useClickOutside.ts +20 -0
- package/src/hooks/useDragReorder.ts +29 -0
- package/src/hooks/useImeAwareEnter.ts +59 -0
- package/src/hooks/useImeAwareEnterSource.test.mjs +65 -0
- package/src/hooks/useKeyboard.ts +16 -0
- package/src/hooks/usePopover.ts +67 -0
- package/src/hooks/useSelectedOptionLocator.ts +33 -0
- package/src/hooks/useSidebarResize.ts +107 -0
- package/src/hooks/useTenantTheme.ts +53 -0
- package/src/hooks/useUnifiedTheme.ts +85 -0
- package/src/index.ts +6 -0
- package/src/lib/InjectedStyleTokenMirrorSource.test.mjs +67 -0
- package/src/lib/about-window.test.mjs +46 -0
- package/src/lib/about-window.ts +218 -0
- package/src/lib/appearance.test.mjs +283 -0
- package/src/lib/appearance.ts +46 -0
- package/src/lib/browser-annotation-popup.ts +151 -0
- package/src/lib/focusTrap.ts +51 -0
- package/src/lib/index.ts +5 -0
- package/src/lib/shortcut.test.mjs +100 -0
- package/src/lib/shortcut.ts +97 -0
- package/src/lib/twMergeOw.ts +18 -0
- package/src/lib/utils.ts +6 -0
- package/src/screens/Browser.stories.tsx +353 -0
- package/src/screens/Chat.stories.tsx +808 -0
- package/src/screens/Home.stories.tsx +253 -0
- package/src/screens/Login.stories.tsx +134 -0
- package/src/screens/McpManager.stories.tsx +159 -0
- package/src/screens/Onboarding.stories.tsx +155 -0
- package/src/screens/ScheduledTasks.stories.tsx +134 -0
- package/src/screens/ScreenFrameSource.test.mjs +77 -0
- package/src/screens/SettingsAppearance.stories.tsx +117 -0
- package/src/screens/SettingsMemory.stories.tsx +128 -0
- package/src/screens/SettingsModels.stories.tsx +228 -0
- package/src/screens/SettingsSections.stories.tsx +164 -0
- package/src/screens/Share.stories.tsx +202 -0
- package/src/screens/SharePage.stories.tsx +29 -0
- package/src/screens/Sites.stories.tsx +183 -0
- package/src/screens/Skills.stories.tsx +83 -0
- package/src/screens/Workspace.stories.tsx +191 -0
- package/src/screens/_home.tsx +46 -0
- package/src/screens/_screen.tsx +355 -0
- package/src/screens/_settingsNav.ts +27 -0
- package/src/screens/_skillsCatalog.tsx +372 -0
- package/src/theme/SkinDenylistSyncSource.test.mjs +124 -0
- package/src/theme/__tests__/skins.test.mjs +84 -0
- package/src/theme/core/semanticAdapter.ts +116 -0
- package/src/theme/core/skin.ts +605 -0
- package/src/theme/core/skinScoped.ts +289 -0
- package/src/theme/core/tenantTheme.test.mjs +127 -0
- package/src/theme/core/tenantTheme.ts +124 -0
- package/src/theme/core/types.ts +60 -0
- package/src/theme/core/unifiedTheme.ts +157 -0
- package/src/theme/index.ts +33 -0
- package/src/theme/providers/BrandingProvider.tsx +57 -0
- package/src/theme/providers/ThemeProvider.tsx +221 -0
- package/src/theme/skinDs2PropertyGate.test.mjs +109 -0
- package/src/theme/skins/index.ts +107 -0
- package/src/theme/utils/cssSafety.ts +92 -0
- package/src/theme/utils/skinManager.ts +159 -0
- package/src/theme/utils/themeApplier.ts +75 -0
- package/src/tokens/DesktopSurfacesSweep15Source.test.mjs +77 -0
- package/src/tokens/SharedStyleSheetsSource.test.mjs +90 -0
- package/src/tokens/TailwindThemeSupplySource.test.mjs +129 -0
- package/src/tokens/base.ts +199 -0
- package/src/tokens/dark.ts +288 -0
- package/src/tokens/index.ts +4 -0
- package/src/tokens/light.ts +320 -0
- package/src/tokens/tailwind.ts +216 -0
- package/src/types/desktop-pet.ts +100 -0
- package/src/types/file-browser.ts +51 -0
- package/src/types/file-tree.ts +34 -0
- package/src/types/index.ts +3 -0
- package/src/types/xspreadsheet.d.ts +4 -0
- package/src/utils/cn.ts +6 -0
- package/src/utils/glyphColor.ts +32 -0
- package/src/utils/index.ts +4 -0
- package/src/utils/localPathInline.test.mjs +45 -0
- package/src/utils/localPathInline.ts +49 -0
- package/src/utils/markdownFileRefs.test.mjs +88 -0
- package/src/utils/markdownFileRefs.ts +140 -0
- package/src/utils/office-excel.ts +452 -0
- package/src/utils/shiki.ts +156 -0
package/src/components/domain/desktop/DesktopComposer/DesktopComposerModelPickerSource.test.mjs
ADDED
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import assert from "node:assert/strict"
|
|
2
|
+
import { readFile } from "node:fs/promises"
|
|
3
|
+
import test from "node:test"
|
|
4
|
+
|
|
5
|
+
// DS 2.0 蓝图批次②:Dropdown 已并入 Menu 簇,实现在 primitives/Menu 的 MenuSurface。
|
|
6
|
+
const menuSurfaceSource = await readFile(new URL("../../../primitives/Menu/index.tsx", import.meta.url), "utf8")
|
|
7
|
+
const modelSelectSource = await readFile(new URL("../../../composite/ModelSelect/index.tsx", import.meta.url), "utf8")
|
|
8
|
+
const modelPickerListSource = await readFile(
|
|
9
|
+
new URL("../../../composite/ModelPickerList/index.tsx", import.meta.url),
|
|
10
|
+
"utf8",
|
|
11
|
+
)
|
|
12
|
+
const composerPopoverSource = await readFile(
|
|
13
|
+
new URL("../../../domain/chat/Composer/parts/ComposerPopover.tsx", import.meta.url),
|
|
14
|
+
"utf8",
|
|
15
|
+
)
|
|
16
|
+
const styles = await readFile(new URL("../../../../../styles/desktop-surfaces.css", import.meta.url), "utf8")
|
|
17
|
+
const composerSource = await readFile(
|
|
18
|
+
new URL("../../../../../../../apps/desktop/src/renderer/features/chat/Composer.tsx", import.meta.url),
|
|
19
|
+
"utf8",
|
|
20
|
+
)
|
|
21
|
+
|
|
22
|
+
test("composer model picker matches the settings model picker search-to-list spacing", () => {
|
|
23
|
+
// DS 2.0: 菜单面内嵌搜索已迁 Field(壳自带 h-8/w-full),间距 6px 由 mb-1.5 承担
|
|
24
|
+
assert.match(menuSurfaceSource, /<Field\b/)
|
|
25
|
+
assert.match(menuSurfaceSource, /className="mb-1\.5"/)
|
|
26
|
+
assert.doesNotMatch(menuSurfaceSource, /from "\.\.\/Input"/)
|
|
27
|
+
assert.match(styles, /\.cpop--model > \.ow-search-input\s*\{\s*margin-bottom:\s*6px;\s*\}/)
|
|
28
|
+
})
|
|
29
|
+
|
|
30
|
+
test("composer model picker keeps the thinking-effort submenu visible and interactive", () => {
|
|
31
|
+
assert.match(composerSource, /<ComposerPopover[\s\S]*align="end"[\s\S]*width=\{288\}/)
|
|
32
|
+
assert.match(composerSource, /cpop-subrow\$\{thinkingEffortOpen \? ['"] is-open['"] : ['"]{2}\}/)
|
|
33
|
+
assert.ok(composerSource.includes("THINKING_LEVELS.map"))
|
|
34
|
+
assert.ok(composerSource.includes("const [thinkingEffortOpen, setThinkingEffortOpen] = useState(false)"))
|
|
35
|
+
assert.ok(composerSource.includes("aria-expanded={thinkingEffortOpen}"))
|
|
36
|
+
assert.ok(composerSource.includes("onClick={() => setThinkingEffortOpen((value) => !value)}"))
|
|
37
|
+
assert.ok(composerSource.includes("setThinkingLevel(item.id)"))
|
|
38
|
+
assert.ok(composerSource.includes("setThinkingEffortOpen(false)"))
|
|
39
|
+
assert.match(
|
|
40
|
+
styles,
|
|
41
|
+
/\.cpop--model \{[^}]*width: 240px;[^}]*max-width: calc\(100vw - 16px\);[^}]*overflow: (?:visible|hidden);/,
|
|
42
|
+
)
|
|
43
|
+
assert.ok(styles.includes("padding: var(--ow-space-15, 6px); z-index: 1; }"))
|
|
44
|
+
assert.ok(styles.includes("bottom: 0; left: -10px; width: 10px;"))
|
|
45
|
+
assert.match(styles, /.cpop-subrow.is-open .cpop-sub { display: block; }/)
|
|
46
|
+
assert.match(
|
|
47
|
+
styles,
|
|
48
|
+
/\.cpop--model\[data-horizontal-overflow="left"\] \.cpop-sub \{ left: calc\(100% \+ 8px\); right: auto; \}/,
|
|
49
|
+
)
|
|
50
|
+
})
|
|
51
|
+
|
|
52
|
+
test("composer popover keeps visible nested menus inside the viewport", () => {
|
|
53
|
+
assert.match(composerPopoverSource, /nestedHorizontalBounds\(content, contentRect\)/)
|
|
54
|
+
assert.match(composerPopoverSource, /visibleHorizontalBounds\(content, contentRect, nested\?\.element\)/)
|
|
55
|
+
assert.match(composerPopoverSource, /Reserve room for the hidden nested menu during the first layout pass/)
|
|
56
|
+
assert.match(composerPopoverSource, /const minLeft = viewportPadding - bounds\.leftOffset/)
|
|
57
|
+
assert.match(composerPopoverSource, /const maxLeft = window\.innerWidth - viewportPadding - bounds\.rightOffset/)
|
|
58
|
+
assert.match(
|
|
59
|
+
composerPopoverSource,
|
|
60
|
+
/setHorizontalOverflow\(\(current\) => \(current === nextHorizontalOverflow \? current : nextHorizontalOverflow\)\)/,
|
|
61
|
+
)
|
|
62
|
+
assert.match(composerPopoverSource, /window\.addEventListener\(["']resize["'], measure\)/)
|
|
63
|
+
assert.match(composerPopoverSource, /window\.addEventListener\(["']scroll["'], measure, true\)/)
|
|
64
|
+
assert.match(composerPopoverSource, /new MutationObserver/)
|
|
65
|
+
assert.doesNotMatch(composerPopoverSource, /onPointerOver=/)
|
|
66
|
+
})
|
|
67
|
+
|
|
68
|
+
test("composer model picker omits the available model description", () => {
|
|
69
|
+
assert.doesNotMatch(composerSource, /<span className="s">\{modelDescription\(item\)\}<\/span>/)
|
|
70
|
+
assert.doesNotMatch(composerSource, /\bmodelDescription,/)
|
|
71
|
+
})
|
|
72
|
+
|
|
73
|
+
test("settings model picker omits the model description", () => {
|
|
74
|
+
assert.doesNotMatch(modelSelectSource, /description:\s*modelDescription\(model\)/)
|
|
75
|
+
assert.doesNotMatch(modelSelectSource, /function modelDescription\(/)
|
|
76
|
+
})
|
|
77
|
+
|
|
78
|
+
test("composer and settings model names share enough line height to avoid clipping descenders", () => {
|
|
79
|
+
assert.match(styles, /\.model-title__name\s*\{[^}]*line-height:\s*18px;[^}]*\}/)
|
|
80
|
+
assert.doesNotMatch(styles, /\.modelopt \.model-title__name\s*\{/)
|
|
81
|
+
})
|
|
82
|
+
|
|
83
|
+
test("composer and settings share the same model picker list and item layout", () => {
|
|
84
|
+
assert.match(composerSource, /<ModelPickerList/)
|
|
85
|
+
assert.match(modelSelectSource, /<ModelPickerList/)
|
|
86
|
+
assert.match(modelPickerListSource, /["']cpop__scroll["'],\s*["']model-picker-list["']/)
|
|
87
|
+
assert.match(modelPickerListSource, /["']modelopt["'], selected && ["']active["']/)
|
|
88
|
+
assert.match(styles, /\.cpop__scroll\s*\{[^}]*gap:\s*var\(--ow-space-05, 2px\);[^}]*\}/)
|
|
89
|
+
// W2 §7:46px 是形状表外的高度,行改落 ListRow 密度档(default 40 / compact 32)。
|
|
90
|
+
assert.match(styles, /\.modelopt\s*\{[^}]*min-height:\s*40px;[^}]*\}/)
|
|
91
|
+
assert.doesNotMatch(styles, /\.modelopt\s*\{[^}]*min-height:\s*46px;/)
|
|
92
|
+
assert.match(styles, /\.model-picker-list--compact \.modelopt\s*\{[^}]*min-height:\s*32px;[^}]*\}/)
|
|
93
|
+
assert.match(modelPickerListSource, /density\?: ModelPickerListDensity/)
|
|
94
|
+
})
|
|
95
|
+
|
|
96
|
+
// W2 §6 无彩选中:选中不再借 --ow-primary-bg(行动极)上色,改「底递进 + 强边 +
|
|
97
|
+
// --ow-control-on 勾 + 500 字重」四重编码;勾与调用方的 trailing 分槽并存。
|
|
98
|
+
test("selected model reads without hue: surface step, strong border, control-on check, 500 weight", () => {
|
|
99
|
+
assert.match(modelPickerListSource, /import \{ Check \} from "\.\.\/Icons"/)
|
|
100
|
+
assert.match(modelPickerListSource, /className="modelopt__check"/)
|
|
101
|
+
// R2 L2-2-3:勾槽恒占位(未选中也渲染空槽),倍率读数右沿才对得齐
|
|
102
|
+
assert.match(modelPickerListSource, /data-ow-state=\{selected \? "on" : "off"\}/)
|
|
103
|
+
assert.doesNotMatch(modelPickerListSource, /\{selected && \(\s*<span className="modelopt__check"/)
|
|
104
|
+
assert.match(modelPickerListSource, /option\.trailing && <span className="ck">\{option\.trailing\}<\/span>/)
|
|
105
|
+
assert.match(styles, /\.modelopt\.active\s*\{[^}]*background:\s*var\(--ow-selected-bg\);[^}]*\}/)
|
|
106
|
+
assert.match(styles, /\.modelopt\.active\s*\{[^}]*border-color:\s*var\(--ow-border-strong\);[^}]*\}/)
|
|
107
|
+
assert.match(styles, /\.modelopt\.active \.n\s*\{\s*font-weight:\s*500;\s*\}/)
|
|
108
|
+
assert.match(styles, /\.modelopt__check\s*\{[^}]*color:\s*var\(--ow-control-on\);[^}]*\}/)
|
|
109
|
+
assert.doesNotMatch(styles, /\.modelopt\.active\s*\{[^}]*--ow-primary-bg/)
|
|
110
|
+
assert.doesNotMatch(styles, /\.modelopt\.active \.n\s*\{[^}]*--ow-info-on-tint/)
|
|
111
|
+
})
|
|
112
|
+
|
|
113
|
+
// W2 §6:unstyled 壳的状态由调用方样式补齐——五态与贴地零影缺一不可。
|
|
114
|
+
test("model picker rows carry the full state set with no floating shadow", () => {
|
|
115
|
+
assert.match(styles, /\.modelopt:hover \{ background: var\(--ow-hover-pop\); \}/)
|
|
116
|
+
assert.match(styles, /\.modelopt:active:not\(:disabled\) \{ background: var\(--ow-press-pop\); \}/)
|
|
117
|
+
assert.match(styles, /\.modelopt:focus-visible \{[^}]*var\(--ow-focus-ring\)/)
|
|
118
|
+
assert.match(styles, /\.modelopt--locked \.n[^{]*\{[^}]*var\(--ow-disabled-text\)/)
|
|
119
|
+
assert.doesNotMatch(styles, /\.modelopt[^{]*\{[^}]*box-shadow:/)
|
|
120
|
+
assert.match(styles, /\.modelopt\s*\{[^}]*transition: background-color var\(--ow-dur-1\) var\(--ow-ease-beacon\)/)
|
|
121
|
+
})
|
|
122
|
+
|
|
123
|
+
test("composer and settings model pickers show positive multipliers with other trailing content", () => {
|
|
124
|
+
assert.match(modelPickerListSource, /multiplier\?: number/)
|
|
125
|
+
assert.match(modelPickerListSource, /Number\.isFinite\(multiplier\)/)
|
|
126
|
+
assert.match(modelPickerListSource, /multiplier <= 0/)
|
|
127
|
+
assert.match(modelPickerListSource, /`×\$\{Number\(multiplier\.toFixed\(4\)\)\}`/)
|
|
128
|
+
assert.match(modelPickerListSource, /\(multiplierLabel \|\| option\.trailing \|\| selected\)/)
|
|
129
|
+
assert.match(modelPickerListSource, /className="modelopt__multiplier"/)
|
|
130
|
+
assert.match(modelSelectSource, /outputModalities, multiplier/)
|
|
131
|
+
assert.match(styles, /\.modelopt__multiplier\s*\{[^}]*color:\s*var\(--ow-text-3\);[^}]*\}/)
|
|
132
|
+
})
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import assert from "node:assert/strict"
|
|
2
|
+
import { readFile } from "node:fs/promises"
|
|
3
|
+
import test from "node:test"
|
|
4
|
+
|
|
5
|
+
const source = await readFile(new URL("./index.tsx", import.meta.url), "utf8")
|
|
6
|
+
const mentions = await readFile(new URL("../../chat/Composer/parts/ComposerMentions.tsx", import.meta.url), "utf8")
|
|
7
|
+
|
|
8
|
+
// W5 移交项②(代行裁决:挂载物=同一种芯片)。判断表「挂载芯片:蓝/绿/灰三色 →
|
|
9
|
+
// 统一 info tint + 类别图标」——agent/plan 原来停在中性 surface 档,与已收口的
|
|
10
|
+
// @技能/@连接器分成两轨;分类不是状态,不该按来源分皮肤。
|
|
11
|
+
test("agent/plan 挂载 chip 与 ComposerMentions 同落 info tint", async () => {
|
|
12
|
+
// R2:配方本体已上收——原语 primitives/Chip 的 tone="mention"(ComposerMentions 走这条),
|
|
13
|
+
// 过渡常量 mountChip.ts 的 MOUNT_CHIP_CLASS(本文件两处挂载位走这条,待迁完后删)。
|
|
14
|
+
// 本文件不再自持一份 className。
|
|
15
|
+
const mountChip = await readFile(new URL("../../chat/Composer/parts/mountChip.ts", import.meta.url), "utf8")
|
|
16
|
+
assert.doesNotMatch(source, /const MOUNT_CHIP_CLASS = \[/)
|
|
17
|
+
assert.match(
|
|
18
|
+
mountChip,
|
|
19
|
+
/bg-\[var\(--ow-mention-bg\)\] border-\[color:var\(--ow-info-tint-border\)\] text-\[color:var\(--ow-mention-text\)\]/,
|
|
20
|
+
)
|
|
21
|
+
// tint 面上的子件一并收 -on-tint 字色,不留地面档 text-2/-3。
|
|
22
|
+
assert.match(mountChip, /\[&_\[data-ow-part=icon\]\]:text-\[color:var\(--ow-mention-text\)\]/)
|
|
23
|
+
assert.match(mountChip, /\[&_\[data-ow-part=remove\]\]:text-\[color:var\(--ow-mention-text\)\]/)
|
|
24
|
+
// 两处挂载位都吃同一张皮肤,不各写一份。
|
|
25
|
+
assert.equal(source.match(/className=\{MOUNT_CHIP_CLASS\}/g)?.length, 2)
|
|
26
|
+
assert.match(source, /data-ow-variant="agent"/)
|
|
27
|
+
assert.match(source, /data-ow-variant="plan"/)
|
|
28
|
+
})
|
|
29
|
+
|
|
30
|
+
test("类别由图标区分而非彩度:agent=Bolt / plan=ClipboardList,两轨同底同字", async () => {
|
|
31
|
+
assert.match(source, /icon=\{agent\.icon \?\? \(!agent\.avatar \? <Bolt \/> : undefined\)\}/)
|
|
32
|
+
assert.match(source, /icon=\{plan\.icon \?\? <ClipboardList \/>\}/)
|
|
33
|
+
// 与 ComposerMentions 是同一套 tint。R2:配方已上收到 primitives/Chip 的 tone="mention",
|
|
34
|
+
// ComposerMentions 改传 tone、不再手抄 className,所以 token 本体在原语里核;
|
|
35
|
+
// DesktopComposer 仍走 MOUNT_CHIP_CLASS 常量(待本簇迁完后删)。
|
|
36
|
+
assert.match(mentions, /tone="mention"/)
|
|
37
|
+
const chip = await readFile(new URL("../../../primitives/Chip/index.tsx", import.meta.url), "utf8")
|
|
38
|
+
const mountChip = await readFile(new URL("../../chat/Composer/parts/mountChip.ts", import.meta.url), "utf8")
|
|
39
|
+
for (const file of [mountChip, chip]) {
|
|
40
|
+
assert.match(file, /--ow-mention-bg/)
|
|
41
|
+
assert.match(file, /--ow-info-tint-hover/)
|
|
42
|
+
}
|
|
43
|
+
})
|
package/src/components/domain/desktop/DesktopComposer/DesktopComposerResponsiveSource.test.mjs
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import assert from "node:assert/strict"
|
|
2
|
+
import { readFile } from "node:fs/promises"
|
|
3
|
+
import test from "node:test"
|
|
4
|
+
|
|
5
|
+
const composerSource = await readFile(new URL("./index.tsx", import.meta.url), "utf8")
|
|
6
|
+
// 合并记:origin/main 把 ContextChip 自己迁成 Tailwind;本分支把它并进 primitives/Chip
|
|
7
|
+
// (composite/ContextChip 只剩 `<Chip removeMode="hover" />` 的薄兼容层),响应式那三条
|
|
8
|
+
// 工具类因此住在 Chip 里。断言照搬研发的三条,只把读的文件换成真正的持有方。
|
|
9
|
+
const chipSource = await readFile(new URL("../../../primitives/Chip/index.tsx", import.meta.url), "utf8")
|
|
10
|
+
const componentStyles = await readFile(new URL("../../../../../styles/components.css", import.meta.url), "utf8")
|
|
11
|
+
const desktopStyles = await readFile(new URL("../../../../../styles/desktop-surfaces.css", import.meta.url), "utf8")
|
|
12
|
+
const desktopAdapter = await readFile(
|
|
13
|
+
new URL("../../../../../../../apps/desktop/src/renderer/features/chat/Composer.tsx", import.meta.url),
|
|
14
|
+
"utf8",
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
test("desktop composer keeps context icons beside hover removal in narrow rendering", () => {
|
|
18
|
+
assert.match(composerSource, /data-ow-variant="agent"/)
|
|
19
|
+
assert.match(composerSource, /data-ow-variant="plan"/)
|
|
20
|
+
assert.match(componentStyles, /\[data-slot="composer"\]\s*\{[^}]*container-type:\s*inline-size;/s)
|
|
21
|
+
// Chip now owns its own responsive styling via Tailwind; the composer
|
|
22
|
+
// only needs to pass the right props so icons/tooltips/removal remain usable.
|
|
23
|
+
assert.match(chipSource, /max-w-\[220px\]/)
|
|
24
|
+
assert.match(chipSource, /min-w-0\s+overflow-hidden\s+text-ellipsis/)
|
|
25
|
+
assert.match(chipSource, /group-hover:inline-flex/)
|
|
26
|
+
assert.match(composerSource, /tooltip=\{contextName\(agent, ["']智能体["']\)\}/)
|
|
27
|
+
assert.match(composerSource, /tooltip=\{contextName\(plan, ["']计划["']\)\}/)
|
|
28
|
+
assert.doesNotMatch(composerSource, /点击移除/)
|
|
29
|
+
assert.match(composerSource, /removeLabel=\{`移除\$\{typeof agent\.label/)
|
|
30
|
+
assert.doesNotMatch(desktopStyles, /\.sender__bar \.ow-context-chip/)
|
|
31
|
+
})
|
|
32
|
+
|
|
33
|
+
test("desktop composer model trigger preserves a single-line recognizable prefix", () => {
|
|
34
|
+
assert.match(composerSource, /export function DesktopComposerModelButton/)
|
|
35
|
+
assert.match(composerSource, /data-ow-part="label"/)
|
|
36
|
+
assert.match(composerSource, /aria-label=\{title \?\? `选择模型:\$\{label\}`\}/)
|
|
37
|
+
assert.match(composerSource, /className="min-w-0 overflow-hidden text-ellipsis whitespace-nowrap"/)
|
|
38
|
+
assert.match(
|
|
39
|
+
componentStyles,
|
|
40
|
+
/@container \(max-width: 360px\)\s*\{[\s\S]*\[data-slot="desktop-composer-model"\] \[data-ow-part="label"\] \{ max-width: 52px; \}/,
|
|
41
|
+
)
|
|
42
|
+
assert.match(desktopAdapter, /<DesktopComposerModelButton/)
|
|
43
|
+
assert.match(desktopAdapter, /title=\{\s*model\s*\?\s*`选择模型:\$\{model\.name\}`/)
|
|
44
|
+
})
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import assert from "node:assert/strict"
|
|
2
|
+
import { readFile } from "node:fs/promises"
|
|
3
|
+
import test from "node:test"
|
|
4
|
+
|
|
5
|
+
const styles = await readFile(new URL("../../../../../styles/desktop-surfaces.css", import.meta.url), "utf8")
|
|
6
|
+
|
|
7
|
+
test("custom connector form uses theme-aware semantic colors", () => {
|
|
8
|
+
// R2:段尾锚点原为 `.env-rows`(该族已随死码清除撤掉,indexOf 返回 -1 会把整段切歪),改锚 `.mcp-json-hint`。
|
|
9
|
+
const formStyles = styles.slice(styles.indexOf(".mcp-form__topbar"), styles.indexOf(".mcp-json-hint"))
|
|
10
|
+
|
|
11
|
+
// R2 tint 三件套:图标章与提示条原是 alpha 罩 --ow-info-bg + --ow-info-border 边 + --ow-link 字
|
|
12
|
+
// (三族拼盘),归位为 tint 底 + tint-border 边 + on-tint 字。
|
|
13
|
+
assert.match(
|
|
14
|
+
formStyles,
|
|
15
|
+
/\.mcp-form__icon \{[^}]*background: var\(--ow-info-tint\);[^}]*color: var\(--ow-info-on-tint\);/s,
|
|
16
|
+
)
|
|
17
|
+
assert.match(
|
|
18
|
+
formStyles,
|
|
19
|
+
/\.mcp-form__notice \{[^}]*border: var\(--ow-border-width-thin, 1px\) solid var\(--ow-info-tint-border\);[^}]*background: var\(--ow-info-tint\);[^}]*color: var\(--ow-info-on-tint\);/s,
|
|
20
|
+
)
|
|
21
|
+
// 罩底写法不得回流到本段。
|
|
22
|
+
assert.doesNotMatch(formStyles, /var\(--ow-info-bg\)/)
|
|
23
|
+
assert.match(formStyles, /\.mcp-form__mode \{[^}]*width: 136px;[^}]*flex: 0 0 136px;/s)
|
|
24
|
+
assert.match(
|
|
25
|
+
formStyles,
|
|
26
|
+
/\.mcp-form__mode \.ow-select-menu__trigger \{[^}]*border-color: var\(--ow-border-strong\);[^}]*background: var\(--ow-bg\);/s,
|
|
27
|
+
)
|
|
28
|
+
assert.doesNotMatch(formStyles, /\.mcp-browse/)
|
|
29
|
+
assert.doesNotMatch(formStyles, /background: var\(--ow-sky-(?:50|100)\)/)
|
|
30
|
+
})
|
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
|
|
3
|
+
import { type ReactNode, forwardRef } from "react"
|
|
4
|
+
import { cn } from "../../../../lib/utils"
|
|
5
|
+
import { Bolt, ChevDown, ClipboardList, Plus } from "../../../composite/Icons"
|
|
6
|
+
import { Button, Chip } from "../../../primitives"
|
|
7
|
+
import { Composer, type ComposerProps } from "../../chat/Composer"
|
|
8
|
+
import { MOUNT_CHIP_CLASS } from "../../chat/Composer/parts/mountChip"
|
|
9
|
+
|
|
10
|
+
/* 挂载物芯片皮肤(agent / plan 与 ComposerMentions 的 @技能/@连接器同属「挂载物」)
|
|
11
|
+
已收进唯一口径 `chat/Composer/parts/mountChip` 的 MOUNT_CHIP_CLASS——本文件不再自持一份。 */
|
|
12
|
+
|
|
13
|
+
export type DesktopComposerContext = {
|
|
14
|
+
label: ReactNode
|
|
15
|
+
description?: string
|
|
16
|
+
icon?: ReactNode
|
|
17
|
+
avatar?: ReactNode
|
|
18
|
+
onRemove?: () => void
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export type DesktopComposerAddAction = {
|
|
22
|
+
onClick: () => void
|
|
23
|
+
title?: string
|
|
24
|
+
open?: boolean
|
|
25
|
+
disabled?: boolean
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export type DesktopComposerModelButtonProps = {
|
|
29
|
+
label: string
|
|
30
|
+
title?: string
|
|
31
|
+
open?: boolean
|
|
32
|
+
warning?: boolean
|
|
33
|
+
onClick: () => void
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* 桌面 Composer 工具条上的模型触发器。
|
|
38
|
+
*
|
|
39
|
+
* 走 `Button` 正规 ghost 变体(§6 状态齐备由原语承担),窄容器下的收缩由
|
|
40
|
+
* `components.css` 的 `[data-slot="desktop-composer-model"]` 容器查询接手。
|
|
41
|
+
* `warning` 是「当前模型有问题」的提示态:功能色+文字前缀双编码(R1),不用荧黄。
|
|
42
|
+
*/
|
|
43
|
+
export function DesktopComposerModelButton({ label, title, open, warning, onClick }: DesktopComposerModelButtonProps) {
|
|
44
|
+
return (
|
|
45
|
+
<Button
|
|
46
|
+
variant="ghost"
|
|
47
|
+
size="sm"
|
|
48
|
+
type="button"
|
|
49
|
+
data-slot="desktop-composer-model"
|
|
50
|
+
data-ow-state={cn(open && "open", warning && "warning") || undefined}
|
|
51
|
+
className={cn(
|
|
52
|
+
"min-w-0 max-w-[190px] whitespace-nowrap flex-row-reverse",
|
|
53
|
+
warning && "text-[color:var(--ow-warning)]",
|
|
54
|
+
)}
|
|
55
|
+
aria-label={title ?? `选择模型:${label}`}
|
|
56
|
+
aria-expanded={open}
|
|
57
|
+
title={title ?? label}
|
|
58
|
+
onClick={onClick}
|
|
59
|
+
icon={<ChevDown />}
|
|
60
|
+
>
|
|
61
|
+
<span data-ow-part="label" className="min-w-0 overflow-hidden text-ellipsis whitespace-nowrap">
|
|
62
|
+
{label}
|
|
63
|
+
</span>
|
|
64
|
+
</Button>
|
|
65
|
+
)
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export type DesktopComposerProps = Omit<
|
|
69
|
+
ComposerProps,
|
|
70
|
+
"toolbarStart" | "toolbarEnd" | "footerStart" | "footerEnd" | "voice" | "project" | "authorization" | "contextUsage"
|
|
71
|
+
> & {
|
|
72
|
+
/** Replaces the complete composer while a blocking permission decision is active. */
|
|
73
|
+
permissionPrompt?: ReactNode
|
|
74
|
+
/** Portals and modal surfaces owned by the client workflow but mounted with the composer. */
|
|
75
|
+
dialogs?: ReactNode
|
|
76
|
+
addAction?: DesktopComposerAddAction
|
|
77
|
+
agent?: DesktopComposerContext
|
|
78
|
+
plan?: DesktopComposerContext
|
|
79
|
+
modelControl?: ReactNode
|
|
80
|
+
voiceControl?: ReactNode
|
|
81
|
+
projectControl?: ReactNode
|
|
82
|
+
/**
|
|
83
|
+
* 井脚免责句。**缺省 false**:R2·L1-2-2 起免责句归每一轮转录(`AgentTurn.disclaimer`),
|
|
84
|
+
* 不归输入井;传字符串才在井脚补一条自定义提示。
|
|
85
|
+
*/
|
|
86
|
+
notice?: ReactNode | false
|
|
87
|
+
authorizationControl?: ReactNode
|
|
88
|
+
contextUsage?: ReactNode
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* DesktopComposer —— `Composer` 的桌面配方(DS 2.0 蓝图批次③ 合并件)。
|
|
93
|
+
*
|
|
94
|
+
* 组合器本体、区域顺序、立面与状态极位置都在 `domain/chat/Composer`;本件只做
|
|
95
|
+
* 桌面这一路的取名与装配:把 addAction / agent / plan 装进工具条首,把模型控件装
|
|
96
|
+
* 进工具条尾,语音、项目、授权、上下文用量各自落在组合器定死的具名位上——它们
|
|
97
|
+
* 不再由本件手工拼进 footerStart / footerEnd,位置改由组合器负责。
|
|
98
|
+
*
|
|
99
|
+
* props 与导出保持不变,包外调用方无需改动。
|
|
100
|
+
*/
|
|
101
|
+
export const DesktopComposer = forwardRef<HTMLDivElement, DesktopComposerProps>(function DesktopComposer(
|
|
102
|
+
{
|
|
103
|
+
permissionPrompt,
|
|
104
|
+
dialogs,
|
|
105
|
+
addAction,
|
|
106
|
+
agent,
|
|
107
|
+
plan,
|
|
108
|
+
modelControl,
|
|
109
|
+
voiceControl,
|
|
110
|
+
projectControl,
|
|
111
|
+
notice = false,
|
|
112
|
+
authorizationControl,
|
|
113
|
+
contextUsage,
|
|
114
|
+
...composerProps
|
|
115
|
+
},
|
|
116
|
+
ref,
|
|
117
|
+
) {
|
|
118
|
+
const contextName = (context: DesktopComposerContext, fallback: string): ReactNode =>
|
|
119
|
+
typeof context.label === "string" ? context.label : fallback
|
|
120
|
+
const composer = permissionPrompt ?? (
|
|
121
|
+
<Composer
|
|
122
|
+
ref={ref}
|
|
123
|
+
{...composerProps}
|
|
124
|
+
toolbarStart={
|
|
125
|
+
addAction || agent || plan ? (
|
|
126
|
+
<>
|
|
127
|
+
{addAction && (
|
|
128
|
+
<span data-ow-part="control" className="relative inline-flex min-w-0">
|
|
129
|
+
<Button
|
|
130
|
+
variant="ghost"
|
|
131
|
+
size="sm"
|
|
132
|
+
type="button"
|
|
133
|
+
data-ow-part="tool"
|
|
134
|
+
data-ow-state={addAction.open ? "open" : undefined}
|
|
135
|
+
className={cn(addAction.open && "bg-[var(--ow-btn-ghost-press)]")}
|
|
136
|
+
aria-label={addAction.title ?? "添加"}
|
|
137
|
+
aria-expanded={addAction.open}
|
|
138
|
+
title={addAction.title ?? "添加"}
|
|
139
|
+
disabled={addAction.disabled}
|
|
140
|
+
onClick={addAction.onClick}
|
|
141
|
+
icon={<Plus />}
|
|
142
|
+
/>
|
|
143
|
+
</span>
|
|
144
|
+
)}
|
|
145
|
+
{agent && (
|
|
146
|
+
<Chip
|
|
147
|
+
removeMode="hover"
|
|
148
|
+
avatar={agent.avatar}
|
|
149
|
+
icon={agent.icon ?? (!agent.avatar ? <Bolt /> : undefined)}
|
|
150
|
+
label={agent.label}
|
|
151
|
+
description={agent.description}
|
|
152
|
+
onRemove={agent.onRemove}
|
|
153
|
+
tooltip={contextName(agent, "智能体")}
|
|
154
|
+
removeLabel={`移除${typeof agent.label === "string" ? ` ${agent.label}` : "智能体"}`}
|
|
155
|
+
className={MOUNT_CHIP_CLASS}
|
|
156
|
+
data-ow-variant="agent"
|
|
157
|
+
/>
|
|
158
|
+
)}
|
|
159
|
+
{plan && (
|
|
160
|
+
<Chip
|
|
161
|
+
removeMode="hover"
|
|
162
|
+
avatar={plan.avatar}
|
|
163
|
+
icon={plan.icon ?? <ClipboardList />}
|
|
164
|
+
label={plan.label}
|
|
165
|
+
description={plan.description}
|
|
166
|
+
onRemove={plan.onRemove}
|
|
167
|
+
tooltip={contextName(plan, "计划")}
|
|
168
|
+
removeLabel={`移除${typeof plan.label === "string" ? ` ${plan.label}` : "计划"}`}
|
|
169
|
+
className={MOUNT_CHIP_CLASS}
|
|
170
|
+
data-ow-variant="plan"
|
|
171
|
+
/>
|
|
172
|
+
)}
|
|
173
|
+
</>
|
|
174
|
+
) : undefined
|
|
175
|
+
}
|
|
176
|
+
toolbarEnd={
|
|
177
|
+
modelControl ? (
|
|
178
|
+
<span data-ow-part="control" className="relative inline-flex min-w-0">
|
|
179
|
+
{modelControl}
|
|
180
|
+
</span>
|
|
181
|
+
) : undefined
|
|
182
|
+
}
|
|
183
|
+
voice={voiceControl}
|
|
184
|
+
project={projectControl}
|
|
185
|
+
footerStart={
|
|
186
|
+
notice !== false ? (
|
|
187
|
+
<span
|
|
188
|
+
data-ow-part="notice"
|
|
189
|
+
className="flex-[0_0_auto] text-[color:var(--ow-text-3)] font-normal text-ow-fs-ui leading-none whitespace-nowrap"
|
|
190
|
+
>
|
|
191
|
+
{notice}
|
|
192
|
+
</span>
|
|
193
|
+
) : undefined
|
|
194
|
+
}
|
|
195
|
+
authorization={authorizationControl}
|
|
196
|
+
contextUsage={contextUsage}
|
|
197
|
+
/>
|
|
198
|
+
)
|
|
199
|
+
|
|
200
|
+
return (
|
|
201
|
+
<div data-slot="desktop-composer" className="composer-inner">
|
|
202
|
+
{composer}
|
|
203
|
+
{dialogs}
|
|
204
|
+
</div>
|
|
205
|
+
)
|
|
206
|
+
})
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from "@storybook/react"
|
|
2
|
+
import { Server } from "../../../composite/Icons"
|
|
3
|
+
import { DesktopConnectorDetailView } from "./index"
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* 连接器详情接管页 —— A11-B4(裁决 16)从 `Desktop/DesktopWorkspaceView` 整块搬来。
|
|
7
|
+
* 件本身一行未改,只是搬出「我的空间」那个待退役的文件,免得整屏退役时被误伤;
|
|
8
|
+
* 宿主是插件中心的 `features/skills/ConnectorModal.tsx:468`。
|
|
9
|
+
*/
|
|
10
|
+
const meta = {
|
|
11
|
+
title: "Desktop/DesktopConnectorDetailView",
|
|
12
|
+
component: DesktopConnectorDetailView,
|
|
13
|
+
} satisfies Meta<typeof DesktopConnectorDetailView>
|
|
14
|
+
|
|
15
|
+
export default meta
|
|
16
|
+
|
|
17
|
+
const mockTools = [
|
|
18
|
+
{ id: "1", name: "read_file", description: "读取文件内容" },
|
|
19
|
+
{ id: "2", name: "write_file", description: "写入文件" },
|
|
20
|
+
{ id: "3", name: "list_directory", description: "列出目录内容" },
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
export const ConnectorDetail: StoryObj<typeof DesktopConnectorDetailView> = {
|
|
24
|
+
render: () => (
|
|
25
|
+
<div style={{ height: "100vh", overflow: "auto" }}>
|
|
26
|
+
<DesktopConnectorDetailView
|
|
27
|
+
logo={<Server />}
|
|
28
|
+
name="文件系统"
|
|
29
|
+
author="Orbitwork 官方"
|
|
30
|
+
version="1.0.0"
|
|
31
|
+
description="提供文件系统访问能力,支持读取、写入和列出文件。"
|
|
32
|
+
runtime="stdio"
|
|
33
|
+
status="运行中"
|
|
34
|
+
statusTone="ok"
|
|
35
|
+
command="mcp-server-filesystem"
|
|
36
|
+
enabled={true}
|
|
37
|
+
tools={mockTools}
|
|
38
|
+
toolSummary="3 个可见工具"
|
|
39
|
+
metadata={[
|
|
40
|
+
{ id: "1", label: "协议版本", value: "MCP 1.0" },
|
|
41
|
+
{ id: "2", label: "启动时间", value: "2 分钟前" },
|
|
42
|
+
]}
|
|
43
|
+
onBack={() => console.log("Back")}
|
|
44
|
+
onToggle={(enabled) => console.log("Toggle", enabled)}
|
|
45
|
+
onRefresh={() => console.log("Refresh")}
|
|
46
|
+
onEdit={() => console.log("Edit")}
|
|
47
|
+
onRemove={() => console.log("Remove")}
|
|
48
|
+
/>
|
|
49
|
+
</div>
|
|
50
|
+
),
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export const ConnectorDetailError: StoryObj<typeof DesktopConnectorDetailView> = {
|
|
54
|
+
render: () => (
|
|
55
|
+
<div style={{ height: "100vh", overflow: "auto" }}>
|
|
56
|
+
<DesktopConnectorDetailView
|
|
57
|
+
logo={<Server />}
|
|
58
|
+
name="故障连接器"
|
|
59
|
+
description="这个连接器遇到了启动错误"
|
|
60
|
+
runtime="stdio"
|
|
61
|
+
status="启动失败"
|
|
62
|
+
statusTone="error"
|
|
63
|
+
enabled={false}
|
|
64
|
+
error="连接器进程启动失败:命令未找到"
|
|
65
|
+
tools={[]}
|
|
66
|
+
emptyToolsText="连接器未启动,无法加载工具"
|
|
67
|
+
onBack={() => console.log("Back")}
|
|
68
|
+
onCopyDiagnostic={() => console.log("Copy diagnostic")}
|
|
69
|
+
/>
|
|
70
|
+
</div>
|
|
71
|
+
),
|
|
72
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import assert from "node:assert/strict"
|
|
2
|
+
import { readFile } from "node:fs/promises"
|
|
3
|
+
import test from "node:test"
|
|
4
|
+
|
|
5
|
+
/*
|
|
6
|
+
* A11-B4(裁决 16):断言随件搬家 —— 这三条原本在
|
|
7
|
+
* DesktopWorkspaceView/DesktopWorkspaceViewSource.test.mjs,
|
|
8
|
+
* 连接器详情搬出「我的空间」后跟到这里,逐字未改,只把类型名从
|
|
9
|
+
* DesktopWorkspaceConnector* 换成搬家后的 DesktopConnector*。
|
|
10
|
+
*/
|
|
11
|
+
const source = await readFile(new URL("./index.tsx", import.meta.url), "utf8")
|
|
12
|
+
|
|
13
|
+
test("connector detail supports discover content through one public view", () => {
|
|
14
|
+
// A4-B4:返回条照原型(4718 `'返回插件 · ' + word`)改成「返回插件 · 连接器」——
|
|
15
|
+
// 上一级页已经从「发现」改名「插件」,返回条却还在指旧名。
|
|
16
|
+
assert.match(source, /backLabel\s*=\s*['"]返回插件 · 连接器['"]/)
|
|
17
|
+
assert.ok(source.includes("<DesktopCatalogDetailShell"))
|
|
18
|
+
assert.ok(source.includes("<DesktopCatalogDetailActions"))
|
|
19
|
+
assert.ok(source.includes("actions?: DesktopConnectorActionView[]"))
|
|
20
|
+
assert.ok(source.includes("overflow?: boolean"))
|
|
21
|
+
assert.ok(source.includes("metadata?: DesktopConnectorMetaView[]"))
|
|
22
|
+
assert.ok(source.includes("authorization?: ReactNode"))
|
|
23
|
+
assert.ok(source.includes("detailContent?: ReactNode"))
|
|
24
|
+
assert.ok(source.includes("toolAction?: DesktopConnectorActionView"))
|
|
25
|
+
assert.ok(source.includes("metadata.map((item)"))
|
|
26
|
+
assert.match(source, /\{authorization\s*&&\s*\(?\s*<section/)
|
|
27
|
+
assert.match(source, /\{detailContent\s*&&\s*\(?\s*<div\s+className=["']skd__doc["']/)
|
|
28
|
+
assert.ok(source.includes("actions={inlineActions.map((action)"))
|
|
29
|
+
assert.ok(source.includes("menuItems={overflowActions.map((action)"))
|
|
30
|
+
assert.match(source, /className="conn-tools__empty"[\s\S]*toolAction\s*&&[\s\S]*<Button[\s\S]*toolAction\.label/)
|
|
31
|
+
assert.doesNotMatch(source, /className="conn-detail(?:__hero|__actions|__section)?"/)
|
|
32
|
+
})
|
|
33
|
+
|
|
34
|
+
test("A4-B4:破坏性动作叫「断开连接」且只在 ⋯ 里,页头右侧不留红实底钮", () => {
|
|
35
|
+
// 退化现场:「刷新状态 / 编辑配置 / 卸载连接器」三颗并排杵在页头,最后一颗是红实底——
|
|
36
|
+
// 破坏性动作站上行动极的位置。原型 4732 的连接器域把它叫「断开连接」并收进 ⋯。
|
|
37
|
+
assert.doesNotMatch(source, /label: "卸载连接器"/)
|
|
38
|
+
assert.match(
|
|
39
|
+
source,
|
|
40
|
+
/label: "断开连接",\s*\n\s*icon: <Trash \/>,\s*\n\s*variant: "danger" as const,\s*\n\s*overflow: true,/,
|
|
41
|
+
)
|
|
42
|
+
assert.match(source, /label: "刷新状态", icon: <Refresh \/>, overflow: true, onAction: onRefresh/)
|
|
43
|
+
// 主钮是「编辑配置」,排在第一位(收敛规则=第一颗上台面)
|
|
44
|
+
assert.match(source, /const resolvedActions: DesktopConnectorActionView\[\] = actions \?\? \[\s*\n\s*\.\.\.\(onEdit/)
|
|
45
|
+
})
|
|
46
|
+
|
|
47
|
+
test("A4-B4:一句描述升到 hero,正文不再重写一遍「简介」节", () => {
|
|
48
|
+
assert.match(source, /summary=\{description\}/)
|
|
49
|
+
assert.doesNotMatch(source, /<div className="lbl">简介<\/div>/)
|
|
50
|
+
})
|
|
51
|
+
|
|
52
|
+
test("workspace connector row is no longer exposed", () => {
|
|
53
|
+
assert.doesNotMatch(source, /DesktopConnectorRowView/)
|
|
54
|
+
})
|
|
55
|
+
|
|
56
|
+
test("R5:工具区计数只出一处——摘要在就顶掉 .cnt 圆章", () => {
|
|
57
|
+
// 退化现场:「工具 ⟨3⟩ 3 个可见工具」——圆章读数与摘要里的数字同屏重复。
|
|
58
|
+
// 新口径:toolSummary 在时由摘要承担计数,.cnt 只在没有摘要时回落。
|
|
59
|
+
assert.doesNotMatch(source, /工具 <span className="cnt">\{tools\.length\}<\/span>/)
|
|
60
|
+
assert.match(
|
|
61
|
+
source,
|
|
62
|
+
/工具\{" "\}\s*\{toolSummary \? \(\s*<span className="skd__lbl-note">\{toolSummary\}<\/span>\s*\) : \(\s*<span className="cnt">\{tools\.length\}<\/span>\s*\)\}/,
|
|
63
|
+
)
|
|
64
|
+
// 两种表达互斥,源码里不再出现「圆章 + 摘要」并列渲染
|
|
65
|
+
assert.doesNotMatch(source, /\{tools\.length\}<\/span>\s*\n\s*\{toolSummary &&/)
|
|
66
|
+
})
|
|
67
|
+
|
|
68
|
+
test("A11-B4:旧名以 @deprecated 别名保留,宿主 import 不断", () => {
|
|
69
|
+
assert.match(
|
|
70
|
+
source,
|
|
71
|
+
/@deprecated[\s\S]*?export const DesktopWorkspaceConnectorDetailView = DesktopConnectorDetailView/,
|
|
72
|
+
)
|
|
73
|
+
for (const alias of [
|
|
74
|
+
"DesktopWorkspaceConnectorToolView",
|
|
75
|
+
"DesktopWorkspaceConnectorActionView",
|
|
76
|
+
"DesktopWorkspaceConnectorMetaView",
|
|
77
|
+
"DesktopWorkspaceConnectorDetailViewProps",
|
|
78
|
+
]) {
|
|
79
|
+
assert.match(source, new RegExp(`export type ${alias} = Desktop`))
|
|
80
|
+
}
|
|
81
|
+
})
|