2022-09-12 07:13:52 +00:00
|
|
|
const ScrollPanelProps = [
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'step',
|
|
|
|
type: 'number',
|
|
|
|
default: '5',
|
|
|
|
description: 'Step factor to scroll the content while pressing the arrow keys.'
|
2022-09-12 07:13:52 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
scrollpanel: {
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'ScrollPanel',
|
|
|
|
description: 'ScrollPanel is a cross browser, lightweight and themable alternative to native browser scrollbar.',
|
2022-09-12 07:13:52 +00:00
|
|
|
props: ScrollPanelProps
|
|
|
|
}
|
|
|
|
};
|