Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion types/react-virtualized/dist/es/Grid.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ export type GridCoreProps = {
/** Optional inline style */
style?: React.CSSProperties;
/** Tab index for focus */
tabIndex?: number;
tabIndex?: number | null;
/**
* Width of Grid; this property determines the number of visible (vs virtualized) columns.
*/
Expand Down
2 changes: 1 addition & 1 deletion types/react-virtualized/dist/es/List.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export type ListProps = GridCoreProps & {
/** Optional inline style */
style?: React.CSSProperties;
/** Tab index for focus */
tabIndex?: number;
tabIndex?: number | null;
/** Width of list */
width: number;
}
Expand Down
2 changes: 1 addition & 1 deletion types/react-virtualized/dist/es/Masonry.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export type MasonryProps = {
scrollingResetTimeInterval?: number,
scrollTop?: number,
style?: React.CSSProperties,
tabIndex?: number,
tabIndex?: number | null,
width: number,
/**
* PLEASE NOTE
Expand Down
2 changes: 1 addition & 1 deletion types/react-virtualized/dist/es/Table.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ export type TableProps = GridCoreProps & {
/** Optional inline style */
style?: React.CSSProperties;
/** Tab index for focus */
tabIndex?: number;
tabIndex?: number | null;
/** Width of list */
width?: number;
}
Expand Down
1 change: 1 addition & 0 deletions types/react-virtualized/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
// Szőke Szabolcs <https://github.com/szabolcsx>
// Kræn Hansen <https://github.com/kraenhansen>
// Steve Zhang <https://github.com/Stevearzh>
// Maciej Goszczycki <https://github.com/mgoszcz2>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.6

Expand Down