primevue
Version:
PrimeVue is a premium UI library for Vue featuring a rich set of 90+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBlock, wh
36 lines (33 loc) • 766 B
TypeScript
/**
*
* TabList is a helper component for Tabs component.
*
* [Live Demo](https://www.primevue.dev/tabs/)
*
* @module tabliststyle
*
*/
import type { BaseStyle } from '@primevue/core/base/style';
export enum TabListClasses {
/**
* Class name of the root element
*/
root = 'p-tablist',
/**
* Class name of the content element
*/
content = 'p-tablist-content',
/**
* Class name of the activebar element
*/
activeBar = 'p-tablist-active-bar',
/**
* Class name of the previous button element
*/
prevButton = 'p-tablist-prev-button',
/**
* Class name of the next button element
*/
nextButton = 'p-tablist-next-button'
}
export interface TabListStyle extends BaseStyle {}