feat(coding-agent): allow hiding working loader

closes #3674
This commit is contained in:
Mario Zechner
2026-04-24 23:16:39 +02:00
parent 02e694b580
commit 6580dae400
7 changed files with 211 additions and 21 deletions

View File

@@ -193,6 +193,7 @@ const noOpUIContext: ExtensionUIContext = {
onTerminalInput: () => () => {},
setStatus: () => {},
setWorkingMessage: () => {},
setWorkingVisible: () => {},
setWorkingIndicator: () => {},
setHiddenThinkingLabel: () => {},
setWidget: () => {},

View File

@@ -142,6 +142,9 @@ export interface ExtensionUIContext {
/** Set the working/loading message shown during streaming. Call with no argument to restore default. */
setWorkingMessage(message?: string): void;
/** Show or hide the built-in interactive working loader row during streaming. */
setWorkingVisible(visible: boolean): void;
/**
* Configure the interactive working indicator shown during streaming.
*