@angular/compiler 16.0.0-next.3 → 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 +12 -12
- 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/view/api.mjs +1 -1
- package/esm2020/src/render3/view/compiler.mjs +10 -3
- package/esm2020/src/version.mjs +1 -1
- package/fesm2015/compiler.mjs +29 -22
- package/fesm2015/compiler.mjs.map +1 -1
- package/fesm2015/testing.mjs +1 -1
- package/fesm2020/compiler.mjs +29 -22
- package/fesm2020/compiler.mjs.map +1 -1
- package/fesm2020/testing.mjs +1 -1
- package/index.d.ts +5 -3
- 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 {
|
|
@@ -3703,6 +3704,7 @@ export declare interface R3InjectorMetadata {
|
|
|
3703
3704
|
export declare interface R3InputMetadata {
|
|
3704
3705
|
classPropertyName: string;
|
|
3705
3706
|
bindingPropertyName: string;
|
|
3707
|
+
required: boolean;
|
|
3706
3708
|
}
|
|
3707
3709
|
|
|
3708
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.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