@homebound/beam 2.302.1 → 2.302.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -232,7 +232,9 @@ function GridTable(props) {
|
|
|
232
232
|
if (tooManyClientSideRows) {
|
|
233
233
|
visibleDataRows = visibleDataRows.slice(0, filterMaxRows + keptSelectedRows.length);
|
|
234
234
|
}
|
|
235
|
-
|
|
235
|
+
(0, react_1.useEffect)(() => {
|
|
236
|
+
tableState.setMatchedRows(filteredRowIds);
|
|
237
|
+
}, [tableState, filteredRowIds]);
|
|
236
238
|
// Push back to the caller a way to ask us where a row is.
|
|
237
239
|
const { rowLookup } = props;
|
|
238
240
|
if (rowLookup) {
|
|
@@ -22,7 +22,7 @@ export type SelectedState = "checked" | "unchecked" | "partial";
|
|
|
22
22
|
export declare class TableState {
|
|
23
23
|
private readonly collapsedRows;
|
|
24
24
|
private persistCollapse;
|
|
25
|
-
rows
|
|
25
|
+
private rows;
|
|
26
26
|
private readonly rowStates;
|
|
27
27
|
activeRowId: string | undefined;
|
|
28
28
|
activeCellId: string | undefined;
|