mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +00:00
Fixed #5621 - New Component: Tabs
This commit is contained in:
parent
53168665d4
commit
c80c3ad0ea
57 changed files with 3934 additions and 35 deletions
202
components/lib/tabs/Tabs.d.ts
vendored
Normal file
202
components/lib/tabs/Tabs.d.ts
vendored
Normal file
|
@ -0,0 +1,202 @@
|
|||
/**
|
||||
*
|
||||
* Tabs facilitates seamless switching between different views.
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/tabs/)
|
||||
*
|
||||
* @module tabs
|
||||
*
|
||||
*/
|
||||
import { VNode } from 'vue';
|
||||
import { ComponentHooks } from '../basecomponent';
|
||||
import { ButtonProps } from '../button';
|
||||
import { PassThroughOptions } from '../passthrough';
|
||||
import { ClassComponent, DesignToken, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
|
||||
|
||||
export declare type TabsPassThroughOptionType = TabsPassThroughAttributes | ((options: TabsPassThroughMethodOptions) => TabsPassThroughAttributes | string) | string | null | undefined;
|
||||
|
||||
/**
|
||||
* Custom passthrough(pt) option method.
|
||||
*/
|
||||
export interface TabsPassThroughMethodOptions {
|
||||
/**
|
||||
* Defines instance.
|
||||
*/
|
||||
instance: any;
|
||||
/**
|
||||
* Defines valid properties.
|
||||
*/
|
||||
props: TabsProps;
|
||||
/**
|
||||
* Defines current inline state.
|
||||
*/
|
||||
state: TabsState;
|
||||
/**
|
||||
* 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 TabsProps.pt}
|
||||
*/
|
||||
export interface TabsPassThroughOptions {
|
||||
/**
|
||||
* Used to pass attributes to the root's DOM element.
|
||||
*/
|
||||
root?: TabsPassThroughOptionType;
|
||||
/**
|
||||
* Used to manage all lifecycle hooks.
|
||||
* @see {@link BaseComponent.ComponentHooks}
|
||||
*/
|
||||
hooks?: ComponentHooks;
|
||||
}
|
||||
|
||||
/**
|
||||
* Custom passthrough attributes for each DOM elements
|
||||
*/
|
||||
export interface TabsPassThroughAttributes {
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines current inline state in Tabs component.
|
||||
*/
|
||||
export interface TabsState {
|
||||
/**
|
||||
* Current active value state.
|
||||
*/
|
||||
d_value: number;
|
||||
/**
|
||||
* Unique id for the Tabs component.
|
||||
*/
|
||||
id: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid properties in Tabs component.
|
||||
*/
|
||||
export interface TabsProps {
|
||||
/**
|
||||
* Value of the active tab.
|
||||
*/
|
||||
value: string;
|
||||
/**
|
||||
* When enabled, hidden tabs are not rendered at all. Defaults to false that hides tabs with css.
|
||||
* @defaultValue false
|
||||
*/
|
||||
lazy?: boolean | undefined;
|
||||
/**
|
||||
* Specifies the layout of the component, valid values are 'horizontal' and 'vertical'.
|
||||
* @defaultValue horizontal
|
||||
*/
|
||||
orientation?: 'horizontal' | 'vertical' | undefined;
|
||||
/**
|
||||
* When specified, enables horizontal and/or vertical scrolling.
|
||||
* @defaultValue false
|
||||
*/
|
||||
scrollable?: boolean | undefined;
|
||||
/**
|
||||
* Whether to display navigation buttons in container when scrollable is enabled.
|
||||
* @defaultValue true
|
||||
*/
|
||||
showNavigators?: boolean | undefined;
|
||||
/**
|
||||
* Index of the element in tabbing order.
|
||||
* @defaultValue 0
|
||||
*/
|
||||
tabindex?: number | undefined;
|
||||
/**
|
||||
* When enabled, the focused tab is activated.
|
||||
* @defaultValue false
|
||||
*/
|
||||
selectOnFocus?: boolean | undefined;
|
||||
/**
|
||||
* Used to pass all properties of the HTMLButtonElement to the previous button.
|
||||
*/
|
||||
previousButtonProps?: ButtonProps | undefined;
|
||||
/**
|
||||
* Used to pass all properties of the HTMLButtonElement to the next button.
|
||||
*/
|
||||
nextButtonProps?: ButtonProps | 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 {TabsPassThroughOptions}
|
||||
*/
|
||||
pt?: PassThrough<TabsPassThroughOptions>;
|
||||
/**
|
||||
* 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 Tabs slots.
|
||||
*/
|
||||
export interface TabsSlots {
|
||||
/**
|
||||
* Default slot to detect TabPanel components.
|
||||
*/
|
||||
default(): VNode[];
|
||||
/**
|
||||
* Previous button icon template for the scrollable component.
|
||||
*/
|
||||
previousicon(): VNode[];
|
||||
/**
|
||||
* Next button icon template for the scrollable component.
|
||||
*/
|
||||
nexticon(): VNode[];
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid emits in Tabs component.
|
||||
*/
|
||||
export interface TabsEmits {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {string} value - Current value.
|
||||
*/
|
||||
'update:value'(value: number): void;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* **PrimeVue - Tabs**
|
||||
*
|
||||
* _Tabs facilitates seamless switching between different views._
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/tabs/)
|
||||
* --- ---
|
||||
* 
|
||||
*
|
||||
* @group Component
|
||||
*
|
||||
*/
|
||||
declare class Tabs extends ClassComponent<TabsProps, TabsSlots, TabsEmits> {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Tabs: GlobalComponentConstructor<Tabs>;
|
||||
}
|
||||
}
|
||||
|
||||
export default Tabs;
|
Loading…
Add table
Add a link
Reference in a new issue