@angular/compiler 13.3.10 → 13.3.12

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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v13.3.10
2
+ * @license Angular v13.3.12
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/compiler",
3
- "version": "13.3.10",
3
+ "version": "13.3.12",
4
4
  "description": "Angular - the compiler library",
5
5
  "author": "angular",
6
6
  "license": "MIT",
@@ -177,4 +177,5 @@ export declare class Identifiers {
177
177
  static sanitizeUrlOrResourceUrl: o.ExternalReference;
178
178
  static trustConstantHtml: o.ExternalReference;
179
179
  static trustConstantResourceUrl: o.ExternalReference;
180
+ static validateIframeAttribute: o.ExternalReference;
180
181
  }
@@ -9,3 +9,18 @@ import { SecurityContext } from '../core';
9
9
  export declare function SECURITY_SCHEMA(): {
10
10
  [k: string]: SecurityContext;
11
11
  };
12
+ /**
13
+ * The set of security-sensitive attributes of an `<iframe>` that *must* be
14
+ * applied as a static attribute only. This ensures that all security-sensitive
15
+ * attributes are taken into account while creating an instance of an `<iframe>`
16
+ * at runtime.
17
+ *
18
+ * Note: avoid using this set directly, use the `isIframeSecuritySensitiveAttr` function
19
+ * in the code instead.
20
+ */
21
+ export declare const IFRAME_SECURITY_SENSITIVE_ATTRS: Set<string>;
22
+ /**
23
+ * Checks whether a given attribute name might represent a security-sensitive
24
+ * attribute of an <iframe>.
25
+ */
26
+ export declare function isIframeSecuritySensitiveAttr(attrName: string): boolean;