import { VNode } from 'vue'; import { MenuItem } from '../menuitem'; import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers'; type TieredMenuAppandToType = 'body' | 'self' | string | undefined | HTMLElement; export interface TieredMenuProps { /** * An array of menuitems. */ model?: MenuItem[] | undefined; /** * Defines if menu would displayed as a popup. */ popup?: boolean | undefined; /** * A valid query selector or an HTMLElement to specify where the overlay gets attached. * @see TieredMenuAppandToType * Default value is 'body'. */ appendTo?: TieredMenuAppandToType; /** * Whether to automatically manage layering. * Default value is true. */ autoZIndex?: boolean | undefined; /** * Base zIndex value to use in layering. * Default value is 0. */ baseZIndex?: number | undefined; /** * Whether to apply 'router-link-active-exact' class if route exactly matches the item path. * Default value is true. */ exact?: boolean | undefined; /** * When present, it specifies that the component should be disabled. */ disabled?: boolean | undefined; /** * Index of the element in tabbing order. */ tabindex?: number | string | undefined; /** * Defines a string value that labels an interactive element. */ 'aria-label'?: string | undefined; /** * Identifier of the underlying menu element. */ 'aria-labelledby'?: string | undefined; } export interface TieredMenuSlots { /** * Custom content for each item. * @param {Object} scope - item slot's params. */ item: (scope: { /** * Menuitem instance */ item: MenuItem; }) => VNode[]; } export declare type TieredMenuEmits = { /** * Callback to invoke when the component receives focus. * @param {Event} event - Browser event. */ focus: (event: Event) => void; /** * Callback to invoke when the component loses focus. * @param {Event} event - Browser event. */ blur: (event: Event) => void; /** * Callback to invoke before the popup is shown. */ 'before-show': () => void; /** * Callback to invoke before the popup is hidden. */ 'before-hide': () => void; /** * Callback to invoke when the popup is shown. */ show: () => void; /** * Callback to invoke when the popup is hidden. */ hide: () => void; }; declare class TieredMenu extends ClassComponent { /** * Toggles the visibility of the overlay. * @param {Event} event - Browser event * * @memberof TieredMenu */ toggle: (event: Event) => void; /** * Shows the overlay. * @param {Event} event - Browser event * * @memberof TieredMenu */ show: (event: Event) => void; /** * Hides the overlay. * * @memberof TieredMenu */ hide(): void; } declare module '@vue/runtime-core' { interface GlobalComponents { TieredMenu: GlobalComponentConstructor; } } /** * * TieredMenu displays submenus in nested overlays. * * Helper API: * * - [MenuItem](https://primevue.org//menumodel) * * Demos: * * - [TieredMenu](https://primevue.org//tieredmenu) * */ export default TieredMenu;