primevue-mirror/components/lib/tablist/style/TabListStyle.d.ts

40 lines
837 B
TypeScript
Raw Normal View History

/**
*
* TabList is a helper component for Tabs component.
*
* [Live Demo](https://www.primevue.org/tabs/)
*
* @module tabliststyle
*
*/
2024-04-19 13:51:57 +00:00
import { BaseStyle } from '../../base/style';
export enum TabListClasses {
2024-05-22 13:52:02 +00:00
/**
* Class name of the root element
*/
root = 'p-tablist',
2024-05-22 13:52:02 +00:00
/**
* Class name of the content element
*/
content = 'p-tablist-content',
2024-05-22 13:52:02 +00:00
/**
* Class name of the tabs element
*/
tabs = 'p-tablist-tab-list',
2024-05-22 13:52:02 +00:00
/**
* Class name of the inkbar element
*/
inkbar = 'p-tablist-active-bar',
2024-05-22 13:52:02 +00:00
/**
* Class name of the previous button element
*/
previousButton = 'p-tablist-prev-button',
2024-05-22 13:52:02 +00:00
/**
* Class name of the next button element
*/
nextButton = 'p-tablist-next-button'
}
2024-04-19 13:51:57 +00:00
export interface TabListStyle extends BaseStyle {}