@angular/router 12.2.4 → 12.2.5
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 +3 -3
- package/bundles/router.umd.js.map +1 -1
- package/esm2015/src/router.js +2 -2
- package/esm2015/src/version.js +1 -1
- package/fesm2015/router.js +3 -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 +1 -1
- 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/fesm2015/router.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v12.2.
|
|
2
|
+
* @license Angular v12.2.5
|
|
3
3
|
* (c) 2010-2021 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -4650,7 +4650,7 @@ class Router {
|
|
|
4650
4650
|
this.lastSuccessfulNavigation = this.currentNavigation;
|
|
4651
4651
|
t.resolve(true);
|
|
4652
4652
|
}, e => {
|
|
4653
|
-
this.console.warn(`Unhandled Navigation Error: `);
|
|
4653
|
+
this.console.warn(`Unhandled Navigation Error: ${e}`);
|
|
4654
4654
|
});
|
|
4655
4655
|
}
|
|
4656
4656
|
scheduleNavigation(rawUrl, source, restoredState, extras, priorPromise) {
|
|
@@ -6074,7 +6074,7 @@ function provideRouterInitializer() {
|
|
|
6074
6074
|
/**
|
|
6075
6075
|
* @publicApi
|
|
6076
6076
|
*/
|
|
6077
|
-
const VERSION = new Version('12.2.
|
|
6077
|
+
const VERSION = new Version('12.2.5');
|
|
6078
6078
|
|
|
6079
6079
|
/**
|
|
6080
6080
|
* @license
|