@angular/upgrade 17.0.0-next.3 → 17.0.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.
- package/esm2022/src/common/src/angular1.mjs +1 -1
- package/esm2022/src/common/src/version.mjs +1 -1
- package/esm2022/src/dynamic/src/upgrade_ng1_adapter.mjs +3 -3
- package/esm2022/static/src/upgrade_component.mjs +3 -3
- package/esm2022/static/src/upgrade_module.mjs +4 -4
- package/esm2022/static/testing/src/create_angular_testing_module.mjs +4 -4
- package/fesm2022/static/testing.mjs +5 -5
- package/fesm2022/static.mjs +9 -9
- package/fesm2022/static.mjs.map +1 -1
- package/fesm2022/upgrade.mjs +5 -5
- package/fesm2022/upgrade.mjs.map +1 -1
- package/index.d.ts +2 -1
- package/package.json +5 -5
- package/static/index.d.ts +2 -1
- package/static/testing/index.d.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v17.0.0-next.
|
|
2
|
+
* @license Angular v17.0.0-next.4
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -35,6 +35,7 @@ declare interface IRootScopeService {
|
|
|
35
35
|
$$childTail: IScope;
|
|
36
36
|
$$childHead: IScope;
|
|
37
37
|
$$nextSibling: IScope;
|
|
38
|
+
$$phase: any;
|
|
38
39
|
[key: string]: any;
|
|
39
40
|
}
|
|
40
41
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/upgrade",
|
|
3
|
-
"version": "17.0.0-next.
|
|
3
|
+
"version": "17.0.0-next.4",
|
|
4
4
|
"description": "Angular - the library for easing update from v1 to v2",
|
|
5
5
|
"author": "angular",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"tslib": "^2.3.0"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
14
|
-
"@angular/core": "17.0.0-next.
|
|
15
|
-
"@angular/compiler": "17.0.0-next.
|
|
16
|
-
"@angular/platform-browser": "17.0.0-next.
|
|
17
|
-
"@angular/platform-browser-dynamic": "17.0.0-next.
|
|
14
|
+
"@angular/core": "17.0.0-next.4",
|
|
15
|
+
"@angular/compiler": "17.0.0-next.4",
|
|
16
|
+
"@angular/platform-browser": "17.0.0-next.4",
|
|
17
|
+
"@angular/platform-browser-dynamic": "17.0.0-next.4"
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
package/static/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v17.0.0-next.
|
|
2
|
+
* @license Angular v17.0.0-next.4
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -736,6 +736,7 @@ declare interface IRootScopeService {
|
|
|
736
736
|
$$childTail: IScope;
|
|
737
737
|
$$childHead: IScope;
|
|
738
738
|
$$nextSibling: IScope;
|
|
739
|
+
$$phase: any;
|
|
739
740
|
[key: string]: any;
|
|
740
741
|
}
|
|
741
742
|
|