@quantum-ai/gemini-cli 0.45.8 → 0.45.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/acp/acpCommandHandler.js +105 -0
- package/dist/acp/acpErrors.js +37 -0
- package/dist/acp/acpFileSystemService.js +80 -0
- package/dist/acp/acpRpcDispatcher.js +174 -0
- package/dist/acp/acpSession.js +1167 -0
- package/dist/acp/acpSessionManager.js +200 -0
- package/dist/acp/acpStdioTransport.js +22 -0
- package/dist/acp/acpUtils.js +287 -0
- package/dist/acp/commands/about.js +52 -0
- package/dist/acp/commands/commandRegistry.js +25 -0
- package/dist/acp/commands/extensions.js +330 -0
- package/dist/acp/commands/help.js +34 -0
- package/dist/acp/commands/init.js +46 -0
- package/dist/acp/commands/memory.js +95 -0
- package/dist/acp/commands/restore.js +140 -0
- package/dist/acp/commands/types.js +6 -0
- package/dist/commands/extensions/configure.js +63 -0
- package/dist/commands/extensions/disable.js +68 -0
- package/dist/commands/extensions/enable.js +84 -0
- package/dist/commands/extensions/install.js +171 -0
- package/dist/commands/extensions/link.js +65 -0
- package/dist/commands/extensions/list.js +62 -0
- package/dist/commands/extensions/new.js +87 -0
- package/dist/commands/extensions/uninstall.js +88 -0
- package/dist/commands/extensions/update.js +113 -0
- package/dist/commands/extensions/utils.js +122 -0
- package/dist/commands/extensions/validate.js +84 -0
- package/dist/commands/extensions.js +43 -0
- package/dist/commands/gemma/constants.js +34 -0
- package/dist/commands/gemma/logs.js +153 -0
- package/dist/commands/gemma/platform.js +219 -0
- package/dist/commands/gemma/setup.js +391 -0
- package/dist/commands/gemma/start.js +86 -0
- package/dist/commands/gemma/status.js +109 -0
- package/dist/commands/gemma/stop.js +109 -0
- package/dist/commands/gemma.js +29 -0
- package/dist/commands/hooks/migrate.js +214 -0
- package/dist/commands/hooks.js +24 -0
- package/dist/commands/mcp/add.js +194 -0
- package/dist/commands/mcp/enableDisable.js +105 -0
- package/dist/commands/mcp/list.js +206 -0
- package/dist/commands/mcp/remove.js +48 -0
- package/dist/commands/mcp.js +31 -0
- package/dist/commands/skills/disable.js +47 -0
- package/dist/commands/skills/enable.js +35 -0
- package/dist/commands/skills/install.js +78 -0
- package/dist/commands/skills/link.js +66 -0
- package/dist/commands/skills/list.js +59 -0
- package/dist/commands/skills/uninstall.js +56 -0
- package/dist/commands/skills.js +35 -0
- package/dist/commands/utils.js +10 -0
- package/dist/config/auth.js +43 -0
- package/dist/config/config.js +936 -0
- package/dist/config/extension-manager-themes.spec.js +202 -0
- package/dist/config/extension-manager.js +887 -0
- package/dist/config/extension.js +20 -0
- package/dist/config/extensionRegistryClient.js +93 -0
- package/dist/config/extensions/consent.js +195 -0
- package/dist/config/extensions/extensionEnablement.js +192 -0
- package/dist/config/extensions/extensionSettings.js +247 -0
- package/dist/config/extensions/github.js +425 -0
- package/dist/config/extensions/github_fetch.js +47 -0
- package/dist/config/extensions/storage.js +31 -0
- package/dist/config/extensions/update.js +143 -0
- package/dist/config/extensions/variableSchema.js +21 -0
- package/dist/config/extensions/variables.js +61 -0
- package/dist/config/footerItems.js +133 -0
- package/dist/config/mcp/index.js +6 -0
- package/dist/config/mcp/mcpServerEnablement.js +278 -0
- package/dist/config/policy.js +96 -0
- package/dist/config/sandboxConfig.js +116 -0
- package/dist/config/settingPaths.js +10 -0
- package/dist/config/settings-validation.js +272 -0
- package/dist/config/settings.js +942 -0
- package/dist/config/settingsSchema.js +3288 -0
- package/dist/config/trustedFolders.js +25 -0
- package/dist/core/auth.js +53 -0
- package/dist/core/initializer.js +41 -0
- package/dist/core/theme.js +18 -0
- package/dist/deferred.js +56 -0
- package/dist/gemini.js +699 -0
- package/dist/generated/git-commit.js +9 -0
- package/dist/index.mjs +8 -0
- package/dist/interactiveCli.js +187 -0
- package/dist/nonInteractiveCli.js +458 -0
- package/dist/nonInteractiveCliAgentSession.js +527 -0
- package/dist/nonInteractiveCliCommands.js +82 -0
- package/dist/patches/http-proxy-agent.js +7 -0
- package/dist/patches/https-proxy-agent.js +7 -0
- package/dist/patches/is-in-ci.js +14 -0
- package/dist/services/BuiltinCommandLoader.js +207 -0
- package/dist/services/CommandService.js +99 -0
- package/dist/services/FileCommandLoader.js +298 -0
- package/dist/services/McpPromptLoader.js +254 -0
- package/dist/services/SkillCommandLoader.js +52 -0
- package/dist/services/SlashCommandConflictHandler.js +127 -0
- package/dist/services/SlashCommandResolver.js +155 -0
- package/dist/services/liteRtServerManager.js +42 -0
- package/dist/services/prompt-processors/argumentProcessor.js +20 -0
- package/dist/services/prompt-processors/atFileProcessor.js +62 -0
- package/dist/services/prompt-processors/injectionParser.js +59 -0
- package/dist/services/prompt-processors/shellProcessor.js +129 -0
- package/dist/services/prompt-processors/types.js +19 -0
- package/dist/test-utils/AppRig.js +582 -0
- package/dist/test-utils/MockShellExecutionService.js +87 -0
- package/dist/test-utils/async.js +34 -0
- package/dist/test-utils/createExtension.js +30 -0
- package/dist/test-utils/customMatchers.js +85 -0
- package/dist/test-utils/mockCommandContext.js +102 -0
- package/dist/test-utils/mockConfig.js +202 -0
- package/dist/test-utils/mockDebugLogger.js +67 -0
- package/dist/test-utils/mockSpinner.js +20 -0
- package/dist/test-utils/persistentStateFake.js +38 -0
- package/dist/test-utils/render.js +606 -0
- package/dist/test-utils/settings.js +33 -0
- package/dist/test-utils/svg.js +181 -0
- package/dist/ui/App.js +29 -0
- package/dist/ui/AppContainer.js +2100 -0
- package/dist/ui/IdeIntegrationNudge.js +52 -0
- package/dist/ui/auth/ApiAuthDialog.js +62 -0
- package/dist/ui/auth/AuthDialog.js +141 -0
- package/dist/ui/auth/AuthInProgress.js +23 -0
- package/dist/ui/auth/BannedAccountDialog.js +66 -0
- package/dist/ui/auth/LoginRestartDialog.js +33 -0
- package/dist/ui/auth/useAuth.js +132 -0
- package/dist/ui/colors.js +62 -0
- package/dist/ui/commands/aboutCommand.js +58 -0
- package/dist/ui/commands/agentsCommand.js +327 -0
- package/dist/ui/commands/authCommand.js +45 -0
- package/dist/ui/commands/bugCommand.js +146 -0
- package/dist/ui/commands/bugMemoryCommand.js +61 -0
- package/dist/ui/commands/chatCommand.js +361 -0
- package/dist/ui/commands/clearCommand.js +67 -0
- package/dist/ui/commands/commandsCommand.js +103 -0
- package/dist/ui/commands/compressCommand.js +66 -0
- package/dist/ui/commands/copyCommand.js +61 -0
- package/dist/ui/commands/corgiCommand.js +16 -0
- package/dist/ui/commands/directoryCommand.js +222 -0
- package/dist/ui/commands/docsCommand.js +31 -0
- package/dist/ui/commands/editorCommand.js +16 -0
- package/dist/ui/commands/exportSessionCommand.js +73 -0
- package/dist/ui/commands/extensionsCommand.js +738 -0
- package/dist/ui/commands/footerCommand.js +19 -0
- package/dist/ui/commands/gemmaStatusCommand.js +33 -0
- package/dist/ui/commands/helpCommand.js +40 -0
- package/dist/ui/commands/hooksCommand.js +336 -0
- package/dist/ui/commands/ideCommand.js +232 -0
- package/dist/ui/commands/initCommand.js +37 -0
- package/dist/ui/commands/mcpCommand.js +446 -0
- package/dist/ui/commands/memoryCommand.js +124 -0
- package/dist/ui/commands/modelCommand.js +58 -0
- package/dist/ui/commands/oncallCommand.js +90 -0
- package/dist/ui/commands/permissionsCommand.js +74 -0
- package/dist/ui/commands/planCommand.js +82 -0
- package/dist/ui/commands/policiesCommand.js +82 -0
- package/dist/ui/commands/privacyCommand.js +16 -0
- package/dist/ui/commands/profileCommand.js +23 -0
- package/dist/ui/commands/quitCommand.js +36 -0
- package/dist/ui/commands/restoreCommand.js +131 -0
- package/dist/ui/commands/resumeCommand.js +18 -0
- package/dist/ui/commands/rewindCommand.js +136 -0
- package/dist/ui/commands/settingsCommand.js +16 -0
- package/dist/ui/commands/setupGithubCommand.js +195 -0
- package/dist/ui/commands/shortcutsCommand.js +16 -0
- package/dist/ui/commands/skillsCommand.js +296 -0
- package/dist/ui/commands/statsCommand.js +117 -0
- package/dist/ui/commands/tasksCommand.js +16 -0
- package/dist/ui/commands/terminalSetupCommand.js +41 -0
- package/dist/ui/commands/themeCommand.js +16 -0
- package/dist/ui/commands/toolsCommand.js +58 -0
- package/dist/ui/commands/types.js +15 -0
- package/dist/ui/commands/upgradeCommand.js +57 -0
- package/dist/ui/commands/vimCommand.js +24 -0
- package/dist/ui/commands/voiceCommand.js +28 -0
- package/dist/ui/components/AboutBox.js +16 -0
- package/dist/ui/components/AdminSettingsChangedDialog.js +26 -0
- package/dist/ui/components/AgentConfigDialog.js +297 -0
- package/dist/ui/components/AlternateBufferQuittingDisplay.js +29 -0
- package/dist/ui/components/AnsiOutput.js +23 -0
- package/dist/ui/components/AppHeader.js +73 -0
- package/dist/ui/components/ApprovalModeIndicator.js +40 -0
- package/dist/ui/components/AsciiArt.js +53 -0
- package/dist/ui/components/AskUserDialog.js +738 -0
- package/dist/ui/components/BackgroundTaskDisplay.js +251 -0
- package/dist/ui/components/Banner.js +28 -0
- package/dist/ui/components/Checklist.js +31 -0
- package/dist/ui/components/ChecklistItem.js +39 -0
- package/dist/ui/components/CliSpinner.js +27 -0
- package/dist/ui/components/ColorsDisplay.js +119 -0
- package/dist/ui/components/Composer.js +87 -0
- package/dist/ui/components/ConfigExtensionDialog.js +155 -0
- package/dist/ui/components/ConfigInitDisplay.js +54 -0
- package/dist/ui/components/ConsentPrompt.js +19 -0
- package/dist/ui/components/ConsoleSummaryDisplay.js +11 -0
- package/dist/ui/components/ContextSummaryDisplay.js +70 -0
- package/dist/ui/components/ContextUsageDisplay.js +28 -0
- package/dist/ui/components/CopyModeWarning.js +9 -0
- package/dist/ui/components/DebugProfiler.js +189 -0
- package/dist/ui/components/DetailedMessagesDisplay.js +59 -0
- package/dist/ui/components/DialogManager.js +162 -0
- package/dist/ui/components/EditorSettingsDialog.js +88 -0
- package/dist/ui/components/EmptyWalletDialog.js +33 -0
- package/dist/ui/components/ExitPlanModeDialog.js +179 -0
- package/dist/ui/components/ExitWarning.js +9 -0
- package/dist/ui/components/FolderTrustDialog.js +118 -0
- package/dist/ui/components/Footer.js +270 -0
- package/dist/ui/components/FooterConfigDialog.js +213 -0
- package/dist/ui/components/GeminiRespondingSpinner.js +22 -0
- package/dist/ui/components/GeminiSpinner.js +35 -0
- package/dist/ui/components/Header.js +29 -0
- package/dist/ui/components/Help.js +17 -0
- package/dist/ui/components/HistoryItemDisplay.js +52 -0
- package/dist/ui/components/HookStatusDisplay.js +26 -0
- package/dist/ui/components/HooksDialog.js +83 -0
- package/dist/ui/components/IdeTrustChangeDialog.js +35 -0
- package/dist/ui/components/InboxDialog.js +756 -0
- package/dist/ui/components/InputPrompt.js +1324 -0
- package/dist/ui/components/ListeningIndicator.js +30 -0
- package/dist/ui/components/LoadingIndicator.js +48 -0
- package/dist/ui/components/LogoutConfirmationDialog.js +39 -0
- package/dist/ui/components/LoopDetectionConfirmation.js +39 -0
- package/dist/ui/components/MainContent.js +176 -0
- package/dist/ui/components/MemoryUsageDisplay.js +25 -0
- package/dist/ui/components/ModelDialog.js +268 -0
- package/dist/ui/components/ModelQuotaDisplay.js +104 -0
- package/dist/ui/components/ModelStatsDisplay.js +157 -0
- package/dist/ui/components/MultiFolderTrustDialog.js +95 -0
- package/dist/ui/components/NewAgentsNotification.js +50 -0
- package/dist/ui/components/Notifications.js +107 -0
- package/dist/ui/components/OverageMenuDialog.js +32 -0
- package/dist/ui/components/PermissionsModifyTrustDialog.js +61 -0
- package/dist/ui/components/PolicyUpdateDialog.js +61 -0
- package/dist/ui/components/ProQuotaDialog.js +84 -0
- package/dist/ui/components/ProgressBar.js +17 -0
- package/dist/ui/components/QueuedMessageDisplay.js +20 -0
- package/dist/ui/components/QuittingDisplay.js +20 -0
- package/dist/ui/components/QuotaDisplay.js +36 -0
- package/dist/ui/components/QuotaStatsInfo.js +23 -0
- package/dist/ui/components/RawMarkdownIndicator.js +10 -0
- package/dist/ui/components/RewindConfirmation.js +73 -0
- package/dist/ui/components/RewindViewer.js +154 -0
- package/dist/ui/components/SessionBrowser/SessionBrowserEmpty.js +8 -0
- package/dist/ui/components/SessionBrowser/SessionBrowserError.js +8 -0
- package/dist/ui/components/SessionBrowser/SessionBrowserLoading.js +8 -0
- package/dist/ui/components/SessionBrowser/SessionBrowserNav.js +17 -0
- package/dist/ui/components/SessionBrowser/SessionListHeader.js +8 -0
- package/dist/ui/components/SessionBrowser/utils.js +99 -0
- package/dist/ui/components/SessionBrowser.js +370 -0
- package/dist/ui/components/SessionSummaryDisplay.js +24 -0
- package/dist/ui/components/SettingsDialog.js +283 -0
- package/dist/ui/components/ShellInputPrompt.js +64 -0
- package/dist/ui/components/ShellModeIndicator.js +5 -0
- package/dist/ui/components/ShortcutsHelp.js +58 -0
- package/dist/ui/components/ShowMoreLines.js +26 -0
- package/dist/ui/components/StatsDisplay.js +93 -0
- package/dist/ui/components/StatusDisplay.js +20 -0
- package/dist/ui/components/StatusRow.js +181 -0
- package/dist/ui/components/StickyHeader.js +5 -0
- package/dist/ui/components/SuggestionsDisplay.js +50 -0
- package/dist/ui/components/Table.js +7 -0
- package/dist/ui/components/ThemeDialog.constants.js +26 -0
- package/dist/ui/components/ThemeDialog.js +165 -0
- package/dist/ui/components/ThemedGradient.js +16 -0
- package/dist/ui/components/Tips.js +8 -0
- package/dist/ui/components/ToastDisplay.js +50 -0
- package/dist/ui/components/ToolConfirmationQueue.js +63 -0
- package/dist/ui/components/ToolStatsDisplay.js +41 -0
- package/dist/ui/components/UpdateNotification.js +10 -0
- package/dist/ui/components/UserIdentity.js +26 -0
- package/dist/ui/components/ValidationDialog.js +91 -0
- package/dist/ui/components/VoiceModelDialog.js +123 -0
- package/dist/ui/components/messages/CompressionMessage.js +48 -0
- package/dist/ui/components/messages/DenseToolMessage.js +257 -0
- package/dist/ui/components/messages/DiffRenderer.js +270 -0
- package/dist/ui/components/messages/ErrorMessage.js +9 -0
- package/dist/ui/components/messages/ExportSessionMessage.js +15 -0
- package/dist/ui/components/messages/GeminiMessage.js +15 -0
- package/dist/ui/components/messages/GeminiMessageContent.js +19 -0
- package/dist/ui/components/messages/HintMessage.js +15 -0
- package/dist/ui/components/messages/InfoMessage.js +11 -0
- package/dist/ui/components/messages/ModelMessage.js +6 -0
- package/dist/ui/components/messages/ShellToolMessage.js +84 -0
- package/dist/ui/components/messages/SubagentGroupDisplay.js +139 -0
- package/dist/ui/components/messages/SubagentHistoryMessage.js +4 -0
- package/dist/ui/components/messages/SubagentProgressDisplay.js +80 -0
- package/dist/ui/components/messages/ThinkingMessage.js +38 -0
- package/dist/ui/components/messages/Todo.js +40 -0
- package/dist/ui/components/messages/ToolConfirmationMessage.js +577 -0
- package/dist/ui/components/messages/ToolGroupDisplay.js +78 -0
- package/dist/ui/components/messages/ToolGroupMessage.js +268 -0
- package/dist/ui/components/messages/ToolMessage.js +25 -0
- package/dist/ui/components/messages/ToolResultDisplay.js +146 -0
- package/dist/ui/components/messages/ToolShared.js +125 -0
- package/dist/ui/components/messages/TopicMessage.js +56 -0
- package/dist/ui/components/messages/UserMessage.js +34 -0
- package/dist/ui/components/messages/UserShellMessage.js +14 -0
- package/dist/ui/components/messages/WarningMessage.js +10 -0
- package/dist/ui/components/shared/BaseSelectionList.js +97 -0
- package/dist/ui/components/shared/BaseSettingsDialog.js +281 -0
- package/dist/ui/components/shared/DescriptiveRadioButtonSelect.js +13 -0
- package/dist/ui/components/shared/DialogFooter.js +17 -0
- package/dist/ui/components/shared/EnumSelector.js +39 -0
- package/dist/ui/components/shared/ExpandableText.js +87 -0
- package/dist/ui/components/shared/HalfLinePaddedBox.js +37 -0
- package/dist/ui/components/shared/HorizontalLine.js +5 -0
- package/dist/ui/components/shared/MaxSizedBox.js +81 -0
- package/dist/ui/components/shared/RadioButtonSelect.js +22 -0
- package/dist/ui/components/shared/ScopeSelector.js +14 -0
- package/dist/ui/components/shared/Scrollable.js +167 -0
- package/dist/ui/components/shared/ScrollableList.js +167 -0
- package/dist/ui/components/shared/SearchableList.js +86 -0
- package/dist/ui/components/shared/SectionHeader.js +5 -0
- package/dist/ui/components/shared/SlicingMaxSizedBox.js +74 -0
- package/dist/ui/components/shared/TabHeader.js +42 -0
- package/dist/ui/components/shared/TextInput.js +51 -0
- package/dist/ui/components/shared/VirtualizedList.js +473 -0
- package/dist/ui/components/shared/text-buffer.js +2770 -0
- package/dist/ui/components/shared/vim-buffer-actions.js +1306 -0
- package/dist/ui/components/triage/TriageDuplicates.js +624 -0
- package/dist/ui/components/triage/TriageIssues.js +380 -0
- package/dist/ui/components/views/AgentsStatus.js +23 -0
- package/dist/ui/components/views/ChatList.js +17 -0
- package/dist/ui/components/views/ExtensionDetails.js +85 -0
- package/dist/ui/components/views/ExtensionRegistryView.js +97 -0
- package/dist/ui/components/views/ExtensionsList.js +46 -0
- package/dist/ui/components/views/GemmaStatus.js +11 -0
- package/dist/ui/components/views/McpStatus.js +109 -0
- package/dist/ui/components/views/SkillsList.js +17 -0
- package/dist/ui/components/views/ToolsList.js +6 -0
- package/dist/ui/constants/tips.js +163 -0
- package/dist/ui/constants/wittyPhrases.js +137 -0
- package/dist/ui/constants.js +60 -0
- package/dist/ui/contexts/AppContext.js +14 -0
- package/dist/ui/contexts/AskUserActionsContext.js +24 -0
- package/dist/ui/contexts/ConfigContext.js +14 -0
- package/dist/ui/contexts/InputContext.js +14 -0
- package/dist/ui/contexts/KeypressContext.js +780 -0
- package/dist/ui/contexts/MouseContext.js +130 -0
- package/dist/ui/contexts/OverflowContext.js +66 -0
- package/dist/ui/contexts/QuotaContext.js +14 -0
- package/dist/ui/contexts/ScrollProvider.js +312 -0
- package/dist/ui/contexts/SessionContext.js +167 -0
- package/dist/ui/contexts/SettingsContext.js +47 -0
- package/dist/ui/contexts/ShellFocusContext.js +8 -0
- package/dist/ui/contexts/StreamingContext.js +14 -0
- package/dist/ui/contexts/TerminalContext.js +70 -0
- package/dist/ui/contexts/ToolActionsContext.js +96 -0
- package/dist/ui/contexts/UIActionsContext.js +14 -0
- package/dist/ui/contexts/UIStateContext.js +14 -0
- package/dist/ui/contexts/VimModeContext.js +38 -0
- package/dist/ui/debug.js +10 -0
- package/dist/ui/editors/editorSettingsManager.js +37 -0
- package/dist/ui/hooks/atCommandProcessor.js +557 -0
- package/dist/ui/hooks/creditsFlowHandler.js +157 -0
- package/dist/ui/hooks/shell-completions/gitProvider.js +72 -0
- package/dist/ui/hooks/shell-completions/index.js +15 -0
- package/dist/ui/hooks/shell-completions/npmProvider.js +66 -0
- package/dist/ui/hooks/shell-completions/types.js +6 -0
- package/dist/ui/hooks/shellReducer.js +124 -0
- package/dist/ui/hooks/slashCommandProcessor.js +556 -0
- package/dist/ui/hooks/toolMapping.js +103 -0
- package/dist/ui/hooks/useAgentStream.js +407 -0
- package/dist/ui/hooks/useAlternateBuffer.js +17 -0
- package/dist/ui/hooks/useAnimatedScrollbar.js +100 -0
- package/dist/ui/hooks/useApprovalModeIndicator.js +83 -0
- package/dist/ui/hooks/useAtCompletion.js +347 -0
- package/dist/ui/hooks/useBackgroundTaskManager.js +56 -0
- package/dist/ui/hooks/useBanner.js +55 -0
- package/dist/ui/hooks/useBatchedScroll.js +26 -0
- package/dist/ui/hooks/useCommandCompletion.js +343 -0
- package/dist/ui/hooks/useCompletion.js +83 -0
- package/dist/ui/hooks/useComposerStatus.js +79 -0
- package/dist/ui/hooks/useConfirmingTool.js +18 -0
- package/dist/ui/hooks/useConsoleMessages.js +139 -0
- package/dist/ui/hooks/useEditorSettings.js +45 -0
- package/dist/ui/hooks/useExecutionLifecycle.js +529 -0
- package/dist/ui/hooks/useExtensionRegistry.js +69 -0
- package/dist/ui/hooks/useExtensionUpdates.js +172 -0
- package/dist/ui/hooks/useFlickerDetector.js +37 -0
- package/dist/ui/hooks/useFocus.js +57 -0
- package/dist/ui/hooks/useFolderTrust.js +104 -0
- package/dist/ui/hooks/useGeminiStream.js +1422 -0
- package/dist/ui/hooks/useGitBranchName.js +77 -0
- package/dist/ui/hooks/useHistoryManager.js +113 -0
- package/dist/ui/hooks/useHookDisplayState.js +82 -0
- package/dist/ui/hooks/useIdeTrustListener.js +66 -0
- package/dist/ui/hooks/useInactivityTimer.js +29 -0
- package/dist/ui/hooks/useIncludeDirsTrust.js +109 -0
- package/dist/ui/hooks/useInlineEditBuffer.js +112 -0
- package/dist/ui/hooks/useInputHistory.js +90 -0
- package/dist/ui/hooks/useInputHistoryStore.js +81 -0
- package/dist/ui/hooks/useKeyMatchers.js +12 -0
- package/dist/ui/hooks/useKeypress.js +27 -0
- package/dist/ui/hooks/useKittyKeyboardProtocol.js +18 -0
- package/dist/ui/hooks/useLoadingIndicator.js +54 -0
- package/dist/ui/hooks/useLogger.js +26 -0
- package/dist/ui/hooks/useMcpStatus.js +33 -0
- package/dist/ui/hooks/useMemoryMonitor.js +27 -0
- package/dist/ui/hooks/useMessageQueue.js +69 -0
- package/dist/ui/hooks/useModelCommand.js +20 -0
- package/dist/ui/hooks/useMouse.js +26 -0
- package/dist/ui/hooks/useMouseClick.js +35 -0
- package/dist/ui/hooks/usePermissionsModifyTrust.js +113 -0
- package/dist/ui/hooks/usePhraseCycler.js +141 -0
- package/dist/ui/hooks/usePrivacySettings.js +109 -0
- package/dist/ui/hooks/usePromptCompletion.js +168 -0
- package/dist/ui/hooks/useQuotaAndFallback.js +220 -0
- package/dist/ui/hooks/useRegistrySearch.js +34 -0
- package/dist/ui/hooks/useRepeatedKeyPress.js +49 -0
- package/dist/ui/hooks/useReverseSearchCompletion.js +101 -0
- package/dist/ui/hooks/useRewind.js +30 -0
- package/dist/ui/hooks/useRunEventNotifications.js +94 -0
- package/dist/ui/hooks/useSearchBuffer.js +23 -0
- package/dist/ui/hooks/useSelectionList.js +317 -0
- package/dist/ui/hooks/useSessionBrowser.js +74 -0
- package/dist/ui/hooks/useSessionResume.js +74 -0
- package/dist/ui/hooks/useSettingsCommand.js +20 -0
- package/dist/ui/hooks/useSettingsNavigation.js +71 -0
- package/dist/ui/hooks/useShellCompletion.js +501 -0
- package/dist/ui/hooks/useShellHistory.js +113 -0
- package/dist/ui/hooks/useShellInactivityStatus.js +44 -0
- package/dist/ui/hooks/useSlashCompletion.js +434 -0
- package/dist/ui/hooks/useSnowfall.js +125 -0
- package/dist/ui/hooks/useStateAndRef.js +26 -0
- package/dist/ui/hooks/useSuspend.js +101 -0
- package/dist/ui/hooks/useTabbedNavigation.js +159 -0
- package/dist/ui/hooks/useTerminalSize.js +25 -0
- package/dist/ui/hooks/useTerminalTheme.js +78 -0
- package/dist/ui/hooks/useThemeCommand.js +79 -0
- package/dist/ui/hooks/useTimedMessage.js +31 -0
- package/dist/ui/hooks/useTimer.js +57 -0
- package/dist/ui/hooks/useTips.js +17 -0
- package/dist/ui/hooks/useToolScheduler.js +212 -0
- package/dist/ui/hooks/useTurnActivityMonitor.js +47 -0
- package/dist/ui/hooks/useVisibilityToggle.js +59 -0
- package/dist/ui/hooks/useVoiceMode.js +338 -0
- package/dist/ui/hooks/useVoiceModelCommand.js +20 -0
- package/dist/ui/hooks/vim.js +1311 -0
- package/dist/ui/key/keyBindings.js +703 -0
- package/dist/ui/key/keyMatchers.js +42 -0
- package/dist/ui/key/keyToAnsi.js +44 -0
- package/dist/ui/key/keybindingUtils.js +85 -0
- package/dist/ui/layouts/DefaultAppLayout.js +29 -0
- package/dist/ui/layouts/ScreenReaderAppLayout.js +17 -0
- package/dist/ui/noninteractive/nonInteractiveUi.js +46 -0
- package/dist/ui/privacy/CloudFreePrivacyNotice.js +44 -0
- package/dist/ui/privacy/CloudPaidPrivacyNotice.js +20 -0
- package/dist/ui/privacy/GeminiPrivacyNotice.js +20 -0
- package/dist/ui/privacy/PrivacyNotice.js +25 -0
- package/dist/ui/semantic-colors.js +23 -0
- package/dist/ui/state/extensions.js +96 -0
- package/dist/ui/textConstants.js +14 -0
- package/dist/ui/themes/builtin/dark/ansi-dark.js +153 -0
- package/dist/ui/themes/builtin/dark/atom-one-dark.js +139 -0
- package/dist/ui/themes/builtin/dark/ayu-dark.js +105 -0
- package/dist/ui/themes/builtin/dark/default-dark.js +142 -0
- package/dist/ui/themes/builtin/dark/dracula-dark.js +116 -0
- package/dist/ui/themes/builtin/dark/github-dark-colorblind.js +139 -0
- package/dist/ui/themes/builtin/dark/github-dark.js +139 -0
- package/dist/ui/themes/builtin/dark/holiday-dark.js +162 -0
- package/dist/ui/themes/builtin/dark/shades-of-purple-dark.js +305 -0
- package/dist/ui/themes/builtin/dark/solarized-dark.js +196 -0
- package/dist/ui/themes/builtin/dark/tokyonight-dark.js +146 -0
- package/dist/ui/themes/builtin/light/ansi-light.js +142 -0
- package/dist/ui/themes/builtin/light/ayu-light.js +131 -0
- package/dist/ui/themes/builtin/light/default-light.js +99 -0
- package/dist/ui/themes/builtin/light/github-light-colorblind.js +139 -0
- package/dist/ui/themes/builtin/light/github-light.js +142 -0
- package/dist/ui/themes/builtin/light/googlecode-light.js +138 -0
- package/dist/ui/themes/builtin/light/solarized-light.js +196 -0
- package/dist/ui/themes/builtin/light/xcode-light.js +147 -0
- package/dist/ui/themes/builtin/no-color.js +124 -0
- package/dist/ui/themes/color-utils.js +105 -0
- package/dist/ui/themes/semantic-tokens.js +76 -0
- package/dist/ui/themes/theme-manager.js +513 -0
- package/dist/ui/themes/theme.js +563 -0
- package/dist/ui/types.js +100 -0
- package/dist/ui/utils/CodeColorizer.js +130 -0
- package/dist/ui/utils/ConsolePatcher.js +56 -0
- package/dist/ui/utils/InlineMarkdownRenderer.js +17 -0
- package/dist/ui/utils/MarkdownDisplay.js +243 -0
- package/dist/ui/utils/TableRenderer.js +161 -0
- package/dist/ui/utils/antigravityUtils.js +40 -0
- package/dist/ui/utils/borderStyles.js +82 -0
- package/dist/ui/utils/clipboardUtils.js +484 -0
- package/dist/ui/utils/commandUtils.js +259 -0
- package/dist/ui/utils/computeStats.js +61 -0
- package/dist/ui/utils/confirmingTool.js +25 -0
- package/dist/ui/utils/contextUsage.js +19 -0
- package/dist/ui/utils/directoryUtils.js +124 -0
- package/dist/ui/utils/displayUtils.js +42 -0
- package/dist/ui/utils/editorUtils.js +150 -0
- package/dist/ui/utils/fileUtils.js +16 -0
- package/dist/ui/utils/formatters.js +126 -0
- package/dist/ui/utils/highlight.js +116 -0
- package/dist/ui/utils/historyExportUtils.js +58 -0
- package/dist/ui/utils/historyUtils.js +69 -0
- package/dist/ui/utils/inlineThinkingMode.js +8 -0
- package/dist/ui/utils/input.js +50 -0
- package/dist/ui/utils/isNarrowWidth.js +8 -0
- package/dist/ui/utils/latexToUnicode.js +537 -0
- package/dist/ui/utils/markdownParsingUtils.js +184 -0
- package/dist/ui/utils/markdownUtilities.js +109 -0
- package/dist/ui/utils/memorySnapshot.js +27 -0
- package/dist/ui/utils/mouse.js +182 -0
- package/dist/ui/utils/pendingAttentionNotification.js +97 -0
- package/dist/ui/utils/rewindFileOps.js +190 -0
- package/dist/ui/utils/shortcutsHelp.js +11 -0
- package/dist/ui/utils/terminalCapabilityManager.js +259 -0
- package/dist/ui/utils/terminalSetup.js +418 -0
- package/dist/ui/utils/terminalUtils.js +37 -0
- package/dist/ui/utils/textOutput.js +52 -0
- package/dist/ui/utils/textUtils.js +235 -0
- package/dist/ui/utils/toolLayoutUtils.js +79 -0
- package/dist/ui/utils/ui-sizing.js +12 -0
- package/dist/ui/utils/updateCheck.js +95 -0
- package/dist/ui/utils/urlSecurityUtils.js +70 -0
- package/dist/utils/activityLogger.js +795 -0
- package/dist/utils/agentSettings.js +44 -0
- package/dist/utils/agentUtils.js +49 -0
- package/dist/utils/autoMemory.js +14 -0
- package/dist/utils/cleanup.js +170 -0
- package/dist/utils/commands.js +66 -0
- package/dist/utils/commentJson.js +136 -0
- package/dist/utils/deepMerge.js +64 -0
- package/dist/utils/devtoolsService.js +185 -0
- package/dist/utils/dialogScopeUtils.js +49 -0
- package/dist/utils/envVarResolver.js +120 -0
- package/dist/utils/errors.js +179 -0
- package/dist/utils/events.js +22 -0
- package/dist/utils/featureToggleUtils.js +94 -0
- package/dist/utils/gitUtils.js +109 -0
- package/dist/utils/handleAutoUpdate.js +178 -0
- package/dist/utils/hookSettings.js +113 -0
- package/dist/utils/hookUtils.js +50 -0
- package/dist/utils/installationInfo.js +186 -0
- package/dist/utils/jsonoutput.js +41 -0
- package/dist/utils/logCleanup.js +57 -0
- package/dist/utils/math.js +13 -0
- package/dist/utils/persistentState.js +65 -0
- package/dist/utils/processUtils.js +98 -0
- package/dist/utils/readStdin.js +86 -0
- package/dist/utils/relaunch.js +60 -0
- package/dist/utils/resize-observer-polyfill.js +6 -0
- package/dist/utils/resolvePath.js +20 -0
- package/dist/utils/sandbox.js +926 -0
- package/dist/utils/sandboxUtils.js +125 -0
- package/dist/utils/sessionCleanup.js +480 -0
- package/dist/utils/sessionUtils.js +464 -0
- package/dist/utils/sessions.js +66 -0
- package/dist/utils/settingsUtils.js +283 -0
- package/dist/utils/skillSettings.js +51 -0
- package/dist/utils/skillUtils.js +231 -0
- package/dist/utils/spawnWrapper.js +7 -0
- package/dist/utils/startupWarnings.js +39 -0
- package/dist/utils/terminalNotifications.js +130 -0
- package/dist/utils/terminalTheme.js +49 -0
- package/dist/utils/tierUtils.js +14 -0
- package/dist/utils/updateEventEmitter.js +11 -0
- package/dist/utils/userStartupWarnings.js +102 -0
- package/dist/utils/windowTitle.js +83 -0
- package/dist/utils/worktreeSetup.js +31 -0
- package/dist/validateNonInterActiveAuth.js +44 -0
- package/package.json +77 -36
- package/LICENSE +0 -202
- package/dist/index.d.ts +0 -7
- package/dist/index.js +0 -203
- package/dist/index.js.map +0 -1
- package/dist/package.json +0 -106
- package/dist/src/acp/acpCommandHandler.d.ts +0 -26
- package/dist/src/acp/acpCommandHandler.js +0 -106
- package/dist/src/acp/acpCommandHandler.js.map +0 -1
- package/dist/src/acp/acpErrors.d.ts +0 -11
- package/dist/src/acp/acpErrors.js +0 -38
- package/dist/src/acp/acpErrors.js.map +0 -1
- package/dist/src/acp/acpFileSystemService.d.ts +0 -23
- package/dist/src/acp/acpFileSystemService.js +0 -81
- package/dist/src/acp/acpFileSystemService.js.map +0 -1
- package/dist/src/acp/acpRpcDispatcher.d.ts +0 -28
- package/dist/src/acp/acpRpcDispatcher.js +0 -175
- package/dist/src/acp/acpRpcDispatcher.js.map +0 -1
- package/dist/src/acp/acpSession.d.ts +0 -36
- package/dist/src/acp/acpSession.js +0 -1168
- package/dist/src/acp/acpSession.js.map +0 -1
- package/dist/src/acp/acpSessionManager.d.ts +0 -30
- package/dist/src/acp/acpSessionManager.js +0 -201
- package/dist/src/acp/acpSessionManager.js.map +0 -1
- package/dist/src/acp/acpStdioTransport.d.ts +0 -9
- package/dist/src/acp/acpStdioTransport.js +0 -23
- package/dist/src/acp/acpStdioTransport.js.map +0 -1
- package/dist/src/acp/acpUtils.d.ts +0 -56
- package/dist/src/acp/acpUtils.js +0 -288
- package/dist/src/acp/acpUtils.js.map +0 -1
- package/dist/src/acp/commands/about.d.ts +0 -11
- package/dist/src/acp/commands/about.js +0 -53
- package/dist/src/acp/commands/about.js.map +0 -1
- package/dist/src/acp/commands/commandRegistry.d.ts +0 -12
- package/dist/src/acp/commands/commandRegistry.js +0 -26
- package/dist/src/acp/commands/commandRegistry.js.map +0 -1
- package/dist/src/acp/commands/extensions.d.ts +0 -57
- package/dist/src/acp/commands/extensions.js +0 -331
- package/dist/src/acp/commands/extensions.js.map +0 -1
- package/dist/src/acp/commands/help.d.ts +0 -14
- package/dist/src/acp/commands/help.js +0 -35
- package/dist/src/acp/commands/help.js.map +0 -1
- package/dist/src/acp/commands/init.d.ts +0 -12
- package/dist/src/acp/commands/init.js +0 -47
- package/dist/src/acp/commands/init.js.map +0 -1
- package/dist/src/acp/commands/memory.d.ts +0 -34
- package/dist/src/acp/commands/memory.js +0 -96
- package/dist/src/acp/commands/memory.js.map +0 -1
- package/dist/src/acp/commands/restore.d.ts +0 -18
- package/dist/src/acp/commands/restore.js +0 -141
- package/dist/src/acp/commands/restore.js.map +0 -1
- package/dist/src/acp/commands/types.d.ts +0 -31
- package/dist/src/acp/commands/types.js +0 -7
- package/dist/src/acp/commands/types.js.map +0 -1
- package/dist/src/commands/extensions/configure.d.ts +0 -13
- package/dist/src/commands/extensions/configure.js +0 -64
- package/dist/src/commands/extensions/configure.js.map +0 -1
- package/dist/src/commands/extensions/disable.d.ts +0 -13
- package/dist/src/commands/extensions/disable.js +0 -70
- package/dist/src/commands/extensions/disable.js.map +0 -1
- package/dist/src/commands/extensions/enable.d.ts +0 -13
- package/dist/src/commands/extensions/enable.js +0 -86
- package/dist/src/commands/extensions/enable.js.map +0 -1
- package/dist/src/commands/extensions/install.d.ts +0 -17
- package/dist/src/commands/extensions/install.js +0 -172
- package/dist/src/commands/extensions/install.js.map +0 -1
- package/dist/src/commands/extensions/link.d.ts +0 -13
- package/dist/src/commands/extensions/link.js +0 -66
- package/dist/src/commands/extensions/link.js.map +0 -1
- package/dist/src/commands/extensions/list.d.ts +0 -10
- package/dist/src/commands/extensions/list.js +0 -63
- package/dist/src/commands/extensions/list.js.map +0 -1
- package/dist/src/commands/extensions/new.d.ts +0 -7
- package/dist/src/commands/extensions/new.js +0 -88
- package/dist/src/commands/extensions/new.js.map +0 -1
- package/dist/src/commands/extensions/uninstall.d.ts +0 -13
- package/dist/src/commands/extensions/uninstall.js +0 -89
- package/dist/src/commands/extensions/uninstall.js.map +0 -1
- package/dist/src/commands/extensions/update.d.ts +0 -13
- package/dist/src/commands/extensions/update.js +0 -114
- package/dist/src/commands/extensions/update.js.map +0 -1
- package/dist/src/commands/extensions/utils.d.ts +0 -26
- package/dist/src/commands/extensions/utils.js +0 -123
- package/dist/src/commands/extensions/utils.js.map +0 -1
- package/dist/src/commands/extensions/validate.d.ts +0 -12
- package/dist/src/commands/extensions/validate.js +0 -85
- package/dist/src/commands/extensions/validate.js.map +0 -1
- package/dist/src/commands/extensions.d.ts +0 -7
- package/dist/src/commands/extensions.js +0 -44
- package/dist/src/commands/extensions.js.map +0 -1
- package/dist/src/commands/gemma/constants.d.ts +0 -17
- package/dist/src/commands/gemma/constants.js +0 -35
- package/dist/src/commands/gemma/constants.js.map +0 -1
- package/dist/src/commands/gemma/logs.d.ts +0 -13
- package/dist/src/commands/gemma/logs.js +0 -154
- package/dist/src/commands/gemma/logs.js.map +0 -1
- package/dist/src/commands/gemma/platform.d.ts +0 -38
- package/dist/src/commands/gemma/platform.js +0 -220
- package/dist/src/commands/gemma/platform.js.map +0 -1
- package/dist/src/commands/gemma/setup.d.ts +0 -9
- package/dist/src/commands/gemma/setup.js +0 -392
- package/dist/src/commands/gemma/setup.js.map +0 -1
- package/dist/src/commands/gemma/start.d.ts +0 -8
- package/dist/src/commands/gemma/start.js +0 -87
- package/dist/src/commands/gemma/start.js.map +0 -1
- package/dist/src/commands/gemma/status.d.ts +0 -19
- package/dist/src/commands/gemma/status.js +0 -110
- package/dist/src/commands/gemma/status.js.map +0 -1
- package/dist/src/commands/gemma/stop.d.ts +0 -9
- package/dist/src/commands/gemma/stop.js +0 -110
- package/dist/src/commands/gemma/stop.js.map +0 -1
- package/dist/src/commands/gemma.d.ts +0 -7
- package/dist/src/commands/gemma.js +0 -30
- package/dist/src/commands/gemma.js.map +0 -1
- package/dist/src/commands/hooks/migrate.d.ts +0 -11
- package/dist/src/commands/hooks/migrate.js +0 -215
- package/dist/src/commands/hooks/migrate.js.map +0 -1
- package/dist/src/commands/hooks.d.ts +0 -7
- package/dist/src/commands/hooks.js +0 -25
- package/dist/src/commands/hooks.js.map +0 -1
- package/dist/src/commands/mcp/add.d.ts +0 -7
- package/dist/src/commands/mcp/add.js +0 -195
- package/dist/src/commands/mcp/add.js.map +0 -1
- package/dist/src/commands/mcp/enableDisable.d.ts +0 -13
- package/dist/src/commands/mcp/enableDisable.js +0 -106
- package/dist/src/commands/mcp/enableDisable.js.map +0 -1
- package/dist/src/commands/mcp/list.d.ts +0 -18
- package/dist/src/commands/mcp/list.js +0 -207
- package/dist/src/commands/mcp/list.js.map +0 -1
- package/dist/src/commands/mcp/remove.d.ts +0 -7
- package/dist/src/commands/mcp/remove.js +0 -49
- package/dist/src/commands/mcp/remove.js.map +0 -1
- package/dist/src/commands/mcp.d.ts +0 -7
- package/dist/src/commands/mcp.js +0 -32
- package/dist/src/commands/mcp.js.map +0 -1
- package/dist/src/commands/skills/disable.d.ts +0 -14
- package/dist/src/commands/skills/disable.js +0 -48
- package/dist/src/commands/skills/disable.js.map +0 -1
- package/dist/src/commands/skills/enable.d.ts +0 -12
- package/dist/src/commands/skills/enable.js +0 -36
- package/dist/src/commands/skills/enable.js.map +0 -1
- package/dist/src/commands/skills/install.d.ts +0 -15
- package/dist/src/commands/skills/install.js +0 -79
- package/dist/src/commands/skills/install.js.map +0 -1
- package/dist/src/commands/skills/link.d.ts +0 -14
- package/dist/src/commands/skills/link.js +0 -67
- package/dist/src/commands/skills/link.js.map +0 -1
- package/dist/src/commands/skills/list.d.ts +0 -10
- package/dist/src/commands/skills/list.js +0 -60
- package/dist/src/commands/skills/list.js.map +0 -1
- package/dist/src/commands/skills/uninstall.d.ts +0 -13
- package/dist/src/commands/skills/uninstall.js +0 -57
- package/dist/src/commands/skills/uninstall.js.map +0 -1
- package/dist/src/commands/skills.d.ts +0 -7
- package/dist/src/commands/skills.js +0 -36
- package/dist/src/commands/skills.js.map +0 -1
- package/dist/src/commands/utils.d.ts +0 -6
- package/dist/src/commands/utils.js +0 -11
- package/dist/src/commands/utils.js.map +0 -1
- package/dist/src/config/auth.d.ts +0 -6
- package/dist/src/config/auth.js +0 -44
- package/dist/src/config/auth.js.map +0 -1
- package/dist/src/config/config.d.ts +0 -69
- package/dist/src/config/config.js +0 -928
- package/dist/src/config/config.js.map +0 -1
- package/dist/src/config/extension-manager-themes.spec.js +0 -203
- package/dist/src/config/extension-manager-themes.spec.js.map +0 -1
- package/dist/src/config/extension-manager.d.ts +0 -87
- package/dist/src/config/extension-manager.js +0 -888
- package/dist/src/config/extension-manager.js.map +0 -1
- package/dist/src/config/extension.d.ts +0 -46
- package/dist/src/config/extension.js +0 -21
- package/dist/src/config/extension.js.map +0 -1
- package/dist/src/config/extensionRegistryClient.d.ts +0 -41
- package/dist/src/config/extensionRegistryClient.js +0 -95
- package/dist/src/config/extensionRegistryClient.js.map +0 -1
- package/dist/src/config/extensions/consent.d.ts +0 -54
- package/dist/src/config/extensions/consent.js +0 -196
- package/dist/src/config/extensions/consent.js.map +0 -1
- package/dist/src/config/extensions/extensionEnablement.d.ts +0 -47
- package/dist/src/config/extensions/extensionEnablement.js +0 -193
- package/dist/src/config/extensions/extensionEnablement.js.map +0 -1
- package/dist/src/config/extensions/extensionSettings.d.ts +0 -23
- package/dist/src/config/extensions/extensionSettings.js +0 -248
- package/dist/src/config/extensions/extensionSettings.js.map +0 -1
- package/dist/src/config/extensions/github.d.ts +0 -50
- package/dist/src/config/extensions/github.js +0 -426
- package/dist/src/config/extensions/github.js.map +0 -1
- package/dist/src/config/extensions/github_fetch.d.ts +0 -7
- package/dist/src/config/extensions/github_fetch.js +0 -48
- package/dist/src/config/extensions/github_fetch.js.map +0 -1
- package/dist/src/config/extensions/storage.d.ts +0 -14
- package/dist/src/config/extensions/storage.js +0 -32
- package/dist/src/config/extensions/storage.js.map +0 -1
- package/dist/src/config/extensions/update.d.ts +0 -20
- package/dist/src/config/extensions/update.js +0 -144
- package/dist/src/config/extensions/update.js.map +0 -1
- package/dist/src/config/extensions/variableSchema.d.ts +0 -32
- package/dist/src/config/extensions/variableSchema.js +0 -22
- package/dist/src/config/extensions/variableSchema.js.map +0 -1
- package/dist/src/config/extensions/variables.d.ts +0 -21
- package/dist/src/config/extensions/variables.js +0 -62
- package/dist/src/config/extensions/variables.js.map +0 -1
- package/dist/src/config/footerItems.d.ts +0 -66
- package/dist/src/config/footerItems.js +0 -134
- package/dist/src/config/footerItems.js.map +0 -1
- package/dist/src/config/mcp/index.d.ts +0 -6
- package/dist/src/config/mcp/index.js +0 -7
- package/dist/src/config/mcp/index.js.map +0 -1
- package/dist/src/config/mcp/mcpServerEnablement.d.ts +0 -150
- package/dist/src/config/mcp/mcpServerEnablement.js +0 -280
- package/dist/src/config/mcp/mcpServerEnablement.js.map +0 -1
- package/dist/src/config/policy.d.ts +0 -41
- package/dist/src/config/policy.js +0 -98
- package/dist/src/config/policy.js.map +0 -1
- package/dist/src/config/sandboxConfig.d.ts +0 -12
- package/dist/src/config/sandboxConfig.js +0 -117
- package/dist/src/config/sandboxConfig.js.map +0 -1
- package/dist/src/config/settingPaths.d.ts +0 -10
- package/dist/src/config/settingPaths.js +0 -11
- package/dist/src/config/settingPaths.js.map +0 -1
- package/dist/src/config/settings-validation.d.ts +0 -23
- package/dist/src/config/settings-validation.js +0 -273
- package/dist/src/config/settings-validation.js.map +0 -1
- package/dist/src/config/settings.d.ts +0 -155
- package/dist/src/config/settings.js +0 -943
- package/dist/src/config/settings.js.map +0 -1
- package/dist/src/config/settingsSchema.d.ts +0 -2891
- package/dist/src/config/settingsSchema.js +0 -3289
- package/dist/src/config/settingsSchema.js.map +0 -1
- package/dist/src/config/trustedFolders.d.ts +0 -19
- package/dist/src/config/trustedFolders.js +0 -26
- package/dist/src/config/trustedFolders.js.map +0 -1
- package/dist/src/core/auth.d.ts +0 -18
- package/dist/src/core/auth.js +0 -54
- package/dist/src/core/auth.js.map +0 -1
- package/dist/src/core/initializer.d.ts +0 -23
- package/dist/src/core/initializer.js +0 -43
- package/dist/src/core/initializer.js.map +0 -1
- package/dist/src/core/theme.d.ts +0 -12
- package/dist/src/core/theme.js +0 -20
- package/dist/src/core/theme.js.map +0 -1
- package/dist/src/deferred.d.ts +0 -19
- package/dist/src/deferred.js +0 -57
- package/dist/src/deferred.js.map +0 -1
- package/dist/src/gemini.d.ts +0 -18
- package/dist/src/gemini.js +0 -695
- package/dist/src/gemini.js.map +0 -1
- package/dist/src/generated/git-commit.d.ts +0 -7
- package/dist/src/generated/git-commit.js +0 -10
- package/dist/src/generated/git-commit.js.map +0 -1
- package/dist/src/index.d.ts +0 -9
- package/dist/src/index.js +0 -13
- package/dist/src/index.js.map +0 -1
- package/dist/src/interactiveCli.d.ts +0 -9
- package/dist/src/interactiveCli.js +0 -189
- package/dist/src/interactiveCli.js.map +0 -1
- package/dist/src/nonInteractiveCli.d.ts +0 -23
- package/dist/src/nonInteractiveCli.js +0 -459
- package/dist/src/nonInteractiveCli.js.map +0 -1
- package/dist/src/nonInteractiveCliAgentSession.d.ts +0 -23
- package/dist/src/nonInteractiveCliAgentSession.js +0 -528
- package/dist/src/nonInteractiveCliAgentSession.js.map +0 -1
- package/dist/src/nonInteractiveCliCommands.d.ts +0 -17
- package/dist/src/nonInteractiveCliCommands.js +0 -83
- package/dist/src/nonInteractiveCliCommands.js.map +0 -1
- package/dist/src/patches/http-proxy-agent.d.ts +0 -6
- package/dist/src/patches/http-proxy-agent.js +0 -8
- package/dist/src/patches/http-proxy-agent.js.map +0 -1
- package/dist/src/patches/https-proxy-agent.d.ts +0 -6
- package/dist/src/patches/https-proxy-agent.js +0 -8
- package/dist/src/patches/https-proxy-agent.js.map +0 -1
- package/dist/src/patches/is-in-ci.d.ts +0 -7
- package/dist/src/patches/is-in-ci.js +0 -15
- package/dist/src/patches/is-in-ci.js.map +0 -1
- package/dist/src/services/BuiltinCommandLoader.d.ts +0 -24
- package/dist/src/services/BuiltinCommandLoader.js +0 -208
- package/dist/src/services/BuiltinCommandLoader.js.map +0 -1
- package/dist/src/services/CommandService.d.ts +0 -62
- package/dist/src/services/CommandService.js +0 -100
- package/dist/src/services/CommandService.js.map +0 -1
- package/dist/src/services/FileCommandLoader.d.ts +0 -73
- package/dist/src/services/FileCommandLoader.js +0 -299
- package/dist/src/services/FileCommandLoader.js.map +0 -1
- package/dist/src/services/McpPromptLoader.d.ts +0 -35
- package/dist/src/services/McpPromptLoader.js +0 -255
- package/dist/src/services/McpPromptLoader.js.map +0 -1
- package/dist/src/services/SkillCommandLoader.d.ts +0 -23
- package/dist/src/services/SkillCommandLoader.js +0 -54
- package/dist/src/services/SkillCommandLoader.js.map +0 -1
- package/dist/src/services/SlashCommandConflictHandler.d.ts +0 -35
- package/dist/src/services/SlashCommandConflictHandler.js +0 -128
- package/dist/src/services/SlashCommandConflictHandler.js.map +0 -1
- package/dist/src/services/SlashCommandResolver.d.ts +0 -53
- package/dist/src/services/SlashCommandResolver.js +0 -156
- package/dist/src/services/SlashCommandResolver.js.map +0 -1
- package/dist/src/services/liteRtServerManager.d.ts +0 -9
- package/dist/src/services/liteRtServerManager.js +0 -43
- package/dist/src/services/liteRtServerManager.js.map +0 -1
- package/dist/src/services/prompt-processors/argumentProcessor.d.ts +0 -16
- package/dist/src/services/prompt-processors/argumentProcessor.js +0 -21
- package/dist/src/services/prompt-processors/argumentProcessor.js.map +0 -1
- package/dist/src/services/prompt-processors/atFileProcessor.d.ts +0 -12
- package/dist/src/services/prompt-processors/atFileProcessor.js +0 -63
- package/dist/src/services/prompt-processors/atFileProcessor.js.map +0 -1
- package/dist/src/services/prompt-processors/injectionParser.d.ts +0 -29
- package/dist/src/services/prompt-processors/injectionParser.js +0 -60
- package/dist/src/services/prompt-processors/injectionParser.js.map +0 -1
- package/dist/src/services/prompt-processors/shellProcessor.d.ts +0 -27
- package/dist/src/services/prompt-processors/shellProcessor.js +0 -130
- package/dist/src/services/prompt-processors/shellProcessor.js.map +0 -1
- package/dist/src/services/prompt-processors/types.d.ts +0 -45
- package/dist/src/services/prompt-processors/types.js +0 -20
- package/dist/src/services/prompt-processors/types.js.map +0 -1
- package/dist/src/services/types.d.ts +0 -30
- package/dist/src/services/types.js +0 -7
- package/dist/src/services/types.js.map +0 -1
- package/dist/src/test-utils/AppRig.d.ts +0 -83
- package/dist/src/test-utils/AppRig.js +0 -583
- package/dist/src/test-utils/AppRig.js.map +0 -1
- package/dist/src/test-utils/MockShellExecutionService.d.ts +0 -37
- package/dist/src/test-utils/MockShellExecutionService.js +0 -89
- package/dist/src/test-utils/MockShellExecutionService.js.map +0 -1
- package/dist/src/test-utils/async.d.ts +0 -9
- package/dist/src/test-utils/async.js +0 -35
- package/dist/src/test-utils/async.js.map +0 -1
- package/dist/src/test-utils/createExtension.d.ts +0 -17
- package/dist/src/test-utils/createExtension.js +0 -32
- package/dist/src/test-utils/createExtension.js.map +0 -1
- package/dist/src/test-utils/customMatchers.d.ts +0 -34
- package/dist/src/test-utils/customMatchers.js +0 -86
- package/dist/src/test-utils/customMatchers.js.map +0 -1
- package/dist/src/test-utils/mockCommandContext.d.ts +0 -18
- package/dist/src/test-utils/mockCommandContext.js +0 -103
- package/dist/src/test-utils/mockCommandContext.js.map +0 -1
- package/dist/src/test-utils/mockConfig.d.ts +0 -15
- package/dist/src/test-utils/mockConfig.js +0 -203
- package/dist/src/test-utils/mockConfig.js.map +0 -1
- package/dist/src/test-utils/mockDebugLogger.d.ts +0 -35
- package/dist/src/test-utils/mockDebugLogger.js +0 -68
- package/dist/src/test-utils/mockDebugLogger.js.map +0 -1
- package/dist/src/test-utils/mockSpinner.d.ts +0 -6
- package/dist/src/test-utils/mockSpinner.js +0 -21
- package/dist/src/test-utils/mockSpinner.js.map +0 -1
- package/dist/src/test-utils/persistentStateFake.d.ts +0 -26
- package/dist/src/test-utils/persistentStateFake.js +0 -39
- package/dist/src/test-utils/persistentStateFake.js.map +0 -1
- package/dist/src/test-utils/render.d.ts +0 -163
- package/dist/src/test-utils/render.js +0 -609
- package/dist/src/test-utils/render.js.map +0 -1
- package/dist/src/test-utils/settings.d.ts +0 -31
- package/dist/src/test-utils/settings.js +0 -34
- package/dist/src/test-utils/settings.js.map +0 -1
- package/dist/src/test-utils/svg.d.ts +0 -7
- package/dist/src/test-utils/svg.js +0 -182
- package/dist/src/test-utils/svg.js.map +0 -1
- package/dist/src/ui/App.d.ts +0 -6
- package/dist/src/ui/App.js +0 -30
- package/dist/src/ui/App.js.map +0 -1
- package/dist/src/ui/AppContainer.d.ts +0 -16
- package/dist/src/ui/AppContainer.js +0 -2106
- package/dist/src/ui/AppContainer.js.map +0 -1
- package/dist/src/ui/IdeIntegrationNudge.d.ts +0 -16
- package/dist/src/ui/IdeIntegrationNudge.js +0 -53
- package/dist/src/ui/IdeIntegrationNudge.js.map +0 -1
- package/dist/src/ui/auth/ApiAuthDialog.d.ts +0 -14
- package/dist/src/ui/auth/ApiAuthDialog.js +0 -63
- package/dist/src/ui/auth/ApiAuthDialog.js.map +0 -1
- package/dist/src/ui/auth/AuthDialog.d.ts +0 -21
- package/dist/src/ui/auth/AuthDialog.js +0 -142
- package/dist/src/ui/auth/AuthDialog.js.map +0 -1
- package/dist/src/ui/auth/AuthInProgress.d.ts +0 -11
- package/dist/src/ui/auth/AuthInProgress.js +0 -24
- package/dist/src/ui/auth/AuthInProgress.js.map +0 -1
- package/dist/src/ui/auth/BannedAccountDialog.d.ts +0 -14
- package/dist/src/ui/auth/BannedAccountDialog.js +0 -67
- package/dist/src/ui/auth/BannedAccountDialog.js.map +0 -1
- package/dist/src/ui/auth/LoginRestartDialog.d.ts +0 -13
- package/dist/src/ui/auth/LoginRestartDialog.js +0 -40
- package/dist/src/ui/auth/LoginRestartDialog.js.map +0 -1
- package/dist/src/ui/auth/useAuth.d.ts +0 -21
- package/dist/src/ui/auth/useAuth.js +0 -133
- package/dist/src/ui/auth/useAuth.js.map +0 -1
- package/dist/src/ui/colors.d.ts +0 -7
- package/dist/src/ui/colors.js +0 -63
- package/dist/src/ui/colors.js.map +0 -1
- package/dist/src/ui/commands/aboutCommand.d.ts +0 -7
- package/dist/src/ui/commands/aboutCommand.js +0 -59
- package/dist/src/ui/commands/aboutCommand.js.map +0 -1
- package/dist/src/ui/commands/agentsCommand.d.ts +0 -7
- package/dist/src/ui/commands/agentsCommand.js +0 -328
- package/dist/src/ui/commands/agentsCommand.js.map +0 -1
- package/dist/src/ui/commands/authCommand.d.ts +0 -7
- package/dist/src/ui/commands/authCommand.js +0 -46
- package/dist/src/ui/commands/authCommand.js.map +0 -1
- package/dist/src/ui/commands/bugCommand.d.ts +0 -7
- package/dist/src/ui/commands/bugCommand.js +0 -147
- package/dist/src/ui/commands/bugCommand.js.map +0 -1
- package/dist/src/ui/commands/bugMemoryCommand.d.ts +0 -7
- package/dist/src/ui/commands/bugMemoryCommand.js +0 -62
- package/dist/src/ui/commands/bugMemoryCommand.js.map +0 -1
- package/dist/src/ui/commands/chatCommand.d.ts +0 -10
- package/dist/src/ui/commands/chatCommand.js +0 -362
- package/dist/src/ui/commands/chatCommand.js.map +0 -1
- package/dist/src/ui/commands/clearCommand.d.ts +0 -7
- package/dist/src/ui/commands/clearCommand.js +0 -68
- package/dist/src/ui/commands/clearCommand.js.map +0 -1
- package/dist/src/ui/commands/commandsCommand.d.ts +0 -7
- package/dist/src/ui/commands/commandsCommand.js +0 -104
- package/dist/src/ui/commands/commandsCommand.js.map +0 -1
- package/dist/src/ui/commands/compressCommand.d.ts +0 -7
- package/dist/src/ui/commands/compressCommand.js +0 -67
- package/dist/src/ui/commands/compressCommand.js.map +0 -1
- package/dist/src/ui/commands/copyCommand.d.ts +0 -7
- package/dist/src/ui/commands/copyCommand.js +0 -62
- package/dist/src/ui/commands/copyCommand.js.map +0 -1
- package/dist/src/ui/commands/corgiCommand.d.ts +0 -7
- package/dist/src/ui/commands/corgiCommand.js +0 -17
- package/dist/src/ui/commands/corgiCommand.js.map +0 -1
- package/dist/src/ui/commands/directoryCommand.d.ts +0 -7
- package/dist/src/ui/commands/directoryCommand.js +0 -224
- package/dist/src/ui/commands/directoryCommand.js.map +0 -1
- package/dist/src/ui/commands/docsCommand.d.ts +0 -7
- package/dist/src/ui/commands/docsCommand.js +0 -32
- package/dist/src/ui/commands/docsCommand.js.map +0 -1
- package/dist/src/ui/commands/editorCommand.d.ts +0 -7
- package/dist/src/ui/commands/editorCommand.js +0 -17
- package/dist/src/ui/commands/editorCommand.js.map +0 -1
- package/dist/src/ui/commands/exportSessionCommand.d.ts +0 -7
- package/dist/src/ui/commands/exportSessionCommand.js +0 -74
- package/dist/src/ui/commands/exportSessionCommand.js.map +0 -1
- package/dist/src/ui/commands/extensionsCommand.d.ts +0 -12
- package/dist/src/ui/commands/extensionsCommand.js +0 -740
- package/dist/src/ui/commands/extensionsCommand.js.map +0 -1
- package/dist/src/ui/commands/footerCommand.d.ts +0 -7
- package/dist/src/ui/commands/footerCommand.js +0 -20
- package/dist/src/ui/commands/footerCommand.js.map +0 -1
- package/dist/src/ui/commands/gemmaStatusCommand.d.ts +0 -7
- package/dist/src/ui/commands/gemmaStatusCommand.js +0 -34
- package/dist/src/ui/commands/gemmaStatusCommand.js.map +0 -1
- package/dist/src/ui/commands/helpCommand.d.ts +0 -7
- package/dist/src/ui/commands/helpCommand.js +0 -41
- package/dist/src/ui/commands/helpCommand.js.map +0 -1
- package/dist/src/ui/commands/hooksCommand.d.ts +0 -7
- package/dist/src/ui/commands/hooksCommand.js +0 -337
- package/dist/src/ui/commands/hooksCommand.js.map +0 -1
- package/dist/src/ui/commands/ideCommand.d.ts +0 -7
- package/dist/src/ui/commands/ideCommand.js +0 -233
- package/dist/src/ui/commands/ideCommand.js.map +0 -1
- package/dist/src/ui/commands/initCommand.d.ts +0 -7
- package/dist/src/ui/commands/initCommand.js +0 -38
- package/dist/src/ui/commands/initCommand.js.map +0 -1
- package/dist/src/ui/commands/mcpCommand.d.ts +0 -7
- package/dist/src/ui/commands/mcpCommand.js +0 -447
- package/dist/src/ui/commands/mcpCommand.js.map +0 -1
- package/dist/src/ui/commands/memoryCommand.d.ts +0 -8
- package/dist/src/ui/commands/memoryCommand.js +0 -125
- package/dist/src/ui/commands/memoryCommand.js.map +0 -1
- package/dist/src/ui/commands/modelCommand.d.ts +0 -7
- package/dist/src/ui/commands/modelCommand.js +0 -59
- package/dist/src/ui/commands/modelCommand.js.map +0 -1
- package/dist/src/ui/commands/oncallCommand.d.ts +0 -7
- package/dist/src/ui/commands/oncallCommand.js +0 -91
- package/dist/src/ui/commands/oncallCommand.js.map +0 -1
- package/dist/src/ui/commands/permissionsCommand.d.ts +0 -7
- package/dist/src/ui/commands/permissionsCommand.js +0 -75
- package/dist/src/ui/commands/permissionsCommand.js.map +0 -1
- package/dist/src/ui/commands/planCommand.d.ts +0 -7
- package/dist/src/ui/commands/planCommand.js +0 -83
- package/dist/src/ui/commands/planCommand.js.map +0 -1
- package/dist/src/ui/commands/policiesCommand.d.ts +0 -7
- package/dist/src/ui/commands/policiesCommand.js +0 -83
- package/dist/src/ui/commands/policiesCommand.js.map +0 -1
- package/dist/src/ui/commands/privacyCommand.d.ts +0 -7
- package/dist/src/ui/commands/privacyCommand.js +0 -17
- package/dist/src/ui/commands/privacyCommand.js.map +0 -1
- package/dist/src/ui/commands/profileCommand.d.ts +0 -7
- package/dist/src/ui/commands/profileCommand.js +0 -24
- package/dist/src/ui/commands/profileCommand.js.map +0 -1
- package/dist/src/ui/commands/quitCommand.d.ts +0 -7
- package/dist/src/ui/commands/quitCommand.js +0 -37
- package/dist/src/ui/commands/quitCommand.js.map +0 -1
- package/dist/src/ui/commands/restoreCommand.d.ts +0 -8
- package/dist/src/ui/commands/restoreCommand.js +0 -132
- package/dist/src/ui/commands/restoreCommand.js.map +0 -1
- package/dist/src/ui/commands/resumeCommand.d.ts +0 -7
- package/dist/src/ui/commands/resumeCommand.js +0 -19
- package/dist/src/ui/commands/resumeCommand.js.map +0 -1
- package/dist/src/ui/commands/rewindCommand.d.ts +0 -7
- package/dist/src/ui/commands/rewindCommand.js +0 -138
- package/dist/src/ui/commands/rewindCommand.js.map +0 -1
- package/dist/src/ui/commands/settingsCommand.d.ts +0 -7
- package/dist/src/ui/commands/settingsCommand.js +0 -17
- package/dist/src/ui/commands/settingsCommand.js.map +0 -1
- package/dist/src/ui/commands/setupGithubCommand.d.ts +0 -10
- package/dist/src/ui/commands/setupGithubCommand.js +0 -196
- package/dist/src/ui/commands/setupGithubCommand.js.map +0 -1
- package/dist/src/ui/commands/shortcutsCommand.d.ts +0 -7
- package/dist/src/ui/commands/shortcutsCommand.js +0 -17
- package/dist/src/ui/commands/shortcutsCommand.js.map +0 -1
- package/dist/src/ui/commands/skillsCommand.d.ts +0 -7
- package/dist/src/ui/commands/skillsCommand.js +0 -297
- package/dist/src/ui/commands/skillsCommand.js.map +0 -1
- package/dist/src/ui/commands/statsCommand.d.ts +0 -7
- package/dist/src/ui/commands/statsCommand.js +0 -118
- package/dist/src/ui/commands/statsCommand.js.map +0 -1
- package/dist/src/ui/commands/tasksCommand.d.ts +0 -7
- package/dist/src/ui/commands/tasksCommand.js +0 -17
- package/dist/src/ui/commands/tasksCommand.js.map +0 -1
- package/dist/src/ui/commands/terminalSetupCommand.d.ts +0 -13
- package/dist/src/ui/commands/terminalSetupCommand.js +0 -43
- package/dist/src/ui/commands/terminalSetupCommand.js.map +0 -1
- package/dist/src/ui/commands/themeCommand.d.ts +0 -7
- package/dist/src/ui/commands/themeCommand.js +0 -17
- package/dist/src/ui/commands/themeCommand.js.map +0 -1
- package/dist/src/ui/commands/toolsCommand.d.ts +0 -7
- package/dist/src/ui/commands/toolsCommand.js +0 -59
- package/dist/src/ui/commands/toolsCommand.js.map +0 -1
- package/dist/src/ui/commands/types.d.ts +0 -179
- package/dist/src/ui/commands/types.js +0 -16
- package/dist/src/ui/commands/types.js.map +0 -1
- package/dist/src/ui/commands/upgradeCommand.d.ts +0 -11
- package/dist/src/ui/commands/upgradeCommand.js +0 -58
- package/dist/src/ui/commands/upgradeCommand.js.map +0 -1
- package/dist/src/ui/commands/vimCommand.d.ts +0 -7
- package/dist/src/ui/commands/vimCommand.js +0 -25
- package/dist/src/ui/commands/vimCommand.js.map +0 -1
- package/dist/src/ui/commands/voiceCommand.d.ts +0 -7
- package/dist/src/ui/commands/voiceCommand.js +0 -29
- package/dist/src/ui/commands/voiceCommand.js.map +0 -1
- package/dist/src/ui/components/AboutBox.d.ts +0 -19
- package/dist/src/ui/components/AboutBox.js +0 -17
- package/dist/src/ui/components/AboutBox.js.map +0 -1
- package/dist/src/ui/components/AdminSettingsChangedDialog.d.ts +0 -6
- package/dist/src/ui/components/AdminSettingsChangedDialog.js +0 -27
- package/dist/src/ui/components/AdminSettingsChangedDialog.js.map +0 -1
- package/dist/src/ui/components/AgentConfigDialog.d.ts +0 -20
- package/dist/src/ui/components/AgentConfigDialog.js +0 -298
- package/dist/src/ui/components/AgentConfigDialog.js.map +0 -1
- package/dist/src/ui/components/AlternateBufferQuittingDisplay.d.ts +0 -6
- package/dist/src/ui/components/AlternateBufferQuittingDisplay.js +0 -30
- package/dist/src/ui/components/AlternateBufferQuittingDisplay.js.map +0 -1
- package/dist/src/ui/components/AnsiOutput.d.ts +0 -19
- package/dist/src/ui/components/AnsiOutput.js +0 -24
- package/dist/src/ui/components/AnsiOutput.js.map +0 -1
- package/dist/src/ui/components/AppHeader.d.ts +0 -11
- package/dist/src/ui/components/AppHeader.js +0 -74
- package/dist/src/ui/components/AppHeader.js.map +0 -1
- package/dist/src/ui/components/ApprovalModeIndicator.d.ts +0 -13
- package/dist/src/ui/components/ApprovalModeIndicator.js +0 -41
- package/dist/src/ui/components/ApprovalModeIndicator.js.map +0 -1
- package/dist/src/ui/components/AsciiArt.d.ts +0 -11
- package/dist/src/ui/components/AsciiArt.js +0 -54
- package/dist/src/ui/components/AsciiArt.js.map +0 -1
- package/dist/src/ui/components/AskUserDialog.d.ts +0 -46
- package/dist/src/ui/components/AskUserDialog.js +0 -739
- package/dist/src/ui/components/AskUserDialog.js.map +0 -1
- package/dist/src/ui/components/BackgroundTaskDisplay.d.ts +0 -16
- package/dist/src/ui/components/BackgroundTaskDisplay.js +0 -253
- package/dist/src/ui/components/BackgroundTaskDisplay.js.map +0 -1
- package/dist/src/ui/components/Banner.d.ts +0 -14
- package/dist/src/ui/components/Banner.js +0 -29
- package/dist/src/ui/components/Banner.js.map +0 -1
- package/dist/src/ui/components/Checklist.d.ts +0 -14
- package/dist/src/ui/components/Checklist.js +0 -32
- package/dist/src/ui/components/Checklist.js.map +0 -1
- package/dist/src/ui/components/ChecklistItem.d.ts +0 -17
- package/dist/src/ui/components/ChecklistItem.js +0 -40
- package/dist/src/ui/components/ChecklistItem.js.map +0 -1
- package/dist/src/ui/components/CliSpinner.d.ts +0 -9
- package/dist/src/ui/components/CliSpinner.js +0 -28
- package/dist/src/ui/components/CliSpinner.js.map +0 -1
- package/dist/src/ui/components/ColorsDisplay.d.ts +0 -12
- package/dist/src/ui/components/ColorsDisplay.js +0 -120
- package/dist/src/ui/components/ColorsDisplay.js.map +0 -1
- package/dist/src/ui/components/Composer.d.ts +0 -8
- package/dist/src/ui/components/Composer.js +0 -88
- package/dist/src/ui/components/Composer.js.map +0 -1
- package/dist/src/ui/components/ConfigExtensionDialog.d.ts +0 -19
- package/dist/src/ui/components/ConfigExtensionDialog.js +0 -156
- package/dist/src/ui/components/ConfigExtensionDialog.js.map +0 -1
- package/dist/src/ui/components/ConfigInitDisplay.d.ts +0 -8
- package/dist/src/ui/components/ConfigInitDisplay.js +0 -55
- package/dist/src/ui/components/ConfigInitDisplay.js.map +0 -1
- package/dist/src/ui/components/ConsentPrompt.d.ts +0 -13
- package/dist/src/ui/components/ConsentPrompt.js +0 -21
- package/dist/src/ui/components/ConsentPrompt.js.map +0 -1
- package/dist/src/ui/components/ConsoleSummaryDisplay.d.ts +0 -11
- package/dist/src/ui/components/ConsoleSummaryDisplay.js +0 -12
- package/dist/src/ui/components/ConsoleSummaryDisplay.js.map +0 -1
- package/dist/src/ui/components/ContextSummaryDisplay.d.ts +0 -21
- package/dist/src/ui/components/ContextSummaryDisplay.js +0 -72
- package/dist/src/ui/components/ContextSummaryDisplay.js.map +0 -1
- package/dist/src/ui/components/ContextUsageDisplay.d.ts +0 -10
- package/dist/src/ui/components/ContextUsageDisplay.js +0 -29
- package/dist/src/ui/components/ContextUsageDisplay.js.map +0 -1
- package/dist/src/ui/components/CopyModeWarning.d.ts +0 -7
- package/dist/src/ui/components/CopyModeWarning.js +0 -10
- package/dist/src/ui/components/CopyModeWarning.js.map +0 -1
- package/dist/src/ui/components/DebugProfiler.d.ts +0 -25
- package/dist/src/ui/components/DebugProfiler.js +0 -190
- package/dist/src/ui/components/DebugProfiler.js.map +0 -1
- package/dist/src/ui/components/DetailedMessagesDisplay.d.ts +0 -13
- package/dist/src/ui/components/DetailedMessagesDisplay.js +0 -60
- package/dist/src/ui/components/DetailedMessagesDisplay.js.map +0 -1
- package/dist/src/ui/components/DialogManager.d.ts +0 -12
- package/dist/src/ui/components/DialogManager.js +0 -164
- package/dist/src/ui/components/DialogManager.js.map +0 -1
- package/dist/src/ui/components/EditorSettingsDialog.d.ts +0 -15
- package/dist/src/ui/components/EditorSettingsDialog.js +0 -89
- package/dist/src/ui/components/EditorSettingsDialog.js.map +0 -1
- package/dist/src/ui/components/EmptyWalletDialog.d.ts +0 -22
- package/dist/src/ui/components/EmptyWalletDialog.js +0 -34
- package/dist/src/ui/components/EmptyWalletDialog.js.map +0 -1
- package/dist/src/ui/components/ExitPlanModeDialog.d.ts +0 -17
- package/dist/src/ui/components/ExitPlanModeDialog.js +0 -180
- package/dist/src/ui/components/ExitPlanModeDialog.js.map +0 -1
- package/dist/src/ui/components/ExitWarning.d.ts +0 -7
- package/dist/src/ui/components/ExitWarning.js +0 -10
- package/dist/src/ui/components/ExitWarning.js.map +0 -1
- package/dist/src/ui/components/FolderTrustDialog.d.ts +0 -19
- package/dist/src/ui/components/FolderTrustDialog.js +0 -119
- package/dist/src/ui/components/FolderTrustDialog.js.map +0 -1
- package/dist/src/ui/components/Footer.d.ts +0 -20
- package/dist/src/ui/components/Footer.js +0 -271
- package/dist/src/ui/components/Footer.js.map +0 -1
- package/dist/src/ui/components/FooterConfigDialog.d.ts +0 -11
- package/dist/src/ui/components/FooterConfigDialog.js +0 -214
- package/dist/src/ui/components/FooterConfigDialog.js.map +0 -1
- package/dist/src/ui/components/GeminiRespondingSpinner.d.ts +0 -23
- package/dist/src/ui/components/GeminiRespondingSpinner.js +0 -23
- package/dist/src/ui/components/GeminiRespondingSpinner.js.map +0 -1
- package/dist/src/ui/components/GeminiSpinner.d.ts +0 -13
- package/dist/src/ui/components/GeminiSpinner.js +0 -36
- package/dist/src/ui/components/GeminiSpinner.js.map +0 -1
- package/dist/src/ui/components/Header.d.ts +0 -13
- package/dist/src/ui/components/Header.js +0 -30
- package/dist/src/ui/components/Header.js.map +0 -1
- package/dist/src/ui/components/Help.d.ts +0 -12
- package/dist/src/ui/components/Help.js +0 -18
- package/dist/src/ui/components/Help.js.map +0 -1
- package/dist/src/ui/components/HistoryItemDisplay.d.ts +0 -22
- package/dist/src/ui/components/HistoryItemDisplay.js +0 -53
- package/dist/src/ui/components/HistoryItemDisplay.js.map +0 -1
- package/dist/src/ui/components/HookStatusDisplay.d.ts +0 -12
- package/dist/src/ui/components/HookStatusDisplay.js +0 -28
- package/dist/src/ui/components/HookStatusDisplay.js.map +0 -1
- package/dist/src/ui/components/HooksDialog.d.ts +0 -36
- package/dist/src/ui/components/HooksDialog.js +0 -84
- package/dist/src/ui/components/HooksDialog.js.map +0 -1
- package/dist/src/ui/components/IdeTrustChangeDialog.d.ts +0 -11
- package/dist/src/ui/components/IdeTrustChangeDialog.js +0 -37
- package/dist/src/ui/components/IdeTrustChangeDialog.js.map +0 -1
- package/dist/src/ui/components/InboxDialog.d.ts +0 -15
- package/dist/src/ui/components/InboxDialog.js +0 -757
- package/dist/src/ui/components/InboxDialog.js.map +0 -1
- package/dist/src/ui/components/InputPrompt.d.ts +0 -66
- package/dist/src/ui/components/InputPrompt.js +0 -1325
- package/dist/src/ui/components/InputPrompt.js.map +0 -1
- package/dist/src/ui/components/ListeningIndicator.d.ts +0 -10
- package/dist/src/ui/components/ListeningIndicator.js +0 -31
- package/dist/src/ui/components/ListeningIndicator.js.map +0 -1
- package/dist/src/ui/components/LoadingIndicator.d.ts +0 -25
- package/dist/src/ui/components/LoadingIndicator.js +0 -49
- package/dist/src/ui/components/LoadingIndicator.js.map +0 -1
- package/dist/src/ui/components/LogoutConfirmationDialog.d.ts +0 -15
- package/dist/src/ui/components/LogoutConfirmationDialog.js +0 -40
- package/dist/src/ui/components/LogoutConfirmationDialog.js.map +0 -1
- package/dist/src/ui/components/LoopDetectionConfirmation.d.ts +0 -13
- package/dist/src/ui/components/LoopDetectionConfirmation.js +0 -40
- package/dist/src/ui/components/LoopDetectionConfirmation.js.map +0 -1
- package/dist/src/ui/components/MainContent.d.ts +0 -6
- package/dist/src/ui/components/MainContent.js +0 -177
- package/dist/src/ui/components/MainContent.js.map +0 -1
- package/dist/src/ui/components/MemoryUsageDisplay.d.ts +0 -10
- package/dist/src/ui/components/MemoryUsageDisplay.js +0 -26
- package/dist/src/ui/components/MemoryUsageDisplay.js.map +0 -1
- package/dist/src/ui/components/ModelDialog.d.ts +0 -11
- package/dist/src/ui/components/ModelDialog.js +0 -269
- package/dist/src/ui/components/ModelDialog.js.map +0 -1
- package/dist/src/ui/components/ModelQuotaDisplay.d.ts +0 -18
- package/dist/src/ui/components/ModelQuotaDisplay.js +0 -105
- package/dist/src/ui/components/ModelQuotaDisplay.js.map +0 -1
- package/dist/src/ui/components/ModelStatsDisplay.d.ts +0 -16
- package/dist/src/ui/components/ModelStatsDisplay.js +0 -158
- package/dist/src/ui/components/ModelStatsDisplay.js.map +0 -1
- package/dist/src/ui/components/MultiFolderTrustDialog.d.ts +0 -23
- package/dist/src/ui/components/MultiFolderTrustDialog.js +0 -97
- package/dist/src/ui/components/MultiFolderTrustDialog.js.map +0 -1
- package/dist/src/ui/components/NewAgentsNotification.d.ts +0 -16
- package/dist/src/ui/components/NewAgentsNotification.js +0 -52
- package/dist/src/ui/components/NewAgentsNotification.js.map +0 -1
- package/dist/src/ui/components/Notifications.d.ts +0 -6
- package/dist/src/ui/components/Notifications.js +0 -108
- package/dist/src/ui/components/Notifications.js.map +0 -1
- package/dist/src/ui/components/OverageMenuDialog.d.ts +0 -22
- package/dist/src/ui/components/OverageMenuDialog.js +0 -33
- package/dist/src/ui/components/OverageMenuDialog.js.map +0 -1
- package/dist/src/ui/components/PermissionsModifyTrustDialog.d.ts +0 -16
- package/dist/src/ui/components/PermissionsModifyTrustDialog.js +0 -63
- package/dist/src/ui/components/PermissionsModifyTrustDialog.js.map +0 -1
- package/dist/src/ui/components/PolicyUpdateDialog.d.ts +0 -18
- package/dist/src/ui/components/PolicyUpdateDialog.js +0 -62
- package/dist/src/ui/components/PolicyUpdateDialog.js.map +0 -1
- package/dist/src/ui/components/ProQuotaDialog.d.ts +0 -19
- package/dist/src/ui/components/ProQuotaDialog.js +0 -85
- package/dist/src/ui/components/ProQuotaDialog.js.map +0 -1
- package/dist/src/ui/components/ProgressBar.d.ts +0 -13
- package/dist/src/ui/components/ProgressBar.js +0 -18
- package/dist/src/ui/components/ProgressBar.js.map +0 -1
- package/dist/src/ui/components/QueuedMessageDisplay.d.ts +0 -9
- package/dist/src/ui/components/QueuedMessageDisplay.js +0 -21
- package/dist/src/ui/components/QueuedMessageDisplay.js.map +0 -1
- package/dist/src/ui/components/QuittingDisplay.d.ts +0 -6
- package/dist/src/ui/components/QuittingDisplay.js +0 -21
- package/dist/src/ui/components/QuittingDisplay.js.map +0 -1
- package/dist/src/ui/components/QuotaDisplay.d.ts +0 -16
- package/dist/src/ui/components/QuotaDisplay.js +0 -37
- package/dist/src/ui/components/QuotaDisplay.js.map +0 -1
- package/dist/src/ui/components/QuotaStatsInfo.d.ts +0 -14
- package/dist/src/ui/components/QuotaStatsInfo.js +0 -24
- package/dist/src/ui/components/QuotaStatsInfo.js.map +0 -1
- package/dist/src/ui/components/RawMarkdownIndicator.d.ts +0 -7
- package/dist/src/ui/components/RawMarkdownIndicator.js +0 -11
- package/dist/src/ui/components/RawMarkdownIndicator.js.map +0 -1
- package/dist/src/ui/components/RewindConfirmation.d.ts +0 -21
- package/dist/src/ui/components/RewindConfirmation.js +0 -74
- package/dist/src/ui/components/RewindConfirmation.js.map +0 -1
- package/dist/src/ui/components/RewindViewer.d.ts +0 -15
- package/dist/src/ui/components/RewindViewer.js +0 -155
- package/dist/src/ui/components/RewindViewer.js.map +0 -1
- package/dist/src/ui/components/SessionBrowser/SessionBrowserEmpty.d.ts +0 -10
- package/dist/src/ui/components/SessionBrowser/SessionBrowserEmpty.js +0 -9
- package/dist/src/ui/components/SessionBrowser/SessionBrowserEmpty.js.map +0 -1
- package/dist/src/ui/components/SessionBrowser/SessionBrowserError.d.ts +0 -13
- package/dist/src/ui/components/SessionBrowser/SessionBrowserError.js +0 -9
- package/dist/src/ui/components/SessionBrowser/SessionBrowserError.js.map +0 -1
- package/dist/src/ui/components/SessionBrowser/SessionBrowserLoading.d.ts +0 -10
- package/dist/src/ui/components/SessionBrowser/SessionBrowserLoading.js +0 -9
- package/dist/src/ui/components/SessionBrowser/SessionBrowserLoading.js.map +0 -1
- package/dist/src/ui/components/SessionBrowser/SessionBrowserNav.d.ts +0 -23
- package/dist/src/ui/components/SessionBrowser/SessionBrowserNav.js +0 -18
- package/dist/src/ui/components/SessionBrowser/SessionBrowserNav.js.map +0 -1
- package/dist/src/ui/components/SessionBrowser/SessionListHeader.d.ts +0 -13
- package/dist/src/ui/components/SessionBrowser/SessionListHeader.js +0 -9
- package/dist/src/ui/components/SessionBrowser/SessionListHeader.js.map +0 -1
- package/dist/src/ui/components/SessionBrowser/utils.d.ts +0 -33
- package/dist/src/ui/components/SessionBrowser/utils.js +0 -100
- package/dist/src/ui/components/SessionBrowser/utils.js.map +0 -1
- package/dist/src/ui/components/SessionBrowser.d.ts +0 -98
- package/dist/src/ui/components/SessionBrowser.js +0 -371
- package/dist/src/ui/components/SessionBrowser.js.map +0 -1
- package/dist/src/ui/components/SessionSummaryDisplay.d.ts +0 -11
- package/dist/src/ui/components/SessionSummaryDisplay.js +0 -25
- package/dist/src/ui/components/SessionSummaryDisplay.js.map +0 -1
- package/dist/src/ui/components/SettingsDialog.d.ts +0 -14
- package/dist/src/ui/components/SettingsDialog.js +0 -285
- package/dist/src/ui/components/SettingsDialog.js.map +0 -1
- package/dist/src/ui/components/ShellInputPrompt.d.ts +0 -12
- package/dist/src/ui/components/ShellInputPrompt.js +0 -65
- package/dist/src/ui/components/ShellInputPrompt.js.map +0 -1
- package/dist/src/ui/components/ShellModeIndicator.d.ts +0 -7
- package/dist/src/ui/components/ShellModeIndicator.js +0 -6
- package/dist/src/ui/components/ShellModeIndicator.js.map +0 -1
- package/dist/src/ui/components/ShortcutsHelp.d.ts +0 -7
- package/dist/src/ui/components/ShortcutsHelp.js +0 -59
- package/dist/src/ui/components/ShortcutsHelp.js.map +0 -1
- package/dist/src/ui/components/ShowMoreLines.d.ts +0 -11
- package/dist/src/ui/components/ShowMoreLines.js +0 -27
- package/dist/src/ui/components/ShowMoreLines.js.map +0 -1
- package/dist/src/ui/components/StatsDisplay.d.ts +0 -20
- package/dist/src/ui/components/StatsDisplay.js +0 -94
- package/dist/src/ui/components/StatsDisplay.js.map +0 -1
- package/dist/src/ui/components/StatusDisplay.d.ts +0 -10
- package/dist/src/ui/components/StatusDisplay.js +0 -21
- package/dist/src/ui/components/StatusDisplay.js.map +0 -1
- package/dist/src/ui/components/StatusRow.d.ts +0 -32
- package/dist/src/ui/components/StatusRow.js +0 -183
- package/dist/src/ui/components/StatusRow.js.map +0 -1
- package/dist/src/ui/components/StickyHeader.d.ts +0 -16
- package/dist/src/ui/components/StickyHeader.js +0 -6
- package/dist/src/ui/components/StickyHeader.js.map +0 -1
- package/dist/src/ui/components/SuggestionsDisplay.d.ts +0 -30
- package/dist/src/ui/components/SuggestionsDisplay.js +0 -51
- package/dist/src/ui/components/SuggestionsDisplay.js.map +0 -1
- package/dist/src/ui/components/Table.d.ts +0 -21
- package/dist/src/ui/components/Table.js +0 -8
- package/dist/src/ui/components/Table.js.map +0 -1
- package/dist/src/ui/components/ThemeDialog.constants.d.ts +0 -26
- package/dist/src/ui/components/ThemeDialog.constants.js +0 -27
- package/dist/src/ui/components/ThemeDialog.constants.js.map +0 -1
- package/dist/src/ui/components/ThemeDialog.d.ts +0 -21
- package/dist/src/ui/components/ThemeDialog.js +0 -166
- package/dist/src/ui/components/ThemeDialog.js.map +0 -1
- package/dist/src/ui/components/ThemedGradient.d.ts +0 -8
- package/dist/src/ui/components/ThemedGradient.js +0 -17
- package/dist/src/ui/components/ThemedGradient.js.map +0 -1
- package/dist/src/ui/components/Tips.d.ts +0 -12
- package/dist/src/ui/components/Tips.js +0 -10
- package/dist/src/ui/components/Tips.js.map +0 -1
- package/dist/src/ui/components/ToastDisplay.d.ts +0 -10
- package/dist/src/ui/components/ToastDisplay.js +0 -51
- package/dist/src/ui/components/ToastDisplay.js.map +0 -1
- package/dist/src/ui/components/ToolConfirmationQueue.d.ts +0 -12
- package/dist/src/ui/components/ToolConfirmationQueue.js +0 -64
- package/dist/src/ui/components/ToolConfirmationQueue.js.map +0 -1
- package/dist/src/ui/components/ToolStatsDisplay.d.ts +0 -7
- package/dist/src/ui/components/ToolStatsDisplay.js +0 -42
- package/dist/src/ui/components/ToolStatsDisplay.js.map +0 -1
- package/dist/src/ui/components/UpdateNotification.d.ts +0 -10
- package/dist/src/ui/components/UpdateNotification.js +0 -11
- package/dist/src/ui/components/UpdateNotification.js.map +0 -1
- package/dist/src/ui/components/UserIdentity.d.ts +0 -12
- package/dist/src/ui/components/UserIdentity.js +0 -27
- package/dist/src/ui/components/UserIdentity.js.map +0 -1
- package/dist/src/ui/components/ValidationDialog.d.ts +0 -15
- package/dist/src/ui/components/ValidationDialog.js +0 -92
- package/dist/src/ui/components/ValidationDialog.js.map +0 -1
- package/dist/src/ui/components/VoiceModelDialog.d.ts +0 -11
- package/dist/src/ui/components/VoiceModelDialog.js +0 -124
- package/dist/src/ui/components/VoiceModelDialog.js.map +0 -1
- package/dist/src/ui/components/messages/CompressionMessage.d.ts +0 -11
- package/dist/src/ui/components/messages/CompressionMessage.js +0 -49
- package/dist/src/ui/components/messages/CompressionMessage.js.map +0 -1
- package/dist/src/ui/components/messages/DenseToolMessage.d.ts +0 -13
- package/dist/src/ui/components/messages/DenseToolMessage.js +0 -258
- package/dist/src/ui/components/messages/DenseToolMessage.js.map +0 -1
- package/dist/src/ui/components/messages/DiffRenderer.d.ts +0 -35
- package/dist/src/ui/components/messages/DiffRenderer.js +0 -271
- package/dist/src/ui/components/messages/DiffRenderer.js.map +0 -1
- package/dist/src/ui/components/messages/ErrorMessage.d.ts +0 -11
- package/dist/src/ui/components/messages/ErrorMessage.js +0 -10
- package/dist/src/ui/components/messages/ErrorMessage.js.map +0 -1
- package/dist/src/ui/components/messages/ExportSessionMessage.d.ts +0 -11
- package/dist/src/ui/components/messages/ExportSessionMessage.js +0 -16
- package/dist/src/ui/components/messages/ExportSessionMessage.js.map +0 -1
- package/dist/src/ui/components/messages/GeminiMessage.d.ts +0 -14
- package/dist/src/ui/components/messages/GeminiMessage.js +0 -16
- package/dist/src/ui/components/messages/GeminiMessage.js.map +0 -1
- package/dist/src/ui/components/messages/GeminiMessageContent.d.ts +0 -14
- package/dist/src/ui/components/messages/GeminiMessageContent.js +0 -20
- package/dist/src/ui/components/messages/GeminiMessageContent.js.map +0 -1
- package/dist/src/ui/components/messages/HintMessage.d.ts +0 -11
- package/dist/src/ui/components/messages/HintMessage.js +0 -16
- package/dist/src/ui/components/messages/HintMessage.js.map +0 -1
- package/dist/src/ui/components/messages/InfoMessage.d.ts +0 -16
- package/dist/src/ui/components/messages/InfoMessage.js +0 -12
- package/dist/src/ui/components/messages/InfoMessage.js.map +0 -1
- package/dist/src/ui/components/messages/ModelMessage.d.ts +0 -11
- package/dist/src/ui/components/messages/ModelMessage.js +0 -7
- package/dist/src/ui/components/messages/ModelMessage.js.map +0 -1
- package/dist/src/ui/components/messages/ShellToolMessage.d.ts +0 -13
- package/dist/src/ui/components/messages/ShellToolMessage.js +0 -85
- package/dist/src/ui/components/messages/ShellToolMessage.js.map +0 -1
- package/dist/src/ui/components/messages/SubagentGroupDisplay.d.ts +0 -17
- package/dist/src/ui/components/messages/SubagentGroupDisplay.js +0 -140
- package/dist/src/ui/components/messages/SubagentGroupDisplay.js.map +0 -1
- package/dist/src/ui/components/messages/SubagentHistoryMessage.d.ts +0 -13
- package/dist/src/ui/components/messages/SubagentHistoryMessage.js +0 -5
- package/dist/src/ui/components/messages/SubagentHistoryMessage.js.map +0 -1
- package/dist/src/ui/components/messages/SubagentProgressDisplay.d.ts +0 -14
- package/dist/src/ui/components/messages/SubagentProgressDisplay.js +0 -81
- package/dist/src/ui/components/messages/SubagentProgressDisplay.js.map +0 -1
- package/dist/src/ui/components/messages/ThinkingMessage.d.ts +0 -18
- package/dist/src/ui/components/messages/ThinkingMessage.js +0 -39
- package/dist/src/ui/components/messages/ThinkingMessage.js.map +0 -1
- package/dist/src/ui/components/messages/Todo.d.ts +0 -7
- package/dist/src/ui/components/messages/Todo.js +0 -42
- package/dist/src/ui/components/messages/Todo.js.map +0 -1
- package/dist/src/ui/components/messages/ToolConfirmationMessage.d.ts +0 -18
- package/dist/src/ui/components/messages/ToolConfirmationMessage.js +0 -578
- package/dist/src/ui/components/messages/ToolConfirmationMessage.js.map +0 -1
- package/dist/src/ui/components/messages/ToolGroupDisplay.d.ts +0 -13
- package/dist/src/ui/components/messages/ToolGroupDisplay.js +0 -79
- package/dist/src/ui/components/messages/ToolGroupDisplay.js.map +0 -1
- package/dist/src/ui/components/messages/ToolGroupMessage.d.ts +0 -21
- package/dist/src/ui/components/messages/ToolGroupMessage.js +0 -269
- package/dist/src/ui/components/messages/ToolGroupMessage.js.map +0 -1
- package/dist/src/ui/components/messages/ToolMessage.d.ts +0 -24
- package/dist/src/ui/components/messages/ToolMessage.js +0 -26
- package/dist/src/ui/components/messages/ToolMessage.js.map +0 -1
- package/dist/src/ui/components/messages/ToolResultDisplay.d.ts +0 -16
- package/dist/src/ui/components/messages/ToolResultDisplay.js +0 -147
- package/dist/src/ui/components/messages/ToolResultDisplay.js.map +0 -1
- package/dist/src/ui/components/messages/ToolShared.d.ts +0 -59
- package/dist/src/ui/components/messages/ToolShared.js +0 -126
- package/dist/src/ui/components/messages/ToolShared.js.map +0 -1
- package/dist/src/ui/components/messages/TopicMessage.d.ts +0 -15
- package/dist/src/ui/components/messages/TopicMessage.js +0 -57
- package/dist/src/ui/components/messages/TopicMessage.js.map +0 -1
- package/dist/src/ui/components/messages/UserMessage.d.ts +0 -12
- package/dist/src/ui/components/messages/UserMessage.js +0 -35
- package/dist/src/ui/components/messages/UserMessage.js.map +0 -1
- package/dist/src/ui/components/messages/UserShellMessage.d.ts +0 -12
- package/dist/src/ui/components/messages/UserShellMessage.js +0 -15
- package/dist/src/ui/components/messages/UserShellMessage.js.map +0 -1
- package/dist/src/ui/components/messages/WarningMessage.d.ts +0 -11
- package/dist/src/ui/components/messages/WarningMessage.js +0 -11
- package/dist/src/ui/components/messages/WarningMessage.js.map +0 -1
- package/dist/src/ui/components/shared/BaseSelectionList.d.ts +0 -42
- package/dist/src/ui/components/shared/BaseSelectionList.js +0 -98
- package/dist/src/ui/components/shared/BaseSelectionList.js.map +0 -1
- package/dist/src/ui/components/shared/BaseSettingsDialog.d.ts +0 -90
- package/dist/src/ui/components/shared/BaseSettingsDialog.js +0 -282
- package/dist/src/ui/components/shared/BaseSettingsDialog.js.map +0 -1
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.d.ts +0 -35
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.js +0 -14
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.js.map +0 -1
- package/dist/src/ui/components/shared/DialogFooter.d.ts +0 -21
- package/dist/src/ui/components/shared/DialogFooter.js +0 -18
- package/dist/src/ui/components/shared/DialogFooter.js.map +0 -1
- package/dist/src/ui/components/shared/EnumSelector.d.ts +0 -18
- package/dist/src/ui/components/shared/EnumSelector.js +0 -40
- package/dist/src/ui/components/shared/EnumSelector.js.map +0 -1
- package/dist/src/ui/components/shared/ExpandableText.d.ts +0 -17
- package/dist/src/ui/components/shared/ExpandableText.js +0 -88
- package/dist/src/ui/components/shared/ExpandableText.js.map +0 -1
- package/dist/src/ui/components/shared/HalfLinePaddedBox.d.ts +0 -26
- package/dist/src/ui/components/shared/HalfLinePaddedBox.js +0 -38
- package/dist/src/ui/components/shared/HalfLinePaddedBox.js.map +0 -1
- package/dist/src/ui/components/shared/HorizontalLine.d.ts +0 -12
- package/dist/src/ui/components/shared/HorizontalLine.js +0 -6
- package/dist/src/ui/components/shared/HorizontalLine.js.map +0 -1
- package/dist/src/ui/components/shared/MaxSizedBox.d.ts +0 -25
- package/dist/src/ui/components/shared/MaxSizedBox.js +0 -82
- package/dist/src/ui/components/shared/MaxSizedBox.js.map +0 -1
- package/dist/src/ui/components/shared/RadioButtonSelect.d.ts +0 -51
- package/dist/src/ui/components/shared/RadioButtonSelect.js +0 -23
- package/dist/src/ui/components/shared/RadioButtonSelect.js.map +0 -1
- package/dist/src/ui/components/shared/ScopeSelector.d.ts +0 -19
- package/dist/src/ui/components/shared/ScopeSelector.js +0 -15
- package/dist/src/ui/components/shared/ScopeSelector.js.map +0 -1
- package/dist/src/ui/components/shared/Scrollable.d.ts +0 -22
- package/dist/src/ui/components/shared/Scrollable.js +0 -168
- package/dist/src/ui/components/shared/Scrollable.js.map +0 -1
- package/dist/src/ui/components/shared/ScrollableList.d.ts +0 -24
- package/dist/src/ui/components/shared/ScrollableList.js +0 -168
- package/dist/src/ui/components/shared/ScrollableList.js.map +0 -1
- package/dist/src/ui/components/shared/SearchableList.d.ts +0 -61
- package/dist/src/ui/components/shared/SearchableList.js +0 -87
- package/dist/src/ui/components/shared/SearchableList.js.map +0 -1
- package/dist/src/ui/components/shared/SectionHeader.d.ts +0 -10
- package/dist/src/ui/components/shared/SectionHeader.js +0 -6
- package/dist/src/ui/components/shared/SectionHeader.js.map +0 -1
- package/dist/src/ui/components/shared/SlicingMaxSizedBox.d.ts +0 -19
- package/dist/src/ui/components/shared/SlicingMaxSizedBox.js +0 -75
- package/dist/src/ui/components/shared/SlicingMaxSizedBox.js.map +0 -1
- package/dist/src/ui/components/shared/TabHeader.d.ts +0 -51
- package/dist/src/ui/components/shared/TabHeader.js +0 -43
- package/dist/src/ui/components/shared/TabHeader.js.map +0 -1
- package/dist/src/ui/components/shared/TextInput.d.ts +0 -15
- package/dist/src/ui/components/shared/TextInput.js +0 -52
- package/dist/src/ui/components/shared/TextInput.js.map +0 -1
- package/dist/src/ui/components/shared/VirtualizedList.d.ts +0 -56
- package/dist/src/ui/components/shared/VirtualizedList.js +0 -474
- package/dist/src/ui/components/shared/VirtualizedList.js.map +0 -1
- package/dist/src/ui/components/shared/text-buffer.d.ts +0 -868
- package/dist/src/ui/components/shared/text-buffer.js +0 -2771
- package/dist/src/ui/components/shared/text-buffer.js.map +0 -1
- package/dist/src/ui/components/shared/vim-buffer-actions.d.ts +0 -132
- package/dist/src/ui/components/shared/vim-buffer-actions.js +0 -1307
- package/dist/src/ui/components/shared/vim-buffer-actions.js.map +0 -1
- package/dist/src/ui/components/triage/TriageDuplicates.d.ts +0 -11
- package/dist/src/ui/components/triage/TriageDuplicates.js +0 -625
- package/dist/src/ui/components/triage/TriageDuplicates.js.map +0 -1
- package/dist/src/ui/components/triage/TriageIssues.d.ts +0 -12
- package/dist/src/ui/components/triage/TriageIssues.js +0 -381
- package/dist/src/ui/components/triage/TriageIssues.js.map +0 -1
- package/dist/src/ui/components/views/AgentsStatus.d.ts +0 -13
- package/dist/src/ui/components/views/AgentsStatus.js +0 -24
- package/dist/src/ui/components/views/AgentsStatus.js.map +0 -1
- package/dist/src/ui/components/views/ChatList.d.ts +0 -12
- package/dist/src/ui/components/views/ChatList.js +0 -18
- package/dist/src/ui/components/views/ChatList.js.map +0 -1
- package/dist/src/ui/components/views/ExtensionDetails.d.ts +0 -18
- package/dist/src/ui/components/views/ExtensionDetails.js +0 -86
- package/dist/src/ui/components/views/ExtensionDetails.js.map +0 -1
- package/dist/src/ui/components/views/ExtensionRegistryView.d.ts +0 -15
- package/dist/src/ui/components/views/ExtensionRegistryView.js +0 -98
- package/dist/src/ui/components/views/ExtensionRegistryView.js.map +0 -1
- package/dist/src/ui/components/views/ExtensionsList.d.ts +0 -12
- package/dist/src/ui/components/views/ExtensionsList.js +0 -47
- package/dist/src/ui/components/views/ExtensionsList.js.map +0 -1
- package/dist/src/ui/components/views/GemmaStatus.d.ts +0 -10
- package/dist/src/ui/components/views/GemmaStatus.js +0 -12
- package/dist/src/ui/components/views/GemmaStatus.js.map +0 -1
- package/dist/src/ui/components/views/McpStatus.d.ts +0 -28
- package/dist/src/ui/components/views/McpStatus.js +0 -110
- package/dist/src/ui/components/views/McpStatus.js.map +0 -1
- package/dist/src/ui/components/views/SkillsList.d.ts +0 -13
- package/dist/src/ui/components/views/SkillsList.js +0 -19
- package/dist/src/ui/components/views/SkillsList.js.map +0 -1
- package/dist/src/ui/components/views/ToolsList.d.ts +0 -14
- package/dist/src/ui/components/views/ToolsList.js +0 -8
- package/dist/src/ui/components/views/ToolsList.js.map +0 -1
- package/dist/src/ui/constants/tips.d.ts +0 -6
- package/dist/src/ui/constants/tips.js +0 -164
- package/dist/src/ui/constants/tips.js.map +0 -1
- package/dist/src/ui/constants/wittyPhrases.d.ts +0 -6
- package/dist/src/ui/constants/wittyPhrases.js +0 -138
- package/dist/src/ui/constants/wittyPhrases.js.map +0 -1
- package/dist/src/ui/constants.d.ts +0 -42
- package/dist/src/ui/constants.js +0 -61
- package/dist/src/ui/constants.js.map +0 -1
- package/dist/src/ui/contexts/AppContext.d.ts +0 -13
- package/dist/src/ui/contexts/AppContext.js +0 -15
- package/dist/src/ui/contexts/AppContext.js.map +0 -1
- package/dist/src/ui/contexts/AskUserActionsContext.d.ts +0 -42
- package/dist/src/ui/contexts/AskUserActionsContext.js +0 -25
- package/dist/src/ui/contexts/AskUserActionsContext.js.map +0 -1
- package/dist/src/ui/contexts/ConfigContext.d.ts +0 -9
- package/dist/src/ui/contexts/ConfigContext.js +0 -16
- package/dist/src/ui/contexts/ConfigContext.js.map +0 -1
- package/dist/src/ui/contexts/InputContext.d.ts +0 -18
- package/dist/src/ui/contexts/InputContext.js +0 -15
- package/dist/src/ui/contexts/InputContext.js.map +0 -1
- package/dist/src/ui/contexts/KeypressContext.d.ts +0 -37
- package/dist/src/ui/contexts/KeypressContext.js +0 -781
- package/dist/src/ui/contexts/KeypressContext.js.map +0 -1
- package/dist/src/ui/contexts/MouseContext.d.ts +0 -20
- package/dist/src/ui/contexts/MouseContext.js +0 -131
- package/dist/src/ui/contexts/MouseContext.js.map +0 -1
- package/dist/src/ui/contexts/OverflowContext.d.ts +0 -19
- package/dist/src/ui/contexts/OverflowContext.js +0 -67
- package/dist/src/ui/contexts/OverflowContext.js.map +0 -1
- package/dist/src/ui/contexts/QuotaContext.d.ts +0 -19
- package/dist/src/ui/contexts/QuotaContext.js +0 -15
- package/dist/src/ui/contexts/QuotaContext.js.map +0 -1
- package/dist/src/ui/contexts/ScrollProvider.d.ts +0 -25
- package/dist/src/ui/contexts/ScrollProvider.js +0 -313
- package/dist/src/ui/contexts/ScrollProvider.js.map +0 -1
- package/dist/src/ui/contexts/SessionContext.d.ts +0 -47
- package/dist/src/ui/contexts/SessionContext.js +0 -168
- package/dist/src/ui/contexts/SessionContext.js.map +0 -1
- package/dist/src/ui/contexts/SettingsContext.d.ts +0 -17
- package/dist/src/ui/contexts/SettingsContext.js +0 -48
- package/dist/src/ui/contexts/SettingsContext.js.map +0 -1
- package/dist/src/ui/contexts/ShellFocusContext.d.ts +0 -8
- package/dist/src/ui/contexts/ShellFocusContext.js +0 -9
- package/dist/src/ui/contexts/ShellFocusContext.js.map +0 -1
- package/dist/src/ui/contexts/StreamingContext.d.ts +0 -9
- package/dist/src/ui/contexts/StreamingContext.js +0 -15
- package/dist/src/ui/contexts/StreamingContext.js.map +0 -1
- package/dist/src/ui/contexts/TerminalContext.d.ts +0 -17
- package/dist/src/ui/contexts/TerminalContext.js +0 -71
- package/dist/src/ui/contexts/TerminalContext.js.map +0 -1
- package/dist/src/ui/contexts/ToolActionsContext.d.ts +0 -27
- package/dist/src/ui/contexts/ToolActionsContext.js +0 -97
- package/dist/src/ui/contexts/ToolActionsContext.js.map +0 -1
- package/dist/src/ui/contexts/UIActionsContext.d.ts +0 -83
- package/dist/src/ui/contexts/UIActionsContext.js +0 -22
- package/dist/src/ui/contexts/UIActionsContext.js.map +0 -1
- package/dist/src/ui/contexts/UIStateContext.d.ts +0 -184
- package/dist/src/ui/contexts/UIStateContext.js +0 -18
- package/dist/src/ui/contexts/UIStateContext.js.map +0 -1
- package/dist/src/ui/contexts/VimModeContext.d.ts +0 -17
- package/dist/src/ui/contexts/VimModeContext.js +0 -39
- package/dist/src/ui/contexts/VimModeContext.js.map +0 -1
- package/dist/src/ui/debug.d.ts +0 -8
- package/dist/src/ui/debug.js +0 -11
- package/dist/src/ui/debug.js.map +0 -1
- package/dist/src/ui/editors/editorSettingsManager.d.ts +0 -18
- package/dist/src/ui/editors/editorSettingsManager.js +0 -38
- package/dist/src/ui/editors/editorSettingsManager.js.map +0 -1
- package/dist/src/ui/hooks/atCommandProcessor.d.ts +0 -56
- package/dist/src/ui/hooks/atCommandProcessor.js +0 -558
- package/dist/src/ui/hooks/atCommandProcessor.js.map +0 -1
- package/dist/src/ui/hooks/creditsFlowHandler.d.ts +0 -36
- package/dist/src/ui/hooks/creditsFlowHandler.js +0 -158
- package/dist/src/ui/hooks/creditsFlowHandler.js.map +0 -1
- package/dist/src/ui/hooks/shell-completions/gitProvider.d.ts +0 -7
- package/dist/src/ui/hooks/shell-completions/gitProvider.js +0 -73
- package/dist/src/ui/hooks/shell-completions/gitProvider.js.map +0 -1
- package/dist/src/ui/hooks/shell-completions/index.d.ts +0 -7
- package/dist/src/ui/hooks/shell-completions/index.js +0 -16
- package/dist/src/ui/hooks/shell-completions/index.js.map +0 -1
- package/dist/src/ui/hooks/shell-completions/npmProvider.d.ts +0 -7
- package/dist/src/ui/hooks/shell-completions/npmProvider.js +0 -67
- package/dist/src/ui/hooks/shell-completions/npmProvider.js.map +0 -1
- package/dist/src/ui/hooks/shell-completions/types.d.ts +0 -16
- package/dist/src/ui/hooks/shell-completions/types.js +0 -7
- package/dist/src/ui/hooks/shell-completions/types.js.map +0 -1
- package/dist/src/ui/hooks/shellReducer.d.ts +0 -55
- package/dist/src/ui/hooks/shellReducer.js +0 -125
- package/dist/src/ui/hooks/shellReducer.js.map +0 -1
- package/dist/src/ui/hooks/slashCommandProcessor.d.ts +0 -50
- package/dist/src/ui/hooks/slashCommandProcessor.js +0 -560
- package/dist/src/ui/hooks/slashCommandProcessor.js.map +0 -1
- package/dist/src/ui/hooks/toolMapping.d.ts +0 -18
- package/dist/src/ui/hooks/toolMapping.js +0 -105
- package/dist/src/ui/hooks/toolMapping.js.map +0 -1
- package/dist/src/ui/hooks/useAgentStream.d.ts +0 -44
- package/dist/src/ui/hooks/useAgentStream.js +0 -410
- package/dist/src/ui/hooks/useAgentStream.js.map +0 -1
- package/dist/src/ui/hooks/useAlternateBuffer.d.ts +0 -8
- package/dist/src/ui/hooks/useAlternateBuffer.js +0 -18
- package/dist/src/ui/hooks/useAlternateBuffer.js.map +0 -1
- package/dist/src/ui/hooks/useAnimatedScrollbar.d.ts +0 -10
- package/dist/src/ui/hooks/useAnimatedScrollbar.js +0 -101
- package/dist/src/ui/hooks/useAnimatedScrollbar.js.map +0 -1
- package/dist/src/ui/hooks/useApprovalModeIndicator.d.ts +0 -15
- package/dist/src/ui/hooks/useApprovalModeIndicator.js +0 -84
- package/dist/src/ui/hooks/useApprovalModeIndicator.js.map +0 -1
- package/dist/src/ui/hooks/useAtCompletion.d.ts +0 -23
- package/dist/src/ui/hooks/useAtCompletion.js +0 -348
- package/dist/src/ui/hooks/useAtCompletion.js.map +0 -1
- package/dist/src/ui/hooks/useBackgroundTaskManager.d.ts +0 -23
- package/dist/src/ui/hooks/useBackgroundTaskManager.js +0 -58
- package/dist/src/ui/hooks/useBackgroundTaskManager.js.map +0 -1
- package/dist/src/ui/hooks/useBanner.d.ts +0 -14
- package/dist/src/ui/hooks/useBanner.js +0 -56
- package/dist/src/ui/hooks/useBanner.js.map +0 -1
- package/dist/src/ui/hooks/useBatchedScroll.d.ts +0 -14
- package/dist/src/ui/hooks/useBatchedScroll.js +0 -27
- package/dist/src/ui/hooks/useBatchedScroll.js.map +0 -1
- package/dist/src/ui/hooks/useCommandCompletion.d.ts +0 -56
- package/dist/src/ui/hooks/useCommandCompletion.js +0 -344
- package/dist/src/ui/hooks/useCommandCompletion.js.map +0 -1
- package/dist/src/ui/hooks/useCompletion.d.ts +0 -23
- package/dist/src/ui/hooks/useCompletion.js +0 -84
- package/dist/src/ui/hooks/useCompletion.js.map +0 -1
- package/dist/src/ui/hooks/useComposerStatus.d.ts +0 -21
- package/dist/src/ui/hooks/useComposerStatus.js +0 -80
- package/dist/src/ui/hooks/useComposerStatus.js.map +0 -1
- package/dist/src/ui/hooks/useConfirmingTool.d.ts +0 -12
- package/dist/src/ui/hooks/useConfirmingTool.js +0 -19
- package/dist/src/ui/hooks/useConfirmingTool.js.map +0 -1
- package/dist/src/ui/hooks/useConsoleMessages.d.ts +0 -27
- package/dist/src/ui/hooks/useConsoleMessages.js +0 -140
- package/dist/src/ui/hooks/useConsoleMessages.js.map +0 -1
- package/dist/src/ui/hooks/useEditorSettings.d.ts +0 -16
- package/dist/src/ui/hooks/useEditorSettings.js +0 -46
- package/dist/src/ui/hooks/useEditorSettings.js.map +0 -1
- package/dist/src/ui/hooks/useExecutionLifecycle.d.ts +0 -28
- package/dist/src/ui/hooks/useExecutionLifecycle.js +0 -532
- package/dist/src/ui/hooks/useExecutionLifecycle.js.map +0 -1
- package/dist/src/ui/hooks/useExtensionRegistry.d.ts +0 -13
- package/dist/src/ui/hooks/useExtensionRegistry.js +0 -70
- package/dist/src/ui/hooks/useExtensionRegistry.js.map +0 -1
- package/dist/src/ui/hooks/useExtensionUpdates.d.ts +0 -32
- package/dist/src/ui/hooks/useExtensionUpdates.js +0 -174
- package/dist/src/ui/hooks/useExtensionUpdates.js.map +0 -1
- package/dist/src/ui/hooks/useFlickerDetector.d.ts +0 -15
- package/dist/src/ui/hooks/useFlickerDetector.js +0 -38
- package/dist/src/ui/hooks/useFlickerDetector.js.map +0 -1
- package/dist/src/ui/hooks/useFocus.d.ts +0 -13
- package/dist/src/ui/hooks/useFocus.js +0 -58
- package/dist/src/ui/hooks/useFocus.js.map +0 -1
- package/dist/src/ui/hooks/useFolderTrust.d.ts +0 -16
- package/dist/src/ui/hooks/useFolderTrust.js +0 -105
- package/dist/src/ui/hooks/useFolderTrust.js.map +0 -1
- package/dist/src/ui/hooks/useGeminiStream.d.ts +0 -43
- package/dist/src/ui/hooks/useGeminiStream.js +0 -1423
- package/dist/src/ui/hooks/useGeminiStream.js.map +0 -1
- package/dist/src/ui/hooks/useGitBranchName.d.ts +0 -6
- package/dist/src/ui/hooks/useGitBranchName.js +0 -78
- package/dist/src/ui/hooks/useGitBranchName.js.map +0 -1
- package/dist/src/ui/hooks/useHistoryManager.d.ts +0 -26
- package/dist/src/ui/hooks/useHistoryManager.js +0 -114
- package/dist/src/ui/hooks/useHistoryManager.js.map +0 -1
- package/dist/src/ui/hooks/useHookDisplayState.d.ts +0 -7
- package/dist/src/ui/hooks/useHookDisplayState.js +0 -84
- package/dist/src/ui/hooks/useHookDisplayState.js.map +0 -1
- package/dist/src/ui/hooks/useIdeTrustListener.d.ts +0 -16
- package/dist/src/ui/hooks/useIdeTrustListener.js +0 -67
- package/dist/src/ui/hooks/useIdeTrustListener.js.map +0 -1
- package/dist/src/ui/hooks/useInactivityTimer.d.ts +0 -14
- package/dist/src/ui/hooks/useInactivityTimer.js +0 -30
- package/dist/src/ui/hooks/useInactivityTimer.js.map +0 -1
- package/dist/src/ui/hooks/useIncludeDirsTrust.d.ts +0 -9
- package/dist/src/ui/hooks/useIncludeDirsTrust.js +0 -111
- package/dist/src/ui/hooks/useIncludeDirsTrust.js.map +0 -1
- package/dist/src/ui/hooks/useInlineEditBuffer.d.ts +0 -44
- package/dist/src/ui/hooks/useInlineEditBuffer.js +0 -113
- package/dist/src/ui/hooks/useInlineEditBuffer.js.map +0 -1
- package/dist/src/ui/hooks/useInputHistory.d.ts +0 -20
- package/dist/src/ui/hooks/useInputHistory.js +0 -91
- package/dist/src/ui/hooks/useInputHistory.js.map +0 -1
- package/dist/src/ui/hooks/useInputHistoryStore.d.ts +0 -19
- package/dist/src/ui/hooks/useInputHistoryStore.js +0 -82
- package/dist/src/ui/hooks/useInputHistoryStore.js.map +0 -1
- package/dist/src/ui/hooks/useKeyMatchers.d.ts +0 -17
- package/dist/src/ui/hooks/useKeyMatchers.js +0 -13
- package/dist/src/ui/hooks/useKeyMatchers.js.map +0 -1
- package/dist/src/ui/hooks/useKeypress.d.ts +0 -19
- package/dist/src/ui/hooks/useKeypress.js +0 -28
- package/dist/src/ui/hooks/useKeypress.js.map +0 -1
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.d.ts +0 -14
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.js +0 -19
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.js.map +0 -1
- package/dist/src/ui/hooks/useLoadingIndicator.d.ts +0 -23
- package/dist/src/ui/hooks/useLoadingIndicator.js +0 -55
- package/dist/src/ui/hooks/useLoadingIndicator.js.map +0 -1
- package/dist/src/ui/hooks/useLogger.d.ts +0 -10
- package/dist/src/ui/hooks/useLogger.js +0 -27
- package/dist/src/ui/hooks/useLogger.js.map +0 -1
- package/dist/src/ui/hooks/useMcpStatus.d.ts +0 -11
- package/dist/src/ui/hooks/useMcpStatus.js +0 -34
- package/dist/src/ui/hooks/useMcpStatus.js.map +0 -1
- package/dist/src/ui/hooks/useMemoryMonitor.d.ts +0 -13
- package/dist/src/ui/hooks/useMemoryMonitor.js +0 -28
- package/dist/src/ui/hooks/useMemoryMonitor.js.map +0 -1
- package/dist/src/ui/hooks/useMessageQueue.d.ts +0 -26
- package/dist/src/ui/hooks/useMessageQueue.js +0 -70
- package/dist/src/ui/hooks/useMessageQueue.js.map +0 -1
- package/dist/src/ui/hooks/useModelCommand.d.ts +0 -12
- package/dist/src/ui/hooks/useModelCommand.js +0 -21
- package/dist/src/ui/hooks/useModelCommand.js.map +0 -1
- package/dist/src/ui/hooks/useMouse.d.ts +0 -17
- package/dist/src/ui/hooks/useMouse.js +0 -27
- package/dist/src/ui/hooks/useMouse.js.map +0 -1
- package/dist/src/ui/hooks/useMouseClick.d.ts +0 -13
- package/dist/src/ui/hooks/useMouseClick.js +0 -36
- package/dist/src/ui/hooks/useMouseClick.js.map +0 -1
- package/dist/src/ui/hooks/usePermissionsModifyTrust.d.ts +0 -17
- package/dist/src/ui/hooks/usePermissionsModifyTrust.js +0 -115
- package/dist/src/ui/hooks/usePermissionsModifyTrust.js.map +0 -1
- package/dist/src/ui/hooks/usePhraseCycler.d.ts +0 -23
- package/dist/src/ui/hooks/usePhraseCycler.js +0 -142
- package/dist/src/ui/hooks/usePhraseCycler.js.map +0 -1
- package/dist/src/ui/hooks/usePrivacySettings.d.ts +0 -16
- package/dist/src/ui/hooks/usePrivacySettings.js +0 -110
- package/dist/src/ui/hooks/usePrivacySettings.js.map +0 -1
- package/dist/src/ui/hooks/usePromptCompletion.d.ts +0 -22
- package/dist/src/ui/hooks/usePromptCompletion.js +0 -169
- package/dist/src/ui/hooks/usePromptCompletion.js.map +0 -1
- package/dist/src/ui/hooks/useQuotaAndFallback.d.ts +0 -30
- package/dist/src/ui/hooks/useQuotaAndFallback.js +0 -223
- package/dist/src/ui/hooks/useQuotaAndFallback.js.map +0 -1
- package/dist/src/ui/hooks/useRegistrySearch.d.ts +0 -19
- package/dist/src/ui/hooks/useRegistrySearch.js +0 -35
- package/dist/src/ui/hooks/useRegistrySearch.js.map +0 -1
- package/dist/src/ui/hooks/useRepeatedKeyPress.d.ts +0 -15
- package/dist/src/ui/hooks/useRepeatedKeyPress.js +0 -50
- package/dist/src/ui/hooks/useRepeatedKeyPress.js.map +0 -1
- package/dist/src/ui/hooks/useReverseSearchCompletion.d.ts +0 -19
- package/dist/src/ui/hooks/useReverseSearchCompletion.js +0 -102
- package/dist/src/ui/hooks/useReverseSearchCompletion.js.map +0 -1
- package/dist/src/ui/hooks/useRewind.d.ts +0 -14
- package/dist/src/ui/hooks/useRewind.js +0 -31
- package/dist/src/ui/hooks/useRewind.js.map +0 -1
- package/dist/src/ui/hooks/useRunEventNotifications.d.ts +0 -24
- package/dist/src/ui/hooks/useRunEventNotifications.js +0 -95
- package/dist/src/ui/hooks/useRunEventNotifications.js.map +0 -1
- package/dist/src/ui/hooks/useSearchBuffer.d.ts +0 -11
- package/dist/src/ui/hooks/useSearchBuffer.js +0 -24
- package/dist/src/ui/hooks/useSearchBuffer.js.map +0 -1
- package/dist/src/ui/hooks/useSelectionList.d.ts +0 -38
- package/dist/src/ui/hooks/useSelectionList.js +0 -318
- package/dist/src/ui/hooks/useSelectionList.js.map +0 -1
- package/dist/src/ui/hooks/useSessionBrowser.d.ts +0 -26
- package/dist/src/ui/hooks/useSessionBrowser.js +0 -75
- package/dist/src/ui/hooks/useSessionBrowser.js.map +0 -1
- package/dist/src/ui/hooks/useSessionResume.d.ts +0 -31
- package/dist/src/ui/hooks/useSessionResume.js +0 -75
- package/dist/src/ui/hooks/useSessionResume.js.map +0 -1
- package/dist/src/ui/hooks/useSettingsCommand.d.ts +0 -10
- package/dist/src/ui/hooks/useSettingsCommand.js +0 -21
- package/dist/src/ui/hooks/useSettingsCommand.js.map +0 -1
- package/dist/src/ui/hooks/useSettingsNavigation.d.ts +0 -18
- package/dist/src/ui/hooks/useSettingsNavigation.js +0 -72
- package/dist/src/ui/hooks/useSettingsNavigation.js.map +0 -1
- package/dist/src/ui/hooks/useShellCompletion.d.ts +0 -50
- package/dist/src/ui/hooks/useShellCompletion.js +0 -502
- package/dist/src/ui/hooks/useShellCompletion.js.map +0 -1
- package/dist/src/ui/hooks/useShellHistory.d.ts +0 -14
- package/dist/src/ui/hooks/useShellHistory.js +0 -114
- package/dist/src/ui/hooks/useShellHistory.js.map +0 -1
- package/dist/src/ui/hooks/useShellInactivityStatus.d.ts +0 -26
- package/dist/src/ui/hooks/useShellInactivityStatus.js +0 -45
- package/dist/src/ui/hooks/useShellInactivityStatus.js.map +0 -1
- package/dist/src/ui/hooks/useSlashCompletion.d.ts +0 -23
- package/dist/src/ui/hooks/useSlashCompletion.js +0 -435
- package/dist/src/ui/hooks/useSlashCompletion.js.map +0 -1
- package/dist/src/ui/hooks/useSnowfall.d.ts +0 -6
- package/dist/src/ui/hooks/useSnowfall.js +0 -126
- package/dist/src/ui/hooks/useSnowfall.js.map +0 -1
- package/dist/src/ui/hooks/useStateAndRef.d.ts +0 -7
- package/dist/src/ui/hooks/useStateAndRef.js +0 -27
- package/dist/src/ui/hooks/useStateAndRef.js.map +0 -1
- package/dist/src/ui/hooks/useSuspend.d.ts +0 -14
- package/dist/src/ui/hooks/useSuspend.js +0 -102
- package/dist/src/ui/hooks/useSuspend.js.map +0 -1
- package/dist/src/ui/hooks/useTabbedNavigation.d.ts +0 -53
- package/dist/src/ui/hooks/useTabbedNavigation.js +0 -160
- package/dist/src/ui/hooks/useTabbedNavigation.js.map +0 -1
- package/dist/src/ui/hooks/useTerminalSize.d.ts +0 -9
- package/dist/src/ui/hooks/useTerminalSize.js +0 -26
- package/dist/src/ui/hooks/useTerminalSize.js.map +0 -1
- package/dist/src/ui/hooks/useTerminalTheme.d.ts +0 -8
- package/dist/src/ui/hooks/useTerminalTheme.js +0 -79
- package/dist/src/ui/hooks/useTerminalTheme.js.map +0 -1
- package/dist/src/ui/hooks/useThemeCommand.d.ts +0 -16
- package/dist/src/ui/hooks/useThemeCommand.js +0 -80
- package/dist/src/ui/hooks/useThemeCommand.js.map +0 -1
- package/dist/src/ui/hooks/useTimedMessage.d.ts +0 -10
- package/dist/src/ui/hooks/useTimedMessage.js +0 -32
- package/dist/src/ui/hooks/useTimedMessage.js.map +0 -1
- package/dist/src/ui/hooks/useTimer.d.ts +0 -12
- package/dist/src/ui/hooks/useTimer.js +0 -58
- package/dist/src/ui/hooks/useTimer.js.map +0 -1
- package/dist/src/ui/hooks/useTips.d.ts +0 -10
- package/dist/src/ui/hooks/useTips.js +0 -18
- package/dist/src/ui/hooks/useTips.js.map +0 -1
- package/dist/src/ui/hooks/useToolScheduler.d.ts +0 -48
- package/dist/src/ui/hooks/useToolScheduler.js +0 -213
- package/dist/src/ui/hooks/useToolScheduler.js.map +0 -1
- package/dist/src/ui/hooks/useTurnActivityMonitor.d.ts +0 -20
- package/dist/src/ui/hooks/useTurnActivityMonitor.js +0 -48
- package/dist/src/ui/hooks/useTurnActivityMonitor.js.map +0 -1
- package/dist/src/ui/hooks/useVisibilityToggle.d.ts +0 -12
- package/dist/src/ui/hooks/useVisibilityToggle.js +0 -60
- package/dist/src/ui/hooks/useVisibilityToggle.js.map +0 -1
- package/dist/src/ui/hooks/useVoiceMode.d.ts +0 -28
- package/dist/src/ui/hooks/useVoiceMode.js +0 -339
- package/dist/src/ui/hooks/useVoiceMode.js.map +0 -1
- package/dist/src/ui/hooks/useVoiceModelCommand.d.ts +0 -12
- package/dist/src/ui/hooks/useVoiceModelCommand.js +0 -21
- package/dist/src/ui/hooks/useVoiceModelCommand.js.map +0 -1
- package/dist/src/ui/hooks/vim.d.ts +0 -28
- package/dist/src/ui/hooks/vim.js +0 -1312
- package/dist/src/ui/hooks/vim.js.map +0 -1
- package/dist/src/ui/key/keyBindings.d.ts +0 -137
- package/dist/src/ui/key/keyBindings.js +0 -705
- package/dist/src/ui/key/keyBindings.js.map +0 -1
- package/dist/src/ui/key/keyMatchers.d.ts +0 -34
- package/dist/src/ui/key/keyMatchers.js +0 -43
- package/dist/src/ui/key/keyMatchers.js.map +0 -1
- package/dist/src/ui/key/keyToAnsi.d.ts +0 -15
- package/dist/src/ui/key/keyToAnsi.js +0 -45
- package/dist/src/ui/key/keyToAnsi.js.map +0 -1
- package/dist/src/ui/key/keybindingUtils.d.ts +0 -14
- package/dist/src/ui/key/keybindingUtils.js +0 -86
- package/dist/src/ui/key/keybindingUtils.js.map +0 -1
- package/dist/src/ui/layouts/DefaultAppLayout.d.ts +0 -7
- package/dist/src/ui/layouts/DefaultAppLayout.js +0 -30
- package/dist/src/ui/layouts/DefaultAppLayout.js.map +0 -1
- package/dist/src/ui/layouts/ScreenReaderAppLayout.d.ts +0 -7
- package/dist/src/ui/layouts/ScreenReaderAppLayout.js +0 -18
- package/dist/src/ui/layouts/ScreenReaderAppLayout.js.map +0 -1
- package/dist/src/ui/noninteractive/nonInteractiveUi.d.ts +0 -12
- package/dist/src/ui/noninteractive/nonInteractiveUi.js +0 -47
- package/dist/src/ui/noninteractive/nonInteractiveUi.js.map +0 -1
- package/dist/src/ui/privacy/CloudFreePrivacyNotice.d.ts +0 -12
- package/dist/src/ui/privacy/CloudFreePrivacyNotice.js +0 -45
- package/dist/src/ui/privacy/CloudFreePrivacyNotice.js.map +0 -1
- package/dist/src/ui/privacy/CloudPaidPrivacyNotice.d.ts +0 -10
- package/dist/src/ui/privacy/CloudPaidPrivacyNotice.js +0 -21
- package/dist/src/ui/privacy/CloudPaidPrivacyNotice.js.map +0 -1
- package/dist/src/ui/privacy/GeminiPrivacyNotice.d.ts +0 -10
- package/dist/src/ui/privacy/GeminiPrivacyNotice.js +0 -21
- package/dist/src/ui/privacy/GeminiPrivacyNotice.js.map +0 -1
- package/dist/src/ui/privacy/PrivacyNotice.d.ts +0 -12
- package/dist/src/ui/privacy/PrivacyNotice.js +0 -26
- package/dist/src/ui/privacy/PrivacyNotice.js.map +0 -1
- package/dist/src/ui/semantic-colors.d.ts +0 -7
- package/dist/src/ui/semantic-colors.js +0 -24
- package/dist/src/ui/semantic-colors.js.map +0 -1
- package/dist/src/ui/state/extensions.d.ts +0 -67
- package/dist/src/ui/state/extensions.js +0 -97
- package/dist/src/ui/state/extensions.js.map +0 -1
- package/dist/src/ui/textConstants.d.ts +0 -14
- package/dist/src/ui/textConstants.js +0 -15
- package/dist/src/ui/textConstants.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/ansi-dark.d.ts +0 -7
- package/dist/src/ui/themes/builtin/dark/ansi-dark.js +0 -154
- package/dist/src/ui/themes/builtin/dark/ansi-dark.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/atom-one-dark.d.ts +0 -7
- package/dist/src/ui/themes/builtin/dark/atom-one-dark.js +0 -140
- package/dist/src/ui/themes/builtin/dark/atom-one-dark.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/ayu-dark.d.ts +0 -7
- package/dist/src/ui/themes/builtin/dark/ayu-dark.js +0 -106
- package/dist/src/ui/themes/builtin/dark/ayu-dark.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/default-dark.d.ts +0 -7
- package/dist/src/ui/themes/builtin/dark/default-dark.js +0 -143
- package/dist/src/ui/themes/builtin/dark/default-dark.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/dracula-dark.d.ts +0 -7
- package/dist/src/ui/themes/builtin/dark/dracula-dark.js +0 -117
- package/dist/src/ui/themes/builtin/dark/dracula-dark.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/github-dark-colorblind.d.ts +0 -7
- package/dist/src/ui/themes/builtin/dark/github-dark-colorblind.js +0 -140
- package/dist/src/ui/themes/builtin/dark/github-dark-colorblind.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/github-dark.d.ts +0 -7
- package/dist/src/ui/themes/builtin/dark/github-dark.js +0 -140
- package/dist/src/ui/themes/builtin/dark/github-dark.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/holiday-dark.d.ts +0 -7
- package/dist/src/ui/themes/builtin/dark/holiday-dark.js +0 -163
- package/dist/src/ui/themes/builtin/dark/holiday-dark.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/shades-of-purple-dark.d.ts +0 -11
- package/dist/src/ui/themes/builtin/dark/shades-of-purple-dark.js +0 -306
- package/dist/src/ui/themes/builtin/dark/shades-of-purple-dark.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/solarized-dark.d.ts +0 -7
- package/dist/src/ui/themes/builtin/dark/solarized-dark.js +0 -198
- package/dist/src/ui/themes/builtin/dark/solarized-dark.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/tokyonight-dark.d.ts +0 -7
- package/dist/src/ui/themes/builtin/dark/tokyonight-dark.js +0 -147
- package/dist/src/ui/themes/builtin/dark/tokyonight-dark.js.map +0 -1
- package/dist/src/ui/themes/builtin/light/ansi-light.d.ts +0 -7
- package/dist/src/ui/themes/builtin/light/ansi-light.js +0 -143
- package/dist/src/ui/themes/builtin/light/ansi-light.js.map +0 -1
- package/dist/src/ui/themes/builtin/light/ayu-light.d.ts +0 -7
- package/dist/src/ui/themes/builtin/light/ayu-light.js +0 -132
- package/dist/src/ui/themes/builtin/light/ayu-light.js.map +0 -1
- package/dist/src/ui/themes/builtin/light/default-light.d.ts +0 -7
- package/dist/src/ui/themes/builtin/light/default-light.js +0 -100
- package/dist/src/ui/themes/builtin/light/default-light.js.map +0 -1
- package/dist/src/ui/themes/builtin/light/github-light-colorblind.d.ts +0 -7
- package/dist/src/ui/themes/builtin/light/github-light-colorblind.js +0 -140
- package/dist/src/ui/themes/builtin/light/github-light-colorblind.js.map +0 -1
- package/dist/src/ui/themes/builtin/light/github-light.d.ts +0 -7
- package/dist/src/ui/themes/builtin/light/github-light.js +0 -143
- package/dist/src/ui/themes/builtin/light/github-light.js.map +0 -1
- package/dist/src/ui/themes/builtin/light/googlecode-light.d.ts +0 -7
- package/dist/src/ui/themes/builtin/light/googlecode-light.js +0 -139
- package/dist/src/ui/themes/builtin/light/googlecode-light.js.map +0 -1
- package/dist/src/ui/themes/builtin/light/solarized-light.d.ts +0 -7
- package/dist/src/ui/themes/builtin/light/solarized-light.js +0 -198
- package/dist/src/ui/themes/builtin/light/solarized-light.js.map +0 -1
- package/dist/src/ui/themes/builtin/light/xcode-light.d.ts +0 -7
- package/dist/src/ui/themes/builtin/light/xcode-light.js +0 -148
- package/dist/src/ui/themes/builtin/light/xcode-light.js.map +0 -1
- package/dist/src/ui/themes/builtin/no-color.d.ts +0 -7
- package/dist/src/ui/themes/builtin/no-color.js +0 -125
- package/dist/src/ui/themes/builtin/no-color.js.map +0 -1
- package/dist/src/ui/themes/color-utils.d.ts +0 -45
- package/dist/src/ui/themes/color-utils.js +0 -106
- package/dist/src/ui/themes/color-utils.js.map +0 -1
- package/dist/src/ui/themes/semantic-tokens.d.ts +0 -42
- package/dist/src/ui/themes/semantic-tokens.js +0 -77
- package/dist/src/ui/themes/semantic-tokens.js.map +0 -1
- package/dist/src/ui/themes/theme-manager.d.ts +0 -134
- package/dist/src/ui/themes/theme-manager.js +0 -514
- package/dist/src/ui/themes/theme-manager.js.map +0 -1
- package/dist/src/ui/themes/theme.d.ts +0 -125
- package/dist/src/ui/themes/theme.js +0 -564
- package/dist/src/ui/themes/theme.js.map +0 -1
- package/dist/src/ui/types.d.ts +0 -422
- package/dist/src/ui/types.js +0 -102
- package/dist/src/ui/types.js.map +0 -1
- package/dist/src/ui/utils/CodeColorizer.d.ts +0 -33
- package/dist/src/ui/utils/CodeColorizer.js +0 -131
- package/dist/src/ui/utils/CodeColorizer.js.map +0 -1
- package/dist/src/ui/utils/ConsolePatcher.d.ts +0 -26
- package/dist/src/ui/utils/ConsolePatcher.js +0 -57
- package/dist/src/ui/utils/ConsolePatcher.js.map +0 -1
- package/dist/src/ui/utils/InlineMarkdownRenderer.d.ts +0 -12
- package/dist/src/ui/utils/InlineMarkdownRenderer.js +0 -18
- package/dist/src/ui/utils/InlineMarkdownRenderer.js.map +0 -1
- package/dist/src/ui/utils/MarkdownDisplay.d.ts +0 -15
- package/dist/src/ui/utils/MarkdownDisplay.js +0 -244
- package/dist/src/ui/utils/MarkdownDisplay.js.map +0 -1
- package/dist/src/ui/utils/TableRenderer.d.ts +0 -17
- package/dist/src/ui/utils/TableRenderer.js +0 -162
- package/dist/src/ui/utils/TableRenderer.js.map +0 -1
- package/dist/src/ui/utils/antigravityUtils.d.ts +0 -14
- package/dist/src/ui/utils/antigravityUtils.js +0 -41
- package/dist/src/ui/utils/antigravityUtils.js.map +0 -1
- package/dist/src/ui/utils/borderStyles.d.ts +0 -18
- package/dist/src/ui/utils/borderStyles.js +0 -83
- package/dist/src/ui/utils/borderStyles.js.map +0 -1
- package/dist/src/ui/utils/clipboardUtils.d.ts +0 -58
- package/dist/src/ui/utils/clipboardUtils.js +0 -485
- package/dist/src/ui/utils/clipboardUtils.js.map +0 -1
- package/dist/src/ui/utils/commandUtils.d.ts +0 -41
- package/dist/src/ui/utils/commandUtils.js +0 -260
- package/dist/src/ui/utils/commandUtils.js.map +0 -1
- package/dist/src/ui/utils/computeStats.d.ts +0 -10
- package/dist/src/ui/utils/computeStats.js +0 -62
- package/dist/src/ui/utils/computeStats.js.map +0 -1
- package/dist/src/ui/utils/confirmingTool.d.ts +0 -15
- package/dist/src/ui/utils/confirmingTool.js +0 -27
- package/dist/src/ui/utils/confirmingTool.js.map +0 -1
- package/dist/src/ui/utils/contextUsage.d.ts +0 -7
- package/dist/src/ui/utils/contextUsage.js +0 -20
- package/dist/src/ui/utils/contextUsage.js.map +0 -1
- package/dist/src/ui/utils/directoryUtils.d.ts +0 -24
- package/dist/src/ui/utils/directoryUtils.js +0 -125
- package/dist/src/ui/utils/directoryUtils.js.map +0 -1
- package/dist/src/ui/utils/displayUtils.d.ts +0 -29
- package/dist/src/ui/utils/displayUtils.js +0 -43
- package/dist/src/ui/utils/displayUtils.js.map +0 -1
- package/dist/src/ui/utils/editorUtils.d.ts +0 -19
- package/dist/src/ui/utils/editorUtils.js +0 -151
- package/dist/src/ui/utils/editorUtils.js.map +0 -1
- package/dist/src/ui/utils/fileUtils.d.ts +0 -10
- package/dist/src/ui/utils/fileUtils.js +0 -17
- package/dist/src/ui/utils/fileUtils.js.map +0 -1
- package/dist/src/ui/utils/formatters.d.ts +0 -23
- package/dist/src/ui/utils/formatters.js +0 -127
- package/dist/src/ui/utils/formatters.js.map +0 -1
- package/dist/src/ui/utils/highlight.d.ts +0 -12
- package/dist/src/ui/utils/highlight.js +0 -117
- package/dist/src/ui/utils/highlight.js.map +0 -1
- package/dist/src/ui/utils/historyExportUtils.d.ts +0 -21
- package/dist/src/ui/utils/historyExportUtils.js +0 -59
- package/dist/src/ui/utils/historyExportUtils.js.map +0 -1
- package/dist/src/ui/utils/historyUtils.d.ts +0 -15
- package/dist/src/ui/utils/historyUtils.js +0 -71
- package/dist/src/ui/utils/historyUtils.js.map +0 -1
- package/dist/src/ui/utils/inlineThinkingMode.d.ts +0 -8
- package/dist/src/ui/utils/inlineThinkingMode.js +0 -9
- package/dist/src/ui/utils/inlineThinkingMode.js.map +0 -1
- package/dist/src/ui/utils/input.d.ts +0 -17
- package/dist/src/ui/utils/input.js +0 -51
- package/dist/src/ui/utils/input.js.map +0 -1
- package/dist/src/ui/utils/isNarrowWidth.d.ts +0 -6
- package/dist/src/ui/utils/isNarrowWidth.js +0 -9
- package/dist/src/ui/utils/isNarrowWidth.js.map +0 -1
- package/dist/src/ui/utils/latexToUnicode.d.ts +0 -21
- package/dist/src/ui/utils/latexToUnicode.js +0 -538
- package/dist/src/ui/utils/latexToUnicode.js.map +0 -1
- package/dist/src/ui/utils/markdownParsingUtils.d.ts +0 -6
- package/dist/src/ui/utils/markdownParsingUtils.js +0 -185
- package/dist/src/ui/utils/markdownParsingUtils.js.map +0 -1
- package/dist/src/ui/utils/markdownUtilities.d.ts +0 -6
- package/dist/src/ui/utils/markdownUtilities.js +0 -110
- package/dist/src/ui/utils/markdownUtilities.js.map +0 -1
- package/dist/src/ui/utils/memorySnapshot.d.ts +0 -19
- package/dist/src/ui/utils/memorySnapshot.js +0 -28
- package/dist/src/ui/utils/memorySnapshot.js.map +0 -1
- package/dist/src/ui/utils/mouse.d.ts +0 -34
- package/dist/src/ui/utils/mouse.js +0 -183
- package/dist/src/ui/utils/mouse.js.map +0 -1
- package/dist/src/ui/utils/pendingAttentionNotification.d.ts +0 -12
- package/dist/src/ui/utils/pendingAttentionNotification.js +0 -101
- package/dist/src/ui/utils/pendingAttentionNotification.js.map +0 -1
- package/dist/src/ui/utils/rewindFileOps.d.ts +0 -47
- package/dist/src/ui/utils/rewindFileOps.js +0 -191
- package/dist/src/ui/utils/rewindFileOps.js.map +0 -1
- package/dist/src/ui/utils/shortcutsHelp.d.ts +0 -7
- package/dist/src/ui/utils/shortcutsHelp.js +0 -12
- package/dist/src/ui/utils/shortcutsHelp.js.map +0 -1
- package/dist/src/ui/utils/terminalCapabilityManager.d.ts +0 -59
- package/dist/src/ui/utils/terminalCapabilityManager.js +0 -261
- package/dist/src/ui/utils/terminalCapabilityManager.js.map +0 -1
- package/dist/src/ui/utils/terminalSetup.d.ts +0 -58
- package/dist/src/ui/utils/terminalSetup.js +0 -419
- package/dist/src/ui/utils/terminalSetup.js.map +0 -1
- package/dist/src/ui/utils/terminalUtils.d.ts +0 -23
- package/dist/src/ui/utils/terminalUtils.js +0 -38
- package/dist/src/ui/utils/terminalUtils.js.map +0 -1
- package/dist/src/ui/utils/textOutput.d.ts +0 -28
- package/dist/src/ui/utils/textOutput.js +0 -53
- package/dist/src/ui/utils/textOutput.js.map +0 -1
- package/dist/src/ui/utils/textUtils.d.ts +0 -68
- package/dist/src/ui/utils/textUtils.js +0 -236
- package/dist/src/ui/utils/textUtils.js.map +0 -1
- package/dist/src/ui/utils/toolLayoutUtils.d.ts +0 -49
- package/dist/src/ui/utils/toolLayoutUtils.js +0 -80
- package/dist/src/ui/utils/toolLayoutUtils.js.map +0 -1
- package/dist/src/ui/utils/ui-sizing.d.ts +0 -7
- package/dist/src/ui/utils/ui-sizing.js +0 -13
- package/dist/src/ui/utils/ui-sizing.js.map +0 -1
- package/dist/src/ui/utils/updateCheck.d.ts +0 -20
- package/dist/src/ui/utils/updateCheck.js +0 -96
- package/dist/src/ui/utils/updateCheck.js.map +0 -1
- package/dist/src/ui/utils/urlSecurityUtils.d.ts +0 -32
- package/dist/src/ui/utils/urlSecurityUtils.js +0 -71
- package/dist/src/ui/utils/urlSecurityUtils.js.map +0 -1
- package/dist/src/utils/activityLogger.d.ts +0 -99
- package/dist/src/utils/activityLogger.js +0 -796
- package/dist/src/utils/activityLogger.js.map +0 -1
- package/dist/src/utils/agentSettings.d.ts +0 -24
- package/dist/src/utils/agentSettings.js +0 -45
- package/dist/src/utils/agentSettings.js.map +0 -1
- package/dist/src/utils/agentUtils.d.ts +0 -15
- package/dist/src/utils/agentUtils.js +0 -50
- package/dist/src/utils/agentUtils.js.map +0 -1
- package/dist/src/utils/autoMemory.d.ts +0 -7
- package/dist/src/utils/autoMemory.js +0 -15
- package/dist/src/utils/autoMemory.js.map +0 -1
- package/dist/src/utils/cleanup.d.ts +0 -25
- package/dist/src/utils/cleanup.js +0 -171
- package/dist/src/utils/cleanup.js.map +0 -1
- package/dist/src/utils/commands.d.ts +0 -20
- package/dist/src/utils/commands.js +0 -68
- package/dist/src/utils/commands.js.map +0 -1
- package/dist/src/utils/commentJson.d.ts +0 -9
- package/dist/src/utils/commentJson.js +0 -137
- package/dist/src/utils/commentJson.js.map +0 -1
- package/dist/src/utils/deepMerge.d.ts +0 -9
- package/dist/src/utils/deepMerge.js +0 -65
- package/dist/src/utils/deepMerge.js.map +0 -1
- package/dist/src/utils/devtoolsService.d.ts +0 -30
- package/dist/src/utils/devtoolsService.js +0 -186
- package/dist/src/utils/devtoolsService.js.map +0 -1
- package/dist/src/utils/dialogScopeUtils.d.ts +0 -29
- package/dist/src/utils/dialogScopeUtils.js +0 -50
- package/dist/src/utils/dialogScopeUtils.js.map +0 -1
- package/dist/src/utils/envVarResolver.d.ts +0 -42
- package/dist/src/utils/envVarResolver.js +0 -121
- package/dist/src/utils/envVarResolver.js.map +0 -1
- package/dist/src/utils/errors.d.ts +0 -32
- package/dist/src/utils/errors.js +0 -180
- package/dist/src/utils/errors.js.map +0 -1
- package/dist/src/utils/events.d.ts +0 -34
- package/dist/src/utils/events.js +0 -23
- package/dist/src/utils/events.js.map +0 -1
- package/dist/src/utils/featureToggleUtils.d.ts +0 -55
- package/dist/src/utils/featureToggleUtils.js +0 -95
- package/dist/src/utils/featureToggleUtils.js.map +0 -1
- package/dist/src/utils/gitUtils.d.ts +0 -30
- package/dist/src/utils/gitUtils.js +0 -110
- package/dist/src/utils/gitUtils.js.map +0 -1
- package/dist/src/utils/handleAutoUpdate.d.ts +0 -19
- package/dist/src/utils/handleAutoUpdate.js +0 -179
- package/dist/src/utils/handleAutoUpdate.js.map +0 -1
- package/dist/src/utils/hookSettings.d.ts +0 -30
- package/dist/src/utils/hookSettings.js +0 -114
- package/dist/src/utils/hookSettings.js.map +0 -1
- package/dist/src/utils/hookUtils.d.ts +0 -12
- package/dist/src/utils/hookUtils.js +0 -51
- package/dist/src/utils/hookUtils.js.map +0 -1
- package/dist/src/utils/installationInfo.d.ts +0 -26
- package/dist/src/utils/installationInfo.js +0 -187
- package/dist/src/utils/installationInfo.js.map +0 -1
- package/dist/src/utils/jsonoutput.d.ts +0 -7
- package/dist/src/utils/jsonoutput.js +0 -42
- package/dist/src/utils/jsonoutput.js.map +0 -1
- package/dist/src/utils/logCleanup.d.ts +0 -12
- package/dist/src/utils/logCleanup.js +0 -58
- package/dist/src/utils/logCleanup.js.map +0 -1
- package/dist/src/utils/math.d.ts +0 -13
- package/dist/src/utils/math.js +0 -14
- package/dist/src/utils/math.js.map +0 -1
- package/dist/src/utils/persistentState.d.ts +0 -24
- package/dist/src/utils/persistentState.js +0 -66
- package/dist/src/utils/persistentState.js.map +0 -1
- package/dist/src/utils/processUtils.d.ts +0 -41
- package/dist/src/utils/processUtils.js +0 -99
- package/dist/src/utils/processUtils.js.map +0 -1
- package/dist/src/utils/readStdin.d.ts +0 -6
- package/dist/src/utils/readStdin.js +0 -87
- package/dist/src/utils/readStdin.js.map +0 -1
- package/dist/src/utils/relaunch.d.ts +0 -8
- package/dist/src/utils/relaunch.js +0 -61
- package/dist/src/utils/relaunch.js.map +0 -1
- package/dist/src/utils/resize-observer-polyfill.d.ts +0 -2
- package/dist/src/utils/resize-observer-polyfill.js +0 -7
- package/dist/src/utils/resize-observer-polyfill.js.map +0 -1
- package/dist/src/utils/resolvePath.d.ts +0 -6
- package/dist/src/utils/resolvePath.js +0 -21
- package/dist/src/utils/resolvePath.js.map +0 -1
- package/dist/src/utils/sandbox.d.ts +0 -7
- package/dist/src/utils/sandbox.js +0 -927
- package/dist/src/utils/sandbox.js.map +0 -1
- package/dist/src/utils/sandboxUtils.d.ts +0 -14
- package/dist/src/utils/sandboxUtils.js +0 -126
- package/dist/src/utils/sandboxUtils.js.map +0 -1
- package/dist/src/utils/sessionCleanup.d.ts +0 -41
- package/dist/src/utils/sessionCleanup.js +0 -481
- package/dist/src/utils/sessionCleanup.js.map +0 -1
- package/dist/src/utils/sessionUtils.d.ts +0 -174
- package/dist/src/utils/sessionUtils.js +0 -465
- package/dist/src/utils/sessionUtils.js.map +0 -1
- package/dist/src/utils/sessions.d.ts +0 -8
- package/dist/src/utils/sessions.js +0 -67
- package/dist/src/utils/sessions.js.map +0 -1
- package/dist/src/utils/settingsUtils.d.ts +0 -78
- package/dist/src/utils/settingsUtils.js +0 -284
- package/dist/src/utils/settingsUtils.js.map +0 -1
- package/dist/src/utils/skillSettings.d.ts +0 -23
- package/dist/src/utils/skillSettings.js +0 -52
- package/dist/src/utils/skillSettings.js.map +0 -1
- package/dist/src/utils/skillUtils.d.ts +0 -37
- package/dist/src/utils/skillUtils.js +0 -232
- package/dist/src/utils/skillUtils.js.map +0 -1
- package/dist/src/utils/spawnWrapper.d.ts +0 -8
- package/dist/src/utils/spawnWrapper.js +0 -8
- package/dist/src/utils/spawnWrapper.js.map +0 -1
- package/dist/src/utils/startupWarnings.d.ts +0 -6
- package/dist/src/utils/startupWarnings.js +0 -40
- package/dist/src/utils/startupWarnings.js.map +0 -1
- package/dist/src/utils/terminalNotifications.d.ts +0 -32
- package/dist/src/utils/terminalNotifications.js +0 -131
- package/dist/src/utils/terminalNotifications.js.map +0 -1
- package/dist/src/utils/terminalTheme.d.ts +0 -15
- package/dist/src/utils/terminalTheme.js +0 -50
- package/dist/src/utils/terminalTheme.js.map +0 -1
- package/dist/src/utils/tierUtils.d.ts +0 -12
- package/dist/src/utils/tierUtils.js +0 -15
- package/dist/src/utils/tierUtils.js.map +0 -1
- package/dist/src/utils/updateEventEmitter.d.ts +0 -12
- package/dist/src/utils/updateEventEmitter.js +0 -12
- package/dist/src/utils/updateEventEmitter.js.map +0 -1
- package/dist/src/utils/userStartupWarnings.d.ts +0 -10
- package/dist/src/utils/userStartupWarnings.js +0 -103
- package/dist/src/utils/userStartupWarnings.js.map +0 -1
- package/dist/src/utils/windowTitle.d.ts +0 -22
- package/dist/src/utils/windowTitle.js +0 -84
- package/dist/src/utils/windowTitle.js.map +0 -1
- package/dist/src/utils/worktreeSetup.d.ts +0 -14
- package/dist/src/utils/worktreeSetup.js +0 -32
- package/dist/src/utils/worktreeSetup.js.map +0 -1
- package/dist/src/validateNonInterActiveAuth.d.ts +0 -8
- package/dist/src/validateNonInterActiveAuth.js +0 -45
- package/dist/src/validateNonInterActiveAuth.js.map +0 -1
- package/dist/tsconfig.tsbuildinfo +0 -1
- /package/dist/{src/commands → commands}/extensions/examples/custom-commands/gemini-extension.json +0 -0
- /package/dist/{src/commands → commands}/extensions/examples/exclude-tools/gemini-extension.json +0 -0
- /package/dist/{src/commands → commands}/extensions/examples/hooks/gemini-extension.json +0 -0
- /package/dist/{src/commands → commands}/extensions/examples/hooks/hooks/hooks.json +0 -0
- /package/dist/{src/commands → commands}/extensions/examples/mcp-server/gemini-extension.json +0 -0
- /package/dist/{src/commands → commands}/extensions/examples/mcp-server/package.json +0 -0
- /package/dist/{src/commands → commands}/extensions/examples/policies/gemini-extension.json +0 -0
- /package/dist/{src/commands → commands}/extensions/examples/skills/gemini-extension.json +0 -0
- /package/dist/{src/commands → commands}/extensions/examples/themes-example/gemini-extension.json +0 -0
- /package/dist/{src/config/extension-manager-themes.spec.d.ts → services/types.js} +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AskUserDialog.js","sourceRoot":"","sources":["../../../../src/ui/components/AskUserDialog.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright 2025 Google LLC
|
|
4
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
import { type BackgroundTask } from '../hooks/useExecutionLifecycle.js';
|
|
7
|
-
interface BackgroundTaskDisplayProps {
|
|
8
|
-
shells: Map<number, BackgroundTask>;
|
|
9
|
-
activePid: number;
|
|
10
|
-
width: number;
|
|
11
|
-
height: number;
|
|
12
|
-
isFocused: boolean;
|
|
13
|
-
isListOpenProp: boolean;
|
|
14
|
-
}
|
|
15
|
-
export declare const BackgroundTaskDisplay: ({ shells, activePid, width, height, isFocused, isListOpenProp, }: BackgroundTaskDisplayProps) => import("react/jsx-runtime").JSX.Element;
|
|
16
|
-
export {};
|
|
@@ -1,253 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
/**
|
|
3
|
-
* @license
|
|
4
|
-
* Copyright 2025 Google LLC
|
|
5
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
6
|
-
*/
|
|
7
|
-
import { Box, Text } from 'ink';
|
|
8
|
-
;
|
|
9
|
-
import { useEffect, useState, useRef } from 'react';
|
|
10
|
-
import { useUIActions } from '../contexts/UIActionsContext.js';
|
|
11
|
-
import { theme } from '../semantic-colors.js';
|
|
12
|
-
import { ShellExecutionService, shortenPath, tildeifyPath, } from '@google/gemini-cli-core';
|
|
13
|
-
import { cpLen, cpSlice, getCachedStringWidth } from '../utils/textUtils.js';
|
|
14
|
-
import {} from '../hooks/useExecutionLifecycle.js';
|
|
15
|
-
import { Command } from '../key/keyMatchers.js';
|
|
16
|
-
import { useKeypress } from '../hooks/useKeypress.js';
|
|
17
|
-
import { formatCommand } from '../key/keybindingUtils.js';
|
|
18
|
-
import { ScrollableList, } from './shared/ScrollableList.js';
|
|
19
|
-
import { SCROLL_TO_ITEM_END } from './shared/VirtualizedList.js';
|
|
20
|
-
import { RadioButtonSelect, } from './shared/RadioButtonSelect.js';
|
|
21
|
-
import { useKeyMatchers } from '../hooks/useKeyMatchers.js';
|
|
22
|
-
const CONTENT_PADDING_X = 1;
|
|
23
|
-
const BORDER_WIDTH = 2; // Left and Right border
|
|
24
|
-
const MAIN_BORDER_HEIGHT = 2; // Top and Bottom border
|
|
25
|
-
const HEADER_HEIGHT = 1;
|
|
26
|
-
const FOOTER_HEIGHT = 1;
|
|
27
|
-
const TOTAL_OVERHEAD_HEIGHT = MAIN_BORDER_HEIGHT + HEADER_HEIGHT + FOOTER_HEIGHT;
|
|
28
|
-
const PROCESS_LIST_HEADER_HEIGHT = 3; // 1 padding top, 1 text, 1 margin bottom
|
|
29
|
-
const TAB_DISPLAY_HORIZONTAL_PADDING = 4;
|
|
30
|
-
const LOG_PATH_OVERHEAD = 7; // "Log: " (5) + paddingX (2)
|
|
31
|
-
const formatShellCommandForDisplay = (command, maxWidth) => {
|
|
32
|
-
const commandFirstLine = command.split('\n')[0];
|
|
33
|
-
return cpLen(commandFirstLine) > maxWidth
|
|
34
|
-
? `${cpSlice(commandFirstLine, 0, maxWidth - 3)}...`
|
|
35
|
-
: commandFirstLine;
|
|
36
|
-
};
|
|
37
|
-
export const BackgroundTaskDisplay = ({ shells, activePid, width, height, isFocused, isListOpenProp, }) => {
|
|
38
|
-
const keyMatchers = useKeyMatchers();
|
|
39
|
-
const { dismissBackgroundTask, setActiveBackgroundTaskPid, setIsBackgroundTaskListOpen, } = useUIActions();
|
|
40
|
-
const activeShell = shells.get(activePid);
|
|
41
|
-
const [output, setOutput] = useState(activeShell?.output || '');
|
|
42
|
-
const [highlightedPid, setHighlightedPid] = useState(activePid);
|
|
43
|
-
const outputRef = useRef(null);
|
|
44
|
-
const subscribedRef = useRef(false);
|
|
45
|
-
useEffect(() => {
|
|
46
|
-
if (!activePid)
|
|
47
|
-
return;
|
|
48
|
-
const ptyWidth = Math.max(1, width - BORDER_WIDTH - CONTENT_PADDING_X * 2);
|
|
49
|
-
const ptyHeight = Math.max(1, height - TOTAL_OVERHEAD_HEIGHT);
|
|
50
|
-
ShellExecutionService.resizePty(activePid, ptyWidth, ptyHeight);
|
|
51
|
-
}, [activePid, width, height]);
|
|
52
|
-
useEffect(() => {
|
|
53
|
-
if (!activePid) {
|
|
54
|
-
setOutput('');
|
|
55
|
-
return;
|
|
56
|
-
}
|
|
57
|
-
// Set initial output from the shell object
|
|
58
|
-
const shell = shells.get(activePid);
|
|
59
|
-
if (shell) {
|
|
60
|
-
setOutput(shell.output);
|
|
61
|
-
}
|
|
62
|
-
subscribedRef.current = false;
|
|
63
|
-
// Subscribe to live updates for the active shell
|
|
64
|
-
const unsubscribe = ShellExecutionService.subscribe(activePid, (event) => {
|
|
65
|
-
if (event.type === 'data') {
|
|
66
|
-
if (typeof event.chunk === 'string') {
|
|
67
|
-
if (!subscribedRef.current) {
|
|
68
|
-
// Initial synchronous update contains full history
|
|
69
|
-
setOutput(event.chunk);
|
|
70
|
-
}
|
|
71
|
-
else {
|
|
72
|
-
// Subsequent updates are deltas for child_process
|
|
73
|
-
setOutput((prev) => typeof prev === 'string' ? prev + event.chunk : event.chunk);
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
else {
|
|
77
|
-
// PTY always sends full AnsiOutput
|
|
78
|
-
setOutput(event.chunk);
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
});
|
|
82
|
-
subscribedRef.current = true;
|
|
83
|
-
return () => {
|
|
84
|
-
unsubscribe();
|
|
85
|
-
subscribedRef.current = false;
|
|
86
|
-
};
|
|
87
|
-
}, [activePid, shells]);
|
|
88
|
-
// Sync highlightedPid with activePid when list opens
|
|
89
|
-
useEffect(() => {
|
|
90
|
-
if (isListOpenProp) {
|
|
91
|
-
setHighlightedPid(activePid);
|
|
92
|
-
}
|
|
93
|
-
}, [isListOpenProp, activePid]);
|
|
94
|
-
useKeypress((key) => {
|
|
95
|
-
if (!activeShell)
|
|
96
|
-
return;
|
|
97
|
-
if (isListOpenProp) {
|
|
98
|
-
// Navigation (Up/Down/Enter) is handled by RadioButtonSelect
|
|
99
|
-
// We only handle special keys not consumed by RadioButtonSelect or overriding them if needed
|
|
100
|
-
// RadioButtonSelect handles Enter -> onSelect
|
|
101
|
-
if (keyMatchers[Command.BACKGROUND_SHELL_ESCAPE](key)) {
|
|
102
|
-
setIsBackgroundTaskListOpen(false);
|
|
103
|
-
return true;
|
|
104
|
-
}
|
|
105
|
-
if (keyMatchers[Command.KILL_BACKGROUND_SHELL](key)) {
|
|
106
|
-
if (highlightedPid) {
|
|
107
|
-
void dismissBackgroundTask(highlightedPid);
|
|
108
|
-
// If we killed the active one, the list might update via props
|
|
109
|
-
}
|
|
110
|
-
return true;
|
|
111
|
-
}
|
|
112
|
-
if (keyMatchers[Command.TOGGLE_BACKGROUND_SHELL_LIST](key)) {
|
|
113
|
-
if (highlightedPid) {
|
|
114
|
-
setActiveBackgroundTaskPid(highlightedPid);
|
|
115
|
-
}
|
|
116
|
-
setIsBackgroundTaskListOpen(false);
|
|
117
|
-
return true;
|
|
118
|
-
}
|
|
119
|
-
return false;
|
|
120
|
-
}
|
|
121
|
-
if (keyMatchers[Command.TOGGLE_BACKGROUND_SHELL](key)) {
|
|
122
|
-
return false;
|
|
123
|
-
}
|
|
124
|
-
if (keyMatchers[Command.KILL_BACKGROUND_SHELL](key)) {
|
|
125
|
-
void dismissBackgroundTask(activeShell.pid);
|
|
126
|
-
return true;
|
|
127
|
-
}
|
|
128
|
-
if (keyMatchers[Command.TOGGLE_BACKGROUND_SHELL_LIST](key)) {
|
|
129
|
-
setIsBackgroundTaskListOpen(true);
|
|
130
|
-
return true;
|
|
131
|
-
}
|
|
132
|
-
if (keyMatchers[Command.BACKGROUND_SHELL_SELECT](key)) {
|
|
133
|
-
ShellExecutionService.writeToPty(activeShell.pid, '\r');
|
|
134
|
-
return true;
|
|
135
|
-
}
|
|
136
|
-
else if (keyMatchers[Command.DELETE_CHAR_LEFT](key)) {
|
|
137
|
-
ShellExecutionService.writeToPty(activeShell.pid, '\b');
|
|
138
|
-
return true;
|
|
139
|
-
}
|
|
140
|
-
else if (key.sequence) {
|
|
141
|
-
ShellExecutionService.writeToPty(activeShell.pid, key.sequence);
|
|
142
|
-
return true;
|
|
143
|
-
}
|
|
144
|
-
return false;
|
|
145
|
-
}, { isActive: isFocused && !!activeShell });
|
|
146
|
-
const helpTextParts = [
|
|
147
|
-
{ label: 'Close', command: Command.TOGGLE_BACKGROUND_SHELL },
|
|
148
|
-
{ label: 'Kill', command: Command.KILL_BACKGROUND_SHELL },
|
|
149
|
-
{ label: 'List', command: Command.TOGGLE_BACKGROUND_SHELL_LIST },
|
|
150
|
-
];
|
|
151
|
-
const helpTextStr = helpTextParts
|
|
152
|
-
.map((p) => `${p.label} (${formatCommand(p.command)})`)
|
|
153
|
-
.join(' | ');
|
|
154
|
-
const renderHelpText = () => (_jsx(Text, { children: helpTextParts.map((p, i) => (_jsxs(Text, { children: [i > 0 ? ' | ' : '', p.label, " (", _jsx(Text, { color: theme.text.accent, children: formatCommand(p.command) }), ")"] }, p.label))) }));
|
|
155
|
-
const renderTabs = () => {
|
|
156
|
-
const shellList = Array.from(shells.values()).filter((s) => s.status === 'running');
|
|
157
|
-
const pidInfoWidth = getCachedStringWidth(` (PID: ${activePid}) ${isFocused ? '(Focused)' : ''}`);
|
|
158
|
-
const availableWidth = width -
|
|
159
|
-
TAB_DISPLAY_HORIZONTAL_PADDING -
|
|
160
|
-
getCachedStringWidth(helpTextStr) -
|
|
161
|
-
pidInfoWidth;
|
|
162
|
-
let currentWidth = 0;
|
|
163
|
-
const tabs = [];
|
|
164
|
-
for (let i = 0; i < shellList.length; i++) {
|
|
165
|
-
const shell = shellList[i];
|
|
166
|
-
// Account for " i: " (length 4 if i < 9) and spaces (length 2)
|
|
167
|
-
const labelOverhead = 4 + (i + 1).toString().length;
|
|
168
|
-
const maxTabLabelLength = Math.max(1, Math.floor(availableWidth / shellList.length) - labelOverhead);
|
|
169
|
-
const truncatedCommand = formatShellCommandForDisplay(shell.command, maxTabLabelLength);
|
|
170
|
-
const label = ` ${i + 1}: ${truncatedCommand} `;
|
|
171
|
-
const labelWidth = getCachedStringWidth(label);
|
|
172
|
-
// If this is the only shell, we MUST show it (truncated if necessary)
|
|
173
|
-
// even if it exceeds availableWidth, as there are no alternatives.
|
|
174
|
-
if (i > 0 && currentWidth + labelWidth > availableWidth) {
|
|
175
|
-
break;
|
|
176
|
-
}
|
|
177
|
-
const isActive = shell.pid === activePid;
|
|
178
|
-
tabs.push(_jsx(Text, { color: isActive ? theme.text.primary : theme.text.secondary, bold: isActive, children: label }, shell.pid));
|
|
179
|
-
currentWidth += labelWidth;
|
|
180
|
-
}
|
|
181
|
-
if (shellList.length > tabs.length && !isListOpenProp) {
|
|
182
|
-
const overflowLabel = ` ... (${formatCommand(Command.TOGGLE_BACKGROUND_SHELL_LIST)}) `;
|
|
183
|
-
const overflowWidth = getCachedStringWidth(overflowLabel);
|
|
184
|
-
// If we only have one tab, ensure we don't show the overflow if it's too cramped
|
|
185
|
-
// We want at least 10 chars for the overflow or we favor the first tab.
|
|
186
|
-
const shouldShowOverflow = tabs.length > 1 || availableWidth - currentWidth >= overflowWidth;
|
|
187
|
-
if (shouldShowOverflow) {
|
|
188
|
-
tabs.push(_jsx(Text, { color: theme.status.warning, bold: true, children: overflowLabel }, "overflow"));
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
return tabs;
|
|
192
|
-
};
|
|
193
|
-
const renderProcessList = () => {
|
|
194
|
-
const maxCommandLength = Math.max(0, width - BORDER_WIDTH - CONTENT_PADDING_X * 2 - 10);
|
|
195
|
-
const items = Array.from(shells.values()).map((shell, index) => {
|
|
196
|
-
const truncatedCommand = formatShellCommandForDisplay(shell.command, maxCommandLength);
|
|
197
|
-
let label = `${index + 1}: ${truncatedCommand} (PID: ${shell.pid})`;
|
|
198
|
-
if (shell.status === 'exited') {
|
|
199
|
-
label += ` (Exit Code: ${shell.exitCode})`;
|
|
200
|
-
}
|
|
201
|
-
return {
|
|
202
|
-
key: shell.pid.toString(),
|
|
203
|
-
value: shell.pid,
|
|
204
|
-
label,
|
|
205
|
-
};
|
|
206
|
-
});
|
|
207
|
-
const initialIndex = items.findIndex((item) => item.value === activePid);
|
|
208
|
-
return (_jsxs(Box, { flexDirection: "column", height: "100%", width: "100%", children: [_jsx(Box, { flexShrink: 0, marginBottom: 1, paddingTop: 1, children: _jsx(Text, { bold: true, children: `Select Process (${formatCommand(Command.BACKGROUND_SHELL_SELECT)} to select, ${formatCommand(Command.KILL_BACKGROUND_SHELL)} to kill, ${formatCommand(Command.BACKGROUND_SHELL_ESCAPE)} to cancel):` }) }), _jsx(Box, { flexGrow: 1, width: "100%", children: _jsx(RadioButtonSelect, { items: items, initialIndex: initialIndex >= 0 ? initialIndex : 0, onSelect: (pid) => {
|
|
209
|
-
setActiveBackgroundTaskPid(pid);
|
|
210
|
-
setIsBackgroundTaskListOpen(false);
|
|
211
|
-
}, onHighlight: (pid) => setHighlightedPid(pid), isFocused: isFocused, maxItemsToShow: Math.max(1, height - TOTAL_OVERHEAD_HEIGHT - PROCESS_LIST_HEADER_HEIGHT), renderItem: (item, { isSelected: _isSelected, titleColor: _titleColor }) => {
|
|
212
|
-
// Custom render to handle exit code coloring if needed,
|
|
213
|
-
// or just use default. The default RadioButtonSelect renderer
|
|
214
|
-
// handles standard label.
|
|
215
|
-
// But we want to color exit code differently?
|
|
216
|
-
// The previous implementation colored exit code green/red.
|
|
217
|
-
// Let's reimplement that.
|
|
218
|
-
// We need access to shell details here.
|
|
219
|
-
// We can put shell details in the item or lookup.
|
|
220
|
-
// Lookup from shells map.
|
|
221
|
-
const shell = shells.get(item.value);
|
|
222
|
-
if (!shell)
|
|
223
|
-
return _jsx(Text, { children: item.label });
|
|
224
|
-
const truncatedCommand = formatShellCommandForDisplay(shell.command, maxCommandLength);
|
|
225
|
-
return (_jsxs(Text, { children: [truncatedCommand, " (PID: ", shell.pid, ")", shell.status === 'exited' ? (_jsxs(Text, { color: shell.exitCode === 0
|
|
226
|
-
? theme.status.success
|
|
227
|
-
: theme.status.error, children: [' ', "(Exit Code: ", shell.exitCode, ")"] })) : null] }));
|
|
228
|
-
} }) })] }));
|
|
229
|
-
};
|
|
230
|
-
const renderFooter = () => {
|
|
231
|
-
const pidToDisplay = isListOpenProp
|
|
232
|
-
? (highlightedPid ?? activePid)
|
|
233
|
-
: activePid;
|
|
234
|
-
if (!pidToDisplay)
|
|
235
|
-
return null;
|
|
236
|
-
const logPath = ShellExecutionService.getLogFilePath(pidToDisplay);
|
|
237
|
-
const displayPath = shortenPath(tildeifyPath(logPath), width - LOG_PATH_OVERHEAD);
|
|
238
|
-
return (_jsx(Box, { paddingX: 1, children: _jsxs(Text, { color: theme.text.secondary, children: ["Log: ", displayPath] }) }));
|
|
239
|
-
};
|
|
240
|
-
const renderOutput = () => {
|
|
241
|
-
const lines = typeof output === 'string' ? output.split('\n') : output;
|
|
242
|
-
return (_jsx(ScrollableList, { ref: outputRef, data: lines, renderItem: ({ item: line, index }) => {
|
|
243
|
-
if (typeof line === 'string') {
|
|
244
|
-
return _jsx(Text, { children: line }, index);
|
|
245
|
-
}
|
|
246
|
-
return (_jsx(Text, { wrap: "truncate", children: line.length > 0
|
|
247
|
-
? line.map((token, tokenIndex) => (_jsx(Text, { color: token.fg, backgroundColor: token.bg, inverse: token.inverse, dimColor: token.dim, bold: token.bold, italic: token.italic, underline: token.underline, children: token.text }, tokenIndex)))
|
|
248
|
-
: null }, index));
|
|
249
|
-
}, estimatedItemHeight: () => 1, keyExtractor: (_, index) => index.toString(), hasFocus: isFocused, initialScrollIndex: SCROLL_TO_ITEM_END }));
|
|
250
|
-
};
|
|
251
|
-
return (_jsxs(Box, { flexDirection: "column", height: "100%", width: "100%", borderStyle: "single", borderColor: isFocused ? theme.ui.focus : undefined, children: [_jsxs(Box, { flexDirection: "row", justifyContent: "space-between", borderStyle: "single", borderBottom: false, borderLeft: false, borderRight: false, borderTop: false, paddingX: 1, borderColor: isFocused ? theme.ui.focus : undefined, children: [_jsxs(Box, { flexDirection: "row", children: [renderTabs(), _jsxs(Text, { bold: true, children: [' ', "(PID: ", activeShell?.pid, ") ", isFocused ? '(Focused)' : ''] })] }), renderHelpText()] }), _jsx(Box, { flexGrow: 1, overflow: "hidden", paddingX: CONTENT_PADDING_X, children: isListOpenProp ? renderProcessList() : renderOutput() }), renderFooter()] }));
|
|
252
|
-
};
|
|
253
|
-
//# sourceMappingURL=BackgroundTaskDisplay.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BackgroundTaskDisplay.js","sourceRoot":"","sources":["../../../../src/ui/components/BackgroundTaskDisplay.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright 2025 Google LLC
|
|
4
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
import type { ReactNode } from 'react';
|
|
7
|
-
export declare function getFormattedBannerContent(rawText: string, isWarning: boolean, subsequentLineColor: string): ReactNode;
|
|
8
|
-
interface BannerProps {
|
|
9
|
-
bannerText: string;
|
|
10
|
-
isWarning: boolean;
|
|
11
|
-
width: number;
|
|
12
|
-
}
|
|
13
|
-
export declare const Banner: ({ bannerText, isWarning, width }: BannerProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
-
export {};
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
/**
|
|
3
|
-
* @license
|
|
4
|
-
* Copyright 2025 Google LLC
|
|
5
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
6
|
-
*/
|
|
7
|
-
import { Box, Text } from 'ink';
|
|
8
|
-
;
|
|
9
|
-
import { ThemedGradient } from './ThemedGradient.js';
|
|
10
|
-
import { theme } from '../semantic-colors.js';
|
|
11
|
-
export function getFormattedBannerContent(rawText, isWarning, subsequentLineColor) {
|
|
12
|
-
const text = rawText.replace(/\\n/g, '\n');
|
|
13
|
-
const lines = text.split('\n');
|
|
14
|
-
return lines.map((line, index) => {
|
|
15
|
-
if (index === 0) {
|
|
16
|
-
if (isWarning) {
|
|
17
|
-
return (_jsx(Text, { bold: true, color: theme.status.warning, children: line }, index));
|
|
18
|
-
}
|
|
19
|
-
return (_jsx(ThemedGradient, { children: _jsx(Text, { bold: true, children: line }) }, index));
|
|
20
|
-
}
|
|
21
|
-
return (_jsx(Text, { color: subsequentLineColor, children: line }, index));
|
|
22
|
-
});
|
|
23
|
-
}
|
|
24
|
-
export const Banner = ({ bannerText, isWarning, width }) => {
|
|
25
|
-
const subsequentLineColor = theme.text.primary;
|
|
26
|
-
const formattedBannerContent = getFormattedBannerContent(bannerText, isWarning, subsequentLineColor);
|
|
27
|
-
return (_jsx(Box, { flexDirection: "column", borderStyle: "round", borderColor: isWarning ? theme.status.warning : theme.border.default, width: width, paddingLeft: 1, paddingRight: 1, children: formattedBannerContent }));
|
|
28
|
-
};
|
|
29
|
-
//# sourceMappingURL=Banner.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Banner.js","sourceRoot":"","sources":["../../../../src/ui/components/Banner.tsx"],"names":[],"mappings":";AAAA;;;;GAIG;AAEH,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,KAAK,CAAC;AAAA,CAAC;AACjC,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAG9C,MAAM,UAAU,yBAAyB,CACvC,OAAe,EACf,SAAkB,EAClB,mBAA2B;IAE3B,MAAM,IAAI,GAAG,OAAO,CAAC,OAAO,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;IAC3C,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;IAE/B,OAAO,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE;QAC/B,IAAI,KAAK,KAAK,CAAC,EAAE;YACf,IAAI,SAAS,EAAE;gBACb,OAAO,CACL,KAAC,IAAI,IAAa,IAAI,QAAC,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,OAAO,YAC/C,IAAI,IADI,KAAK,CAET,CACR,CAAC;aACH;YACD,OAAO,CACL,KAAC,cAAc,cACb,KAAC,IAAI,IAAC,IAAI,kBAAE,IAAI,GAAQ,IADL,KAAK,CAET,CAClB,CAAC;SACH;QAED,OAAO,CACL,KAAC,IAAI,IAAa,KAAK,EAAE,mBAAmB,YACzC,IAAI,IADI,KAAK,CAET,CACR,CAAC;IACJ,CAAC,CAAC,CAAC;AACL,CAAC;AAQD,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC,EAAE,UAAU,EAAE,SAAS,EAAE,KAAK,EAAe,EAAE,EAAE;IACtE,MAAM,mBAAmB,GAAG,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC;IAE/C,MAAM,sBAAsB,GAAG,yBAAyB,CACtD,UAAU,EACV,SAAS,EACT,mBAAmB,CACpB,CAAC;IAEF,OAAO,CACL,KAAC,GAAG,IACF,aAAa,EAAC,QAAQ,EACtB,WAAW,EAAC,OAAO,EACnB,WAAW,EAAE,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,OAAO,EACpE,KAAK,EAAE,KAAK,EACZ,WAAW,EAAE,CAAC,EACd,YAAY,EAAE,CAAC,YAEd,sBAAsB,GACnB,CACP,CAAC;AACJ,CAAC,CAAC"}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright 2025 Google LLC
|
|
4
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
import type React from 'react';
|
|
7
|
-
import { type ChecklistItemData } from './ChecklistItem.js';
|
|
8
|
-
export interface ChecklistProps {
|
|
9
|
-
title: string;
|
|
10
|
-
items: ChecklistItemData[];
|
|
11
|
-
isExpanded: boolean;
|
|
12
|
-
toggleHint?: string;
|
|
13
|
-
}
|
|
14
|
-
export declare const Checklist: React.FC<ChecklistProps>;
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { useMemo } from 'react';
|
|
3
|
-
import { Box, Text } from 'ink';
|
|
4
|
-
;
|
|
5
|
-
import { theme } from '../semantic-colors.js';
|
|
6
|
-
import { ChecklistItem } from './ChecklistItem.js';
|
|
7
|
-
const ChecklistTitleDisplay = ({ title, items, toggleHint }) => {
|
|
8
|
-
const score = useMemo(() => {
|
|
9
|
-
let total = 0;
|
|
10
|
-
let completed = 0;
|
|
11
|
-
for (const item of items) {
|
|
12
|
-
if (item.status !== 'cancelled') {
|
|
13
|
-
total += 1;
|
|
14
|
-
if (item.status === 'completed') {
|
|
15
|
-
completed += 1;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
return `${completed}/${total} completed`;
|
|
20
|
-
}, [items]);
|
|
21
|
-
return (_jsxs(Box, { flexDirection: "row", columnGap: 2, height: 1, children: [_jsx(Text, { color: theme.text.primary, bold: true, "aria-label": `${title} list`, children: title }), _jsxs(Text, { color: theme.text.secondary, children: [score, toggleHint ? ` (${toggleHint})` : ''] })] }));
|
|
22
|
-
};
|
|
23
|
-
const ChecklistListDisplay = ({ items, }) => (_jsx(Box, { flexDirection: "column", "aria-role": "list", children: items.map((item, index) => (_jsx(ChecklistItem, { item: item, role: "listitem" }, `${index}-${item.label}`))) }));
|
|
24
|
-
export const Checklist = ({ title, items, isExpanded, toggleHint, }) => {
|
|
25
|
-
const inProgress = useMemo(() => items.find((item) => item.status === 'in_progress') || null, [items]);
|
|
26
|
-
const hasActiveItems = useMemo(() => items.some((item) => item.status === 'pending' || item.status === 'in_progress'), [items]);
|
|
27
|
-
if (items.length === 0 || (!isExpanded && !hasActiveItems)) {
|
|
28
|
-
return null;
|
|
29
|
-
}
|
|
30
|
-
return (_jsx(Box, { borderStyle: "single", borderBottom: false, borderRight: false, borderLeft: false, borderColor: theme.border.default, paddingLeft: 1, paddingRight: 1, children: isExpanded ? (_jsxs(Box, { flexDirection: "column", rowGap: 1, children: [_jsx(ChecklistTitleDisplay, { title: title, items: items, toggleHint: toggleHint }), _jsx(ChecklistListDisplay, { items: items })] })) : (_jsxs(Box, { flexDirection: "row", columnGap: 1, height: 1, children: [_jsx(Box, { flexShrink: 0, flexGrow: 0, children: _jsx(ChecklistTitleDisplay, { title: title, items: items, toggleHint: toggleHint }) }), inProgress && (_jsx(Box, { flexShrink: 1, flexGrow: 1, children: _jsx(ChecklistItem, { item: inProgress, wrap: "truncate" }) }))] })) }));
|
|
31
|
-
};
|
|
32
|
-
//# sourceMappingURL=Checklist.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Checklist.js","sourceRoot":"","sources":["../../../../src/ui/components/Checklist.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright 2025 Google LLC
|
|
4
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
import type React from 'react';
|
|
7
|
-
export type ChecklistStatus = 'pending' | 'in_progress' | 'completed' | 'cancelled' | 'blocked';
|
|
8
|
-
export interface ChecklistItemData {
|
|
9
|
-
status: ChecklistStatus;
|
|
10
|
-
label: string;
|
|
11
|
-
}
|
|
12
|
-
export interface ChecklistItemProps {
|
|
13
|
-
item: ChecklistItemData;
|
|
14
|
-
wrap?: 'truncate';
|
|
15
|
-
role?: 'listitem';
|
|
16
|
-
}
|
|
17
|
-
export declare const ChecklistItem: React.FC<ChecklistItemProps>;
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { Box, Text } from 'ink';
|
|
3
|
-
;
|
|
4
|
-
import { theme } from '../semantic-colors.js';
|
|
5
|
-
import { checkExhaustive } from '@google/gemini-cli-core';
|
|
6
|
-
const ChecklistStatusDisplay = ({ status, }) => {
|
|
7
|
-
switch (status) {
|
|
8
|
-
case 'completed':
|
|
9
|
-
return (_jsx(Text, { color: theme.status.success, "aria-label": "Completed", children: "\u2713" }));
|
|
10
|
-
case 'in_progress':
|
|
11
|
-
return (_jsx(Text, { color: theme.text.accent, "aria-label": "In Progress", children: "\u00BB" }));
|
|
12
|
-
case 'pending':
|
|
13
|
-
return (_jsx(Text, { color: theme.text.secondary, "aria-label": "Pending", children: "\u2610" }));
|
|
14
|
-
case 'cancelled':
|
|
15
|
-
return (_jsx(Text, { color: theme.status.error, "aria-label": "Cancelled", children: "\u2717" }));
|
|
16
|
-
case 'blocked':
|
|
17
|
-
return (_jsx(Text, { color: theme.status.warning, "aria-label": "Blocked", children: "\u26D4" }));
|
|
18
|
-
default:
|
|
19
|
-
checkExhaustive(status);
|
|
20
|
-
}
|
|
21
|
-
};
|
|
22
|
-
export const ChecklistItem = ({ item, wrap, role: ariaRole, }) => {
|
|
23
|
-
const textColor = (() => {
|
|
24
|
-
switch (item.status) {
|
|
25
|
-
case 'in_progress':
|
|
26
|
-
return theme.text.accent;
|
|
27
|
-
case 'completed':
|
|
28
|
-
case 'cancelled':
|
|
29
|
-
case 'blocked':
|
|
30
|
-
return theme.text.secondary;
|
|
31
|
-
case 'pending':
|
|
32
|
-
return theme.text.primary;
|
|
33
|
-
default:
|
|
34
|
-
checkExhaustive(item.status);
|
|
35
|
-
}
|
|
36
|
-
})();
|
|
37
|
-
const strikethrough = item.status === 'cancelled';
|
|
38
|
-
return (_jsxs(Box, { flexDirection: "row", columnGap: 1, "aria-role": ariaRole, children: [_jsx(ChecklistStatusDisplay, { status: item.status }), _jsx(Box, { flexShrink: 1, children: _jsx(Text, { color: textColor, wrap: wrap, strikethrough: strikethrough, children: item.label }) })] }));
|
|
39
|
-
};
|
|
40
|
-
//# sourceMappingURL=ChecklistItem.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ChecklistItem.js","sourceRoot":"","sources":["../../../../src/ui/components/ChecklistItem.tsx"],"names":[],"mappings":";AAOA,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,KAAK,CAAC;AAAA,CAAC;AACjC,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAC9C,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAc1D,MAAM,sBAAsB,GAA0C,CAAC,EACrE,MAAM,GACP,EAAE,EAAE;IACH,QAAQ,MAAM,EAAE;QACd,KAAK,WAAW;YACd,OAAO,CACL,KAAC,IAAI,IAAC,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,OAAO,gBAAa,WAAW,uBAElD,CACR,CAAC;QACJ,KAAK,aAAa;YAChB,OAAO,CACL,KAAC,IAAI,IAAC,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,MAAM,gBAAa,aAAa,uBAEjD,CACR,CAAC;QACJ,KAAK,SAAS;YACZ,OAAO,CACL,KAAC,IAAI,IAAC,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,SAAS,gBAAa,SAAS,uBAEhD,CACR,CAAC;QACJ,KAAK,WAAW;YACd,OAAO,CACL,KAAC,IAAI,IAAC,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,KAAK,gBAAa,WAAW,uBAEhD,CACR,CAAC;QACJ,KAAK,SAAS;YACZ,OAAO,CACL,KAAC,IAAI,IAAC,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,OAAO,gBAAa,SAAS,uBAEhD,CACR,CAAC;QACJ;YACE,eAAe,CAAC,MAAM,CAAC,CAAC;KAC3B;AACH,CAAC,CAAC;AAQF,MAAM,CAAC,MAAM,aAAa,GAAiC,CAAC,EAC1D,IAAI,EACJ,IAAI,EACJ,IAAI,EAAE,QAAQ,GACf,EAAE,EAAE;IACH,MAAM,SAAS,GAAG,CAAC,GAAG,EAAE;QACtB,QAAQ,IAAI,CAAC,MAAM,EAAE;YACnB,KAAK,aAAa;gBAChB,OAAO,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC;YAC3B,KAAK,WAAW,CAAC;YACjB,KAAK,WAAW,CAAC;YACjB,KAAK,SAAS;gBACZ,OAAO,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC;YAC9B,KAAK,SAAS;gBACZ,OAAO,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC;YAC5B;gBACE,eAAe,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;SAChC;IACH,CAAC,CAAC,EAAE,CAAC;IACL,MAAM,aAAa,GAAG,IAAI,CAAC,MAAM,KAAK,WAAW,CAAC;IAElD,OAAO,CACL,MAAC,GAAG,IAAC,aAAa,EAAC,KAAK,EAAC,SAAS,EAAE,CAAC,eAAa,QAAQ,aACxD,KAAC,sBAAsB,IAAC,MAAM,EAAE,IAAI,CAAC,MAAM,GAAI,EAC/C,KAAC,GAAG,IAAC,UAAU,EAAE,CAAC,YAChB,KAAC,IAAI,IAAC,KAAK,EAAE,SAAS,EAAE,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,aAAa,YAC7D,IAAI,CAAC,KAAK,GACN,GACH,IACF,CACP,CAAC;AACJ,CAAC,CAAC"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright 2025 Google LLC
|
|
4
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
import Spinner from 'ink-spinner';
|
|
7
|
-
import { type ComponentProps } from 'react';
|
|
8
|
-
export type SpinnerProps = ComponentProps<typeof Spinner>;
|
|
9
|
-
export declare const CliSpinner: (props: SpinnerProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
/**
|
|
3
|
-
* @license
|
|
4
|
-
* Copyright 2025 Google LLC
|
|
5
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
6
|
-
*/
|
|
7
|
-
import Spinner from 'ink-spinner';
|
|
8
|
-
import { useEffect } from 'react';
|
|
9
|
-
import { debugState } from '../debug.js';
|
|
10
|
-
import { useSettings } from '../contexts/SettingsContext.js';
|
|
11
|
-
export const CliSpinner = (props) => {
|
|
12
|
-
const settings = useSettings();
|
|
13
|
-
const shouldShow = settings.merged.ui?.showSpinner !== false;
|
|
14
|
-
useEffect(() => {
|
|
15
|
-
if (shouldShow) {
|
|
16
|
-
debugState.debugNumAnimatedComponents++;
|
|
17
|
-
return () => {
|
|
18
|
-
debugState.debugNumAnimatedComponents--;
|
|
19
|
-
};
|
|
20
|
-
}
|
|
21
|
-
return undefined;
|
|
22
|
-
}, [shouldShow]);
|
|
23
|
-
if (!shouldShow) {
|
|
24
|
-
return null;
|
|
25
|
-
}
|
|
26
|
-
return _jsx(Spinner, { ...props });
|
|
27
|
-
};
|
|
28
|
-
//# sourceMappingURL=CliSpinner.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CliSpinner.js","sourceRoot":"","sources":["../../../../src/ui/components/CliSpinner.tsx"],"names":[],"mappings":";AAAA;;;;GAIG;AAEH,OAAO,OAAO,MAAM,aAAa,CAAC;AAClC,OAAO,EAAuB,SAAS,EAAE,MAAM,OAAO,CAAC;AACvD,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AACzC,OAAO,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAC;AAI7D,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,KAAmB,EAAE,EAAE;IAChD,MAAM,QAAQ,GAAG,WAAW,EAAE,CAAC;IAC/B,MAAM,UAAU,GAAG,QAAQ,CAAC,MAAM,CAAC,EAAE,EAAE,WAAW,KAAK,KAAK,CAAC;IAE7D,SAAS,CAAC,GAAG,EAAE;QACb,IAAI,UAAU,EAAE;YACd,UAAU,CAAC,0BAA0B,EAAE,CAAC;YACxC,OAAO,GAAG,EAAE;gBACV,UAAU,CAAC,0BAA0B,EAAE,CAAC;YAC1C,CAAC,CAAC;SACH;QACD,OAAO,SAAS,CAAC;IACnB,CAAC,EAAE,CAAC,UAAU,CAAC,CAAC,CAAC;IAEjB,IAAI,CAAC,UAAU,EAAE;QACf,OAAO,IAAI,CAAC;KACb;IAED,OAAO,KAAC,OAAO,OAAK,KAAK,GAAI,CAAC;AAChC,CAAC,CAAC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright 2026 Google LLC
|
|
4
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
import type React from 'react';
|
|
7
|
-
import type { Theme } from '../themes/theme.js';
|
|
8
|
-
interface ColorsDisplayProps {
|
|
9
|
-
activeTheme: Theme;
|
|
10
|
-
}
|
|
11
|
-
export declare const ColorsDisplay: React.FC<ColorsDisplayProps>;
|
|
12
|
-
export {};
|