@angular/router 4.2.0 → 4.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 v4.2.0
2
+ * @license Angular v4.2.4
3
3
  * (c) 2010-2017 Google, Inc. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -3562,10 +3562,11 @@ class Router {
3562
3562
  * router.createUrlTree(['../../team/44/user/22'], {relativeTo: route});
3563
3563
  * ```
3564
3564
  * @param {?} commands
3565
- * @param {?=} __1
3565
+ * @param {?=} navigationExtras
3566
3566
  * @return {?}
3567
3567
  */
3568
- createUrlTree(commands, { relativeTo, queryParams, fragment, preserveQueryParams, queryParamsHandling, preserveFragment } = {}) {
3568
+ createUrlTree(commands, navigationExtras = {}) {
3569
+ const { relativeTo, queryParams, fragment, preserveQueryParams, queryParamsHandling, preserveFragment } = navigationExtras;
3569
3570
  if (isDevMode() && preserveQueryParams && (console) && (console.warn)) {
3570
3571
  console.warn('preserveQueryParams is deprecated, use queryParamsHandling instead.');
3571
3572
  }
@@ -5806,7 +5807,7 @@ function provideRouterInitializer() {
5806
5807
  /**
5807
5808
  * \@stable
5808
5809
  */
5809
- const VERSION = new Version('0.0.0-ROUTERPLACEHOLDER');
5810
+ const VERSION = new Version('4.2.4');
5810
5811
 
5811
5812
  /**
5812
5813
  * @license