@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/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v15.0.0-rc.1
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.1",
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",
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v15.0.0-rc.1
2
+ * @license Angular v15.0.0-rc.3
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */