@angular/core 14.2.10 → 14.2.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.
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v14.2.10
2
+ * @license Angular v14.2.12
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -7254,7 +7254,8 @@ declare const enum RuntimeErrorCode {
7254
7254
  MISSING_GENERATED_DEF = 906,
7255
7255
  TYPE_IS_NOT_STANDALONE = 907,
7256
7256
  MISSING_ZONEJS = 908,
7257
- UNEXPECTED_ZONE_STATE = 909
7257
+ UNEXPECTED_ZONE_STATE = 909,
7258
+ UNSAFE_IFRAME_ATTRS = -910
7258
7259
  }
7259
7260
 
7260
7261
  declare const SANITIZER = 12;
@@ -14936,6 +14937,18 @@ export declare function ɵɵtrustConstantHtml(html: TemplateStringsArray): Trust
14936
14937
  */
14937
14938
  export declare function ɵɵtrustConstantResourceUrl(url: TemplateStringsArray): TrustedScriptURL | string;
14938
14939
 
14940
+
14941
+ /**
14942
+ * Validation function invoked at runtime for each binding that might potentially
14943
+ * represent a security-sensitive attribute of an <iframe>.
14944
+ * See `IFRAME_SECURITY_SENSITIVE_ATTRS` in the
14945
+ * `packages/compiler/src/schema/dom_security_schema.ts` script for the full list
14946
+ * of such attributes.
14947
+ *
14948
+ * @codeGenApi
14949
+ */
14950
+ export declare function ɵɵvalidateIframeAttribute(attrValue: any, tagName: string, attrName: string): any;
14951
+
14939
14952
  /**
14940
14953
  * Creates new QueryList, stores the reference in LView and returns QueryList.
14941
14954
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/core",
3
- "version": "14.2.10",
3
+ "version": "14.2.12",
4
4
  "description": "Angular - the core framework",
5
5
  "author": "angular",
6
6
  "license": "MIT",
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v14.2.10
2
+ * @license Angular v14.2.12
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */