@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/bundles/core-testing.umd.js +1 -1
- package/bundles/core.umd.js +2448 -2359
- package/bundles/core.umd.js.map +1 -1
- package/core.d.ts +15 -2
- package/core.metadata.json +1 -1
- package/esm2015/src/core_render3_private_export.js +2 -1
- package/esm2015/src/render3/error_code.js +2 -1
- package/esm2015/src/render3/instructions/element_validation.js +46 -0
- package/esm2015/src/render3/jit/environment.js +3 -1
- package/esm2015/src/sanitization/iframe_attrs_validation.js +50 -0
- package/esm2015/src/version.js +1 -1
- package/fesm2015/core.js +2393 -2305
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/package.json +1 -1
- package/src/r3_symbols.d.ts +1 -1
- package/testing/testing.d.ts +1 -1
- package/testing.d.ts +1 -1
package/core.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v12.2.
|
|
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
|
*
|