mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
parent
367d4a5f14
commit
8681911998
92 changed files with 7793 additions and 2 deletions
58
api-generator/components/accordion.js
Normal file
58
api-generator/components/accordion.js
Normal file
|
@ -0,0 +1,58 @@
|
|||
const AccordionProps = [
|
||||
{
|
||||
name: "multiple",
|
||||
type: "boolean",
|
||||
default: "false",
|
||||
description: "When enabled, multiple tabs can be activated at the same time."
|
||||
},
|
||||
{
|
||||
name: "activeIndex",
|
||||
type: "number|array",
|
||||
default: "null",
|
||||
description: "Index of the active tab or an array of indexes in multiple mode."
|
||||
}
|
||||
];
|
||||
|
||||
const AccordionEvents = [
|
||||
{
|
||||
name: "tab-open",
|
||||
description: "Callback to invoke when a tab gets expanded.",
|
||||
arguments: [
|
||||
{
|
||||
name: "originalEvent",
|
||||
type: "object",
|
||||
description: "Original event"
|
||||
},
|
||||
{
|
||||
name: "index",
|
||||
type: "number",
|
||||
description: "Opened tab index"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "tab-close",
|
||||
description: "Callback to invoke when an active tab is collapsed by clicking on the header.",
|
||||
arguments: [
|
||||
{
|
||||
name: "originalEvent",
|
||||
type: "object",
|
||||
description: "Original event"
|
||||
},
|
||||
{
|
||||
name: "index",
|
||||
type: "number",
|
||||
description: "Closed tab index"
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
module.exports = {
|
||||
accordion: {
|
||||
name: "Accordion",
|
||||
description: "Accordion groups a collection of contents in tabs.",
|
||||
props: AccordionProps,
|
||||
events: AccordionEvents
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue