mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +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
30
api-generator/components/confirmdialog.js
Normal file
30
api-generator/components/confirmdialog.js
Normal file
|
@ -0,0 +1,30 @@
|
|||
const ConfirmDialogProps = [
|
||||
{
|
||||
name: "group",
|
||||
type: "string",
|
||||
default: "null",
|
||||
description: "Optional key to match the key of the confirmation, useful to target a specific confirm dialog instance."
|
||||
},
|
||||
{
|
||||
name: "breakpoints",
|
||||
type: "object",
|
||||
default: "null",
|
||||
description: "Object literal to define widths per screen size."
|
||||
}
|
||||
];
|
||||
|
||||
const ConfirmDialogSlots = [
|
||||
{
|
||||
name: "message",
|
||||
description: "Custom content for the component."
|
||||
}
|
||||
];
|
||||
|
||||
module.exports = {
|
||||
confirmdialog: {
|
||||
name: "ConfirmDialog",
|
||||
description: "ConfirmDialog uses a Dialog UI that is integrated with the Confirmation API.",
|
||||
props: ConfirmDialogProps,
|
||||
slots: ConfirmDialogSlots
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue