New to Kendo UI for Angular? Start a free 30-day trial
KENDO_PROMPTBOX
Updated on Feb 5, 2026
Utility array that contains all PromptBox related components and directives.
ts
import { Component } from '@angular/core';
import { KENDO_PROMPTBOX } from '@progress/kendo-angular-conversational-ui';
@Component({
standalone: true,
imports: [KENDO_PROMPTBOX],
selector: 'my-app',
template: `<kendo-promptbox></kendo-promptbox>`
})
export class AppComponent {}