Lint changes

This commit is contained in:
Bahadir Sofuoglu 2022-09-14 17:26:41 +03:00
parent eb2de5460c
commit 4d3a071e66
291 changed files with 28450 additions and 26621 deletions

View file

@ -1,64 +1,64 @@
const MenuProps = [
{
name: "modelValue",
type: "array",
default: "null",
description: "An array of menuitems."
name: 'modelValue',
type: 'array',
default: 'null',
description: 'An array of menuitems.'
},
{
name: "popup",
type: "boolean",
default: "false",
description: "Defines if menu would displayed as a popup."
name: 'popup',
type: 'boolean',
default: 'false',
description: 'Defines if menu would displayed as a popup.'
},
{
name: "appendTo",
type: "string",
default: "body",
description: "A valid query selector or an HTMLElement to specify where the overlay gets attached."
name: 'appendTo',
type: 'string',
default: 'body',
description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached.'
},
{
name: "baseZIndex",
type: "number",
default: "0",
description: "Base zIndex value to use in layering."
name: 'baseZIndex',
type: 'number',
default: '0',
description: 'Base zIndex value to use in layering.'
},
{
name: "autoZIndex",
type: "boolean",
default: "true",
description: "Whether to automatically manage layering."
name: 'autoZIndex',
type: 'boolean',
default: 'true',
description: 'Whether to automatically manage layering.'
},
{
name: "exact",
type: "boolean",
default: "true",
name: 'exact',
type: 'boolean',
default: 'true',
description: "Whether to apply 'router-link-active-exact' class if route exactly matches the item path."
}
];
const MenuEvents = [
{
name: "show",
description: "Callback to invoke when the overlay is shown."
name: 'show',
description: 'Callback to invoke when the overlay is shown.'
},
{
name: "hide",
description: "Callback to invoke when the overlay is hidden."
name: 'hide',
description: 'Callback to invoke when the overlay is hidden.'
}
];
const MenuSlots = [
{
name: "item",
description: "Template of a menuitem."
name: 'item',
description: 'Template of a menuitem.'
}
];
module.exports = {
menu: {
name: "Menu",
description: "Menu is a navigation / command component that supports dynamic and static positioning.",
name: 'Menu',
description: 'Menu is a navigation / command component that supports dynamic and static positioning.',
props: MenuProps,
events: MenuEvents,
slots: MenuSlots