angular-cn/tools/public_api_guard
Misko Hevery b4db73d0bf feat: ngIf now supports else; saves condition to local var
NgIf syntax has been extended to support else clause to display template
when the condition is false. In addition the condition value can now
be stored in local variable, for later reuse. This is especially useful
when used with the `async` pipe.

Example:

```
<div *ngIf="userObservable | async; else loading; let user">
  Hello {{user.last}}, {{user.first}}!
</div>
<template #loading>Waiting...</template>
```

closes #13061
closes #13297
2016-12-09 11:19:08 -08:00
..
common feat: ngIf now supports else; saves condition to local var 2016-12-09 11:19:08 -08:00
compiler fix(packages): use ES modules for primary build (#11120) 2016-08-30 18:07:40 -07:00
core feat(build): record angular version in the dom (#13164) 2016-11-30 13:52:08 -08:00
forms feat(build): record angular version in the dom (#13164) 2016-11-30 13:52:08 -08:00
http feat(build): record angular version in the dom (#13164) 2016-11-30 13:52:08 -08:00
platform-browser feat(platform browser): introduce Meta service (#12322) 2016-12-08 18:44:28 -08:00
platform-browser-dynamic feat(build): record angular version in the dom (#13164) 2016-11-30 13:52:08 -08:00
platform-server feat(build): record angular version in the dom (#13164) 2016-11-30 13:52:08 -08:00
platform-webworker feat(build): record angular version in the dom (#13164) 2016-11-30 13:52:08 -08:00
platform-webworker-dynamic feat(build): record angular version in the dom (#13164) 2016-11-30 13:52:08 -08:00
router refactor(router): misc refactoring (#13330) 2016-12-09 10:44:46 -08:00
upgrade feat(build): record angular version in the dom (#13164) 2016-11-30 13:52:08 -08:00