@homebound/beam 2.119.0 → 2.119.1

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.
@@ -34,6 +34,8 @@ class RowState {
34
34
  this.visibleRows = new mobx_1.ObservableSet();
35
35
  // The current list of rows, basically a useRef.current. Not reactive.
36
36
  this.rows = [];
37
+ // Keeps track of the 'active' row, formatted `${row.kind}_${row.id}`
38
+ this.activeRowId = undefined;
37
39
  // Make ourselves an observable so that mobx will do caching of .collapseIds so
38
40
  // that it'll be a stable identity for GridTable to useMemo against.
39
41
  (0, mobx_1.makeAutoObservable)(this, { rows: false }); // as any b/c rows is private, so the mapped type doesn't see it
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homebound/beam",
3
- "version": "2.119.0",
3
+ "version": "2.119.1",
4
4
  "author": "Homebound",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",