@angular/compiler 14.0.1 → 14.1.0-next.1
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/jit_compiler_facade.mjs +8 -3
- package/esm2020/src/render3/partial/class_metadata.mjs +1 -1
- package/esm2020/src/render3/partial/directive.mjs +1 -1
- package/esm2020/src/render3/partial/factory.mjs +1 -1
- package/esm2020/src/render3/partial/injectable.mjs +1 -1
- package/esm2020/src/render3/partial/injector.mjs +1 -1
- package/esm2020/src/render3/partial/ng_module.mjs +1 -1
- package/esm2020/src/render3/partial/pipe.mjs +1 -1
- package/esm2020/src/render3/r3_module_compiler.mjs +11 -4
- package/esm2020/src/version.mjs +1 -1
- package/fesm2015/compiler.mjs +26 -14
- package/fesm2015/compiler.mjs.map +1 -1
- package/fesm2015/testing.mjs +1 -1
- package/fesm2020/compiler.mjs +26 -14
- package/fesm2020/compiler.mjs.map +1 -1
- package/fesm2020/testing.mjs +1 -1
- package/index.d.ts +10 -1
- package/package.json +2 -2
- package/testing/index.d.ts +1 -1
package/fesm2020/testing.mjs
CHANGED
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v14.0.1
|
|
2
|
+
* @license Angular v14.1.0-next.1
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -3708,10 +3708,19 @@ export declare interface R3NgModuleMetadata {
|
|
|
3708
3708
|
* An array of expressions representing the directives and pipes declared by the module.
|
|
3709
3709
|
*/
|
|
3710
3710
|
declarations: R3Reference[];
|
|
3711
|
+
/**
|
|
3712
|
+
* Those declarations which should be visible to downstream consumers. If not specified, all
|
|
3713
|
+
* declarations are made visible to downstream consumers.
|
|
3714
|
+
*/
|
|
3715
|
+
publicDeclarationTypes: outputAst.Expression[] | null;
|
|
3711
3716
|
/**
|
|
3712
3717
|
* An array of expressions representing the imports of the module.
|
|
3713
3718
|
*/
|
|
3714
3719
|
imports: R3Reference[];
|
|
3720
|
+
/**
|
|
3721
|
+
* Whether or not to include `imports` in generated type declarations.
|
|
3722
|
+
*/
|
|
3723
|
+
includeImportTypes: boolean;
|
|
3715
3724
|
/**
|
|
3716
3725
|
* An array of expressions representing the exports of the module.
|
|
3717
3726
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/compiler",
|
|
3
|
-
"version": "14.0.1",
|
|
3
|
+
"version": "14.1.0-next.1",
|
|
4
4
|
"description": "Angular - the compiler library",
|
|
5
5
|
"author": "angular",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"tslib": "^2.3.0"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
14
|
-
"@angular/core": "14.0.1"
|
|
14
|
+
"@angular/core": "14.1.0-next.1"
|
|
15
15
|
},
|
|
16
16
|
"peerDependenciesMeta": {
|
|
17
17
|
"@angular/core": {
|
package/testing/index.d.ts
CHANGED