@angular/router 7.2.2 → 7.2.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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v7.2.2
2
+ * @license Angular v7.2.3
3
3
  * (c) 2010-2018 Google, Inc. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v7.2.2
2
+ * @license Angular v7.2.3
3
3
  * (c) 2010-2018 Google, Inc. https://angular.io/
4
4
  * License: MIT
5
5
  */
package/fesm5/router.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v7.2.2
2
+ * @license Angular v7.2.3
3
3
  * (c) 2010-2018 Google, Inc. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -3776,7 +3776,7 @@ var Router = /** @class */ (function () {
3776
3776
  this.resetConfig(config);
3777
3777
  this.currentUrlTree = createEmptyUrlTree();
3778
3778
  this.rawUrlTree = this.currentUrlTree;
3779
- this.browserUrlTree = this.parseUrl(this.location.path());
3779
+ this.browserUrlTree = this.currentUrlTree;
3780
3780
  this.configLoader = new RouterConfigLoader(loader, compiler, onLoadStart, onLoadEnd);
3781
3781
  this.routerState = createEmptyState(this.currentUrlTree, this.rootComponentType);
3782
3782
  this.transitions = new BehaviorSubject({
@@ -4414,7 +4414,7 @@ function validateCommands(commands) {
4414
4414
  * </a>
4415
4415
  * ```
4416
4416
  *
4417
- * You can tell the directive to how to handle queryParams, available options are:
4417
+ * You can tell the directive how to handle queryParams. Available options are:
4418
4418
  * - `'merge'`: merge the queryParams into the current queryParams
4419
4419
  * - `'preserve'`: preserve the current queryParams
4420
4420
  * - default/`''`: use the queryParams only
@@ -5712,7 +5712,7 @@ function provideRouterInitializer() {
5712
5712
  /**
5713
5713
  * @publicApi
5714
5714
  */
5715
- var VERSION = new Version('7.2.2');
5715
+ var VERSION = new Version('7.2.3');
5716
5716
 
5717
5717
  /**
5718
5718
  * @license