Fixed #2920 - Improve ScrollPanel implementation for Accessibility

This commit is contained in:
Tuğçe Küçükoğlu 2022-09-01 15:47:49 +03:00
parent e2a631657b
commit 1f65c0892f
4 changed files with 208 additions and 11 deletions

View file

@ -1,6 +1,16 @@
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."
description: "ScrollPanel is a cross browser, lightweight and themable alternative to native browser scrollbar.",
props: ScrollPanelProps
}
};