@angular/compiler 16.0.0-next.2 → 16.0.0-next.4
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/core.mjs +1 -1
- package/esm2020/src/jit_compiler_facade.mjs +46 -12
- 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 +19 -6
- package/esm2020/src/render3/view/util.mjs +15 -15
- package/esm2020/src/version.mjs +1 -1
- package/fesm2015/compiler.mjs +94 -47
- package/fesm2015/compiler.mjs.map +1 -1
- package/fesm2015/testing.mjs +1 -1
- package/fesm2020/compiler.mjs +86 -39
- package/fesm2020/compiler.mjs.map +1 -1
- package/fesm2020/testing.mjs +1 -1
- package/index.d.ts +14 -4
- 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.4
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -1428,7 +1428,8 @@ declare const enum InjectFlags {
|
|
|
1428
1428
|
}
|
|
1429
1429
|
|
|
1430
1430
|
declare interface Input {
|
|
1431
|
-
|
|
1431
|
+
alias?: string;
|
|
1432
|
+
required?: boolean;
|
|
1432
1433
|
}
|
|
1433
1434
|
|
|
1434
1435
|
/**
|
|
@@ -1894,7 +1895,7 @@ declare class NullVisitor implements Visitor_3<void> {
|
|
|
1894
1895
|
declare const NUMBER_TYPE: BuiltinType;
|
|
1895
1896
|
|
|
1896
1897
|
declare interface Output {
|
|
1897
|
-
|
|
1898
|
+
alias?: string;
|
|
1898
1899
|
}
|
|
1899
1900
|
|
|
1900
1901
|
declare namespace outputAst {
|
|
@@ -3404,7 +3405,7 @@ export declare interface R3DirectiveMetadata {
|
|
|
3404
3405
|
* binding property name and class property name if the names are different.
|
|
3405
3406
|
*/
|
|
3406
3407
|
inputs: {
|
|
3407
|
-
[field: string]:
|
|
3408
|
+
[field: string]: R3InputMetadata;
|
|
3408
3409
|
};
|
|
3409
3410
|
/**
|
|
3410
3411
|
* A mapping of outputs from class property names to binding property names, or to a tuple of
|
|
@@ -3697,6 +3698,15 @@ export declare interface R3InjectorMetadata {
|
|
|
3697
3698
|
imports: outputAst.Expression[];
|
|
3698
3699
|
}
|
|
3699
3700
|
|
|
3701
|
+
/**
|
|
3702
|
+
* Metadata for an individual input on a directive.
|
|
3703
|
+
*/
|
|
3704
|
+
export declare interface R3InputMetadata {
|
|
3705
|
+
classPropertyName: string;
|
|
3706
|
+
bindingPropertyName: string;
|
|
3707
|
+
required: boolean;
|
|
3708
|
+
}
|
|
3709
|
+
|
|
3700
3710
|
/**
|
|
3701
3711
|
* Generates Source Span object for a given R3 Type for JIT mode.
|
|
3702
3712
|
*
|
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.4",
|
|
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.4"
|
|
15
15
|
},
|
|
16
16
|
"peerDependenciesMeta": {
|
|
17
17
|
"@angular/core": {
|
package/testing/index.d.ts
CHANGED