@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,1393 @@
|
|
|
1
|
+
.sidebar {
|
|
2
|
+
background: var(--color-background-elevated);
|
|
3
|
+
overflow: hidden;
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
height: 100%;
|
|
7
|
+
min-height: 0;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.sb-nav-icons-h {
|
|
11
|
+
display: flex;
|
|
12
|
+
align-items: center;
|
|
13
|
+
gap: 8px;
|
|
14
|
+
}
|
|
15
|
+
.sb-nav-divider {
|
|
16
|
+
height: 12px;
|
|
17
|
+
flex-shrink: 0;
|
|
18
|
+
}
|
|
19
|
+
.sb-nav-icons-v {
|
|
20
|
+
display: flex;
|
|
21
|
+
flex-direction: column;
|
|
22
|
+
align-items: center;
|
|
23
|
+
gap: 8px;
|
|
24
|
+
}
|
|
25
|
+
.ss-section {
|
|
26
|
+
padding: 14px 12px 10px;
|
|
27
|
+
border-bottom: 1px solid var(--color-border-default);
|
|
28
|
+
}
|
|
29
|
+
.ss-section:last-child { border-bottom: none; }
|
|
30
|
+
|
|
31
|
+
/* extension section claims all remaining vertical space (the only section
|
|
32
|
+
today; the footer-kinds row was removed 2026-05-17). Allows iframe / split-
|
|
33
|
+
surface plugin panels to fill the full Sidebar height instead of collapsing
|
|
34
|
+
to their natural ~200px content height. */
|
|
35
|
+
.ss-section.extension {
|
|
36
|
+
flex: 1 1 0;
|
|
37
|
+
min-height: 0;
|
|
38
|
+
display: flex;
|
|
39
|
+
flex-direction: column;
|
|
40
|
+
}
|
|
41
|
+
.ss-section.extension .ws-active-content {
|
|
42
|
+
flex: 1 1 0;
|
|
43
|
+
min-height: 0;
|
|
44
|
+
display: flex;
|
|
45
|
+
flex-direction: column;
|
|
46
|
+
overflow: auto;
|
|
47
|
+
/* Positioning context for the keep-alive left-pane plugin overlay. */
|
|
48
|
+
position: relative;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/* Keep-alive overlay for left-pane standalone plugins (Plan A). Absolute over
|
|
52
|
+
* ws-active-content; self-hides (inline visibility:hidden + pointer-events:none)
|
|
53
|
+
* when the active tab is not a left-pane plugin, while the visited iframes
|
|
54
|
+
* inside stay mounted & alive. */
|
|
55
|
+
.ws-pane-keepalive {
|
|
56
|
+
position: absolute;
|
|
57
|
+
inset: 0;
|
|
58
|
+
display: flex;
|
|
59
|
+
flex-direction: column;
|
|
60
|
+
}
|
|
61
|
+
/* The rail-panel flow-in animation rule `.ws-active-content.rail-panel > *`
|
|
62
|
+
(below) forces position:relative on EVERY direct child — its (0,2,0)
|
|
63
|
+
specificity clobbers the (0,1,0) rule above, dropping this overlay's
|
|
64
|
+
absolute+inset:0 so it collapses to 0 height and the left-pane (options)
|
|
65
|
+
iframe becomes invisible. Restore the overlay with a higher-specificity
|
|
66
|
+
selector. (Regression fix 2026-06: extension plugin options panel blank.) */
|
|
67
|
+
.ws-active-content.rail-panel > .ws-pane-keepalive {
|
|
68
|
+
position: absolute;
|
|
69
|
+
inset: 0;
|
|
70
|
+
}
|
|
71
|
+
.ws-pane-keepalive .fx-keepalive-stack {
|
|
72
|
+
flex: 1 1 auto;
|
|
73
|
+
min-height: 0;
|
|
74
|
+
}
|
|
75
|
+
.ws-pane-keepalive .page-plugin-iframe-wrap {
|
|
76
|
+
flex: 1 1 auto;
|
|
77
|
+
display: flex;
|
|
78
|
+
min-height: 0;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/* Windowing — left-pane 弹出/收回 (Tauri only). A small corner affordance so it
|
|
82
|
+
doesn't steal sidebar width. */
|
|
83
|
+
.ws-pane-window-toggle {
|
|
84
|
+
position: absolute;
|
|
85
|
+
top: 4px; right: 4px;
|
|
86
|
+
z-index: 2;
|
|
87
|
+
display: inline-flex; align-items: center; justify-content: center;
|
|
88
|
+
width: 22px; height: 22px;
|
|
89
|
+
color: var(--color-text-primary);
|
|
90
|
+
background: var(--color-background-base);
|
|
91
|
+
border: 1px solid var(--color-border-default);
|
|
92
|
+
border-radius: 4px;
|
|
93
|
+
cursor: pointer;
|
|
94
|
+
opacity: 0.7;
|
|
95
|
+
}
|
|
96
|
+
.ws-pane-window-toggle:hover { opacity: 1; }
|
|
97
|
+
.ws-pane-floating {
|
|
98
|
+
position: absolute; inset: 0; z-index: 2;
|
|
99
|
+
display: flex; flex-direction: column;
|
|
100
|
+
align-items: center; justify-content: center; gap: 10px;
|
|
101
|
+
font-size: 12px; color: var(--color-text-secondary, #888);
|
|
102
|
+
}
|
|
103
|
+
.ws-pane-floating .ws-pane-window-toggle { position: static; }
|
|
104
|
+
|
|
105
|
+
/* P3.1 — bus health chip: dot + plugin-count badge inline.
|
|
106
|
+
* Previously a 7×7 lamp with hover-only tooltip; now the count is visible by default
|
|
107
|
+
* so the sidebar exposes bus host scale without leaving the home view. */
|
|
108
|
+
.bus-chip {
|
|
109
|
+
display: inline-flex;
|
|
110
|
+
align-items: center;
|
|
111
|
+
gap: 4px;
|
|
112
|
+
padding: 1px 5px 1px 4px;
|
|
113
|
+
border-radius: 6px;
|
|
114
|
+
background: rgba(255,255,255,0.04);
|
|
115
|
+
border: 1px solid rgba(255,255,255,0.08);
|
|
116
|
+
line-height: 1;
|
|
117
|
+
flex-shrink: 0;
|
|
118
|
+
}
|
|
119
|
+
.bus-chip-dot {
|
|
120
|
+
width: 6px;
|
|
121
|
+
height: 6px;
|
|
122
|
+
border-radius: 50%;
|
|
123
|
+
flex-shrink: 0;
|
|
124
|
+
}
|
|
125
|
+
.bus-chip-text {
|
|
126
|
+
font-size: 9px;
|
|
127
|
+
font-weight: 600;
|
|
128
|
+
font-variant-numeric: tabular-nums;
|
|
129
|
+
letter-spacing: 0;
|
|
130
|
+
color: var(--text-muted);
|
|
131
|
+
}
|
|
132
|
+
.bus-chip-ok .bus-chip-dot { background: var(--accent-green); box-shadow: none; }
|
|
133
|
+
.bus-chip-ok .bus-chip-text { color: var(--accent-green); }
|
|
134
|
+
.bus-chip-warn .bus-chip-dot { background: var(--accent-orange); animation: pulse 1.5s infinite; }
|
|
135
|
+
.bus-chip-warn .bus-chip-text { color: var(--accent-orange); }
|
|
136
|
+
.bus-chip-down .bus-chip-dot { background: var(--accent-error); }
|
|
137
|
+
.bus-chip-down .bus-chip-text { color: var(--accent-error); }
|
|
138
|
+
.bus-chip-idle .bus-chip-dot { background: rgba(255,255,255,0.25); }
|
|
139
|
+
.bus-chip-idle .bus-chip-text { color: var(--text-dim); }
|
|
140
|
+
|
|
141
|
+
/* P3.87 (2026-05-17): BusHealthLamp upgraded to deep-link button — adds
|
|
142
|
+
* cursor:pointer + hover/focus/active states + sliding-in `→` arrow + an
|
|
143
|
+
* is-active variant when current mode === 'bus' (current-tab indicator). */
|
|
144
|
+
button.bus-chip.is-link {
|
|
145
|
+
appearance: none;
|
|
146
|
+
-webkit-appearance: none;
|
|
147
|
+
font: inherit;
|
|
148
|
+
cursor: pointer;
|
|
149
|
+
outline: none;
|
|
150
|
+
margin: 0;
|
|
151
|
+
transition:
|
|
152
|
+
background-color 120ms ease,
|
|
153
|
+
border-color 120ms ease,
|
|
154
|
+
box-shadow 160ms ease,
|
|
155
|
+
transform 120ms ease;
|
|
156
|
+
}
|
|
157
|
+
button.bus-chip.is-link:hover {
|
|
158
|
+
background: rgba(0, 255, 135, 0.10);
|
|
159
|
+
border-color: rgba(0, 255, 135, 0.45);
|
|
160
|
+
box-shadow: none;
|
|
161
|
+
transform: translateY(-0.5px);
|
|
162
|
+
}
|
|
163
|
+
button.bus-chip.is-link:hover .bus-chip-arrow {
|
|
164
|
+
opacity: 0.92;
|
|
165
|
+
transform: translateX(1px);
|
|
166
|
+
}
|
|
167
|
+
button.bus-chip.is-link:focus-visible {
|
|
168
|
+
border-color: rgba(0, 255, 135, 0.55);
|
|
169
|
+
box-shadow: 0 0 0 2px rgba(0, 255, 135, 0.55);
|
|
170
|
+
}
|
|
171
|
+
button.bus-chip.is-link:active {
|
|
172
|
+
background: rgba(0, 255, 135, 0.16);
|
|
173
|
+
transform: translateY(0);
|
|
174
|
+
box-shadow: none;
|
|
175
|
+
}
|
|
176
|
+
button.bus-chip.is-link.is-active {
|
|
177
|
+
background: rgba(0, 255, 135, 0.18);
|
|
178
|
+
border-color: rgba(0, 255, 135, 0.55);
|
|
179
|
+
}
|
|
180
|
+
button.bus-chip.is-link.bus-chip-warn:hover {
|
|
181
|
+
background: rgba(255, 170, 60, 0.12);
|
|
182
|
+
border-color: rgba(255, 170, 60, 0.50);
|
|
183
|
+
box-shadow: none;
|
|
184
|
+
}
|
|
185
|
+
button.bus-chip.is-link.bus-chip-warn:focus-visible {
|
|
186
|
+
box-shadow: 0 0 0 2px rgba(255, 170, 60, 0.55);
|
|
187
|
+
}
|
|
188
|
+
.bus-chip-arrow {
|
|
189
|
+
font-size: 9px;
|
|
190
|
+
line-height: 1;
|
|
191
|
+
color: currentColor;
|
|
192
|
+
opacity: 0;
|
|
193
|
+
margin-left: 1px;
|
|
194
|
+
transform: translateX(-1px);
|
|
195
|
+
transition: opacity 140ms ease, transform 140ms ease;
|
|
196
|
+
}
|
|
197
|
+
/* P4.48 — Σ glyph in healthy BusHealthLamp chip. Sigma reads as "summed
|
|
198
|
+
* total" and shares the muscle-memory language with AgentsHub header
|
|
199
|
+
* (P4.45), WbGallery stats (P4.46), Sidebar AgentsPanel header (P4.47),
|
|
200
|
+
* BusAdminPanel summary (P4.42). 9px to match the chip's text size with a
|
|
201
|
+
* slight 0.62 alpha tint so it reads as a label-marker rather than a
|
|
202
|
+
* fellow count digit; -1px right margin tightens it against the count.
|
|
203
|
+
* Hover lifts opacity to lend the chip extra interactivity affordance. */
|
|
204
|
+
.bus-chip-sigma {
|
|
205
|
+
font-size: 9px;
|
|
206
|
+
line-height: 1;
|
|
207
|
+
color: currentColor;
|
|
208
|
+
opacity: 0.62;
|
|
209
|
+
margin-right: -1px;
|
|
210
|
+
letter-spacing: 0;
|
|
211
|
+
font-variant-numeric: tabular-nums;
|
|
212
|
+
transition: opacity 140ms ease;
|
|
213
|
+
}
|
|
214
|
+
button.bus-chip.is-link:hover .bus-chip-sigma { opacity: 0.92; }
|
|
215
|
+
|
|
216
|
+
/* P4.91 (2026-05-17) — bus-chip-ring · live event-ring occupancy badge.
|
|
217
|
+
* BusStatus.ringSize 字段在 /api/health bus.* 自 Phase 1.5b 起即存在,但 4 周来
|
|
218
|
+
* 只藏在 chip 的 title tooltip 里 (`Bus: 20 plugin · 0 broken · 0 listener · ring 85`)
|
|
219
|
+
* — 玩家必须把鼠标 hover 上去才能看到。本拍把 ring N 前置到 chip 文字旁,
|
|
220
|
+
* 让 bus event 活跃度成为 0-click 可见的肌肉记忆。
|
|
221
|
+
* 8px 比 .bus-chip-text 小一档 + 0.42 opacity 比 Σ (0.62) 更弱 — 视觉层级:
|
|
222
|
+
* 主数字 (count) > Σ marker > R{N} ring,玩家眼睛先抓 20,再扫到 Σ,最后才到 R85。
|
|
223
|
+
* 用 currentColor 跟随 bus tone (ok 绿 / warn 橙 / down 红 / idle 灰) — 单 token 切色。
|
|
224
|
+
* margin-left: 2px 紧贴 chip-text;letter-spacing 0 与 sigma 一致避免奇怪行间距。 */
|
|
225
|
+
.bus-chip-ring {
|
|
226
|
+
font-size: 8px;
|
|
227
|
+
line-height: 1;
|
|
228
|
+
color: rgba(180, 200, 220, 0.92);
|
|
229
|
+
opacity: 0.42;
|
|
230
|
+
margin-left: 2px;
|
|
231
|
+
letter-spacing: 0;
|
|
232
|
+
font-variant-numeric: tabular-nums;
|
|
233
|
+
transition: opacity 140ms ease;
|
|
234
|
+
}
|
|
235
|
+
.bus-chip-ok .bus-chip-ring { color: var(--accent-green); }
|
|
236
|
+
.bus-chip-warn .bus-chip-ring { color: var(--accent-orange); }
|
|
237
|
+
button.bus-chip.is-link:hover .bus-chip-ring { opacity: 0.78; }
|
|
238
|
+
|
|
239
|
+
/* P4.92 (2026-05-17) — bus-chip-listeners · live subscriber count on bus.
|
|
240
|
+
* 复利 P4.91 bus-chip-ring 的同表面同语言:第二条 0-click runtime 字段。
|
|
241
|
+
* BusStatus.listenerCount 自 Phase 1.5b 起即存在 (host.ts:309-319 status())
|
|
242
|
+
* 但 4 周来同样只藏在 chip title tooltip 里 (`Bus: 20 plugin · 0 broken · 0 listener · ring …`)
|
|
243
|
+
* 玩家必须 hover 才能看到 "现在有几个 plugin 在订阅 bus 事件"。本拍把 L<N>
|
|
244
|
+
* 紧贴在 R<N> 后面 (margin-left: 1px),让 chip 一行同时读出 ring 占用与 listener
|
|
245
|
+
* 注册两条 runtime 信号。8px / 0.42 opacity 与 ring 完全一致,视觉同档;
|
|
246
|
+
* 同色 family (bus tone) 让 R/L 读作一对 (telemetry pair) 而非两个对立维度。
|
|
247
|
+
* 不像 ring 有 `> 0` gate, L 即使 0 也渲染 — `L=0` 是有意义的状态 (bus up
|
|
248
|
+
* 但暂无订阅,玩家想看也得看见)。 */
|
|
249
|
+
.bus-chip-listeners {
|
|
250
|
+
font-size: 8px;
|
|
251
|
+
line-height: 1;
|
|
252
|
+
color: rgba(180, 200, 220, 0.92);
|
|
253
|
+
opacity: 0.42;
|
|
254
|
+
margin-left: 1px;
|
|
255
|
+
letter-spacing: 0;
|
|
256
|
+
font-variant-numeric: tabular-nums;
|
|
257
|
+
transition: opacity 140ms ease;
|
|
258
|
+
}
|
|
259
|
+
.bus-chip-ok .bus-chip-listeners { color: var(--accent-green); }
|
|
260
|
+
.bus-chip-warn .bus-chip-listeners { color: var(--accent-orange); }
|
|
261
|
+
button.bus-chip.is-link:hover .bus-chip-listeners { opacity: 0.78; }
|
|
262
|
+
.ss-body { display: flex; flex-direction: column; gap: 1px; }
|
|
263
|
+
|
|
264
|
+
.ws-active-content {
|
|
265
|
+
/* AgentsPanel / extension plugin placeholder live here; keep a real box so
|
|
266
|
+
rail-panel motion can run on extension tab switches. */
|
|
267
|
+
flex: 1 1 0;
|
|
268
|
+
min-height: 0;
|
|
269
|
+
display: flex;
|
|
270
|
+
flex-direction: column;
|
|
271
|
+
overflow: auto;
|
|
272
|
+
}
|
|
273
|
+
.ws-active-content.rail-panel {
|
|
274
|
+
position: relative;
|
|
275
|
+
will-change: opacity, transform;
|
|
276
|
+
overflow: hidden;
|
|
277
|
+
animation: ws-extension-panel-in 360ms var(--motion-ease-out) both;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
@keyframes ws-extension-panel-in {
|
|
281
|
+
from {
|
|
282
|
+
opacity: 0.72;
|
|
283
|
+
transform: translate3d(0, -6px, 0);
|
|
284
|
+
clip-path: inset(0 0 18% 0 round 8px);
|
|
285
|
+
}
|
|
286
|
+
to {
|
|
287
|
+
opacity: 1;
|
|
288
|
+
transform: translate3d(0, 0, 0);
|
|
289
|
+
clip-path: inset(0 0 0 0 round 0);
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.ws-active-content.rail-panel > * {
|
|
294
|
+
position: relative;
|
|
295
|
+
z-index: 1;
|
|
296
|
+
animation: ws-extension-flow-in 520ms var(--motion-ease-out) both;
|
|
297
|
+
}
|
|
298
|
+
.ws-active-content.rail-panel > *:nth-child(1) { animation-delay: 0ms; }
|
|
299
|
+
.ws-active-content.rail-panel > *:nth-child(2) { animation-delay: 45ms; }
|
|
300
|
+
.ws-active-content.rail-panel > *:nth-child(3) { animation-delay: 90ms; }
|
|
301
|
+
.ws-active-content.rail-panel > *:nth-child(4) { animation-delay: 135ms; }
|
|
302
|
+
.ws-active-content.rail-panel > *:nth-child(5) { animation-delay: 180ms; }
|
|
303
|
+
.ws-active-content.rail-panel > *:nth-child(n + 6) { animation-delay: 225ms; }
|
|
304
|
+
|
|
305
|
+
@keyframes ws-extension-flow-in {
|
|
306
|
+
from {
|
|
307
|
+
opacity: 0;
|
|
308
|
+
filter: blur(5px);
|
|
309
|
+
transform: translate3d(0, -12px, 0) scale(0.992);
|
|
310
|
+
}
|
|
311
|
+
to {
|
|
312
|
+
opacity: 1;
|
|
313
|
+
filter: blur(0);
|
|
314
|
+
transform: translate3d(0, 0, 0);
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
/* AgentsPanel — agent 列表 */
|
|
319
|
+
.agents-panel {
|
|
320
|
+
display: flex; flex-direction: column; gap: 4px;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
/* P2.6c — show split between marketplace agents and bus-sourced agents.
|
|
324
|
+
* Header sits above all cards; divider separates bus-only cards when bus
|
|
325
|
+
* lists agents missing from marketplace.json. */
|
|
326
|
+
.ap-header {
|
|
327
|
+
display: flex; align-items: center; justify-content: space-between;
|
|
328
|
+
padding: 2px 2px 4px 2px;
|
|
329
|
+
font-size: 9px;
|
|
330
|
+
color: var(--text-muted);
|
|
331
|
+
border-bottom: 1px dashed rgba(255,255,255,0.06);
|
|
332
|
+
margin-bottom: 2px;
|
|
333
|
+
}
|
|
334
|
+
.ap-h-label { letter-spacing: 0.6px; font-weight: 600; }
|
|
335
|
+
.ap-h-count { display: inline-flex; gap: 4px; align-items: center; }
|
|
336
|
+
.ap-h-pill {
|
|
337
|
+
font-size: 9px;
|
|
338
|
+
padding: 1px 5px;
|
|
339
|
+
border-radius: var(--radius-pill);
|
|
340
|
+
background: rgba(255,255,255,0.05);
|
|
341
|
+
}
|
|
342
|
+
.ap-h-pill.mkt { color: var(--text-secondary); }
|
|
343
|
+
.ap-h-pill.bus {
|
|
344
|
+
color: var(--color-kind-cli-provider);
|
|
345
|
+
background: rgba(109,211,255,0.10);
|
|
346
|
+
}
|
|
347
|
+
/* ── P4.47 ap-h-pill.total — Σ {totalVisible} prefix capsule. Sister of
|
|
348
|
+
* AgentsHub P4.45 .ah-pill-total + .ah-pill-vsep. Reads "actual number
|
|
349
|
+
* of agent cards rendered" so player no longer mentally adds marketplace
|
|
350
|
+
* + bus-only. Amber 1×10px vsep separates "total" from "source split".
|
|
351
|
+
*/
|
|
352
|
+
.ap-h-pill.total {
|
|
353
|
+
display: inline-flex;
|
|
354
|
+
align-items: baseline;
|
|
355
|
+
gap: 3px;
|
|
356
|
+
color: var(--color-status-amber);
|
|
357
|
+
background: rgba(245,197,88,0.08);
|
|
358
|
+
border: 1px solid rgba(245,197,88,0.32);
|
|
359
|
+
padding: 1px 6px;
|
|
360
|
+
font-variant-numeric: tabular-nums;
|
|
361
|
+
font-weight: 600;
|
|
362
|
+
}
|
|
363
|
+
.ap-h-sigma {
|
|
364
|
+
font-size: 9px;
|
|
365
|
+
color: rgba(245,197,88,0.78);
|
|
366
|
+
line-height: 1;
|
|
367
|
+
}
|
|
368
|
+
.ap-h-total-n {
|
|
369
|
+
font-size: 10px;
|
|
370
|
+
color: var(--color-status-amber);
|
|
371
|
+
line-height: 1;
|
|
372
|
+
}
|
|
373
|
+
.ap-h-vsep {
|
|
374
|
+
display: inline-block;
|
|
375
|
+
width: 1px;
|
|
376
|
+
height: 10px;
|
|
377
|
+
background: rgba(245,197,88,0.32);
|
|
378
|
+
margin: 0 1px;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
/* P-session-scoped — slim hint strip below header when the active thread has
|
|
382
|
+
not yet launched any sub-agents. Avoids panic / blank-state. */
|
|
383
|
+
.ap-session-hint {
|
|
384
|
+
font-size: 10.5px;
|
|
385
|
+
color: var(--text-mute);
|
|
386
|
+
background: color-mix(in srgb, var(--primary) 6%, transparent);
|
|
387
|
+
border-bottom: 1px solid color-mix(in srgb, var(--primary) 18%, transparent);
|
|
388
|
+
padding: 5px 10px;
|
|
389
|
+
line-height: 1.35;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
/* P-session-scoped — view-mode toggle (本 session / 全部) sitting in ap-header
|
|
393
|
+
between the AGENTS label and the count pill. Two tiny tab buttons sharing
|
|
394
|
+
one pill background for tight visual grouping. */
|
|
395
|
+
.ap-h-mode {
|
|
396
|
+
display: inline-flex;
|
|
397
|
+
align-items: center;
|
|
398
|
+
background: rgba(255, 255, 255, 0.03);
|
|
399
|
+
border: 1px solid var(--color-border-default);
|
|
400
|
+
border-radius: 999px;
|
|
401
|
+
padding: 1px;
|
|
402
|
+
margin: 0 6px;
|
|
403
|
+
gap: 1px;
|
|
404
|
+
}
|
|
405
|
+
.ap-h-mode-tab {
|
|
406
|
+
background: transparent;
|
|
407
|
+
border: none;
|
|
408
|
+
color: var(--text-mute);
|
|
409
|
+
font-size: 10px;
|
|
410
|
+
padding: 2px 7px;
|
|
411
|
+
border-radius: 999px;
|
|
412
|
+
cursor: pointer;
|
|
413
|
+
transition: color 100ms, background 100ms;
|
|
414
|
+
font-family: inherit;
|
|
415
|
+
letter-spacing: 0.2px;
|
|
416
|
+
line-height: 1;
|
|
417
|
+
}
|
|
418
|
+
.ap-h-mode-tab:hover { color: var(--text); }
|
|
419
|
+
.ap-h-mode-tab.is-active {
|
|
420
|
+
background: color-mix(in srgb, var(--primary) 18%, var(--color-background-elevated));
|
|
421
|
+
color: var(--primary);
|
|
422
|
+
font-weight: 600;
|
|
423
|
+
box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--primary) 40%, transparent);
|
|
424
|
+
}
|
|
425
|
+
.ap-divider {
|
|
426
|
+
font-size: 9px;
|
|
427
|
+
color: var(--color-kind-cli-provider);
|
|
428
|
+
padding: 4px 2px 2px 2px;
|
|
429
|
+
border-top: 1px dashed rgba(109,211,255,0.18);
|
|
430
|
+
margin-top: 4px;
|
|
431
|
+
letter-spacing: 0.4px;
|
|
432
|
+
}
|
|
433
|
+
/* ── P4.0 ap-tribes — role-tribe legend strip below the mkt/bus pills. ──
|
|
434
|
+
* One chip per tribe with ≥ 1 agent. Click jumps focus to first agent of
|
|
435
|
+
* that tribe and flashes the row. Palette is the existing 6-tribe family
|
|
436
|
+
* pinned on .ac-role-dot (Sidebar.css P3.8 above and Dashboard.css P3.35).
|
|
437
|
+
*/
|
|
438
|
+
.ap-tribes {
|
|
439
|
+
display: flex; align-items: center; flex-wrap: wrap; gap: 4px;
|
|
440
|
+
padding: 4px 2px 4px 2px;
|
|
441
|
+
border-bottom: 1px dashed rgba(255,255,255,0.05);
|
|
442
|
+
margin-bottom: 2px;
|
|
443
|
+
}
|
|
444
|
+
.ap-tribes-label {
|
|
445
|
+
font-size: 8.5px;
|
|
446
|
+
letter-spacing: 0.6px;
|
|
447
|
+
font-weight: 600;
|
|
448
|
+
color: var(--text-muted);
|
|
449
|
+
padding-right: 2px;
|
|
450
|
+
}
|
|
451
|
+
.ap-tribe-chip {
|
|
452
|
+
display: inline-flex; align-items: center; gap: 3px;
|
|
453
|
+
font-size: 9px;
|
|
454
|
+
padding: 1px 5px;
|
|
455
|
+
border-radius: var(--radius-pill);
|
|
456
|
+
background: rgba(255,255,255,0.04);
|
|
457
|
+
border: 1px solid rgba(255,255,255,0.06);
|
|
458
|
+
color: var(--text-secondary);
|
|
459
|
+
cursor: pointer;
|
|
460
|
+
user-select: none;
|
|
461
|
+
transition: background 120ms ease, border-color 120ms ease, transform 120ms ease, box-shadow 120ms ease;
|
|
462
|
+
font-family: inherit;
|
|
463
|
+
}
|
|
464
|
+
.ap-tribe-chip:hover { transform: translateY(-0.5px); }
|
|
465
|
+
.ap-tribe-chip:active { transform: translateY(0.5px); }
|
|
466
|
+
.ap-tribe-chip:focus-visible { outline: none; }
|
|
467
|
+
.ap-tribe-dot {
|
|
468
|
+
width: 6px; height: 6px; border-radius: 50%;
|
|
469
|
+
display: inline-block;
|
|
470
|
+
}
|
|
471
|
+
.ap-tribe-label { font-weight: 600; letter-spacing: 0.3px; }
|
|
472
|
+
.ap-tribe-count {
|
|
473
|
+
font-variant-numeric: tabular-nums;
|
|
474
|
+
color: var(--text-muted);
|
|
475
|
+
}
|
|
476
|
+
/* Tribe-specific chip tints — dot + hover bg/border/glow + count emphasis. */
|
|
477
|
+
.ap-tribe-chip.r-orchestrator:hover { background: rgba(196,163,255,0.13); border-color: rgba(196,163,255,0.48); box-shadow: none; }
|
|
478
|
+
.ap-tribe-chip.r-orchestrator:focus-visible { box-shadow: 0 0 0 2px rgba(196,163,255,0.55); }
|
|
479
|
+
.ap-tribe-dot.r-orchestrator { background: var(--color-role-orchestrator); box-shadow: none; }
|
|
480
|
+
.ap-tribe-chip.r-pillar:hover { background: rgba(212,255,72,0.13); border-color: rgba(212,255,72,0.48); box-shadow: none; }
|
|
481
|
+
.ap-tribe-chip.r-pillar:focus-visible { box-shadow: 0 0 0 2px rgba(212,255,72,0.55); }
|
|
482
|
+
.ap-tribe-dot.r-pillar { background: var(--primary); box-shadow: none; }
|
|
483
|
+
.ap-tribe-chip.r-design:hover { background: rgba(255,109,181,0.13); border-color: rgba(255,109,181,0.48); box-shadow: none; }
|
|
484
|
+
.ap-tribe-chip.r-design:focus-visible { box-shadow: 0 0 0 2px rgba(255,109,181,0.55); }
|
|
485
|
+
.ap-tribe-dot.r-design { background: var(--color-role-design); box-shadow: none; }
|
|
486
|
+
.ap-tribe-chip.r-narrative:hover { background: rgba(255,200,120,0.13); border-color: rgba(255,200,120,0.48); box-shadow: none; }
|
|
487
|
+
.ap-tribe-chip.r-narrative:focus-visible { box-shadow: 0 0 0 2px rgba(255,200,120,0.55); }
|
|
488
|
+
.ap-tribe-dot.r-narrative { background: var(--color-role-narrative); box-shadow: none; }
|
|
489
|
+
.ap-tribe-chip.r-art:hover { background: rgba(125,211,252,0.13); border-color: rgba(125,211,252,0.48); box-shadow: none; }
|
|
490
|
+
.ap-tribe-chip.r-art:focus-visible { box-shadow: 0 0 0 2px rgba(125,211,252,0.55); }
|
|
491
|
+
.ap-tribe-dot.r-art { background: var(--color-role-art); box-shadow: none; }
|
|
492
|
+
.ap-tribe-chip.r-coding:hover { background: rgba(255,140,66,0.13); border-color: rgba(255,140,66,0.48); box-shadow: none; }
|
|
493
|
+
.ap-tribe-chip.r-coding:focus-visible { box-shadow: 0 0 0 2px rgba(255,140,66,0.55); }
|
|
494
|
+
.ap-tribe-dot.r-coding { background: var(--color-role-coding); box-shadow: none; }
|
|
495
|
+
.ac-bus-pill {
|
|
496
|
+
font-size: 8px;
|
|
497
|
+
padding: 1px 4px;
|
|
498
|
+
border-radius: var(--radius-pill);
|
|
499
|
+
background: rgba(109,211,255,0.12);
|
|
500
|
+
color: var(--color-kind-cli-provider);
|
|
501
|
+
font-weight: 600;
|
|
502
|
+
letter-spacing: 0.4px;
|
|
503
|
+
}
|
|
504
|
+
.ac-bus-pill.bus-only {
|
|
505
|
+
background: rgba(109,211,255,0.20);
|
|
506
|
+
}
|
|
507
|
+
/*
|
|
508
|
+
* P3.32 — bus pill is now a deep-link into Bus admin tab + auto-expand row.
|
|
509
|
+
* .is-link variant (always set when click handler is wired — every AgentsPanel
|
|
510
|
+
* bus pill carries this class) adds cursor:pointer + border + lift hover/focus
|
|
511
|
+
* states so the player can tell it's interactive vs the static pill in older
|
|
512
|
+
* surfaces. Colors come from the same #6dd3ff (sky-blue) family as ac-bus-pill
|
|
513
|
+
* base and ac-bus-pill.bus-only, so the new affordance reads as "same pill,
|
|
514
|
+
* now clickable" rather than introducing a new color token.
|
|
515
|
+
*/
|
|
516
|
+
.ac-bus-pill.is-link {
|
|
517
|
+
cursor: pointer;
|
|
518
|
+
border: 1px solid rgba(109,211,255,0.32);
|
|
519
|
+
transition: background 120ms ease, box-shadow 120ms ease, border-color 120ms ease, transform 120ms ease;
|
|
520
|
+
user-select: none;
|
|
521
|
+
}
|
|
522
|
+
.ac-bus-pill.is-link:hover {
|
|
523
|
+
background: rgba(109,211,255,0.28);
|
|
524
|
+
border-color: rgba(109,211,255,0.55);
|
|
525
|
+
box-shadow: 0 0 0 1px rgba(109,211,255,0.18);
|
|
526
|
+
transform: translateY(-0.5px);
|
|
527
|
+
}
|
|
528
|
+
.ac-bus-pill.is-link:focus-visible {
|
|
529
|
+
outline: none;
|
|
530
|
+
box-shadow: 0 0 0 2px rgba(109,211,255,0.55);
|
|
531
|
+
}
|
|
532
|
+
.ac-bus-pill.is-link:active {
|
|
533
|
+
transform: translateY(0.5px);
|
|
534
|
+
background: rgba(109,211,255,0.36);
|
|
535
|
+
}
|
|
536
|
+
.agent-card.has-bus { border-left: 2px solid rgba(109,211,255,0.32); padding-left: 4px; }
|
|
537
|
+
.agent-card.bus-only {
|
|
538
|
+
background: rgba(109,211,255,0.04);
|
|
539
|
+
border-color: rgba(109,211,255,0.18);
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
.agent-card {
|
|
543
|
+
background: rgba(255,255,255,0.02);
|
|
544
|
+
border: 1px solid rgba(255,255,255,0.06);
|
|
545
|
+
border-radius: 5px;
|
|
546
|
+
padding: 5px 6px;
|
|
547
|
+
}
|
|
548
|
+
.agent-card.selected {
|
|
549
|
+
background: rgba(212,255,72,0.06);
|
|
550
|
+
border-left: 2px solid var(--primary);
|
|
551
|
+
padding-left: 4px;
|
|
552
|
+
}
|
|
553
|
+
.agent-card.sub {
|
|
554
|
+
margin-left: 0;
|
|
555
|
+
}
|
|
556
|
+
/* Placeholder agents (manifest status: 'placeholder') aren't wired into the
|
|
557
|
+
* runtime yet — dim them so users can scan past at a glance and focus on
|
|
558
|
+
* the active ones. The "· 占位" suffix in ac-role stays for explicit signal. */
|
|
559
|
+
.agent-card.placeholder { opacity: 0.55; }
|
|
560
|
+
.agent-card.placeholder.selected { opacity: 1; }
|
|
561
|
+
|
|
562
|
+
/* P3.33 — transient flash highlight applied for ~1.5s when player jumps in
|
|
563
|
+
* from BusAdminPanel "← Sidebar" reverse deep-link. Uses the same sky-blue
|
|
564
|
+
* (#6dd3ff) family as .ac-bus-pill.is-link so the visual association reads
|
|
565
|
+
* as "this is the bus-marked surface I just navigated from". Two-phase
|
|
566
|
+
* keyframe pulses brighter at 50% and decays back, giving the player a
|
|
567
|
+
* peripheral motion cue even if the card was already in view (no scroll). */
|
|
568
|
+
.agent-card.is-flash {
|
|
569
|
+
animation: ac-flash 1.5s ease-out;
|
|
570
|
+
}
|
|
571
|
+
@keyframes ac-flash {
|
|
572
|
+
0% { background: rgba(255,255,255,0.02); box-shadow: none; }
|
|
573
|
+
20% { background: rgba(109,211,255,0.18); box-shadow: 0 0 0 1px rgba(109,211,255,0.55); }
|
|
574
|
+
60% { background: rgba(109,211,255,0.10); box-shadow: 0 0 0 1px rgba(109,211,255,0.32); }
|
|
575
|
+
100% { background: rgba(255,255,255,0.02); box-shadow: none; }
|
|
576
|
+
}
|
|
577
|
+
.agent-card.placeholder.is-flash { opacity: 1; }
|
|
578
|
+
.ac-row {
|
|
579
|
+
width: 100%;
|
|
580
|
+
display: flex; align-items: center; gap: 6px;
|
|
581
|
+
background: transparent; border: none; cursor: pointer;
|
|
582
|
+
padding: 0; text-align: left;
|
|
583
|
+
}
|
|
584
|
+
/* P3.52 — focus ring matches .ws-icon-btn:focus-visible (P3.51) so the
|
|
585
|
+
* Sidebar's extension tab strip and AGENTS listbox share one visual contract
|
|
586
|
+
* for arrow-key focus. */
|
|
587
|
+
.ac-row:focus-visible {
|
|
588
|
+
outline: 2px solid rgba(255,255,255,0.55);
|
|
589
|
+
outline-offset: -2px;
|
|
590
|
+
border-radius: 4px;
|
|
591
|
+
}
|
|
592
|
+
.ac-avatar {
|
|
593
|
+
width: 32px; height: 32px;
|
|
594
|
+
border-radius: 50%;
|
|
595
|
+
color: var(--prim-color-neutral-950);
|
|
596
|
+
font-size: 13px;
|
|
597
|
+
font-weight: 700;
|
|
598
|
+
display: inline-flex; align-items: center; justify-content: center;
|
|
599
|
+
flex-shrink: 0;
|
|
600
|
+
}
|
|
601
|
+
.ac-name-block {
|
|
602
|
+
flex: 1; min-width: 0;
|
|
603
|
+
display: flex; flex-direction: column;
|
|
604
|
+
line-height: 1.2;
|
|
605
|
+
}
|
|
606
|
+
.ac-name {
|
|
607
|
+
font-size: 12px; font-weight: 600; color: var(--text-primary);
|
|
608
|
+
overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
|
|
609
|
+
}
|
|
610
|
+
/* P4.50 — main-agent pin glyph rendered only on cards where the manifest
|
|
611
|
+
* sets isMain:true (one orchestrator in marketplace.json today). The ★
|
|
612
|
+
* sits as an inline span inside .ac-name so the ellipsis truncates the
|
|
613
|
+
* trailing name text when the column narrows — the pin never gets clipped,
|
|
614
|
+
* which is the whole point of marking the orchestrator. Color uses the
|
|
615
|
+
* orchestrator role-dot hue (#c4a3ff) so the visual link to the existing
|
|
616
|
+
* data-role="orchestrator" palette reads as one family rather than a new
|
|
617
|
+
* token. tabular padding is 0 — ★ optical width already feels balanced.
|
|
618
|
+
*
|
|
619
|
+
* Hover lifts the pin from 0.78 → 1.0 alpha + adds a soft 4px violet glow
|
|
620
|
+
* so when the player hovers the row the pin pulses subtly, reinforcing
|
|
621
|
+
* "this is the special one" without animation noise on the default state. */
|
|
622
|
+
.ac-main-pin {
|
|
623
|
+
display: inline-block;
|
|
624
|
+
color: var(--color-role-orchestrator);
|
|
625
|
+
opacity: 0.78;
|
|
626
|
+
font-size: 10px;
|
|
627
|
+
line-height: 1;
|
|
628
|
+
margin-right: 4px;
|
|
629
|
+
vertical-align: 1px;
|
|
630
|
+
text-shadow: 0 0 0 transparent;
|
|
631
|
+
transition: opacity 120ms ease, text-shadow 120ms ease;
|
|
632
|
+
cursor: help;
|
|
633
|
+
}
|
|
634
|
+
.agent-card:hover .ac-main-pin,
|
|
635
|
+
.agent-card.selected .ac-main-pin {
|
|
636
|
+
opacity: 1;
|
|
637
|
+
text-shadow: 0 0 4px rgba(196, 163, 255, 0.55);
|
|
638
|
+
}
|
|
639
|
+
.ac-role {
|
|
640
|
+
font-size: 9px; color: var(--text-muted); font-weight: 400;
|
|
641
|
+
display: inline-flex; align-items: center;
|
|
642
|
+
}
|
|
643
|
+
/* P3.8 — role-tribe colored dot in front of role text. Six marketplace+bus
|
|
644
|
+
* role keys today (orchestrator/pillar/design/narrative/art/coding) each get
|
|
645
|
+
* a stable hue so the AGENTS column reads as a colored ladder. Colors reuse
|
|
646
|
+
* the established forgeax palette (lime/violet/sky-blue from BusAdminPanel
|
|
647
|
+
* kind chips; amber/pink/orange round out the 6-way axis). Unknown roles
|
|
648
|
+
* fall through to a low-contrast neutral.
|
|
649
|
+
*
|
|
650
|
+
* Why a dot and not a left border: the card already uses left-border for
|
|
651
|
+
* (a) `.has-bus` sky-blue accent and (b) `.selected` lime accent — adding a
|
|
652
|
+
* third role-driven border would overwrite either depending on state. A dot
|
|
653
|
+
* sits inside .ac-role so it stacks with both without conflict.
|
|
654
|
+
*/
|
|
655
|
+
.ac-role-dot {
|
|
656
|
+
display: inline-block;
|
|
657
|
+
width: 5px; height: 5px;
|
|
658
|
+
border-radius: 50%;
|
|
659
|
+
margin-right: 4px;
|
|
660
|
+
background: rgba(255,255,255,0.20);
|
|
661
|
+
flex-shrink: 0;
|
|
662
|
+
}
|
|
663
|
+
.agent-card[data-role="orchestrator"] .ac-role-dot { background: var(--color-role-orchestrator); }
|
|
664
|
+
.agent-card[data-role="pillar"] .ac-role-dot { background: var(--primary); }
|
|
665
|
+
.agent-card[data-role="design"] .ac-role-dot { background: var(--color-role-design); }
|
|
666
|
+
.agent-card[data-role="narrative"] .ac-role-dot { background: var(--color-role-narrative); }
|
|
667
|
+
.agent-card[data-role="art"] .ac-role-dot { background: var(--color-role-art); }
|
|
668
|
+
.agent-card[data-role="coding"] .ac-role-dot { background: var(--color-role-coding); }
|
|
669
|
+
/* P2.7c — agents_from_bus[].produces[] 在 role 行下方常驻 mini-strip。
|
|
670
|
+
* 用同色系蓝色 (#6dd3ff) 跟 ac-bus-pill 视觉锚定,等宽字体让 *.ts/*.tsx
|
|
671
|
+
* 看起来像 code chip 而不是普通文本;ellipsis 兜底卡片窄到放不下 6 glob。
|
|
672
|
+
*/
|
|
673
|
+
.ac-produces {
|
|
674
|
+
font-family: var(--font-mono);
|
|
675
|
+
font-size: 9px;
|
|
676
|
+
color: rgba(109,211,255,0.78);
|
|
677
|
+
font-weight: 500;
|
|
678
|
+
letter-spacing: 0.1px;
|
|
679
|
+
margin-top: 1px;
|
|
680
|
+
overflow: hidden;
|
|
681
|
+
text-overflow: ellipsis;
|
|
682
|
+
white-space: nowrap;
|
|
683
|
+
}
|
|
684
|
+
.ac-badge {
|
|
685
|
+
font-size: 9px;
|
|
686
|
+
color: var(--text-muted);
|
|
687
|
+
background: rgba(255,255,255,0.08);
|
|
688
|
+
padding: 1px 5px;
|
|
689
|
+
border-radius: var(--radius-pill);
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
.ac-files {
|
|
693
|
+
margin-top: 4px; padding-left: 26px;
|
|
694
|
+
display: flex; flex-direction: column; gap: 1px;
|
|
695
|
+
}
|
|
696
|
+
.ac-file {
|
|
697
|
+
width: 100%;
|
|
698
|
+
display: flex; align-items: center; gap: 6px;
|
|
699
|
+
font-size: 11px;
|
|
700
|
+
color: var(--text-secondary);
|
|
701
|
+
padding: 2px 6px;
|
|
702
|
+
cursor: pointer;
|
|
703
|
+
background: transparent;
|
|
704
|
+
border: none;
|
|
705
|
+
border-radius: 4px;
|
|
706
|
+
text-align: left;
|
|
707
|
+
font-family: inherit;
|
|
708
|
+
}
|
|
709
|
+
.ac-file:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); }
|
|
710
|
+
.ac-file.active { color: var(--text-primary); background: rgba(212,255,72,0.08); }
|
|
711
|
+
.ac-fi { font-size: 10px; }
|
|
712
|
+
.ac-fn { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
713
|
+
.ac-fs { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
|
|
714
|
+
.ac-fs.done { background: var(--accent-green); }
|
|
715
|
+
.ac-fs.running { background: var(--accent-orange); animation: pulse 1.5s infinite; }
|
|
716
|
+
.ac-fs.pending { background: var(--accent-cyan); }
|
|
717
|
+
.ac-fs.error { background: var(--accent-error); }
|
|
718
|
+
|
|
719
|
+
@keyframes pulse {
|
|
720
|
+
0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
|
|
721
|
+
50% { box-shadow: 0 0 0 4px rgba(255, 107, 53, 0); }
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
/* === FilesPanel — VSCode 风文件树 === */
|
|
725
|
+
.files-panel {
|
|
726
|
+
display: flex; flex-direction: column;
|
|
727
|
+
gap: 0;
|
|
728
|
+
}
|
|
729
|
+
.fp-header {
|
|
730
|
+
padding: 4px 6px 2px 6px;
|
|
731
|
+
font-size: 10px;
|
|
732
|
+
color: var(--text-muted);
|
|
733
|
+
}
|
|
734
|
+
.fp-slug {
|
|
735
|
+
font-family: var(--mono, var(--font-mono));
|
|
736
|
+
letter-spacing: 0.3px;
|
|
737
|
+
}
|
|
738
|
+
.fp-empty {
|
|
739
|
+
padding: 8px 6px;
|
|
740
|
+
font-size: 11px;
|
|
741
|
+
color: var(--text-muted);
|
|
742
|
+
}
|
|
743
|
+
/* ── fp-types — shared ten-family file taxonomy legend below fp-header.
|
|
744
|
+
* Family identity comes from file-family.ts; visual identity comes from the
|
|
745
|
+
* --fx-family-* token and is shared with chat asset references.
|
|
746
|
+
*/
|
|
747
|
+
.fp-types {
|
|
748
|
+
display: flex; align-items: center; flex-wrap: wrap; gap: 4px;
|
|
749
|
+
padding: 4px 6px 5px 6px;
|
|
750
|
+
border-bottom: 1px dashed rgba(255,255,255,0.05);
|
|
751
|
+
margin-bottom: 2px;
|
|
752
|
+
}
|
|
753
|
+
.fp-types-label {
|
|
754
|
+
font-size: 8.5px;
|
|
755
|
+
letter-spacing: 0.6px;
|
|
756
|
+
font-weight: 600;
|
|
757
|
+
color: var(--text-muted);
|
|
758
|
+
padding-right: 2px;
|
|
759
|
+
}
|
|
760
|
+
.fp-type-chip {
|
|
761
|
+
display: inline-flex; align-items: center; gap: 3px;
|
|
762
|
+
font-size: 9px;
|
|
763
|
+
padding: 1px 5px;
|
|
764
|
+
border-radius: var(--radius-pill);
|
|
765
|
+
background: rgba(255,255,255,0.04);
|
|
766
|
+
border: 1px solid rgba(255,255,255,0.06);
|
|
767
|
+
color: var(--text-secondary);
|
|
768
|
+
cursor: pointer;
|
|
769
|
+
user-select: none;
|
|
770
|
+
transition: background 120ms ease, border-color 120ms ease, transform 120ms ease, box-shadow 120ms ease, color 120ms ease;
|
|
771
|
+
font-family: inherit;
|
|
772
|
+
}
|
|
773
|
+
.fp-type-chip:hover { transform: translateY(-0.5px); color: rgba(255,255,255,0.95); }
|
|
774
|
+
.fp-type-chip:active { transform: translateY(0.5px); }
|
|
775
|
+
.fp-type-chip:focus-visible { outline: none; }
|
|
776
|
+
.fp-type-chip:disabled { opacity: 0.35; cursor: not-allowed; }
|
|
777
|
+
.fp-type-dot {
|
|
778
|
+
width: 6px; height: 6px; border-radius: 50%;
|
|
779
|
+
display: inline-block;
|
|
780
|
+
}
|
|
781
|
+
.fp-type-label { font-weight: 600; letter-spacing: 0.3px; }
|
|
782
|
+
.fp-type-count {
|
|
783
|
+
font-variant-numeric: tabular-nums;
|
|
784
|
+
color: var(--text-muted);
|
|
785
|
+
}
|
|
786
|
+
/* P4.49 — Σ total prefix composite (matches BusHealthLamp / AgentsHub /
|
|
787
|
+
* AgentsPanel / WbGallery / BusAdminPanel sibling surfaces). The total
|
|
788
|
+
* cell is now `[vsep] [Σ] [N]` instead of the stale `= N` prefix. The
|
|
789
|
+
* 1×9px amber vsep separates "总量" from the per-family chips to the
|
|
790
|
+
* left, same visual grammar the other 5 surfaces share. Σ sits at
|
|
791
|
+
* 9px 0.72 alpha currentColor, the count at 9.5px tabular-nums for
|
|
792
|
+
* digit alignment when total crosses 10/100/1000 boundaries. */
|
|
793
|
+
.fp-types-total {
|
|
794
|
+
display: inline-flex;
|
|
795
|
+
align-items: center;
|
|
796
|
+
gap: 3px;
|
|
797
|
+
margin-left: auto;
|
|
798
|
+
font-variant-numeric: tabular-nums;
|
|
799
|
+
color: var(--text-muted);
|
|
800
|
+
letter-spacing: 0.3px;
|
|
801
|
+
padding-left: 1px;
|
|
802
|
+
}
|
|
803
|
+
.fp-types-vsep {
|
|
804
|
+
width: 1px;
|
|
805
|
+
height: 9px;
|
|
806
|
+
background: rgba(245,197,88,0.32);
|
|
807
|
+
display: inline-block;
|
|
808
|
+
margin-right: 1px;
|
|
809
|
+
}
|
|
810
|
+
.fp-types-sigma {
|
|
811
|
+
font-size: 9px;
|
|
812
|
+
opacity: 0.72;
|
|
813
|
+
color: currentColor;
|
|
814
|
+
font-variant-numeric: tabular-nums;
|
|
815
|
+
letter-spacing: 0;
|
|
816
|
+
margin-right: -1px;
|
|
817
|
+
}
|
|
818
|
+
.fp-types-total-n {
|
|
819
|
+
font-size: 9.5px;
|
|
820
|
+
font-weight: 600;
|
|
821
|
+
color: rgba(255,255,255,0.85);
|
|
822
|
+
font-variant-numeric: tabular-nums;
|
|
823
|
+
}
|
|
824
|
+
/* Family palettes — one token per taxonomy key, shared by dots, rows, and
|
|
825
|
+
* interaction states. */
|
|
826
|
+
.fp-type-chip,
|
|
827
|
+
.fp-row.file {
|
|
828
|
+
--fp-family-color: var(--fx-family-data);
|
|
829
|
+
}
|
|
830
|
+
.fp-type-chip.fam-code, .fp-row.file.fam-code { --fp-family-color: var(--fx-family-code); }
|
|
831
|
+
.fp-type-chip.fam-config, .fp-row.file.fam-config { --fp-family-color: var(--fx-family-config); }
|
|
832
|
+
.fp-type-chip.fam-doc, .fp-row.file.fam-doc { --fp-family-color: var(--fx-family-doc); }
|
|
833
|
+
.fp-type-chip.fam-scene, .fp-row.file.fam-scene { --fp-family-color: var(--fx-family-scene); }
|
|
834
|
+
.fp-type-chip.fam-pack, .fp-row.file.fam-pack { --fp-family-color: var(--fx-family-pack); }
|
|
835
|
+
.fp-type-chip.fam-meta, .fp-row.file.fam-meta { --fp-family-color: var(--fx-family-meta); }
|
|
836
|
+
.fp-type-chip.fam-image, .fp-row.file.fam-image { --fp-family-color: var(--fx-family-image); }
|
|
837
|
+
.fp-type-chip.fam-audio, .fp-row.file.fam-audio { --fp-family-color: var(--fx-family-audio); }
|
|
838
|
+
.fp-type-chip.fam-model, .fp-row.file.fam-model { --fp-family-color: var(--fx-family-model); }
|
|
839
|
+
.fp-type-chip.fam-data, .fp-row.file.fam-data { --fp-family-color: var(--fx-family-data); }
|
|
840
|
+
.fp-type-dot { background: var(--fp-family-color, var(--fx-family-data)); }
|
|
841
|
+
.fp-type-chip:hover {
|
|
842
|
+
background: color-mix(in srgb, var(--fp-family-color) 13%, transparent);
|
|
843
|
+
border-color: color-mix(in srgb, var(--fp-family-color) 48%, transparent);
|
|
844
|
+
box-shadow: none;
|
|
845
|
+
}
|
|
846
|
+
.fp-type-chip:focus-visible {
|
|
847
|
+
box-shadow: 0 0 0 2px color-mix(in srgb, var(--fp-family-color) 55%, transparent);
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
/* fp-row.file flash ring — used when a fp-types chip click jumps to the
|
|
851
|
+
* first file of that family. Transient (1.5s) and family-tinted: the
|
|
852
|
+
* ring color matches the chip dot, so the eye can connect chip → row
|
|
853
|
+
* even before the scroll-into-view completes.
|
|
854
|
+
*/
|
|
855
|
+
.fp-row.file.is-flash { animation: fp-row-flash 1.5s ease-out 1; }
|
|
856
|
+
@keyframes fp-row-flash {
|
|
857
|
+
0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.55); background: rgba(255,255,255,0.10); }
|
|
858
|
+
35% { box-shadow: 0 0 0 3px rgba(255,255,255,0.18); background: rgba(255,255,255,0.05); }
|
|
859
|
+
100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); background: transparent; }
|
|
860
|
+
}
|
|
861
|
+
@keyframes fp-row-flash {
|
|
862
|
+
0% {
|
|
863
|
+
box-shadow: 0 0 0 0 color-mix(in srgb, var(--fp-family-color) 65%, transparent);
|
|
864
|
+
background: color-mix(in srgb, var(--fp-family-color) 16%, transparent);
|
|
865
|
+
}
|
|
866
|
+
35% {
|
|
867
|
+
box-shadow: 0 0 0 3px color-mix(in srgb, var(--fp-family-color) 22%, transparent);
|
|
868
|
+
background: color-mix(in srgb, var(--fp-family-color) 7%, transparent);
|
|
869
|
+
}
|
|
870
|
+
100% {
|
|
871
|
+
box-shadow: 0 0 0 0 transparent;
|
|
872
|
+
background: transparent;
|
|
873
|
+
}
|
|
874
|
+
}
|
|
875
|
+
.fp-row {
|
|
876
|
+
width: 100%;
|
|
877
|
+
display: flex; align-items: center; gap: 4px;
|
|
878
|
+
padding: 3px 6px 3px 0;
|
|
879
|
+
border: none; background: transparent; cursor: pointer;
|
|
880
|
+
color: var(--text-secondary);
|
|
881
|
+
font-size: 12px;
|
|
882
|
+
border-radius: 3px;
|
|
883
|
+
text-align: left;
|
|
884
|
+
height: 22px;
|
|
885
|
+
white-space: nowrap;
|
|
886
|
+
overflow: hidden;
|
|
887
|
+
}
|
|
888
|
+
.fp-row:hover { background: rgba(255,255,255,0.04); color: var(--text-primary); }
|
|
889
|
+
.fp-row.active {
|
|
890
|
+
background: var(--primary-soft);
|
|
891
|
+
color: var(--text-primary);
|
|
892
|
+
}
|
|
893
|
+
.fp-row.active .fp-file-ico { color: var(--primary); }
|
|
894
|
+
|
|
895
|
+
.fp-chev {
|
|
896
|
+
width: 12px; height: 12px;
|
|
897
|
+
flex-shrink: 0;
|
|
898
|
+
display: inline-flex; align-items: center; justify-content: center;
|
|
899
|
+
color: var(--text-muted);
|
|
900
|
+
}
|
|
901
|
+
.fp-folder-ico {
|
|
902
|
+
flex-shrink: 0;
|
|
903
|
+
color: var(--accent-cyan);
|
|
904
|
+
}
|
|
905
|
+
.fp-row.dir:hover .fp-folder-ico { color: var(--secondary); }
|
|
906
|
+
.fp-file-ico {
|
|
907
|
+
flex-shrink: 0;
|
|
908
|
+
color: var(--color-icon-tertiary);
|
|
909
|
+
}
|
|
910
|
+
.fp-name {
|
|
911
|
+
flex: 1;
|
|
912
|
+
overflow: hidden; text-overflow: ellipsis;
|
|
913
|
+
}
|
|
914
|
+
.fp-dot {
|
|
915
|
+
width: 5px; height: 5px;
|
|
916
|
+
border-radius: 50%;
|
|
917
|
+
flex-shrink: 0;
|
|
918
|
+
margin-left: auto;
|
|
919
|
+
}
|
|
920
|
+
.fp-dot.done { background: var(--accent-green); }
|
|
921
|
+
.fp-dot.running { background: var(--accent-orange); animation: pulse 1.5s infinite; }
|
|
922
|
+
.fp-dot.pending { background: var(--accent-cyan); }
|
|
923
|
+
.fp-dirty {
|
|
924
|
+
font-size: 11px;
|
|
925
|
+
color: var(--accent-orange);
|
|
926
|
+
flex-shrink: 0;
|
|
927
|
+
margin-left: auto;
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
/* Tool placeholder(非 Agents tab 时) */
|
|
931
|
+
.tool-placeholder {
|
|
932
|
+
padding: 30px 12px;
|
|
933
|
+
text-align: center;
|
|
934
|
+
}
|
|
935
|
+
.tp-title {
|
|
936
|
+
color: var(--text-secondary);
|
|
937
|
+
font-size: 13px;
|
|
938
|
+
font-weight: 600;
|
|
939
|
+
margin-bottom: 4px;
|
|
940
|
+
}
|
|
941
|
+
.tp-sub {
|
|
942
|
+
color: var(--text-muted);
|
|
943
|
+
font-size: 11px;
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
/* P2.6a — richer placeholder for bus-sourced extension tabs.
|
|
947
|
+
* Replaces the legacy "Coming soon" sub with the manifest's emoji + zh
|
|
948
|
+
* description so clicking a * icon actually shows what that plugin is
|
|
949
|
+
* about. Visual delta: previously bone-empty pane → now icon + title + desc. */
|
|
950
|
+
.tool-placeholder.bus-tool {
|
|
951
|
+
text-align: left;
|
|
952
|
+
padding: 14px 4px;
|
|
953
|
+
}
|
|
954
|
+
.bus-tool-hero {
|
|
955
|
+
display: flex;
|
|
956
|
+
align-items: center;
|
|
957
|
+
gap: 10px;
|
|
958
|
+
margin-bottom: 8px;
|
|
959
|
+
}
|
|
960
|
+
.bus-tool-icon {
|
|
961
|
+
flex-shrink: 0;
|
|
962
|
+
opacity: 0.8;
|
|
963
|
+
}
|
|
964
|
+
.bus-tool-headings { display: flex; flex-direction: column; min-width: 0; }
|
|
965
|
+
.bus-tool-title {
|
|
966
|
+
color: var(--text-primary);
|
|
967
|
+
font-size: 13px;
|
|
968
|
+
font-weight: 600;
|
|
969
|
+
line-height: 1.2;
|
|
970
|
+
}
|
|
971
|
+
.bus-tool-pluginid {
|
|
972
|
+
color: var(--text-muted);
|
|
973
|
+
font-size: 10px;
|
|
974
|
+
margin-top: 2px;
|
|
975
|
+
font-family: var(--font-mono);
|
|
976
|
+
overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
|
|
977
|
+
}
|
|
978
|
+
.bus-tool-desc {
|
|
979
|
+
color: var(--text-secondary);
|
|
980
|
+
font-size: 11px;
|
|
981
|
+
line-height: 1.5;
|
|
982
|
+
margin: 6px 0 2px;
|
|
983
|
+
}
|
|
984
|
+
/* P2.7h — second-line en description rendered under .bus-tool-desc.
|
|
985
|
+
Same modular role as P2.7c/.ac-produces (Sidebar agent produces) and
|
|
986
|
+
P2.7g/.cb-cli-desc (Composer cli desc): manifest field promoted from
|
|
987
|
+
title-tooltip → default-visible mini-strip. Greyer + italic so i18n
|
|
988
|
+
readers see it but it doesn't compete with the zh line. */
|
|
989
|
+
.bus-tool-desc-en {
|
|
990
|
+
color: var(--text-muted);
|
|
991
|
+
font-size: 10px;
|
|
992
|
+
font-style: italic;
|
|
993
|
+
line-height: 1.45;
|
|
994
|
+
margin: 0 0 10px;
|
|
995
|
+
opacity: 0.85;
|
|
996
|
+
}
|
|
997
|
+
.bus-tool-meta {
|
|
998
|
+
display: flex; flex-wrap: wrap; gap: 4px;
|
|
999
|
+
}
|
|
1000
|
+
.bus-tool-tag {
|
|
1001
|
+
font-size: 9px;
|
|
1002
|
+
color: var(--text-muted);
|
|
1003
|
+
background: rgba(255,255,255,0.06);
|
|
1004
|
+
padding: 1px 6px;
|
|
1005
|
+
border-radius: var(--radius-pill);
|
|
1006
|
+
letter-spacing: 0.02em;
|
|
1007
|
+
}
|
|
1008
|
+
.bus-tool-tag.experimental {
|
|
1009
|
+
color: var(--accent-orange);
|
|
1010
|
+
background: rgba(255,107,53,0.10);
|
|
1011
|
+
}
|
|
1012
|
+
.bus-tool-tag.warn {
|
|
1013
|
+
color: var(--accent-orange);
|
|
1014
|
+
background: rgba(255,107,53,0.10);
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
/* P2.7f — meta grid + manifest path + deep-link button.
|
|
1018
|
+
* Visual goal: turn the placeholder from "emoji + a sentence + 3 tags" into
|
|
1019
|
+
* a small info card with manifest filesystem path the player can copy and a
|
|
1020
|
+
* one-click jump into BusAdminPanel detail row. */
|
|
1021
|
+
.bus-tool-grid {
|
|
1022
|
+
display: grid;
|
|
1023
|
+
grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
|
|
1024
|
+
gap: 6px;
|
|
1025
|
+
margin: 4px 0 8px;
|
|
1026
|
+
}
|
|
1027
|
+
.bus-tool-cell {
|
|
1028
|
+
background: rgba(255,255,255,0.03);
|
|
1029
|
+
border: 1px solid rgba(255,255,255,0.05);
|
|
1030
|
+
border-radius: 4px;
|
|
1031
|
+
padding: 4px 6px;
|
|
1032
|
+
min-width: 0;
|
|
1033
|
+
}
|
|
1034
|
+
.bus-tool-cell-label {
|
|
1035
|
+
font-size: 9px;
|
|
1036
|
+
text-transform: uppercase;
|
|
1037
|
+
letter-spacing: 0.05em;
|
|
1038
|
+
color: var(--text-muted);
|
|
1039
|
+
margin-bottom: 2px;
|
|
1040
|
+
}
|
|
1041
|
+
.bus-tool-cell-value {
|
|
1042
|
+
font-size: 11px;
|
|
1043
|
+
color: var(--text-primary);
|
|
1044
|
+
line-height: 1.2;
|
|
1045
|
+
overflow: hidden;
|
|
1046
|
+
text-overflow: ellipsis;
|
|
1047
|
+
white-space: nowrap;
|
|
1048
|
+
}
|
|
1049
|
+
.bus-tool-cell-value.mono {
|
|
1050
|
+
font-family: var(--font-mono);
|
|
1051
|
+
}
|
|
1052
|
+
/* Match BusAdminPanel kind colors so the player visually links the two surfaces. */
|
|
1053
|
+
.bus-tool-cell-value.k-extension { color: var(--accent-cyan); }
|
|
1054
|
+
.bus-tool-cell-value.k-agent { color: var(--accent-blue); }
|
|
1055
|
+
.bus-tool-cell-value.k-cli-provider { color: var(--color-text-primary); }
|
|
1056
|
+
.bus-tool-cell-value.k-model-binding { color: var(--color-text-primary); }
|
|
1057
|
+
.bus-tool-cell-value.k-skill { color: var(--color-text-primary); }
|
|
1058
|
+
.bus-tool-cell-value.k-tool { color: var(--color-text-primary); }
|
|
1059
|
+
|
|
1060
|
+
/* P4.98 — provides stat strip in BusPluginPlaceholder. Three colored
|
|
1061
|
+
* pills (T tools orange / E events pink / S skills purple) reuse the
|
|
1062
|
+
* BusAdminPanel .ba-prov-tag palette so the player learns one cross-
|
|
1063
|
+
* surface language: "orange = tools the AI can call, pink = events the
|
|
1064
|
+
* plugin emits, purple = chat-composer skills". Empty-state pills stay
|
|
1065
|
+
* visible at low opacity so every extension tab gets the same strip
|
|
1066
|
+
* geometry — only the highlight changes. */
|
|
1067
|
+
.bus-tool-provides {
|
|
1068
|
+
margin: 0 0 8px;
|
|
1069
|
+
}
|
|
1070
|
+
.bus-tool-provides.empty .bus-tool-cell-label {
|
|
1071
|
+
opacity: 0.6;
|
|
1072
|
+
}
|
|
1073
|
+
.bus-tool-provides-pills {
|
|
1074
|
+
display: flex;
|
|
1075
|
+
flex-wrap: wrap;
|
|
1076
|
+
gap: 4px;
|
|
1077
|
+
margin-top: 3px;
|
|
1078
|
+
}
|
|
1079
|
+
.bus-tool-prov {
|
|
1080
|
+
display: inline-flex;
|
|
1081
|
+
align-items: baseline;
|
|
1082
|
+
gap: 3px;
|
|
1083
|
+
padding: 2px 7px;
|
|
1084
|
+
font-size: 10px;
|
|
1085
|
+
font-family: var(--font-mono);
|
|
1086
|
+
font-weight: 500;
|
|
1087
|
+
line-height: 1.2;
|
|
1088
|
+
border-radius: 3px;
|
|
1089
|
+
border: 1px solid transparent;
|
|
1090
|
+
letter-spacing: 0.02em;
|
|
1091
|
+
}
|
|
1092
|
+
.bus-tool-prov b {
|
|
1093
|
+
font-weight: 700;
|
|
1094
|
+
font-size: 11px;
|
|
1095
|
+
margin: 0 1px;
|
|
1096
|
+
}
|
|
1097
|
+
.bus-tool-prov.k-tool {
|
|
1098
|
+
color: var(--color-role-coding);
|
|
1099
|
+
background: rgba(255, 140, 66, 0.14);
|
|
1100
|
+
border-color: rgba(255, 140, 66, 0.45);
|
|
1101
|
+
}
|
|
1102
|
+
.bus-tool-prov.k-event {
|
|
1103
|
+
color: var(--color-role-design);
|
|
1104
|
+
background: rgba(255, 109, 181, 0.14);
|
|
1105
|
+
border-color: rgba(255, 109, 181, 0.45);
|
|
1106
|
+
}
|
|
1107
|
+
.bus-tool-prov.k-skill {
|
|
1108
|
+
color: var(--color-text-primary);
|
|
1109
|
+
background: rgba(245, 122, 204, 0.12);
|
|
1110
|
+
border-color: rgba(245, 122, 204, 0.40);
|
|
1111
|
+
}
|
|
1112
|
+
.bus-tool-prov.muted {
|
|
1113
|
+
color: var(--text-muted);
|
|
1114
|
+
background: rgba(255, 255, 255, 0.025);
|
|
1115
|
+
border-color: rgba(255, 255, 255, 0.06);
|
|
1116
|
+
opacity: 0.55;
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
.bus-tool-manifest {
|
|
1120
|
+
background: rgba(78,205,196,0.06);
|
|
1121
|
+
border-left: 2px solid rgba(78,205,196,0.4);
|
|
1122
|
+
border-radius: 0 4px 4px 0;
|
|
1123
|
+
padding: 4px 8px;
|
|
1124
|
+
margin-bottom: 8px;
|
|
1125
|
+
}
|
|
1126
|
+
.bus-tool-manifest-path {
|
|
1127
|
+
display: block;
|
|
1128
|
+
font-family: var(--font-mono);
|
|
1129
|
+
font-size: 10px;
|
|
1130
|
+
color: var(--accent-cyan);
|
|
1131
|
+
overflow: hidden;
|
|
1132
|
+
text-overflow: ellipsis;
|
|
1133
|
+
white-space: nowrap;
|
|
1134
|
+
user-select: text;
|
|
1135
|
+
cursor: text;
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
.bus-tool-open {
|
|
1139
|
+
display: inline-flex;
|
|
1140
|
+
align-items: center;
|
|
1141
|
+
gap: 4px;
|
|
1142
|
+
margin-top: 8px;
|
|
1143
|
+
padding: 4px 10px;
|
|
1144
|
+
font-size: 11px;
|
|
1145
|
+
font-weight: 500;
|
|
1146
|
+
color: var(--accent-cyan);
|
|
1147
|
+
background: rgba(78,205,196,0.08);
|
|
1148
|
+
border: 1px solid rgba(78,205,196,0.3);
|
|
1149
|
+
border-radius: 4px;
|
|
1150
|
+
cursor: pointer;
|
|
1151
|
+
transition: background 120ms, border-color 120ms;
|
|
1152
|
+
}
|
|
1153
|
+
.bus-tool-open:hover {
|
|
1154
|
+
background: rgba(78,205,196,0.15);
|
|
1155
|
+
border-color: rgba(78,205,196,0.55);
|
|
1156
|
+
}
|
|
1157
|
+
.bus-tool-open:active {
|
|
1158
|
+
transform: translateY(1px);
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
/* P4.99 — family deep-link row. Same cyan palette family as
|
|
1162
|
+
.bus-tool-manifest (4ecdc4) so the strip reads as a continuation of the
|
|
1163
|
+
manifest "where to look" cluster — manifest tells you *which file*, family
|
|
1164
|
+
tells you *who else is in this kind*. Hover lifts the bg and underlines the
|
|
1165
|
+
arrow; the count <b> is brighter so the scannable number pops. */
|
|
1166
|
+
.bus-tool-family {
|
|
1167
|
+
display: flex;
|
|
1168
|
+
align-items: center;
|
|
1169
|
+
gap: 8px;
|
|
1170
|
+
width: 100%;
|
|
1171
|
+
margin-bottom: 8px;
|
|
1172
|
+
padding: 5px 8px;
|
|
1173
|
+
background: rgba(78,205,196,0.04);
|
|
1174
|
+
border: 1px solid rgba(78,205,196,0.18);
|
|
1175
|
+
border-radius: 4px;
|
|
1176
|
+
color: var(--text-muted);
|
|
1177
|
+
font-size: 10px;
|
|
1178
|
+
text-align: left;
|
|
1179
|
+
cursor: pointer;
|
|
1180
|
+
transition: background 120ms, border-color 120ms, color 120ms;
|
|
1181
|
+
}
|
|
1182
|
+
.bus-tool-family:hover {
|
|
1183
|
+
background: rgba(78,205,196,0.12);
|
|
1184
|
+
border-color: rgba(78,205,196,0.4);
|
|
1185
|
+
color: var(--text-primary);
|
|
1186
|
+
}
|
|
1187
|
+
.bus-tool-family:active {
|
|
1188
|
+
transform: translateY(1px);
|
|
1189
|
+
}
|
|
1190
|
+
.bus-tool-family-icon {
|
|
1191
|
+
font-size: 12px;
|
|
1192
|
+
line-height: 1;
|
|
1193
|
+
opacity: 0.85;
|
|
1194
|
+
}
|
|
1195
|
+
.bus-tool-family-label {
|
|
1196
|
+
font-size: 9px;
|
|
1197
|
+
text-transform: uppercase;
|
|
1198
|
+
letter-spacing: 0.06em;
|
|
1199
|
+
color: var(--text-muted);
|
|
1200
|
+
flex-shrink: 0;
|
|
1201
|
+
}
|
|
1202
|
+
.bus-tool-family-text {
|
|
1203
|
+
flex: 1;
|
|
1204
|
+
font-family: var(--font-mono);
|
|
1205
|
+
}
|
|
1206
|
+
.bus-tool-family-text b {
|
|
1207
|
+
color: var(--accent-cyan);
|
|
1208
|
+
font-weight: 600;
|
|
1209
|
+
font-size: 11px;
|
|
1210
|
+
}
|
|
1211
|
+
.bus-tool-family-arrow {
|
|
1212
|
+
color: var(--accent-cyan);
|
|
1213
|
+
font-size: 11px;
|
|
1214
|
+
opacity: 0.7;
|
|
1215
|
+
transition: opacity 120ms, transform 120ms;
|
|
1216
|
+
}
|
|
1217
|
+
.bus-tool-family:hover .bus-tool-family-arrow {
|
|
1218
|
+
opacity: 1;
|
|
1219
|
+
transform: translateX(2px);
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
/* P2.7i — bus kinds 6-chip strip pinned at sidebar bottom (sibling of
|
|
1223
|
+
* .ss-section extension, not nested inside it, so it survives any future
|
|
1224
|
+
* sectioning). Shares the BusAdminPanel kind palette so the player learns
|
|
1225
|
+
* one color language across surfaces:
|
|
1226
|
+
* extension=lime agent=violet cli-provider=blue
|
|
1227
|
+
* model-binding=teal skill=amber tool=orange
|
|
1228
|
+
* Chip layout = `name [tabular n]`, wrap-aware so a 220px-wide sidebar still
|
|
1229
|
+
* fits all six on two rows. Empty kinds dim down but stay visible — the row
|
|
1230
|
+
* works as a "what kinds exist at all" legend too. */
|
|
1231
|
+
.ss-footer {
|
|
1232
|
+
margin-top: auto;
|
|
1233
|
+
padding: 8px 12px 10px;
|
|
1234
|
+
border-top: 1px solid var(--color-border-default);
|
|
1235
|
+
display: flex;
|
|
1236
|
+
flex-direction: column;
|
|
1237
|
+
gap: 6px;
|
|
1238
|
+
}
|
|
1239
|
+
.ss-footer-label {
|
|
1240
|
+
font-size: 9px;
|
|
1241
|
+
letter-spacing: 0.1em;
|
|
1242
|
+
text-transform: uppercase;
|
|
1243
|
+
color: var(--text-muted);
|
|
1244
|
+
font-weight: 600;
|
|
1245
|
+
}
|
|
1246
|
+
/* P3.50 — keyboard hint glyph inside the footer label. Mono'd + tinted so the
|
|
1247
|
+
* `←→` reads as a key-cap legend distinct from the surrounding caption. */
|
|
1248
|
+
.ss-footer-kbd {
|
|
1249
|
+
font-family: var(--font-mono);
|
|
1250
|
+
font-size: 9.5px;
|
|
1251
|
+
letter-spacing: 0;
|
|
1252
|
+
padding: 0 3px;
|
|
1253
|
+
margin: 0 1px;
|
|
1254
|
+
border-radius: 3px;
|
|
1255
|
+
background: rgba(255,255,255,0.06);
|
|
1256
|
+
border: 1px solid rgba(255,255,255,0.18);
|
|
1257
|
+
color: var(--text);
|
|
1258
|
+
}
|
|
1259
|
+
.ss-kinds-row {
|
|
1260
|
+
display: flex;
|
|
1261
|
+
flex-wrap: wrap;
|
|
1262
|
+
gap: 4px;
|
|
1263
|
+
}
|
|
1264
|
+
.ss-kind-chip {
|
|
1265
|
+
display: inline-flex;
|
|
1266
|
+
align-items: center;
|
|
1267
|
+
gap: 4px;
|
|
1268
|
+
padding: 1px 5px 1px 5px;
|
|
1269
|
+
border-radius: 6px;
|
|
1270
|
+
background: rgba(255,255,255,0.04);
|
|
1271
|
+
border: 1px solid rgba(255,255,255,0.10);
|
|
1272
|
+
line-height: 1;
|
|
1273
|
+
font-size: 9px;
|
|
1274
|
+
font-weight: 600;
|
|
1275
|
+
/* P3.37 — chips render as <button>; reset native UA chrome so the kind
|
|
1276
|
+
* palette below still owns color/border, and only the click affordance
|
|
1277
|
+
* (cursor, transform, focus ring) is layered in via .is-link. */
|
|
1278
|
+
font-family: inherit;
|
|
1279
|
+
appearance: none;
|
|
1280
|
+
cursor: default;
|
|
1281
|
+
transition:
|
|
1282
|
+
background-color 120ms ease,
|
|
1283
|
+
border-color 120ms ease,
|
|
1284
|
+
transform 120ms ease,
|
|
1285
|
+
box-shadow 120ms ease;
|
|
1286
|
+
}
|
|
1287
|
+
.ss-kind-chip.is-empty {
|
|
1288
|
+
opacity: 0.45;
|
|
1289
|
+
cursor: not-allowed;
|
|
1290
|
+
}
|
|
1291
|
+
/* P3.37 — non-empty kinds get a clickable affordance that mirrors the
|
|
1292
|
+
* sky-blue family deep-link buttons (P3.32 .ac-bus-pill.is-link / P3.33
|
|
1293
|
+
* .ba-backlink / P3.34 .cp-agent-bar-bus / P3.36 .cb-cli-bus-pill.is-link).
|
|
1294
|
+
* Each chip keeps its own kind color, but hover lifts by 1px + brightens
|
|
1295
|
+
* background + thickens border to ~55% of the kind's accent. focus-visible
|
|
1296
|
+
* draws a 2px white ring so keyboard users see the target distinctly from
|
|
1297
|
+
* mouse hover. */
|
|
1298
|
+
.ss-kind-chip.is-link {
|
|
1299
|
+
cursor: pointer;
|
|
1300
|
+
}
|
|
1301
|
+
.ss-kind-chip.is-link:hover {
|
|
1302
|
+
transform: translateY(-1px);
|
|
1303
|
+
background: rgba(255,255,255,0.08);
|
|
1304
|
+
}
|
|
1305
|
+
.ss-kind-chip.is-link:focus-visible {
|
|
1306
|
+
outline: 2px solid rgba(255,255,255,0.55);
|
|
1307
|
+
outline-offset: 1px;
|
|
1308
|
+
}
|
|
1309
|
+
.ss-kind-chip.is-link:active {
|
|
1310
|
+
transform: translateY(0);
|
|
1311
|
+
}
|
|
1312
|
+
.ss-kind-chip-name { letter-spacing: 0.04em; }
|
|
1313
|
+
.ss-kind-chip-n {
|
|
1314
|
+
font-variant-numeric: tabular-nums;
|
|
1315
|
+
font-family: var(--font-mono);
|
|
1316
|
+
font-size: 9px;
|
|
1317
|
+
}
|
|
1318
|
+
/* Six kind variants — match BusAdminPanel.css .ba-chip.k-* palette so chips
|
|
1319
|
+
* read the same across Sidebar footer + Bus admin filter row + row k-tag. */
|
|
1320
|
+
.ss-kind-chip.k-extension { background: rgba(212, 255, 72, 0.10); border-color: rgba(212, 255, 72, 0.32); color: var(--primary); }
|
|
1321
|
+
.ss-kind-chip.k-agent { background: rgba(168, 85, 247, 0.12); border-color: rgba(168, 85, 247, 0.35); color: var(--color-role-orchestrator); }
|
|
1322
|
+
.ss-kind-chip.k-cli-provider { background: rgba(108, 196, 255, 0.10); border-color: rgba(108, 196, 255, 0.34); color: var(--color-kind-cli-provider); }
|
|
1323
|
+
.ss-kind-chip.k-model-binding { background: rgba(126, 231, 196, 0.10); border-color: rgba(126, 231, 196, 0.32); color: var(--accent-mint); }
|
|
1324
|
+
.ss-kind-chip.k-skill { background: rgba(255, 200, 120, 0.10); border-color: rgba(255, 200, 120, 0.34); color: var(--color-role-narrative); }
|
|
1325
|
+
.ss-kind-chip.k-tool { background: rgba(255, 140, 66, 0.10); border-color: rgba(255, 140, 66, 0.34); color: var(--color-role-coding); }
|
|
1326
|
+
/* P3.37 — per-kind hover/focus tints. Background brightens to ~24%, border
|
|
1327
|
+
* thickens to ~55% of the kind's accent so hover reads as "this chip is
|
|
1328
|
+
* activating" rather than a generic gray. Outer glow with same hue +12%
|
|
1329
|
+
* alpha for tactile click affordance. */
|
|
1330
|
+
.ss-kind-chip.k-extension.is-link:hover { background: rgba(212, 255, 72, 0.22); border-color: rgba(212, 255, 72, 0.55); box-shadow: none; }
|
|
1331
|
+
.ss-kind-chip.k-agent.is-link:hover { background: rgba(168, 85, 247, 0.24); border-color: rgba(168, 85, 247, 0.58); box-shadow: none; }
|
|
1332
|
+
.ss-kind-chip.k-cli-provider.is-link:hover { background: rgba(108, 196, 255, 0.22); border-color: rgba(108, 196, 255, 0.56); box-shadow: none; }
|
|
1333
|
+
.ss-kind-chip.k-model-binding.is-link:hover { background: rgba(126, 231, 196, 0.22); border-color: rgba(126, 231, 196, 0.55); box-shadow: none; }
|
|
1334
|
+
.ss-kind-chip.k-skill.is-link:hover { background: rgba(255, 200, 120, 0.22); border-color: rgba(255, 200, 120, 0.56); box-shadow: none; }
|
|
1335
|
+
.ss-kind-chip.k-tool.is-link:hover { background: rgba(255, 140, 66, 0.22); border-color: rgba(255, 140, 66, 0.56); box-shadow: none; }
|
|
1336
|
+
|
|
1337
|
+
/* P3.38 — reverse deep-link flash. Sidebar BUS KINDS chip pulses for ~1.5s when
|
|
1338
|
+
* BusAdminPanel.toggleKind fires on the matching kind. Each kind reuses its own
|
|
1339
|
+
* accent for the glow so player learns "kind = color" twice over: hover tint
|
|
1340
|
+
* (P3.37) AND flash echo (P3.38). Keyframes mix bg/border/box-shadow + a small
|
|
1341
|
+
* scale bounce so peripheral vision catches it even if not directly looking at
|
|
1342
|
+
* the Sidebar (player just clicked in MainArea Bus tab). 0% and 100% return to
|
|
1343
|
+
* the resting style so the animation gracefully lands back into is-link state.
|
|
1344
|
+
*
|
|
1345
|
+
* `animation-fill-mode: none` so on cleanup the chip drops back to its base
|
|
1346
|
+
* style (no leftover transform). 1.5s matches the cleanup timer in Sidebar.tsx.
|
|
1347
|
+
*/
|
|
1348
|
+
@keyframes ss-kind-chip-flash {
|
|
1349
|
+
0% { transform: scale(1.0); }
|
|
1350
|
+
18% { transform: scale(1.18); }
|
|
1351
|
+
45% { transform: scale(1.04); }
|
|
1352
|
+
100% { transform: scale(1.0); }
|
|
1353
|
+
}
|
|
1354
|
+
.ss-kind-chip.is-flashing {
|
|
1355
|
+
animation: ss-kind-chip-flash 1.5s ease-out;
|
|
1356
|
+
position: relative;
|
|
1357
|
+
z-index: 2;
|
|
1358
|
+
}
|
|
1359
|
+
.ss-kind-chip.is-flashing.k-extension { background: rgba(212, 255, 72, 0.32); border-color: rgba(212, 255, 72, 0.75); box-shadow: none; color: var(--primary); }
|
|
1360
|
+
.ss-kind-chip.is-flashing.k-agent { background: rgba(168, 85, 247, 0.34); border-color: rgba(168, 85, 247, 0.78); box-shadow: none; color: var(--primary); }
|
|
1361
|
+
.ss-kind-chip.is-flashing.k-cli-provider { background: rgba(108, 196, 255, 0.32); border-color: rgba(108, 196, 255, 0.76); box-shadow: none; color: var(--primary); }
|
|
1362
|
+
.ss-kind-chip.is-flashing.k-model-binding { background: rgba(126, 231, 196, 0.32); border-color: rgba(126, 231, 196, 0.75); box-shadow: none; color: var(--primary); }
|
|
1363
|
+
.ss-kind-chip.is-flashing.k-skill { background: rgba(255, 200, 120, 0.32); border-color: rgba(255, 200, 120, 0.76); box-shadow: none; color: var(--primary); }
|
|
1364
|
+
.ss-kind-chip.is-flashing.k-tool { background: rgba(255, 140, 66, 0.32); border-color: rgba(255, 140, 66, 0.76); box-shadow: none; color: var(--primary); }
|
|
1365
|
+
|
|
1366
|
+
/* ── P4.54 — FilesPanel folder file-count badge ──
|
|
1367
|
+
Each .fp-row.dir gains a small dim count chip after the folder name
|
|
1368
|
+
showing the recursive file count. Lets the player size each folder
|
|
1369
|
+
without expanding it (e.g. `src 23` vs `design 47`). 9px tabular-nums
|
|
1370
|
+
on a 0.06 alpha slab, dimmed to 0.55 opacity so it never out-shouts
|
|
1371
|
+
the folder name. Hover row → bump to 0.85 for legibility. Pure visual
|
|
1372
|
+
layer; no spacing change to neighbors (margin-left: auto pins to the
|
|
1373
|
+
right edge of the row, replacing the slot used by .fp-dot/.fp-dirty
|
|
1374
|
+
which only appear on files). */
|
|
1375
|
+
.fp-dir-count {
|
|
1376
|
+
flex-shrink: 0;
|
|
1377
|
+
margin-left: auto;
|
|
1378
|
+
padding: 0 5px;
|
|
1379
|
+
font-size: 9px;
|
|
1380
|
+
font-weight: 600;
|
|
1381
|
+
font-variant-numeric: tabular-nums;
|
|
1382
|
+
line-height: 13px;
|
|
1383
|
+
color: var(--text-muted);
|
|
1384
|
+
background: rgba(255, 255, 255, 0.06);
|
|
1385
|
+
border-radius: 7px;
|
|
1386
|
+
opacity: 0.55;
|
|
1387
|
+
transition: opacity 140ms ease, background 140ms ease, color 140ms ease;
|
|
1388
|
+
}
|
|
1389
|
+
.fp-row.dir:hover .fp-dir-count {
|
|
1390
|
+
opacity: 0.85;
|
|
1391
|
+
background: rgba(255, 255, 255, 0.10);
|
|
1392
|
+
color: var(--text-primary);
|
|
1393
|
+
}
|