Pawel Kozlowski
|
8d3e5596dc
|
refactor(playground): remove imports from 'angular2/angular2'
Part of #5710
Closes #5798
|
2015-12-10 21:46:51 +00:00 |
|
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 |
|
Rob Wormald
|
3fa287aae2
|
refactor(EventEmitter): rename .next() to .emit()
BREAKING CHANGE:
EventEmitter#next(value) is deprecated, use EventEmitter#emit(value)
instead.
Closes #4287
Closes #5302
|
2015-11-18 22:16:40 +00:00 |
|
Misko Hevery
|
1b78342e23
|
chore(ngUpgrade): Move into Angular2
This is moving ngUpgrade into the main repository per #4838.
The ngUpgrade is published from the main import consistent with
https://docs.google.com/document/d/1rbVTKTYLz6p2smQNYI8h4-QN-m2PS6F3iQIDmSzn0Ww/edit#heading=h.6cxvr9awtf5r
Closes #4931
|
2015-10-31 20:48:27 -07:00 |
|
Misko Hevery
|
9d0d33f95a
|
feat(ngUpgrade): simple example
|
2015-10-19 12:43:28 -07:00 |
|