@angular/compiler 14.1.0-next.1 → 14.1.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/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 +9 -9
- package/fesm2015/compiler.mjs.map +1 -1
- package/fesm2015/testing.mjs +1 -1
- package/fesm2020/compiler.mjs +9 -9
- 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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v14.1.0-next.
|
|
2
|
+
* @license Angular v14.1.0-next.4
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -19900,7 +19900,7 @@ function publishFacade(global) {
|
|
|
19900
19900
|
* Use of this source code is governed by an MIT-style license that can be
|
|
19901
19901
|
* found in the LICENSE file at https://angular.io/license
|
|
19902
19902
|
*/
|
|
19903
|
-
const VERSION = new Version('14.1.0-next.
|
|
19903
|
+
const VERSION = new Version('14.1.0-next.4');
|
|
19904
19904
|
|
|
19905
19905
|
/**
|
|
19906
19906
|
* @license
|
|
@@ -21933,7 +21933,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$6 = '12.0.0';
|
|
|
21933
21933
|
function compileDeclareClassMetadata(metadata) {
|
|
21934
21934
|
const definitionMap = new DefinitionMap();
|
|
21935
21935
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$6));
|
|
21936
|
-
definitionMap.set('version', literal('14.1.0-next.
|
|
21936
|
+
definitionMap.set('version', literal('14.1.0-next.4'));
|
|
21937
21937
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
21938
21938
|
definitionMap.set('type', metadata.type);
|
|
21939
21939
|
definitionMap.set('decorators', metadata.decorators);
|
|
@@ -22050,7 +22050,7 @@ function compileDeclareDirectiveFromMetadata(meta) {
|
|
|
22050
22050
|
function createDirectiveDefinitionMap(meta) {
|
|
22051
22051
|
const definitionMap = new DefinitionMap();
|
|
22052
22052
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
|
|
22053
|
-
definitionMap.set('version', literal('14.1.0-next.
|
|
22053
|
+
definitionMap.set('version', literal('14.1.0-next.4'));
|
|
22054
22054
|
// e.g. `type: MyDirective`
|
|
22055
22055
|
definitionMap.set('type', meta.internalType);
|
|
22056
22056
|
if (meta.isStandalone) {
|
|
@@ -22264,7 +22264,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
|
|
|
22264
22264
|
function compileDeclareFactoryFunction(meta) {
|
|
22265
22265
|
const definitionMap = new DefinitionMap();
|
|
22266
22266
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
|
|
22267
|
-
definitionMap.set('version', literal('14.1.0-next.
|
|
22267
|
+
definitionMap.set('version', literal('14.1.0-next.4'));
|
|
22268
22268
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22269
22269
|
definitionMap.set('type', meta.internalType);
|
|
22270
22270
|
definitionMap.set('deps', compileDependencies(meta.deps));
|
|
@@ -22306,7 +22306,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
22306
22306
|
function createInjectableDefinitionMap(meta) {
|
|
22307
22307
|
const definitionMap = new DefinitionMap();
|
|
22308
22308
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
|
|
22309
|
-
definitionMap.set('version', literal('14.1.0-next.
|
|
22309
|
+
definitionMap.set('version', literal('14.1.0-next.4'));
|
|
22310
22310
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22311
22311
|
definitionMap.set('type', meta.internalType);
|
|
22312
22312
|
// Only generate providedIn property if it has a non-null value
|
|
@@ -22364,7 +22364,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
22364
22364
|
function createInjectorDefinitionMap(meta) {
|
|
22365
22365
|
const definitionMap = new DefinitionMap();
|
|
22366
22366
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
|
|
22367
|
-
definitionMap.set('version', literal('14.1.0-next.
|
|
22367
|
+
definitionMap.set('version', literal('14.1.0-next.4'));
|
|
22368
22368
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22369
22369
|
definitionMap.set('type', meta.internalType);
|
|
22370
22370
|
definitionMap.set('providers', meta.providers);
|
|
@@ -22401,7 +22401,7 @@ function compileDeclareNgModuleFromMetadata(meta) {
|
|
|
22401
22401
|
function createNgModuleDefinitionMap(meta) {
|
|
22402
22402
|
const definitionMap = new DefinitionMap();
|
|
22403
22403
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
|
|
22404
|
-
definitionMap.set('version', literal('14.1.0-next.
|
|
22404
|
+
definitionMap.set('version', literal('14.1.0-next.4'));
|
|
22405
22405
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22406
22406
|
definitionMap.set('type', meta.internalType);
|
|
22407
22407
|
// We only generate the keys in the metadata if the arrays contain values.
|
|
@@ -22459,7 +22459,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
22459
22459
|
function createPipeDefinitionMap(meta) {
|
|
22460
22460
|
const definitionMap = new DefinitionMap();
|
|
22461
22461
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
22462
|
-
definitionMap.set('version', literal('14.1.0-next.
|
|
22462
|
+
definitionMap.set('version', literal('14.1.0-next.4'));
|
|
22463
22463
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22464
22464
|
// e.g. `type: MyPipe`
|
|
22465
22465
|
definitionMap.set('type', meta.internalType);
|