2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* ScrollPanel is a cross browser, lightweight and themable alternative to native browser scrollbar.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/scrollpanel/)
|
|
|
|
*
|
|
|
|
* @module scrollpanelstyle
|
|
|
|
*
|
|
|
|
*/
|
2023-10-02 13:15:41 +00:00
|
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum ScrollPanelClasses {
|
|
|
|
root = 'p-scrollpanel',
|
|
|
|
contentContainer = 'p-scrollpanel-content-container',
|
|
|
|
content = 'p-scrollpanel-content',
|
|
|
|
barX = 'p-scrollpanel-bar-x',
|
|
|
|
barY = 'p-scrollpanel-bar-y'
|
|
|
|
}
|
|
|
|
|
2023-10-02 13:15:41 +00:00
|
|
|
export interface ScrollPanelStyle extends BaseStyle {}
|