/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ /* eslint-disable @typescript-eslint/no-explicit-any */ /** * * Menu is a navigation / command component that supports dynamic and static positioning. * * [Live Demo](https://www.TSvue.org/menu/) * * @module menu * */ import { TransitionProps, VNode } from 'vue'; import { ComponentHooks } from '../BaseComponent/BaseComponent.d'; import { PassThroughOptions } from '../PassThrough'; import { MenuItem } from './MenuItem.d'; import { TSVueIcons } from 'v2/Icon/Icon.vue.d'; import { ClassComponent, GlobalComponentConstructor, PassThrough, } from '../ts-helpers'; export declare type MenuPassThroughOptionType = | MenuPassThroughAttributes | (( options: MenuPassThroughMethodOptions, ) => MenuPassThroughAttributes | string) | string | null | undefined; export declare type MenuPassThroughTransitionType = | TransitionProps | ((options: MenuPassThroughMethodOptions) => TransitionProps) | undefined; export type MenuOption = { /** * The option label. */ label?: string; /** * Specify the severity of action to danger (red). */ danger?: boolean; /** * Define the command to be executed when option selected or Apply button is clicked. * * If the option use additional slot, the command will be executed on apply button clicked. * Otherwise on option clicked. * * @returns void */ command?: () => void; /** * The action icon. */ icon?: TSVueIcons; /** * Need to specify wether the option has additional slot or not. * It will also determine wether Apply button should visible or not. */ useAdditionSlot?: boolean; /** * External link to navigate when item is clicked. */ url?: string | undefined; /** * An array of children menuitems. */ items?: MenuItem[] | undefined; /** * A boolean or a function to return a boolean to specify if the item is disabled. * @defaultValue false */ disabled?: boolean | undefined; /** * A boolean or a function to return a boolean to specify if the item is visible. * @defaultValue true */ visible?: boolean | undefined; /** * Specifies where to open the linked document. */ target?: string | undefined; /** * Defines the item as a separator. * @defaultValue false */ separator?: boolean | undefined; /** * Inline style of the menuitem. */ style?: any; /** * Style class of the menuitem. */ class?: any; /** * Unique identifier of an item. */ key?: string | undefined; }; /** * Custom passthrough(pt) option method. */ export interface MenuPassThroughMethodOptions { /** * Defines instance. */ instance: any; /** * Defines valid properties. */ props: MenuProps; /** * Defines current inline state. */ state: MenuState; /** * Defines current options. */ context: MenuContext; /** * Defines valid attributes. */ attrs: any; /** * Defines parent options. */ parent: any; /** * Defines passthrough(pt) options in global config. */ global: object | undefined; } /** * Custom passthrough(pt) options. * @see {@link MenuProps.pt} */ export interface MenuPassThroughOptions { /** * Used to pass attributes to the root's DOM element. */ root?: MenuPassThroughOptionType; /** * Used to pass attributes to the list's DOM element. */ menu?: MenuPassThroughOptionType; /** * Used to pass attributes to the submenu header's DOM element. */ submenuHeader?: MenuPassThroughOptionType; /** * Used to pass attributes to the list item's DOM element. */ menuitem?: MenuPassThroughOptionType; /** * Used to pass attributes to the content's DOM element. */ content?: MenuPassThroughOptionType; /** * Used to pass attributes to the action's DOM element. */ action?: MenuPassThroughOptionType; /** * Used to pass attributes to the icon's DOM element. */ icon?: MenuPassThroughOptionType; /** * Used to pass attributes to the label's DOM element. */ label?: MenuPassThroughOptionType; /** * Used to pass attributes to the separator's DOM element. */ separator?: MenuPassThroughOptionType; /** * Used to pass attributes to the start of the component. */ start?: MenuPassThroughOptionType; /** * Used to pass attributes to the end of the component. */ end?: MenuPassThroughOptionType; /** * Used to manage all lifecycle hooks. * @see {@link BaseComponent.ComponentHooks} */ hooks?: ComponentHooks; /** * Used to control Vue Transition API. */ transition?: MenuPassThroughTransitionType; } /** * Custom passthrough attributes for each DOM elements */ export interface MenuPassThroughAttributes { [key: string]: any; } /** * Defines current inline state in Menu component. */ export interface MenuState { /** * Current id state as a string. */ id: string; /** * Current visible state as a boolean. * @defaultValue false */ overlayVisible: boolean; /** * Current focus state as a boolean. * @defaultValue false */ focused: boolean; /** * Focused option index. */ focusedOptionIndex: number; /** * Selected option index. */ selectedOptionIndex: number; } /** * Defines current options in Menu component. */ export interface MenuContext { /** * Current menuitem */ item: any; /** * Current index of the menuitem. */ index: number; /** * 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 Menu component. */ export interface MenuRouterBindProps { /** * Action element binding */ action: object; /** * Icon element binding */ icon: object; /** * Label element binding */ label: object; } /** * Defines valid properties in Menu component. */ export interface MenuProps { /** * 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?: 'body' | 'self' | string | 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; /** * 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 input element. */ ariaLabelledby?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {MenuPassThroughOptions} */ 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 Menu component. */ export interface MenuSlots { /** * Custom start template. */ start(): VNode[]; /** * Custom end template. */ end(): VNode[]; /** * Custom item template. * @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: MenuRouterBindProps; }): 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 item template. * @param {Object} scope - submenuheader slot's params. */ submenuheader(scope: { /** * Menuitem instance */ item: MenuItem; }): VNode[]; } /** * Defines valid emits in Menu component. */ export type MenuEmits = { /** * Callback to invoke when the component receives focus. * @param {Event} event - Browser event. */ focus: [event: Event]; /** * Callback to invoke when the component loses focus. * @param {Event} event - Browser event. */ blur: [event: Event]; }; /** * **TSVue - Menu** * * _Menu is a navigation / command component that supports dynamic and static positioning._ * * --- --- * ![TSVue](https://ik.imagekit.io/kurniadev/TS-HEAD-BLACK.png) * * @group Component * */ declare class Menu extends ClassComponent { /** * Toggles the visibility of the overlay. * @param {Event} event - Browser event. * * @memberof Menu */ toggle(event: Event): void; /** * Shows the overlay. * @param {Event} event - Browser event. * @param {*} [target] - Target element * * @memberof Menu */ show(event: Event, target?: any): void; /** * Hides the overlay. * * @memberof Menu */ hide(): void; } declare module '@vue/runtime-core' { interface GlobalComponents { Menu: GlobalComponentConstructor; } } export default Menu;