mol_jsx_lib 0.0.916 → 0.0.917
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.
- package/node.d.ts +2 -2
- package/node.deps.json +1 -1
- package/node.js +2 -0
- package/node.js.map +1 -1
- package/node.mjs +2 -0
- package/node.test.js +2 -0
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +2 -2
- package/web.deps.json +1 -1
- package/web.js +2 -0
- package/web.js.map +1 -1
- package/web.mjs +2 -0
package/node.mjs
CHANGED
|
@@ -1557,6 +1557,7 @@ var $;
|
|
|
1557
1557
|
plan() {
|
|
1558
1558
|
$mol_wire_fiber.planning.add(this);
|
|
1559
1559
|
$mol_wire_fiber.plan();
|
|
1560
|
+
return this;
|
|
1560
1561
|
}
|
|
1561
1562
|
reap() {
|
|
1562
1563
|
$mol_wire_fiber.reaping.add(this);
|
|
@@ -1656,6 +1657,7 @@ var $;
|
|
|
1656
1657
|
}
|
|
1657
1658
|
this.track_off(bu);
|
|
1658
1659
|
this.put(result);
|
|
1660
|
+
return this;
|
|
1659
1661
|
}
|
|
1660
1662
|
refresh() {
|
|
1661
1663
|
this.cursor = $mol_wire_cursor.stale;
|
package/node.test.js
CHANGED
|
@@ -1548,6 +1548,7 @@ var $;
|
|
|
1548
1548
|
plan() {
|
|
1549
1549
|
$mol_wire_fiber.planning.add(this);
|
|
1550
1550
|
$mol_wire_fiber.plan();
|
|
1551
|
+
return this;
|
|
1551
1552
|
}
|
|
1552
1553
|
reap() {
|
|
1553
1554
|
$mol_wire_fiber.reaping.add(this);
|
|
@@ -1647,6 +1648,7 @@ var $;
|
|
|
1647
1648
|
}
|
|
1648
1649
|
this.track_off(bu);
|
|
1649
1650
|
this.put(result);
|
|
1651
|
+
return this;
|
|
1650
1652
|
}
|
|
1651
1653
|
refresh() {
|
|
1652
1654
|
this.cursor = $mol_wire_cursor.stale;
|