@angular/compiler 15.0.0-next.3 → 15.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/config.mjs +2 -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/version.mjs +1 -1
- package/fesm2015/compiler.mjs +10 -11
- package/fesm2015/compiler.mjs.map +1 -1
- package/fesm2015/testing.mjs +1 -1
- package/fesm2020/compiler.mjs +10 -11
- package/fesm2020/compiler.mjs.map +1 -1
- package/fesm2020/testing.mjs +1 -1
- package/index.d.ts +2 -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 v15.0.0-next.
|
|
2
|
+
* @license Angular v15.0.0-next.4
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -651,14 +651,12 @@ export declare function compilePipeFromMetadata(metadata: R3PipeMetadata): R3Com
|
|
|
651
651
|
export declare class CompilerConfig {
|
|
652
652
|
defaultEncapsulation: ViewEncapsulation | null;
|
|
653
653
|
useJit: boolean;
|
|
654
|
-
jitDevMode: boolean;
|
|
655
654
|
missingTranslation: MissingTranslationStrategy | null;
|
|
656
655
|
preserveWhitespaces: boolean;
|
|
657
656
|
strictInjectionParameters: boolean;
|
|
658
|
-
constructor({ defaultEncapsulation, useJit,
|
|
657
|
+
constructor({ defaultEncapsulation, useJit, missingTranslation, preserveWhitespaces, strictInjectionParameters }?: {
|
|
659
658
|
defaultEncapsulation?: ViewEncapsulation;
|
|
660
659
|
useJit?: boolean;
|
|
661
|
-
jitDevMode?: boolean;
|
|
662
660
|
missingTranslation?: MissingTranslationStrategy | null;
|
|
663
661
|
preserveWhitespaces?: boolean;
|
|
664
662
|
strictInjectionParameters?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/compiler",
|
|
3
|
-
"version": "15.0.0-next.
|
|
3
|
+
"version": "15.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": "15.0.0-next.
|
|
14
|
+
"@angular/core": "15.0.0-next.4"
|
|
15
15
|
},
|
|
16
16
|
"peerDependenciesMeta": {
|
|
17
17
|
"@angular/core": {
|
package/testing/index.d.ts
CHANGED