UNPKG

@progress/kendo-angular-conversational-ui

Version:

Kendo UI for Angular Conversational UI components

72 lines (71 loc) 2.74 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { Directive, Input } from '@angular/core'; import { ComponentMessages } from '@progress/kendo-angular-l10n'; import * as i0 from "@angular/core"; /** * @hidden */ export class Messages extends ComponentMessages { /** * The Toolbar button text for the Prompt view. */ promptView; /** * The Toolbar button text for the Output view. */ outputView; /** * The text for the Generate button in the Prompt view. */ generateOutput; /** * The placeholder text for the Prompt View text area. */ promptPlaceholder; /** * The Copy button text in each Output view card. */ copyOutput; /** * The Retry button text in each Output view card. */ retryGeneration; /** * The title of each Output view card. */ outputTitle; /** * The title of each Output view retry card. */ outputRetryTitle; /** * The title of the Prompt suggestions button. */ promptSuggestions; static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive }); static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: Messages, inputs: { promptView: "promptView", outputView: "outputView", generateOutput: "generateOutput", promptPlaceholder: "promptPlaceholder", copyOutput: "copyOutput", retryGeneration: "retryGeneration", outputTitle: "outputTitle", outputRetryTitle: "outputRetryTitle", promptSuggestions: "promptSuggestions" }, usesInheritance: true, ngImport: i0 }); } i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: Messages, decorators: [{ type: Directive }], propDecorators: { promptView: [{ type: Input }], outputView: [{ type: Input }], generateOutput: [{ type: Input }], promptPlaceholder: [{ type: Input }], copyOutput: [{ type: Input }], retryGeneration: [{ type: Input }], outputTitle: [{ type: Input }], outputRetryTitle: [{ type: Input }], promptSuggestions: [{ type: Input }] } });