import { VNode } from 'vue'; import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers'; import { ConfirmationOptions } from '../confirmationoptions'; export interface ConfirmDialogBreakpoints { /** * Breakpoint for responsive mode. * * Example: * * * * Result: * * @media screen and (max-width: ${breakpoint[key]}) { * .p-dialog[attributeSelector] { * width: ${breakpoint[value]} !important; * } * } */ [key: string]: string; } export interface ConfirmDialogProps { /** * Optional key to match the key of the confirmation, useful to target a specific confirm dialog instance. */ group?: string | undefined; /** * Object literal to define widths per screen size. * @see ConfirmDialogBreakpoints */ breakpoints?: ConfirmDialogBreakpoints; } export interface ConfirmDialogSlots { /** * Custom message template. * @param {Object} scope - message slot's params. */ message: (scope: { message: ConfirmationOptions }) => VNode[]; } export declare type ConfirmDialogEmits = {}; declare class ConfirmDialog extends ClassComponent {} declare module '@vue/runtime-core' { interface GlobalComponents { ConfirmDialog: GlobalComponentConstructor; } } /** * * ConfirmDialog uses a Dialog UI that is integrated with the Confirmation API. * * Helper API: * * - Confirmation API * - ConfirmationService * * Demos: * * - [ConfirmDialog](https://www.primefaces.org/primevue/confirmdialog) * */ export default ConfirmDialog;