/** * * TieredMenu displays submenus in nested overlays. * * [Live Demo](https://www.primevue.org/menu/) * * @module tieredmenu * */ import { TransitionProps, VNode } from 'vue'; import { ComponentHooks } from '../basecomponent'; import { MenuItem } from '../menuitem'; import { PassThroughOptions } from '../passthrough'; import { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, HintedString, PassThrough } from '../ts-helpers'; export declare type TieredMenuPassThroughOptionType = TieredMenuPassThroughAttributes | ((options: TieredMenuPassThroughMethodOptions) => TieredMenuPassThroughAttributes | string) | string | null | undefined; export declare type TieredMenuPassThroughTransitionType = TransitionProps | ((options: TieredMenuPassThroughMethodOptions) => TransitionProps) | undefined; /** * Custom passthrough(pt) option method. */ export interface TieredMenuPassThroughMethodOptions { /** * Defines instance. */ instance: any; /** * Defines valid properties. */ props: TieredMenuProps; /** * Defines current inline state. */ state: TieredMenuState; /** * Defines valid attributes. */ attrs: any; /** * Defines parent instance. */ parent: T; /** * Defines current options. */ context: TieredMenuContext; /** * Defines passthrough(pt) options in global config. */ global: object | undefined; } /** * Custom passthrough(pt) options. * @see {@link TieredMenuProps.pt} */ export interface TieredMenuPassThroughOptions { /** * Used to pass attributes to the root's DOM element. */ root?: TieredMenuPassThroughOptionType; /** * Used to pass attributes to the root list's DOM element. */ rootList?: TieredMenuPassThroughOptionType; /** * Used to pass attributes to the list item's DOM element. */ item?: TieredMenuPassThroughOptionType; /** * Used to pass attributes to the item content's DOM element. */ itemContent?: TieredMenuPassThroughOptionType; /** * Used to pass attributes to the item link's DOM element. */ itemLink?: TieredMenuPassThroughOptionType; /** * Used to pass attributes to the item icon's DOM element. */ itemIcon?: TieredMenuPassThroughOptionType; /** * Used to pass attributes to the item label's DOM element. */ itemLabel?: TieredMenuPassThroughOptionType; /** * Used to pass attributes to the submenu icon's DOM element. */ submenuIcon?: TieredMenuPassThroughOptionType; /** * Used to pass attributes to the separator's DOM element. */ separator?: TieredMenuPassThroughOptionType; /** * Used to pass attributes to the submenu's DOM element. */ submenu?: TieredMenuPassThroughOptionType; /** * Used to manage all lifecycle hooks. * @see {@link BaseComponent.ComponentHooks} */ hooks?: ComponentHooks; /** * Used to control Vue Transition API. */ transition?: TieredMenuPassThroughTransitionType; } /** * Custom passthrough attributes for each DOM elements */ export interface TieredMenuPassThroughAttributes { [key: string]: any; } /** * Defines focused item info */ export interface TieredMenuFocusedItemInfo { /** * Active item index */ index: number; /** * Active item level */ level: number; /** * Parent key info */ parentKey: string; } /** * Defines current inline state in TieredMenu component. */ export interface TieredMenuState { /** * Current id state as a string. */ id: string; /** * Current focus state as a boolean. * @defaultValue false */ focused: boolean; /** * Current focused item info. * @type {TieredMenuFocusedItemInfo} */ focusedItemInfo: TieredMenuFocusedItemInfo; /** * Active item path. * @type {TieredMenuFocusedItemInfo} */ activeItemPath: TieredMenuFocusedItemInfo[]; /** * Current visible state as a boolean. * @defaultValue true */ visible: boolean; } /** * Defines current options in TieredMenu component. */ export interface TieredMenuContext { /** * Current menuitem */ item: any; /** * Index of the menuitem. */ index: number; /** * Current active state of menuitem as a boolean. * @defaultValue false */ active: boolean; /** * Current focused state of menuitem as a boolean. * @defaultValue false */ focused: boolean; /** * Current disabled state of menuitem as a boolean. * @defaultValue false */ disabled: boolean; } /** * Defines valid router binding props in TieredMenu component. */ export interface TieredMenuRouterBindProps { /** * Action element binding */ action: object; /** * Icon element binding */ icon: object; /** * Label element binding */ label: object; /** * Submenuicon elemnt binding */ submenuicon: object; } /** * Defines valid properties in TieredMenuMenu component. */ export interface TieredMenuProps { /** * An array of menuitems. */ model?: MenuItem[] | undefined; /** * Defines if menu would displayed as a popup. * @defaultValue false */ popup?: boolean | undefined; /** * A valid query selector or an HTMLElement to specify where the overlay gets attached. * @defaultValue body */ appendTo?: HintedString<'body' | 'self'> | undefined | HTMLElement; /** * Whether to automatically manage layering. * @defaultValue true */ autoZIndex?: boolean | undefined; /** * Base zIndex value to use in layering. * @defaultValue 0 */ baseZIndex?: number | undefined; /** * Whether to apply 'router-link-active-exact' class if route exactly matches the item path. * @deprecated since v3.40.0. * @defaultValue true */ exact?: boolean | undefined; /** * When present, it specifies that the component should be disabled. * @defaultValue false */ disabled?: boolean | undefined; /** * Index of the element in tabbing order. */ tabindex?: number | string | undefined; /** * Defines a string value that labels an interactive element. */ ariaLabel?: string | undefined; /** * Identifier of the underlying menu element. */ ariaLabelledby?: string | undefined; /** * It generates scoped CSS variables using design tokens for the component. */ dt?: DesignToken; /** * Used to pass attributes to DOM elements inside the component. * @type {TieredMenuPassThroughOptions} */ pt?: PassThrough; /** * Used to configure passthrough(pt) options of the component. * @type {PassThroughOptions} */ ptOptions?: PassThroughOptions; /** * When enabled, it removes component related styles in the core. * @defaultValue false */ unstyled?: boolean; } /** * Defines valid slots in TieredMenuMenu component. */ export interface TieredMenuSlots { /** * Custom content for each item. * @param {Object} scope - item slot's params. */ item(scope: { /** * Menuitem instance */ item: MenuItem; /** * Label property of the menuitem */ label: string | ((...args: any) => string) | undefined; /** * Binding properties of the menuitem */ props: TieredMenuRouterBindProps; /** * Whether or not there is a submenu */ hasSubmenu: boolean; }): VNode[]; /** * Custom submenu icon template. * @param {Object} scope - submenuicon slot's params. */ submenuicon(scope: { /** * Whether item is active */ active: boolean; }): VNode[]; /** * Custom item icon template. * @param {Object} scope - item icon slot's params. */ itemicon(scope: { /** * Menuitem instance */ item: MenuItem; /** * Style class of the item icon element. */ class: any; }): VNode[]; /** * Custom start template. */ start(): VNode[]; /** * Custom end template. */ end(): VNode[]; } /** * Defines valid emits in TieredMenuMenu component. */ export interface TieredMenuEmitsOptions { /** * 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; } export declare type TieredMenuEmits = EmitFn; export interface TieredMenuMethods { /** * 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; } /** * **PrimeVue - TieredMenu** * * _TieredMenu displays submenus in nested overlays._ * * [Live Demo](https://www.primevue.org/tieredmenu/) * --- --- * ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png) * * @group Component * */ declare const TieredMenu: DefineComponent; declare module 'vue' { export interface GlobalComponents { TieredMenu: GlobalComponentConstructor; } } export default TieredMenu;