claude-web/node_modules/primevue/tablist/style/index.d.ts

40 lines
856 B
TypeScript
Raw Permalink Normal View History

2026-02-23 02:23:38 +00:00
/**
*
* TabList is a helper component for Tabs component.
*
* [Live Demo](https://www.primevue.org/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 tabs element
*/
tabList = 'p-tablist-tab-list',
/**
* 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 {}