17 lines
429 B
JavaScript
17 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
|
||
|
}
|
||
|
};
|