mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
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 |
||
|---|---|---|
| .. | ||
| template_parser_spec.ts | ||
| template_preparser_spec.ts | ||