2022-09-12 07:13:52 +00:00
|
|
|
const TieredMenuProps = [
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'model',
|
|
|
|
type: 'array',
|
|
|
|
default: 'null',
|
|
|
|
description: 'An array of menuitems.'
|
2022-09-12 07:13:52 +00:00
|
|
|
},
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'popup',
|
|
|
|
type: 'boolean',
|
|
|
|
default: 'false',
|
|
|
|
description: 'Defines if menu would displayed as a popup.'
|
2022-09-12 07:13:52 +00:00
|
|
|
},
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'appendTo',
|
|
|
|
type: 'string',
|
|
|
|
default: 'body',
|
|
|
|
description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached.'
|
2022-09-12 07:13:52 +00:00
|
|
|
},
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'baseZIndex',
|
|
|
|
type: 'number',
|
|
|
|
default: '0',
|
|
|
|
description: 'Base zIndex value to use in layering.'
|
2022-09-12 07:13:52 +00:00
|
|
|
},
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'autoZIndex',
|
|
|
|
type: 'boolean',
|
|
|
|
default: 'true',
|
|
|
|
description: 'Whether to automatically manage layering.'
|
2022-09-12 07:13:52 +00:00
|
|
|
},
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'exact',
|
|
|
|
type: 'boolean',
|
|
|
|
default: 'true',
|
2022-09-12 07:13:52 +00:00
|
|
|
description: "Whether to apply 'router-link-active-exact' class if route exactly matches the item path."
|
2023-04-26 09:59:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'pt',
|
|
|
|
type: 'any',
|
|
|
|
default: 'null',
|
2023-08-01 14:01:12 +00:00
|
|
|
description: 'Used to pass attributes to DOM elements inside the component.'
|
2023-07-06 13:20:37 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'unstyled',
|
|
|
|
type: 'boolean',
|
|
|
|
default: 'false',
|
|
|
|
description: 'When enabled, it removes component related styles in the core.'
|
2022-09-12 07:13:52 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
const TieredMenuSlots = [
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'item',
|
|
|
|
description: 'Template of a menuitem.'
|
2023-04-05 11:57:18 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'submenuicon',
|
|
|
|
description: 'Custom submenu icon template.'
|
2023-04-17 06:38:00 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'itemicon',
|
|
|
|
description: 'Custom item icon template.'
|
2022-09-12 07:13:52 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
tieredmenu: {
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'TieredMenu',
|
|
|
|
description: 'TieredMenu displays submenus in nested overlays.',
|
2022-09-12 07:13:52 +00:00
|
|
|
props: TieredMenuProps,
|
|
|
|
slots: TieredMenuSlots
|
|
|
|
}
|
|
|
|
};
|