UNPKG

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

61 lines (60 loc) 1.53 kB
import { BaseStyle } from 'primeng/base'; import * as i0 from "@angular/core"; export declare class ConfirmPopupStyle extends BaseStyle { name: string; theme: ({ dt }: { dt: any; }) => string; classes: { root: string; content: string; icon: string; message: string; footer: string; pcRejectButton: string; pcAcceptButton: string; }; static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmPopupStyle, never>; static ɵprov: i0.ɵɵInjectableDeclaration<ConfirmPopupStyle>; } /** * * ConfirmPopup displays a confirmation overlay displayed relatively to its target. * * [Live Demo](https://www.primeng.org/confirmpopup) * * @module confirmpopupstyle * */ export declare enum ConfirmPopupClasses { /** * Class name of the root element */ root = "p-confirmpopup", /** * Class name of the content element */ content = "p-confirmpopup-content", /** * Class name of the icon element */ icon = "p-confirmpopup-icon", /** * Class name of the message element */ message = "p-confirmpopup-message", /** * Class name of the footer element */ footer = "p-confirmpopup-footer", /** * Class name of the reject button element */ pcRejectButton = "p-confirmpopup-reject-button", /** * Class name of the accept button element */ pcAcceptButton = "p-confirmpopup-accept-button" } export interface ConfirmPopupStyle extends BaseStyle { }