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/node.mjs
CHANGED
|
@@ -3013,7 +3013,7 @@ var $;
|
|
|
3013
3013
|
if (typeof HTMLElement !== 'function')
|
|
3014
3014
|
return;
|
|
3015
3015
|
class Component extends HTMLElement {
|
|
3016
|
-
static tag = View.
|
|
3016
|
+
static tag = $$.$mol_func_name(View).replace(/\W/g, '').replace(/^(?=\d+)/, '-').replace(/_/g, '-');
|
|
3017
3017
|
static observedAttributes = new Set;
|
|
3018
3018
|
view = new View;
|
|
3019
3019
|
root;
|
|
@@ -6610,7 +6610,7 @@ var $;
|
|
|
6610
6610
|
const res = [];
|
|
6611
6611
|
if (value instanceof Map) {
|
|
6612
6612
|
for (const [key, val] of value) {
|
|
6613
|
-
res.push([key, '
|
|
6613
|
+
res.push([key, '▶', val]);
|
|
6614
6614
|
}
|
|
6615
6615
|
}
|
|
6616
6616
|
if (value instanceof Set) {
|
package/node.test.js
CHANGED
|
@@ -3005,7 +3005,7 @@ var $;
|
|
|
3005
3005
|
if (typeof HTMLElement !== 'function')
|
|
3006
3006
|
return;
|
|
3007
3007
|
class Component extends HTMLElement {
|
|
3008
|
-
static tag = View.
|
|
3008
|
+
static tag = $$.$mol_func_name(View).replace(/\W/g, '').replace(/^(?=\d+)/, '-').replace(/_/g, '-');
|
|
3009
3009
|
static observedAttributes = new Set;
|
|
3010
3010
|
view = new View;
|
|
3011
3011
|
root;
|
|
@@ -6602,7 +6602,7 @@ var $;
|
|
|
6602
6602
|
const res = [];
|
|
6603
6603
|
if (value instanceof Map) {
|
|
6604
6604
|
for (const [key, val] of value) {
|
|
6605
|
-
res.push([key, '
|
|
6605
|
+
res.push([key, '▶', val]);
|
|
6606
6606
|
}
|
|
6607
6607
|
}
|
|
6608
6608
|
if (value instanceof Set) {
|