Fixed #2813 - Add tabindex property to VirtualScroller

This commit is contained in:
mertsincan 2022-07-29 02:01:07 +01:00
parent 0552ee1268
commit 50b97bc720
4 changed files with 22 additions and 1 deletions

View file

@ -94,6 +94,12 @@ const VirtualScrollerProps = [
type: "boolean",
default: "false",
description: "Whether to show loader."
},
{
name: "tabindex",
type: "number|string",
default: "0",
description: "Index of the element in tabbing order."
}
];