@adbl/cells 0.0.6 → 0.0.7

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.
@@ -176,7 +176,7 @@ export class Cell {
176
176
  */
177
177
  get derivedCells() {
178
178
  // @ts-ignore
179
- return this.#derivedCells.map((cell) => cell.deref()).filter(Boolean);
179
+ return this.#derivedCells.map((cell) => cell[0].deref()).filter(Boolean);
180
180
  }
181
181
 
182
182
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adbl/cells",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "A simple implementation of reactive updates for JavaScript",
5
5
  "main": "index.js",
6
6
  "private": false,