UNPKG

@progress/kendo-angular-conversational-ui

Version:

Kendo UI for Angular Conversational UI components

35 lines (34 loc) 1.85 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { EventEmitter } from '@angular/core'; import { ChatItem } from './chat-item'; import { ChatFile } from './api/chat-file-interface'; import { FileInfo } from '@progress/kendo-angular-upload'; import { SVGIcon } from '@progress/kendo-angular-icons'; import { LocalizationService } from '@progress/kendo-angular-l10n'; import * as i0 from "@angular/core"; /** * @hidden */ export declare class ChatFileComponent extends ChatItem { private localization; chatFile: ChatFile; removable: boolean; fileActions: any; remove: EventEmitter<ChatFile>; actionClick: EventEmitter<any>; actionsToggle: EventEmitter<boolean>; actionButtonClick: EventEmitter<MouseEvent>; deleteIcon: SVGIcon; moreIcon: SVGIcon; constructor(localization: LocalizationService); fileThumbnail(extension: string): SVGIcon; fileGroupClass(extension: string): string; getTotalFilesSizeMessage(file: FileInfo): string; textFor(key: string): string; focus(): void; static ɵfac: i0.ɵɵFactoryDeclaration<ChatFileComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<ChatFileComponent, "li[chatFile]", never, { "chatFile": { "alias": "chatFile"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; "fileActions": { "alias": "fileActions"; "required": false; }; }, { "remove": "remove"; "actionClick": "actionClick"; "actionsToggle": "actionsToggle"; "actionButtonClick": "actionButtonClick"; }, never, never, true, never>; }