@angular/router 12.2.3 → 12.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.
@@ -14,5 +14,5 @@ import { Version } from '@angular/core';
14
14
  /**
15
15
  * @publicApi
16
16
  */
17
- export const VERSION = new Version('12.2.3');
17
+ export const VERSION = new Version('12.2.4');
18
18
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL3JvdXRlci9zcmMvdmVyc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7O0dBTUc7QUFFSDs7OztHQUlHO0FBRUgsT0FBTyxFQUFDLE9BQU8sRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUV0Qzs7R0FFRztBQUNILE1BQU0sQ0FBQyxNQUFNLE9BQU8sR0FBRyxJQUFJLE9BQU8sQ0FBQyxtQkFBbUIsQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBAbGljZW5zZVxuICogQ29weXJpZ2h0IEdvb2dsZSBMTEMgQWxsIFJpZ2h0cyBSZXNlcnZlZC5cbiAqXG4gKiBVc2Ugb2YgdGhpcyBzb3VyY2UgY29kZSBpcyBnb3Zlcm5lZCBieSBhbiBNSVQtc3R5bGUgbGljZW5zZSB0aGF0IGNhbiBiZVxuICogZm91bmQgaW4gdGhlIExJQ0VOU0UgZmlsZSBhdCBodHRwczovL2FuZ3VsYXIuaW8vbGljZW5zZVxuICovXG5cbi8qKlxuICogQG1vZHVsZVxuICogQGRlc2NyaXB0aW9uXG4gKiBFbnRyeSBwb2ludCBmb3IgYWxsIHB1YmxpYyBBUElzIG9mIHRoZSByb3V0ZXIgcGFja2FnZS5cbiAqL1xuXG5pbXBvcnQge1ZlcnNpb259IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG4vKipcbiAqIEBwdWJsaWNBcGlcbiAqL1xuZXhwb3J0IGNvbnN0IFZFUlNJT04gPSBuZXcgVmVyc2lvbignMC4wLjAtUExBQ0VIT0xERVInKTtcbiJdfQ==
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v12.2.3
2
+ * @license Angular v12.2.4
3
3
  * (c) 2010-2021 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -3827,7 +3827,7 @@ function defaultRouterHook(snapshot, runExtras) {
3827
3827
  return of(null);
3828
3828
  }
3829
3829
  /**
3830
- * The equivalent `IsActiveUrlTreeOptions` options for `Router.isActive` is called with `true`
3830
+ * The equivalent `IsActiveMatchOptions` options for `Router.isActive` is called with `true`
3831
3831
  * (exact = true).
3832
3832
  */
3833
3833
  const exactMatchOptions = {
@@ -3837,7 +3837,7 @@ const exactMatchOptions = {
3837
3837
  queryParams: 'exact'
3838
3838
  };
3839
3839
  /**
3840
- * The equivalent `IsActiveUrlTreeOptions` options for `Router.isActive` is called with `false`
3840
+ * The equivalent `IsActiveMatchOptions` options for `Router.isActive` is called with `false`
3841
3841
  * (exact = false).
3842
3842
  */
3843
3843
  const subsetMatchOptions = {
@@ -6074,7 +6074,7 @@ function provideRouterInitializer() {
6074
6074
  /**
6075
6075
  * @publicApi
6076
6076
  */
6077
- const VERSION = new Version('12.2.3');
6077
+ const VERSION = new Version('12.2.4');
6078
6078
 
6079
6079
  /**
6080
6080
  * @license