angular/modules/benchmarks/src
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
..
change_detection refactor(core): move render/dom from core 2015-11-17 15:53:55 -08:00
compiler cleanup: move DomAdapter from angular2/core into angular2/platform/common_dom 2015-11-20 00:14:24 +00:00
costs feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
di refactor(core): move render/dom from core 2015-11-17 15:53:55 -08:00
element_injector refactor(core): move render/dom from core 2015-11-17 15:53:55 -08:00
largetable feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
naive_infinite_scroll feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
static_tree feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
tree feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
index.html feat(benchmark): add static_tree benchmark 2015-07-22 10:58:50 -07:00