@vaadin/component-base
Advanced tools
Comparing version 24.4.0-rc1 to 24.5.0-alpha1
{ | ||
"name": "@vaadin/component-base", | ||
"version": "24.4.0-rc1", | ||
"version": "24.5.0-alpha1", | ||
"publishConfig": { | ||
@@ -45,3 +45,3 @@ "access": "public" | ||
}, | ||
"gitHead": "a81e3b927d44c56613fa4e1307494a2acc81005f" | ||
"gitHead": "57806caac5468532a3b4e3dbdda730cd0fca193a" | ||
} |
@@ -12,3 +12,3 @@ /** | ||
get() { | ||
return '24.4.0-rc1'; | ||
return '24.5.0-alpha1'; | ||
}, | ||
@@ -15,0 +15,0 @@ }); |
@@ -114,3 +114,2 @@ /** | ||
} | ||
this.node = node; | ||
this.defaultNode = node; | ||
@@ -121,2 +120,3 @@ } | ||
if (node) { | ||
this.node = node; | ||
host.appendChild(node); | ||
@@ -123,0 +123,0 @@ } |
@@ -13,3 +13,3 @@ /** | ||
slot: HTMLSlotElement, | ||
callback: (info: { addedNodes: Node[]; movedNodes: Node[]; removedNodes: Node[] }) => void, | ||
callback: (info: { addedNodes: Node[]; currentNodes: Node[]; movedNodes: Node[]; removedNodes: Node[] }) => void, | ||
); | ||
@@ -16,0 +16,0 @@ |
@@ -100,3 +100,3 @@ /** | ||
if (addedNodes.length || removedNodes.length || movedNodes.length) { | ||
this.callback({ addedNodes, movedNodes, removedNodes }); | ||
this.callback({ addedNodes, currentNodes, movedNodes, removedNodes }); | ||
} | ||
@@ -103,0 +103,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
214326