@angular/router 4.2.3 → 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.3
2
+ * @license Angular v4.2.4
3
3
  * (c) 2010-2017 Google, Inc. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v4.2.3
2
+ * @license Angular v4.2.4
3
3
  * (c) 2010-2017 Google, Inc. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v4.2.3
2
+ * @license Angular v4.2.4
3
3
  * (c) 2010-2017 Google, Inc. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v4.2.3
2
+ * @license Angular v4.2.4
3
3
  * (c) 2010-2017 Google, Inc. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,6 +1,6 @@
1
1
  import * as tslib_1 from "tslib";
2
2
  /**
3
- * @license Angular v4.2.3
3
+ * @license Angular v4.2.4
4
4
  * (c) 2010-2017 Google, Inc. https://angular.io/
5
5
  * License: MIT
6
6
  */
@@ -3718,11 +3718,12 @@ var Router = (function () {
3718
3718
  * router.createUrlTree(['../../team/44/user/22'], {relativeTo: route});
3719
3719
  * ```
3720
3720
  * @param {?} commands
3721
- * @param {?=} __1
3721
+ * @param {?=} navigationExtras
3722
3722
  * @return {?}
3723
3723
  */
3724
- Router.prototype.createUrlTree = function (commands, _a) {
3725
- var _b = _a === void 0 ? {} : _a, relativeTo = _b.relativeTo, queryParams = _b.queryParams, fragment = _b.fragment, preserveQueryParams = _b.preserveQueryParams, queryParamsHandling = _b.queryParamsHandling, preserveFragment = _b.preserveFragment;
3724
+ Router.prototype.createUrlTree = function (commands, navigationExtras) {
3725
+ if (navigationExtras === void 0) { navigationExtras = {}; }
3726
+ var relativeTo = navigationExtras.relativeTo, queryParams = navigationExtras.queryParams, fragment = navigationExtras.fragment, preserveQueryParams = navigationExtras.preserveQueryParams, queryParamsHandling = navigationExtras.queryParamsHandling, preserveFragment = navigationExtras.preserveFragment;
3726
3727
  if (isDevMode() && preserveQueryParams && (console) && (console.warn)) {
3727
3728
  console.warn('preserveQueryParams is deprecated, use queryParamsHandling instead.');
3728
3729
  }
@@ -6075,7 +6076,7 @@ function provideRouterInitializer() {
6075
6076
  /**
6076
6077
  * \@stable
6077
6078
  */
6078
- var VERSION = new Version('0.0.0-ROUTERPLACEHOLDER');
6079
+ var VERSION = new Version('4.2.4');
6079
6080
  /**
6080
6081
  * @license
6081
6082
  * Copyright Google Inc. All Rights Reserved.