@angular/compiler 19.2.0-next.0 → 19.2.0-next.1

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 v19.2.0-next.0
2
+ * @license Angular v19.2.0-next.1
3
3
  * (c) 2010-2024 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -31008,7 +31008,7 @@ function publishFacade(global) {
31008
31008
  * @description
31009
31009
  * Entry point for all public APIs of the compiler package.
31010
31010
  */
31011
- const VERSION = new Version('19.2.0-next.0');
31011
+ const VERSION = new Version('19.2.0-next.1');
31012
31012
 
31013
31013
  class CompilerConfig {
31014
31014
  defaultEncapsulation;
@@ -32864,7 +32864,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
32864
32864
  function compileDeclareClassMetadata(metadata) {
32865
32865
  const definitionMap = new DefinitionMap();
32866
32866
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
32867
- definitionMap.set('version', literal('19.2.0-next.0'));
32867
+ definitionMap.set('version', literal('19.2.0-next.1'));
32868
32868
  definitionMap.set('ngImport', importExpr(Identifiers.core));
32869
32869
  definitionMap.set('type', metadata.type);
32870
32870
  definitionMap.set('decorators', metadata.decorators);
@@ -32882,7 +32882,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
32882
32882
  callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
32883
32883
  callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
32884
32884
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
32885
- definitionMap.set('version', literal('19.2.0-next.0'));
32885
+ definitionMap.set('version', literal('19.2.0-next.1'));
32886
32886
  definitionMap.set('ngImport', importExpr(Identifiers.core));
32887
32887
  definitionMap.set('type', metadata.type);
32888
32888
  definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -32977,7 +32977,7 @@ function createDirectiveDefinitionMap(meta) {
32977
32977
  const definitionMap = new DefinitionMap();
32978
32978
  const minVersion = getMinimumVersionForPartialOutput(meta);
32979
32979
  definitionMap.set('minVersion', literal(minVersion));
32980
- definitionMap.set('version', literal('19.2.0-next.0'));
32980
+ definitionMap.set('version', literal('19.2.0-next.1'));
32981
32981
  // e.g. `type: MyDirective`
32982
32982
  definitionMap.set('type', meta.type.value);
32983
32983
  if (meta.isStandalone !== undefined) {
@@ -33396,7 +33396,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
33396
33396
  function compileDeclareFactoryFunction(meta) {
33397
33397
  const definitionMap = new DefinitionMap();
33398
33398
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
33399
- definitionMap.set('version', literal('19.2.0-next.0'));
33399
+ definitionMap.set('version', literal('19.2.0-next.1'));
33400
33400
  definitionMap.set('ngImport', importExpr(Identifiers.core));
33401
33401
  definitionMap.set('type', meta.type.value);
33402
33402
  definitionMap.set('deps', compileDependencies(meta.deps));
@@ -33431,7 +33431,7 @@ function compileDeclareInjectableFromMetadata(meta) {
33431
33431
  function createInjectableDefinitionMap(meta) {
33432
33432
  const definitionMap = new DefinitionMap();
33433
33433
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
33434
- definitionMap.set('version', literal('19.2.0-next.0'));
33434
+ definitionMap.set('version', literal('19.2.0-next.1'));
33435
33435
  definitionMap.set('ngImport', importExpr(Identifiers.core));
33436
33436
  definitionMap.set('type', meta.type.value);
33437
33437
  // Only generate providedIn property if it has a non-null value
@@ -33482,7 +33482,7 @@ function compileDeclareInjectorFromMetadata(meta) {
33482
33482
  function createInjectorDefinitionMap(meta) {
33483
33483
  const definitionMap = new DefinitionMap();
33484
33484
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
33485
- definitionMap.set('version', literal('19.2.0-next.0'));
33485
+ definitionMap.set('version', literal('19.2.0-next.1'));
33486
33486
  definitionMap.set('ngImport', importExpr(Identifiers.core));
33487
33487
  definitionMap.set('type', meta.type.value);
33488
33488
  definitionMap.set('providers', meta.providers);
@@ -33515,7 +33515,7 @@ function createNgModuleDefinitionMap(meta) {
33515
33515
  throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
33516
33516
  }
33517
33517
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
33518
- definitionMap.set('version', literal('19.2.0-next.0'));
33518
+ definitionMap.set('version', literal('19.2.0-next.1'));
33519
33519
  definitionMap.set('ngImport', importExpr(Identifiers.core));
33520
33520
  definitionMap.set('type', meta.type.value);
33521
33521
  // We only generate the keys in the metadata if the arrays contain values.
@@ -33566,7 +33566,7 @@ function compileDeclarePipeFromMetadata(meta) {
33566
33566
  function createPipeDefinitionMap(meta) {
33567
33567
  const definitionMap = new DefinitionMap();
33568
33568
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
33569
- definitionMap.set('version', literal('19.2.0-next.0'));
33569
+ definitionMap.set('version', literal('19.2.0-next.1'));
33570
33570
  definitionMap.set('ngImport', importExpr(Identifiers.core));
33571
33571
  // e.g. `type: MyPipe`
33572
33572
  definitionMap.set('type', meta.type.value);