@angular/compiler 19.1.0-next.2 → 19.1.0-next.3

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.
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v19.1.0-next.2
2
+ * @license Angular v19.1.0-next.3
3
3
  * (c) 2010-2024 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -2974,6 +2974,11 @@ export declare interface R3ComponentMetadata<DeclarationT extends R3TemplateDepe
2974
2974
  * expression as appears in the decorator.
2975
2975
  */
2976
2976
  changeDetection: ChangeDetectionStrategy | outputAst.Expression | null;
2977
+ /**
2978
+ * Relative path to the component's template from the root of the project.
2979
+ * Used to generate debugging information.
2980
+ */
2981
+ relativeTemplatePath: string | null;
2977
2982
  /**
2978
2983
  * The imports expression as appears on the component decorate for standalone component. This
2979
2984
  * field is currently needed only for local compilation, and so in other compilation modes it may
@@ -4012,6 +4017,7 @@ export declare class R3Identifiers {
4012
4017
  static declareLet: outputAst.ExternalReference;
4013
4018
  static storeLet: outputAst.ExternalReference;
4014
4019
  static readContextLet: outputAst.ExternalReference;
4020
+ static attachSourceLocations: outputAst.ExternalReference;
4015
4021
  static NgOnChangesFeature: outputAst.ExternalReference;
4016
4022
  static InheritDefinitionFeature: outputAst.ExternalReference;
4017
4023
  static CopyDefinitionFeature: outputAst.ExternalReference;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/compiler",
3
- "version": "19.1.0-next.2",
3
+ "version": "19.1.0-next.3",
4
4
  "description": "Angular - the compiler library",
5
5
  "author": "angular",
6
6
  "license": "MIT",
@@ -11,7 +11,7 @@
11
11
  "tslib": "^2.3.0"
12
12
  },
13
13
  "peerDependencies": {
14
- "@angular/core": "19.1.0-next.2"
14
+ "@angular/core": "19.1.0-next.3"
15
15
  },
16
16
  "peerDependenciesMeta": {
17
17
  "@angular/core": {