Angular 4 New Features
- Smaller and Faster -
- View Engine -
- Animation Package (Angular Animations) -
Define reusable animations using animation()
Query for inner elements within animations using query()
Stagger multiple elements within an animation using stagger()
Enable queried elements to trigger their own animations
Orchestrate a full-blown animation when routes change
Programmatically build/control an animation using AnimationBuilder
- Angular Forms -
- Improved *ngIf and *ngFor
<div *ngIf="userList | async as users; else loading">
<user-profile *ngFor="let user of users; count as count; index as i" [user]="user">
User {{i}} of {{count}}
</user-profile>
</div>
<ng-template #loading>Loading...</ng-template>
- TypeScript compatibility
- Improvements
Improved support for @angular/platform-server
Configurable scrolling strategies for Overlays
Strict-null checks and no-unused-params compliance
Typography extension to theming
- HttpClient
- router life cycle events
Comments
Post a Comment