angular/modules/angular2/src/router
Victor Berchet da9b46a071 feat: camelCase Angular (kebab-case removal)
BREAKING CHANGE:

Angular is now fully camel case.

Before:

    <p *ng-if="cond">
    <my-cmp [my-prop]="exp">
    <my-cmp (my-event)="action()">
    <my-cmp [(my-prop)]="prop">
    <input #my-input>
    <template ng-for #my-item [ng-for-of]=items #my-index="index">

After

    <p *ngIf="cond">
    <my-cmp [myProp]="exp">
    <my-cmp (myEvent)="action()">
    <my-cmp [(myProp)]="prop">
    <input #myInput>`,
    <template ngFor="#my-item" [ngForOf]=items #myIndex="index">

The full details are found in [angular2/docs/migration/kebab-case.md](https://github.com/angular/angular/blob/master/modules/angular2/docs/migration/kebab-case.md)
2015-12-09 19:59:40 -08:00
..
async_route_handler.ts refactor(router): improve recognition and generation pipeline 2015-11-30 17:06:03 +00:00
component_recognizer.ts refactor(router): improve recognition and generation pipeline 2015-11-30 17:06:03 +00:00
hash_location_strategy.ts fix(router): set correct redirect/default URL from hashchange 2015-12-08 22:34:19 +00:00
instruction.ts refactor(router): improve recognition and generation pipeline 2015-11-30 17:06:03 +00:00
interfaces.ts refactor(lifecycle): prefix lifecycle methods with "ng" 2015-11-30 16:40:50 -08:00
lifecycle_annotations.dart feat(router): lifecycle hooks 2015-07-13 09:12:15 -07:00
lifecycle_annotations.ts refactor(lifecycle): prefix lifecycle methods with "ng" 2015-11-30 16:40:50 -08:00
lifecycle_annotations_impl.ts refactor(lifecycle): prefix lifecycle methods with "ng" 2015-11-30 16:40:50 -08:00
location.ts fix(router): set correct redirect/default URL from hashchange 2015-12-08 22:34:19 +00:00
location_strategy.ts fix(router): set correct redirect/default URL from hashchange 2015-12-08 22:34:19 +00:00
package.json chore(): npm release script for router artifacts. 2015-11-09 20:45:55 +00:00
path_location_strategy.ts fix(router): set correct redirect/default URL from hashchange 2015-12-08 22:34:19 +00:00
path_recognizer.ts refactor(router): improve recognition and generation pipeline 2015-11-30 17:06:03 +00:00
platform_location.ts fix(router): set correct redirect/default URL from hashchange 2015-12-08 22:34:19 +00:00
route_config_decorator.dart refactor(router): convert to typescript 2015-06-02 11:06:44 -07:00
route_config_decorator.ts chore(ts2dart): replace List with Array 2015-08-31 21:32:10 +00:00
route_config_impl.ts refactor(router): improve recognition and generation pipeline 2015-11-30 17:06:03 +00:00
route_config_nomalizer.dart refactor(router): improve recognition and generation pipeline 2015-11-30 17:06:03 +00:00
route_config_nomalizer.ts refactor(router): improve recognition and generation pipeline 2015-11-30 17:06:03 +00:00
route_definition.dart refactor(router): improve recognition and generation pipeline 2015-11-30 17:06:03 +00:00
route_definition.ts refactor(router): improve recognition and generation pipeline 2015-11-30 17:06:03 +00:00
route_handler.ts refactor(router): improve recognition and generation pipeline 2015-11-30 17:06:03 +00:00
route_lifecycle_reflector.dart refactor(lifecycle): prefix lifecycle methods with "ng" 2015-11-30 16:40:50 -08:00
route_lifecycle_reflector.ts refactor(core): move facades out of core 2015-11-07 01:36:06 +00:00
route_recognizer.ts refactor(router): improve recognition and generation pipeline 2015-11-30 17:06:03 +00:00
route_registry.ts fix(router): fix a typing issue 2015-12-01 00:09:40 +00:00
router.ts build(npm): update to typescript@1.7.3 + fix broccoli-typescript + fix src 2015-12-10 01:32:44 +00:00
router_link.ts feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
router_link_transform.ts feat(router): implement router link DSL 2015-12-04 00:47:20 +00:00
router_outlet.ts refactor(lifecycle): prefix lifecycle methods with "ng" 2015-11-30 16:40:50 -08:00
sync_route_handler.ts refactor(router): improve recognition and generation pipeline 2015-11-30 17:06:03 +00:00
url_parser.ts refactor(core): move facades out of core 2015-11-07 01:36:06 +00:00