@angular/core 15.0.0-rc.1 → 15.0.0-rc.2
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/metadata/directives.mjs +1 -1
- 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 +2 -2
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +2 -2
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/core.mjs +2 -2
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +2 -2
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +2 -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 v15.0.0-rc.
|
|
2
|
+
* @license Angular v15.0.0-rc.2
|
|
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.
|
package/package.json
CHANGED
package/testing/index.d.ts
CHANGED