mam 1.11.389 → 1.11.391
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.test.js +2 -4
- package/node.test.js.map +1 -1
- package/package.json +1 -1
package/node.test.js
CHANGED
|
@@ -10044,6 +10044,8 @@ var $;
|
|
|
10044
10044
|
const val = fields[key];
|
|
10045
10045
|
if (val === undefined)
|
|
10046
10046
|
continue;
|
|
10047
|
+
if (val === el[key])
|
|
10048
|
+
continue;
|
|
10047
10049
|
el[key] = val;
|
|
10048
10050
|
}
|
|
10049
10051
|
}
|
|
@@ -10311,7 +10313,6 @@ var $;
|
|
|
10311
10313
|
return suffix;
|
|
10312
10314
|
}
|
|
10313
10315
|
$.$mol_view_state_key = $mol_view_state_key;
|
|
10314
|
-
const error_showed = new WeakMap();
|
|
10315
10316
|
class $mol_view extends $mol_object {
|
|
10316
10317
|
static Root(id) {
|
|
10317
10318
|
return new this;
|
|
@@ -10458,14 +10459,11 @@ var $;
|
|
|
10458
10459
|
$mol_dom_render_attributes(node, { mol_view_error });
|
|
10459
10460
|
if ($mol_promise_like(error))
|
|
10460
10461
|
break render;
|
|
10461
|
-
if ((error_showed.get(error) ?? this) !== this)
|
|
10462
|
-
break render;
|
|
10463
10462
|
try {
|
|
10464
10463
|
const message = error.message || error;
|
|
10465
10464
|
node.innerText = message.replace(/^|$/mg, '\xA0\xA0');
|
|
10466
10465
|
}
|
|
10467
10466
|
catch { }
|
|
10468
|
-
error_showed.set(error, this);
|
|
10469
10467
|
}
|
|
10470
10468
|
try {
|
|
10471
10469
|
this.auto();
|