Class .d.ts comments added

This commit is contained in:
tugcekucukoglu 2024-05-22 16:52:02 +03:00
parent 9c906b4122
commit 145c91adfb
97 changed files with 4744 additions and 858 deletions

View file

@ -11,17 +11,53 @@
import { BaseStyle } from '../../base/style';
export enum TabViewClasses {
/**
* Class name of the root element
*/
root = 'p-tabview',
/**
* Class name of the nav container element
*/
navContainer = 'p-tabview-tablist-container',
/**
* Class name of the previous button element
*/
previousButton = 'p-tabview-prev-button',
/**
* Class name of the nav content element
*/
navContent = 'p-tabview-tablist-scroll-container',
/**
* Class name of the nav element
*/
nav = 'p-tabview-tablist',
/**
* Class name of the tab header element
*/
tabHeader = 'p-tabview-tablist-item',
/**
* Class name of the tab header action element
*/
tabHeaderAction = 'p-tabview-tab-header',
/**
* Class name of the tab header title element
*/
tabHeaderTitle = 'p-tabview-tab-title',
/**
* Class name of the tab content element
*/
tabContent = 'p-tabview-panel',
/**
* Class name of the inkbar element
*/
inkbar = 'p-tabview-ink-bar',
/**
* Class name of the next button element
*/
nextButton = 'p-tabview-next-button',
/**
* Class name of the panel container element
*/
panelContainer = 'p-tabview-panels'
}