mol_jsx_lib 0.0.674 → 0.0.676
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.js +1 -2
- package/node.js.map +1 -1
- package/node.mjs +1 -2
- package/node.test.js +2 -3
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.js +1 -2
- package/web.js.map +1 -1
- package/web.mjs +1 -2
- package/web.test.js +1 -1
- package/web.test.js.map +1 -1
package/web.mjs
CHANGED
|
@@ -619,7 +619,6 @@ var $;
|
|
|
619
619
|
$.$mol_dev_format_element = $mol_dev_format_element;
|
|
620
620
|
function $mol_dev_format_span(style, ...content) {
|
|
621
621
|
return $mol_dev_format_element('span', {
|
|
622
|
-
'vertical-align': '8%',
|
|
623
622
|
...style,
|
|
624
623
|
}, ...content);
|
|
625
624
|
}
|
|
@@ -2035,7 +2034,7 @@ var $;
|
|
|
2035
2034
|
if (super.get(key) === value)
|
|
2036
2035
|
return this;
|
|
2037
2036
|
super.set(key, value);
|
|
2038
|
-
this.pub
|
|
2037
|
+
this.pub?.emit();
|
|
2039
2038
|
return this;
|
|
2040
2039
|
}
|
|
2041
2040
|
delete(key) {
|
package/web.test.js
CHANGED
|
@@ -194,7 +194,7 @@ var $;
|
|
|
194
194
|
if ('outerHTML' in val)
|
|
195
195
|
return val.outerHTML;
|
|
196
196
|
try {
|
|
197
|
-
return JSON.stringify(val,
|
|
197
|
+
return JSON.stringify(val, (k, v) => typeof v === 'bigint' ? String(v) : v, '\t');
|
|
198
198
|
}
|
|
199
199
|
catch (error) {
|
|
200
200
|
console.error(error);
|