mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
Added style class definitions to *Style.d.ts
This commit is contained in:
parent
290b8e1335
commit
64dca2bdb9
136 changed files with 7542 additions and 1119 deletions
26
components/lib/carousel/style/CarouselStyle.d.ts
vendored
26
components/lib/carousel/style/CarouselStyle.d.ts
vendored
|
@ -1,3 +1,29 @@
|
|||
/**
|
||||
*
|
||||
* Carousel is a content slider featuring various customization options.
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/carousel/)
|
||||
*
|
||||
* @module carouselstyle
|
||||
*
|
||||
*/
|
||||
import { BaseStyle } from '../../base/style';
|
||||
|
||||
export enum CarouselClasses {
|
||||
root = 'p-carousel',
|
||||
header = 'p-carousel-header',
|
||||
contentContainer = 'p-carousel-content-container',
|
||||
content = 'p-carousel-content',
|
||||
pcPreviousButton = 'p-carousel-prev-button',
|
||||
viewport = 'p-carousel-viewport',
|
||||
itemList = 'p-carousel-item-list',
|
||||
itemClone = 'p-carousel-item-clone',
|
||||
item = 'p-carousel-item',
|
||||
pcNextButton = 'p-carousel-next-button',
|
||||
indicatorList = 'p-carousel-indicator-list',
|
||||
indicator = 'p-carousel-indicator',
|
||||
indicatorButton = 'p-carousel-indicator-button',
|
||||
footer = 'p-carousel-footer'
|
||||
}
|
||||
|
||||
export interface CarouselStyle extends BaseStyle {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue