primeng
Version:
PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB
57 lines (56 loc) • 1.41 kB
TypeScript
import { DialogStyle } from 'primeng/dialog';
import * as i0 from "@angular/core";
export declare class DynamicDialogStyle extends DialogStyle {
name: string;
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicDialogStyle, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicDialogStyle>;
}
/**
*
* DynamicDialog is a container to display content in an overlay window.
*
* [Live Demo](https://www.primeng.org/dynamicdialog)
*
* @module dynamicdialogstyle
*
*/
export declare enum DynamicDialogClasses {
/**
* Class name of the mask element
*/
mask = "p-dialog-mask",
/**
* Class name of the root element
*/
root = "p-dialog",
/**
* Class name of the header element
*/
header = "p-dialog-header",
/**
* Class name of the title element
*/
title = "p-dialog-title",
/**
* Class name of the header actions element
*/
headerActions = "p-dialog-header-actions",
/**
* Class name of the maximize button element
*/
pcMaximizeButton = "p-dialog-maximize-button",
/**
* Class name of the close button element
*/
pcCloseButton = "p-dialog-close-button",
/**
* Class name of the content element
*/
content = "p-dialog-content",
/**
* Class name of the footer element
*/
footer = "p-dialog-footer"
}
export interface DynamicDialogStyle {
}