@angular/core 15.0.0-rc.1 → 15.0.0-rc.3
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 +2 -1
- package/esm2020/src/metadata/directives.mjs +1 -1
- package/esm2020/src/render3/component_ref.mjs +2 -2
- 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 -3337
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +3444 -3400
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/core.mjs +3378 -3334
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +3488 -3444
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +16 -3
- package/package.json +2 -2
- package/testing/index.d.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v15.0.0-rc.
|
|
2
|
+
* @license Angular v15.0.0-rc.3
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -1047,7 +1047,7 @@ export declare interface Component extends Directive {
|
|
|
1047
1047
|
* More information about standalone components, directives, and pipes can be found in [this
|
|
1048
1048
|
* guide](guide/standalone-components).
|
|
1049
1049
|
*/
|
|
1050
|
-
imports?: (Type<any> | any
|
|
1050
|
+
imports?: (Type<any> | ReadonlyArray<any>)[];
|
|
1051
1051
|
/**
|
|
1052
1052
|
* The set of schemas that declare elements to be allowed in a standalone component. Elements and
|
|
1053
1053
|
* properties that are neither Angular components nor directives must be declared in a schema.
|
|
@@ -7378,7 +7378,8 @@ declare const enum RuntimeErrorCode {
|
|
|
7378
7378
|
MISSING_GENERATED_DEF = 906,
|
|
7379
7379
|
TYPE_IS_NOT_STANDALONE = 907,
|
|
7380
7380
|
MISSING_ZONEJS = 908,
|
|
7381
|
-
UNEXPECTED_ZONE_STATE = 909
|
|
7381
|
+
UNEXPECTED_ZONE_STATE = 909,
|
|
7382
|
+
UNSAFE_IFRAME_ATTRS = 910
|
|
7382
7383
|
}
|
|
7383
7384
|
|
|
7384
7385
|
declare const SANITIZER = 12;
|
|
@@ -15104,6 +15105,18 @@ export declare function ɵɵtrustConstantHtml(html: TemplateStringsArray): Trust
|
|
|
15104
15105
|
*/
|
|
15105
15106
|
export declare function ɵɵtrustConstantResourceUrl(url: TemplateStringsArray): TrustedScriptURL | string;
|
|
15106
15107
|
|
|
15108
|
+
|
|
15109
|
+
/**
|
|
15110
|
+
* Validation function invoked at runtime for each binding that might potentially
|
|
15111
|
+
* represent a security-sensitive attribute of an <iframe>.
|
|
15112
|
+
* See `IFRAME_SECURITY_SENSITIVE_ATTRS` in the
|
|
15113
|
+
* `packages/compiler/src/schema/dom_security_schema.ts` script for the full list
|
|
15114
|
+
* of such attributes.
|
|
15115
|
+
*
|
|
15116
|
+
* @codeGenApi
|
|
15117
|
+
*/
|
|
15118
|
+
export declare function ɵɵvalidateIframeAttribute(attrValue: any, tagName: string, attrName: string): any;
|
|
15119
|
+
|
|
15107
15120
|
/**
|
|
15108
15121
|
* Creates new QueryList, stores the reference in LView and returns QueryList.
|
|
15109
15122
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/core",
|
|
3
|
-
"version": "15.0.0-rc.
|
|
3
|
+
"version": "15.0.0-rc.3",
|
|
4
4
|
"description": "Angular - the core framework",
|
|
5
5
|
"author": "angular",
|
|
6
6
|
"license": "MIT",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"rxjs": "^6.5.3 || ^7.4.0",
|
|
39
|
-
"zone.js": "~0.11.4"
|
|
39
|
+
"zone.js": "~0.11.4 || ~0.12.0"
|
|
40
40
|
},
|
|
41
41
|
"repository": {
|
|
42
42
|
"type": "git",
|
package/testing/index.d.ts
CHANGED