@angular/upgrade 14.0.3 → 14.1.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/esm2020/src/common/src/version.mjs +1 -1
- package/esm2020/src/dynamic/src/upgrade_ng1_adapter.mjs +3 -3
- package/esm2020/static/src/upgrade_component.mjs +3 -3
- package/esm2020/static/src/upgrade_module.mjs +11 -10
- package/esm2020/static/testing/src/create_angular_testing_module.mjs +4 -4
- package/fesm2015/static/testing.mjs +5 -5
- package/fesm2015/static.mjs +15 -14
- package/fesm2015/static.mjs.map +1 -1
- package/fesm2015/upgrade.mjs +5 -5
- package/fesm2015/upgrade.mjs.map +1 -1
- package/fesm2020/static/testing.mjs +5 -5
- package/fesm2020/static.mjs +15 -14
- package/fesm2020/static.mjs.map +1 -1
- package/fesm2020/upgrade.mjs +5 -5
- package/fesm2020/upgrade.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +5 -5
- package/static/index.d.ts +6 -4
- 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": "14.0.
|
|
3
|
+
"version": "14.1.0-next.2",
|
|
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": "14.0.
|
|
15
|
-
"@angular/compiler": "14.0.
|
|
16
|
-
"@angular/platform-browser": "14.0.
|
|
17
|
-
"@angular/platform-browser-dynamic": "14.0.
|
|
14
|
+
"@angular/core": "14.1.0-next.2",
|
|
15
|
+
"@angular/compiler": "14.1.0-next.2",
|
|
16
|
+
"@angular/platform-browser": "14.1.0-next.2",
|
|
17
|
+
"@angular/platform-browser-dynamic": "14.1.0-next.2"
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
package/static/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v14.0.
|
|
2
|
+
* @license Angular v14.1.0-next.2
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -561,11 +561,11 @@ export declare class UpgradeComponent implements OnInit, OnChanges, DoCheck, OnD
|
|
|
561
561
|
* This class is an `NgModule`, which you import to provide AngularJS core services,
|
|
562
562
|
* and has an instance method used to bootstrap the hybrid upgrade application.
|
|
563
563
|
*
|
|
564
|
-
* * Core AngularJS services
|
|
564
|
+
* * Core AngularJS services<br />
|
|
565
565
|
* Importing this `NgModule` will add providers for the core
|
|
566
566
|
* [AngularJS services](https://docs.angularjs.org/api/ng/service) to the root injector.
|
|
567
567
|
*
|
|
568
|
-
* * Bootstrap
|
|
568
|
+
* * Bootstrap<br />
|
|
569
569
|
* The runtime instance of this class contains a {@link UpgradeModule#bootstrap `bootstrap()`}
|
|
570
570
|
* method, which you use to bootstrap the top level AngularJS module onto an element in the
|
|
571
571
|
* DOM for the hybrid upgrade app.
|
|
@@ -643,8 +643,10 @@ export declare class UpgradeModule {
|
|
|
643
643
|
* @param element the element on which to bootstrap the AngularJS application
|
|
644
644
|
* @param [modules] the AngularJS modules to bootstrap for this application
|
|
645
645
|
* @param [config] optional extra AngularJS bootstrap configuration
|
|
646
|
+
* @return The value returned by
|
|
647
|
+
* [angular.bootstrap()](https://docs.angularjs.org/api/ng/function/angular.bootstrap).
|
|
646
648
|
*/
|
|
647
|
-
bootstrap(element: Element, modules?: string[], config?: any):
|
|
649
|
+
bootstrap(element: Element, modules?: string[], config?: any): any;
|
|
648
650
|
static ɵfac: i0.ɵɵFactoryDeclaration<UpgradeModule, never>;
|
|
649
651
|
static ɵmod: i0.ɵɵNgModuleDeclaration<UpgradeModule, never, never, never>;
|
|
650
652
|
static ɵinj: i0.ɵɵInjectorDeclaration<UpgradeModule>;
|