@angular/google-maps 20.2.0 → 21.0.0-next.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/google-maps",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "21.0.0-next.0",
|
|
4
4
|
"description": "Angular Google Maps",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"tslib": "^2.3.0"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@angular/core": "^
|
|
25
|
-
"@angular/common": "^
|
|
24
|
+
"@angular/core": "^21.0.0-0 || ^21.1.0-0 || ^21.2.0-0 || ^21.3.0-0 || ^22.0.0-0",
|
|
25
|
+
"@angular/common": "^21.0.0-0 || ^21.1.0-0 || ^21.2.0-0 || ^21.3.0-0 || ^22.0.0-0",
|
|
26
26
|
"rxjs": "^6.5.3 || ^7.4.0"
|
|
27
27
|
},
|
|
28
28
|
"sideEffects": false,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schematics": {
|
|
3
|
-
"migration-
|
|
4
|
-
"version": "
|
|
5
|
-
"description": "Updates the Angular Google Maps package to
|
|
6
|
-
"factory": "./ng-update/index#
|
|
3
|
+
"migration-v21": {
|
|
4
|
+
"version": "21.0.0-0",
|
|
5
|
+
"description": "Updates the Angular Google Maps package to v21",
|
|
6
|
+
"factory": "./ng-update/index#updateToV21"
|
|
7
7
|
}
|
|
8
8
|
}
|
|
9
9
|
}
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
* found in the LICENSE file at https://angular.dev/license
|
|
7
7
|
*/
|
|
8
8
|
import { Rule } from '@angular-devkit/schematics';
|
|
9
|
-
/** Entry point for the migration schematics with target of Angular Material
|
|
10
|
-
export declare function
|
|
9
|
+
/** Entry point for the migration schematics with target of Angular Material v21 */
|
|
10
|
+
export declare function updateToV21(): Rule;
|
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
* found in the LICENSE file at https://angular.dev/license
|
|
8
8
|
*/
|
|
9
9
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
-
exports.
|
|
11
|
-
/** Entry point for the migration schematics with target of Angular Material
|
|
12
|
-
function
|
|
10
|
+
exports.updateToV21 = updateToV21;
|
|
11
|
+
/** Entry point for the migration schematics with target of Angular Material v21 */
|
|
12
|
+
function updateToV21() {
|
|
13
13
|
return function () { };
|
|
14
14
|
}
|
|
15
15
|
//# sourceMappingURL=index.js.map
|