be-hive 0.0.116 → 0.0.117

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.
Files changed (2) hide show
  1. package/be-hive.js +3 -2
  2. package/package.json +3 -3
package/be-hive.js CHANGED
@@ -94,7 +94,8 @@ export class BeHive extends HTMLElement {
94
94
  const namespacedName = beEnhanced.getFQName(key);
95
95
  if (namespacedName === undefined)
96
96
  continue;
97
- beEnhanced.attachAttr(namespacedName, key);
97
+ beEnhanced.whenAttached(key);
98
+ //beEnhanced.attachAttr(namespacedName, key);
98
99
  }
99
100
  for (const child of node.children) {
100
101
  this.#inspectNewNode(child);
@@ -119,7 +120,7 @@ export class BeHive extends HTMLElement {
119
120
  const namespacedName = beEnhanced.getFQName(localName);
120
121
  if (namespacedName === undefined)
121
122
  return;
122
- beEnhanced.attachAttr(namespacedName, localName);
123
+ beEnhanced.whenAttached(localName);
123
124
  });
124
125
  }
125
126
  async beatify(content) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "be-hive",
3
- "version": "0.0.116",
3
+ "version": "0.0.117",
4
4
  "keywords": [
5
5
  "web-components",
6
6
  "web-component",
@@ -28,8 +28,8 @@
28
28
  "update": "ncu -u && npm install"
29
29
  },
30
30
  "dependencies": {
31
- "be-enhanced": "0.0.37",
32
- "trans-render": "0.0.699"
31
+ "be-enhanced": "0.0.46",
32
+ "trans-render": "0.0.704"
33
33
  },
34
34
  "devDependencies": {
35
35
  "may-it-serve": "0.0.5"