@vaadin/component-base 24.4.0-rc1 → 24.4.0-rc3

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": "@vaadin/component-base",
3
- "version": "24.4.0-rc1",
3
+ "version": "24.4.0-rc3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -42,5 +42,5 @@
42
42
  "@vaadin/testing-helpers": "^0.6.0",
43
43
  "sinon": "^13.0.2"
44
44
  },
45
- "gitHead": "a81e3b927d44c56613fa4e1307494a2acc81005f"
45
+ "gitHead": "873a5aff4f0848eab2167f4a745b2dfa1839738f"
46
46
  }
package/src/define.js CHANGED
@@ -9,7 +9,7 @@ export function defineCustomElement(CustomElement) {
9
9
  if (!defined) {
10
10
  Object.defineProperty(CustomElement, 'version', {
11
11
  get() {
12
- return '24.4.0-rc1';
12
+ return '24.4.0-rc3';
13
13
  },
14
14
  });
15
15
 
@@ -111,12 +111,12 @@ export class SlotController extends EventTarget {
111
111
  if (slotName !== '') {
112
112
  node.setAttribute('slot', slotName);
113
113
  }
114
- this.node = node;
115
114
  this.defaultNode = node;
116
115
  }
117
116
  }
118
117
 
119
118
  if (node) {
119
+ this.node = node;
120
120
  host.appendChild(node);
121
121
  }
122
122