@angular/compiler 15.0.0-next.2 → 15.0.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.0.0-next.
|
|
2
|
+
* @license Angular v15.0.0-next.3
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -20008,7 +20008,7 @@ function publishFacade(global) {
|
|
|
20008
20008
|
* Use of this source code is governed by an MIT-style license that can be
|
|
20009
20009
|
* found in the LICENSE file at https://angular.io/license
|
|
20010
20010
|
*/
|
|
20011
|
-
const VERSION = new Version('15.0.0-next.
|
|
20011
|
+
const VERSION = new Version('15.0.0-next.3');
|
|
20012
20012
|
|
|
20013
20013
|
/**
|
|
20014
20014
|
* @license
|
|
@@ -22041,7 +22041,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$6 = '12.0.0';
|
|
|
22041
22041
|
function compileDeclareClassMetadata(metadata) {
|
|
22042
22042
|
const definitionMap = new DefinitionMap();
|
|
22043
22043
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$6));
|
|
22044
|
-
definitionMap.set('version', literal('15.0.0-next.
|
|
22044
|
+
definitionMap.set('version', literal('15.0.0-next.3'));
|
|
22045
22045
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22046
22046
|
definitionMap.set('type', metadata.type);
|
|
22047
22047
|
definitionMap.set('decorators', metadata.decorators);
|
|
@@ -22158,7 +22158,7 @@ function compileDeclareDirectiveFromMetadata(meta) {
|
|
|
22158
22158
|
function createDirectiveDefinitionMap(meta) {
|
|
22159
22159
|
const definitionMap = new DefinitionMap();
|
|
22160
22160
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
|
|
22161
|
-
definitionMap.set('version', literal('15.0.0-next.
|
|
22161
|
+
definitionMap.set('version', literal('15.0.0-next.3'));
|
|
22162
22162
|
// e.g. `type: MyDirective`
|
|
22163
22163
|
definitionMap.set('type', meta.internalType);
|
|
22164
22164
|
if (meta.isStandalone) {
|
|
@@ -22397,7 +22397,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
|
|
|
22397
22397
|
function compileDeclareFactoryFunction(meta) {
|
|
22398
22398
|
const definitionMap = new DefinitionMap();
|
|
22399
22399
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
|
|
22400
|
-
definitionMap.set('version', literal('15.0.0-next.
|
|
22400
|
+
definitionMap.set('version', literal('15.0.0-next.3'));
|
|
22401
22401
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22402
22402
|
definitionMap.set('type', meta.internalType);
|
|
22403
22403
|
definitionMap.set('deps', compileDependencies(meta.deps));
|
|
@@ -22439,7 +22439,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
22439
22439
|
function createInjectableDefinitionMap(meta) {
|
|
22440
22440
|
const definitionMap = new DefinitionMap();
|
|
22441
22441
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
|
|
22442
|
-
definitionMap.set('version', literal('15.0.0-next.
|
|
22442
|
+
definitionMap.set('version', literal('15.0.0-next.3'));
|
|
22443
22443
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22444
22444
|
definitionMap.set('type', meta.internalType);
|
|
22445
22445
|
// Only generate providedIn property if it has a non-null value
|
|
@@ -22497,7 +22497,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
22497
22497
|
function createInjectorDefinitionMap(meta) {
|
|
22498
22498
|
const definitionMap = new DefinitionMap();
|
|
22499
22499
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
|
|
22500
|
-
definitionMap.set('version', literal('15.0.0-next.
|
|
22500
|
+
definitionMap.set('version', literal('15.0.0-next.3'));
|
|
22501
22501
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22502
22502
|
definitionMap.set('type', meta.internalType);
|
|
22503
22503
|
definitionMap.set('providers', meta.providers);
|
|
@@ -22534,7 +22534,7 @@ function compileDeclareNgModuleFromMetadata(meta) {
|
|
|
22534
22534
|
function createNgModuleDefinitionMap(meta) {
|
|
22535
22535
|
const definitionMap = new DefinitionMap();
|
|
22536
22536
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
|
|
22537
|
-
definitionMap.set('version', literal('15.0.0-next.
|
|
22537
|
+
definitionMap.set('version', literal('15.0.0-next.3'));
|
|
22538
22538
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22539
22539
|
definitionMap.set('type', meta.internalType);
|
|
22540
22540
|
// We only generate the keys in the metadata if the arrays contain values.
|
|
@@ -22592,7 +22592,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
22592
22592
|
function createPipeDefinitionMap(meta) {
|
|
22593
22593
|
const definitionMap = new DefinitionMap();
|
|
22594
22594
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
22595
|
-
definitionMap.set('version', literal('15.0.0-next.
|
|
22595
|
+
definitionMap.set('version', literal('15.0.0-next.3'));
|
|
22596
22596
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22597
22597
|
// e.g. `type: MyPipe`
|
|
22598
22598
|
definitionMap.set('type', meta.internalType);
|