mol_plot_all 1.2.846 → 1.2.848

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.mjs CHANGED
@@ -2203,7 +2203,9 @@ var $;
2203
2203
  var $;
2204
2204
  (function ($) {
2205
2205
  function $mol_wire_solid() {
2206
- const current = $mol_wire_auto();
2206
+ let current = $mol_wire_auto();
2207
+ if (current.temp)
2208
+ current = current.host;
2207
2209
  if (current.reap !== nothing) {
2208
2210
  current?.sub_on(sub, sub.data.length);
2209
2211
  }
package/node.test.js CHANGED
@@ -2195,7 +2195,9 @@ var $;
2195
2195
  var $;
2196
2196
  (function ($) {
2197
2197
  function $mol_wire_solid() {
2198
- const current = $mol_wire_auto();
2198
+ let current = $mol_wire_auto();
2199
+ if (current.temp)
2200
+ current = current.host;
2199
2201
  if (current.reap !== nothing) {
2200
2202
  current?.sub_on(sub, sub.data.length);
2201
2203
  }
@@ -7125,7 +7127,7 @@ var $;
7125
7127
  for (let i = 1; i < args.length; ++i) {
7126
7128
  if ($mol_compare_deep(args[0], args[i]))
7127
7129
  continue;
7128
- if (args[0] instanceof Element && args[i] instanceof Element && args[0].outerHTML === args[i].outerHTML)
7130
+ if (args[0] instanceof $mol_dom_context.Element && args[i] instanceof $mol_dom_context.Element && args[0].outerHTML === args[i].outerHTML)
7129
7131
  continue;
7130
7132
  return $mol_fail(new Error(`args[0] ≠ args[${i}]\n${print(args[0])}\n---\n${print(args[i])}`));
7131
7133
  }
@@ -9441,7 +9443,7 @@ var $;
9441
9443
  native.persist().then(actual => {
9442
9444
  setTimeout(() => this.persisted(actual, 'cache'), 5000);
9443
9445
  if (actual)
9444
- this.$.$mol_log3_rise({ place: `$mol_storage`, message: `Persist: Yes` });
9446
+ this.$.$mol_log3_done({ place: `$mol_storage`, message: `Persist: Yes` });
9445
9447
  else
9446
9448
  this.$.$mol_log3_fail({ place: `$mol_storage`, message: `Persist: No` });
9447
9449
  });