@angular/compiler 16.0.0-next.2 → 16.0.0-next.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/compiler_facade_interface.mjs +1 -1
- package/esm2020/src/jit_compiler_facade.mjs +45 -11
- package/esm2020/src/render3/partial/class_metadata.mjs +1 -1
- package/esm2020/src/render3/partial/directive.mjs +5 -5
- 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/view/api.mjs +1 -1
- package/esm2020/src/render3/view/compiler.mjs +12 -6
- package/esm2020/src/render3/view/util.mjs +15 -15
- package/esm2020/src/version.mjs +1 -1
- package/fesm2015/compiler.mjs +86 -46
- package/fesm2015/compiler.mjs.map +1 -1
- package/fesm2015/testing.mjs +1 -1
- package/fesm2020/compiler.mjs +78 -38
- package/fesm2020/compiler.mjs.map +1 -1
- package/fesm2020/testing.mjs +1 -1
- package/index.d.ts +10 -2
- 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 v16.0.0-next.
|
|
2
|
+
* @license Angular v16.0.0-next.3
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -3404,7 +3404,7 @@ export declare interface R3DirectiveMetadata {
|
|
|
3404
3404
|
* binding property name and class property name if the names are different.
|
|
3405
3405
|
*/
|
|
3406
3406
|
inputs: {
|
|
3407
|
-
[field: string]:
|
|
3407
|
+
[field: string]: R3InputMetadata;
|
|
3408
3408
|
};
|
|
3409
3409
|
/**
|
|
3410
3410
|
* A mapping of outputs from class property names to binding property names, or to a tuple of
|
|
@@ -3697,6 +3697,14 @@ export declare interface R3InjectorMetadata {
|
|
|
3697
3697
|
imports: outputAst.Expression[];
|
|
3698
3698
|
}
|
|
3699
3699
|
|
|
3700
|
+
/**
|
|
3701
|
+
* Metadata for an individual input on a directive.
|
|
3702
|
+
*/
|
|
3703
|
+
export declare interface R3InputMetadata {
|
|
3704
|
+
classPropertyName: string;
|
|
3705
|
+
bindingPropertyName: string;
|
|
3706
|
+
}
|
|
3707
|
+
|
|
3700
3708
|
/**
|
|
3701
3709
|
* Generates Source Span object for a given R3 Type for JIT mode.
|
|
3702
3710
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/compiler",
|
|
3
|
-
"version": "16.0.0-next.
|
|
3
|
+
"version": "16.0.0-next.3",
|
|
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": "16.0.0-next.
|
|
14
|
+
"@angular/core": "16.0.0-next.3"
|
|
15
15
|
},
|
|
16
16
|
"peerDependenciesMeta": {
|
|
17
17
|
"@angular/core": {
|
package/testing/index.d.ts
CHANGED