@angular/router 16.1.0-rc.0 → 16.1.1

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.
Files changed (35) hide show
  1. package/esm2022/src/components/empty_outlet.mjs +3 -3
  2. package/esm2022/src/directives/router_link.mjs +19 -19
  3. package/esm2022/src/directives/router_link_active.mjs +3 -3
  4. package/esm2022/src/directives/router_outlet.mjs +9 -9
  5. package/esm2022/src/events.mjs +26 -26
  6. package/esm2022/src/models.mjs +1 -1
  7. package/esm2022/src/navigation_transition.mjs +4 -4
  8. package/esm2022/src/page_title_strategy.mjs +6 -6
  9. package/esm2022/src/provide_router.mjs +15 -15
  10. package/esm2022/src/route_reuse_strategy.mjs +6 -6
  11. package/esm2022/src/router.mjs +19 -19
  12. package/esm2022/src/router_config.mjs +1 -1
  13. package/esm2022/src/router_config_loader.mjs +3 -3
  14. package/esm2022/src/router_module.mjs +4 -4
  15. package/esm2022/src/router_outlet_context.mjs +3 -3
  16. package/esm2022/src/router_preloader.mjs +9 -9
  17. package/esm2022/src/router_scroller.mjs +3 -3
  18. package/esm2022/src/router_state.mjs +2 -2
  19. package/esm2022/src/shared.mjs +3 -3
  20. package/esm2022/src/url_handling_strategy.mjs +6 -6
  21. package/esm2022/src/url_tree.mjs +3 -3
  22. package/esm2022/src/utils/functional_guards.mjs +6 -6
  23. package/esm2022/src/version.mjs +1 -1
  24. package/esm2022/testing/src/router_testing_harness.mjs +6 -6
  25. package/esm2022/testing/src/router_testing_module.mjs +4 -4
  26. package/esm2022/upgrade/src/upgrade.mjs +3 -3
  27. package/fesm2022/router.mjs +145 -145
  28. package/fesm2022/router.mjs.map +1 -1
  29. package/fesm2022/testing.mjs +11 -11
  30. package/fesm2022/upgrade.mjs +3 -3
  31. package/fesm2022/upgrade.mjs.map +1 -1
  32. package/index.d.ts +180 -180
  33. package/package.json +4 -4
  34. package/testing/index.d.ts +1 -1
  35. package/upgrade/index.d.ts +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/router",
3
- "version": "16.1.0-rc.0",
3
+ "version": "16.1.1",
4
4
  "description": "Angular - the routing library",
5
5
  "keywords": [
6
6
  "angular",
@@ -24,9 +24,9 @@
24
24
  "tslib": "^2.3.0"
25
25
  },
26
26
  "peerDependencies": {
27
- "@angular/core": "16.1.0-rc.0",
28
- "@angular/common": "16.1.0-rc.0",
29
- "@angular/platform-browser": "16.1.0-rc.0",
27
+ "@angular/core": "16.1.1",
28
+ "@angular/common": "16.1.1",
29
+ "@angular/platform-browser": "16.1.1",
30
30
  "rxjs": "^6.5.3 || ^7.4.0"
31
31
  },
32
32
  "ng-update": {
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v16.1.0-rc.0
2
+ * @license Angular v16.1.1
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v16.1.0-rc.0
2
+ * @license Angular v16.1.1
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -46,8 +46,8 @@ export declare const RouterUpgradeInitializer: {
46
46
  *
47
47
  * @param ngUpgrade The upgrade NgModule.
48
48
  * @param urlType The location strategy.
49
- * @see `HashLocationStrategy`
50
- * @see `PathLocationStrategy`
49
+ * @see {@link HashLocationStrategy}
50
+ * @see {@link PathLocationStrategy}
51
51
  *
52
52
  * @publicApi
53
53
  */