mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
Convert to PrimeVue monorepo
This commit is contained in:
parent
970ba75b06
commit
61929eae75
4144 changed files with 59008 additions and 36177 deletions
132
packages/primevue/scripts/components/accordion.js
Normal file
132
packages/primevue/scripts/components/accordion.js
Normal file
|
@ -0,0 +1,132 @@
|
|||
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.'
|
||||
},
|
||||
{
|
||||
name: 'lazy',
|
||||
type: 'boolean',
|
||||
default: 'false',
|
||||
description: 'When enabled, hidden tabs are not rendered at all. Defaults to false that hides tabs with css.'
|
||||
},
|
||||
{
|
||||
name: 'expandIcon',
|
||||
type: 'string',
|
||||
default: 'null',
|
||||
description: 'Icon of a collapsed tab.'
|
||||
},
|
||||
{
|
||||
name: 'collapseIcon',
|
||||
type: 'string',
|
||||
default: 'null',
|
||||
description: 'Icon of a expanded tab.'
|
||||
},
|
||||
{
|
||||
name: 'tabindex',
|
||||
type: 'number',
|
||||
default: '0',
|
||||
description: 'Index of the element in tabbing order.'
|
||||
},
|
||||
{
|
||||
name: 'selectOnFocus',
|
||||
type: 'boolean',
|
||||
default: 'false',
|
||||
description: 'When enabled, the focused tab is activated.'
|
||||
},
|
||||
{
|
||||
name: 'pt',
|
||||
type: 'any',
|
||||
default: 'null',
|
||||
description: 'Used to pass attributes to DOM elements inside the component.'
|
||||
},
|
||||
{
|
||||
name: 'unstyled',
|
||||
type: 'boolean',
|
||||
default: 'false',
|
||||
description: 'When enabled, it removes component related styles in the core.'
|
||||
}
|
||||
];
|
||||
|
||||
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'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'tab-click',
|
||||
description: 'Callback to invoke when an active tab is clicked.',
|
||||
arguments: [
|
||||
{
|
||||
name: 'originalEvent',
|
||||
type: 'object',
|
||||
description: 'Original event'
|
||||
},
|
||||
{
|
||||
name: 'index',
|
||||
type: 'number',
|
||||
description: 'Index of the clicked tab'
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
const AccordioneSlots = [
|
||||
{
|
||||
name: 'default',
|
||||
description: 'Custom template.'
|
||||
},
|
||||
{
|
||||
name: 'collapseicon',
|
||||
description: 'Custom collapse icon template.'
|
||||
},
|
||||
{
|
||||
name: 'expandicon',
|
||||
description: 'Custom expand icon template.'
|
||||
}
|
||||
];
|
||||
|
||||
module.exports = {
|
||||
accordion: {
|
||||
name: 'Accordion',
|
||||
description: 'Accordion groups a collection of contents in tabs.',
|
||||
props: AccordionProps,
|
||||
events: AccordionEvents,
|
||||
slots: AccordioneSlots
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue