@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.
- 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 +4 -4
- package/bundles/router.umd.js.map +1 -1
- package/bundles/router.umd.min.js +3 -3
- package/bundles/router.umd.min.js.map +1 -1
- package/esm2015/src/directives/router_link.js +2 -2
- package/esm2015/src/router.js +2 -2
- package/esm2015/src/version.js +1 -1
- package/esm5/src/directives/router_link.js +2 -2
- package/esm5/src/router.js +2 -2
- package/esm5/src/version.js +1 -1
- package/fesm2015/router.js +4 -4
- package/fesm2015/router.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/fesm2015/upgrade.js +1 -1
- package/fesm5/router.js +4 -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.metadata.json +1 -1
- package/src/directives/router_link.d.ts +1 -1
- package/testing.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 v7.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.
|
|
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
|
|
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.
|
|
5715
|
+
var VERSION = new Version('7.2.3');
|
|
5716
5716
|
|
|
5717
5717
|
/**
|
|
5718
5718
|
* @license
|