@angular/compiler 21.1.4 → 21.1.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.1.4
2
+ * @license Angular v21.1.5
3
3
  * (c) 2010-2026 Google LLC. https://angular.dev/
4
4
  * License: MIT
5
5
  */
@@ -28202,7 +28202,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
28202
28202
  function compileDeclareClassMetadata(metadata) {
28203
28203
  const definitionMap = new DefinitionMap();
28204
28204
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
28205
- definitionMap.set('version', literal('21.1.4'));
28205
+ definitionMap.set('version', literal('21.1.5'));
28206
28206
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28207
28207
  definitionMap.set('type', metadata.type);
28208
28208
  definitionMap.set('decorators', metadata.decorators);
@@ -28220,7 +28220,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
28220
28220
  callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
28221
28221
  callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
28222
28222
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
28223
- definitionMap.set('version', literal('21.1.4'));
28223
+ definitionMap.set('version', literal('21.1.5'));
28224
28224
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28225
28225
  definitionMap.set('type', metadata.type);
28226
28226
  definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -28293,7 +28293,7 @@ function createDirectiveDefinitionMap(meta) {
28293
28293
  const definitionMap = new DefinitionMap();
28294
28294
  const minVersion = getMinimumVersionForPartialOutput(meta);
28295
28295
  definitionMap.set('minVersion', literal(minVersion));
28296
- definitionMap.set('version', literal('21.1.4'));
28296
+ definitionMap.set('version', literal('21.1.5'));
28297
28297
  definitionMap.set('type', meta.type.value);
28298
28298
  if (meta.isStandalone !== undefined) {
28299
28299
  definitionMap.set('isStandalone', literal(meta.isStandalone));
@@ -28628,7 +28628,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
28628
28628
  function compileDeclareFactoryFunction(meta) {
28629
28629
  const definitionMap = new DefinitionMap();
28630
28630
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
28631
- definitionMap.set('version', literal('21.1.4'));
28631
+ definitionMap.set('version', literal('21.1.5'));
28632
28632
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28633
28633
  definitionMap.set('type', meta.type.value);
28634
28634
  definitionMap.set('deps', compileDependencies(meta.deps));
@@ -28654,7 +28654,7 @@ function compileDeclareInjectableFromMetadata(meta) {
28654
28654
  function createInjectableDefinitionMap(meta) {
28655
28655
  const definitionMap = new DefinitionMap();
28656
28656
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
28657
- definitionMap.set('version', literal('21.1.4'));
28657
+ definitionMap.set('version', literal('21.1.5'));
28658
28658
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28659
28659
  definitionMap.set('type', meta.type.value);
28660
28660
  if (meta.providedIn !== undefined) {
@@ -28695,7 +28695,7 @@ function compileDeclareInjectorFromMetadata(meta) {
28695
28695
  function createInjectorDefinitionMap(meta) {
28696
28696
  const definitionMap = new DefinitionMap();
28697
28697
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
28698
- definitionMap.set('version', literal('21.1.4'));
28698
+ definitionMap.set('version', literal('21.1.5'));
28699
28699
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28700
28700
  definitionMap.set('type', meta.type.value);
28701
28701
  definitionMap.set('providers', meta.providers);
@@ -28722,7 +28722,7 @@ function createNgModuleDefinitionMap(meta) {
28722
28722
  throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
28723
28723
  }
28724
28724
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
28725
- definitionMap.set('version', literal('21.1.4'));
28725
+ definitionMap.set('version', literal('21.1.5'));
28726
28726
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28727
28727
  definitionMap.set('type', meta.type.value);
28728
28728
  if (meta.bootstrap.length > 0) {
@@ -28760,7 +28760,7 @@ function compileDeclarePipeFromMetadata(meta) {
28760
28760
  function createPipeDefinitionMap(meta) {
28761
28761
  const definitionMap = new DefinitionMap();
28762
28762
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
28763
- definitionMap.set('version', literal('21.1.4'));
28763
+ definitionMap.set('version', literal('21.1.5'));
28764
28764
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28765
28765
  definitionMap.set('type', meta.type.value);
28766
28766
  if (meta.isStandalone !== undefined) {
@@ -28834,7 +28834,7 @@ function compileHmrUpdateCallback(definitions, constantStatements, meta) {
28834
28834
  return new DeclareFunctionStmt(`${meta.className}_UpdateMetadata`, params, body, null, StmtModifier.Final);
28835
28835
  }
28836
28836
 
28837
- const VERSION = new Version('21.1.4');
28837
+ const VERSION = new Version('21.1.5');
28838
28838
 
28839
28839
  publishFacade(_global);
28840
28840