UNPKG

primeng

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primeng.svg)](https://badge.fury.io/js/primeng) [![npm downloads](https://img.shields.io/npm/dm/primeng.sv

49 lines (48 loc) 1.93 kB
import { Type, ComponentFactoryResolver, OnDestroy, ComponentRef, AfterViewInit, ChangeDetectorRef, Renderer2, NgZone, ElementRef } from '@angular/core'; import { AnimationEvent } from '@angular/animations'; import { DynamicDialogContent } from './dynamicdialogcontent'; import { DynamicDialogConfig } from './dynamicdialog-config'; import { DynamicDialogRef } from './dynamicdialog-ref'; export declare class DynamicDialogComponent implements AfterViewInit, OnDestroy { private componentFactoryResolver; private cd; renderer: Renderer2; config: DynamicDialogConfig; private dialogRef; zone: NgZone; visible: boolean; componentRef: ComponentRef<any>; mask: HTMLDivElement; insertionPoint: DynamicDialogContent; maskViewChild: ElementRef; childComponentType: Type<any>; container: HTMLDivElement; wrapper: HTMLElement; documentKeydownListener: any; documentEscapeListener: Function; maskClickListener: Function; transformOptions: string; constructor(componentFactoryResolver: ComponentFactoryResolver, cd: ChangeDetectorRef, renderer: Renderer2, config: DynamicDialogConfig, dialogRef: DynamicDialogRef, zone: NgZone); ngAfterViewInit(): void; loadChildComponent(componentType: Type<any>): void; moveOnTop(): void; onAnimationStart(event: AnimationEvent): void; onAnimationEnd(event: AnimationEvent): void; onContainerDestroy(): void; close(): void; hide(): void; enableModality(): void; disableModality(): void; onKeydown(event: KeyboardEvent): void; focus(): void; bindGlobalListeners(): void; unbindGlobalListeners(): void; bindDocumentKeydownListener(): void; unbindDocumentKeydownListener(): void; bindDocumentEscapeListener(): void; unbindDocumentEscapeListener(): void; unbindMaskClickListener(): void; ngOnDestroy(): void; } export declare class DynamicDialogModule { }