We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26ecad4 commit 3e5aef4Copy full SHA for 3e5aef4
1 file changed
packages/grid/src/GridMetrics.ts
@@ -134,6 +134,8 @@ export type GridMetrics = {
134
visibleColumns: readonly VisibleIndex[];
135
136
// Array of visible, non-hidden columns, by grid index
137
+ // Hidden columns may be included in visibleColumns and visibleColumnWidths with a width of 0 because users can see them and adjust their width
138
+ // But we do not want the grid renderer to iterate over them, so we provide this separate array
139
visibleNonHiddenColumns: readonly VisibleIndex[];
140
141
// Map of the height/width of visible rows/columns
0 commit comments