@lwc/engine-core 8.10.2 → 8.10.3
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/index.cjs.js +7 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +7 -3
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -604,8 +604,12 @@ function componentValueObserved(vm, key, target = {}) {
|
|
|
604
604
|
if (lwcRuntimeFlags.ENABLE_EXPERIMENTAL_SIGNALS &&
|
|
605
605
|
isObject(target) &&
|
|
606
606
|
!isNull(target) &&
|
|
607
|
-
|
|
608
|
-
|
|
607
|
+
(lwcRuntimeFlags.DISABLE_TRY_CATCH_FOR_SIGNALS_CHECK
|
|
608
|
+
? 'value' in target
|
|
609
|
+
: safeHasProp(target, 'value')) &&
|
|
610
|
+
(lwcRuntimeFlags.DISABLE_TRY_CATCH_FOR_SIGNALS_CHECK
|
|
611
|
+
? 'subscribe' in target
|
|
612
|
+
: safeHasProp(target, 'subscribe')) &&
|
|
609
613
|
isFunction$1(target.subscribe) &&
|
|
610
614
|
isTrustedSignal(target) &&
|
|
611
615
|
// Only subscribe if a template is being rendered by the engine
|
|
@@ -8555,5 +8559,5 @@ function readonly(obj) {
|
|
|
8555
8559
|
}
|
|
8556
8560
|
|
|
8557
8561
|
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 };
|
|
8558
|
-
/** version: 8.10.
|
|
8562
|
+
/** version: 8.10.3 */
|
|
8559
8563
|
//# sourceMappingURL=index.js.map
|