@angular/compiler 19.2.0-next.1 → 19.2.0-next.2
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/fesm2022/compiler.mjs +20 -13
- package/fesm2022/compiler.mjs.map +1 -1
- package/index.d.ts +6 -3
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v19.2.0-next.
|
|
2
|
+
* @license Angular v19.2.0-next.2
|
|
3
3
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -3704,9 +3704,12 @@ export declare interface R3HmrMetadata {
|
|
|
3704
3704
|
/**
|
|
3705
3705
|
* HMR update functions cannot contain imports so any locals the generated code depends on
|
|
3706
3706
|
* (e.g. references to imports within the same file or imported symbols) have to be passed in
|
|
3707
|
-
* as function parameters. This array contains the names of
|
|
3707
|
+
* as function parameters. This array contains the names and runtime representation of the locals.
|
|
3708
3708
|
*/
|
|
3709
|
-
localDependencies:
|
|
3709
|
+
localDependencies: {
|
|
3710
|
+
name: string;
|
|
3711
|
+
runtimeRepresentation: outputAst.Expression;
|
|
3712
|
+
}[];
|
|
3710
3713
|
}
|
|
3711
3714
|
|
|
3712
3715
|
/** HMR dependency on a namespace import. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/compiler",
|
|
3
|
-
"version": "19.2.0-next.
|
|
3
|
+
"version": "19.2.0-next.2",
|
|
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.2.0-next.
|
|
14
|
+
"@angular/core": "19.2.0-next.2"
|
|
15
15
|
},
|
|
16
16
|
"peerDependenciesMeta": {
|
|
17
17
|
"@angular/core": {
|