mol_plot_all 1.2.410 → 1.2.411
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 +4 -0
- package/node.deps.json +1 -1
- package/node.esm.js +17 -0
- package/node.esm.js.map +1 -1
- package/node.js +17 -0
- package/node.js.map +1 -1
- package/node.test.js +17 -0
- package/node.test.js.map +1 -1
- package/package.json +2 -1
- package/web.d.ts +4 -0
- package/web.deps.json +1 -1
- package/web.esm.js +17 -0
- package/web.esm.js.map +1 -1
- package/web.js +17 -0
- package/web.js.map +1 -1
package/node.test.js
CHANGED
|
@@ -2122,6 +2122,22 @@ var $;
|
|
|
2122
2122
|
;
|
|
2123
2123
|
"use strict";
|
|
2124
2124
|
var $;
|
|
2125
|
+
(function ($) {
|
|
2126
|
+
function $mol_wire_solid() {
|
|
2127
|
+
const current = $mol_wire_auto();
|
|
2128
|
+
if (current.reap !== nothing) {
|
|
2129
|
+
current?.sub_on(sub, sub.data.length);
|
|
2130
|
+
}
|
|
2131
|
+
current.reap = nothing;
|
|
2132
|
+
}
|
|
2133
|
+
$.$mol_wire_solid = $mol_wire_solid;
|
|
2134
|
+
const nothing = () => { };
|
|
2135
|
+
const sub = new $mol_wire_pub_sub;
|
|
2136
|
+
})($ || ($ = {}));
|
|
2137
|
+
//mol/wire/solid/solid.ts
|
|
2138
|
+
;
|
|
2139
|
+
"use strict";
|
|
2140
|
+
var $;
|
|
2125
2141
|
(function ($) {
|
|
2126
2142
|
function $mol_const(value) {
|
|
2127
2143
|
var getter = (() => value);
|
|
@@ -2443,6 +2459,7 @@ var $;
|
|
|
2443
2459
|
return this.toString();
|
|
2444
2460
|
}
|
|
2445
2461
|
dom_node(next) {
|
|
2462
|
+
$mol_wire_solid();
|
|
2446
2463
|
const node = next || $mol_dom_context.document.createElementNS(this.dom_name_space(), this.dom_name());
|
|
2447
2464
|
const id = this.dom_id();
|
|
2448
2465
|
node.setAttribute('id', id);
|