add tab navigation option for slickgrid (#21947)

* profiler a11y bug fixes

* add new option

* replace old implementation

* update slickgrid
This commit is contained in:
Alan Ren
2023-02-15 21:37:01 -08:00
committed by GitHub
parent 8690c350d2
commit 32c7a4aeec
10 changed files with 26 additions and 31 deletions

View File

@@ -680,6 +680,11 @@ declare namespace Slick {
* Link to the accessibility issue: https://github.com/microsoft/azuredatastudio/issues/20784
*/
disableColumnBasedCellVirtualization?: boolean;
/**
* Whether tab/shift+tab can be used to navigate within the grid, if disabled, the focus will move out of the grid. The default value is true.
*/
enableInGridTabNavigation?: boolean;
}
export interface DataProvider<T extends SlickData> {