@lwc/engine-core 6.6.3 → 6.6.5
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/LICENSE.md +21 -1
- 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
|
@@ -5055,7 +5055,7 @@ function ssf(slotName, factory) {
|
|
|
5055
5055
|
factory,
|
|
5056
5056
|
owner: getVMBeingRendered(),
|
|
5057
5057
|
elm: undefined,
|
|
5058
|
-
sel:
|
|
5058
|
+
sel: '__scoped_slot_fragment__',
|
|
5059
5059
|
key: undefined,
|
|
5060
5060
|
slotName,
|
|
5061
5061
|
};
|
|
@@ -5066,7 +5066,7 @@ function st(fragmentFactory, key, parts) {
|
|
|
5066
5066
|
const fragment = fragmentFactory(parts);
|
|
5067
5067
|
const vnode = {
|
|
5068
5068
|
type: 4 /* VNodeType.Static */,
|
|
5069
|
-
sel:
|
|
5069
|
+
sel: '__static__',
|
|
5070
5070
|
key,
|
|
5071
5071
|
elm: undefined,
|
|
5072
5072
|
fragment,
|
|
@@ -5084,7 +5084,7 @@ function fr(key, children, stable) {
|
|
|
5084
5084
|
const trailing = useCommentNodes ? co('') : t('');
|
|
5085
5085
|
return {
|
|
5086
5086
|
type: 5 /* VNodeType.Fragment */,
|
|
5087
|
-
sel:
|
|
5087
|
+
sel: '__fragment__',
|
|
5088
5088
|
key,
|
|
5089
5089
|
elm: undefined,
|
|
5090
5090
|
children: [leading, ...children, trailing],
|
|
@@ -5369,10 +5369,10 @@ function f(items) {
|
|
|
5369
5369
|
}
|
|
5370
5370
|
// [t]ext node
|
|
5371
5371
|
function t(text) {
|
|
5372
|
-
let
|
|
5372
|
+
let key, elm;
|
|
5373
5373
|
return {
|
|
5374
5374
|
type: 0 /* VNodeType.Text */,
|
|
5375
|
-
sel,
|
|
5375
|
+
sel: '__text__',
|
|
5376
5376
|
text,
|
|
5377
5377
|
elm,
|
|
5378
5378
|
key,
|
|
@@ -5381,13 +5381,13 @@ function t(text) {
|
|
|
5381
5381
|
}
|
|
5382
5382
|
// [co]mment node
|
|
5383
5383
|
function co(text) {
|
|
5384
|
-
let
|
|
5384
|
+
let elm, key;
|
|
5385
5385
|
return {
|
|
5386
5386
|
type: 1 /* VNodeType.Comment */,
|
|
5387
|
-
sel,
|
|
5387
|
+
sel: '__comment__',
|
|
5388
5388
|
text,
|
|
5389
5389
|
elm,
|
|
5390
|
-
key
|
|
5390
|
+
key,
|
|
5391
5391
|
owner: getVMBeingRendered(),
|
|
5392
5392
|
};
|
|
5393
5393
|
}
|
|
@@ -7918,5 +7918,5 @@ function readonly(obj) {
|
|
|
7918
7918
|
}
|
|
7919
7919
|
|
|
7920
7920
|
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 };
|
|
7921
|
-
/** version: 6.6.
|
|
7921
|
+
/** version: 6.6.5 */
|
|
7922
7922
|
//# sourceMappingURL=index.js.map
|