mol_plot_all 1.2.925 → 1.2.927
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.d.ts +90 -90
- package/node.js +1 -1
- package/node.js.map +1 -1
- package/node.mjs +1 -1
- package/node.test.js +8 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +90 -90
- package/web.js +1 -1
- package/web.js.map +1 -1
- package/web.mjs +1 -1
- package/web.test.js +7 -0
- package/web.test.js.map +1 -1
package/node.mjs
CHANGED
|
@@ -2756,7 +2756,7 @@ var $;
|
|
|
2756
2756
|
}
|
|
2757
2757
|
}
|
|
2758
2758
|
dom_id() {
|
|
2759
|
-
return this.toString().replace(/</g, '(').replace(/>/g, ')');
|
|
2759
|
+
return this.toString().replace(/</g, '(').replace(/>/g, ')').replaceAll(/"/g, "'");
|
|
2760
2760
|
}
|
|
2761
2761
|
dom_node_external(next) {
|
|
2762
2762
|
const node = next ?? $mol_dom_context.document.createElementNS(this.dom_name_space(), this.dom_name());
|
package/node.test.js
CHANGED
|
@@ -2747,7 +2747,7 @@ var $;
|
|
|
2747
2747
|
}
|
|
2748
2748
|
}
|
|
2749
2749
|
dom_id() {
|
|
2750
|
-
return this.toString().replace(/</g, '(').replace(/>/g, ')');
|
|
2750
|
+
return this.toString().replace(/</g, '(').replace(/>/g, ')').replaceAll(/"/g, "'");
|
|
2751
2751
|
}
|
|
2752
2752
|
dom_node_external(next) {
|
|
2753
2753
|
const node = next ?? $mol_dom_context.document.createElementNS(this.dom_name_space(), this.dom_name());
|
|
@@ -6132,6 +6132,13 @@ var $;
|
|
|
6132
6132
|
$.$mol_test_complete = $mol_test_complete;
|
|
6133
6133
|
})($ || ($ = {}));
|
|
6134
6134
|
|
|
6135
|
+
;
|
|
6136
|
+
"use strict";
|
|
6137
|
+
var $;
|
|
6138
|
+
(function ($_1) {
|
|
6139
|
+
$mol_test_mocks.push($ => $.$mol_fail_log = () => false);
|
|
6140
|
+
})($ || ($ = {}));
|
|
6141
|
+
|
|
6135
6142
|
;
|
|
6136
6143
|
"use strict";
|
|
6137
6144
|
var $;
|