mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Lint changes
This commit is contained in:
parent
eb2de5460c
commit
4d3a071e66
291 changed files with 28450 additions and 26621 deletions
|
@ -1,38 +1,38 @@
|
|||
const TabMenuProps = [
|
||||
{
|
||||
name: "model",
|
||||
type: "array",
|
||||
default: "null",
|
||||
description: "An array of menuitems."
|
||||
name: 'model',
|
||||
type: 'array',
|
||||
default: 'null',
|
||||
description: 'An array of menuitems.'
|
||||
},
|
||||
{
|
||||
name: "exact",
|
||||
type: "boolean",
|
||||
default: "true",
|
||||
description: "Defines if active route highlight should match the exact route path."
|
||||
name: 'exact',
|
||||
type: 'boolean',
|
||||
default: 'true',
|
||||
description: 'Defines if active route highlight should match the exact route path.'
|
||||
},
|
||||
{
|
||||
name: "activeIndex",
|
||||
type: "number",
|
||||
default: "0",
|
||||
description: "Active index of menuitem."
|
||||
name: 'activeIndex',
|
||||
type: 'number',
|
||||
default: '0',
|
||||
description: 'Active index of menuitem.'
|
||||
}
|
||||
];
|
||||
|
||||
const TabMenuEvents = [
|
||||
{
|
||||
name: "tab-change",
|
||||
description: "Callback to invoke when an active tab is changed.",
|
||||
name: 'tab-change',
|
||||
description: 'Callback to invoke when an active tab is changed.',
|
||||
arguments: [
|
||||
{
|
||||
name: "event.originalEvent",
|
||||
type: "object",
|
||||
description: "Original event"
|
||||
name: 'event.originalEvent',
|
||||
type: 'object',
|
||||
description: 'Original event'
|
||||
},
|
||||
{
|
||||
name: "event.index",
|
||||
type: "number",
|
||||
description: "Index of the selected tab"
|
||||
name: 'event.index',
|
||||
type: 'number',
|
||||
description: 'Index of the selected tab'
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -40,15 +40,15 @@ const TabMenuEvents = [
|
|||
|
||||
const TabMenuSlots = [
|
||||
{
|
||||
name: "item",
|
||||
description: "Template of a menuitem."
|
||||
name: 'item',
|
||||
description: 'Template of a menuitem.'
|
||||
}
|
||||
];
|
||||
|
||||
module.exports = {
|
||||
tabmenu: {
|
||||
name: "TabMenu",
|
||||
description: "TabMenu is a navigation component that displays items as tab headers.",
|
||||
name: 'TabMenu',
|
||||
description: 'TabMenu is a navigation component that displays items as tab headers.',
|
||||
props: TabMenuProps,
|
||||
events: TabMenuEvents,
|
||||
slots: TabMenuSlots
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue