@lwc/engine-core 6.4.2 → 6.4.4
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/framework/vnodes.d.ts +7 -6
- package/dist/index.cjs.js +9 -9
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +9 -9
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -4939,7 +4939,7 @@ function ssf(slotName, factory) {
|
|
|
4939
4939
|
factory,
|
|
4940
4940
|
owner: getVMBeingRendered(),
|
|
4941
4941
|
elm: undefined,
|
|
4942
|
-
sel:
|
|
4942
|
+
sel: '__scoped_slot_fragment__',
|
|
4943
4943
|
key: undefined,
|
|
4944
4944
|
slotName,
|
|
4945
4945
|
};
|
|
@@ -4950,7 +4950,7 @@ function st(fragmentFactory, key, parts) {
|
|
|
4950
4950
|
const fragment = fragmentFactory(parts);
|
|
4951
4951
|
const vnode = {
|
|
4952
4952
|
type: 4 /* VNodeType.Static */,
|
|
4953
|
-
sel:
|
|
4953
|
+
sel: '__static__',
|
|
4954
4954
|
key,
|
|
4955
4955
|
elm: undefined,
|
|
4956
4956
|
fragment,
|
|
@@ -4968,7 +4968,7 @@ function fr(key, children, stable) {
|
|
|
4968
4968
|
const trailing = useCommentNodes ? co('') : t('');
|
|
4969
4969
|
return {
|
|
4970
4970
|
type: 5 /* VNodeType.Fragment */,
|
|
4971
|
-
sel:
|
|
4971
|
+
sel: '__fragment__',
|
|
4972
4972
|
key,
|
|
4973
4973
|
elm: undefined,
|
|
4974
4974
|
children: [leading, ...children, trailing],
|
|
@@ -5251,10 +5251,10 @@ function f(items) {
|
|
|
5251
5251
|
}
|
|
5252
5252
|
// [t]ext node
|
|
5253
5253
|
function t(text) {
|
|
5254
|
-
let
|
|
5254
|
+
let key, elm;
|
|
5255
5255
|
return {
|
|
5256
5256
|
type: 0 /* VNodeType.Text */,
|
|
5257
|
-
sel,
|
|
5257
|
+
sel: '__text__',
|
|
5258
5258
|
text,
|
|
5259
5259
|
elm,
|
|
5260
5260
|
key,
|
|
@@ -5263,13 +5263,13 @@ function t(text) {
|
|
|
5263
5263
|
}
|
|
5264
5264
|
// [co]mment node
|
|
5265
5265
|
function co(text) {
|
|
5266
|
-
let
|
|
5266
|
+
let elm, key;
|
|
5267
5267
|
return {
|
|
5268
5268
|
type: 1 /* VNodeType.Comment */,
|
|
5269
|
-
sel,
|
|
5269
|
+
sel: '__comment__',
|
|
5270
5270
|
text,
|
|
5271
5271
|
elm,
|
|
5272
|
-
key
|
|
5272
|
+
key,
|
|
5273
5273
|
owner: getVMBeingRendered(),
|
|
5274
5274
|
};
|
|
5275
5275
|
}
|
|
@@ -7800,5 +7800,5 @@ function readonly(obj) {
|
|
|
7800
7800
|
}
|
|
7801
7801
|
|
|
7802
7802
|
export { LightningElement, profilerControl as __unstable__ProfilerControl, reportingControl as __unstable__ReportingControl, api$1 as api, computeShadowAndRenderMode, connectRootElement, createContextProviderWithRegister, createVM, disconnectRootElement, freezeTemplate, getAssociatedVMIfPresent, getComponentAPIVersion, getComponentConstructor, getComponentDef, getComponentHtmlPrototype, hydrateRoot, isComponentConstructor, parseFragment, parseSVGFragment, readonly, registerComponent, registerDecorators, registerTemplate, runFormAssociatedCallback, runFormDisabledCallback, runFormResetCallback, runFormStateRestoreCallback, sanitizeAttribute, setHooks, shouldBeFormAssociated, swapComponent, swapStyle, swapTemplate, track, unwrap, wire };
|
|
7803
|
-
/** version: 6.4.
|
|
7803
|
+
/** version: 6.4.4 */
|
|
7804
7804
|
//# sourceMappingURL=index.js.map
|