fix(cli): prevent plan truncation in approval dialog by supporting unconstrained heights

Fixes #20716
This commit is contained in:
A.K.M. Adib
2026-03-03 17:16:12 -05:00
parent 5575c5ff66
commit 128dc99927
4 changed files with 12 additions and 21 deletions

View File

@@ -162,6 +162,8 @@ export interface Question {
multiSelect?: boolean;
/** Placeholder hint text. For type='text', shown in the input field. For type='choice', shown in the "Other" custom input. */
placeholder?: string;
/** Allow the question to consume more vertical space instead of being strictly capped. */
unconstrainedHeight?: boolean;
}
export interface AskUserRequest {