You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* disable telemetry in storybook (config file does not seem to work)
* BREAKING remove localStorage for columns visibility
* [refactor] rename ColumnVisibilityStatesContext to ColumnsVisibilityContext
* create tests
* [refactor] reduce the number of props, depend on ColumnParametersContext
* add tests
* refactor test
* add columnsVisibility prop to HighTable
onKeyDownCell?: (event:KeyboardEvent, col:number, row:number) =>void// key down handler. For accessibility, it should be passed if onDoubleClickCell is passed.
Copy file name to clipboardExpand all lines: src/helpers/constants.ts
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,6 @@ export const defaultNumRowsPerPage = 20 // number of rows per page for keyboard
6
6
7
7
constcolumnWidthsFormatVersion='2'// increase in case of breaking changes in the column widths format
8
8
exportconstcolumnWidthsSuffix=`:${columnWidthsFormatVersion}:column:widths`// suffix used to store the column widths in local storage
9
-
constcolumnVisibilityStatesFormatVersion='2'// increase in case of breaking changes in the column visibility format (changed from array by index to record by name)
10
-
exportconstcolumnVisibilityStatesSuffix=`:${columnVisibilityStatesFormatVersion}:column:visibility`// suffix used to store the columns visibility in local storage
11
9
12
10
exportconstariaOffset=2// 1-based index, +1 for the header
0 commit comments