@progress/kendo-angular-popup
Version:
Kendo UI Angular Popup component - an easily customized popup from the most trusted provider of professional Angular components.
26 lines (25 loc) • 947 B
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { PopupComponent } from "./popup.component";
/**
* Use this utility array to access all `@progress/kendo-angular-popup`-related components and directives in a standalone Angular component.
*
* @example
* ```typescript
* import { Component } from '@angular/core';
* import { KENDO_POPUP } from '@progress/kendo-angular-popup';
*
* @Component({
* selector: 'my-app',
* standalone: true,
* imports: [KENDO_POPUP],
* template: `<kendo-popup>Popup content.</kendo-popup>`
* })
* export class AppComponent {}
* ```
*/
export const KENDO_POPUP = [
PopupComponent
];