@angular/compiler 20.3.3 → 20.3.4
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 +11 -11
- package/fesm2022/compiler.mjs.map +1 -1
- package/index.d.ts +2 -2
- package/package.json +1 -1
package/fesm2022/compiler.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v20.3.
|
|
3
|
-
* (c) 2010-2025 Google LLC. https://angular.
|
|
2
|
+
* @license Angular v20.3.4
|
|
3
|
+
* (c) 2010-2025 Google LLC. https://angular.dev/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
6
6
|
|
|
@@ -34253,7 +34253,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
|
|
|
34253
34253
|
function compileDeclareClassMetadata(metadata) {
|
|
34254
34254
|
const definitionMap = new DefinitionMap();
|
|
34255
34255
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
|
|
34256
|
-
definitionMap.set('version', literal('20.3.
|
|
34256
|
+
definitionMap.set('version', literal('20.3.4'));
|
|
34257
34257
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
34258
34258
|
definitionMap.set('type', metadata.type);
|
|
34259
34259
|
definitionMap.set('decorators', metadata.decorators);
|
|
@@ -34271,7 +34271,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
|
|
|
34271
34271
|
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
|
|
34272
34272
|
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
|
|
34273
34273
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
|
|
34274
|
-
definitionMap.set('version', literal('20.3.
|
|
34274
|
+
definitionMap.set('version', literal('20.3.4'));
|
|
34275
34275
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
34276
34276
|
definitionMap.set('type', metadata.type);
|
|
34277
34277
|
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
|
|
@@ -34366,7 +34366,7 @@ function createDirectiveDefinitionMap(meta) {
|
|
|
34366
34366
|
const definitionMap = new DefinitionMap();
|
|
34367
34367
|
const minVersion = getMinimumVersionForPartialOutput(meta);
|
|
34368
34368
|
definitionMap.set('minVersion', literal(minVersion));
|
|
34369
|
-
definitionMap.set('version', literal('20.3.
|
|
34369
|
+
definitionMap.set('version', literal('20.3.4'));
|
|
34370
34370
|
// e.g. `type: MyDirective`
|
|
34371
34371
|
definitionMap.set('type', meta.type.value);
|
|
34372
34372
|
if (meta.isStandalone !== undefined) {
|
|
@@ -34782,7 +34782,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
|
|
|
34782
34782
|
function compileDeclareFactoryFunction(meta) {
|
|
34783
34783
|
const definitionMap = new DefinitionMap();
|
|
34784
34784
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
|
|
34785
|
-
definitionMap.set('version', literal('20.3.
|
|
34785
|
+
definitionMap.set('version', literal('20.3.4'));
|
|
34786
34786
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
34787
34787
|
definitionMap.set('type', meta.type.value);
|
|
34788
34788
|
definitionMap.set('deps', compileDependencies(meta.deps));
|
|
@@ -34817,7 +34817,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
34817
34817
|
function createInjectableDefinitionMap(meta) {
|
|
34818
34818
|
const definitionMap = new DefinitionMap();
|
|
34819
34819
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
|
|
34820
|
-
definitionMap.set('version', literal('20.3.
|
|
34820
|
+
definitionMap.set('version', literal('20.3.4'));
|
|
34821
34821
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
34822
34822
|
definitionMap.set('type', meta.type.value);
|
|
34823
34823
|
// Only generate providedIn property if it has a non-null value
|
|
@@ -34868,7 +34868,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
34868
34868
|
function createInjectorDefinitionMap(meta) {
|
|
34869
34869
|
const definitionMap = new DefinitionMap();
|
|
34870
34870
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
|
|
34871
|
-
definitionMap.set('version', literal('20.3.
|
|
34871
|
+
definitionMap.set('version', literal('20.3.4'));
|
|
34872
34872
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
34873
34873
|
definitionMap.set('type', meta.type.value);
|
|
34874
34874
|
definitionMap.set('providers', meta.providers);
|
|
@@ -34901,7 +34901,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
34901
34901
|
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
|
|
34902
34902
|
}
|
|
34903
34903
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
|
|
34904
|
-
definitionMap.set('version', literal('20.3.
|
|
34904
|
+
definitionMap.set('version', literal('20.3.4'));
|
|
34905
34905
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
34906
34906
|
definitionMap.set('type', meta.type.value);
|
|
34907
34907
|
// We only generate the keys in the metadata if the arrays contain values.
|
|
@@ -34952,7 +34952,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
34952
34952
|
function createPipeDefinitionMap(meta) {
|
|
34953
34953
|
const definitionMap = new DefinitionMap();
|
|
34954
34954
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
34955
|
-
definitionMap.set('version', literal('20.3.
|
|
34955
|
+
definitionMap.set('version', literal('20.3.4'));
|
|
34956
34956
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
34957
34957
|
// e.g. `type: MyPipe`
|
|
34958
34958
|
definitionMap.set('type', meta.type.value);
|
|
@@ -35108,7 +35108,7 @@ function compileHmrUpdateCallback(definitions, constantStatements, meta) {
|
|
|
35108
35108
|
* @description
|
|
35109
35109
|
* Entry point for all public APIs of the compiler package.
|
|
35110
35110
|
*/
|
|
35111
|
-
const VERSION = new Version('20.3.
|
|
35111
|
+
const VERSION = new Version('20.3.4');
|
|
35112
35112
|
|
|
35113
35113
|
//////////////////////////////////////
|
|
35114
35114
|
// THIS FILE HAS GLOBAL SIDE EFFECT //
|