@forgeax/interface 0.4.1
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/LICENSE +202 -0
- package/NOTICE +9 -0
- package/README.md +111 -0
- package/dist/package/browser/App.css +192 -0
- package/dist/package/browser/App.d.ts +11 -0
- package/dist/package/browser/App.js +11 -0
- package/dist/package/browser/ApplicationDetachedShell.d.ts +13 -0
- package/dist/package/browser/ApplicationDetachedShell.js +10 -0
- package/dist/package/browser/ApplicationShell.d.ts +19 -0
- package/dist/package/browser/ApplicationShell.js +62 -0
- package/dist/package/browser/app-kit.d.ts +1 -0
- package/dist/package/browser/app-kit.js +4 -0
- package/dist/package/browser/appHostBootstrap.d.ts +16 -0
- package/dist/package/browser/appHostBootstrap.js +145 -0
- package/dist/package/browser/application.d.ts +35 -0
- package/dist/package/browser/application.js +64 -0
- package/dist/package/browser/assets/icons/agent-icon.png +0 -0
- package/dist/package/browser/assets/icons/at.svg +3 -0
- package/dist/package/browser/assets/icons/chevron-collapse.svg +3 -0
- package/dist/package/browser/assets/icons/chevron-expand.svg +3 -0
- package/dist/package/browser/assets/icons/chevron-up.svg +3 -0
- package/dist/package/browser/assets/icons/close-x.svg +3 -0
- package/dist/package/browser/assets/icons/close.svg +3 -0
- package/dist/package/browser/assets/icons/copy.svg +4 -0
- package/dist/package/browser/assets/icons/edit.svg +3 -0
- package/dist/package/browser/assets/icons/fullscreen.svg +3 -0
- package/dist/package/browser/assets/icons/pause.svg +4 -0
- package/dist/package/browser/assets/icons/play.svg +3 -0
- package/dist/package/browser/assets/icons/select.svg +3 -0
- package/dist/package/browser/assets/icons/sendMessage-enable.svg +4 -0
- package/dist/package/browser/assets/icons/sendMessage.svg +4 -0
- package/dist/package/browser/assets/icons/status-done.svg +11 -0
- package/dist/package/browser/assets/icons/status-running.svg +10 -0
- package/dist/package/browser/assets/icons/status-waiting.svg +10 -0
- package/dist/package/browser/assets/icons/tool-execute-script.svg +3 -0
- package/dist/package/browser/assets/icons/tool-other.svg +10 -0
- package/dist/package/browser/assets/icons/tool-read-file.svg +3 -0
- package/dist/package/browser/assets/icons/tool-resource-search.svg +3 -0
- package/dist/package/browser/assets/icons/tool-task-todo.svg +4 -0
- package/dist/package/browser/assets/icons/tool-write-file.svg +3 -0
- package/dist/package/browser/boot/SettingsSection.d.ts +14 -0
- package/dist/package/browser/boot/SettingsSection.js +82 -0
- package/dist/package/browser/boot/broadcast.d.ts +2 -0
- package/dist/package/browser/boot/broadcast.js +32 -0
- package/dist/package/browser/boot/driver.d.ts +22 -0
- package/dist/package/browser/boot/driver.js +47 -0
- package/dist/package/browser/boot/store.d.ts +29 -0
- package/dist/package/browser/boot/store.js +114 -0
- package/dist/package/browser/boot/themes.d.ts +19 -0
- package/dist/package/browser/boot/themes.js +21 -0
- package/dist/package/browser/boot/types.d.ts +22 -0
- package/dist/package/browser/boot/types.js +30 -0
- package/dist/package/browser/brand/BrandProvider.d.ts +19 -0
- package/dist/package/browser/brand/BrandProvider.js +35 -0
- package/dist/package/browser/brand/index.d.ts +4 -0
- package/dist/package/browser/brand/index.js +3 -0
- package/dist/package/browser/brand/runtime.d.ts +17 -0
- package/dist/package/browser/brand/runtime.js +71 -0
- package/dist/package/browser/brand/types.d.ts +77 -0
- package/dist/package/browser/brand/types.js +9 -0
- package/dist/package/browser/components/ActivityRail/ActivityRail.css +294 -0
- package/dist/package/browser/components/ActivityRail/ActivityRail.d.ts +2 -0
- package/dist/package/browser/components/ActivityRail/ActivityRail.js +164 -0
- package/dist/package/browser/components/ActivityRail/activity-rail-model.d.ts +18 -0
- package/dist/package/browser/components/ActivityRail/activity-rail-model.js +144 -0
- package/dist/package/browser/components/AgentAvatar/AgentAvatar.d.ts +17 -0
- package/dist/package/browser/components/AgentAvatar/AgentAvatar.js +50 -0
- package/dist/package/browser/components/BuildBadge/BuildBadge.d.ts +1 -0
- package/dist/package/browser/components/BuildBadge/BuildBadge.js +279 -0
- package/dist/package/browser/components/Bus/BusAdminPanel.css +2425 -0
- package/dist/package/browser/components/Bus/BusAdminPanel.d.ts +2 -0
- package/dist/package/browser/components/Bus/BusAdminPanel.js +1385 -0
- package/dist/package/browser/components/Bus/CapabilityOverview.d.ts +3 -0
- package/dist/package/browser/components/Bus/CapabilityOverview.js +50 -0
- package/dist/package/browser/components/ChatColumn/ChatColumn.d.ts +2 -0
- package/dist/package/browser/components/ChatColumn/ChatColumn.js +18 -0
- package/dist/package/browser/components/ChatColumn/SessionTabStrip.d.ts +1 -0
- package/dist/package/browser/components/ChatColumn/SessionTabStrip.js +103 -0
- package/dist/package/browser/components/ChatColumn/useChatWidth.d.ts +5 -0
- package/dist/package/browser/components/ChatColumn/useChatWidth.js +13 -0
- package/dist/package/browser/components/CommandPalette/CommandPalette.css +199 -0
- package/dist/package/browser/components/CommandPalette/CommandPalette.d.ts +2 -0
- package/dist/package/browser/components/CommandPalette/CommandPalette.js +242 -0
- package/dist/package/browser/components/Confirm/ConfirmDialog.d.ts +2 -0
- package/dist/package/browser/components/Confirm/ConfirmDialog.js +113 -0
- package/dist/package/browser/components/ContextMenu/ContextMenu.d.ts +10 -0
- package/dist/package/browser/components/ContextMenu/ContextMenu.js +218 -0
- package/dist/package/browser/components/ContextMenu/menuRegistry.d.ts +18 -0
- package/dist/package/browser/components/ContextMenu/menuRegistry.js +152 -0
- package/dist/package/browser/components/DetachedSurface.d.ts +20 -0
- package/dist/package/browser/components/DetachedSurface.js +102 -0
- package/dist/package/browser/components/DockShell/DockPanelHost.d.ts +4 -0
- package/dist/package/browser/components/DockShell/DockPanelHost.js +7 -0
- package/dist/package/browser/components/DockShell/DockRegion.d.ts +7 -0
- package/dist/package/browser/components/DockShell/DockRegion.js +315 -0
- package/dist/package/browser/components/DockShell/DockShell.css +1018 -0
- package/dist/package/browser/components/DockShell/DockTab.d.ts +3 -0
- package/dist/package/browser/components/DockShell/DockTab.js +139 -0
- package/dist/package/browser/components/DockShell/ExtensionHostPanel.d.ts +9 -0
- package/dist/package/browser/components/DockShell/ExtensionHostPanel.js +68 -0
- package/dist/package/browser/components/DockShell/ExtensionRuntimeFrame.d.ts +14 -0
- package/dist/package/browser/components/DockShell/ExtensionRuntimeFrame.js +56 -0
- package/dist/package/browser/components/DockShell/PanelWindowingBoundary.d.ts +6 -0
- package/dist/package/browser/components/DockShell/PanelWindowingBoundary.js +9 -0
- package/dist/package/browser/components/DockShell/chatDockAnimation.d.ts +45 -0
- package/dist/package/browser/components/DockShell/chatDockAnimation.js +101 -0
- package/dist/package/browser/components/DockShell/chatDockFullscreen.d.ts +17 -0
- package/dist/package/browser/components/DockShell/chatDockFullscreen.js +22 -0
- package/dist/package/browser/components/DockShell/chatDockLayout.d.ts +10 -0
- package/dist/package/browser/components/DockShell/chatDockLayout.js +11 -0
- package/dist/package/browser/components/DockShell/compact-empty-dock-groups.d.ts +16 -0
- package/dist/package/browser/components/DockShell/compact-empty-dock-groups.js +28 -0
- package/dist/package/browser/components/DockShell/crossInstanceDrop.d.ts +1 -0
- package/dist/package/browser/components/DockShell/crossInstanceDrop.js +1 -0
- package/dist/package/browser/components/DockShell/dockResetEpoch.d.ts +2 -0
- package/dist/package/browser/components/DockShell/dockResetEpoch.js +13 -0
- package/dist/package/browser/components/DockShell/dockTitle.d.ts +12 -0
- package/dist/package/browser/components/DockShell/dockTitle.js +36 -0
- package/dist/package/browser/components/DockShell/dockviewRegistry.d.ts +1 -0
- package/dist/package/browser/components/DockShell/dockviewRegistry.js +1 -0
- package/dist/package/browser/components/DockShell/edgeDrawer.d.ts +24 -0
- package/dist/package/browser/components/DockShell/edgeDrawer.js +1144 -0
- package/dist/package/browser/components/DockShell/edgePinStore.d.ts +12 -0
- package/dist/package/browser/components/DockShell/edgePinStore.js +37 -0
- package/dist/package/browser/components/DockShell/extension-editor-bridge.d.ts +13 -0
- package/dist/package/browser/components/DockShell/extension-editor-bridge.js +100 -0
- package/dist/package/browser/components/DockShell/extension-runtime-selection.d.ts +8 -0
- package/dist/package/browser/components/DockShell/extension-runtime-selection.js +6 -0
- package/dist/package/browser/components/DockShell/extensionRuntime.d.ts +17 -0
- package/dist/package/browser/components/DockShell/extensionRuntime.js +84 -0
- package/dist/package/browser/components/DockShell/footer-panel-visibility.d.ts +7 -0
- package/dist/package/browser/components/DockShell/footer-panel-visibility.js +43 -0
- package/dist/package/browser/components/DockShell/footer-panels.d.ts +2 -0
- package/dist/package/browser/components/DockShell/footer-panels.js +7 -0
- package/dist/package/browser/components/DockShell/panelRegistry.d.ts +37 -0
- package/dist/package/browser/components/DockShell/panelRegistry.js +126 -0
- package/dist/package/browser/components/DockShell/panelRenderers.d.ts +325 -0
- package/dist/package/browser/components/DockShell/panelRenderers.js +25 -0
- package/dist/package/browser/components/DockShell/panelTabCommands.d.ts +18 -0
- package/dist/package/browser/components/DockShell/panelTabCommands.js +133 -0
- package/dist/package/browser/components/DockShell/panelWindowing.d.ts +32 -0
- package/dist/package/browser/components/DockShell/panelWindowing.js +42 -0
- package/dist/package/browser/components/DockShell/regions.d.ts +1 -0
- package/dist/package/browser/components/DockShell/regions.js +1 -0
- package/dist/package/browser/components/DockShell/resolveRegion.d.ts +1 -0
- package/dist/package/browser/components/DockShell/resolveRegion.js +1 -0
- package/dist/package/browser/components/DockShell/sanitizeDockLayout.d.ts +3 -0
- package/dist/package/browser/components/DockShell/sanitizeDockLayout.js +46 -0
- package/dist/package/browser/components/DockShell/sideEdgeMove.d.ts +1 -0
- package/dist/package/browser/components/DockShell/sideEdgeMove.js +1 -0
- package/dist/package/browser/components/DockShell/studioTabMenuProvider.d.ts +13 -0
- package/dist/package/browser/components/DockShell/studioTabMenuProvider.js +39 -0
- package/dist/package/browser/components/DockShell/tabContextMenu.d.ts +29 -0
- package/dist/package/browser/components/DockShell/tabContextMenu.js +68 -0
- package/dist/package/browser/components/DockShell/ueDrag/controller.d.ts +80 -0
- package/dist/package/browser/components/DockShell/ueDrag/controller.js +785 -0
- package/dist/package/browser/components/DockShell/ueDrag/geometry.d.ts +94 -0
- package/dist/package/browser/components/DockShell/ueDrag/geometry.js +217 -0
- package/dist/package/browser/components/DockShell/ueDrag/overlay.d.ts +32 -0
- package/dist/package/browser/components/DockShell/ueDrag/overlay.js +206 -0
- package/dist/package/browser/components/DockShell/ueDrag/ueDrag.css +199 -0
- package/dist/package/browser/components/DockShell/useAuxBarWidth.d.ts +5 -0
- package/dist/package/browser/components/DockShell/useAuxBarWidth.js +13 -0
- package/dist/package/browser/components/Drawer/DrawerHostView.css +143 -0
- package/dist/package/browser/components/Drawer/DrawerHostView.d.ts +19 -0
- package/dist/package/browser/components/Drawer/DrawerHostView.js +93 -0
- package/dist/package/browser/components/Drawer/DrawerLauncher.d.ts +12 -0
- package/dist/package/browser/components/Drawer/DrawerLauncher.js +22 -0
- package/dist/package/browser/components/Drawer/useDrawerStore.d.ts +15 -0
- package/dist/package/browser/components/Drawer/useDrawerStore.js +80 -0
- package/dist/package/browser/components/ErrorBoundary.d.ts +55 -0
- package/dist/package/browser/components/ErrorBoundary.js +131 -0
- package/dist/package/browser/components/ExtensionHost/ExtensionIframeHost.d.ts +28 -0
- package/dist/package/browser/components/ExtensionHost/ExtensionIframeHost.js +179 -0
- package/dist/package/browser/components/ExtensionHost/NativeExtensionHost.d.ts +14 -0
- package/dist/package/browser/components/ExtensionHost/NativeExtensionHost.js +152 -0
- package/dist/package/browser/components/Feedback/FeedbackPanel.css +640 -0
- package/dist/package/browser/components/Feedback/FeedbackPanel.d.ts +8 -0
- package/dist/package/browser/components/Feedback/FeedbackPanel.js +118 -0
- package/dist/package/browser/components/Feedback/PassiveFeedback.css +179 -0
- package/dist/package/browser/components/Feedback/PassiveFeedback.d.ts +2 -0
- package/dist/package/browser/components/Feedback/PassiveFeedback.js +218 -0
- package/dist/package/browser/components/Feedback/collect.d.ts +15 -0
- package/dist/package/browser/components/Feedback/collect.js +80 -0
- package/dist/package/browser/components/Feedback/store.d.ts +61 -0
- package/dist/package/browser/components/Feedback/store.js +174 -0
- package/dist/package/browser/components/LangSwitcher/LangSwitcher.css +78 -0
- package/dist/package/browser/components/LangSwitcher/LangSwitcher.d.ts +14 -0
- package/dist/package/browser/components/LangSwitcher/LangSwitcher.js +44 -0
- package/dist/package/browser/components/MainArea/ConsolePanel.d.ts +1 -0
- package/dist/package/browser/components/MainArea/ConsolePanel.js +16 -0
- package/dist/package/browser/components/MainArea/MainArea.css +2130 -0
- package/dist/package/browser/components/MainArea/MainArea.d.ts +2 -0
- package/dist/package/browser/components/MainArea/MainArea.js +20 -0
- package/dist/package/browser/components/MainArea/StandaloneExtensionIframe.d.ts +25 -0
- package/dist/package/browser/components/MainArea/StandaloneExtensionIframe.js +155 -0
- package/dist/package/browser/components/MainArea/SurfacePanels.d.ts +3 -0
- package/dist/package/browser/components/MainArea/SurfacePanels.js +27 -0
- package/dist/package/browser/components/MainArea/TelemetryViewer.css +122 -0
- package/dist/package/browser/components/MainArea/TelemetryViewer.d.ts +36 -0
- package/dist/package/browser/components/MainArea/TelemetryViewer.js +116 -0
- package/dist/package/browser/components/MenuBar/MenuBar.css +186 -0
- package/dist/package/browser/components/MenuBar/MenuBar.d.ts +27 -0
- package/dist/package/browser/components/MenuBar/MenuBar.js +286 -0
- package/dist/package/browser/components/MenuBar/index.d.ts +1 -0
- package/dist/package/browser/components/MenuBar/index.js +1 -0
- package/dist/package/browser/components/MenuBar/menubar-open-state.d.ts +8 -0
- package/dist/package/browser/components/MenuBar/menubar-open-state.js +11 -0
- package/dist/package/browser/components/MenuBar/menubar-surface.d.ts +30 -0
- package/dist/package/browser/components/MenuBar/menubar-surface.js +201 -0
- package/dist/package/browser/components/ModelPicker/index.d.ts +1 -0
- package/dist/package/browser/components/ModelPicker/index.js +1 -0
- package/dist/package/browser/components/ModelPicker/useModelCatalog.d.ts +22 -0
- package/dist/package/browser/components/ModelPicker/useModelCatalog.js +100 -0
- package/dist/package/browser/components/Onboarding/ConnectModelPrompt.d.ts +2 -0
- package/dist/package/browser/components/Onboarding/ConnectModelPrompt.js +40 -0
- package/dist/package/browser/components/Onboarding/Onboarding.css +232 -0
- package/dist/package/browser/components/Onboarding/OnboardingController.d.ts +10 -0
- package/dist/package/browser/components/Onboarding/OnboardingController.js +549 -0
- package/dist/package/browser/components/Onboarding/connect-selection.d.ts +17 -0
- package/dist/package/browser/components/Onboarding/connect-selection.js +18 -0
- package/dist/package/browser/components/Onboarding/home-transition.d.ts +9 -0
- package/dist/package/browser/components/Onboarding/home-transition.js +20 -0
- package/dist/package/browser/components/Onboarding/index.d.ts +4 -0
- package/dist/package/browser/components/Onboarding/index.js +3 -0
- package/dist/package/browser/components/Onboarding/prepareTourShell.d.ts +5 -0
- package/dist/package/browser/components/Onboarding/prepareTourShell.js +11 -0
- package/dist/package/browser/components/Onboarding/project-name.d.ts +17 -0
- package/dist/package/browser/components/Onboarding/project-name.js +29 -0
- package/dist/package/browser/components/Onboarding/types.d.ts +31 -0
- package/dist/package/browser/components/Onboarding/types.js +77 -0
- package/dist/package/browser/components/PageTabs/PageTabStrip.css +221 -0
- package/dist/package/browser/components/PageTabs/PageTabStrip.d.ts +3 -0
- package/dist/package/browser/components/PageTabs/PageTabStrip.js +214 -0
- package/dist/package/browser/components/PageTabs/openablePageTypes.d.ts +9 -0
- package/dist/package/browser/components/PageTabs/openablePageTypes.js +13 -0
- package/dist/package/browser/components/PanelShell/PanelShell.css +517 -0
- package/dist/package/browser/components/PanelShell/PanelShell.d.ts +7 -0
- package/dist/package/browser/components/PanelShell/PanelShell.js +459 -0
- package/dist/package/browser/components/Resize/ResizeHandle.d.ts +1 -0
- package/dist/package/browser/components/Resize/ResizeHandle.js +1 -0
- package/dist/package/browser/components/SceneBackground/SceneBackground.d.ts +2 -0
- package/dist/package/browser/components/SceneBackground/SceneBackground.js +5 -0
- package/dist/package/browser/components/SchemaForm/SchemaForm.css +138 -0
- package/dist/package/browser/components/SchemaForm/SchemaForm.d.ts +17 -0
- package/dist/package/browser/components/SchemaForm/SchemaForm.js +86 -0
- package/dist/package/browser/components/SchemaForm/schema-form-utils.d.ts +30 -0
- package/dist/package/browser/components/SchemaForm/schema-form-utils.js +51 -0
- package/dist/package/browser/components/SettingsPrimitives.d.ts +24 -0
- package/dist/package/browser/components/SettingsPrimitives.js +145 -0
- package/dist/package/browser/components/Sidebar/BusHealthLamp.d.ts +1 -0
- package/dist/package/browser/components/Sidebar/BusHealthLamp.js +72 -0
- package/dist/package/browser/components/Sidebar/FilesPanel.d.ts +1 -0
- package/dist/package/browser/components/Sidebar/FilesPanel.js +234 -0
- package/dist/package/browser/components/Sidebar/Sidebar.css +1393 -0
- package/dist/package/browser/components/Sidebar/Sidebar.d.ts +3 -0
- package/dist/package/browser/components/Sidebar/Sidebar.js +8 -0
- package/dist/package/browser/components/Sidebar/sidebar-types.d.ts +18 -0
- package/dist/package/browser/components/Sidebar/sidebar-types.js +1 -0
- package/dist/package/browser/components/SlotDebugOverlay/SlotDebugOverlay.d.ts +1 -0
- package/dist/package/browser/components/SlotDebugOverlay/SlotDebugOverlay.js +1 -0
- package/dist/package/browser/components/SlotDebugOverlay/hashHue.d.ts +1 -0
- package/dist/package/browser/components/SlotDebugOverlay/hashHue.js +1 -0
- package/dist/package/browser/components/SlotDebugOverlay/index.d.ts +1 -0
- package/dist/package/browser/components/SlotDebugOverlay/index.js +1 -0
- package/dist/package/browser/components/SlotDebugOverlay/isSlotDebugEnabled.d.ts +1 -0
- package/dist/package/browser/components/SlotDebugOverlay/isSlotDebugEnabled.js +1 -0
- package/dist/package/browser/components/StatusBar/FatalBanner.d.ts +25 -0
- package/dist/package/browser/components/StatusBar/FatalBanner.js +52 -0
- package/dist/package/browser/components/StatusBar/GlobalStatusBar.css +304 -0
- package/dist/package/browser/components/StatusBar/InfoPanel.css +174 -0
- package/dist/package/browser/components/StatusBar/InfoPanel.d.ts +19 -0
- package/dist/package/browser/components/StatusBar/InfoPanel.js +128 -0
- package/dist/package/browser/components/StatusBar/StatusChip.css +52 -0
- package/dist/package/browser/components/StatusBar/StatusChip.d.ts +40 -0
- package/dist/package/browser/components/StatusBar/StatusChip.js +13 -0
- package/dist/package/browser/components/StatusBar/StripHostView.d.ts +2 -0
- package/dist/package/browser/components/StatusBar/StripHostView.js +91 -0
- package/dist/package/browser/components/StatusBar/StripPopover.css +58 -0
- package/dist/package/browser/components/StatusBar/StripPopover.d.ts +16 -0
- package/dist/package/browser/components/StatusBar/StripPopover.js +15 -0
- package/dist/package/browser/components/StatusBar/feeds/PulseFeeds.d.ts +16 -0
- package/dist/package/browser/components/StatusBar/feeds/PulseFeeds.js +88 -0
- package/dist/package/browser/components/StatusBar/footer/CheckpointsDrawer.d.ts +4 -0
- package/dist/package/browser/components/StatusBar/footer/CheckpointsDrawer.js +77 -0
- package/dist/package/browser/components/StatusBar/footer/DiagnosticsPopover.d.ts +4 -0
- package/dist/package/browser/components/StatusBar/footer/DiagnosticsPopover.js +108 -0
- package/dist/package/browser/components/StatusBar/footer/EventsDrawer.d.ts +14 -0
- package/dist/package/browser/components/StatusBar/footer/EventsDrawer.js +25 -0
- package/dist/package/browser/components/StatusBar/footer/ForgeaxBuildPopover.d.ts +4 -0
- package/dist/package/browser/components/StatusBar/footer/ForgeaxBuildPopover.js +62 -0
- package/dist/package/browser/components/StatusBar/footer/footer.css +178 -0
- package/dist/package/browser/components/StatusBar/healthBridge.d.ts +38 -0
- package/dist/package/browser/components/StatusBar/healthBridge.js +245 -0
- package/dist/package/browser/components/StatusBar/healthStore.d.ts +80 -0
- package/dist/package/browser/components/StatusBar/healthStore.js +129 -0
- package/dist/package/browser/components/StatusBar/useStatusItem.d.ts +10 -0
- package/dist/package/browser/components/StatusBar/useStatusItem.js +35 -0
- package/dist/package/browser/components/Surfaces/SurfaceKeepAlive.css +34 -0
- package/dist/package/browser/components/Surfaces/SurfaceKeepAliveLayer.d.ts +3 -0
- package/dist/package/browser/components/Surfaces/SurfaceKeepAliveLayer.js +218 -0
- package/dist/package/browser/components/Surfaces/SurfaceOverlay.css +160 -0
- package/dist/package/browser/components/Surfaces/SurfaceOverlay.d.ts +9 -0
- package/dist/package/browser/components/Surfaces/SurfaceOverlay.js +144 -0
- package/dist/package/browser/components/TopBar/AndroidPackageDialog.d.ts +23 -0
- package/dist/package/browser/components/TopBar/AndroidPackageDialog.js +115 -0
- package/dist/package/browser/components/TopBar/FsBrowser.css +156 -0
- package/dist/package/browser/components/TopBar/FsBrowser.d.ts +8 -0
- package/dist/package/browser/components/TopBar/FsBrowser.js +93 -0
- package/dist/package/browser/components/TopBar/GameSwitcher.d.ts +29 -0
- package/dist/package/browser/components/TopBar/GameSwitcher.js +157 -0
- package/dist/package/browser/components/TopBar/IosPackageDialog.d.ts +23 -0
- package/dist/package/browser/components/TopBar/IosPackageDialog.js +115 -0
- package/dist/package/browser/components/TopBar/ProjectSwitcher.d.ts +3 -0
- package/dist/package/browser/components/TopBar/ProjectSwitcher.js +41 -0
- package/dist/package/browser/components/TopBar/PublishOnboarding.css +133 -0
- package/dist/package/browser/components/TopBar/PublishOnboarding.d.ts +10 -0
- package/dist/package/browser/components/TopBar/PublishOnboarding.js +144 -0
- package/dist/package/browser/components/TopBar/SessionSwitcher.d.ts +2 -0
- package/dist/package/browser/components/TopBar/SessionSwitcher.js +124 -0
- package/dist/package/browser/components/TopBar/TopBar.css +1672 -0
- package/dist/package/browser/components/TopBar/TopBar.d.ts +2 -0
- package/dist/package/browser/components/TopBar/TopBar.js +606 -0
- package/dist/package/browser/components/TopBar/publish-options.d.ts +20 -0
- package/dist/package/browser/components/TopBar/publish-options.js +28 -0
- package/dist/package/browser/components/TourOverlay/TourOverlay.css +122 -0
- package/dist/package/browser/components/TourOverlay/TourOverlay.d.ts +26 -0
- package/dist/package/browser/components/TourOverlay/TourOverlay.js +233 -0
- package/dist/package/browser/components/TourOverlay/index.d.ts +2 -0
- package/dist/package/browser/components/TourOverlay/index.js +1 -0
- package/dist/package/browser/components/ownership.d.ts +7 -0
- package/dist/package/browser/components/ownership.js +7 -0
- package/dist/package/browser/components/ui/SearchableMenu.css +143 -0
- package/dist/package/browser/components/ui/SearchableMenu.d.ts +30 -0
- package/dist/package/browser/components/ui/SearchableMenu.js +40 -0
- package/dist/package/browser/components/ui/alert-dialog.d.ts +20 -0
- package/dist/package/browser/components/ui/alert-dialog.js +38 -0
- package/dist/package/browser/components/ui/button.d.ts +11 -0
- package/dist/package/browser/components/ui/button.js +33 -0
- package/dist/package/browser/components/ui/checkbox.d.ts +4 -0
- package/dist/package/browser/components/ui/checkbox.js +8 -0
- package/dist/package/browser/components/ui/command.d.ts +74 -0
- package/dist/package/browser/components/ui/command.js +20 -0
- package/dist/package/browser/components/ui/dialog.d.ts +21 -0
- package/dist/package/browser/components/ui/dialog.js +34 -0
- package/dist/package/browser/components/ui/dropdown-menu.d.ts +18 -0
- package/dist/package/browser/components/ui/dropdown-menu.js +30 -0
- package/dist/package/browser/components/ui/input.d.ts +3 -0
- package/dist/package/browser/components/ui/input.js +8 -0
- package/dist/package/browser/components/ui/label.d.ts +4 -0
- package/dist/package/browser/components/ui/label.js +7 -0
- package/dist/package/browser/components/ui/popover.d.ts +7 -0
- package/dist/package/browser/components/ui/popover.js +10 -0
- package/dist/package/browser/components/ui/select.d.ts +11 -0
- package/dist/package/browser/components/ui/select.js +31 -0
- package/dist/package/browser/components/ui/tabs.d.ts +7 -0
- package/dist/package/browser/components/ui/tabs.js +12 -0
- package/dist/package/browser/components/ui/textarea.d.ts +3 -0
- package/dist/package/browser/components/ui/textarea.js +8 -0
- package/dist/package/browser/components/ui/tooltip.d.ts +7 -0
- package/dist/package/browser/components/ui/tooltip.js +10 -0
- package/dist/package/browser/core/app-shell/catalog-page-extensions.d.ts +28 -0
- package/dist/package/browser/core/app-shell/catalog-page-extensions.js +234 -0
- package/dist/package/browser/core/app-shell/derive-panel-renderers.d.ts +2 -0
- package/dist/package/browser/core/app-shell/derive-panel-renderers.js +17 -0
- package/dist/package/browser/core/app-shell/host.d.ts +31 -0
- package/dist/package/browser/core/app-shell/host.js +188 -0
- package/dist/package/browser/core/app-shell/index.d.ts +7 -0
- package/dist/package/browser/core/app-shell/index.js +8 -0
- package/dist/package/browser/core/app-shell/logger.d.ts +2 -0
- package/dist/package/browser/core/app-shell/logger.js +6 -0
- package/dist/package/browser/core/app-shell/ownership.d.ts +7 -0
- package/dist/package/browser/core/app-shell/ownership.js +7 -0
- package/dist/package/browser/core/app-shell/react/HostProvider.d.ts +10 -0
- package/dist/package/browser/core/app-shell/react/HostProvider.js +35 -0
- package/dist/package/browser/core/app-shell/surface-extension.d.ts +17 -0
- package/dist/package/browser/core/app-shell/surface-extension.js +33 -0
- package/dist/package/browser/core/app-shell/types.d.ts +176 -0
- package/dist/package/browser/core/app-shell/types.js +1 -0
- package/dist/package/browser/core/contextual-keybindings.d.ts +71 -0
- package/dist/package/browser/core/contextual-keybindings.js +198 -0
- package/dist/package/browser/core/extension-foundation/bus.d.ts +2 -0
- package/dist/package/browser/core/extension-foundation/bus.js +3 -0
- package/dist/package/browser/core/extension-foundation/capabilities.d.ts +2 -0
- package/dist/package/browser/core/extension-foundation/capabilities.js +3 -0
- package/dist/package/browser/core/extension-foundation/commands.d.ts +2 -0
- package/dist/package/browser/core/extension-foundation/commands.js +3 -0
- package/dist/package/browser/core/extension-foundation/context-keys.d.ts +2 -0
- package/dist/package/browser/core/extension-foundation/context-keys.js +3 -0
- package/dist/package/browser/core/extension-foundation/contribution-registry.d.ts +2 -0
- package/dist/package/browser/core/extension-foundation/contribution-registry.js +3 -0
- package/dist/package/browser/core/extension-foundation/errors.d.ts +2 -0
- package/dist/package/browser/core/extension-foundation/errors.js +3 -0
- package/dist/package/browser/core/extension-foundation/index.d.ts +8 -0
- package/dist/package/browser/core/extension-foundation/index.js +9 -0
- package/dist/package/browser/core/extension-foundation/loader.d.ts +2 -0
- package/dist/package/browser/core/extension-foundation/loader.js +3 -0
- package/dist/package/browser/core/extension-foundation/storage.d.ts +2 -0
- package/dist/package/browser/core/extension-foundation/storage.js +3 -0
- package/dist/package/browser/core/extension-foundation/types.d.ts +2 -0
- package/dist/package/browser/core/extension-foundation/types.js +1 -0
- package/dist/package/browser/core/extensions/builtin-commands.d.ts +2 -0
- package/dist/package/browser/core/extensions/builtin-commands.js +256 -0
- package/dist/package/browser/core/extensions/builtin-menus.d.ts +2 -0
- package/dist/package/browser/core/extensions/builtin-menus.js +252 -0
- package/dist/package/browser/core/extensions/chrome-drawer.d.ts +3 -0
- package/dist/package/browser/core/extensions/chrome-drawer.js +45 -0
- package/dist/package/browser/core/extensions/chrome-statusbar.d.ts +6 -0
- package/dist/package/browser/core/extensions/chrome-statusbar.js +26 -0
- package/dist/package/browser/core/extensions/detached-agents-browser.d.ts +3 -0
- package/dist/package/browser/core/extensions/detached-agents-browser.js +9 -0
- package/dist/package/browser/core/extensions/detached-files-browser.d.ts +3 -0
- package/dist/package/browser/core/extensions/detached-files-browser.js +6 -0
- package/dist/package/browser/core/extensions/editor-commands.d.ts +2 -0
- package/dist/package/browser/core/extensions/editor-commands.js +182 -0
- package/dist/package/browser/core/extensions/foundation-bus.d.ts +2 -0
- package/dist/package/browser/core/extensions/foundation-bus.js +3 -0
- package/dist/package/browser/core/extensions/foundation-commands.d.ts +2 -0
- package/dist/package/browser/core/extensions/foundation-commands.js +6 -0
- package/dist/package/browser/core/extensions/foundation-storage.d.ts +2 -0
- package/dist/package/browser/core/extensions/foundation-storage.js +3 -0
- package/dist/package/browser/core/extensions/host-commands.d.ts +18 -0
- package/dist/package/browser/core/extensions/host-commands.js +52 -0
- package/dist/package/browser/core/extensions/observability.d.ts +14 -0
- package/dist/package/browser/core/extensions/observability.js +18 -0
- package/dist/package/browser/core/extensions/panels-chat.d.ts +2 -0
- package/dist/package/browser/core/extensions/panels-chat.js +41 -0
- package/dist/package/browser/core/extensions/panels-editor.d.ts +8 -0
- package/dist/package/browser/core/extensions/panels-editor.js +26 -0
- package/dist/package/browser/core/extensions/panels-viewport.d.ts +2 -0
- package/dist/package/browser/core/extensions/panels-viewport.js +20 -0
- package/dist/package/browser/core/extensions/session-client.d.ts +29 -0
- package/dist/package/browser/core/extensions/session-client.js +42 -0
- package/dist/package/browser/core/extensions/slots-corner-agent-picker.d.ts +5 -0
- package/dist/package/browser/core/extensions/slots-corner-agent-picker.js +6 -0
- package/dist/package/browser/core/extensions/slots-main-area-body.d.ts +3 -0
- package/dist/package/browser/core/extensions/slots-main-area-body.js +6 -0
- package/dist/package/browser/core/extensions/slots-sidebar-agents.d.ts +3 -0
- package/dist/package/browser/core/extensions/slots-sidebar-agents.js +6 -0
- package/dist/package/browser/core/extensions/studio-domain-clients.d.ts +12 -0
- package/dist/package/browser/core/extensions/studio-domain-clients.js +15 -0
- package/dist/package/browser/core/extensions/surfaces-scene-editor.d.ts +3 -0
- package/dist/package/browser/core/extensions/surfaces-scene-editor.js +6 -0
- package/dist/package/browser/core/extensions/trajectory.d.ts +2 -0
- package/dist/package/browser/core/extensions/trajectory.js +50 -0
- package/dist/package/browser/core/page-navigation.d.ts +1 -0
- package/dist/package/browser/core/page-navigation.js +1 -0
- package/dist/package/browser/core/page-platform/activity.d.ts +4 -0
- package/dist/package/browser/core/page-platform/activity.js +46 -0
- package/dist/package/browser/core/page-platform/dockview-layout.d.ts +7 -0
- package/dist/package/browser/core/page-platform/dockview-layout.js +63 -0
- package/dist/package/browser/core/page-platform/index.d.ts +8 -0
- package/dist/package/browser/core/page-platform/index.js +8 -0
- package/dist/package/browser/core/page-platform/layout-store.d.ts +18 -0
- package/dist/package/browser/core/page-platform/layout-store.js +54 -0
- package/dist/package/browser/core/page-platform/page-dirty-probe.d.ts +1 -0
- package/dist/package/browser/core/page-platform/page-dirty-probe.js +4 -0
- package/dist/package/browser/core/page-platform/registry.d.ts +3 -0
- package/dist/package/browser/core/page-platform/registry.js +194 -0
- package/dist/package/browser/core/page-platform/resource-editor.d.ts +3 -0
- package/dist/package/browser/core/page-platform/resource-editor.js +74 -0
- package/dist/package/browser/core/page-platform/session.d.ts +10 -0
- package/dist/package/browser/core/page-platform/session.js +327 -0
- package/dist/package/browser/core/page-platform/types.d.ts +242 -0
- package/dist/package/browser/core/page-platform/types.js +10 -0
- package/dist/package/browser/core/panels/context-expression.d.ts +1 -0
- package/dist/package/browser/core/panels/context-expression.js +1 -0
- package/dist/package/browser/core/panels/drawer.d.ts +23 -0
- package/dist/package/browser/core/panels/drawer.js +1 -0
- package/dist/package/browser/core/panels/index.d.ts +7 -0
- package/dist/package/browser/core/panels/index.js +7 -0
- package/dist/package/browser/core/panels/panel-action-registry.d.ts +6 -0
- package/dist/package/browser/core/panels/panel-action-registry.js +62 -0
- package/dist/package/browser/core/panels/panel-control-registry.d.ts +6 -0
- package/dist/package/browser/core/panels/panel-control-registry.js +54 -0
- package/dist/package/browser/core/panels/resolve-panel-action-state.d.ts +10 -0
- package/dist/package/browser/core/panels/resolve-panel-action-state.js +9 -0
- package/dist/package/browser/core/panels/strip.d.ts +40 -0
- package/dist/package/browser/core/panels/strip.js +1 -0
- package/dist/package/browser/core/panels/types.d.ts +143 -0
- package/dist/package/browser/core/panels/types.js +1 -0
- package/dist/package/browser/i18n/index.d.ts +50 -0
- package/dist/package/browser/i18n/index.js +207 -0
- package/dist/package/browser/i18n/locales/en.json +1959 -0
- package/dist/package/browser/i18n/locales/zh.json +1959 -0
- package/dist/package/browser/index.d.ts +2 -0
- package/dist/package/browser/index.js +2 -0
- package/dist/package/browser/lib/a11y-summary.d.ts +17 -0
- package/dist/package/browser/lib/a11y-summary.js +66 -0
- package/dist/package/browser/lib/action-dom-discovery.d.ts +2 -0
- package/dist/package/browser/lib/action-dom-discovery.js +84 -0
- package/dist/package/browser/lib/action-registry.d.ts +94 -0
- package/dist/package/browser/lib/action-registry.js +210 -0
- package/dist/package/browser/lib/aegis.d.ts +40 -0
- package/dist/package/browser/lib/aegis.js +230 -0
- package/dist/package/browser/lib/agent-catalog-url.d.ts +9 -0
- package/dist/package/browser/lib/agent-catalog-url.js +24 -0
- package/dist/package/browser/lib/agent-cli-provider.d.ts +10 -0
- package/dist/package/browser/lib/agent-cli-provider.js +81 -0
- package/dist/package/browser/lib/ai-intents.d.ts +30 -0
- package/dist/package/browser/lib/ai-intents.js +52 -0
- package/dist/package/browser/lib/broadcast-stream.d.ts +17 -0
- package/dist/package/browser/lib/broadcast-stream.js +163 -0
- package/dist/package/browser/lib/browser-prefs-sync.d.ts +16 -0
- package/dist/package/browser/lib/browser-prefs-sync.js +151 -0
- package/dist/package/browser/lib/builtin-actions.d.ts +2 -0
- package/dist/package/browser/lib/builtin-actions.js +558 -0
- package/dist/package/browser/lib/bus.d.ts +25 -0
- package/dist/package/browser/lib/bus.js +71 -0
- package/dist/package/browser/lib/checkpoint-api.d.ts +54 -0
- package/dist/package/browser/lib/checkpoint-api.js +41 -0
- package/dist/package/browser/lib/cli-providers.d.ts +33 -0
- package/dist/package/browser/lib/cli-providers.js +61 -0
- package/dist/package/browser/lib/command-palette-store.d.ts +5 -0
- package/dist/package/browser/lib/command-palette-store.js +22 -0
- package/dist/package/browser/lib/composer-bridge.d.ts +103 -0
- package/dist/package/browser/lib/composer-bridge.js +448 -0
- package/dist/package/browser/lib/dashboard-api.d.ts +104 -0
- package/dist/package/browser/lib/dashboard-api.js +125 -0
- package/dist/package/browser/lib/deep-link-bus.d.ts +10 -0
- package/dist/package/browser/lib/deep-link-bus.js +35 -0
- package/dist/package/browser/lib/dialog.d.ts +40 -0
- package/dist/package/browser/lib/dialog.js +103 -0
- package/dist/package/browser/lib/editor-facts-bus.d.ts +27 -0
- package/dist/package/browser/lib/editor-facts-bus.js +25 -0
- package/dist/package/browser/lib/extension-api.d.ts +140 -0
- package/dist/package/browser/lib/extension-api.js +90 -0
- package/dist/package/browser/lib/file-activity-stream.d.ts +54 -0
- package/dist/package/browser/lib/file-activity-stream.js +123 -0
- package/dist/package/browser/lib/file-family.d.ts +15 -0
- package/dist/package/browser/lib/file-family.js +25 -0
- package/dist/package/browser/lib/game-templates.d.ts +7 -0
- package/dist/package/browser/lib/game-templates.js +15 -0
- package/dist/package/browser/lib/global-shortcuts.d.ts +121 -0
- package/dist/package/browser/lib/global-shortcuts.js +551 -0
- package/dist/package/browser/lib/logSink.d.ts +16 -0
- package/dist/package/browser/lib/logSink.js +128 -0
- package/dist/package/browser/lib/lucide-icon.d.ts +5 -0
- package/dist/package/browser/lib/lucide-icon.js +20 -0
- package/dist/package/browser/lib/menu-registry.d.ts +113 -0
- package/dist/package/browser/lib/menu-registry.js +197 -0
- package/dist/package/browser/lib/model-config.d.ts +89 -0
- package/dist/package/browser/lib/model-config.js +72 -0
- package/dist/package/browser/lib/model-prefs.d.ts +5 -0
- package/dist/package/browser/lib/model-prefs.js +53 -0
- package/dist/package/browser/lib/model-route/index.d.ts +81 -0
- package/dist/package/browser/lib/model-route/index.js +175 -0
- package/dist/package/browser/lib/narrative-copilot.d.ts +20 -0
- package/dist/package/browser/lib/narrative-copilot.js +105 -0
- package/dist/package/browser/lib/native-menu-bridge.d.ts +37 -0
- package/dist/package/browser/lib/native-menu-bridge.js +151 -0
- package/dist/package/browser/lib/page-tab-icons.d.ts +21 -0
- package/dist/package/browser/lib/page-tab-icons.js +64 -0
- package/dist/package/browser/lib/panel-tab-icons.d.ts +21 -0
- package/dist/package/browser/lib/panel-tab-icons.js +49 -0
- package/dist/package/browser/lib/passive-feedback.d.ts +50 -0
- package/dist/package/browser/lib/passive-feedback.js +171 -0
- package/dist/package/browser/lib/perception-stream.d.ts +27 -0
- package/dist/package/browser/lib/perception-stream.js +42 -0
- package/dist/package/browser/lib/platform/index.d.ts +14 -0
- package/dist/package/browser/lib/platform/index.js +13 -0
- package/dist/package/browser/lib/platform/runtime.d.ts +22 -0
- package/dist/package/browser/lib/platform/runtime.js +42 -0
- package/dist/package/browser/lib/platform/shell-adapter.d.ts +24 -0
- package/dist/package/browser/lib/platform/shell-adapter.js +74 -0
- package/dist/package/browser/lib/platform/surface-windowing.d.ts +4 -0
- package/dist/package/browser/lib/platform/surface-windowing.js +16 -0
- package/dist/package/browser/lib/platform/surface.d.ts +13 -0
- package/dist/package/browser/lib/platform/surface.js +27 -0
- package/dist/package/browser/lib/platform/use-surface-windowing.d.ts +1 -0
- package/dist/package/browser/lib/platform/use-surface-windowing.js +6 -0
- package/dist/package/browser/lib/platform/window-manager.d.ts +2 -0
- package/dist/package/browser/lib/platform/window-manager.js +82 -0
- package/dist/package/browser/lib/project-context.d.ts +4 -0
- package/dist/package/browser/lib/project-context.js +42 -0
- package/dist/package/browser/lib/project.d.ts +5 -0
- package/dist/package/browser/lib/project.js +8 -0
- package/dist/package/browser/lib/recent-games.d.ts +24 -0
- package/dist/package/browser/lib/recent-games.js +50 -0
- package/dist/package/browser/lib/repair-builtin-menus.d.ts +6 -0
- package/dist/package/browser/lib/repair-builtin-menus.js +18 -0
- package/dist/package/browser/lib/reply-language.d.ts +9 -0
- package/dist/package/browser/lib/reply-language.js +11 -0
- package/dist/package/browser/lib/resilient-polling.d.ts +9 -0
- package/dist/package/browser/lib/resilient-polling.js +16 -0
- package/dist/package/browser/lib/session-time.d.ts +8 -0
- package/dist/package/browser/lib/session-time.js +40 -0
- package/dist/package/browser/lib/shell-live-data.d.ts +12 -0
- package/dist/package/browser/lib/shell-live-data.js +66 -0
- package/dist/package/browser/lib/sse.d.ts +5 -0
- package/dist/package/browser/lib/sse.js +42 -0
- package/dist/package/browser/lib/storageKeys.d.ts +70 -0
- package/dist/package/browser/lib/storageKeys.js +89 -0
- package/dist/package/browser/lib/surface-store.d.ts +38 -0
- package/dist/package/browser/lib/surface-store.js +62 -0
- package/dist/package/browser/lib/surface.d.ts +56 -0
- package/dist/package/browser/lib/surface.js +225 -0
- package/dist/package/browser/lib/surfaceAnchors.d.ts +16 -0
- package/dist/package/browser/lib/surfaceAnchors.js +76 -0
- package/dist/package/browser/lib/surfaceKeepAliveLayout.d.ts +7 -0
- package/dist/package/browser/lib/surfaceKeepAliveLayout.js +12 -0
- package/dist/package/browser/lib/telemetry-test-prelude.d.ts +0 -0
- package/dist/package/browser/lib/telemetry-test-prelude.js +14 -0
- package/dist/package/browser/lib/text-edit-actions.d.ts +14 -0
- package/dist/package/browser/lib/text-edit-actions.js +184 -0
- package/dist/package/browser/lib/trace.d.ts +34 -0
- package/dist/package/browser/lib/trace.js +273 -0
- package/dist/package/browser/lib/trustedOrigins.d.ts +4 -0
- package/dist/package/browser/lib/trustedOrigins.js +36 -0
- package/dist/package/browser/lib/ui-action-highlight.d.ts +2 -0
- package/dist/package/browser/lib/ui-action-highlight.js +93 -0
- package/dist/package/browser/lib/ui-bridge.d.ts +2 -0
- package/dist/package/browser/lib/ui-bridge.js +224 -0
- package/dist/package/browser/lib/ui-screenshot.d.ts +31 -0
- package/dist/package/browser/lib/ui-screenshot.js +155 -0
- package/dist/package/browser/lib/ui-trajectory.d.ts +47 -0
- package/dist/package/browser/lib/ui-trajectory.js +99 -0
- package/dist/package/browser/lib/use-bus-snapshot.d.ts +3 -0
- package/dist/package/browser/lib/use-bus-snapshot.js +13 -0
- package/dist/package/browser/lib/use-extension-manifest.d.ts +19 -0
- package/dist/package/browser/lib/use-extension-manifest.js +67 -0
- package/dist/package/browser/lib/useConfirmToast.d.ts +26 -0
- package/dist/package/browser/lib/useConfirmToast.js +120 -0
- package/dist/package/browser/lib/utils.d.ts +2 -0
- package/dist/package/browser/lib/utils.js +5 -0
- package/dist/package/browser/lib/vag-action-bridge.d.ts +2 -0
- package/dist/package/browser/lib/vag-action-bridge.js +130 -0
- package/dist/package/browser/main.d.ts +1 -0
- package/dist/package/browser/main.js +157 -0
- package/dist/package/browser/store-parts/domain-clients.d.ts +149 -0
- package/dist/package/browser/store-parts/domain-clients.js +17 -0
- package/dist/package/browser/store-parts/observability.d.ts +4 -0
- package/dist/package/browser/store-parts/observability.js +35 -0
- package/dist/package/browser/store-parts/persistence.d.ts +40 -0
- package/dist/package/browser/store-parts/persistence.js +245 -0
- package/dist/package/browser/store-parts/session-client.d.ts +73 -0
- package/dist/package/browser/store-parts/session-client.js +17 -0
- package/dist/package/browser/store-parts/session-pick.d.ts +8 -0
- package/dist/package/browser/store-parts/session-pick.js +21 -0
- package/dist/package/browser/store-parts/shell.d.ts +5 -0
- package/dist/package/browser/store-parts/shell.js +37 -0
- package/dist/package/browser/store.d.ts +455 -0
- package/dist/package/browser/store.js +890 -0
- package/dist/package/browser/styles/forgeax-preview/agent-avatar.css +69 -0
- package/dist/package/browser/styles/forgeax-preview/aliases.css +21 -0
- package/dist/package/browser/styles/forgeax-preview/chat-popover.css +141 -0
- package/dist/package/browser/styles/forgeax-preview/chat-session.css +896 -0
- package/dist/package/browser/styles/forgeax-preview/composer-port.css +531 -0
- package/dist/package/browser/styles/forgeax-preview/design-tokens.css +25 -0
- package/dist/package/browser/styles/forgeax-preview/index.css +9 -0
- package/dist/package/browser/styles/forgeax-preview/scene-fx.css +117 -0
- package/dist/package/browser/styles/forgeax-preview/shell-layout.css +280 -0
- package/dist/package/browser/styles/forgeax-preview/shell-skin.css +128 -0
- package/dist/package/browser/styles/foundation.tokens.json +2755 -0
- package/dist/package/browser/styles/global.css +196 -0
- package/dist/package/browser/styles/motion.css +558 -0
- package/dist/package/browser/styles/plugin-token-bridge.css +19 -0
- package/dist/package/browser/styles/primitive.css +197 -0
- package/dist/package/browser/styles/semantic.tokens.json +1524 -0
- package/dist/package/browser/styles/tokens.css +304 -0
- package/dist/package/node/App.js +11 -0
- package/dist/package/node/ApplicationDetachedShell.js +10 -0
- package/dist/package/node/ApplicationShell.js +62 -0
- package/dist/package/node/app-kit.js +4 -0
- package/dist/package/node/appHostBootstrap.js +145 -0
- package/dist/package/node/application.js +64 -0
- package/dist/package/node/boot/SettingsSection.js +82 -0
- package/dist/package/node/boot/broadcast.js +32 -0
- package/dist/package/node/boot/driver.js +47 -0
- package/dist/package/node/boot/store.js +114 -0
- package/dist/package/node/boot/themes.js +21 -0
- package/dist/package/node/boot/types.js +30 -0
- package/dist/package/node/brand/BrandProvider.js +35 -0
- package/dist/package/node/brand/index.js +3 -0
- package/dist/package/node/brand/runtime.js +71 -0
- package/dist/package/node/brand/types.js +9 -0
- package/dist/package/node/components/ActivityRail/ActivityRail.js +164 -0
- package/dist/package/node/components/ActivityRail/activity-rail-model.js +144 -0
- package/dist/package/node/components/AgentAvatar/AgentAvatar.js +50 -0
- package/dist/package/node/components/BuildBadge/BuildBadge.js +279 -0
- package/dist/package/node/components/Bus/BusAdminPanel.js +1385 -0
- package/dist/package/node/components/Bus/CapabilityOverview.js +50 -0
- package/dist/package/node/components/ChatColumn/ChatColumn.js +18 -0
- package/dist/package/node/components/ChatColumn/SessionTabStrip.js +103 -0
- package/dist/package/node/components/ChatColumn/useChatWidth.js +13 -0
- package/dist/package/node/components/CommandPalette/CommandPalette.js +242 -0
- package/dist/package/node/components/Confirm/ConfirmDialog.js +113 -0
- package/dist/package/node/components/ContextMenu/ContextMenu.js +218 -0
- package/dist/package/node/components/ContextMenu/menuRegistry.js +152 -0
- package/dist/package/node/components/DetachedSurface.js +102 -0
- package/dist/package/node/components/DockShell/DockPanelHost.js +7 -0
- package/dist/package/node/components/DockShell/DockRegion.js +315 -0
- package/dist/package/node/components/DockShell/DockTab.js +139 -0
- package/dist/package/node/components/DockShell/ExtensionHostPanel.js +68 -0
- package/dist/package/node/components/DockShell/ExtensionRuntimeFrame.js +56 -0
- package/dist/package/node/components/DockShell/PanelWindowingBoundary.js +9 -0
- package/dist/package/node/components/DockShell/chatDockAnimation.js +101 -0
- package/dist/package/node/components/DockShell/chatDockFullscreen.js +22 -0
- package/dist/package/node/components/DockShell/chatDockLayout.js +11 -0
- package/dist/package/node/components/DockShell/compact-empty-dock-groups.js +28 -0
- package/dist/package/node/components/DockShell/crossInstanceDrop.js +1 -0
- package/dist/package/node/components/DockShell/dockResetEpoch.js +13 -0
- package/dist/package/node/components/DockShell/dockTitle.js +36 -0
- package/dist/package/node/components/DockShell/dockviewRegistry.js +1 -0
- package/dist/package/node/components/DockShell/edgeDrawer.js +1144 -0
- package/dist/package/node/components/DockShell/edgePinStore.js +37 -0
- package/dist/package/node/components/DockShell/extension-editor-bridge.js +100 -0
- package/dist/package/node/components/DockShell/extension-runtime-selection.js +6 -0
- package/dist/package/node/components/DockShell/extensionRuntime.js +84 -0
- package/dist/package/node/components/DockShell/footer-panel-visibility.js +43 -0
- package/dist/package/node/components/DockShell/footer-panels.js +7 -0
- package/dist/package/node/components/DockShell/panelRegistry.js +126 -0
- package/dist/package/node/components/DockShell/panelRenderers.js +25 -0
- package/dist/package/node/components/DockShell/panelTabCommands.js +133 -0
- package/dist/package/node/components/DockShell/panelWindowing.js +42 -0
- package/dist/package/node/components/DockShell/regions.js +1 -0
- package/dist/package/node/components/DockShell/resolveRegion.js +1 -0
- package/dist/package/node/components/DockShell/sanitizeDockLayout.js +46 -0
- package/dist/package/node/components/DockShell/sideEdgeMove.js +1 -0
- package/dist/package/node/components/DockShell/studioTabMenuProvider.js +39 -0
- package/dist/package/node/components/DockShell/tabContextMenu.js +68 -0
- package/dist/package/node/components/DockShell/ueDrag/controller.js +785 -0
- package/dist/package/node/components/DockShell/ueDrag/geometry.js +217 -0
- package/dist/package/node/components/DockShell/ueDrag/overlay.js +206 -0
- package/dist/package/node/components/DockShell/useAuxBarWidth.js +13 -0
- package/dist/package/node/components/Drawer/DrawerHostView.js +93 -0
- package/dist/package/node/components/Drawer/DrawerLauncher.js +22 -0
- package/dist/package/node/components/Drawer/useDrawerStore.js +80 -0
- package/dist/package/node/components/ErrorBoundary.js +131 -0
- package/dist/package/node/components/ExtensionHost/ExtensionIframeHost.js +179 -0
- package/dist/package/node/components/ExtensionHost/NativeExtensionHost.js +152 -0
- package/dist/package/node/components/Feedback/FeedbackPanel.js +118 -0
- package/dist/package/node/components/Feedback/PassiveFeedback.js +218 -0
- package/dist/package/node/components/Feedback/collect.js +80 -0
- package/dist/package/node/components/Feedback/store.js +174 -0
- package/dist/package/node/components/LangSwitcher/LangSwitcher.js +44 -0
- package/dist/package/node/components/MainArea/ConsolePanel.js +16 -0
- package/dist/package/node/components/MainArea/MainArea.js +20 -0
- package/dist/package/node/components/MainArea/StandaloneExtensionIframe.js +155 -0
- package/dist/package/node/components/MainArea/SurfacePanels.js +27 -0
- package/dist/package/node/components/MainArea/TelemetryViewer.js +116 -0
- package/dist/package/node/components/MenuBar/MenuBar.js +286 -0
- package/dist/package/node/components/MenuBar/index.js +1 -0
- package/dist/package/node/components/MenuBar/menubar-open-state.js +11 -0
- package/dist/package/node/components/MenuBar/menubar-surface.js +201 -0
- package/dist/package/node/components/ModelPicker/index.js +1 -0
- package/dist/package/node/components/ModelPicker/useModelCatalog.js +100 -0
- package/dist/package/node/components/Onboarding/ConnectModelPrompt.js +40 -0
- package/dist/package/node/components/Onboarding/OnboardingController.js +549 -0
- package/dist/package/node/components/Onboarding/connect-selection.js +18 -0
- package/dist/package/node/components/Onboarding/home-transition.js +20 -0
- package/dist/package/node/components/Onboarding/index.js +3 -0
- package/dist/package/node/components/Onboarding/prepareTourShell.js +11 -0
- package/dist/package/node/components/Onboarding/project-name.js +29 -0
- package/dist/package/node/components/Onboarding/types.js +77 -0
- package/dist/package/node/components/PageTabs/PageTabStrip.js +214 -0
- package/dist/package/node/components/PageTabs/openablePageTypes.js +13 -0
- package/dist/package/node/components/PanelShell/PanelShell.js +459 -0
- package/dist/package/node/components/Resize/ResizeHandle.js +1 -0
- package/dist/package/node/components/SceneBackground/SceneBackground.js +5 -0
- package/dist/package/node/components/SchemaForm/SchemaForm.js +86 -0
- package/dist/package/node/components/SchemaForm/schema-form-utils.js +51 -0
- package/dist/package/node/components/SettingsPrimitives.js +145 -0
- package/dist/package/node/components/Sidebar/BusHealthLamp.js +72 -0
- package/dist/package/node/components/Sidebar/FilesPanel.js +234 -0
- package/dist/package/node/components/Sidebar/Sidebar.js +8 -0
- package/dist/package/node/components/Sidebar/sidebar-types.js +1 -0
- package/dist/package/node/components/SlotDebugOverlay/SlotDebugOverlay.js +1 -0
- package/dist/package/node/components/SlotDebugOverlay/hashHue.js +1 -0
- package/dist/package/node/components/SlotDebugOverlay/index.js +1 -0
- package/dist/package/node/components/SlotDebugOverlay/isSlotDebugEnabled.js +1 -0
- package/dist/package/node/components/StatusBar/FatalBanner.js +52 -0
- package/dist/package/node/components/StatusBar/InfoPanel.js +128 -0
- package/dist/package/node/components/StatusBar/StatusChip.js +13 -0
- package/dist/package/node/components/StatusBar/StripHostView.js +91 -0
- package/dist/package/node/components/StatusBar/StripPopover.js +15 -0
- package/dist/package/node/components/StatusBar/feeds/PulseFeeds.js +88 -0
- package/dist/package/node/components/StatusBar/footer/CheckpointsDrawer.js +77 -0
- package/dist/package/node/components/StatusBar/footer/DiagnosticsPopover.js +108 -0
- package/dist/package/node/components/StatusBar/footer/EventsDrawer.js +25 -0
- package/dist/package/node/components/StatusBar/footer/ForgeaxBuildPopover.js +62 -0
- package/dist/package/node/components/StatusBar/healthBridge.js +245 -0
- package/dist/package/node/components/StatusBar/healthStore.js +129 -0
- package/dist/package/node/components/StatusBar/useStatusItem.js +35 -0
- package/dist/package/node/components/Surfaces/SurfaceKeepAliveLayer.js +218 -0
- package/dist/package/node/components/Surfaces/SurfaceOverlay.js +144 -0
- package/dist/package/node/components/TopBar/AndroidPackageDialog.js +115 -0
- package/dist/package/node/components/TopBar/FsBrowser.js +93 -0
- package/dist/package/node/components/TopBar/GameSwitcher.js +157 -0
- package/dist/package/node/components/TopBar/IosPackageDialog.js +115 -0
- package/dist/package/node/components/TopBar/ProjectSwitcher.js +41 -0
- package/dist/package/node/components/TopBar/PublishOnboarding.js +144 -0
- package/dist/package/node/components/TopBar/SessionSwitcher.js +124 -0
- package/dist/package/node/components/TopBar/TopBar.js +606 -0
- package/dist/package/node/components/TopBar/publish-options.js +28 -0
- package/dist/package/node/components/TourOverlay/TourOverlay.js +233 -0
- package/dist/package/node/components/TourOverlay/index.js +1 -0
- package/dist/package/node/components/ownership.js +7 -0
- package/dist/package/node/components/ui/SearchableMenu.js +40 -0
- package/dist/package/node/components/ui/alert-dialog.js +38 -0
- package/dist/package/node/components/ui/button.js +33 -0
- package/dist/package/node/components/ui/checkbox.js +8 -0
- package/dist/package/node/components/ui/command.js +20 -0
- package/dist/package/node/components/ui/dialog.js +34 -0
- package/dist/package/node/components/ui/dropdown-menu.js +30 -0
- package/dist/package/node/components/ui/input.js +8 -0
- package/dist/package/node/components/ui/label.js +7 -0
- package/dist/package/node/components/ui/popover.js +10 -0
- package/dist/package/node/components/ui/select.js +31 -0
- package/dist/package/node/components/ui/tabs.js +12 -0
- package/dist/package/node/components/ui/textarea.js +8 -0
- package/dist/package/node/components/ui/tooltip.js +10 -0
- package/dist/package/node/core/app-shell/catalog-page-extensions.js +234 -0
- package/dist/package/node/core/app-shell/derive-panel-renderers.js +17 -0
- package/dist/package/node/core/app-shell/host.js +188 -0
- package/dist/package/node/core/app-shell/index.js +8 -0
- package/dist/package/node/core/app-shell/logger.js +6 -0
- package/dist/package/node/core/app-shell/ownership.js +7 -0
- package/dist/package/node/core/app-shell/react/HostProvider.js +35 -0
- package/dist/package/node/core/app-shell/surface-extension.js +33 -0
- package/dist/package/node/core/app-shell/types.js +1 -0
- package/dist/package/node/core/contextual-keybindings.js +198 -0
- package/dist/package/node/core/extension-foundation/bus.js +3 -0
- package/dist/package/node/core/extension-foundation/capabilities.js +3 -0
- package/dist/package/node/core/extension-foundation/commands.js +3 -0
- package/dist/package/node/core/extension-foundation/context-keys.js +3 -0
- package/dist/package/node/core/extension-foundation/contribution-registry.js +3 -0
- package/dist/package/node/core/extension-foundation/errors.js +3 -0
- package/dist/package/node/core/extension-foundation/index.js +9 -0
- package/dist/package/node/core/extension-foundation/loader.js +3 -0
- package/dist/package/node/core/extension-foundation/storage.js +3 -0
- package/dist/package/node/core/extension-foundation/types.js +1 -0
- package/dist/package/node/core/extensions/builtin-commands.js +256 -0
- package/dist/package/node/core/extensions/builtin-menus.js +252 -0
- package/dist/package/node/core/extensions/chrome-drawer.js +45 -0
- package/dist/package/node/core/extensions/chrome-statusbar.js +26 -0
- package/dist/package/node/core/extensions/detached-agents-browser.js +9 -0
- package/dist/package/node/core/extensions/detached-files-browser.js +6 -0
- package/dist/package/node/core/extensions/editor-commands.js +182 -0
- package/dist/package/node/core/extensions/foundation-bus.js +3 -0
- package/dist/package/node/core/extensions/foundation-commands.js +6 -0
- package/dist/package/node/core/extensions/foundation-storage.js +3 -0
- package/dist/package/node/core/extensions/host-commands.js +52 -0
- package/dist/package/node/core/extensions/observability.js +18 -0
- package/dist/package/node/core/extensions/panels-chat.js +41 -0
- package/dist/package/node/core/extensions/panels-editor.js +26 -0
- package/dist/package/node/core/extensions/panels-viewport.js +20 -0
- package/dist/package/node/core/extensions/session-client.js +42 -0
- package/dist/package/node/core/extensions/slots-corner-agent-picker.js +6 -0
- package/dist/package/node/core/extensions/slots-main-area-body.js +6 -0
- package/dist/package/node/core/extensions/slots-sidebar-agents.js +6 -0
- package/dist/package/node/core/extensions/studio-domain-clients.js +15 -0
- package/dist/package/node/core/extensions/surfaces-scene-editor.js +6 -0
- package/dist/package/node/core/extensions/trajectory.js +50 -0
- package/dist/package/node/core/page-navigation.js +1 -0
- package/dist/package/node/core/page-platform/activity.js +46 -0
- package/dist/package/node/core/page-platform/dockview-layout.js +63 -0
- package/dist/package/node/core/page-platform/index.js +8 -0
- package/dist/package/node/core/page-platform/layout-store.js +54 -0
- package/dist/package/node/core/page-platform/page-dirty-probe.js +4 -0
- package/dist/package/node/core/page-platform/registry.js +194 -0
- package/dist/package/node/core/page-platform/resource-editor.js +74 -0
- package/dist/package/node/core/page-platform/session.js +327 -0
- package/dist/package/node/core/page-platform/types.js +10 -0
- package/dist/package/node/core/panels/context-expression.js +1 -0
- package/dist/package/node/core/panels/drawer.js +1 -0
- package/dist/package/node/core/panels/index.js +7 -0
- package/dist/package/node/core/panels/panel-action-registry.js +62 -0
- package/dist/package/node/core/panels/panel-control-registry.js +54 -0
- package/dist/package/node/core/panels/resolve-panel-action-state.js +9 -0
- package/dist/package/node/core/panels/strip.js +1 -0
- package/dist/package/node/core/panels/types.js +1 -0
- package/dist/package/node/i18n/index.js +207 -0
- package/dist/package/node/i18n/locales/en.json +1959 -0
- package/dist/package/node/i18n/locales/zh.json +1959 -0
- package/dist/package/node/index.js +2 -0
- package/dist/package/node/lib/a11y-summary.js +66 -0
- package/dist/package/node/lib/action-dom-discovery.js +84 -0
- package/dist/package/node/lib/action-registry.js +210 -0
- package/dist/package/node/lib/aegis.js +230 -0
- package/dist/package/node/lib/agent-catalog-url.js +24 -0
- package/dist/package/node/lib/agent-cli-provider.js +81 -0
- package/dist/package/node/lib/ai-intents.js +52 -0
- package/dist/package/node/lib/broadcast-stream.js +163 -0
- package/dist/package/node/lib/browser-prefs-sync.js +151 -0
- package/dist/package/node/lib/builtin-actions.js +558 -0
- package/dist/package/node/lib/bus.js +71 -0
- package/dist/package/node/lib/checkpoint-api.js +41 -0
- package/dist/package/node/lib/cli-providers.js +61 -0
- package/dist/package/node/lib/command-palette-store.js +22 -0
- package/dist/package/node/lib/composer-bridge.js +448 -0
- package/dist/package/node/lib/dashboard-api.js +125 -0
- package/dist/package/node/lib/deep-link-bus.js +35 -0
- package/dist/package/node/lib/dialog.js +103 -0
- package/dist/package/node/lib/editor-facts-bus.js +25 -0
- package/dist/package/node/lib/extension-api.js +90 -0
- package/dist/package/node/lib/file-activity-stream.js +123 -0
- package/dist/package/node/lib/file-family.js +25 -0
- package/dist/package/node/lib/game-templates.js +15 -0
- package/dist/package/node/lib/global-shortcuts.js +551 -0
- package/dist/package/node/lib/logSink.js +128 -0
- package/dist/package/node/lib/lucide-icon.js +20 -0
- package/dist/package/node/lib/menu-registry.js +197 -0
- package/dist/package/node/lib/model-config.js +72 -0
- package/dist/package/node/lib/model-prefs.js +53 -0
- package/dist/package/node/lib/model-route/index.js +175 -0
- package/dist/package/node/lib/narrative-copilot.js +105 -0
- package/dist/package/node/lib/native-menu-bridge.js +151 -0
- package/dist/package/node/lib/page-tab-icons.js +64 -0
- package/dist/package/node/lib/panel-tab-icons.js +49 -0
- package/dist/package/node/lib/passive-feedback.js +171 -0
- package/dist/package/node/lib/perception-stream.js +42 -0
- package/dist/package/node/lib/platform/index.js +13 -0
- package/dist/package/node/lib/platform/runtime.js +42 -0
- package/dist/package/node/lib/platform/shell-adapter.js +74 -0
- package/dist/package/node/lib/platform/surface-windowing.js +16 -0
- package/dist/package/node/lib/platform/surface.js +27 -0
- package/dist/package/node/lib/platform/use-surface-windowing.js +6 -0
- package/dist/package/node/lib/platform/window-manager.js +82 -0
- package/dist/package/node/lib/project-context.js +42 -0
- package/dist/package/node/lib/project.js +8 -0
- package/dist/package/node/lib/recent-games.js +50 -0
- package/dist/package/node/lib/repair-builtin-menus.js +18 -0
- package/dist/package/node/lib/reply-language.js +11 -0
- package/dist/package/node/lib/resilient-polling.js +16 -0
- package/dist/package/node/lib/session-time.js +40 -0
- package/dist/package/node/lib/shell-live-data.js +66 -0
- package/dist/package/node/lib/sse.js +42 -0
- package/dist/package/node/lib/storageKeys.js +89 -0
- package/dist/package/node/lib/surface-store.js +62 -0
- package/dist/package/node/lib/surface.js +225 -0
- package/dist/package/node/lib/surfaceAnchors.js +76 -0
- package/dist/package/node/lib/surfaceKeepAliveLayout.js +12 -0
- package/dist/package/node/lib/telemetry-test-prelude.js +14 -0
- package/dist/package/node/lib/text-edit-actions.js +184 -0
- package/dist/package/node/lib/trace.js +273 -0
- package/dist/package/node/lib/trustedOrigins.js +36 -0
- package/dist/package/node/lib/ui-action-highlight.js +93 -0
- package/dist/package/node/lib/ui-bridge.js +224 -0
- package/dist/package/node/lib/ui-screenshot.js +155 -0
- package/dist/package/node/lib/ui-trajectory.js +99 -0
- package/dist/package/node/lib/use-bus-snapshot.js +13 -0
- package/dist/package/node/lib/use-extension-manifest.js +67 -0
- package/dist/package/node/lib/useConfirmToast.js +120 -0
- package/dist/package/node/lib/utils.js +5 -0
- package/dist/package/node/lib/vag-action-bridge.js +130 -0
- package/dist/package/node/main.js +157 -0
- package/dist/package/node/store-parts/domain-clients.js +17 -0
- package/dist/package/node/store-parts/observability.js +35 -0
- package/dist/package/node/store-parts/persistence.js +245 -0
- package/dist/package/node/store-parts/session-client.js +17 -0
- package/dist/package/node/store-parts/session-pick.js +21 -0
- package/dist/package/node/store-parts/shell.js +37 -0
- package/dist/package/node/store.js +890 -0
- package/dist/package/node/styles/foundation.tokens.json +2755 -0
- package/dist/package/node/styles/semantic.tokens.json +1524 -0
- package/dist/package/packages/design/styles/fx-bridge.css +25 -0
- package/dist/package/packages/design/styles/primitive.css +199 -0
- package/dist/package/packages/design/styles/semantic.css +262 -0
- package/dist/package/packages/design/theme.d.ts +15 -0
- package/dist/package/packages/design/theme.js +31 -0
- package/dist/package/packages/design/tokens.css +14 -0
- package/package.json +145 -0
|
@@ -0,0 +1,896 @@
|
|
|
1
|
+
/* 右侧聊天栏 — cp-body 包裹消息流 + 悬浮 agent strip */
|
|
2
|
+
|
|
3
|
+
.cp-body {
|
|
4
|
+
flex: 1;
|
|
5
|
+
min-height: 0;
|
|
6
|
+
position: relative;
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: column;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.studio-shell--preview-skin .chat-session-tabs-wrap {
|
|
12
|
+
padding: 5px 8px 0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.studio-shell--preview-skin .chat-session-tabs-wrap .tab-strip-track {
|
|
16
|
+
align-items: center;
|
|
17
|
+
overflow-y: visible;
|
|
18
|
+
scrollbar-width: none;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.studio-shell--preview-skin .chat-session-tabs-wrap .tab-strip-track::-webkit-scrollbar {
|
|
22
|
+
width: 0;
|
|
23
|
+
height: 0;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.studio-shell--preview-skin .chat-session-tabs-wrap .tab {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
max-width: 124px;
|
|
29
|
+
min-height: 26px;
|
|
30
|
+
padding: 4px 9px 5px;
|
|
31
|
+
border-radius: 8px 8px 0 0;
|
|
32
|
+
border-bottom: none;
|
|
33
|
+
margin-bottom: -1px;
|
|
34
|
+
overflow: visible;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.studio-shell--preview-skin .chat-session-tabs-wrap .tab.tab-active::after {
|
|
38
|
+
display: block;
|
|
39
|
+
left: 1px;
|
|
40
|
+
right: 1px;
|
|
41
|
+
bottom: -1px;
|
|
42
|
+
height: 1px;
|
|
43
|
+
background: var(--color-background-base);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.studio-shell--preview-skin .chat-session-tabs-wrap .tab-add {
|
|
47
|
+
width: 26px;
|
|
48
|
+
height: 26px;
|
|
49
|
+
border-radius: var(--radius-md);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.chat-session-tabs {
|
|
53
|
+
box-sizing: border-box;
|
|
54
|
+
flex: 0 0 auto;
|
|
55
|
+
display: flex;
|
|
56
|
+
align-items: center;
|
|
57
|
+
gap: 8px;
|
|
58
|
+
min-height: 44px;
|
|
59
|
+
padding: 6px 10px;
|
|
60
|
+
min-width: 0;
|
|
61
|
+
border-bottom: 1px solid var(--color-border-subtle);
|
|
62
|
+
background: var(--color-background-base);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.chat-session-tab-list {
|
|
66
|
+
flex: 1 1 auto;
|
|
67
|
+
min-width: 0;
|
|
68
|
+
display: flex;
|
|
69
|
+
align-items: stretch;
|
|
70
|
+
overflow-x: auto;
|
|
71
|
+
overflow-y: hidden;
|
|
72
|
+
scrollbar-width: none;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.chat-session-tab-list::-webkit-scrollbar { display: none; }
|
|
76
|
+
|
|
77
|
+
.chat-session-tab {
|
|
78
|
+
position: relative;
|
|
79
|
+
flex: 0 0 auto;
|
|
80
|
+
display: inline-flex;
|
|
81
|
+
align-items: center;
|
|
82
|
+
max-width: 140px;
|
|
83
|
+
min-width: 0;
|
|
84
|
+
color: var(--color-text-secondary);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.chat-session-tab + .chat-session-tab::before {
|
|
88
|
+
content: '';
|
|
89
|
+
position: absolute;
|
|
90
|
+
left: 0;
|
|
91
|
+
top: 7px;
|
|
92
|
+
bottom: 7px;
|
|
93
|
+
width: 1px;
|
|
94
|
+
background: var(--color-border-default);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.chat-session-tab.is-active::before,
|
|
98
|
+
.chat-session-tab.is-active + .chat-session-tab::before,
|
|
99
|
+
.chat-session-tab:hover::before,
|
|
100
|
+
.chat-session-tab:hover + .chat-session-tab::before {
|
|
101
|
+
opacity: 0;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.chat-session-tab-button {
|
|
105
|
+
min-width: 0;
|
|
106
|
+
max-width: 118px;
|
|
107
|
+
height: 30px;
|
|
108
|
+
padding: 0 10px;
|
|
109
|
+
border: 0;
|
|
110
|
+
border-radius: 6px;
|
|
111
|
+
background: transparent;
|
|
112
|
+
color: inherit;
|
|
113
|
+
font-size: 12px;
|
|
114
|
+
font-weight: 500;
|
|
115
|
+
cursor: pointer;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.chat-session-tab-label {
|
|
119
|
+
display: block;
|
|
120
|
+
overflow: hidden;
|
|
121
|
+
white-space: nowrap;
|
|
122
|
+
text-overflow: ellipsis;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.chat-session-tab:hover,
|
|
126
|
+
.chat-session-tab.is-active {
|
|
127
|
+
color: var(--color-brand-primary);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.chat-session-tab.is-active .chat-session-tab-button {
|
|
131
|
+
font-weight: 600;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.chat-session-tab.is-active::after {
|
|
135
|
+
content: '';
|
|
136
|
+
position: absolute;
|
|
137
|
+
top: 0;
|
|
138
|
+
left: 8px;
|
|
139
|
+
right: 8px;
|
|
140
|
+
height: 2px;
|
|
141
|
+
border-radius: 1px;
|
|
142
|
+
background: var(--color-brand-primary);
|
|
143
|
+
pointer-events: none;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.chat-session-tab-close {
|
|
147
|
+
flex: 0 0 auto;
|
|
148
|
+
width: 24px;
|
|
149
|
+
height: 24px;
|
|
150
|
+
margin-left: -7px;
|
|
151
|
+
padding: 0;
|
|
152
|
+
display: inline-grid;
|
|
153
|
+
place-items: center;
|
|
154
|
+
border: 0;
|
|
155
|
+
border-radius: 5px;
|
|
156
|
+
background: transparent;
|
|
157
|
+
color: currentColor;
|
|
158
|
+
opacity: 0.62;
|
|
159
|
+
cursor: pointer;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.chat-session-tab-close:hover,
|
|
163
|
+
.chat-session-tab-close:focus-visible {
|
|
164
|
+
opacity: 1;
|
|
165
|
+
background: var(--color-background-elevated);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.chat-session-tab-tools {
|
|
169
|
+
flex: 0 0 auto;
|
|
170
|
+
display: flex;
|
|
171
|
+
align-items: center;
|
|
172
|
+
gap: 4px;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.chat-session-tab-tool {
|
|
176
|
+
width: 28px;
|
|
177
|
+
height: 28px;
|
|
178
|
+
border-radius: 6px;
|
|
179
|
+
border: 0;
|
|
180
|
+
background: transparent;
|
|
181
|
+
color: var(--color-text-secondary);
|
|
182
|
+
padding: 0;
|
|
183
|
+
display: inline-grid;
|
|
184
|
+
place-items: center;
|
|
185
|
+
cursor: pointer;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.chat-session-tab-tool:hover,
|
|
189
|
+
.chat-session-tab-tool:focus-visible {
|
|
190
|
+
color: var(--color-text-primary);
|
|
191
|
+
background: var(--color-background-elevated);
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.chat-session-tab-tool.is-active {
|
|
195
|
+
color: var(--color-brand-primary);
|
|
196
|
+
background: color-mix(in srgb, var(--color-brand-primary) 8%, var(--color-background-elevated));
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.chat-session-history {
|
|
200
|
+
box-sizing: border-box;
|
|
201
|
+
width: min(440px, calc(100vw - 24px));
|
|
202
|
+
max-height: min(520px, calc(100vh - 80px));
|
|
203
|
+
padding: 10px;
|
|
204
|
+
border: 1px solid var(--color-border-default);
|
|
205
|
+
border-radius: 10px;
|
|
206
|
+
background: var(--color-background-floating);
|
|
207
|
+
color: var(--color-text-primary);
|
|
208
|
+
box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.chat-session-history-title {
|
|
212
|
+
height: 30px;
|
|
213
|
+
padding: 0 8px 6px;
|
|
214
|
+
display: flex;
|
|
215
|
+
align-items: center;
|
|
216
|
+
gap: 8px;
|
|
217
|
+
color: var(--color-text-secondary);
|
|
218
|
+
font-size: 13px;
|
|
219
|
+
font-weight: 600;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.chat-session-history-list {
|
|
223
|
+
max-height: 430px;
|
|
224
|
+
overflow-y: auto;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.chat-session-history-row {
|
|
228
|
+
box-sizing: border-box;
|
|
229
|
+
width: 100%;
|
|
230
|
+
min-height: 40px;
|
|
231
|
+
padding: 0 9px;
|
|
232
|
+
display: grid;
|
|
233
|
+
grid-template-columns: 18px minmax(0, 1fr) auto;
|
|
234
|
+
align-items: center;
|
|
235
|
+
gap: 8px;
|
|
236
|
+
border: 0;
|
|
237
|
+
border-radius: 7px;
|
|
238
|
+
background: transparent;
|
|
239
|
+
color: var(--color-text-secondary);
|
|
240
|
+
text-align: left;
|
|
241
|
+
cursor: pointer;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.chat-session-history-row:hover,
|
|
245
|
+
.chat-session-history-row:focus-visible,
|
|
246
|
+
.chat-session-history-row.is-active {
|
|
247
|
+
background: var(--color-interaction-hover);
|
|
248
|
+
color: var(--color-text-primary);
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.chat-session-history-row.is-active {
|
|
252
|
+
color: var(--color-brand-primary);
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.chat-session-history-name {
|
|
256
|
+
overflow: hidden;
|
|
257
|
+
white-space: nowrap;
|
|
258
|
+
text-overflow: ellipsis;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.chat-session-history-time {
|
|
262
|
+
color: var(--color-text-tertiary);
|
|
263
|
+
white-space: nowrap;
|
|
264
|
+
font-variant-numeric: tabular-nums;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.chat-session-history-empty {
|
|
268
|
+
padding: 18px 10px;
|
|
269
|
+
color: var(--color-text-tertiary);
|
|
270
|
+
font-size: 12px;
|
|
271
|
+
text-align: center;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
/* ─── Agent Facepile Strip ──────────────────────────────────────────────────
|
|
275
|
+
*
|
|
276
|
+
* Floats above the message thread, centered.
|
|
277
|
+
* Hover on the strip (anywhere) → ALL avatars expand + names appear together.
|
|
278
|
+
* Container itself also grows (gap & padding animate).
|
|
279
|
+
* loading → spinning ring while that agent is streaming
|
|
280
|
+
* unread → red pulsing dot when a non-active agent has new output
|
|
281
|
+
* selected→ 2 px brand-color border on the avatar
|
|
282
|
+
* ─────────────────────────────────────────────────────────────────────────── */
|
|
283
|
+
/* Positioning shell — page dots live here, outside the flex pill */
|
|
284
|
+
.chat-agent-capsule-wrap {
|
|
285
|
+
position: absolute;
|
|
286
|
+
top: 10px;
|
|
287
|
+
left: 50%;
|
|
288
|
+
transform: translateX(-50%);
|
|
289
|
+
box-sizing: border-box;
|
|
290
|
+
width: max-content;
|
|
291
|
+
max-width: calc(100% - 20px);
|
|
292
|
+
z-index: var(--z-overlay);
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.cas-hover-moat {
|
|
296
|
+
position: absolute;
|
|
297
|
+
inset: -12px -18px;
|
|
298
|
+
z-index: 0;
|
|
299
|
+
border-radius: 999px;
|
|
300
|
+
background: transparent;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.chat-agent-capsule-wrap.has-paging:hover {
|
|
304
|
+
cursor: grab;
|
|
305
|
+
touch-action: none;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.chat-agent-capsule-wrap.has-paging.is-paging-drag {
|
|
309
|
+
cursor: grabbing;
|
|
310
|
+
user-select: none;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.chat-agent-capsule {
|
|
314
|
+
box-sizing: border-box;
|
|
315
|
+
position: relative;
|
|
316
|
+
z-index: 1;
|
|
317
|
+
display: flex;
|
|
318
|
+
/* Center every sibling on the tallest cas-btn (avatar + name in flow). */
|
|
319
|
+
align-items: center;
|
|
320
|
+
gap: 4px;
|
|
321
|
+
padding: 4px;
|
|
322
|
+
border-radius: 100px;
|
|
323
|
+
border: 1px solid var(--color-border-default);
|
|
324
|
+
background: color-mix(in srgb, var(--color-background-base) 72%, transparent);
|
|
325
|
+
max-width: 100%;
|
|
326
|
+
overflow-x: auto;
|
|
327
|
+
overflow-y: hidden;
|
|
328
|
+
scrollbar-width: none;
|
|
329
|
+
transition:
|
|
330
|
+
gap 0.26s cubic-bezier(0.4, 0, 0.2, 1),
|
|
331
|
+
padding 0.26s cubic-bezier(0.4, 0, 0.2, 1),
|
|
332
|
+
border-color 0.20s ease;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.chat-agent-capsule::before,
|
|
336
|
+
.chat-agent-capsule::after {
|
|
337
|
+
content: '';
|
|
338
|
+
position: absolute;
|
|
339
|
+
top: 1px;
|
|
340
|
+
bottom: 1px;
|
|
341
|
+
width: 42px;
|
|
342
|
+
border-radius: 999px;
|
|
343
|
+
opacity: 0;
|
|
344
|
+
pointer-events: none;
|
|
345
|
+
transition: opacity 0.18s ease, transform 0.24s ease;
|
|
346
|
+
z-index: 1;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.chat-agent-capsule::before {
|
|
350
|
+
left: 1px;
|
|
351
|
+
background: linear-gradient(90deg, color-mix(in srgb, var(--primary) 18%, transparent), transparent);
|
|
352
|
+
transform: translateX(-3px);
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.chat-agent-capsule::after {
|
|
356
|
+
right: 1px;
|
|
357
|
+
background: linear-gradient(270deg, color-mix(in srgb, var(--primary) 18%, transparent), transparent);
|
|
358
|
+
transform: translateX(3px);
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.chat-agent-capsule-wrap.is-edge-hover-prev .chat-agent-capsule::before,
|
|
362
|
+
.chat-agent-capsule-wrap.is-edge-hover-next .chat-agent-capsule::after {
|
|
363
|
+
opacity: 1;
|
|
364
|
+
transform: translateX(0);
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.chat-agent-capsule-wrap.is-edge-hover-prev .cas-btn {
|
|
368
|
+
transform: translateX(1px);
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.chat-agent-capsule-wrap.is-edge-hover-next .cas-btn {
|
|
372
|
+
transform: translateX(-1px);
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
@keyframes cas-page-enter-next {
|
|
376
|
+
from {
|
|
377
|
+
opacity: 0.38;
|
|
378
|
+
transform: translateX(10px) scale(0.98);
|
|
379
|
+
}
|
|
380
|
+
to {
|
|
381
|
+
opacity: 1;
|
|
382
|
+
transform: translateX(0) scale(1);
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
@keyframes cas-page-enter-prev {
|
|
387
|
+
from {
|
|
388
|
+
opacity: 0.38;
|
|
389
|
+
transform: translateX(-10px) scale(0.98);
|
|
390
|
+
}
|
|
391
|
+
to {
|
|
392
|
+
opacity: 1;
|
|
393
|
+
transform: translateX(0) scale(1);
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.chat-agent-capsule-wrap.is-page-motion-next .cas-btn {
|
|
398
|
+
animation: cas-page-enter-next 0.32s cubic-bezier(0.2, 0.8, 0.2, 1) both;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.chat-agent-capsule-wrap.is-page-motion-prev .cas-btn {
|
|
402
|
+
animation: cas-page-enter-prev 0.32s cubic-bezier(0.2, 0.8, 0.2, 1) both;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.chat-agent-capsule::-webkit-scrollbar {
|
|
406
|
+
width: 0;
|
|
407
|
+
height: 0;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
/* Hover: container expands + border strengthens */
|
|
411
|
+
.chat-agent-capsule-wrap:hover .chat-agent-capsule {
|
|
412
|
+
gap: 6px;
|
|
413
|
+
padding: 6px 20px;
|
|
414
|
+
border-color: var(--color-border-default);
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
/* ── Pagination nav arrows — hidden until capsule is hovered ──
|
|
418
|
+
*
|
|
419
|
+
* Siblings of .cas-btn in the same flex row. Row cross-size = full agent tab
|
|
420
|
+
* (padding + avatar + name). Parent align-items:center centers nav in that
|
|
421
|
+
* height — do not use flex-start / margin-top on the avatar band only. */
|
|
422
|
+
.cas-nav-btn {
|
|
423
|
+
box-sizing: border-box;
|
|
424
|
+
display: inline-flex;
|
|
425
|
+
align-items: center;
|
|
426
|
+
justify-content: center;
|
|
427
|
+
width: 0;
|
|
428
|
+
height: 24px;
|
|
429
|
+
padding: 0;
|
|
430
|
+
border: none;
|
|
431
|
+
background: transparent;
|
|
432
|
+
color: var(--color-text-secondary);
|
|
433
|
+
font-size: 16px;
|
|
434
|
+
font-weight: 300;
|
|
435
|
+
line-height: 1;
|
|
436
|
+
transform: translateY(-2px); /* optical: ‹ › sit low in the em box */
|
|
437
|
+
cursor: pointer;
|
|
438
|
+
flex-shrink: 0;
|
|
439
|
+
opacity: 0;
|
|
440
|
+
overflow: hidden;
|
|
441
|
+
pointer-events: none;
|
|
442
|
+
transition:
|
|
443
|
+
width 0.26s cubic-bezier(0.4, 0, 0.2, 1),
|
|
444
|
+
height 0.26s cubic-bezier(0.4, 0, 0.2, 1),
|
|
445
|
+
margin 0.26s cubic-bezier(0.4, 0, 0.2, 1),
|
|
446
|
+
opacity 0.18s ease,
|
|
447
|
+
color 0.15s ease;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
/* Negative margins cancel the flex gap while collapsed (gap = 4px per side) */
|
|
451
|
+
.cas-nav-prev { margin-right: -4px; }
|
|
452
|
+
.cas-nav-next { margin-left: -4px; }
|
|
453
|
+
|
|
454
|
+
.chat-agent-capsule-wrap:hover .cas-nav-btn {
|
|
455
|
+
width: 20px;
|
|
456
|
+
height: 36px;
|
|
457
|
+
opacity: 1;
|
|
458
|
+
pointer-events: auto;
|
|
459
|
+
font-size: 18px;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
.chat-agent-capsule-wrap:hover .cas-nav-prev { margin-right: 0; }
|
|
463
|
+
.chat-agent-capsule-wrap:hover .cas-nav-next { margin-left: 0; }
|
|
464
|
+
|
|
465
|
+
/* Individual chevron hover: color only, no background */
|
|
466
|
+
.chat-agent-capsule-wrap:hover .cas-nav-btn:hover {
|
|
467
|
+
color: var(--color-text-primary);
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
/* Disabled: dim + no pointer */
|
|
471
|
+
.chat-agent-capsule-wrap:hover .cas-nav-btn.is-disabled {
|
|
472
|
+
opacity: 0.22;
|
|
473
|
+
pointer-events: none;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
/* ── Page-dot indicator — sibling of the pill, below wrap on hover ── */
|
|
477
|
+
.cas-page-dots {
|
|
478
|
+
position: absolute;
|
|
479
|
+
top: calc(100% + 6px);
|
|
480
|
+
left: 50%;
|
|
481
|
+
transform: translateX(-50%);
|
|
482
|
+
display: flex;
|
|
483
|
+
align-items: center;
|
|
484
|
+
gap: 4px;
|
|
485
|
+
pointer-events: none;
|
|
486
|
+
opacity: 0;
|
|
487
|
+
transition: opacity 0.18s ease 0.08s;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
.chat-agent-capsule-wrap:hover .cas-page-dots {
|
|
491
|
+
opacity: 1;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
/* ── "拍了拍你" 气泡 —— agent 回复完成后, 紧贴胶囊下方冒出, 维持 5s 后消失 ──
|
|
495
|
+
*
|
|
496
|
+
* wrap 是 width:max-content (= 胶囊宽), left:0/right:0 的容器就等于胶囊宽; 内部气泡
|
|
497
|
+
* width:fit-content 随文字伸缩, max-width:100% 把上限钉在胶囊宽 (满了就换行). */
|
|
498
|
+
.cas-pat-bubble {
|
|
499
|
+
position: absolute;
|
|
500
|
+
top: calc(100% + 7px);
|
|
501
|
+
left: 0;
|
|
502
|
+
right: 0;
|
|
503
|
+
display: flex;
|
|
504
|
+
justify-content: flex-start;
|
|
505
|
+
pointer-events: none;
|
|
506
|
+
z-index: 2;
|
|
507
|
+
opacity: 0;
|
|
508
|
+
transform: translateY(-4px);
|
|
509
|
+
transition: opacity 0.26s ease, transform 0.26s ease;
|
|
510
|
+
}
|
|
511
|
+
.cas-pat-bubble.is-show {
|
|
512
|
+
opacity: 1;
|
|
513
|
+
transform: translateY(0);
|
|
514
|
+
}
|
|
515
|
+
.cas-pat-text {
|
|
516
|
+
position: relative;
|
|
517
|
+
box-sizing: border-box;
|
|
518
|
+
width: fit-content;
|
|
519
|
+
max-width: 100%;
|
|
520
|
+
padding: 6px 12px;
|
|
521
|
+
font-size: 12px;
|
|
522
|
+
line-height: 1.4;
|
|
523
|
+
text-align: center;
|
|
524
|
+
color: var(--color-text-secondary);
|
|
525
|
+
background: color-mix(in srgb, var(--color-background-base) 90%, transparent);
|
|
526
|
+
border: 1px solid var(--color-border-default);
|
|
527
|
+
border-radius: 12px;
|
|
528
|
+
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
|
|
529
|
+
backdrop-filter: blur(6px);
|
|
530
|
+
word-break: break-word;
|
|
531
|
+
}
|
|
532
|
+
/* 朝上的小尖角, 指向胶囊第一个头像 (--pat-tail-x 由 JS 测量后注入, 相对气泡左边缘). */
|
|
533
|
+
.cas-pat-text::before {
|
|
534
|
+
content: '';
|
|
535
|
+
position: absolute;
|
|
536
|
+
top: -5px;
|
|
537
|
+
left: var(--pat-tail-x, 24px);
|
|
538
|
+
width: 8px;
|
|
539
|
+
height: 8px;
|
|
540
|
+
transform: translateX(-50%) rotate(45deg);
|
|
541
|
+
background: inherit;
|
|
542
|
+
border-left: 1px solid var(--color-border-default);
|
|
543
|
+
border-top: 1px solid var(--color-border-default);
|
|
544
|
+
}
|
|
545
|
+
@media (prefers-reduced-motion: reduce) {
|
|
546
|
+
.cas-pat-bubble { transition: opacity 0.26s ease; transform: none; }
|
|
547
|
+
.cas-pat-bubble.is-show { transform: none; }
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
.cas-page-dot {
|
|
551
|
+
width: 5px;
|
|
552
|
+
height: 5px;
|
|
553
|
+
border-radius: 50%;
|
|
554
|
+
background: var(--color-text-tertiary);
|
|
555
|
+
transition: background 0.18s ease, transform 0.18s ease;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
.cas-page-dot.is-active {
|
|
559
|
+
background: var(--primary);
|
|
560
|
+
transform: scale(1.3);
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
/* ── Individual agent button ──
|
|
564
|
+
*
|
|
565
|
+
* Base state: width is intrinsic (24px from avatar-wrap, no explicit width).
|
|
566
|
+
* Hover state: transitions to a fixed 64px (box-sizing: border-box), which
|
|
567
|
+
* gives 52px of content width — enough for exactly 5 full-width CJK chars
|
|
568
|
+
* at 10px font-size. All buttons end up the same width regardless of name
|
|
569
|
+
* length; names longer than the content area get an ellipsis. */
|
|
570
|
+
.cas-btn {
|
|
571
|
+
box-sizing: border-box;
|
|
572
|
+
display: flex;
|
|
573
|
+
flex-direction: column;
|
|
574
|
+
align-items: center;
|
|
575
|
+
gap: 0;
|
|
576
|
+
padding: 0;
|
|
577
|
+
/* ADR-0019: button 跟 cas-avatar-wrap (32×32) 同尺寸, 不再 overflow:hidden 切 wrap.
|
|
578
|
+
* 之前默认 24×24, wrap 32 溢出 8px 被切掉, portrait WEBM 头部不可见. */
|
|
579
|
+
width: 32px;
|
|
580
|
+
height: 32px;
|
|
581
|
+
min-height: 32px;
|
|
582
|
+
max-height: 32px;
|
|
583
|
+
overflow: hidden;
|
|
584
|
+
border: none;
|
|
585
|
+
border-radius: 50%;
|
|
586
|
+
background: transparent;
|
|
587
|
+
cursor: pointer;
|
|
588
|
+
flex-shrink: 0;
|
|
589
|
+
transition:
|
|
590
|
+
width 0.26s cubic-bezier(0.4, 0, 0.2, 1),
|
|
591
|
+
height 0.26s cubic-bezier(0.4, 0, 0.2, 1),
|
|
592
|
+
min-height 0.26s cubic-bezier(0.4, 0, 0.2, 1),
|
|
593
|
+
max-height 0.26s cubic-bezier(0.4, 0, 0.2, 1),
|
|
594
|
+
padding 0.26s cubic-bezier(0.4, 0, 0.2, 1),
|
|
595
|
+
background 0.22s ease,
|
|
596
|
+
border-radius 0.26s ease,
|
|
597
|
+
transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1);
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
/* overflow: visible lets the unread dot peek outside the rounded corner.
|
|
601
|
+
* Fixed 62px = 4 padding-top + 36 avatar + 4 name gap + 14 name + 4 padding-bottom */
|
|
602
|
+
.chat-agent-capsule-wrap:hover .cas-btn {
|
|
603
|
+
box-sizing: border-box;
|
|
604
|
+
width: 64px;
|
|
605
|
+
height: 62px;
|
|
606
|
+
min-height: 62px;
|
|
607
|
+
max-height: 62px;
|
|
608
|
+
overflow: visible;
|
|
609
|
+
padding: 4px 6px;
|
|
610
|
+
border-radius: 12px;
|
|
611
|
+
background: var(--color-divider-subtle);
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
/* Per-button stronger highlight on individual hover */
|
|
615
|
+
.chat-agent-capsule-wrap:hover .cas-btn:hover {
|
|
616
|
+
background: var(--color-divider-default);
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
|
|
620
|
+
/* ── Avatar wrapper — drives size transitions ── */
|
|
621
|
+
.cas-avatar-wrap {
|
|
622
|
+
position: relative;
|
|
623
|
+
width: 32px;
|
|
624
|
+
height: 32px;
|
|
625
|
+
flex-shrink: 0;
|
|
626
|
+
transition:
|
|
627
|
+
width 0.26s cubic-bezier(0.4, 0, 0.2, 1),
|
|
628
|
+
height 0.26s cubic-bezier(0.4, 0, 0.2, 1);
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
/* All wrappers grow when the strip is hovered */
|
|
632
|
+
.chat-agent-capsule-wrap:hover .cas-avatar-wrap {
|
|
633
|
+
width: 44px;
|
|
634
|
+
height: 44px;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
/* ADR-0019 — WEBM avatar fills the wrap exactly. !important overrides the inline
|
|
638
|
+
* `width/height` <AgentAvatarVideo>'s size prop sets (cas-avatar-wrap drives sizing
|
|
639
|
+
* here, not the component). 没这条会 anchor 左上 + 溢出 → 视觉上歪. */
|
|
640
|
+
.cas-avatar-wrap > .agent-avatar-video {
|
|
641
|
+
position: absolute;
|
|
642
|
+
inset: 0;
|
|
643
|
+
width: 100% !important;
|
|
644
|
+
height: 100% !important;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
/* Capsule-only avatar framing — the small capsule circle showed faces a bit
|
|
648
|
+
* too low, so lift + zoom the WEBM layer just here. Scoped to .cas-avatar-wrap
|
|
649
|
+
* and given higher specificity than the global per-agent rules in
|
|
650
|
+
* agent-avatar-video.css (the extra [data-agent-id] bumps the weight) so this
|
|
651
|
+
* wins inside the capsule WITHOUT touching the same component anywhere else
|
|
652
|
+
* (sidebar / chat / extension / settings keep their own framing). The circular
|
|
653
|
+
* frame stays 32/44px; only the image inside is scaled/shifted. */
|
|
654
|
+
.cas-avatar-wrap > .agent-avatar-video[data-agent-id] .aav-layer {
|
|
655
|
+
transform: scale(1.32) translate3d(0, -16%, 0);
|
|
656
|
+
transform-origin: center top;
|
|
657
|
+
}
|
|
658
|
+
/* Capsule per-agent tweaks (override the uniform rule above; same specificity,
|
|
659
|
+
* later in source so they win). Still scoped to .cas-avatar-wrap only. */
|
|
660
|
+
.cas-avatar-wrap > .agent-avatar-video[data-agent-id="cc-coder"] .aav-layer {
|
|
661
|
+
transform: scale(1.52) translate3d(0, -48%, 0);
|
|
662
|
+
}
|
|
663
|
+
.cas-avatar-wrap > .agent-avatar-video[data-agent-id="lock"] .aav-layer {
|
|
664
|
+
transform: scale(1.32) translate3d(0, -28%, 0);
|
|
665
|
+
}
|
|
666
|
+
.cas-avatar-wrap > .agent-avatar-video[data-agent-id="iro"] .aav-layer {
|
|
667
|
+
transform: scale(1.32) translate3d(0, -20%, 0);
|
|
668
|
+
}
|
|
669
|
+
.cas-avatar-wrap > .agent-avatar-video[data-agent-id="suzu"] .aav-layer {
|
|
670
|
+
transform: scale(1.38) translate3d(0, -26%, 0);
|
|
671
|
+
}
|
|
672
|
+
.cas-avatar-wrap > .agent-avatar-video[data-agent-id="arin"] .aav-layer {
|
|
673
|
+
transform: scale(1.16) translate3d(0, -24%, 0);
|
|
674
|
+
}
|
|
675
|
+
.cas-avatar-wrap > .agent-avatar-video[data-agent-id="iori"] .aav-layer {
|
|
676
|
+
transform: scale(1.24) translate3d(0, -9%, 0);
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
/* Nudge ONLY the capsule's outer pill/border down a few px while keeping the
|
|
680
|
+
* avatars where they are: move the whole pill down N, then pull the avatar
|
|
681
|
+
* wrap back up N so its net position is unchanged. (Name label is hover-only,
|
|
682
|
+
* a few px shift there is invisible.) */
|
|
683
|
+
.chat-agent-capsule {
|
|
684
|
+
transform: translateY(3px);
|
|
685
|
+
}
|
|
686
|
+
.cas-avatar-wrap {
|
|
687
|
+
transform: translateY(-3px);
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
/* ADR-0019 — 选中态绿色环. 原来靠 .cas-avatar 改 background 提示选中, 现在 WEBM
|
|
691
|
+
* 盖住了背景, 改用 box-shadow ring (不占布局, 不会跟 cas-spinner 的 inset:-3px 撞). */
|
|
692
|
+
.cas-btn.is-selected .cas-avatar-wrap {
|
|
693
|
+
box-shadow: 0 0 0 2px var(--primary);
|
|
694
|
+
border-radius: 50%;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
/* ── Avatar circle — fills the wrapper ── */
|
|
698
|
+
.cas-avatar {
|
|
699
|
+
position: absolute;
|
|
700
|
+
inset: 0;
|
|
701
|
+
display: flex;
|
|
702
|
+
align-items: center;
|
|
703
|
+
justify-content: center;
|
|
704
|
+
border-radius: 50%;
|
|
705
|
+
background: var(--prim-color-neutral-300); /* #B3B3B3 — unselected, darker */
|
|
706
|
+
color: var(--color-text-on-bright-primary); /* #000000 */
|
|
707
|
+
font-family: var(--mono);
|
|
708
|
+
font-size: 9px;
|
|
709
|
+
font-weight: 700;
|
|
710
|
+
letter-spacing: 0.03em;
|
|
711
|
+
border: none;
|
|
712
|
+
transition:
|
|
713
|
+
font-size 0.24s ease,
|
|
714
|
+
background 0.18s ease;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
/* All avatars get bigger font when strip is hovered */
|
|
718
|
+
.chat-agent-capsule-wrap:hover .cas-avatar {
|
|
719
|
+
font-size: 12px;
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
/* Selected: brand-color bg + black text */
|
|
723
|
+
.cas-btn.is-selected .cas-avatar {
|
|
724
|
+
background: var(--primary);
|
|
725
|
+
color: var(--color-text-on-bright-primary);
|
|
726
|
+
border: none;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
/* ── Loading spinner ── */
|
|
730
|
+
@keyframes cas-spin {
|
|
731
|
+
to { transform: rotate(360deg); }
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
.cas-spinner {
|
|
735
|
+
position: absolute;
|
|
736
|
+
inset: -3px;
|
|
737
|
+
border-radius: 50%;
|
|
738
|
+
border: 2px solid transparent;
|
|
739
|
+
border-top-color: rgba(80, 80, 80, 0.85);
|
|
740
|
+
border-right-color: rgba(80, 80, 80, 0.3);
|
|
741
|
+
animation: cas-spin 0.72s linear infinite;
|
|
742
|
+
pointer-events: none;
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
/* ── Unread dot ── */
|
|
746
|
+
@keyframes cas-unread-pulse {
|
|
747
|
+
0%, 100% { transform: scale(1); opacity: 1; }
|
|
748
|
+
50% { transform: scale(1.4); opacity: 0.75; }
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
.cas-unread-dot {
|
|
752
|
+
position: absolute;
|
|
753
|
+
top: -2px;
|
|
754
|
+
right: -2px;
|
|
755
|
+
width: 7px;
|
|
756
|
+
height: 7px;
|
|
757
|
+
border-radius: 50%;
|
|
758
|
+
background: #ef4444;
|
|
759
|
+
border: 1.5px solid color-mix(in srgb, var(--color-background-base) 90%, transparent);
|
|
760
|
+
animation: cas-unread-pulse 2s ease-in-out infinite;
|
|
761
|
+
pointer-events: none;
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
/* ── Agent name — hidden until the whole strip is hovered ──
|
|
765
|
+
*
|
|
766
|
+
* The button is now fixed-width (64px with 6px side padding → 52px content).
|
|
767
|
+
* The name is therefore always constrained to 52px regardless of text length.
|
|
768
|
+
* `text-overflow: ellipsis` handles any overflow; the full name is visible
|
|
769
|
+
* via the ::after tooltip on individual button hover.
|
|
770
|
+
*
|
|
771
|
+
* `max-width: 0 → 52px` still drives the smooth horizontal reveal animation;
|
|
772
|
+
* `max-height` / `opacity` / `transform` handle the vertical slide-in with a
|
|
773
|
+
* 0.10s delay so space opens before text appears. */
|
|
774
|
+
.cas-name {
|
|
775
|
+
display: block;
|
|
776
|
+
flex-shrink: 0;
|
|
777
|
+
font-size: 10px;
|
|
778
|
+
font-weight: 500;
|
|
779
|
+
color: var(--color-text-secondary);
|
|
780
|
+
white-space: nowrap;
|
|
781
|
+
width: 52px;
|
|
782
|
+
max-width: 52px;
|
|
783
|
+
height: 0;
|
|
784
|
+
max-height: 0;
|
|
785
|
+
line-height: 14px;
|
|
786
|
+
overflow: hidden;
|
|
787
|
+
text-overflow: ellipsis;
|
|
788
|
+
opacity: 0;
|
|
789
|
+
margin-top: 0;
|
|
790
|
+
transition:
|
|
791
|
+
height 0.26s cubic-bezier(0.4, 0, 0.2, 1),
|
|
792
|
+
max-height 0.26s cubic-bezier(0.4, 0, 0.2, 1),
|
|
793
|
+
margin-top 0.26s cubic-bezier(0.4, 0, 0.2, 1),
|
|
794
|
+
opacity 0.18s ease 0.06s;
|
|
795
|
+
pointer-events: none;
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
/* Name slot grows inside the animating 24→62px tab — no extra document-flow jump */
|
|
799
|
+
.chat-agent-capsule-wrap:hover .cas-name {
|
|
800
|
+
height: 14px;
|
|
801
|
+
max-height: 14px;
|
|
802
|
+
margin-top: 4px;
|
|
803
|
+
opacity: 1;
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
/* 当前 Agent + Bus 路由 */
|
|
807
|
+
.chat-agent-detail-bar {
|
|
808
|
+
display: flex;
|
|
809
|
+
align-items: center;
|
|
810
|
+
flex-wrap: nowrap;
|
|
811
|
+
gap: 5px;
|
|
812
|
+
min-height: 28px;
|
|
813
|
+
padding: 4px 8px 5px;
|
|
814
|
+
border-top: 1px solid var(--color-border-default);
|
|
815
|
+
min-width: 0;
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
.chat-agent-detail-bar .cp-agent-bar {
|
|
819
|
+
display: flex;
|
|
820
|
+
align-items: center;
|
|
821
|
+
gap: 6px;
|
|
822
|
+
flex: 1 1 auto;
|
|
823
|
+
min-width: 0;
|
|
824
|
+
overflow: hidden;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
.chat-agent-detail-bar .cp-agent-bar-id,
|
|
828
|
+
.chat-agent-detail-bar .cp-agent-bar-id-text,
|
|
829
|
+
.chat-agent-detail-bar .cp-agent-bar-bus,
|
|
830
|
+
.chat-agent-detail-bar .cp-agent-bar-bus-id {
|
|
831
|
+
min-width: 0;
|
|
832
|
+
overflow: hidden;
|
|
833
|
+
text-overflow: ellipsis;
|
|
834
|
+
white-space: nowrap;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.chat-agent-detail-label {
|
|
838
|
+
font-size: 10.5px;
|
|
839
|
+
color: var(--color-text-tertiary);
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
.chat-agent-detail-pill {
|
|
843
|
+
font-size: 11px;
|
|
844
|
+
font-weight: 600;
|
|
845
|
+
padding: 3px 8px;
|
|
846
|
+
border-radius: 6px;
|
|
847
|
+
color: var(--color-role-orchestrator);
|
|
848
|
+
background: var(--color-accent-purple-soft);
|
|
849
|
+
border: 1px solid color-mix(in srgb, var(--color-role-orchestrator) 28%, transparent);
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
.chat-agent-detail-bus {
|
|
853
|
+
flex: 1;
|
|
854
|
+
min-width: 0;
|
|
855
|
+
font-family: var(--mono);
|
|
856
|
+
font-size: 10px;
|
|
857
|
+
color: var(--color-kind-cli-provider);
|
|
858
|
+
padding: 4px 8px;
|
|
859
|
+
border-radius: 6px;
|
|
860
|
+
border: 1px solid color-mix(in srgb, var(--color-kind-cli-provider) 35%, transparent);
|
|
861
|
+
background: var(--color-accent-blue-soft);
|
|
862
|
+
white-space: nowrap;
|
|
863
|
+
overflow: hidden;
|
|
864
|
+
text-overflow: ellipsis;
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
.chat-agent-detail-bus-arrow {
|
|
868
|
+
margin-left: 4px;
|
|
869
|
+
opacity: 0.7;
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
.chat-agent-detail-actions {
|
|
873
|
+
display: flex;
|
|
874
|
+
align-items: center;
|
|
875
|
+
gap: 2px;
|
|
876
|
+
margin-left: auto;
|
|
877
|
+
flex-shrink: 0;
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
.chat-agent-detail-action {
|
|
881
|
+
width: 22px;
|
|
882
|
+
height: 22px;
|
|
883
|
+
display: inline-flex;
|
|
884
|
+
align-items: center;
|
|
885
|
+
justify-content: center;
|
|
886
|
+
border: none;
|
|
887
|
+
border-radius: 7px;
|
|
888
|
+
background: transparent;
|
|
889
|
+
color: var(--color-text-tertiary);
|
|
890
|
+
cursor: pointer;
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
.chat-agent-detail-action:hover {
|
|
894
|
+
background: var(--color-interaction-hover);
|
|
895
|
+
color: var(--color-text-secondary);
|
|
896
|
+
}
|