2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Carousel is a content slider featuring various customization options.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/carousel/)
|
|
|
|
*
|
|
|
|
* @module carouselstyle
|
|
|
|
*
|
|
|
|
*/
|
2023-10-02 13:15:41 +00:00
|
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
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'
|
|
|
|
}
|
|
|
|
|
2023-10-02 13:15:41 +00:00
|
|
|
export interface CarouselStyle extends BaseStyle {}
|