mol_jsx_lib 0.0.102 → 0.0.103
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.deps.json +1 -1
- package/node.esm.js +6 -1
- package/node.esm.js.map +1 -1
- package/node.js +6 -1
- package/node.js.map +1 -1
- package/node.test.js +6 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.deps.json +1 -1
- package/web.esm.js +6 -1
- package/web.esm.js.map +1 -1
- package/web.js +6 -1
- package/web.js.map +1 -1
package/node.test.js
CHANGED
|
@@ -2050,10 +2050,15 @@ var $;
|
|
|
2050
2050
|
var $;
|
|
2051
2051
|
(function ($) {
|
|
2052
2052
|
function $mol_wire_solid() {
|
|
2053
|
-
$mol_wire_auto()
|
|
2053
|
+
const current = $mol_wire_auto();
|
|
2054
|
+
if (current.reap !== nothing) {
|
|
2055
|
+
current?.sub_on(sub, sub.data.length);
|
|
2056
|
+
}
|
|
2057
|
+
current.reap = nothing;
|
|
2054
2058
|
}
|
|
2055
2059
|
$.$mol_wire_solid = $mol_wire_solid;
|
|
2056
2060
|
const nothing = () => { };
|
|
2061
|
+
const sub = new $mol_wire_pub_sub;
|
|
2057
2062
|
})($ || ($ = {}));
|
|
2058
2063
|
//mol/wire/solid/solid.ts
|
|
2059
2064
|
;
|