mol_dump_lib 0.0.7 → 0.0.9
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/README.md +17 -0
- package/node.deps.json +1 -1
- package/node.js +2 -2
- package/node.js.map +1 -1
- package/node.mjs +2 -2
- package/node.test.js +2 -2
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.deps.json +1 -1
- package/web.js +2 -2
- package/web.js.map +1 -1
- package/web.mjs +2 -2
package/web.mjs
CHANGED
|
@@ -2453,7 +2453,7 @@ var $;
|
|
|
2453
2453
|
if (typeof HTMLElement !== 'function')
|
|
2454
2454
|
return;
|
|
2455
2455
|
class Component extends HTMLElement {
|
|
2456
|
-
static tag = View.
|
|
2456
|
+
static tag = $$.$mol_func_name(View).replace(/\W/g, '').replace(/^(?=\d+)/, '-').replace(/_/g, '-');
|
|
2457
2457
|
static observedAttributes = new Set;
|
|
2458
2458
|
view = new View;
|
|
2459
2459
|
root;
|
|
@@ -5960,7 +5960,7 @@ var $;
|
|
|
5960
5960
|
const res = [];
|
|
5961
5961
|
if (value instanceof Map) {
|
|
5962
5962
|
for (const [key, val] of value) {
|
|
5963
|
-
res.push([key, '
|
|
5963
|
+
res.push([key, '▶', val]);
|
|
5964
5964
|
}
|
|
5965
5965
|
}
|
|
5966
5966
|
if (value instanceof Set) {
|