@angular/upgrade 16.0.0-next.2 → 16.0.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/esm2020/src/common/src/version.mjs +1 -1
- package/esm2020/src/dynamic/src/upgrade_ng1_adapter.mjs +6 -7
- package/esm2020/static/src/upgrade_component.mjs +8 -4
- package/esm2020/static/src/upgrade_module.mjs +4 -4
- package/esm2020/static/testing/src/create_angular_testing_module.mjs +4 -4
- package/fesm2015/static/testing.mjs +5 -5
- package/fesm2015/static.mjs +13 -9
- package/fesm2015/static.mjs.map +1 -1
- package/fesm2015/upgrade.mjs +7 -8
- package/fesm2015/upgrade.mjs.map +1 -1
- package/fesm2020/static/testing.mjs +5 -5
- package/fesm2020/static.mjs +13 -9
- package/fesm2020/static.mjs.map +1 -1
- package/fesm2020/upgrade.mjs +7 -8
- package/fesm2020/upgrade.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +5 -5
- package/static/index.d.ts +5 -1
- package/static/testing/index.d.ts +1 -1
package/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/upgrade",
|
|
3
|
-
"version": "16.0.0-next.
|
|
3
|
+
"version": "16.0.0-next.3",
|
|
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": "16.0.0-next.
|
|
15
|
-
"@angular/compiler": "16.0.0-next.
|
|
16
|
-
"@angular/platform-browser": "16.0.0-next.
|
|
17
|
-
"@angular/platform-browser-dynamic": "16.0.0-next.
|
|
14
|
+
"@angular/core": "16.0.0-next.3",
|
|
15
|
+
"@angular/compiler": "16.0.0-next.3",
|
|
16
|
+
"@angular/platform-browser": "16.0.0-next.3",
|
|
17
|
+
"@angular/platform-browser-dynamic": "16.0.0-next.3"
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
package/static/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v16.0.0-next.
|
|
2
|
+
* @license Angular v16.0.0-next.3
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -470,9 +470,13 @@ export declare class UpgradeComponent implements OnInit, OnChanges, DoCheck, OnD
|
|
|
470
470
|
* injection into the base class constructor.
|
|
471
471
|
*/
|
|
472
472
|
constructor(name: string, elementRef: ElementRef, injector: Injector);
|
|
473
|
+
/** @nodoc */
|
|
473
474
|
ngOnInit(): void;
|
|
475
|
+
/** @nodoc */
|
|
474
476
|
ngOnChanges(changes: SimpleChanges): void;
|
|
477
|
+
/** @nodoc */
|
|
475
478
|
ngDoCheck(): void;
|
|
479
|
+
/** @nodoc */
|
|
476
480
|
ngOnDestroy(): void;
|
|
477
481
|
private initializeBindings;
|
|
478
482
|
private initializeOutputs;
|