@angular/compiler 14.1.1 → 14.2.0-next.0
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/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 +8 -8
- package/fesm2015/compiler.mjs.map +1 -1
- package/fesm2015/testing.mjs +1 -1
- package/fesm2020/compiler.mjs +8 -8
- package/fesm2020/compiler.mjs.map +1 -1
- package/fesm2020/testing.mjs +1 -1
- package/index.d.ts +1 -1
- package/package.json +2 -2
- package/testing/index.d.ts +1 -1
package/fesm2015/testing.mjs
CHANGED
package/fesm2020/compiler.mjs
CHANGED
|
@@ -19896,7 +19896,7 @@ function publishFacade(global) {
|
|
|
19896
19896
|
* Use of this source code is governed by an MIT-style license that can be
|
|
19897
19897
|
* found in the LICENSE file at https://angular.io/license
|
|
19898
19898
|
*/
|
|
19899
|
-
const VERSION = new Version('14.
|
|
19899
|
+
const VERSION = new Version('14.2.0-next.0');
|
|
19900
19900
|
|
|
19901
19901
|
/**
|
|
19902
19902
|
* @license
|
|
@@ -21929,7 +21929,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$6 = '12.0.0';
|
|
|
21929
21929
|
function compileDeclareClassMetadata(metadata) {
|
|
21930
21930
|
const definitionMap = new DefinitionMap();
|
|
21931
21931
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$6));
|
|
21932
|
-
definitionMap.set('version', literal('14.
|
|
21932
|
+
definitionMap.set('version', literal('14.2.0-next.0'));
|
|
21933
21933
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
21934
21934
|
definitionMap.set('type', metadata.type);
|
|
21935
21935
|
definitionMap.set('decorators', metadata.decorators);
|
|
@@ -22046,7 +22046,7 @@ function compileDeclareDirectiveFromMetadata(meta) {
|
|
|
22046
22046
|
function createDirectiveDefinitionMap(meta) {
|
|
22047
22047
|
const definitionMap = new DefinitionMap();
|
|
22048
22048
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
|
|
22049
|
-
definitionMap.set('version', literal('14.
|
|
22049
|
+
definitionMap.set('version', literal('14.2.0-next.0'));
|
|
22050
22050
|
// e.g. `type: MyDirective`
|
|
22051
22051
|
definitionMap.set('type', meta.internalType);
|
|
22052
22052
|
if (meta.isStandalone) {
|
|
@@ -22260,7 +22260,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
|
|
|
22260
22260
|
function compileDeclareFactoryFunction(meta) {
|
|
22261
22261
|
const definitionMap = new DefinitionMap();
|
|
22262
22262
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
|
|
22263
|
-
definitionMap.set('version', literal('14.
|
|
22263
|
+
definitionMap.set('version', literal('14.2.0-next.0'));
|
|
22264
22264
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22265
22265
|
definitionMap.set('type', meta.internalType);
|
|
22266
22266
|
definitionMap.set('deps', compileDependencies(meta.deps));
|
|
@@ -22302,7 +22302,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
22302
22302
|
function createInjectableDefinitionMap(meta) {
|
|
22303
22303
|
const definitionMap = new DefinitionMap();
|
|
22304
22304
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
|
|
22305
|
-
definitionMap.set('version', literal('14.
|
|
22305
|
+
definitionMap.set('version', literal('14.2.0-next.0'));
|
|
22306
22306
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22307
22307
|
definitionMap.set('type', meta.internalType);
|
|
22308
22308
|
// Only generate providedIn property if it has a non-null value
|
|
@@ -22360,7 +22360,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
22360
22360
|
function createInjectorDefinitionMap(meta) {
|
|
22361
22361
|
const definitionMap = new DefinitionMap();
|
|
22362
22362
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
|
|
22363
|
-
definitionMap.set('version', literal('14.
|
|
22363
|
+
definitionMap.set('version', literal('14.2.0-next.0'));
|
|
22364
22364
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22365
22365
|
definitionMap.set('type', meta.internalType);
|
|
22366
22366
|
definitionMap.set('providers', meta.providers);
|
|
@@ -22397,7 +22397,7 @@ function compileDeclareNgModuleFromMetadata(meta) {
|
|
|
22397
22397
|
function createNgModuleDefinitionMap(meta) {
|
|
22398
22398
|
const definitionMap = new DefinitionMap();
|
|
22399
22399
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
|
|
22400
|
-
definitionMap.set('version', literal('14.
|
|
22400
|
+
definitionMap.set('version', literal('14.2.0-next.0'));
|
|
22401
22401
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22402
22402
|
definitionMap.set('type', meta.internalType);
|
|
22403
22403
|
// We only generate the keys in the metadata if the arrays contain values.
|
|
@@ -22455,7 +22455,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
22455
22455
|
function createPipeDefinitionMap(meta) {
|
|
22456
22456
|
const definitionMap = new DefinitionMap();
|
|
22457
22457
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
22458
|
-
definitionMap.set('version', literal('14.
|
|
22458
|
+
definitionMap.set('version', literal('14.2.0-next.0'));
|
|
22459
22459
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22460
22460
|
// e.g. `type: MyPipe`
|
|
22461
22461
|
definitionMap.set('type', meta.internalType);
|