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.js
CHANGED
|
@@ -2130,6 +2130,22 @@ var $;
|
|
|
2130
2130
|
;
|
|
2131
2131
|
"use strict";
|
|
2132
2132
|
var $;
|
|
2133
|
+
(function ($) {
|
|
2134
|
+
function $mol_wire_solid() {
|
|
2135
|
+
const current = $mol_wire_auto();
|
|
2136
|
+
if (current.reap !== nothing) {
|
|
2137
|
+
current?.sub_on(sub, sub.data.length);
|
|
2138
|
+
}
|
|
2139
|
+
current.reap = nothing;
|
|
2140
|
+
}
|
|
2141
|
+
$.$mol_wire_solid = $mol_wire_solid;
|
|
2142
|
+
const nothing = () => { };
|
|
2143
|
+
const sub = new $mol_wire_pub_sub;
|
|
2144
|
+
})($ || ($ = {}));
|
|
2145
|
+
//mol/wire/solid/solid.ts
|
|
2146
|
+
;
|
|
2147
|
+
"use strict";
|
|
2148
|
+
var $;
|
|
2133
2149
|
(function ($) {
|
|
2134
2150
|
function $mol_const(value) {
|
|
2135
2151
|
var getter = (() => value);
|
|
@@ -2451,6 +2467,7 @@ var $;
|
|
|
2451
2467
|
return this.toString();
|
|
2452
2468
|
}
|
|
2453
2469
|
dom_node(next) {
|
|
2470
|
+
$mol_wire_solid();
|
|
2454
2471
|
const node = next || $mol_dom_context.document.createElementNS(this.dom_name_space(), this.dom_name());
|
|
2455
2472
|
const id = this.dom_id();
|
|
2456
2473
|
node.setAttribute('id', id);
|