mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 01:12:37 +00:00
Pages route change - api generator added
This commit is contained in:
parent
28b8e0a7e0
commit
3eac7d6658
179 changed files with 10592 additions and 5 deletions
24
api-generator/components/confirmpopup.js
Normal file
24
api-generator/components/confirmpopup.js
Normal file
|
@ -0,0 +1,24 @@
|
|||
const ConfirmPopupProps = [
|
||||
{
|
||||
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 = [
|
||||
{
|
||||
name: "message",
|
||||
description: "Custom content for the component."
|
||||
}
|
||||
];
|
||||
|
||||
module.exports = {
|
||||
confirmpopup: {
|
||||
name: "ConfirmPopup",
|
||||
description: "ConfirmPopup displays a confirmation overlay displayed relatively to its target.",
|
||||
props: ConfirmPopupProps,
|
||||
slots: ConfirmPopupSlots
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue