@angular/compiler 14.0.0-rc.1 → 14.0.0-rc.2
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.0.0-rc.
|
|
2
|
+
* @license Angular v14.0.0-rc.2
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -19888,7 +19888,7 @@ function publishFacade(global) {
|
|
|
19888
19888
|
* Use of this source code is governed by an MIT-style license that can be
|
|
19889
19889
|
* found in the LICENSE file at https://angular.io/license
|
|
19890
19890
|
*/
|
|
19891
|
-
const VERSION = new Version('14.0.0-rc.
|
|
19891
|
+
const VERSION = new Version('14.0.0-rc.2');
|
|
19892
19892
|
|
|
19893
19893
|
/**
|
|
19894
19894
|
* @license
|
|
@@ -21921,7 +21921,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$6 = '12.0.0';
|
|
|
21921
21921
|
function compileDeclareClassMetadata(metadata) {
|
|
21922
21922
|
const definitionMap = new DefinitionMap();
|
|
21923
21923
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$6));
|
|
21924
|
-
definitionMap.set('version', literal('14.0.0-rc.
|
|
21924
|
+
definitionMap.set('version', literal('14.0.0-rc.2'));
|
|
21925
21925
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
21926
21926
|
definitionMap.set('type', metadata.type);
|
|
21927
21927
|
definitionMap.set('decorators', metadata.decorators);
|
|
@@ -22038,7 +22038,7 @@ function compileDeclareDirectiveFromMetadata(meta) {
|
|
|
22038
22038
|
function createDirectiveDefinitionMap(meta) {
|
|
22039
22039
|
const definitionMap = new DefinitionMap();
|
|
22040
22040
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
|
|
22041
|
-
definitionMap.set('version', literal('14.0.0-rc.
|
|
22041
|
+
definitionMap.set('version', literal('14.0.0-rc.2'));
|
|
22042
22042
|
// e.g. `type: MyDirective`
|
|
22043
22043
|
definitionMap.set('type', meta.internalType);
|
|
22044
22044
|
if (meta.isStandalone) {
|
|
@@ -22252,7 +22252,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
|
|
|
22252
22252
|
function compileDeclareFactoryFunction(meta) {
|
|
22253
22253
|
const definitionMap = new DefinitionMap();
|
|
22254
22254
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
|
|
22255
|
-
definitionMap.set('version', literal('14.0.0-rc.
|
|
22255
|
+
definitionMap.set('version', literal('14.0.0-rc.2'));
|
|
22256
22256
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22257
22257
|
definitionMap.set('type', meta.internalType);
|
|
22258
22258
|
definitionMap.set('deps', compileDependencies(meta.deps));
|
|
@@ -22294,7 +22294,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
22294
22294
|
function createInjectableDefinitionMap(meta) {
|
|
22295
22295
|
const definitionMap = new DefinitionMap();
|
|
22296
22296
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
|
|
22297
|
-
definitionMap.set('version', literal('14.0.0-rc.
|
|
22297
|
+
definitionMap.set('version', literal('14.0.0-rc.2'));
|
|
22298
22298
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22299
22299
|
definitionMap.set('type', meta.internalType);
|
|
22300
22300
|
// Only generate providedIn property if it has a non-null value
|
|
@@ -22352,7 +22352,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
22352
22352
|
function createInjectorDefinitionMap(meta) {
|
|
22353
22353
|
const definitionMap = new DefinitionMap();
|
|
22354
22354
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
|
|
22355
|
-
definitionMap.set('version', literal('14.0.0-rc.
|
|
22355
|
+
definitionMap.set('version', literal('14.0.0-rc.2'));
|
|
22356
22356
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22357
22357
|
definitionMap.set('type', meta.internalType);
|
|
22358
22358
|
definitionMap.set('providers', meta.providers);
|
|
@@ -22389,7 +22389,7 @@ function compileDeclareNgModuleFromMetadata(meta) {
|
|
|
22389
22389
|
function createNgModuleDefinitionMap(meta) {
|
|
22390
22390
|
const definitionMap = new DefinitionMap();
|
|
22391
22391
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
|
|
22392
|
-
definitionMap.set('version', literal('14.0.0-rc.
|
|
22392
|
+
definitionMap.set('version', literal('14.0.0-rc.2'));
|
|
22393
22393
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22394
22394
|
definitionMap.set('type', meta.internalType);
|
|
22395
22395
|
// We only generate the keys in the metadata if the arrays contain values.
|
|
@@ -22447,7 +22447,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
22447
22447
|
function createPipeDefinitionMap(meta) {
|
|
22448
22448
|
const definitionMap = new DefinitionMap();
|
|
22449
22449
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
22450
|
-
definitionMap.set('version', literal('14.0.0-rc.
|
|
22450
|
+
definitionMap.set('version', literal('14.0.0-rc.2'));
|
|
22451
22451
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22452
22452
|
// e.g. `type: MyPipe`
|
|
22453
22453
|
definitionMap.set('type', meta.internalType);
|