@angular/core 12.2.16 → 12.2.17

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/core.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v12.2.16
2
+ * @license Angular v12.2.17
3
3
  * (c) 2010-2021 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -11613,7 +11613,8 @@ export declare const enum ɵRuntimeErrorCode {
11613
11613
  PIPE_NOT_FOUND = "302",
11614
11614
  UNKNOWN_BINDING = "303",
11615
11615
  UNKNOWN_ELEMENT = "304",
11616
- TEMPLATE_STRUCTURE_ERROR = "305"
11616
+ TEMPLATE_STRUCTURE_ERROR = "305",
11617
+ UNSAFE_IFRAME_ATTRS = "910"
11617
11618
  }
11618
11619
 
11619
11620
  /**
@@ -15468,6 +15469,18 @@ export declare function ɵɵtrustConstantHtml(html: TemplateStringsArray): Trust
15468
15469
  */
15469
15470
  export declare function ɵɵtrustConstantResourceUrl(url: TemplateStringsArray): TrustedScriptURL | string;
15470
15471
 
15472
+
15473
+ /**
15474
+ * Validation function invoked at runtime for each binding that might potentially
15475
+ * represent a security-sensitive attribute of an <iframe>.
15476
+ * See `IFRAME_SECURITY_SENSITIVE_ATTRS` in the
15477
+ * `packages/compiler/src/schema/dom_security_schema.ts` script for the full list
15478
+ * of such attributes.
15479
+ *
15480
+ * @codeGenApi
15481
+ */
15482
+ export declare function ɵɵvalidateIframeAttribute(attrValue: any, tagName: string, attrName: string): any;
15483
+
15471
15484
  /**
15472
15485
  * Creates new QueryList, stores the reference in LView and returns QueryList.
15473
15486
  *