@angular/compiler 21.0.4 → 21.0.5

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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v21.0.4
2
+ * @license Angular v21.0.5
3
3
  * (c) 2010-2025 Google LLC. https://angular.dev/
4
4
  * License: MIT
5
5
  */
@@ -28046,7 +28046,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
28046
28046
  function compileDeclareClassMetadata(metadata) {
28047
28047
  const definitionMap = new DefinitionMap();
28048
28048
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
28049
- definitionMap.set('version', literal('21.0.4'));
28049
+ definitionMap.set('version', literal('21.0.5'));
28050
28050
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28051
28051
  definitionMap.set('type', metadata.type);
28052
28052
  definitionMap.set('decorators', metadata.decorators);
@@ -28064,7 +28064,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
28064
28064
  callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
28065
28065
  callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
28066
28066
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
28067
- definitionMap.set('version', literal('21.0.4'));
28067
+ definitionMap.set('version', literal('21.0.5'));
28068
28068
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28069
28069
  definitionMap.set('type', metadata.type);
28070
28070
  definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -28137,7 +28137,7 @@ function createDirectiveDefinitionMap(meta) {
28137
28137
  const definitionMap = new DefinitionMap();
28138
28138
  const minVersion = getMinimumVersionForPartialOutput(meta);
28139
28139
  definitionMap.set('minVersion', literal(minVersion));
28140
- definitionMap.set('version', literal('21.0.4'));
28140
+ definitionMap.set('version', literal('21.0.5'));
28141
28141
  definitionMap.set('type', meta.type.value);
28142
28142
  if (meta.isStandalone !== undefined) {
28143
28143
  definitionMap.set('isStandalone', literal(meta.isStandalone));
@@ -28469,7 +28469,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
28469
28469
  function compileDeclareFactoryFunction(meta) {
28470
28470
  const definitionMap = new DefinitionMap();
28471
28471
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
28472
- definitionMap.set('version', literal('21.0.4'));
28472
+ definitionMap.set('version', literal('21.0.5'));
28473
28473
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28474
28474
  definitionMap.set('type', meta.type.value);
28475
28475
  definitionMap.set('deps', compileDependencies(meta.deps));
@@ -28495,7 +28495,7 @@ function compileDeclareInjectableFromMetadata(meta) {
28495
28495
  function createInjectableDefinitionMap(meta) {
28496
28496
  const definitionMap = new DefinitionMap();
28497
28497
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
28498
- definitionMap.set('version', literal('21.0.4'));
28498
+ definitionMap.set('version', literal('21.0.5'));
28499
28499
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28500
28500
  definitionMap.set('type', meta.type.value);
28501
28501
  if (meta.providedIn !== undefined) {
@@ -28536,7 +28536,7 @@ function compileDeclareInjectorFromMetadata(meta) {
28536
28536
  function createInjectorDefinitionMap(meta) {
28537
28537
  const definitionMap = new DefinitionMap();
28538
28538
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
28539
- definitionMap.set('version', literal('21.0.4'));
28539
+ definitionMap.set('version', literal('21.0.5'));
28540
28540
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28541
28541
  definitionMap.set('type', meta.type.value);
28542
28542
  definitionMap.set('providers', meta.providers);
@@ -28563,7 +28563,7 @@ function createNgModuleDefinitionMap(meta) {
28563
28563
  throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
28564
28564
  }
28565
28565
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
28566
- definitionMap.set('version', literal('21.0.4'));
28566
+ definitionMap.set('version', literal('21.0.5'));
28567
28567
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28568
28568
  definitionMap.set('type', meta.type.value);
28569
28569
  if (meta.bootstrap.length > 0) {
@@ -28601,7 +28601,7 @@ function compileDeclarePipeFromMetadata(meta) {
28601
28601
  function createPipeDefinitionMap(meta) {
28602
28602
  const definitionMap = new DefinitionMap();
28603
28603
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
28604
- definitionMap.set('version', literal('21.0.4'));
28604
+ definitionMap.set('version', literal('21.0.5'));
28605
28605
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28606
28606
  definitionMap.set('type', meta.type.value);
28607
28607
  if (meta.isStandalone !== undefined) {
@@ -28675,7 +28675,7 @@ function compileHmrUpdateCallback(definitions, constantStatements, meta) {
28675
28675
  return new DeclareFunctionStmt(`${meta.className}_UpdateMetadata`, params, body, null, StmtModifier.Final);
28676
28676
  }
28677
28677
 
28678
- const VERSION = new Version('21.0.4');
28678
+ const VERSION = new Version('21.0.5');
28679
28679
 
28680
28680
  publishFacade(_global);
28681
28681