@homebound/beam 2.106.3 → 2.106.4

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.
@@ -36,7 +36,7 @@ class RowState {
36
36
  this.collapsedRows = new mobx_1.ObservableSet(persistCollapse ? readLocalCollapseState(persistCollapse) : []);
37
37
  // Make ourselves an observable so that mobx will do caching of .collapseIds so
38
38
  // that it'll be a stable identity for GridTable to useMemo against.
39
- (0, mobx_1.makeAutoObservable)(this);
39
+ (0, mobx_1.makeAutoObservable)(this, { rows: false }); // as any b/c rows is private, so the mapped type doesn't see it
40
40
  }
41
41
  get collapsedIds() {
42
42
  return [...this.collapsedRows.values()];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homebound/beam",
3
- "version": "2.106.3",
3
+ "version": "2.106.4",
4
4
  "author": "Homebound",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",