@angular/core 14.2.11 → 14.3.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/esm2020/src/core_render3_private_export.mjs +2 -1
- package/esm2020/src/errors.mjs +1 -1
- package/esm2020/src/render3/instructions/element_validation.mjs +2 -2
- package/esm2020/src/render3/jit/environment.mjs +3 -1
- package/esm2020/src/sanitization/iframe_attrs_validation.mjs +49 -0
- package/esm2020/src/version.mjs +1 -1
- package/esm2020/testing/src/logger.mjs +3 -3
- package/esm2020/testing/src/ng_zone_mock.mjs +3 -3
- package/fesm2015/core.mjs +3381 -3338
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +3380 -3337
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/core.mjs +3383 -3340
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +3382 -3339
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +15 -2
- package/package.json +1 -1
- package/testing/index.d.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v14.
|
|
2
|
+
* @license Angular v14.3.0
|
|
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
package/testing/index.d.ts
CHANGED