@lwc/engine-core 8.1.3 → 8.2.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/index.cjs.js +7 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -3916,6 +3916,12 @@ function isVStaticPartText(vnode) {
|
|
|
3916
3916
|
return vnode.type === 0 /* VStaticPartType.Text */;
|
|
3917
3917
|
}
|
|
3918
3918
|
|
|
3919
|
+
/*
|
|
3920
|
+
* Copyright (c) 2024, Salesforce, Inc.
|
|
3921
|
+
* All rights reserved.
|
|
3922
|
+
* SPDX-License-Identifier: MIT
|
|
3923
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
3924
|
+
*/
|
|
3919
3925
|
const sanitizedHtmlContentSymbol = Symbol('lwc-get-sanitized-html-content');
|
|
3920
3926
|
function isSanitizedHtmlContent(object) {
|
|
3921
3927
|
return isObject(object) && !isNull(object) && sanitizedHtmlContentSymbol in object;
|
|
@@ -8424,5 +8430,5 @@ function readonly(obj) {
|
|
|
8424
8430
|
}
|
|
8425
8431
|
|
|
8426
8432
|
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 };
|
|
8427
|
-
/** version: 8.
|
|
8433
|
+
/** version: 8.2.0 */
|
|
8428
8434
|
//# sourceMappingURL=index.js.map
|