angular/modules/@angular/compiler
Matias Niemelä 9adf80385b fix(animations): remove deprecated trigger APIs (#10825)
BREAKING CHANGE: Animations defined using an at-symbol prefix that are
not property bound are now invalid.

```html
<!-- this is now invalid -->
<div @flip="flipState"></div>

<!-- change that to -->
<div [@flip]="flipState"></div>
```

BREAKING CHANGE: Animations that are not bound using the at-symbol
prefix using `animate-` must now be preixed using `bind-animate-`.

```html
<!-- this is now invalid -->
<div animate-flip="flipState"></div>

<!-- is valid now -->
<div bind-animate-flip="flipState"></div>
```

Closes #10825
2016-08-16 14:09:21 -07:00
..
src fix(animations): remove deprecated trigger APIs (#10825) 2016-08-16 14:09:21 -07:00
test fix(animations): remove deprecated trigger APIs (#10825) 2016-08-16 14:09:21 -07:00
testing refactor(core/testing): remove deprecated ViewMetadata (#10837) 2016-08-16 13:59:06 -07:00
core_private.ts refactor(core/testing): remove deprecated ViewMetadata (#10837) 2016-08-16 13:59:06 -07:00
core_private_testing.ts refactor(testing): remove deprecated testing functions (#10832) 2016-08-15 21:40:37 -07:00
index.ts feat(i18n): xliff integration 2016-08-15 22:28:38 -07:00
package.json chore(package.json): make the packages installable 2016-05-27 17:21:34 -07:00
private_export.ts refactor(compiler): html_parser -> ml_parser 2016-08-05 13:39:54 -07:00
rollup.config.js build: fix source map paths for npm packages 2016-05-03 13:36:33 -06:00
testing.ts refactor(Type): merge Type and ConcreType<?> into Type<?> (#10616) 2016-08-10 18:21:28 -07:00
tsconfig-es5.json chore(tsickle): add @Annotation annotations 2016-06-16 12:29:46 -07:00
tsconfig-es2015.json chore(tsickle): add @Annotation annotations 2016-06-16 12:29:46 -07:00