New to Kendo UI for Angular? Start a free 30-day trial
KENDO_DIALOG
Represents the utility array that that contains all Dialog
-related components and directives.
Use KENDO_DIALOG
to import all Dialog components and directives at once.
typescript
import { Component } from '@angular/core';
import { KENDO_DIALOG } from '@progress/kendo-angular-dialog';
@Component({
selector: 'my-dialog-app',
standalone: true,
imports: [KENDO_DIALOG],
template: `...`
})
export class DialogAppComponent {}