@angular/compiler 19.1.0-next.3 → 19.1.0-next.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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v19.1.0-next.3
2
+ * @license Angular v19.1.0-next.4
3
3
  * (c) 2010-2024 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -30978,7 +30978,7 @@ function publishFacade(global) {
30978
30978
  * @description
30979
30979
  * Entry point for all public APIs of the compiler package.
30980
30980
  */
30981
- const VERSION = new Version('19.1.0-next.3');
30981
+ const VERSION = new Version('19.1.0-next.4');
30982
30982
 
30983
30983
  class CompilerConfig {
30984
30984
  defaultEncapsulation;
@@ -32830,7 +32830,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
32830
32830
  function compileDeclareClassMetadata(metadata) {
32831
32831
  const definitionMap = new DefinitionMap();
32832
32832
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
32833
- definitionMap.set('version', literal('19.1.0-next.3'));
32833
+ definitionMap.set('version', literal('19.1.0-next.4'));
32834
32834
  definitionMap.set('ngImport', importExpr(Identifiers.core));
32835
32835
  definitionMap.set('type', metadata.type);
32836
32836
  definitionMap.set('decorators', metadata.decorators);
@@ -32848,7 +32848,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
32848
32848
  callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
32849
32849
  callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
32850
32850
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
32851
- definitionMap.set('version', literal('19.1.0-next.3'));
32851
+ definitionMap.set('version', literal('19.1.0-next.4'));
32852
32852
  definitionMap.set('ngImport', importExpr(Identifiers.core));
32853
32853
  definitionMap.set('type', metadata.type);
32854
32854
  definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -32943,7 +32943,7 @@ function createDirectiveDefinitionMap(meta) {
32943
32943
  const definitionMap = new DefinitionMap();
32944
32944
  const minVersion = getMinimumVersionForPartialOutput(meta);
32945
32945
  definitionMap.set('minVersion', literal(minVersion));
32946
- definitionMap.set('version', literal('19.1.0-next.3'));
32946
+ definitionMap.set('version', literal('19.1.0-next.4'));
32947
32947
  // e.g. `type: MyDirective`
32948
32948
  definitionMap.set('type', meta.type.value);
32949
32949
  if (meta.isStandalone !== undefined) {
@@ -33362,7 +33362,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
33362
33362
  function compileDeclareFactoryFunction(meta) {
33363
33363
  const definitionMap = new DefinitionMap();
33364
33364
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
33365
- definitionMap.set('version', literal('19.1.0-next.3'));
33365
+ definitionMap.set('version', literal('19.1.0-next.4'));
33366
33366
  definitionMap.set('ngImport', importExpr(Identifiers.core));
33367
33367
  definitionMap.set('type', meta.type.value);
33368
33368
  definitionMap.set('deps', compileDependencies(meta.deps));
@@ -33397,7 +33397,7 @@ function compileDeclareInjectableFromMetadata(meta) {
33397
33397
  function createInjectableDefinitionMap(meta) {
33398
33398
  const definitionMap = new DefinitionMap();
33399
33399
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
33400
- definitionMap.set('version', literal('19.1.0-next.3'));
33400
+ definitionMap.set('version', literal('19.1.0-next.4'));
33401
33401
  definitionMap.set('ngImport', importExpr(Identifiers.core));
33402
33402
  definitionMap.set('type', meta.type.value);
33403
33403
  // Only generate providedIn property if it has a non-null value
@@ -33448,7 +33448,7 @@ function compileDeclareInjectorFromMetadata(meta) {
33448
33448
  function createInjectorDefinitionMap(meta) {
33449
33449
  const definitionMap = new DefinitionMap();
33450
33450
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
33451
- definitionMap.set('version', literal('19.1.0-next.3'));
33451
+ definitionMap.set('version', literal('19.1.0-next.4'));
33452
33452
  definitionMap.set('ngImport', importExpr(Identifiers.core));
33453
33453
  definitionMap.set('type', meta.type.value);
33454
33454
  definitionMap.set('providers', meta.providers);
@@ -33481,7 +33481,7 @@ function createNgModuleDefinitionMap(meta) {
33481
33481
  throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
33482
33482
  }
33483
33483
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
33484
- definitionMap.set('version', literal('19.1.0-next.3'));
33484
+ definitionMap.set('version', literal('19.1.0-next.4'));
33485
33485
  definitionMap.set('ngImport', importExpr(Identifiers.core));
33486
33486
  definitionMap.set('type', meta.type.value);
33487
33487
  // We only generate the keys in the metadata if the arrays contain values.
@@ -33532,7 +33532,7 @@ function compileDeclarePipeFromMetadata(meta) {
33532
33532
  function createPipeDefinitionMap(meta) {
33533
33533
  const definitionMap = new DefinitionMap();
33534
33534
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
33535
- definitionMap.set('version', literal('19.1.0-next.3'));
33535
+ definitionMap.set('version', literal('19.1.0-next.4'));
33536
33536
  definitionMap.set('ngImport', importExpr(Identifiers.core));
33537
33537
  // e.g. `type: MyPipe`
33538
33538
  definitionMap.set('type', meta.type.value);