UNPKG

@progress/kendo-angular-conversational-ui

Version:

Kendo UI for Angular Conversational UI components

30 lines (29 loc) 1.37 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { OnInit } from '@angular/core'; import { LocalizationService } from '@progress/kendo-angular-l10n'; import { PanelBarItemModel, PanelBarItemClickEvent } from '@progress/kendo-angular-layout'; import { BaseView } from './base-view'; import { AIPromptService } from '../common/aiprompt.service'; import * as i0 from "@angular/core"; /** * The component for rendering the AIPrompt Command View. */ export declare class CommandViewComponent extends BaseView implements OnInit { private service; constructor(localization: LocalizationService, service: AIPromptService); /** * @hidden */ panelBarItems: Array<PanelBarItemModel>; ngOnInit(): void; /** * @hidden */ itemClickHandler(ev: PanelBarItemClickEvent): void; private getPanelBarItems; static ɵfac: i0.ɵɵFactoryDeclaration<CommandViewComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<CommandViewComponent, "kendo-aiprompt-command-view", never, {}, {}, never, never, true, never>; }