@angular/compiler 16.0.0-next.5 → 16.0.0-next.7
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/esm2022/src/injectable_compiler_2.mjs +11 -12
- package/esm2022/src/jit_compiler_facade.mjs +1 -13
- package/esm2022/src/render3/partial/class_metadata.mjs +1 -1
- package/esm2022/src/render3/partial/directive.mjs +3 -3
- package/esm2022/src/render3/partial/factory.mjs +3 -3
- package/esm2022/src/render3/partial/injectable.mjs +3 -3
- package/esm2022/src/render3/partial/injector.mjs +3 -3
- package/esm2022/src/render3/partial/ng_module.mjs +3 -3
- package/esm2022/src/render3/partial/pipe.mjs +3 -3
- package/esm2022/src/render3/r3_factory.mjs +3 -3
- package/esm2022/src/render3/r3_injector_compiler.mjs +1 -1
- package/esm2022/src/render3/r3_module_compiler.mjs +6 -6
- package/esm2022/src/render3/r3_pipe_compiler.mjs +1 -1
- package/esm2022/src/render3/view/api.mjs +1 -1
- package/esm2022/src/render3/view/compiler.mjs +2 -2
- package/esm2022/src/version.mjs +1 -1
- package/fesm2022/compiler.mjs +33 -46
- package/fesm2022/compiler.mjs.map +1 -1
- package/fesm2022/testing.mjs +1 -1
- package/index.d.ts +1 -43
- package/package.json +2 -2
- package/testing/index.d.ts +1 -1
package/fesm2022/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.7
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -2793,14 +2793,6 @@ declare interface R3ConstructorFactoryMetadata {
|
|
|
2793
2793
|
* An expression representing the interface type being constructed.
|
|
2794
2794
|
*/
|
|
2795
2795
|
type: R3Reference;
|
|
2796
|
-
/**
|
|
2797
|
-
* An expression representing the constructor type, intended for use within a class definition
|
|
2798
|
-
* itself.
|
|
2799
|
-
*
|
|
2800
|
-
* This can differ from the outer `type` if the class is being compiled by ngcc and is inside
|
|
2801
|
-
* an IIFE structure that uses a different name internally.
|
|
2802
|
-
*/
|
|
2803
|
-
internalType: outputAst.Expression;
|
|
2804
2796
|
/** Number of arguments for the `type`. */
|
|
2805
2797
|
typeArgumentCount: number;
|
|
2806
2798
|
/**
|
|
@@ -3353,14 +3345,6 @@ export declare interface R3DirectiveMetadata {
|
|
|
3353
3345
|
* An expression representing a reference to the directive itself.
|
|
3354
3346
|
*/
|
|
3355
3347
|
type: R3Reference;
|
|
3356
|
-
/**
|
|
3357
|
-
* An expression representing a reference to the directive being compiled, intended for use within
|
|
3358
|
-
* a class definition itself.
|
|
3359
|
-
*
|
|
3360
|
-
* This can differ from the outer `type` if the class is being compiled by ngcc and is inside
|
|
3361
|
-
* an IIFE structure that uses a different name internally.
|
|
3362
|
-
*/
|
|
3363
|
-
internalType: outputAst.Expression;
|
|
3364
3348
|
/**
|
|
3365
3349
|
* Number of generic type parameters of the type itself.
|
|
3366
3350
|
*/
|
|
@@ -3680,7 +3664,6 @@ export declare class R3Identifiers {
|
|
|
3680
3664
|
export declare interface R3InjectableMetadata {
|
|
3681
3665
|
name: string;
|
|
3682
3666
|
type: R3Reference;
|
|
3683
|
-
internalType: outputAst.Expression;
|
|
3684
3667
|
typeArgumentCount: number;
|
|
3685
3668
|
providedIn: MaybeForwardRefExpression;
|
|
3686
3669
|
useClass?: MaybeForwardRefExpression;
|
|
@@ -3693,7 +3676,6 @@ export declare interface R3InjectableMetadata {
|
|
|
3693
3676
|
export declare interface R3InjectorMetadata {
|
|
3694
3677
|
name: string;
|
|
3695
3678
|
type: R3Reference;
|
|
3696
|
-
internalType: outputAst.Expression;
|
|
3697
3679
|
providers: outputAst.Expression | null;
|
|
3698
3680
|
imports: outputAst.Expression[];
|
|
3699
3681
|
}
|
|
@@ -3729,22 +3711,6 @@ export declare interface R3NgModuleMetadata {
|
|
|
3729
3711
|
* An expression representing the module type being compiled.
|
|
3730
3712
|
*/
|
|
3731
3713
|
type: R3Reference;
|
|
3732
|
-
/**
|
|
3733
|
-
* An expression representing the module type being compiled, intended for use within a class
|
|
3734
|
-
* definition itself.
|
|
3735
|
-
*
|
|
3736
|
-
* This can differ from the outer `type` if the class is being compiled by ngcc and is inside
|
|
3737
|
-
* an IIFE structure that uses a different name internally.
|
|
3738
|
-
*/
|
|
3739
|
-
internalType: outputAst.Expression;
|
|
3740
|
-
/**
|
|
3741
|
-
* An expression intended for use by statements that are adjacent (i.e. tightly coupled) to but
|
|
3742
|
-
* not internal to a class definition.
|
|
3743
|
-
*
|
|
3744
|
-
* This can differ from the outer `type` if the class is being compiled by ngcc and is inside
|
|
3745
|
-
* an IIFE structure that uses a different name internally.
|
|
3746
|
-
*/
|
|
3747
|
-
adjacentType: outputAst.Expression;
|
|
3748
3714
|
/**
|
|
3749
3715
|
* An array of expressions representing the bootstrap components specified by the module.
|
|
3750
3716
|
*/
|
|
@@ -3821,14 +3787,6 @@ export declare interface R3PipeMetadata {
|
|
|
3821
3787
|
* An expression representing a reference to the pipe itself.
|
|
3822
3788
|
*/
|
|
3823
3789
|
type: R3Reference;
|
|
3824
|
-
/**
|
|
3825
|
-
* An expression representing the pipe being compiled, intended for use within a class definition
|
|
3826
|
-
* itself.
|
|
3827
|
-
*
|
|
3828
|
-
* This can differ from the outer `type` if the class is being compiled by ngcc and is inside an
|
|
3829
|
-
* IIFE structure that uses a different name internally.
|
|
3830
|
-
*/
|
|
3831
|
-
internalType: outputAst.Expression;
|
|
3832
3790
|
/**
|
|
3833
3791
|
* Number of generic type parameters of the type itself.
|
|
3834
3792
|
*/
|
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.7",
|
|
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.7"
|
|
15
15
|
},
|
|
16
16
|
"peerDependenciesMeta": {
|
|
17
17
|
"@angular/core": {
|
package/testing/index.d.ts
CHANGED