@angular/compiler 21.0.7 → 21.0.8

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.7
2
+ * @license Angular v21.0.8
3
3
  * (c) 2010-2025 Google LLC. https://angular.dev/
4
4
  * License: MIT
5
5
  */
@@ -28049,7 +28049,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
28049
28049
  function compileDeclareClassMetadata(metadata) {
28050
28050
  const definitionMap = new DefinitionMap();
28051
28051
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
28052
- definitionMap.set('version', literal('21.0.7'));
28052
+ definitionMap.set('version', literal('21.0.8'));
28053
28053
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28054
28054
  definitionMap.set('type', metadata.type);
28055
28055
  definitionMap.set('decorators', metadata.decorators);
@@ -28067,7 +28067,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
28067
28067
  callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
28068
28068
  callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
28069
28069
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
28070
- definitionMap.set('version', literal('21.0.7'));
28070
+ definitionMap.set('version', literal('21.0.8'));
28071
28071
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28072
28072
  definitionMap.set('type', metadata.type);
28073
28073
  definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -28140,7 +28140,7 @@ function createDirectiveDefinitionMap(meta) {
28140
28140
  const definitionMap = new DefinitionMap();
28141
28141
  const minVersion = getMinimumVersionForPartialOutput(meta);
28142
28142
  definitionMap.set('minVersion', literal(minVersion));
28143
- definitionMap.set('version', literal('21.0.7'));
28143
+ definitionMap.set('version', literal('21.0.8'));
28144
28144
  definitionMap.set('type', meta.type.value);
28145
28145
  if (meta.isStandalone !== undefined) {
28146
28146
  definitionMap.set('isStandalone', literal(meta.isStandalone));
@@ -28472,7 +28472,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
28472
28472
  function compileDeclareFactoryFunction(meta) {
28473
28473
  const definitionMap = new DefinitionMap();
28474
28474
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
28475
- definitionMap.set('version', literal('21.0.7'));
28475
+ definitionMap.set('version', literal('21.0.8'));
28476
28476
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28477
28477
  definitionMap.set('type', meta.type.value);
28478
28478
  definitionMap.set('deps', compileDependencies(meta.deps));
@@ -28498,7 +28498,7 @@ function compileDeclareInjectableFromMetadata(meta) {
28498
28498
  function createInjectableDefinitionMap(meta) {
28499
28499
  const definitionMap = new DefinitionMap();
28500
28500
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
28501
- definitionMap.set('version', literal('21.0.7'));
28501
+ definitionMap.set('version', literal('21.0.8'));
28502
28502
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28503
28503
  definitionMap.set('type', meta.type.value);
28504
28504
  if (meta.providedIn !== undefined) {
@@ -28539,7 +28539,7 @@ function compileDeclareInjectorFromMetadata(meta) {
28539
28539
  function createInjectorDefinitionMap(meta) {
28540
28540
  const definitionMap = new DefinitionMap();
28541
28541
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
28542
- definitionMap.set('version', literal('21.0.7'));
28542
+ definitionMap.set('version', literal('21.0.8'));
28543
28543
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28544
28544
  definitionMap.set('type', meta.type.value);
28545
28545
  definitionMap.set('providers', meta.providers);
@@ -28566,7 +28566,7 @@ function createNgModuleDefinitionMap(meta) {
28566
28566
  throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
28567
28567
  }
28568
28568
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
28569
- definitionMap.set('version', literal('21.0.7'));
28569
+ definitionMap.set('version', literal('21.0.8'));
28570
28570
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28571
28571
  definitionMap.set('type', meta.type.value);
28572
28572
  if (meta.bootstrap.length > 0) {
@@ -28604,7 +28604,7 @@ function compileDeclarePipeFromMetadata(meta) {
28604
28604
  function createPipeDefinitionMap(meta) {
28605
28605
  const definitionMap = new DefinitionMap();
28606
28606
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
28607
- definitionMap.set('version', literal('21.0.7'));
28607
+ definitionMap.set('version', literal('21.0.8'));
28608
28608
  definitionMap.set('ngImport', importExpr(Identifiers.core));
28609
28609
  definitionMap.set('type', meta.type.value);
28610
28610
  if (meta.isStandalone !== undefined) {
@@ -28678,7 +28678,7 @@ function compileHmrUpdateCallback(definitions, constantStatements, meta) {
28678
28678
  return new DeclareFunctionStmt(`${meta.className}_UpdateMetadata`, params, body, null, StmtModifier.Final);
28679
28679
  }
28680
28680
 
28681
- const VERSION = new Version('21.0.7');
28681
+ const VERSION = new Version('21.0.8');
28682
28682
 
28683
28683
  publishFacade(_global);
28684
28684