@angular/compiler 20.2.0-next.5 → 20.2.0-next.6
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/fesm2022/compiler.mjs +10 -10
- package/fesm2022/compiler.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +1 -1
package/fesm2022/compiler.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v20.2.0-next.
|
|
2
|
+
* @license Angular v20.2.0-next.6
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -34273,7 +34273,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
|
|
|
34273
34273
|
function compileDeclareClassMetadata(metadata) {
|
|
34274
34274
|
const definitionMap = new DefinitionMap();
|
|
34275
34275
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
|
|
34276
|
-
definitionMap.set('version', literal('20.2.0-next.
|
|
34276
|
+
definitionMap.set('version', literal('20.2.0-next.6'));
|
|
34277
34277
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
34278
34278
|
definitionMap.set('type', metadata.type);
|
|
34279
34279
|
definitionMap.set('decorators', metadata.decorators);
|
|
@@ -34291,7 +34291,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
|
|
|
34291
34291
|
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
|
|
34292
34292
|
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
|
|
34293
34293
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
|
|
34294
|
-
definitionMap.set('version', literal('20.2.0-next.
|
|
34294
|
+
definitionMap.set('version', literal('20.2.0-next.6'));
|
|
34295
34295
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
34296
34296
|
definitionMap.set('type', metadata.type);
|
|
34297
34297
|
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
|
|
@@ -34386,7 +34386,7 @@ function createDirectiveDefinitionMap(meta) {
|
|
|
34386
34386
|
const definitionMap = new DefinitionMap();
|
|
34387
34387
|
const minVersion = getMinimumVersionForPartialOutput(meta);
|
|
34388
34388
|
definitionMap.set('minVersion', literal(minVersion));
|
|
34389
|
-
definitionMap.set('version', literal('20.2.0-next.
|
|
34389
|
+
definitionMap.set('version', literal('20.2.0-next.6'));
|
|
34390
34390
|
// e.g. `type: MyDirective`
|
|
34391
34391
|
definitionMap.set('type', meta.type.value);
|
|
34392
34392
|
if (meta.isStandalone !== undefined) {
|
|
@@ -34802,7 +34802,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
|
|
|
34802
34802
|
function compileDeclareFactoryFunction(meta) {
|
|
34803
34803
|
const definitionMap = new DefinitionMap();
|
|
34804
34804
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
|
|
34805
|
-
definitionMap.set('version', literal('20.2.0-next.
|
|
34805
|
+
definitionMap.set('version', literal('20.2.0-next.6'));
|
|
34806
34806
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
34807
34807
|
definitionMap.set('type', meta.type.value);
|
|
34808
34808
|
definitionMap.set('deps', compileDependencies(meta.deps));
|
|
@@ -34837,7 +34837,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
34837
34837
|
function createInjectableDefinitionMap(meta) {
|
|
34838
34838
|
const definitionMap = new DefinitionMap();
|
|
34839
34839
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
|
|
34840
|
-
definitionMap.set('version', literal('20.2.0-next.
|
|
34840
|
+
definitionMap.set('version', literal('20.2.0-next.6'));
|
|
34841
34841
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
34842
34842
|
definitionMap.set('type', meta.type.value);
|
|
34843
34843
|
// Only generate providedIn property if it has a non-null value
|
|
@@ -34888,7 +34888,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
34888
34888
|
function createInjectorDefinitionMap(meta) {
|
|
34889
34889
|
const definitionMap = new DefinitionMap();
|
|
34890
34890
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
|
|
34891
|
-
definitionMap.set('version', literal('20.2.0-next.
|
|
34891
|
+
definitionMap.set('version', literal('20.2.0-next.6'));
|
|
34892
34892
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
34893
34893
|
definitionMap.set('type', meta.type.value);
|
|
34894
34894
|
definitionMap.set('providers', meta.providers);
|
|
@@ -34921,7 +34921,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
34921
34921
|
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
|
|
34922
34922
|
}
|
|
34923
34923
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
|
|
34924
|
-
definitionMap.set('version', literal('20.2.0-next.
|
|
34924
|
+
definitionMap.set('version', literal('20.2.0-next.6'));
|
|
34925
34925
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
34926
34926
|
definitionMap.set('type', meta.type.value);
|
|
34927
34927
|
// We only generate the keys in the metadata if the arrays contain values.
|
|
@@ -34972,7 +34972,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
34972
34972
|
function createPipeDefinitionMap(meta) {
|
|
34973
34973
|
const definitionMap = new DefinitionMap();
|
|
34974
34974
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
34975
|
-
definitionMap.set('version', literal('20.2.0-next.
|
|
34975
|
+
definitionMap.set('version', literal('20.2.0-next.6'));
|
|
34976
34976
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
34977
34977
|
// e.g. `type: MyPipe`
|
|
34978
34978
|
definitionMap.set('type', meta.type.value);
|
|
@@ -35128,7 +35128,7 @@ function compileHmrUpdateCallback(definitions, constantStatements, meta) {
|
|
|
35128
35128
|
* @description
|
|
35129
35129
|
* Entry point for all public APIs of the compiler package.
|
|
35130
35130
|
*/
|
|
35131
|
-
const VERSION = new Version('20.2.0-next.
|
|
35131
|
+
const VERSION = new Version('20.2.0-next.6');
|
|
35132
35132
|
|
|
35133
35133
|
//////////////////////////////////////
|
|
35134
35134
|
// THIS FILE HAS GLOBAL SIDE EFFECT //
|