mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
BREAKING CHANGE
The ROUTE_DATA token has been removed and replaced with a type RouteData,
allowing a type injection like we do with RouteParams.
Before:
constructor(routeParams: RouteParams, @Inject(ROUTE_DATA) routeData) {
let id = routeParams.get('id');
let name = ROUTE_DATA.name;
}
After:
constructor(routeParams: RouteParams, routeData: RouteData) {
let id = routeParams.get('id');
let name = routeData.get('name');
}
Fixes #4392
Closes #4428
|
||
|---|---|---|
| .. | ||
| animate | ||
| core | ||
| http | ||
| mock | ||
| pipes | ||
| router | ||
| symbol_inspector | ||
| testing | ||
| tools | ||
| web_workers | ||
| platform.dart | ||
| platform.ts | ||
| public_api_spec.ts | ||