@angular/compiler 15.1.0-next.2 → 15.1.0-next.3
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 v15.1.0-next.
|
|
2
|
+
* @license Angular v15.1.0-next.3
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -20362,7 +20362,7 @@ function publishFacade(global) {
|
|
|
20362
20362
|
* Use of this source code is governed by an MIT-style license that can be
|
|
20363
20363
|
* found in the LICENSE file at https://angular.io/license
|
|
20364
20364
|
*/
|
|
20365
|
-
const VERSION = new Version('15.1.0-next.
|
|
20365
|
+
const VERSION = new Version('15.1.0-next.3');
|
|
20366
20366
|
|
|
20367
20367
|
/**
|
|
20368
20368
|
* @license
|
|
@@ -22394,7 +22394,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$6 = '12.0.0';
|
|
|
22394
22394
|
function compileDeclareClassMetadata(metadata) {
|
|
22395
22395
|
const definitionMap = new DefinitionMap();
|
|
22396
22396
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$6));
|
|
22397
|
-
definitionMap.set('version', literal('15.1.0-next.
|
|
22397
|
+
definitionMap.set('version', literal('15.1.0-next.3'));
|
|
22398
22398
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22399
22399
|
definitionMap.set('type', metadata.type);
|
|
22400
22400
|
definitionMap.set('decorators', metadata.decorators);
|
|
@@ -22511,7 +22511,7 @@ function compileDeclareDirectiveFromMetadata(meta) {
|
|
|
22511
22511
|
function createDirectiveDefinitionMap(meta) {
|
|
22512
22512
|
const definitionMap = new DefinitionMap();
|
|
22513
22513
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
|
|
22514
|
-
definitionMap.set('version', literal('15.1.0-next.
|
|
22514
|
+
definitionMap.set('version', literal('15.1.0-next.3'));
|
|
22515
22515
|
// e.g. `type: MyDirective`
|
|
22516
22516
|
definitionMap.set('type', meta.internalType);
|
|
22517
22517
|
if (meta.isStandalone) {
|
|
@@ -22750,7 +22750,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
|
|
|
22750
22750
|
function compileDeclareFactoryFunction(meta) {
|
|
22751
22751
|
const definitionMap = new DefinitionMap();
|
|
22752
22752
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
|
|
22753
|
-
definitionMap.set('version', literal('15.1.0-next.
|
|
22753
|
+
definitionMap.set('version', literal('15.1.0-next.3'));
|
|
22754
22754
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22755
22755
|
definitionMap.set('type', meta.internalType);
|
|
22756
22756
|
definitionMap.set('deps', compileDependencies(meta.deps));
|
|
@@ -22792,7 +22792,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
22792
22792
|
function createInjectableDefinitionMap(meta) {
|
|
22793
22793
|
const definitionMap = new DefinitionMap();
|
|
22794
22794
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
|
|
22795
|
-
definitionMap.set('version', literal('15.1.0-next.
|
|
22795
|
+
definitionMap.set('version', literal('15.1.0-next.3'));
|
|
22796
22796
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22797
22797
|
definitionMap.set('type', meta.internalType);
|
|
22798
22798
|
// Only generate providedIn property if it has a non-null value
|
|
@@ -22850,7 +22850,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
22850
22850
|
function createInjectorDefinitionMap(meta) {
|
|
22851
22851
|
const definitionMap = new DefinitionMap();
|
|
22852
22852
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
|
|
22853
|
-
definitionMap.set('version', literal('15.1.0-next.
|
|
22853
|
+
definitionMap.set('version', literal('15.1.0-next.3'));
|
|
22854
22854
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22855
22855
|
definitionMap.set('type', meta.internalType);
|
|
22856
22856
|
definitionMap.set('providers', meta.providers);
|
|
@@ -22887,7 +22887,7 @@ function compileDeclareNgModuleFromMetadata(meta) {
|
|
|
22887
22887
|
function createNgModuleDefinitionMap(meta) {
|
|
22888
22888
|
const definitionMap = new DefinitionMap();
|
|
22889
22889
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
|
|
22890
|
-
definitionMap.set('version', literal('15.1.0-next.
|
|
22890
|
+
definitionMap.set('version', literal('15.1.0-next.3'));
|
|
22891
22891
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22892
22892
|
definitionMap.set('type', meta.internalType);
|
|
22893
22893
|
// We only generate the keys in the metadata if the arrays contain values.
|
|
@@ -22945,7 +22945,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
22945
22945
|
function createPipeDefinitionMap(meta) {
|
|
22946
22946
|
const definitionMap = new DefinitionMap();
|
|
22947
22947
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
22948
|
-
definitionMap.set('version', literal('15.1.0-next.
|
|
22948
|
+
definitionMap.set('version', literal('15.1.0-next.3'));
|
|
22949
22949
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22950
22950
|
// e.g. `type: MyPipe`
|
|
22951
22951
|
definitionMap.set('type', meta.internalType);
|