@angular/router 8.2.3 → 8.2.7
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-testing.umd.min.js +1 -1
- package/bundles/router-testing.umd.min.js.map +1 -1
- package/bundles/router-upgrade.umd.js +1 -1
- package/bundles/router-upgrade.umd.min.js +1 -1
- package/bundles/router-upgrade.umd.min.js.map +1 -1
- package/bundles/router.umd.js +7 -4
- package/bundles/router.umd.js.map +1 -1
- package/bundles/router.umd.min.js +2 -2
- package/bundles/router.umd.min.js.map +1 -1
- package/esm2015/router.externs.js +2 -2
- package/esm2015/src/events.js +5 -2
- package/esm2015/src/router.js +2 -2
- package/esm2015/src/version.js +1 -1
- package/esm5/src/events.js +5 -2
- package/esm5/src/router.js +2 -2
- package/esm5/src/version.js +1 -1
- package/fesm2015/router.js +7 -4
- package/fesm2015/router.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/fesm2015/upgrade.js +1 -1
- package/fesm5/router.js +7 -4
- package/fesm5/router.js.map +1 -1
- package/fesm5/testing.js +1 -1
- package/fesm5/upgrade.js +1 -1
- package/package.json +4 -4
- package/router.d.ts +6 -3
- 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/testing.js
CHANGED
package/fesm2015/upgrade.js
CHANGED
package/fesm5/router.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v8.2.
|
|
2
|
+
* @license Angular v8.2.7
|
|
3
3
|
* (c) 2010-2019 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -102,7 +102,10 @@ var NavigationEnd = /** @class */ (function (_super) {
|
|
|
102
102
|
return NavigationEnd;
|
|
103
103
|
}(RouterEvent));
|
|
104
104
|
/**
|
|
105
|
-
* An event triggered when a navigation is canceled.
|
|
105
|
+
* An event triggered when a navigation is canceled, directly or indirectly.
|
|
106
|
+
*
|
|
107
|
+
* This can happen when a [route guard](guide/router#milestone-5-route-guards)
|
|
108
|
+
* returns `false` or initiates a redirect by returning a `UrlTree`.
|
|
106
109
|
*
|
|
107
110
|
* @publicApi
|
|
108
111
|
*/
|
|
@@ -4118,7 +4121,7 @@ var Router = /** @class */ (function () {
|
|
|
4118
4121
|
/**
|
|
4119
4122
|
* Applies an array of commands to the current URL tree and creates a new URL tree.
|
|
4120
4123
|
*
|
|
4121
|
-
* When given an
|
|
4124
|
+
* When given an activated route, applies the given commands starting from the route.
|
|
4122
4125
|
* Otherwise, applies the given command starting from the root.
|
|
4123
4126
|
*
|
|
4124
4127
|
* @param commands An array of commands to apply.
|
|
@@ -5709,7 +5712,7 @@ function provideRouterInitializer() {
|
|
|
5709
5712
|
/**
|
|
5710
5713
|
* @publicApi
|
|
5711
5714
|
*/
|
|
5712
|
-
var VERSION = new Version('8.2.
|
|
5715
|
+
var VERSION = new Version('8.2.7');
|
|
5713
5716
|
|
|
5714
5717
|
/**
|
|
5715
5718
|
* @license
|