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

89 lines
2.3 KiB
JavaScript
Raw Normal View History

const TabViewProps = [
{
2022-09-14 14:26:41 +00:00
name: 'activeIndex',
type: 'number',
default: '0',
description: 'Index of the active tab.'
},
{
2022-09-14 14:26:41 +00:00
name: 'lazy',
type: 'boolean',
default: 'false',
description: 'When enabled, hidden tabs are not rendered at all. Defaults to false that hides tabs with css.'
},
{
2022-09-14 14:26:41 +00:00
name: 'scrollable',
type: 'boolean',
default: 'false',
description: 'When enabled displays buttons at each side of the tab headers to scroll the tab list.'
},
{
2022-09-14 14:26:41 +00:00
name: 'tabindex',
type: 'number',
default: '0',
description: 'Index of the element in tabbing order.'
},
{
2022-09-14 14:26:41 +00:00
name: 'selectOnFocus',
type: 'boolean',
default: 'false',
description: 'When enabled, the focused tab is activated.'
},
{
2022-09-14 14:26:41 +00:00
name: 'previousButtonProps',
type: 'any',
default: 'null',
description: 'Uses to pass all properties of the HTMLButtonElement to the previous button.'
},
{
2022-09-14 14:26:41 +00:00
name: 'nextButtonProps',
type: 'any',
default: 'null',
description: 'Uses to pass all properties of the HTMLButtonElement to the next button.'
}
];
const TabViewEvents = [
{
2022-09-14 14:26:41 +00:00
name: 'tab-change',
description: 'Callback to invoke when an active tab is changed.',
arguments: [
{
2022-09-14 14:26:41 +00:00
name: 'originalEvent',
type: 'object',
description: 'Original event'
},
{
2022-09-14 14:26:41 +00:00
name: 'index',
type: 'number',
description: 'Index of the selected tab'
}
]
},
{
2022-09-14 14:26:41 +00:00
name: 'tab-click',
description: 'Callback to invoke when an active tab is clicked.',
arguments: [
{
2022-09-14 14:26:41 +00:00
name: 'originalEvent',
type: 'object',
description: 'Original event'
},
{
2022-09-14 14:26:41 +00:00
name: 'index',
type: 'number',
description: 'Index of the clicked tab'
}
]
}
];
module.exports = {
tabview: {
2022-09-14 14:26:41 +00:00
name: 'TabView',
description: 'TabView is a container component to group content with tabs.',
props: TabViewProps,
event: TabViewEvents
}
};