primevue-mirror/api-generator/components/confirmpopup.js

25 lines
619 B
JavaScript
Raw Normal View History

const ConfirmPopupProps = [
{
2022-09-14 14:26:41 +00:00
name: 'group',
type: 'string',
default: 'null',
description: 'Optional key to match the key of the confirmation, useful to target a specific confirm dialog instance.'
}
];
const ConfirmPopupSlots = [
{
2022-09-14 14:26:41 +00:00
name: 'message',
description: 'Custom content for the component.'
}
];
module.exports = {
confirmpopup: {
2022-09-14 14:26:41 +00:00
name: 'ConfirmPopup',
description: 'ConfirmPopup displays a confirmation overlay displayed relatively to its target.',
props: ConfirmPopupProps,
slots: ConfirmPopupSlots
}
};