mol_plot_all 1.2.437 → 1.2.438

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mol_plot_all",
3
- "version": "1.2.437",
3
+ "version": "1.2.438",
4
4
  "main": "node.js",
5
5
  "module": "node.esm.js",
6
6
  "browser": "web.js",
package/web.test.js CHANGED
@@ -1808,10 +1808,19 @@ var $;
1808
1808
  }
1809
1809
  }
1810
1810
  }
1811
- if (prev !== undefined && !$mol_compare_deep(prev, next)) {
1811
+ if (fiber.host === this)
1812
+ return next;
1813
+ if ($mol_compare_deep(prev, next)) {
1814
+ this.$.$mol_log3_rise({
1815
+ message: '💧 Same',
1816
+ place: fiber,
1817
+ });
1818
+ }
1819
+ else if (prev !== undefined) {
1812
1820
  this.$.$mol_log3_rise({
1813
- message: 'Changed',
1821
+ message: '🔥 Next',
1814
1822
  place: fiber,
1823
+ prev,
1815
1824
  });
1816
1825
  }
1817
1826
  return next;