KENDO_DIALOG
Constant
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.
Definition
Package:@progress/kendo-angular-dialog
Syntax:
TS
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 {}