baked-recipe-admin
Version:
Baked is an opinionated framework for .NET in backend and Nuxt in frontend. This is a recipe package that brings together all the components one needs for an Admin UI.
40 lines (37 loc) • 856 B
TypeScript
/**
*
* 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 {}