mount-observer 0.0.96 → 0.0.97

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mount-observer",
3
- "version": "0.0.96",
3
+ "version": "0.0.97",
4
4
  "description": "Observe and act on css matches.",
5
5
  "main": "MountObserver.js",
6
6
  "module": "MountObserver.js",
package/refid/genIds.js CHANGED
@@ -52,6 +52,7 @@ export function genIds(enhancedElement) {
52
52
  sideEffects = `${nameValue} `;
53
53
  }
54
54
  nameEl.dataset.id = `{{${sideEffects}${val}}}`;
55
+ nameEl.removeAttribute('@');
55
56
  }
56
57
  const dataIds = Array.from(scopeFragment.querySelectorAll('[data-id^="{{"][data-id$="}}"]')).filter(x => inScope(scopeFragment, x));
57
58
  const ids = [];
package/refid/genIds.ts CHANGED
@@ -51,6 +51,7 @@ export function genIds(enhancedElement: Element){
51
51
  sideEffects = `${nameValue} `;
52
52
  }
53
53
  nameEl.dataset.id = `{{${sideEffects}${val}}}`;
54
+ nameEl.removeAttribute('@');
54
55
  }
55
56
 
56
57
  const dataIds = Array.from(scopeFragment.querySelectorAll('[data-id^="{{"][data-id$="}}"]')).filter(x => inScope(scopeFragment, x));