UNPKG

com.phloxui

Version:

PhloxUI Ng2+ Framework

31 lines (30 loc) 1.15 kB
import { OnInit, ElementRef } from '@angular/core'; import { PhloxAppInfoService } from '../../service/PhloxAppInfoService.service'; import { IDialog } from './IDialog'; import { AbstractDialogController } from '../AbstractDialogController'; /** * <p style="text-indent: 2em;"> * A <code>child-view</code> component class of [[PhloxDialog]] handling logic of <code>message dialog</code>. This class should be * <b>internally used by the framework</b>. If you just want to show a <code>message dialog</code>. Please see [[DialogService.showMessageDialog]] * for more info. * </p> * * @author shiorin, tee4cute * @see [[PhloxDialog]] * @see [[DialogService]] */ export declare class MessageDialog extends AbstractDialogController implements IDialog, OnInit { static readonly TYPE_NAME: string; private model; private dialog; private show; private phloxAppInfo; constructor(elementRef: ElementRef, phloxAppService: PhloxAppInfoService); ngOnInit(): void; private getI18NMessage(key); showDialog(): void; hideDialog(): void; isShow(): boolean; getModel(): any; setModel(model: any): void; }