@lwc/engine-core 8.9.0 → 8.10.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/framework/api.d.ts +4 -4
- package/dist/framework/base-bridge-element.d.ts +1 -1
- package/dist/framework/base-lightning-element.d.ts +4 -13
- package/dist/framework/check-version-mismatch.d.ts +2 -2
- package/dist/framework/component.d.ts +6 -6
- package/dist/framework/decorators/register.d.ts +2 -2
- package/dist/framework/def.d.ts +7 -5
- package/dist/framework/freeze-template.d.ts +1 -1
- package/dist/framework/get-component-constructor.d.ts +1 -1
- package/dist/framework/hot-swaps.d.ts +3 -3
- package/dist/framework/hydration.d.ts +1 -1
- package/dist/framework/invoker.d.ts +3 -3
- package/dist/framework/modules/attrs.d.ts +2 -2
- package/dist/framework/modules/computed-class-attr.d.ts +2 -2
- package/dist/framework/modules/computed-style-attr.d.ts +3 -3
- package/dist/framework/modules/events.d.ts +2 -2
- package/dist/framework/modules/props.d.ts +2 -2
- package/dist/framework/modules/refs.d.ts +2 -2
- package/dist/framework/modules/static-class-attr.d.ts +2 -2
- package/dist/framework/modules/static-parts.d.ts +2 -2
- package/dist/framework/modules/static-style-attr.d.ts +2 -2
- package/dist/framework/modules/text.d.ts +2 -2
- package/dist/framework/mutation-logger.d.ts +2 -2
- package/dist/framework/mutation-tracker.d.ts +3 -2
- package/dist/framework/profiler.d.ts +2 -1
- package/dist/framework/rendering.d.ts +3 -3
- package/dist/framework/reporting.d.ts +1 -1
- package/dist/framework/secure-template.d.ts +1 -1
- package/dist/framework/stylesheet.d.ts +3 -3
- package/dist/framework/template.d.ts +3 -3
- package/dist/framework/update-component-value.d.ts +1 -1
- package/dist/framework/utils.d.ts +1 -1
- package/dist/framework/vm.d.ts +7 -8
- package/dist/framework/wiring/context.d.ts +2 -2
- package/dist/framework/wiring/wiring.d.ts +1 -1
- package/dist/index.cjs.js +19 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +19 -1
- package/dist/index.js.map +1 -1
- package/dist/shared/error.d.ts +1 -1
- package/dist/shared/format.d.ts +1 -1
- package/dist/shared/logger.d.ts +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -1068,6 +1068,12 @@ function patchCustomElementWithRestrictions(elm) {
|
|
|
1068
1068
|
setPrototypeOf(elm, create(elmProto, restrictionsDescriptors));
|
|
1069
1069
|
}
|
|
1070
1070
|
|
|
1071
|
+
/*
|
|
1072
|
+
* Copyright (c) 2018, salesforce.com, inc.
|
|
1073
|
+
* All rights reserved.
|
|
1074
|
+
* SPDX-License-Identifier: MIT
|
|
1075
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
1076
|
+
*/
|
|
1071
1077
|
function updateComponentValue(vm, key, newValue) {
|
|
1072
1078
|
const { cmpFields } = vm;
|
|
1073
1079
|
if (newValue !== cmpFields[key]) {
|
|
@@ -2219,6 +2225,12 @@ defineProperty(LightningElement, 'CustomElementConstructor', {
|
|
|
2219
2225
|
configurable: true,
|
|
2220
2226
|
});
|
|
2221
2227
|
|
|
2228
|
+
/*
|
|
2229
|
+
* Copyright (c) 2018, salesforce.com, inc.
|
|
2230
|
+
* All rights reserved.
|
|
2231
|
+
* SPDX-License-Identifier: MIT
|
|
2232
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
2233
|
+
*/
|
|
2222
2234
|
function createObservedFieldPropertyDescriptor(key) {
|
|
2223
2235
|
return {
|
|
2224
2236
|
get() {
|
|
@@ -2952,6 +2964,12 @@ function checkVersionMismatch(func, type) {
|
|
|
2952
2964
|
}
|
|
2953
2965
|
}
|
|
2954
2966
|
|
|
2967
|
+
/*
|
|
2968
|
+
* Copyright (c) 2018, salesforce.com, inc.
|
|
2969
|
+
* All rights reserved.
|
|
2970
|
+
* SPDX-License-Identifier: MIT
|
|
2971
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
2972
|
+
*/
|
|
2955
2973
|
const signedTemplateSet = new Set();
|
|
2956
2974
|
function defaultEmptyTemplate() {
|
|
2957
2975
|
return [];
|
|
@@ -8527,5 +8545,5 @@ function readonly(obj) {
|
|
|
8527
8545
|
}
|
|
8528
8546
|
|
|
8529
8547
|
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, shouldBeFormAssociated, swapComponent, swapStyle, swapTemplate, track, unwrap, wire };
|
|
8530
|
-
/** version: 8.
|
|
8548
|
+
/** version: 8.10.0 */
|
|
8531
8549
|
//# sourceMappingURL=index.js.map
|