@angular/router 17.0.3 → 17.1.0-next.0

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 (53) hide show
  1. package/esm2022/src/apply_redirects.mjs +3 -2
  2. package/esm2022/src/components/empty_outlet.mjs +3 -3
  3. package/esm2022/src/create_router_state.mjs +1 -1
  4. package/esm2022/src/create_url_tree.mjs +1 -1
  5. package/esm2022/src/directives/router_link.mjs +4 -4
  6. package/esm2022/src/directives/router_link_active.mjs +4 -4
  7. package/esm2022/src/directives/router_outlet.mjs +7 -7
  8. package/esm2022/src/events.mjs +105 -35
  9. package/esm2022/src/index.mjs +2 -2
  10. package/esm2022/src/models.mjs +1 -1
  11. package/esm2022/src/navigation_canceling_error.mjs +3 -2
  12. package/esm2022/src/navigation_transition.mjs +10 -10
  13. package/esm2022/src/operators/activate_routes.mjs +1 -1
  14. package/esm2022/src/operators/check_guards.mjs +1 -1
  15. package/esm2022/src/operators/prioritized_guard_value.mjs +1 -1
  16. package/esm2022/src/operators/resolve_data.mjs +1 -1
  17. package/esm2022/src/operators/switch_tap.mjs +1 -1
  18. package/esm2022/src/page_title_strategy.mjs +7 -7
  19. package/esm2022/src/provide_router.mjs +1 -1
  20. package/esm2022/src/recognize.mjs +1 -1
  21. package/esm2022/src/route_reuse_strategy.mjs +6 -6
  22. package/esm2022/src/router.mjs +7 -7
  23. package/esm2022/src/router_config_loader.mjs +4 -4
  24. package/esm2022/src/router_module.mjs +5 -5
  25. package/esm2022/src/router_outlet_context.mjs +4 -4
  26. package/esm2022/src/router_preloader.mjs +10 -10
  27. package/esm2022/src/router_scroller.mjs +6 -6
  28. package/esm2022/src/router_state.mjs +1 -1
  29. package/esm2022/src/shared.mjs +1 -1
  30. package/esm2022/src/statemanager/state_manager.mjs +10 -10
  31. package/esm2022/src/url_handling_strategy.mjs +6 -6
  32. package/esm2022/src/url_tree.mjs +4 -4
  33. package/esm2022/src/utils/collection.mjs +1 -1
  34. package/esm2022/src/utils/config.mjs +1 -1
  35. package/esm2022/src/utils/config_matching.mjs +1 -1
  36. package/esm2022/src/utils/navigations.mjs +4 -4
  37. package/esm2022/src/utils/preactivation.mjs +1 -1
  38. package/esm2022/src/utils/tree.mjs +1 -1
  39. package/esm2022/src/utils/view_transition.mjs +1 -1
  40. package/esm2022/src/version.mjs +1 -1
  41. package/esm2022/testing/src/router_testing_harness.mjs +7 -7
  42. package/esm2022/testing/src/router_testing_module.mjs +4 -4
  43. package/esm2022/upgrade/src/upgrade.mjs +1 -1
  44. package/fesm2022/router.mjs +191 -121
  45. package/fesm2022/router.mjs.map +1 -1
  46. package/fesm2022/testing.mjs +11 -11
  47. package/fesm2022/testing.mjs.map +1 -1
  48. package/fesm2022/upgrade.mjs +1 -1
  49. package/fesm2022/upgrade.mjs.map +1 -1
  50. package/index.d.ts +5 -5
  51. package/package.json +4 -4
  52. package/testing/index.d.ts +1 -1
  53. package/upgrade/index.d.ts +1 -1
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v17.0.3
2
+ * @license Angular v17.1.0-next.0
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -425,10 +425,10 @@ function mapChildrenIntoArray(segment, fn) {
425
425
  * @publicApi
426
426
  */
427
427
  class UrlSerializer {
428
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: UrlSerializer, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
429
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: UrlSerializer, providedIn: 'root', useFactory: () => new DefaultUrlSerializer() }); }
428
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: UrlSerializer, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
429
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: UrlSerializer, providedIn: 'root', useFactory: () => new DefaultUrlSerializer() }); }
430
430
  }
431
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: UrlSerializer, decorators: [{
431
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: UrlSerializer, decorators: [{
432
432
  type: Injectable,
433
433
  args: [{ providedIn: 'root', useFactory: () => new DefaultUrlSerializer() }]
434
434
  }] });
@@ -1213,6 +1213,31 @@ function compare(path, params, segment) {
1213
1213
  }
1214
1214
 
1215
1215
  const IMPERATIVE_NAVIGATION = 'imperative';
1216
+ /**
1217
+ * Identifies the type of a router event.
1218
+ *
1219
+ * @publicApi
1220
+ */
1221
+ var EventType;
1222
+ (function (EventType) {
1223
+ EventType[EventType["NavigationStart"] = 0] = "NavigationStart";
1224
+ EventType[EventType["NavigationEnd"] = 1] = "NavigationEnd";
1225
+ EventType[EventType["NavigationCancel"] = 2] = "NavigationCancel";
1226
+ EventType[EventType["NavigationError"] = 3] = "NavigationError";
1227
+ EventType[EventType["RoutesRecognized"] = 4] = "RoutesRecognized";
1228
+ EventType[EventType["ResolveStart"] = 5] = "ResolveStart";
1229
+ EventType[EventType["ResolveEnd"] = 6] = "ResolveEnd";
1230
+ EventType[EventType["GuardsCheckStart"] = 7] = "GuardsCheckStart";
1231
+ EventType[EventType["GuardsCheckEnd"] = 8] = "GuardsCheckEnd";
1232
+ EventType[EventType["RouteConfigLoadStart"] = 9] = "RouteConfigLoadStart";
1233
+ EventType[EventType["RouteConfigLoadEnd"] = 10] = "RouteConfigLoadEnd";
1234
+ EventType[EventType["ChildActivationStart"] = 11] = "ChildActivationStart";
1235
+ EventType[EventType["ChildActivationEnd"] = 12] = "ChildActivationEnd";
1236
+ EventType[EventType["ActivationStart"] = 13] = "ActivationStart";
1237
+ EventType[EventType["ActivationEnd"] = 14] = "ActivationEnd";
1238
+ EventType[EventType["Scroll"] = 15] = "Scroll";
1239
+ EventType[EventType["NavigationSkipped"] = 16] = "NavigationSkipped";
1240
+ })(EventType || (EventType = {}));
1216
1241
  /**
1217
1242
  * Base for events the router goes through, as opposed to events tied to a specific
1218
1243
  * route. Fired one time for any given navigation.
@@ -1263,7 +1288,7 @@ class NavigationStart extends RouterEvent {
1263
1288
  /** @docsNotRequired */
1264
1289
  restoredState = null) {
1265
1290
  super(id, url);
1266
- this.type = 0 /* EventType.NavigationStart */;
1291
+ this.type = EventType.NavigationStart;
1267
1292
  this.navigationTrigger = navigationTrigger;
1268
1293
  this.restoredState = restoredState;
1269
1294
  }
@@ -1291,13 +1316,58 @@ class NavigationEnd extends RouterEvent {
1291
1316
  urlAfterRedirects) {
1292
1317
  super(id, url);
1293
1318
  this.urlAfterRedirects = urlAfterRedirects;
1294
- this.type = 1 /* EventType.NavigationEnd */;
1319
+ this.type = EventType.NavigationEnd;
1295
1320
  }
1296
1321
  /** @docsNotRequired */
1297
1322
  toString() {
1298
1323
  return `NavigationEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}')`;
1299
1324
  }
1300
1325
  }
1326
+ /**
1327
+ * A code for the `NavigationCancel` event of the `Router` to indicate the
1328
+ * reason a navigation failed.
1329
+ *
1330
+ * @publicApi
1331
+ */
1332
+ var NavigationCancellationCode;
1333
+ (function (NavigationCancellationCode) {
1334
+ /**
1335
+ * A navigation failed because a guard returned a `UrlTree` to redirect.
1336
+ */
1337
+ NavigationCancellationCode[NavigationCancellationCode["Redirect"] = 0] = "Redirect";
1338
+ /**
1339
+ * A navigation failed because a more recent navigation started.
1340
+ */
1341
+ NavigationCancellationCode[NavigationCancellationCode["SupersededByNewNavigation"] = 1] = "SupersededByNewNavigation";
1342
+ /**
1343
+ * A navigation failed because one of the resolvers completed without emitting a value.
1344
+ */
1345
+ NavigationCancellationCode[NavigationCancellationCode["NoDataFromResolver"] = 2] = "NoDataFromResolver";
1346
+ /**
1347
+ * A navigation failed because a guard returned `false`.
1348
+ */
1349
+ NavigationCancellationCode[NavigationCancellationCode["GuardRejected"] = 3] = "GuardRejected";
1350
+ })(NavigationCancellationCode || (NavigationCancellationCode = {}));
1351
+ /**
1352
+ * A code for the `NavigationSkipped` event of the `Router` to indicate the
1353
+ * reason a navigation was skipped.
1354
+ *
1355
+ * @publicApi
1356
+ */
1357
+ var NavigationSkippedCode;
1358
+ (function (NavigationSkippedCode) {
1359
+ /**
1360
+ * A navigation was skipped because the navigation URL was the same as the current Router URL.
1361
+ */
1362
+ NavigationSkippedCode[NavigationSkippedCode["IgnoredSameUrlNavigation"] = 0] = "IgnoredSameUrlNavigation";
1363
+ /**
1364
+ * A navigation was skipped because the configured `UrlHandlingStrategy` return `false` for both
1365
+ * the current Router URL and the target of the navigation.
1366
+ *
1367
+ * @see {@link UrlHandlingStrategy}
1368
+ */
1369
+ NavigationSkippedCode[NavigationSkippedCode["IgnoredByUrlHandlingStrategy"] = 1] = "IgnoredByUrlHandlingStrategy";
1370
+ })(NavigationSkippedCode || (NavigationSkippedCode = {}));
1301
1371
  /**
1302
1372
  * An event triggered when a navigation is canceled, directly or indirectly.
1303
1373
  * This can happen for several reasons including when a route guard
@@ -1329,7 +1399,7 @@ class NavigationCancel extends RouterEvent {
1329
1399
  super(id, url);
1330
1400
  this.reason = reason;
1331
1401
  this.code = code;
1332
- this.type = 2 /* EventType.NavigationCancel */;
1402
+ this.type = EventType.NavigationCancel;
1333
1403
  }
1334
1404
  /** @docsNotRequired */
1335
1405
  toString() {
@@ -1364,7 +1434,7 @@ class NavigationSkipped extends RouterEvent {
1364
1434
  super(id, url);
1365
1435
  this.reason = reason;
1366
1436
  this.code = code;
1367
- this.type = 16 /* EventType.NavigationSkipped */;
1437
+ this.type = EventType.NavigationSkipped;
1368
1438
  }
1369
1439
  }
1370
1440
  /**
@@ -1394,7 +1464,7 @@ class NavigationError extends RouterEvent {
1394
1464
  super(id, url);
1395
1465
  this.error = error;
1396
1466
  this.target = target;
1397
- this.type = 3 /* EventType.NavigationError */;
1467
+ this.type = EventType.NavigationError;
1398
1468
  }
1399
1469
  /** @docsNotRequired */
1400
1470
  toString() {
@@ -1419,7 +1489,7 @@ class RoutesRecognized extends RouterEvent {
1419
1489
  super(id, url);
1420
1490
  this.urlAfterRedirects = urlAfterRedirects;
1421
1491
  this.state = state;
1422
- this.type = 4 /* EventType.RoutesRecognized */;
1492
+ this.type = EventType.RoutesRecognized;
1423
1493
  }
1424
1494
  /** @docsNotRequired */
1425
1495
  toString() {
@@ -1446,7 +1516,7 @@ class GuardsCheckStart extends RouterEvent {
1446
1516
  super(id, url);
1447
1517
  this.urlAfterRedirects = urlAfterRedirects;
1448
1518
  this.state = state;
1449
- this.type = 7 /* EventType.GuardsCheckStart */;
1519
+ this.type = EventType.GuardsCheckStart;
1450
1520
  }
1451
1521
  toString() {
1452
1522
  return `GuardsCheckStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`;
@@ -1475,7 +1545,7 @@ class GuardsCheckEnd extends RouterEvent {
1475
1545
  this.urlAfterRedirects = urlAfterRedirects;
1476
1546
  this.state = state;
1477
1547
  this.shouldActivate = shouldActivate;
1478
- this.type = 8 /* EventType.GuardsCheckEnd */;
1548
+ this.type = EventType.GuardsCheckEnd;
1479
1549
  }
1480
1550
  toString() {
1481
1551
  return `GuardsCheckEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state}, shouldActivate: ${this.shouldActivate})`;
@@ -1504,7 +1574,7 @@ class ResolveStart extends RouterEvent {
1504
1574
  super(id, url);
1505
1575
  this.urlAfterRedirects = urlAfterRedirects;
1506
1576
  this.state = state;
1507
- this.type = 5 /* EventType.ResolveStart */;
1577
+ this.type = EventType.ResolveStart;
1508
1578
  }
1509
1579
  toString() {
1510
1580
  return `ResolveStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`;
@@ -1529,7 +1599,7 @@ class ResolveEnd extends RouterEvent {
1529
1599
  super(id, url);
1530
1600
  this.urlAfterRedirects = urlAfterRedirects;
1531
1601
  this.state = state;
1532
- this.type = 6 /* EventType.ResolveEnd */;
1602
+ this.type = EventType.ResolveEnd;
1533
1603
  }
1534
1604
  toString() {
1535
1605
  return `ResolveEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`;
@@ -1547,7 +1617,7 @@ class RouteConfigLoadStart {
1547
1617
  /** @docsNotRequired */
1548
1618
  route) {
1549
1619
  this.route = route;
1550
- this.type = 9 /* EventType.RouteConfigLoadStart */;
1620
+ this.type = EventType.RouteConfigLoadStart;
1551
1621
  }
1552
1622
  toString() {
1553
1623
  return `RouteConfigLoadStart(path: ${this.route.path})`;
@@ -1565,7 +1635,7 @@ class RouteConfigLoadEnd {
1565
1635
  /** @docsNotRequired */
1566
1636
  route) {
1567
1637
  this.route = route;
1568
- this.type = 10 /* EventType.RouteConfigLoadEnd */;
1638
+ this.type = EventType.RouteConfigLoadEnd;
1569
1639
  }
1570
1640
  toString() {
1571
1641
  return `RouteConfigLoadEnd(path: ${this.route.path})`;
@@ -1584,7 +1654,7 @@ class ChildActivationStart {
1584
1654
  /** @docsNotRequired */
1585
1655
  snapshot) {
1586
1656
  this.snapshot = snapshot;
1587
- this.type = 11 /* EventType.ChildActivationStart */;
1657
+ this.type = EventType.ChildActivationStart;
1588
1658
  }
1589
1659
  toString() {
1590
1660
  const path = this.snapshot.routeConfig && this.snapshot.routeConfig.path || '';
@@ -1603,7 +1673,7 @@ class ChildActivationEnd {
1603
1673
  /** @docsNotRequired */
1604
1674
  snapshot) {
1605
1675
  this.snapshot = snapshot;
1606
- this.type = 12 /* EventType.ChildActivationEnd */;
1676
+ this.type = EventType.ChildActivationEnd;
1607
1677
  }
1608
1678
  toString() {
1609
1679
  const path = this.snapshot.routeConfig && this.snapshot.routeConfig.path || '';
@@ -1623,7 +1693,7 @@ class ActivationStart {
1623
1693
  /** @docsNotRequired */
1624
1694
  snapshot) {
1625
1695
  this.snapshot = snapshot;
1626
- this.type = 13 /* EventType.ActivationStart */;
1696
+ this.type = EventType.ActivationStart;
1627
1697
  }
1628
1698
  toString() {
1629
1699
  const path = this.snapshot.routeConfig && this.snapshot.routeConfig.path || '';
@@ -1643,7 +1713,7 @@ class ActivationEnd {
1643
1713
  /** @docsNotRequired */
1644
1714
  snapshot) {
1645
1715
  this.snapshot = snapshot;
1646
- this.type = 14 /* EventType.ActivationEnd */;
1716
+ this.type = EventType.ActivationEnd;
1647
1717
  }
1648
1718
  toString() {
1649
1719
  const path = this.snapshot.routeConfig && this.snapshot.routeConfig.path || '';
@@ -1666,7 +1736,7 @@ class Scroll {
1666
1736
  this.routerEvent = routerEvent;
1667
1737
  this.position = position;
1668
1738
  this.anchor = anchor;
1669
- this.type = 15 /* EventType.Scroll */;
1739
+ this.type = EventType.Scroll;
1670
1740
  }
1671
1741
  toString() {
1672
1742
  const pos = this.position ? `${this.position[0]}, ${this.position[1]}` : null;
@@ -1682,39 +1752,39 @@ class RedirectRequest {
1682
1752
  }
1683
1753
  function stringifyEvent(routerEvent) {
1684
1754
  switch (routerEvent.type) {
1685
- case 14 /* EventType.ActivationEnd */:
1755
+ case EventType.ActivationEnd:
1686
1756
  return `ActivationEnd(path: '${routerEvent.snapshot.routeConfig?.path || ''}')`;
1687
- case 13 /* EventType.ActivationStart */:
1757
+ case EventType.ActivationStart:
1688
1758
  return `ActivationStart(path: '${routerEvent.snapshot.routeConfig?.path || ''}')`;
1689
- case 12 /* EventType.ChildActivationEnd */:
1759
+ case EventType.ChildActivationEnd:
1690
1760
  return `ChildActivationEnd(path: '${routerEvent.snapshot.routeConfig?.path || ''}')`;
1691
- case 11 /* EventType.ChildActivationStart */:
1761
+ case EventType.ChildActivationStart:
1692
1762
  return `ChildActivationStart(path: '${routerEvent.snapshot.routeConfig?.path || ''}')`;
1693
- case 8 /* EventType.GuardsCheckEnd */:
1763
+ case EventType.GuardsCheckEnd:
1694
1764
  return `GuardsCheckEnd(id: ${routerEvent.id}, url: '${routerEvent.url}', urlAfterRedirects: '${routerEvent.urlAfterRedirects}', state: ${routerEvent.state}, shouldActivate: ${routerEvent.shouldActivate})`;
1695
- case 7 /* EventType.GuardsCheckStart */:
1765
+ case EventType.GuardsCheckStart:
1696
1766
  return `GuardsCheckStart(id: ${routerEvent.id}, url: '${routerEvent.url}', urlAfterRedirects: '${routerEvent.urlAfterRedirects}', state: ${routerEvent.state})`;
1697
- case 2 /* EventType.NavigationCancel */:
1767
+ case EventType.NavigationCancel:
1698
1768
  return `NavigationCancel(id: ${routerEvent.id}, url: '${routerEvent.url}')`;
1699
- case 16 /* EventType.NavigationSkipped */:
1769
+ case EventType.NavigationSkipped:
1700
1770
  return `NavigationSkipped(id: ${routerEvent.id}, url: '${routerEvent.url}')`;
1701
- case 1 /* EventType.NavigationEnd */:
1771
+ case EventType.NavigationEnd:
1702
1772
  return `NavigationEnd(id: ${routerEvent.id}, url: '${routerEvent.url}', urlAfterRedirects: '${routerEvent.urlAfterRedirects}')`;
1703
- case 3 /* EventType.NavigationError */:
1773
+ case EventType.NavigationError:
1704
1774
  return `NavigationError(id: ${routerEvent.id}, url: '${routerEvent.url}', error: ${routerEvent.error})`;
1705
- case 0 /* EventType.NavigationStart */:
1775
+ case EventType.NavigationStart:
1706
1776
  return `NavigationStart(id: ${routerEvent.id}, url: '${routerEvent.url}')`;
1707
- case 6 /* EventType.ResolveEnd */:
1777
+ case EventType.ResolveEnd:
1708
1778
  return `ResolveEnd(id: ${routerEvent.id}, url: '${routerEvent.url}', urlAfterRedirects: '${routerEvent.urlAfterRedirects}', state: ${routerEvent.state})`;
1709
- case 5 /* EventType.ResolveStart */:
1779
+ case EventType.ResolveStart:
1710
1780
  return `ResolveStart(id: ${routerEvent.id}, url: '${routerEvent.url}', urlAfterRedirects: '${routerEvent.urlAfterRedirects}', state: ${routerEvent.state})`;
1711
- case 10 /* EventType.RouteConfigLoadEnd */:
1781
+ case EventType.RouteConfigLoadEnd:
1712
1782
  return `RouteConfigLoadEnd(path: ${routerEvent.route.path})`;
1713
- case 9 /* EventType.RouteConfigLoadStart */:
1783
+ case EventType.RouteConfigLoadStart:
1714
1784
  return `RouteConfigLoadStart(path: ${routerEvent.route.path})`;
1715
- case 4 /* EventType.RoutesRecognized */:
1785
+ case EventType.RoutesRecognized:
1716
1786
  return `RoutesRecognized(id: ${routerEvent.id}, url: '${routerEvent.url}', urlAfterRedirects: '${routerEvent.urlAfterRedirects}', state: ${routerEvent.state})`;
1717
- case 15 /* EventType.Scroll */:
1787
+ case EventType.Scroll:
1718
1788
  const pos = routerEvent.position ? `${routerEvent.position[0]}, ${routerEvent.position[1]}` : null;
1719
1789
  return `Scroll(anchor: '${routerEvent.anchor}', position: '${pos}')`;
1720
1790
  }
@@ -1785,10 +1855,10 @@ class ChildrenOutletContexts {
1785
1855
  getContext(childName) {
1786
1856
  return this.contexts.get(childName) || null;
1787
1857
  }
1788
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ChildrenOutletContexts, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1789
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ChildrenOutletContexts, providedIn: 'root' }); }
1858
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: ChildrenOutletContexts, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1859
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: ChildrenOutletContexts, providedIn: 'root' }); }
1790
1860
  }
1791
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ChildrenOutletContexts, decorators: [{
1861
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: ChildrenOutletContexts, decorators: [{
1792
1862
  type: Injectable,
1793
1863
  args: [{ providedIn: 'root' }]
1794
1864
  }] });
@@ -2508,10 +2578,10 @@ class RouterOutlet {
2508
2578
  this.inputBinder?.bindActivatedRouteToOutletComponent(this);
2509
2579
  this.activateEvents.emit(this.activated.instance);
2510
2580
  }
2511
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterOutlet, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2512
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: RouterOutlet, isStandalone: true, selector: "router-outlet", inputs: { name: "name" }, outputs: { activateEvents: "activate", deactivateEvents: "deactivate", attachEvents: "attach", detachEvents: "detach" }, exportAs: ["outlet"], usesOnChanges: true, ngImport: i0 }); }
2581
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouterOutlet, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2582
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.1.0-next.0", type: RouterOutlet, isStandalone: true, selector: "router-outlet", inputs: { name: "name" }, outputs: { activateEvents: "activate", deactivateEvents: "deactivate", attachEvents: "attach", detachEvents: "detach" }, exportAs: ["outlet"], usesOnChanges: true, ngImport: i0 }); }
2513
2583
  }
2514
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterOutlet, decorators: [{
2584
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouterOutlet, decorators: [{
2515
2585
  type: Directive,
2516
2586
  args: [{
2517
2587
  selector: 'router-outlet',
@@ -2614,10 +2684,10 @@ class RoutedComponentInputBinder {
2614
2684
  });
2615
2685
  this.outletDataSubscriptions.set(outlet, dataSubscription);
2616
2686
  }
2617
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RoutedComponentInputBinder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2618
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RoutedComponentInputBinder }); }
2687
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RoutedComponentInputBinder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2688
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RoutedComponentInputBinder }); }
2619
2689
  }
2620
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RoutedComponentInputBinder, decorators: [{
2690
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RoutedComponentInputBinder, decorators: [{
2621
2691
  type: Injectable
2622
2692
  }] });
2623
2693
 
@@ -2666,7 +2736,7 @@ function createActivatedRoute(c) {
2666
2736
  const NAVIGATION_CANCELING_ERROR = 'ngNavigationCancelingError';
2667
2737
  function redirectingNavigationError(urlSerializer, redirect) {
2668
2738
  const { redirectTo, navigationBehaviorOptions } = isUrlTree(redirect) ? { redirectTo: redirect, navigationBehaviorOptions: undefined } : redirect;
2669
- const error = navigationCancelingError(ngDevMode && `Redirecting to "${urlSerializer.serialize(redirectTo)}"`, 0 /* NavigationCancellationCode.Redirect */, redirect);
2739
+ const error = navigationCancelingError(ngDevMode && `Redirecting to "${urlSerializer.serialize(redirectTo)}"`, NavigationCancellationCode.Redirect, redirect);
2670
2740
  error.url = redirectTo;
2671
2741
  error.navigationBehaviorOptions = navigationBehaviorOptions;
2672
2742
  return error;
@@ -2697,10 +2767,10 @@ function isNavigationCancelingError$1(error) {
2697
2767
  * to this `EmptyOutletComponent`.
2698
2768
  */
2699
2769
  class ɵEmptyOutletComponent {
2700
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ɵEmptyOutletComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2701
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.3", type: ɵEmptyOutletComponent, isStandalone: true, selector: "ng-component", ngImport: i0, template: `<router-outlet></router-outlet>`, isInline: true, dependencies: [{ kind: "directive", type: RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }] }); }
2770
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: ɵEmptyOutletComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2771
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.0-next.0", type: ɵEmptyOutletComponent, isStandalone: true, selector: "ng-component", ngImport: i0, template: `<router-outlet></router-outlet>`, isInline: true, dependencies: [{ kind: "directive", type: RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }] }); }
2702
2772
  }
2703
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: ɵEmptyOutletComponent, decorators: [{
2773
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: ɵEmptyOutletComponent, decorators: [{
2704
2774
  type: Component,
2705
2775
  args: [{
2706
2776
  template: `<router-outlet></router-outlet>`,
@@ -3456,7 +3526,7 @@ function namedOutletsRedirect(redirectTo) {
3456
3526
  }
3457
3527
  function canLoadFails(route) {
3458
3528
  return throwError(navigationCancelingError((typeof ngDevMode === 'undefined' || ngDevMode) &&
3459
- `Cannot load children because the guard of the route "path: '${route.path}'" returned false`, 3 /* NavigationCancellationCode.GuardRejected */));
3529
+ `Cannot load children because the guard of the route "path: '${route.path}'" returned false`, NavigationCancellationCode.GuardRejected));
3460
3530
  }
3461
3531
  class ApplyRedirects {
3462
3532
  constructor(urlSerializer, urlTree) {
@@ -4130,10 +4200,10 @@ class TitleStrategy {
4130
4200
  getResolvedTitleForRoute(snapshot) {
4131
4201
  return snapshot.data[RouteTitleKey];
4132
4202
  }
4133
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: TitleStrategy, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4134
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: TitleStrategy, providedIn: 'root', useFactory: () => inject(DefaultTitleStrategy) }); }
4203
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: TitleStrategy, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4204
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: TitleStrategy, providedIn: 'root', useFactory: () => inject(DefaultTitleStrategy) }); }
4135
4205
  }
4136
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: TitleStrategy, decorators: [{
4206
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: TitleStrategy, decorators: [{
4137
4207
  type: Injectable,
4138
4208
  args: [{ providedIn: 'root', useFactory: () => inject(DefaultTitleStrategy) }]
4139
4209
  }] });
@@ -4156,10 +4226,10 @@ class DefaultTitleStrategy extends TitleStrategy {
4156
4226
  this.title.setTitle(title);
4157
4227
  }
4158
4228
  }
4159
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: DefaultTitleStrategy, deps: [{ token: i1.Title }], target: i0.ɵɵFactoryTarget.Injectable }); }
4160
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: DefaultTitleStrategy, providedIn: 'root' }); }
4229
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: DefaultTitleStrategy, deps: [{ token: i1.Title }], target: i0.ɵɵFactoryTarget.Injectable }); }
4230
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: DefaultTitleStrategy, providedIn: 'root' }); }
4161
4231
  }
4162
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: DefaultTitleStrategy, decorators: [{
4232
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: DefaultTitleStrategy, decorators: [{
4163
4233
  type: Injectable,
4164
4234
  args: [{ providedIn: 'root' }]
4165
4235
  }], ctorParameters: () => [{ type: i1.Title }] });
@@ -4237,10 +4307,10 @@ class RouterConfigLoader {
4237
4307
  this.childrenLoaders.set(route, loader);
4238
4308
  return loader;
4239
4309
  }
4240
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterConfigLoader, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4241
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterConfigLoader, providedIn: 'root' }); }
4310
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouterConfigLoader, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4311
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouterConfigLoader, providedIn: 'root' }); }
4242
4312
  }
4243
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterConfigLoader, decorators: [{
4313
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouterConfigLoader, decorators: [{
4244
4314
  type: Injectable,
4245
4315
  args: [{ providedIn: 'root' }]
4246
4316
  }] });
@@ -4308,10 +4378,10 @@ function maybeUnwrapDefaultExport(input) {
4308
4378
  * @publicApi
4309
4379
  */
4310
4380
  class UrlHandlingStrategy {
4311
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: UrlHandlingStrategy, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4312
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: UrlHandlingStrategy, providedIn: 'root', useFactory: () => inject(DefaultUrlHandlingStrategy) }); }
4381
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: UrlHandlingStrategy, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4382
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: UrlHandlingStrategy, providedIn: 'root', useFactory: () => inject(DefaultUrlHandlingStrategy) }); }
4313
4383
  }
4314
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: UrlHandlingStrategy, decorators: [{
4384
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: UrlHandlingStrategy, decorators: [{
4315
4385
  type: Injectable,
4316
4386
  args: [{ providedIn: 'root', useFactory: () => inject(DefaultUrlHandlingStrategy) }]
4317
4387
  }] });
@@ -4328,10 +4398,10 @@ class DefaultUrlHandlingStrategy {
4328
4398
  merge(newUrlPart, wholeUrl) {
4329
4399
  return newUrlPart;
4330
4400
  }
4331
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: DefaultUrlHandlingStrategy, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4332
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: DefaultUrlHandlingStrategy, providedIn: 'root' }); }
4401
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: DefaultUrlHandlingStrategy, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4402
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: DefaultUrlHandlingStrategy, providedIn: 'root' }); }
4333
4403
  }
4334
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: DefaultUrlHandlingStrategy, decorators: [{
4404
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: DefaultUrlHandlingStrategy, decorators: [{
4335
4405
  type: Injectable,
4336
4406
  args: [{ providedIn: 'root' }]
4337
4407
  }] });
@@ -4485,7 +4555,7 @@ class NavigationTransitions {
4485
4555
  const reason = (typeof ngDevMode === 'undefined' || ngDevMode) ?
4486
4556
  `Navigation to ${t.rawUrl} was ignored because it is the same as the current Router URL.` :
4487
4557
  '';
4488
- this.events.next(new NavigationSkipped(t.id, this.urlSerializer.serialize(t.rawUrl), reason, 0 /* NavigationSkippedCode.IgnoredSameUrlNavigation */));
4558
+ this.events.next(new NavigationSkipped(t.id, this.urlSerializer.serialize(t.rawUrl), reason, NavigationSkippedCode.IgnoredSameUrlNavigation));
4489
4559
  t.resolve(null);
4490
4560
  return EMPTY;
4491
4561
  }
@@ -4545,7 +4615,7 @@ class NavigationTransitions {
4545
4615
  `Navigation was ignored because the UrlHandlingStrategy` +
4546
4616
  ` indicated neither the current URL ${t.currentRawUrl} nor target URL ${t.rawUrl} should be processed.` :
4547
4617
  '';
4548
- this.events.next(new NavigationSkipped(t.id, this.urlSerializer.serialize(t.extractedUrl), reason, 1 /* NavigationSkippedCode.IgnoredByUrlHandlingStrategy */));
4618
+ this.events.next(new NavigationSkipped(t.id, this.urlSerializer.serialize(t.extractedUrl), reason, NavigationSkippedCode.IgnoredByUrlHandlingStrategy));
4549
4619
  t.resolve(null);
4550
4620
  return EMPTY;
4551
4621
  }
@@ -4569,7 +4639,7 @@ class NavigationTransitions {
4569
4639
  this.events.next(guardsEnd);
4570
4640
  }), filter(t => {
4571
4641
  if (!t.guardsResult) {
4572
- this.cancelNavigationTransition(t, '', 3 /* NavigationCancellationCode.GuardRejected */);
4642
+ this.cancelNavigationTransition(t, '', NavigationCancellationCode.GuardRejected);
4573
4643
  return false;
4574
4644
  }
4575
4645
  return true;
@@ -4588,7 +4658,7 @@ class NavigationTransitions {
4588
4658
  if (!dataResolved) {
4589
4659
  this.cancelNavigationTransition(t, (typeof ngDevMode === 'undefined' || ngDevMode) ?
4590
4660
  `At least one route resolver didn't emit any value.` :
4591
- '', 2 /* NavigationCancellationCode.NoDataFromResolver */);
4661
+ '', NavigationCancellationCode.NoDataFromResolver);
4592
4662
  }
4593
4663
  }
4594
4664
  }));
@@ -4670,7 +4740,7 @@ class NavigationTransitions {
4670
4740
  `Navigation ID ${overallTransitionState
4671
4741
  .id} is not equal to the current navigation id ${this.navigationId}` :
4672
4742
  '';
4673
- this.cancelNavigationTransition(overallTransitionState, cancelationReason, 1 /* NavigationCancellationCode.SupersededByNewNavigation */);
4743
+ this.cancelNavigationTransition(overallTransitionState, cancelationReason, NavigationCancellationCode.SupersededByNewNavigation);
4674
4744
  }
4675
4745
  // Only clear current navigation if it is still set to the one that
4676
4746
  // finalized.
@@ -4740,10 +4810,10 @@ class NavigationTransitions {
4740
4810
  return extractedBrowserUrl.toString() !== this.currentTransition?.extractedUrl.toString() &&
4741
4811
  !this.currentTransition?.extras.skipLocationChange;
4742
4812
  }
4743
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NavigationTransitions, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4744
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NavigationTransitions, providedIn: 'root' }); }
4813
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: NavigationTransitions, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4814
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: NavigationTransitions, providedIn: 'root' }); }
4745
4815
  }
4746
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NavigationTransitions, decorators: [{
4816
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: NavigationTransitions, decorators: [{
4747
4817
  type: Injectable,
4748
4818
  args: [{ providedIn: 'root' }]
4749
4819
  }], ctorParameters: () => [] });
@@ -4759,10 +4829,10 @@ function isBrowserTriggeredNavigation(source) {
4759
4829
  * @publicApi
4760
4830
  */
4761
4831
  class RouteReuseStrategy {
4762
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouteReuseStrategy, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4763
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouteReuseStrategy, providedIn: 'root', useFactory: () => inject(DefaultRouteReuseStrategy) }); }
4832
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouteReuseStrategy, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4833
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouteReuseStrategy, providedIn: 'root', useFactory: () => inject(DefaultRouteReuseStrategy) }); }
4764
4834
  }
4765
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouteReuseStrategy, decorators: [{
4835
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouteReuseStrategy, decorators: [{
4766
4836
  type: Injectable,
4767
4837
  args: [{ providedIn: 'root', useFactory: () => inject(DefaultRouteReuseStrategy) }]
4768
4838
  }] });
@@ -4813,19 +4883,19 @@ class BaseRouteReuseStrategy {
4813
4883
  }
4814
4884
  }
4815
4885
  class DefaultRouteReuseStrategy extends BaseRouteReuseStrategy {
4816
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: DefaultRouteReuseStrategy, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
4817
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: DefaultRouteReuseStrategy, providedIn: 'root' }); }
4886
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: DefaultRouteReuseStrategy, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
4887
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: DefaultRouteReuseStrategy, providedIn: 'root' }); }
4818
4888
  }
4819
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: DefaultRouteReuseStrategy, decorators: [{
4889
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: DefaultRouteReuseStrategy, decorators: [{
4820
4890
  type: Injectable,
4821
4891
  args: [{ providedIn: 'root' }]
4822
4892
  }] });
4823
4893
 
4824
4894
  class StateManager {
4825
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: StateManager, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4826
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: StateManager, providedIn: 'root', useFactory: () => inject(HistoryStateManager) }); }
4895
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: StateManager, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4896
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: StateManager, providedIn: 'root', useFactory: () => inject(HistoryStateManager) }); }
4827
4897
  }
4828
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: StateManager, decorators: [{
4898
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: StateManager, decorators: [{
4829
4899
  type: Injectable,
4830
4900
  args: [{ providedIn: 'root', useFactory: () => inject(HistoryStateManager) }]
4831
4901
  }] });
@@ -4917,8 +4987,8 @@ class HistoryStateManager extends StateManager {
4917
4987
  }
4918
4988
  }
4919
4989
  else if (e instanceof NavigationCancel &&
4920
- (e.code === 3 /* NavigationCancellationCode.GuardRejected */ ||
4921
- e.code === 2 /* NavigationCancellationCode.NoDataFromResolver */)) {
4990
+ (e.code === NavigationCancellationCode.GuardRejected ||
4991
+ e.code === NavigationCancellationCode.NoDataFromResolver)) {
4922
4992
  this.restoreHistory(currentTransition);
4923
4993
  }
4924
4994
  else if (e instanceof NavigationError) {
@@ -5002,10 +5072,10 @@ class HistoryStateManager extends StateManager {
5002
5072
  }
5003
5073
  return { navigationId };
5004
5074
  }
5005
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: HistoryStateManager, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
5006
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: HistoryStateManager, providedIn: 'root' }); }
5075
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: HistoryStateManager, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
5076
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: HistoryStateManager, providedIn: 'root' }); }
5007
5077
  }
5008
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: HistoryStateManager, decorators: [{
5078
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: HistoryStateManager, decorators: [{
5009
5079
  type: Injectable,
5010
5080
  args: [{ providedIn: 'root' }]
5011
5081
  }] });
@@ -5033,8 +5103,8 @@ function afterNextNavigation(router, action) {
5033
5103
  return NavigationResult.COMPLETE;
5034
5104
  }
5035
5105
  const redirecting = e instanceof NavigationCancel ?
5036
- (e.code === 0 /* NavigationCancellationCode.Redirect */ ||
5037
- e.code === 1 /* NavigationCancellationCode.SupersededByNewNavigation */) :
5106
+ (e.code === NavigationCancellationCode.Redirect ||
5107
+ e.code === NavigationCancellationCode.SupersededByNewNavigation) :
5038
5108
  false;
5039
5109
  return redirecting ? NavigationResult.REDIRECTING : NavigationResult.FAILED;
5040
5110
  }), filter((result) => result !== NavigationResult.REDIRECTING), take(1))
@@ -5175,8 +5245,8 @@ class Router {
5175
5245
  const currentNavigation = this.navigationTransitions.currentNavigation;
5176
5246
  if (currentTransition !== null && currentNavigation !== null) {
5177
5247
  this.stateManager.handleRouterEvent(e, currentNavigation);
5178
- if (e instanceof NavigationCancel && e.code !== 0 /* NavigationCancellationCode.Redirect */ &&
5179
- e.code !== 1 /* NavigationCancellationCode.SupersededByNewNavigation */) {
5248
+ if (e instanceof NavigationCancel && e.code !== NavigationCancellationCode.Redirect &&
5249
+ e.code !== NavigationCancellationCode.SupersededByNewNavigation) {
5180
5250
  // It seems weird that `navigated` is set to `true` when the navigation is rejected,
5181
5251
  // however it's how things were written initially. Investigation would need to be done
5182
5252
  // to determine if this can be removed.
@@ -5578,10 +5648,10 @@ class Router {
5578
5648
  return Promise.reject(e);
5579
5649
  });
5580
5650
  }
5581
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: Router, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5582
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: Router, providedIn: 'root' }); }
5651
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: Router, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5652
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: Router, providedIn: 'root' }); }
5583
5653
  }
5584
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: Router, decorators: [{
5654
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: Router, decorators: [{
5585
5655
  type: Injectable,
5586
5656
  args: [{ providedIn: 'root' }]
5587
5657
  }], ctorParameters: () => [] });
@@ -5852,10 +5922,10 @@ class RouterLink {
5852
5922
  preserveFragment: this.preserveFragment,
5853
5923
  });
5854
5924
  }
5855
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterLink, deps: [{ token: Router }, { token: ActivatedRoute }, { token: 'tabindex', attribute: true }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i3.LocationStrategy }], target: i0.ɵɵFactoryTarget.Directive }); }
5856
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.3", type: RouterLink, isStandalone: true, selector: "[routerLink]", inputs: { target: "target", queryParams: "queryParams", fragment: "fragment", queryParamsHandling: "queryParamsHandling", state: "state", relativeTo: "relativeTo", preserveFragment: ["preserveFragment", "preserveFragment", booleanAttribute], skipLocationChange: ["skipLocationChange", "skipLocationChange", booleanAttribute], replaceUrl: ["replaceUrl", "replaceUrl", booleanAttribute], routerLink: "routerLink" }, host: { listeners: { "click": "onClick($event.button,$event.ctrlKey,$event.shiftKey,$event.altKey,$event.metaKey)" }, properties: { "attr.target": "this.target" } }, usesOnChanges: true, ngImport: i0 }); }
5925
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouterLink, deps: [{ token: Router }, { token: ActivatedRoute }, { token: 'tabindex', attribute: true }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i3.LocationStrategy }], target: i0.ɵɵFactoryTarget.Directive }); }
5926
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.1.0-next.0", type: RouterLink, isStandalone: true, selector: "[routerLink]", inputs: { target: "target", queryParams: "queryParams", fragment: "fragment", queryParamsHandling: "queryParamsHandling", state: "state", relativeTo: "relativeTo", preserveFragment: ["preserveFragment", "preserveFragment", booleanAttribute], skipLocationChange: ["skipLocationChange", "skipLocationChange", booleanAttribute], replaceUrl: ["replaceUrl", "replaceUrl", booleanAttribute], routerLink: "routerLink" }, host: { listeners: { "click": "onClick($event.button,$event.ctrlKey,$event.shiftKey,$event.altKey,$event.metaKey)" }, properties: { "attr.target": "this.target" } }, usesOnChanges: true, ngImport: i0 }); }
5857
5927
  }
5858
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterLink, decorators: [{
5928
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouterLink, decorators: [{
5859
5929
  type: Directive,
5860
5930
  args: [{
5861
5931
  selector: '[routerLink]',
@@ -6078,10 +6148,10 @@ class RouterLinkActive {
6078
6148
  const isActiveCheckFn = this.isLinkActive(this.router);
6079
6149
  return this.link && isActiveCheckFn(this.link) || this.links.some(isActiveCheckFn);
6080
6150
  }
6081
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterLinkActive, deps: [{ token: Router }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: RouterLink, optional: true }], target: i0.ɵɵFactoryTarget.Directive }); }
6082
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.3", type: RouterLinkActive, isStandalone: true, selector: "[routerLinkActive]", inputs: { routerLinkActiveOptions: "routerLinkActiveOptions", ariaCurrentWhenActive: "ariaCurrentWhenActive", routerLinkActive: "routerLinkActive" }, outputs: { isActiveChange: "isActiveChange" }, queries: [{ propertyName: "links", predicate: RouterLink, descendants: true }], exportAs: ["routerLinkActive"], usesOnChanges: true, ngImport: i0 }); }
6151
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouterLinkActive, deps: [{ token: Router }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: RouterLink, optional: true }], target: i0.ɵɵFactoryTarget.Directive }); }
6152
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.1.0-next.0", type: RouterLinkActive, isStandalone: true, selector: "[routerLinkActive]", inputs: { routerLinkActiveOptions: "routerLinkActiveOptions", ariaCurrentWhenActive: "ariaCurrentWhenActive", routerLinkActive: "routerLinkActive" }, outputs: { isActiveChange: "isActiveChange" }, queries: [{ propertyName: "links", predicate: RouterLink, descendants: true }], exportAs: ["routerLinkActive"], usesOnChanges: true, ngImport: i0 }); }
6083
6153
  }
6084
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterLinkActive, decorators: [{
6154
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouterLinkActive, decorators: [{
6085
6155
  type: Directive,
6086
6156
  args: [{
6087
6157
  selector: '[routerLinkActive]',
@@ -6133,10 +6203,10 @@ class PreloadAllModules {
6133
6203
  preload(route, fn) {
6134
6204
  return fn().pipe(catchError(() => of(null)));
6135
6205
  }
6136
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: PreloadAllModules, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
6137
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: PreloadAllModules, providedIn: 'root' }); }
6206
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: PreloadAllModules, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
6207
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: PreloadAllModules, providedIn: 'root' }); }
6138
6208
  }
6139
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: PreloadAllModules, decorators: [{
6209
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: PreloadAllModules, decorators: [{
6140
6210
  type: Injectable,
6141
6211
  args: [{ providedIn: 'root' }]
6142
6212
  }] });
@@ -6153,10 +6223,10 @@ class NoPreloading {
6153
6223
  preload(route, fn) {
6154
6224
  return of(null);
6155
6225
  }
6156
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NoPreloading, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
6157
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NoPreloading, providedIn: 'root' }); }
6226
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: NoPreloading, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
6227
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: NoPreloading, providedIn: 'root' }); }
6158
6228
  }
6159
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: NoPreloading, decorators: [{
6229
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: NoPreloading, decorators: [{
6160
6230
  type: Injectable,
6161
6231
  args: [{ providedIn: 'root' }]
6162
6232
  }] });
@@ -6249,10 +6319,10 @@ class RouterPreloader {
6249
6319
  }
6250
6320
  });
6251
6321
  }
6252
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterPreloader, deps: [{ token: Router }, { token: i0.Compiler }, { token: i0.EnvironmentInjector }, { token: PreloadingStrategy }, { token: RouterConfigLoader }], target: i0.ɵɵFactoryTarget.Injectable }); }
6253
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterPreloader, providedIn: 'root' }); }
6322
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouterPreloader, deps: [{ token: Router }, { token: i0.Compiler }, { token: i0.EnvironmentInjector }, { token: PreloadingStrategy }, { token: RouterConfigLoader }], target: i0.ɵɵFactoryTarget.Injectable }); }
6323
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouterPreloader, providedIn: 'root' }); }
6254
6324
  }
6255
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterPreloader, decorators: [{
6325
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouterPreloader, decorators: [{
6256
6326
  type: Injectable,
6257
6327
  args: [{ providedIn: 'root' }]
6258
6328
  }], ctorParameters: () => [{ type: Router }, { type: i0.Compiler }, { type: i0.EnvironmentInjector }, { type: PreloadingStrategy }, { type: RouterConfigLoader }] });
@@ -6297,7 +6367,7 @@ class RouterScroller {
6297
6367
  this.scheduleScrollEvent(e, this.urlSerializer.parse(e.urlAfterRedirects).fragment);
6298
6368
  }
6299
6369
  else if (e instanceof NavigationSkipped &&
6300
- e.code === 0 /* NavigationSkippedCode.IgnoredSameUrlNavigation */) {
6370
+ e.code === NavigationSkippedCode.IgnoredSameUrlNavigation) {
6301
6371
  this.lastSource = undefined;
6302
6372
  this.restoredId = 0;
6303
6373
  this.scheduleScrollEvent(e, this.urlSerializer.parse(e.url).fragment);
@@ -6345,10 +6415,10 @@ class RouterScroller {
6345
6415
  this.routerEventsSubscription?.unsubscribe();
6346
6416
  this.scrollEventsSubscription?.unsubscribe();
6347
6417
  }
6348
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterScroller, deps: "invalid", target: i0.ɵɵFactoryTarget.Injectable }); }
6349
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterScroller }); }
6418
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouterScroller, deps: "invalid", target: i0.ɵɵFactoryTarget.Injectable }); }
6419
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouterScroller }); }
6350
6420
  }
6351
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterScroller, decorators: [{
6421
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouterScroller, decorators: [{
6352
6422
  type: Injectable
6353
6423
  }], ctorParameters: () => [{ type: UrlSerializer }, { type: NavigationTransitions }, { type: i3.ViewportScroller }, { type: i0.NgZone }, { type: undefined }] });
6354
6424
 
@@ -6989,11 +7059,11 @@ class RouterModule {
6989
7059
  providers: [{ provide: ROUTES, multi: true, useValue: routes }],
6990
7060
  };
6991
7061
  }
6992
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterModule, deps: [{ token: ROUTER_FORROOT_GUARD, optional: true }], target: i0.ɵɵFactoryTarget.NgModule }); }
6993
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.0.3", ngImport: i0, type: RouterModule, imports: [RouterOutlet, RouterLink, RouterLinkActive, ɵEmptyOutletComponent], exports: [RouterOutlet, RouterLink, RouterLinkActive, ɵEmptyOutletComponent] }); }
6994
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterModule }); }
7062
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouterModule, deps: [{ token: ROUTER_FORROOT_GUARD, optional: true }], target: i0.ɵɵFactoryTarget.NgModule }); }
7063
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouterModule, imports: [RouterOutlet, RouterLink, RouterLinkActive, ɵEmptyOutletComponent], exports: [RouterOutlet, RouterLink, RouterLinkActive, ɵEmptyOutletComponent] }); }
7064
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouterModule }); }
6995
7065
  }
6996
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.3", ngImport: i0, type: RouterModule, decorators: [{
7066
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.0-next.0", ngImport: i0, type: RouterModule, decorators: [{
6997
7067
  type: NgModule,
6998
7068
  args: [{
6999
7069
  imports: ROUTER_DIRECTIVES,
@@ -7138,7 +7208,7 @@ function mapToResolve(provider) {
7138
7208
  /**
7139
7209
  * @publicApi
7140
7210
  */
7141
- const VERSION = new Version('17.0.3');
7211
+ const VERSION = new Version('17.1.0-next.0');
7142
7212
 
7143
7213
  /**
7144
7214
  * @module
@@ -7153,5 +7223,5 @@ const VERSION = new Version('17.0.3');
7153
7223
  * Generated bundle index. Do not edit.
7154
7224
  */
7155
7225
 
7156
- export { ActivatedRoute, ActivatedRouteSnapshot, ActivationEnd, ActivationStart, BaseRouteReuseStrategy, ChildActivationEnd, ChildActivationStart, ChildrenOutletContexts, DefaultTitleStrategy, DefaultUrlSerializer, GuardsCheckEnd, GuardsCheckStart, NavigationCancel, NavigationEnd, NavigationError, NavigationSkipped, NavigationStart, NoPreloading, OutletContext, PRIMARY_OUTLET, PreloadAllModules, PreloadingStrategy, ROUTER_CONFIGURATION, ROUTER_INITIALIZER, ROUTES, ResolveEnd, ResolveStart, RouteConfigLoadEnd, RouteConfigLoadStart, RouteReuseStrategy, Router, RouterEvent, RouterLink, RouterLinkActive, RouterLink as RouterLinkWithHref, RouterModule, RouterOutlet, RouterPreloader, RouterState, RouterStateSnapshot, RoutesRecognized, Scroll, TitleStrategy, UrlHandlingStrategy, UrlSegment, UrlSegmentGroup, UrlSerializer, UrlTree, VERSION, convertToParamMap, createUrlTreeFromSnapshot, defaultUrlMatcher, mapToCanActivate, mapToCanActivateChild, mapToCanDeactivate, mapToCanMatch, mapToResolve, provideRouter, provideRoutes, withComponentInputBinding, withDebugTracing, withDisabledInitialNavigation, withEnabledBlockingInitialNavigation, withHashLocation, withInMemoryScrolling, withNavigationErrorHandler, withPreloading, withRouterConfig, withViewTransitions, ɵEmptyOutletComponent, ROUTER_PROVIDERS as ɵROUTER_PROVIDERS, afterNextNavigation as ɵafterNextNavigation, loadChildren as ɵloadChildren };
7226
+ export { ActivatedRoute, ActivatedRouteSnapshot, ActivationEnd, ActivationStart, BaseRouteReuseStrategy, ChildActivationEnd, ChildActivationStart, ChildrenOutletContexts, DefaultTitleStrategy, DefaultUrlSerializer, EventType, GuardsCheckEnd, GuardsCheckStart, NavigationCancel, NavigationCancellationCode, NavigationEnd, NavigationError, NavigationSkipped, NavigationSkippedCode, NavigationStart, NoPreloading, OutletContext, PRIMARY_OUTLET, PreloadAllModules, PreloadingStrategy, ROUTER_CONFIGURATION, ROUTER_INITIALIZER, ROUTES, ResolveEnd, ResolveStart, RouteConfigLoadEnd, RouteConfigLoadStart, RouteReuseStrategy, Router, RouterEvent, RouterLink, RouterLinkActive, RouterLink as RouterLinkWithHref, RouterModule, RouterOutlet, RouterPreloader, RouterState, RouterStateSnapshot, RoutesRecognized, Scroll, TitleStrategy, UrlHandlingStrategy, UrlSegment, UrlSegmentGroup, UrlSerializer, UrlTree, VERSION, convertToParamMap, createUrlTreeFromSnapshot, defaultUrlMatcher, mapToCanActivate, mapToCanActivateChild, mapToCanDeactivate, mapToCanMatch, mapToResolve, provideRouter, provideRoutes, withComponentInputBinding, withDebugTracing, withDisabledInitialNavigation, withEnabledBlockingInitialNavigation, withHashLocation, withInMemoryScrolling, withNavigationErrorHandler, withPreloading, withRouterConfig, withViewTransitions, ɵEmptyOutletComponent, ROUTER_PROVIDERS as ɵROUTER_PROVIDERS, afterNextNavigation as ɵafterNextNavigation, loadChildren as ɵloadChildren };
7157
7227
  //# sourceMappingURL=router.mjs.map