primevue
Version:
PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc
90 lines (87 loc) • 2.06 kB
TypeScript
/**
*
* PrimeVue menu components share a common api to specify the menuitems and submenus.
*
* @module menuitem
*
*/
/**
* Custom command event.
* @todo next release should be able to change see menuItem.command
*/
export interface MenuItemCommandEvent {
/**
* Browser event.
*/
originalEvent: Event;
/**
* Menuitem instance.
*/
item: MenuItem;
/**
* Optional
*/
[key: string]: any;
}
/**
* Defines model of MenuItem API.
*/
export interface MenuItem {
/**
* Property name or getter function to use as the label of an item.
*/
label?: string | ((...args: any) => string) | undefined;
/**
* Icon of the item.
*/
icon?: string | undefined;
/**
* Callback to execute when item is clicked.
* @param {MenuItemCommandEvent} event - Custom command event.
* @todo next release should be able to change
*/
command?: (event: MenuItemCommandEvent) => void;
/**
* 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 | ((...args: any) => boolean) | undefined;
/**
* A boolean or a function to return a boolean to specify if the item is visible.
* @defaultValue true
*/
visible?: boolean | ((...args: any) => 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;
/**
* Optional
*/
[key: string]: any;
}