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/web.mjs CHANGED
@@ -1692,7 +1692,9 @@ var $;
1692
1692
  var $;
1693
1693
  (function ($) {
1694
1694
  function $mol_wire_solid() {
1695
- const current = $mol_wire_auto();
1695
+ let current = $mol_wire_auto();
1696
+ if (current.temp)
1697
+ current = current.host;
1696
1698
  if (current.reap !== nothing) {
1697
1699
  current?.sub_on(sub, sub.data.length);
1698
1700
  }
package/web.test.js CHANGED
@@ -770,7 +770,7 @@ var $;
770
770
  for (let i = 1; i < args.length; ++i) {
771
771
  if ($mol_compare_deep(args[0], args[i]))
772
772
  continue;
773
- if (args[0] instanceof Element && args[i] instanceof Element && args[0].outerHTML === args[i].outerHTML)
773
+ if (args[0] instanceof $mol_dom_context.Element && args[i] instanceof $mol_dom_context.Element && args[0].outerHTML === args[i].outerHTML)
774
774
  continue;
775
775
  return $mol_fail(new Error(`args[0] ≠ args[${i}]\n${print(args[0])}\n---\n${print(args[i])}`));
776
776
  }
@@ -2941,7 +2941,7 @@ var $;
2941
2941
  native.persist().then(actual => {
2942
2942
  setTimeout(() => this.persisted(actual, 'cache'), 5000);
2943
2943
  if (actual)
2944
- this.$.$mol_log3_rise({ place: `$mol_storage`, message: `Persist: Yes` });
2944
+ this.$.$mol_log3_done({ place: `$mol_storage`, message: `Persist: Yes` });
2945
2945
  else
2946
2946
  this.$.$mol_log3_fail({ place: `$mol_storage`, message: `Persist: No` });
2947
2947
  });