primevue-mirror/components/lib/tabview/style/TabViewStyle.d.ts

65 lines
1.5 KiB
TypeScript
Raw Normal View History

/**
* @deprecated since v4. Use Tabs component instead.
*
* TabView is a container component to group content with tabs.
*
* [Live Demo](https://www.primevue.org/tabview/)
*
* @module tabview
*
*/
2023-10-02 13:15:41 +00:00
import { BaseStyle } from '../../base/style';
export enum TabViewClasses {
2024-05-22 13:52:02 +00:00
/**
* Class name of the root element
*/
root = 'p-tabview',
2024-05-22 13:52:02 +00:00
/**
* Class name of the nav container element
*/
navContainer = 'p-tabview-tablist-container',
2024-05-22 13:52:02 +00:00
/**
* Class name of the previous button element
*/
previousButton = 'p-tabview-prev-button',
2024-05-22 13:52:02 +00:00
/**
* Class name of the nav content element
*/
navContent = 'p-tabview-tablist-scroll-container',
2024-05-22 13:52:02 +00:00
/**
* Class name of the nav element
*/
nav = 'p-tabview-tablist',
2024-05-22 13:52:02 +00:00
/**
* Class name of the tab header element
*/
tabHeader = 'p-tabview-tablist-item',
2024-05-22 13:52:02 +00:00
/**
* Class name of the tab header action element
*/
tabHeaderAction = 'p-tabview-tab-header',
2024-05-22 13:52:02 +00:00
/**
* Class name of the tab header title element
*/
tabHeaderTitle = 'p-tabview-tab-title',
2024-05-22 13:52:02 +00:00
/**
* Class name of the tab content element
*/
tabContent = 'p-tabview-panel',
2024-05-22 13:52:02 +00:00
/**
* Class name of the inkbar element
*/
inkbar = 'p-tabview-ink-bar',
2024-05-22 13:52:02 +00:00
/**
* Class name of the next button element
*/
nextButton = 'p-tabview-next-button',
2024-05-22 13:52:02 +00:00
/**
* Class name of the panel container element
*/
panelContainer = 'p-tabview-panels'
}
2023-10-02 13:15:41 +00:00
export interface TabViewStyle extends BaseStyle {}