mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-11 09:52:35 +00:00
20 lines
533 B
TypeScript
20 lines
533 B
TypeScript
/**
|
|
*
|
|
* ScrollPanel is a cross browser, lightweight and themable alternative to native browser scrollbar.
|
|
*
|
|
* [Live Demo](https://www.primevue.org/scrollpanel/)
|
|
*
|
|
* @module scrollpanelstyle
|
|
*
|
|
*/
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
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'
|
|
}
|
|
|
|
export interface ScrollPanelStyle extends BaseStyle {}
|