From 721706954722899adbfea5527a8a1826cff0cd04 Mon Sep 17 00:00:00 2001 From: rikohomeless <163776849+rikohomeless@users.noreply.github.com> Date: Thu, 14 May 2026 16:50:06 +0000 Subject: [PATCH 1/2] feat(app): add terminal image preview toggle --- packages/app/src/web/panel-terminal.tsx | 49 +++++- .../src/web/terminal-inline-images-core.ts | 29 ++++ .../src/web/terminal-panel-runtime-core.ts | 33 ++-- .../src/web/terminal-panel-runtime-types.ts | 7 +- .../app/src/web/terminal-panel-runtime.ts | 162 ++++++++++++++---- .../docker-git/panel-terminal-skiller.test.ts | 26 ++- .../terminal-inline-images-core.test.ts | 42 ++++- 7 files changed, 294 insertions(+), 54 deletions(-) diff --git a/packages/app/src/web/panel-terminal.tsx b/packages/app/src/web/panel-terminal.tsx index f735febd..67ee9029 100644 --- a/packages/app/src/web/panel-terminal.tsx +++ b/packages/app/src/web/panel-terminal.tsx @@ -263,16 +263,22 @@ const TerminalActionButton = ( { children, compactTypingMode, - onClick + onClick, + pressed, + title }: { readonly children: string readonly compactTypingMode: boolean readonly onClick: () => void + readonly pressed?: boolean + readonly title?: string } ): JSX.Element => (