@lwc/template-compiler 8.2.0 → 8.4.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 +3 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.cjs.js
CHANGED
|
@@ -14030,6 +14030,8 @@ function isStaticNode(node, apiVersion) {
|
|
|
14030
14030
|
}
|
|
14031
14031
|
// it is an element
|
|
14032
14032
|
result &&= isElement(node);
|
|
14033
|
+
// See W-17015807
|
|
14034
|
+
result &&= node.name !== 'iframe';
|
|
14033
14035
|
// all attrs are static-safe
|
|
14034
14036
|
// the criteria to determine safety can be found in computeAttrValue
|
|
14035
14037
|
result &&= attributes.every(({ name }) => {
|
|
@@ -15801,5 +15803,5 @@ exports.generateScopeTokens = generateScopeTokens;
|
|
|
15801
15803
|
exports.kebabcaseToCamelcase = kebabcaseToCamelcase;
|
|
15802
15804
|
exports.parse = parse;
|
|
15803
15805
|
exports.toPropertyName = toPropertyName;
|
|
15804
|
-
/** version: 8.
|
|
15806
|
+
/** version: 8.4.0 */
|
|
15805
15807
|
//# sourceMappingURL=index.cjs.js.map
|