mol_wire_lib 1.0.861 → 1.0.863

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
@@ -712,10 +712,12 @@ var $;
712
712
  [$mol_wire_cursor.fresh]: '🟢',
713
713
  [$mol_wire_cursor.final]: '🔵',
714
714
  }[this.cursor] ?? this.cursor.toString();
715
- return $mol_dev_format_div({}, $mol_dev_format_auto({
716
- [$mol_dev_format_head]: () => $mol_dev_format_shade(cursor),
717
- [$mol_dev_format_body]: () => $mol_dev_format_native(this),
718
- }), $mol_dev_format_auto(this.cache));
715
+ return $mol_dev_format_div({}, $mol_owning_check(this, this.cache)
716
+ ? $mol_dev_format_auto({
717
+ [$mol_dev_format_head]: () => $mol_dev_format_shade(cursor),
718
+ [$mol_dev_format_body]: () => $mol_dev_format_native(this),
719
+ })
720
+ : $mol_dev_format_shade($mol_dev_format_native(this), cursor), $mol_dev_format_auto(this.cache));
719
721
  }
720
722
  get $() {
721
723
  return (this.host ?? this.task)['$'];
package/node.test.js CHANGED
@@ -704,10 +704,12 @@ var $;
704
704
  [$mol_wire_cursor.fresh]: '🟢',
705
705
  [$mol_wire_cursor.final]: '🔵',
706
706
  }[this.cursor] ?? this.cursor.toString();
707
- return $mol_dev_format_div({}, $mol_dev_format_auto({
708
- [$mol_dev_format_head]: () => $mol_dev_format_shade(cursor),
709
- [$mol_dev_format_body]: () => $mol_dev_format_native(this),
710
- }), $mol_dev_format_auto(this.cache));
707
+ return $mol_dev_format_div({}, $mol_owning_check(this, this.cache)
708
+ ? $mol_dev_format_auto({
709
+ [$mol_dev_format_head]: () => $mol_dev_format_shade(cursor),
710
+ [$mol_dev_format_body]: () => $mol_dev_format_native(this),
711
+ })
712
+ : $mol_dev_format_shade($mol_dev_format_native(this), cursor), $mol_dev_format_auto(this.cache));
711
713
  }
712
714
  get $() {
713
715
  return (this.host ?? this.task)['$'];