@progress/kendo-angular-conversational-ui
Version:
Kendo UI for Angular Conversational UI components
21 lines (20 loc) • 1.07 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Defines the layout for the suggestions list.
*
* 'scroll' - The list is scrollable when the content overflows.
* 'wrap' - The list wraps to new lines when space is limited.
* 'scrollbuttons' - The list is scrollable with navigation buttons when the content overflows.
*/
export type SuggestionsLayoutMode = 'scroll' | 'wrap' | 'scrollbuttons';
/**
* Defines the layout for the quick actions list.
*
* 'scroll' - The list is scrollable when the content overflows.
* 'wrap' - The list wraps to new lines when space is limited.
* 'scrollbuttons' - The list is scrollable with navigation buttons when the content overflows.
*/
export type QuickActionsLayoutMode = 'scroll' | 'wrap' | 'scrollbuttons';