angular/modules/angular2/test
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
..
animate cleanup: move DomAdapter from angular2/core into angular2/platform/common_dom 2015-11-20 00:14:24 +00:00
common feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
compiler feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
core feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
facade feat(core): provide support for relative assets for components 2015-12-09 16:28:49 -08:00
http refactor(http): rename enums to be singular 2015-12-04 19:16:00 +00:00
mock refactor(core): move facades out of core 2015-11-07 01:36:06 +00:00
platform fix(bootstrap): fix the configuration of ExceptionHandler 2015-12-08 16:09:37 -08:00
router feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
symbol_inspector chore(test): fix public API test failure when no support of Symbol.for 2015-11-10 11:23:01 +01:00
testing feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
upgrade feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
web_workers feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
dev_mode_spec.ts test: add a test verifying that the tests are run in the checked mode 2015-12-02 11:29:11 -08:00
public_api_spec.ts feat(core): provide support for relative assets for components 2015-12-09 16:28:49 -08:00