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