mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
BREACKING CHANGE:
Before: @Directive({properties: ['one'], events: ['two']})
After: @Directive({inputs: ['one'], outputs: ['two']})
Before: @Component({properties: ['one'], events: ['two']})
After: @Componet({inputs: ['one'], outputs: ['two']})
Before: class A {@Property() one; @Event() two;}
After: class A {@Input() one; @Output() two;}
|
||
|---|---|---|
| .. | ||
| async.dart | ||
| async.ts | ||
| browser.dart | ||
| browser.ts | ||
| collection.dart | ||
| collection.ts | ||
| exception_handler.ts | ||
| exceptions.dart | ||
| exceptions.ts | ||
| intl.dart | ||
| intl.ts | ||
| lang.dart | ||
| lang.ts | ||
| math.dart | ||
| math.ts | ||