mol_jsx_lib 0.0.1416 → 0.0.1418
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 +1 -0
- package/node.d.ts.map +1 -1
- package/node.deps.json +1 -1
- package/node.js +5 -1
- package/node.js.map +1 -1
- package/node.mjs +5 -1
- package/node.test.js +5 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +1 -0
- package/web.d.ts.map +1 -1
- package/web.deps.json +1 -1
- package/web.js +5 -1
- package/web.js.map +1 -1
- package/web.mjs +5 -1
package/node.mjs
CHANGED
|
@@ -842,7 +842,7 @@ var $;
|
|
|
842
842
|
this.data.length = this.sub_from;
|
|
843
843
|
this.cursor = this.pub_from;
|
|
844
844
|
this.track_cut();
|
|
845
|
-
this.cursor = $mol_wire_cursor.
|
|
845
|
+
this.cursor = $mol_wire_cursor.stale;
|
|
846
846
|
}
|
|
847
847
|
track_cut() {
|
|
848
848
|
if (this.cursor < this.pub_from) {
|
|
@@ -1919,6 +1919,10 @@ var $;
|
|
|
1919
1919
|
this.emit();
|
|
1920
1920
|
return next;
|
|
1921
1921
|
}
|
|
1922
|
+
destructor() {
|
|
1923
|
+
super.destructor();
|
|
1924
|
+
this.cursor = $mol_wire_cursor.final;
|
|
1925
|
+
}
|
|
1922
1926
|
}
|
|
1923
1927
|
$.$mol_wire_task = $mol_wire_task;
|
|
1924
1928
|
})($ || ($ = {}));
|
package/node.test.js
CHANGED
|
@@ -833,7 +833,7 @@ var $;
|
|
|
833
833
|
this.data.length = this.sub_from;
|
|
834
834
|
this.cursor = this.pub_from;
|
|
835
835
|
this.track_cut();
|
|
836
|
-
this.cursor = $mol_wire_cursor.
|
|
836
|
+
this.cursor = $mol_wire_cursor.stale;
|
|
837
837
|
}
|
|
838
838
|
track_cut() {
|
|
839
839
|
if (this.cursor < this.pub_from) {
|
|
@@ -1910,6 +1910,10 @@ var $;
|
|
|
1910
1910
|
this.emit();
|
|
1911
1911
|
return next;
|
|
1912
1912
|
}
|
|
1913
|
+
destructor() {
|
|
1914
|
+
super.destructor();
|
|
1915
|
+
this.cursor = $mol_wire_cursor.final;
|
|
1916
|
+
}
|
|
1913
1917
|
}
|
|
1914
1918
|
$.$mol_wire_task = $mol_wire_task;
|
|
1915
1919
|
})($ || ($ = {}));
|