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/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.name.replace(/\W/g, '').replace(/^(?=\d+)/, '-').replace(/_/g, '-');
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, '', val]);
5963
+ res.push([key, '', val]);
5964
5964
  }
5965
5965
  }
5966
5966
  if (value instanceof Set) {