@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
- tableState.setMatchedRows(filteredRowIds);
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: GridDataRow<any>[];
25
+ private rows;
26
26
  private readonly rowStates;
27
27
  activeRowId: string | undefined;
28
28
  activeCellId: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homebound/beam",
3
- "version": "2.302.1",
3
+ "version": "2.302.2",
4
4
  "author": "Homebound",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",