@angular/router 8.2.3 → 8.2.4

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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v8.2.3
2
+ * @license Angular v8.2.4
3
3
  * (c) 2010-2019 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v8.2.3
2
+ * @license Angular v8.2.4
3
3
  * (c) 2010-2019 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
package/fesm5/router.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v8.2.3
2
+ * @license Angular v8.2.4
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
  */
@@ -5709,7 +5712,7 @@ function provideRouterInitializer() {
5709
5712
  /**
5710
5713
  * @publicApi
5711
5714
  */
5712
- var VERSION = new Version('8.2.3');
5715
+ var VERSION = new Version('8.2.4');
5713
5716
 
5714
5717
  /**
5715
5718
  * @license