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