UNPKG

react-application-core

Version:

A react-based application core for the business applications.

25 lines (24 loc) 824 B
import { IActivateDialogConfigEntity, IUnsavedFormChangesDialogProps } from '../../../definition'; import { BaseDialog } from '../base-dialog.component'; /** * @component-impl * @stable [01.08.2020] * * Please use the "Mappers.unsavedFormChangesDialogProps" */ export declare class UnsavedFormChangesDialog extends BaseDialog<IUnsavedFormChangesDialogProps> { static readonly defaultProps: IUnsavedFormChangesDialogProps & Partial<import("../../../definition").IGenericComponentProps<any>>; /** * @stable [10.10.2020] * @param payload */ activate(payload?: IActivateDialogConfigEntity): void; /** * @stable [10.10.2020] */ protected get acceptText(): string; /** * @stable [10.10.2020] */ protected get title(): string | boolean; }