@angular/compiler 13.3.12 → 13.4.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 +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/package.json +1 -1
package/fesm2015/testing.mjs
CHANGED
package/fesm2020/compiler.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v13.
|
|
2
|
+
* @license Angular v13.4.0
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -19830,7 +19830,7 @@ function publishFacade(global) {
|
|
|
19830
19830
|
* Use of this source code is governed by an MIT-style license that can be
|
|
19831
19831
|
* found in the LICENSE file at https://angular.io/license
|
|
19832
19832
|
*/
|
|
19833
|
-
const VERSION = new Version('13.
|
|
19833
|
+
const VERSION = new Version('13.4.0');
|
|
19834
19834
|
|
|
19835
19835
|
/**
|
|
19836
19836
|
* @license
|
|
@@ -21871,7 +21871,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$6 = '12.0.0';
|
|
|
21871
21871
|
function compileDeclareClassMetadata(metadata) {
|
|
21872
21872
|
const definitionMap = new DefinitionMap();
|
|
21873
21873
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$6));
|
|
21874
|
-
definitionMap.set('version', literal('13.
|
|
21874
|
+
definitionMap.set('version', literal('13.4.0'));
|
|
21875
21875
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
21876
21876
|
definitionMap.set('type', metadata.type);
|
|
21877
21877
|
definitionMap.set('decorators', metadata.decorators);
|
|
@@ -21988,7 +21988,7 @@ function compileDeclareDirectiveFromMetadata(meta) {
|
|
|
21988
21988
|
function createDirectiveDefinitionMap(meta) {
|
|
21989
21989
|
const definitionMap = new DefinitionMap();
|
|
21990
21990
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
|
|
21991
|
-
definitionMap.set('version', literal('13.
|
|
21991
|
+
definitionMap.set('version', literal('13.4.0'));
|
|
21992
21992
|
// e.g. `type: MyDirective`
|
|
21993
21993
|
definitionMap.set('type', meta.internalType);
|
|
21994
21994
|
// e.g. `selector: 'some-dir'`
|
|
@@ -22209,7 +22209,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
|
|
|
22209
22209
|
function compileDeclareFactoryFunction(meta) {
|
|
22210
22210
|
const definitionMap = new DefinitionMap();
|
|
22211
22211
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
|
|
22212
|
-
definitionMap.set('version', literal('13.
|
|
22212
|
+
definitionMap.set('version', literal('13.4.0'));
|
|
22213
22213
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22214
22214
|
definitionMap.set('type', meta.internalType);
|
|
22215
22215
|
definitionMap.set('deps', compileDependencies(meta.deps));
|
|
@@ -22251,7 +22251,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
22251
22251
|
function createInjectableDefinitionMap(meta) {
|
|
22252
22252
|
const definitionMap = new DefinitionMap();
|
|
22253
22253
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
|
|
22254
|
-
definitionMap.set('version', literal('13.
|
|
22254
|
+
definitionMap.set('version', literal('13.4.0'));
|
|
22255
22255
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22256
22256
|
definitionMap.set('type', meta.internalType);
|
|
22257
22257
|
// Only generate providedIn property if it has a non-null value
|
|
@@ -22309,7 +22309,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
22309
22309
|
function createInjectorDefinitionMap(meta) {
|
|
22310
22310
|
const definitionMap = new DefinitionMap();
|
|
22311
22311
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
|
|
22312
|
-
definitionMap.set('version', literal('13.
|
|
22312
|
+
definitionMap.set('version', literal('13.4.0'));
|
|
22313
22313
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22314
22314
|
definitionMap.set('type', meta.internalType);
|
|
22315
22315
|
definitionMap.set('providers', meta.providers);
|
|
@@ -22346,7 +22346,7 @@ function compileDeclareNgModuleFromMetadata(meta) {
|
|
|
22346
22346
|
function createNgModuleDefinitionMap(meta) {
|
|
22347
22347
|
const definitionMap = new DefinitionMap();
|
|
22348
22348
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
|
|
22349
|
-
definitionMap.set('version', literal('13.
|
|
22349
|
+
definitionMap.set('version', literal('13.4.0'));
|
|
22350
22350
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22351
22351
|
definitionMap.set('type', meta.internalType);
|
|
22352
22352
|
// We only generate the keys in the metadata if the arrays contain values.
|
|
@@ -22404,7 +22404,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
22404
22404
|
function createPipeDefinitionMap(meta) {
|
|
22405
22405
|
const definitionMap = new DefinitionMap();
|
|
22406
22406
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
22407
|
-
definitionMap.set('version', literal('13.
|
|
22407
|
+
definitionMap.set('version', literal('13.4.0'));
|
|
22408
22408
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22409
22409
|
// e.g. `type: MyPipe`
|
|
22410
22410
|
definitionMap.set('type', meta.internalType);
|