@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.cjs.js
CHANGED
|
@@ -3920,6 +3920,12 @@ function isVStaticPartText(vnode) {
|
|
|
3920
3920
|
return vnode.type === 0 /* VStaticPartType.Text */;
|
|
3921
3921
|
}
|
|
3922
3922
|
|
|
3923
|
+
/*
|
|
3924
|
+
* Copyright (c) 2024, Salesforce, Inc.
|
|
3925
|
+
* All rights reserved.
|
|
3926
|
+
* SPDX-License-Identifier: MIT
|
|
3927
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
3928
|
+
*/
|
|
3923
3929
|
const sanitizedHtmlContentSymbol = Symbol('lwc-get-sanitized-html-content');
|
|
3924
3930
|
function isSanitizedHtmlContent(object) {
|
|
3925
3931
|
return shared.isObject(object) && !shared.isNull(object) && sanitizedHtmlContentSymbol in object;
|
|
@@ -8471,5 +8477,5 @@ exports.swapTemplate = swapTemplate;
|
|
|
8471
8477
|
exports.track = track;
|
|
8472
8478
|
exports.unwrap = unwrap;
|
|
8473
8479
|
exports.wire = wire;
|
|
8474
|
-
/** version: 8.
|
|
8480
|
+
/** version: 8.2.0 */
|
|
8475
8481
|
//# sourceMappingURL=index.cjs.js.map
|