primevue-mirror/api-generator/components/scrollpanel.js
Bahadir Sofuoglu 4d3a071e66 Lint changes
2022-09-14 17:26:41 +03:00

16 lines
429 B
JavaScript

const ScrollPanelProps = [
{
name: 'step',
type: 'number',
default: '5',
description: 'Step factor to scroll the content while pressing the arrow keys.'
}
];
module.exports = {
scrollpanel: {
name: 'ScrollPanel',
description: 'ScrollPanel is a cross browser, lightweight and themable alternative to native browser scrollbar.',
props: ScrollPanelProps
}
};