285 lines
6.6 KiB
TypeScript
Executable File
285 lines
6.6 KiB
TypeScript
Executable File
/**
|
|
*
|
|
* TabMenu is a navigation component that displays items as tab headers. Example below uses nested routes with TabMenu.
|
|
*
|
|
* [Live Demo](https://www.primevue.org/tabmenu/)
|
|
*
|
|
* @module tabmenu
|
|
*
|
|
*/
|
|
import { VNode } from 'vue';
|
|
import { ComponentHooks } from '../basecomponent';
|
|
import { MenuItem } from '../menuitem';
|
|
import { PassThroughOptions } from '../passthrough';
|
|
import { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
|
|
|
|
export declare type TabMenuPassThroughOptionType = TabMenuPassThroughAttributes | ((options: TabMenuPassThroughMethodOptions) => TabMenuPassThroughAttributes | string) | string | null | undefined;
|
|
|
|
/**
|
|
* Custom passthrough(pt) option method.
|
|
*/
|
|
export interface TabMenuPassThroughMethodOptions {
|
|
/**
|
|
* Defines instance.
|
|
*/
|
|
instance: any;
|
|
/**
|
|
* Defines valid properties.
|
|
*/
|
|
props: TabMenuProps;
|
|
/**
|
|
* Defines current inline state.
|
|
*/
|
|
state: TabMenuState;
|
|
/**
|
|
* Defines current options.
|
|
*/
|
|
context: TabMenuContext;
|
|
/**
|
|
* 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 TabMenuProps.pt}
|
|
*/
|
|
export interface TabMenuPassThroughOptions {
|
|
/**
|
|
* Used to pass attributes to the root's DOM element.
|
|
*/
|
|
root?: TabMenuPassThroughOptionType;
|
|
/**
|
|
* Used to pass attributes to the tablist's DOM element.
|
|
*/
|
|
tablist?: TabMenuPassThroughOptionType;
|
|
/**
|
|
* Used to pass attributes to the item's DOM element.
|
|
*/
|
|
item?: TabMenuPassThroughOptionType;
|
|
/**
|
|
* Used to pass attributes to the item link's DOM element.
|
|
*/
|
|
itemLink?: TabMenuPassThroughOptionType;
|
|
/**
|
|
* Used to pass attributes to the item itemIcon's DOM element.
|
|
*/
|
|
itemIcon?: TabMenuPassThroughOptionType;
|
|
/**
|
|
* Used to pass attributes to the item label's DOM element.
|
|
*/
|
|
itemLabel?: TabMenuPassThroughOptionType;
|
|
/**
|
|
* Used to pass attributes to the inkbar's DOM element.
|
|
*/
|
|
activeBar?: TabMenuPassThroughOptionType;
|
|
/**
|
|
* Used to manage all lifecycle hooks.
|
|
* @see {@link BaseComponent.ComponentHooks}
|
|
*/
|
|
hooks?: ComponentHooks;
|
|
}
|
|
|
|
/**
|
|
* Custom passthrough attributes for each DOM elements
|
|
*/
|
|
export interface TabMenuPassThroughAttributes {
|
|
[key: string]: any;
|
|
}
|
|
|
|
/**
|
|
* Defines current inline state in TabMenu component.
|
|
*/
|
|
export interface TabMenuState {
|
|
/**
|
|
* Current active index state as a number.
|
|
* @defaulValue 0
|
|
*/
|
|
d_activeIndex: number;
|
|
}
|
|
|
|
/**
|
|
* Defines current options in TabMenu component.
|
|
*/
|
|
export interface TabMenuContext {
|
|
/**
|
|
* Current menuitem
|
|
*/
|
|
item: any;
|
|
/**
|
|
* Index of the menuitem
|
|
*/
|
|
index: number;
|
|
}
|
|
|
|
/**
|
|
* Custom change event.
|
|
* @see {@link TabMenuEmitsOptions['tab-change']}
|
|
*/
|
|
export interface TabMenuChangeEvent {
|
|
/**
|
|
* Browser event
|
|
*/
|
|
originalEvent: Event;
|
|
/**
|
|
* Index of the selected tab
|
|
*/
|
|
index: number;
|
|
}
|
|
|
|
/**
|
|
* Defines valid router binding props in TabMenu component.
|
|
*/
|
|
export interface TabMenuRouterBindProps {
|
|
/**
|
|
* Action element binding
|
|
*/
|
|
action: object;
|
|
/**
|
|
* Icon element binding
|
|
*/
|
|
icon: object;
|
|
/**
|
|
* Label element binding
|
|
*/
|
|
label: object;
|
|
}
|
|
|
|
/**
|
|
* Defines valid properties in TabMenu component.
|
|
*/
|
|
export interface TabMenuProps {
|
|
/**
|
|
* An array of menuitems.
|
|
*/
|
|
model?: MenuItem[] | undefined;
|
|
/**
|
|
* Defines if active route highlight should match the exact route path.
|
|
* @deprecated since v3.40.0.
|
|
* @defaultValue true
|
|
*/
|
|
exact?: boolean | undefined;
|
|
/**
|
|
* Active index of menuitem.
|
|
* @defaultValue 0
|
|
*/
|
|
activeIndex?: number | undefined;
|
|
/**
|
|
* Defines a string value that labels an interactive element.
|
|
*/
|
|
ariaLabel?: string | undefined;
|
|
/**
|
|
* Identifier of the underlying input element.
|
|
*/
|
|
ariaLabelledby?: string | undefined;
|
|
/**
|
|
* It generates scoped CSS variables using design tokens for the component.
|
|
*/
|
|
dt?: DesignToken<any>;
|
|
/**
|
|
* Used to pass attributes to DOM elements inside the component.
|
|
* @type {TabMenuPassThroughOptions}
|
|
*/
|
|
pt?: PassThrough<TabMenuPassThroughOptions>;
|
|
/**
|
|
* 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 TabMenu component.
|
|
*/
|
|
export interface TabMenuSlots {
|
|
/**
|
|
* Custom content for each item.
|
|
* @param {Object} scope - item slot's params.
|
|
*/
|
|
item(scope: {
|
|
/**
|
|
* Menuitem instance
|
|
*/
|
|
item: MenuItem;
|
|
/**
|
|
* Index of the menuitem
|
|
*/
|
|
index: number;
|
|
/**
|
|
* Current active state of the menuitem
|
|
*/
|
|
active: boolean;
|
|
/**
|
|
* Label property of the menuitem
|
|
*/
|
|
label: string | ((...args: any) => string) | undefined;
|
|
/**
|
|
* Binding properties of the menuitem
|
|
*/
|
|
props: TabMenuRouterBindProps;
|
|
}): 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[];
|
|
}
|
|
|
|
/**
|
|
* Defines valid emits in TabMenu component.
|
|
*/
|
|
export interface TabMenuEmitsOptions {
|
|
/**
|
|
* Callback to invoke when an active tab is changed.
|
|
* @param {TabMenuChangeEvent} event - Custom tab change event.
|
|
*/
|
|
'tab-change'(event: TabMenuChangeEvent): void;
|
|
}
|
|
|
|
export declare type TabMenuEmits = EmitFn<TabMenuEmitsOptions>;
|
|
|
|
/**
|
|
* **PrimeVue - TabMenu**
|
|
*
|
|
* _TabMenu is a navigation component that displays items as tab headers. Example below uses nested routes with TabMenu._
|
|
*
|
|
* [Live Demo](https://www.primevue.org/tabmenu/)
|
|
* --- ---
|
|
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
|
|
*
|
|
* @group Component
|
|
*
|
|
*/
|
|
declare const TabMenu: DefineComponent<TabMenuProps, TabMenuSlots, TabMenuEmits>;
|
|
|
|
declare module 'vue' {
|
|
export interface GlobalComponents {
|
|
TabMenu: GlobalComponentConstructor<TabMenuProps, TabMenuSlots, TabMenuEmits>;
|
|
}
|
|
}
|
|
|
|
export default TabMenu;
|