@progress/kendo-angular-conversational-ui
Version:
Kendo UI for Angular Conversational UI components
11 lines (10 loc) • 647 B
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 possible modes for message width in the chat component.
* - `full`: The message takes the full width of the chat container.
* - `standard`: (Default) The message width is standard, allowing for a more compact layout.
*/
export type MessageWidthMode = 'full' | 'standard';