@progress/kendo-angular-conversational-ui
Version:
Kendo UI for Angular Conversational UI components
13 lines (12 loc) • 674 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Specifies the PromptBox modes.
*
* - 'single'—Renders a single-line input element.
* - 'multi'—Renders a multi-line textarea element.
* - 'auto'—Automatically switches between single-line and multi-line modes based on the content.
*/
export type PromptBoxMode = 'single' | 'multi' | 'auto';