Adding screen reader optimized mode to slickgrid (#21069)

This commit is contained in:
Aasim Khan
2022-11-02 15:11:16 -07:00
committed by GitHub
parent f6dbe7539c
commit 4823a76833
41 changed files with 165 additions and 73 deletions

View File

@@ -673,6 +673,13 @@ declare namespace Slick {
*
*/
minRowBuffer?: number;
/**
* Disable dom virtualization based on visible columns. When true, the grid will render all columns, even if they are not visible.
* This is a mitigation for screen reader issues not announcing column number of visible cells properly.
* Link to the accessibility issue: https://github.com/microsoft/azuredatastudio/issues/20784
*/
disableColumnBasedCellVirtualization?: boolean;
}
export interface DataProvider<T extends SlickData> {