@angular/router 12.0.2 → 12.0.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/bundles/router-testing.umd.js +1 -1
- package/bundles/router-upgrade.umd.js +1 -1
- package/bundles/router.umd.js +8 -3
- package/bundles/router.umd.js.map +1 -1
- package/esm2015/src/router.js +1 -1
- package/esm2015/src/router_config_loader.js +7 -2
- package/esm2015/src/version.js +1 -1
- package/fesm2015/router.js +8 -3
- package/fesm2015/router.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/fesm2015/upgrade.js +1 -1
- package/package.json +4 -4
- package/router.d.ts +9 -4
- package/router.metadata.json +1 -1
- package/testing/testing.d.ts +1 -1
- package/testing.d.ts +1 -1
- package/upgrade/upgrade.d.ts +1 -1
- package/upgrade.d.ts +1 -1
package/bundles/router.umd.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v12.0.
|
|
2
|
+
* @license Angular v12.0.3
|
|
3
3
|
* (c) 2010-2021 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -4213,7 +4213,12 @@
|
|
|
4213
4213
|
*/
|
|
4214
4214
|
/**
|
|
4215
4215
|
* The [DI token](guide/glossary/#di-token) for a router configuration.
|
|
4216
|
-
*
|
|
4216
|
+
*
|
|
4217
|
+
* `ROUTES` is a low level API for router configuration via dependency injection.
|
|
4218
|
+
*
|
|
4219
|
+
* We recommend that in almost all cases to use higher level APIs such as `RouterModule.forRoot()`,
|
|
4220
|
+
* `RouterModule.forChild()`, `provideRoutes`, or `Router.resetConfig()`.
|
|
4221
|
+
*
|
|
4217
4222
|
* @publicApi
|
|
4218
4223
|
*/
|
|
4219
4224
|
var ROUTES = new core.InjectionToken('ROUTES');
|
|
@@ -6550,7 +6555,7 @@
|
|
|
6550
6555
|
/**
|
|
6551
6556
|
* @publicApi
|
|
6552
6557
|
*/
|
|
6553
|
-
var VERSION = new core.Version('12.0.
|
|
6558
|
+
var VERSION = new core.Version('12.0.3');
|
|
6554
6559
|
|
|
6555
6560
|
/**
|
|
6556
6561
|
* @license
|