@lwc/engine-core 2.12.1 → 2.13.0
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/dist/engine-core.cjs.js +1 -8
- package/dist/engine-core.js +1 -8
- package/package.json +3 -3
package/dist/engine-core.cjs.js
CHANGED
|
@@ -3589,13 +3589,6 @@ function allocateInSlot(vm, children) {
|
|
|
3589
3589
|
slotName = ((_a = vnode.data.attrs) === null || _a === void 0 ? void 0 : _a.slot) || '';
|
|
3590
3590
|
}
|
|
3591
3591
|
const vnodes = (cmpSlots[slotName] = cmpSlots[slotName] || []);
|
|
3592
|
-
// re-keying the vnodes is necessary to avoid conflicts with default content for the slot
|
|
3593
|
-
// which might have similar keys. Each vnode will always have a key that
|
|
3594
|
-
// starts with a numeric character from compiler. In this case, we add a unique
|
|
3595
|
-
// notation for slotted vnodes keys, e.g.: `@foo:1:1`
|
|
3596
|
-
if (!shared.isUndefined(vnode.key)) {
|
|
3597
|
-
vnode.key = `@${slotName}:${vnode.key}`;
|
|
3598
|
-
}
|
|
3599
3592
|
shared.ArrayPush.call(vnodes, vnode);
|
|
3600
3593
|
}
|
|
3601
3594
|
if (shared.isFalse(vm.isDirty)) {
|
|
@@ -6192,4 +6185,4 @@ exports.swapTemplate = swapTemplate;
|
|
|
6192
6185
|
exports.track = track;
|
|
6193
6186
|
exports.unwrap = unwrap;
|
|
6194
6187
|
exports.wire = wire;
|
|
6195
|
-
/* version: 2.
|
|
6188
|
+
/* version: 2.13.0 */
|
package/dist/engine-core.js
CHANGED
|
@@ -3586,13 +3586,6 @@ function allocateInSlot(vm, children) {
|
|
|
3586
3586
|
slotName = ((_a = vnode.data.attrs) === null || _a === void 0 ? void 0 : _a.slot) || '';
|
|
3587
3587
|
}
|
|
3588
3588
|
const vnodes = (cmpSlots[slotName] = cmpSlots[slotName] || []);
|
|
3589
|
-
// re-keying the vnodes is necessary to avoid conflicts with default content for the slot
|
|
3590
|
-
// which might have similar keys. Each vnode will always have a key that
|
|
3591
|
-
// starts with a numeric character from compiler. In this case, we add a unique
|
|
3592
|
-
// notation for slotted vnodes keys, e.g.: `@foo:1:1`
|
|
3593
|
-
if (!isUndefined$1(vnode.key)) {
|
|
3594
|
-
vnode.key = `@${slotName}:${vnode.key}`;
|
|
3595
|
-
}
|
|
3596
3589
|
ArrayPush$1.call(vnodes, vnode);
|
|
3597
3590
|
}
|
|
3598
3591
|
if (isFalse(vm.isDirty)) {
|
|
@@ -6116,4 +6109,4 @@ function setHooks(hooks) {
|
|
|
6116
6109
|
}
|
|
6117
6110
|
|
|
6118
6111
|
export { LightningElement, profilerControl as __unstable__ProfilerControl, api$1 as api, connectRootElement, createContextProvider, createVM, disconnectRootElement, getAssociatedVMIfPresent, getComponentDef, getComponentHtmlPrototype, getUpgradableConstructor, hydrateRoot, isComponentConstructor, readonly, register, registerComponent, registerDecorators, registerTemplate, sanitizeAttribute, setAddEventListener, setAssertInstanceOfHTMLElement, setAttachShadow, setCreateComment, setCreateElement, setCreateText, setDefineCustomElement, setDispatchEvent, setGetAttribute, setGetBoundingClientRect, setGetChildNodes, setGetChildren, setGetClassList, setGetCustomElement, setGetElementsByClassName, setGetElementsByTagName, setGetFirstChild, setGetFirstElementChild, setGetLastChild, setGetLastElementChild, setGetProperty, setHTMLElement, setHooks, setInsert, setInsertGlobalStylesheet, setInsertStylesheet, setIsConnected, setIsHydrating, setIsNativeShadowDefined, setIsSyntheticShadowDefined, setNextSibling, setQuerySelector, setQuerySelectorAll, setRemove, setRemoveAttribute, setRemoveEventListener, setSetAttribute, setSetCSSStyleProperty, setSetProperty, setSetText, setSsr, swapComponent, swapStyle, swapTemplate, track, unwrap, wire };
|
|
6119
|
-
/* version: 2.
|
|
6112
|
+
/* version: 2.13.0 */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lwc/engine-core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.13.0",
|
|
4
4
|
"description": "Core LWC engine APIs.",
|
|
5
5
|
"homepage": "https://lwc.dev/",
|
|
6
6
|
"repository": {
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"types/"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@lwc/features": "2.
|
|
29
|
-
"@lwc/shared": "2.
|
|
28
|
+
"@lwc/features": "2.13.0",
|
|
29
|
+
"@lwc/shared": "2.13.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"observable-membrane": "2.0.0"
|