primevue-mirror/components/confirmpopup/ConfirmPopup.d.ts

45 lines
1.1 KiB
TypeScript
Raw Normal View History

2022-09-06 12:03:37 +00:00
import { VNode } from 'vue';
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
import { ConfirmationOptions } from '../confirmationoptions';
export interface ConfirmPopupProps {
/**
* Optional key to match the key of the confirmation, useful to target a specific confirm dialog instance.
*/
group?: string;
}
export interface ConfirmPopupSlots {
/**
* Custom message template.
* @param {Object} scope - message slot's params.
*/
2022-09-14 11:26:01 +00:00
message: (scope: { message: ConfirmationOptions }) => VNode[];
2022-09-06 12:03:37 +00:00
}
2022-09-14 11:26:01 +00:00
export declare type ConfirmPopupEmits = {};
2022-09-06 12:03:37 +00:00
2022-09-14 11:26:01 +00:00
declare class ConfirmPopup extends ClassComponent<ConfirmPopupProps, ConfirmPopupSlots, ConfirmPopupEmits> {}
2022-09-06 12:03:37 +00:00
declare module '@vue/runtime-core' {
interface GlobalComponents {
2022-09-14 11:26:01 +00:00
ConfirmPopup: GlobalComponentConstructor<ConfirmPopup>;
2022-09-06 12:03:37 +00:00
}
}
/**
*
* ConfirmPopup displays a confirmation overlay displayed relatively to its target.
*
* Helper API:
*
* - Confirmation API
* - ConfirmationService
*
* Demos:
*
2022-09-14 11:26:01 +00:00
* - [ConfirmPopup](https://www.primefaces.org/primevue/confirmpopup)
2022-09-06 12:03:37 +00:00
*
*/
export default ConfirmPopup;