2023-03-01 13:04:25 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Menubar is a horizontal menu component.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/menubar/)
|
|
|
|
*
|
|
|
|
* @module menubar
|
|
|
|
*
|
|
|
|
*/
|
2022-12-08 11:04:25 +00:00
|
|
|
import { ButtonHTMLAttributes, VNode } from 'vue';
|
2023-07-06 11:17:08 +00:00
|
|
|
import { ComponentHooks } from '../basecomponent';
|
2022-09-06 12:03:37 +00:00
|
|
|
import { MenuItem } from '../menuitem';
|
2022-12-08 11:04:25 +00:00
|
|
|
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2023-07-11 22:42:43 +00:00
|
|
|
export declare type MenubarPassThroughOptionType = MenubarPassThroughAttributes | ((options: MenubarPassThroughMethodOptions) => MenubarPassThroughAttributes | string) | string | null | undefined;
|
2023-04-26 09:58:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough(pt) option method.
|
|
|
|
*/
|
|
|
|
export interface MenubarPassThroughMethodOptions {
|
2023-07-06 12:01:33 +00:00
|
|
|
instance: any;
|
2023-04-26 09:58:22 +00:00
|
|
|
props: MenubarProps;
|
|
|
|
state: MenubarState;
|
2023-04-28 10:15:44 +00:00
|
|
|
context: MenubarContext;
|
2023-04-26 09:58:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough(pt) options.
|
|
|
|
* @see {@link MenubarProps.pt}
|
|
|
|
*/
|
|
|
|
export interface MenubarPassThroughOptions {
|
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the root's DOM element.
|
2023-04-26 09:58:22 +00:00
|
|
|
*/
|
|
|
|
root?: MenubarPassThroughOptionType;
|
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the list's DOM element.
|
2023-04-26 09:58:22 +00:00
|
|
|
*/
|
|
|
|
menu?: MenubarPassThroughOptionType;
|
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the list item's DOM element.
|
2023-04-26 09:58:22 +00:00
|
|
|
*/
|
|
|
|
menuitem?: MenubarPassThroughOptionType;
|
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the content's DOM element.
|
2023-04-26 09:58:22 +00:00
|
|
|
*/
|
|
|
|
content?: MenubarPassThroughOptionType;
|
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the action's DOM element.
|
2023-04-26 09:58:22 +00:00
|
|
|
*/
|
|
|
|
action?: MenubarPassThroughOptionType;
|
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the icon's DOM element.
|
2023-04-26 09:58:22 +00:00
|
|
|
*/
|
|
|
|
icon?: MenubarPassThroughOptionType;
|
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the label's DOM element.
|
2023-04-26 09:58:22 +00:00
|
|
|
*/
|
|
|
|
label?: MenubarPassThroughOptionType;
|
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the submenu icon's DOM element.
|
2023-04-26 09:58:22 +00:00
|
|
|
*/
|
2023-05-03 12:53:24 +00:00
|
|
|
submenuIcon?: MenubarPassThroughOptionType;
|
2023-04-26 09:58:22 +00:00
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the separator's DOM element.
|
2023-04-26 09:58:22 +00:00
|
|
|
*/
|
|
|
|
separator?: MenubarPassThroughOptionType;
|
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the mobile popup menu button's DOM element.
|
2023-04-26 09:58:22 +00:00
|
|
|
*/
|
|
|
|
button?: MenubarPassThroughOptionType;
|
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the mobile popup menu button icon's DOM element.
|
2023-04-26 09:58:22 +00:00
|
|
|
*/
|
|
|
|
popupIcon?: MenubarPassThroughOptionType;
|
2023-05-31 10:48:03 +00:00
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the submenu's DOM element.
|
2023-05-31 10:48:03 +00:00
|
|
|
*/
|
|
|
|
submenu?: MenubarPassThroughOptionType;
|
2023-04-26 09:58:22 +00:00
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the start of the component.
|
2023-04-26 09:58:22 +00:00
|
|
|
*/
|
|
|
|
start?: MenubarPassThroughOptionType;
|
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the end of the component.
|
2023-04-26 09:58:22 +00:00
|
|
|
*/
|
|
|
|
end?: MenubarPassThroughOptionType;
|
2023-07-06 11:09:01 +00:00
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to manage all lifecycle hooks
|
2023-07-06 11:09:01 +00:00
|
|
|
* @see {@link BaseComponent.ComponentHooks}
|
|
|
|
*/
|
|
|
|
hooks?: ComponentHooks;
|
2023-04-26 09:58:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough attributes for each DOM elements
|
|
|
|
*/
|
|
|
|
export interface MenubarPassThroughAttributes {
|
|
|
|
[key: string]: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Defines focused item info
|
|
|
|
*/
|
|
|
|
export interface MenubarFocusedItemInfo {
|
|
|
|
/**
|
|
|
|
* Active item index
|
|
|
|
*/
|
|
|
|
index: number;
|
|
|
|
/**
|
|
|
|
* Active item level
|
|
|
|
*/
|
|
|
|
level: number;
|
|
|
|
/**
|
|
|
|
* Parent key info
|
|
|
|
*/
|
|
|
|
parentKey: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Defines current inline state in Menubar component.
|
|
|
|
*/
|
|
|
|
export interface MenubarState {
|
|
|
|
/**
|
|
|
|
* Current id state as a string.
|
|
|
|
*/
|
|
|
|
id: string;
|
|
|
|
/**
|
|
|
|
* Current mobile menu active state as a boolean.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
mobileActive: boolean;
|
|
|
|
/**
|
|
|
|
* Current focus state as a boolean.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
focused: boolean;
|
|
|
|
/**
|
|
|
|
* Current focused item info.
|
|
|
|
* @type {MenubarFocusedItemInfo}
|
|
|
|
*/
|
|
|
|
focusedItemInfo: MenubarFocusedItemInfo;
|
|
|
|
/**
|
|
|
|
* Active item path.
|
|
|
|
* @type {MenubarFocusedItemInfo}
|
|
|
|
*/
|
|
|
|
activeItemPath: MenubarFocusedItemInfo[];
|
|
|
|
}
|
|
|
|
|
2023-04-27 14:16:09 +00:00
|
|
|
/**
|
|
|
|
* Defines current options in Menubar component.
|
|
|
|
*/
|
2023-04-28 10:15:44 +00:00
|
|
|
export interface MenubarContext {
|
2023-07-25 09:11:30 +00:00
|
|
|
/**
|
|
|
|
* Current menuitem
|
|
|
|
*/
|
|
|
|
item: any;
|
|
|
|
/**
|
|
|
|
* Current index of the menuitem.
|
|
|
|
*/
|
|
|
|
index: number;
|
2023-04-27 14:16:09 +00:00
|
|
|
/**
|
|
|
|
* Current active state of menuitem as a boolean.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
active: boolean;
|
|
|
|
/**
|
|
|
|
* Current focused state of menuitem as a boolean.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
focused: boolean;
|
2023-08-03 07:26:16 +00:00
|
|
|
/**
|
|
|
|
* Current level of the menuitem.
|
|
|
|
*/
|
|
|
|
level: number;
|
2023-04-27 14:16:09 +00:00
|
|
|
}
|
|
|
|
|
2023-03-01 13:04:25 +00:00
|
|
|
/**
|
|
|
|
* Defines valid properties in Menubar component.
|
|
|
|
*/
|
2022-09-06 12:03:37 +00:00
|
|
|
export interface MenubarProps {
|
|
|
|
/**
|
|
|
|
* An array of menuitems.
|
|
|
|
*/
|
|
|
|
model?: MenuItem[] | undefined;
|
|
|
|
/**
|
|
|
|
* Whether to apply 'router-link-active-exact' class if route exactly matches the item path.
|
2023-03-01 13:04:25 +00:00
|
|
|
* @defaultValue true
|
2022-09-06 12:03:37 +00:00
|
|
|
*/
|
|
|
|
exact?: boolean | undefined;
|
2022-12-08 11:04:25 +00:00
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass all properties of the HTMLButtonElement to the menu button.
|
2022-12-08 11:04:25 +00:00
|
|
|
*/
|
|
|
|
buttonProps?: ButtonHTMLAttributes | undefined;
|
|
|
|
/**
|
|
|
|
* Defines a string value that labels an interactive element.
|
|
|
|
*/
|
|
|
|
'aria-label'?: string | undefined;
|
|
|
|
/**
|
|
|
|
* Identifier of the underlying input element.
|
|
|
|
*/
|
|
|
|
'aria-labelledby'?: string | undefined;
|
2023-04-26 09:58:22 +00:00
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to DOM elements inside the component.
|
2023-04-26 09:58:22 +00:00
|
|
|
* @type {MenubarPassThroughOptions}
|
|
|
|
*/
|
|
|
|
pt?: MenubarPassThroughOptions;
|
2023-05-29 14:06:26 +00:00
|
|
|
/**
|
|
|
|
* When enabled, it removes component related styles in the core.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
unstyled?: boolean;
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
|
2023-03-01 13:04:25 +00:00
|
|
|
/**
|
|
|
|
* Defines valid slots in Menubar component.
|
|
|
|
*/
|
2022-09-06 12:03:37 +00:00
|
|
|
export interface MenubarSlots {
|
|
|
|
/**
|
|
|
|
* Custom start template.
|
|
|
|
*/
|
2023-03-01 13:04:25 +00:00
|
|
|
start(): VNode[];
|
2022-09-06 12:03:37 +00:00
|
|
|
/**
|
|
|
|
* Custom end template.
|
|
|
|
*/
|
2023-03-01 13:04:25 +00:00
|
|
|
end(): VNode[];
|
2022-09-06 12:03:37 +00:00
|
|
|
/**
|
|
|
|
* Custom item template.
|
|
|
|
* @param {Object} scope - item slot's params.
|
|
|
|
*/
|
2023-03-01 13:04:25 +00:00
|
|
|
item(scope: {
|
2022-09-06 12:03:37 +00:00
|
|
|
/**
|
|
|
|
* Menuitem instance
|
|
|
|
*/
|
|
|
|
item: MenuItem;
|
2023-03-01 13:04:25 +00:00
|
|
|
}): VNode[];
|
2023-04-05 11:56:52 +00:00
|
|
|
/**
|
2023-04-18 10:50:13 +00:00
|
|
|
* Custom popup icon template on responsive mode.
|
2023-04-05 11:56:52 +00:00
|
|
|
*/
|
2023-04-18 10:50:13 +00:00
|
|
|
popupicon(): VNode[];
|
2023-04-05 11:56:52 +00:00
|
|
|
/**
|
|
|
|
* Custom submenu icon template.
|
|
|
|
*/
|
|
|
|
submenuicon(scope: {
|
|
|
|
/**
|
|
|
|
* Whether item is root
|
|
|
|
*/
|
|
|
|
root: boolean;
|
|
|
|
/**
|
|
|
|
* Whether item is active
|
|
|
|
*/
|
|
|
|
active: boolean;
|
|
|
|
}): VNode[];
|
2023-04-17 06:10:56 +00:00
|
|
|
/**
|
|
|
|
* 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[];
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
|
2023-03-01 13:04:25 +00:00
|
|
|
/**
|
|
|
|
* Defines valid emits in Menubar component.
|
|
|
|
*/
|
|
|
|
export interface MenubarEmits {}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2023-03-01 13:04:25 +00:00
|
|
|
/**
|
|
|
|
* **PrimeVue - Menubar**
|
|
|
|
*
|
|
|
|
* _Menubar is a horizontal menu component._
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/menubar/)
|
|
|
|
* --- ---
|
2023-03-03 10:55:20 +00:00
|
|
|
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
|
2023-03-01 13:04:25 +00:00
|
|
|
*
|
|
|
|
* @group Component
|
|
|
|
*
|
|
|
|
*/
|
2022-09-14 11:26:01 +00:00
|
|
|
declare class Menubar extends ClassComponent<MenubarProps, MenubarSlots, MenubarEmits> {}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
|
|
|
declare module '@vue/runtime-core' {
|
|
|
|
interface GlobalComponents {
|
2022-09-14 11:26:01 +00:00
|
|
|
Menubar: GlobalComponentConstructor<Menubar>;
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Menubar;
|