angular-cn/modules/angular2/docs/core
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
..
00_index.md chore(packaging): move files to match target file structure 2015-02-05 15:46:13 -08:00
01_templates.md feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
02_directives.md feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
03_pipes.md docs(core): fix Formatters -> Pipes 2015-05-08 13:45:13 -07:00
04_decorator_directive.md chore(packaging): move files to match target file structure 2015-02-05 15:46:13 -08:00
05_component_directive.md chore(packaging): move files to match target file structure 2015-02-05 15:46:13 -08:00
06_viewport_directive.md refactor(ViewPort): @Template -> @Viewport, ViewPort -> ViewContainer 2015-02-13 17:48:27 +01:00
07_services.md chore(packaging): move files to match target file structure 2015-02-05 15:46:13 -08:00
08_lifecycle.md chore(packaging): move files to match target file structure 2015-02-05 15:46:13 -08:00
09_compilation.md chore(packaging): move files to match target file structure 2015-02-05 15:46:13 -08:00
10_view.md feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
11_shadow_dom.md chore(packaging): move files to match target file structure 2015-02-05 15:46:13 -08:00
12_zones.md doc: fix & sync with latest updates 2015-05-18 23:11:45 +02:00