@angular/upgrade 16.2.1 → 16.2.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/esm2022/src/common/src/version.mjs +1 -1
- package/esm2022/src/dynamic/src/upgrade_adapter.mjs +3 -3
- 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 +7 -7
- package/fesm2022/upgrade.mjs.map +1 -1
- package/index.d.ts +3 -3
- package/package.json +5 -5
- package/static/index.d.ts +1 -1
- package/static/testing/index.d.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v16.2.
|
|
2
|
+
* @license Angular v16.2.3
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -48,9 +48,9 @@ declare type Ng1Expression = string | Function;
|
|
|
48
48
|
*
|
|
49
49
|
* The `UpgradeAdapter` allows:
|
|
50
50
|
* 1. creation of Angular component from AngularJS component directive
|
|
51
|
-
* (See
|
|
51
|
+
* (See {@link UpgradeAdapter#upgradeNg1Component})
|
|
52
52
|
* 2. creation of AngularJS directive from Angular component.
|
|
53
|
-
* (See
|
|
53
|
+
* (See {@link UpgradeAdapter#downgradeNg2Component})
|
|
54
54
|
* 3. Bootstrapping of a hybrid Angular application which contains both of the frameworks
|
|
55
55
|
* coexisting in a single application.
|
|
56
56
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/upgrade",
|
|
3
|
-
"version": "16.2.
|
|
3
|
+
"version": "16.2.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.2.
|
|
15
|
-
"@angular/compiler": "16.2.
|
|
16
|
-
"@angular/platform-browser": "16.2.
|
|
17
|
-
"@angular/platform-browser-dynamic": "16.2.
|
|
14
|
+
"@angular/core": "16.2.3",
|
|
15
|
+
"@angular/compiler": "16.2.3",
|
|
16
|
+
"@angular/platform-browser": "16.2.3",
|
|
17
|
+
"@angular/platform-browser-dynamic": "16.2.3"
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
package/static/index.d.ts
CHANGED