primevue
Version:
PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc
36 lines (33 loc) • 835 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 type { BaseStyle } from '@primevue/core/base/style';
export enum ScrollPanelClasses {
/**
* Class name of the root element
*/
root = 'p-scrollpanel',
/**
* Class name of the content container element
*/
contentContainer = 'p-scrollpanel-content-container',
/**
* Class name of the content element
*/
content = 'p-scrollpanel-content',
/**
* Class name of the bar x element
*/
barX = 'p-scrollpanel-bar-x',
/**
* Class name of the bar y element
*/
barY = 'p-scrollpanel-bar-y'
}
export interface ScrollPanelStyle extends BaseStyle {}