angular-cn/modules/@angular/compiler/test
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
..
animation fix(testing): correctly import NgMatchers (#10077) 2016-07-22 09:20:51 -07:00
css_parser chore(imports): don't import ExceptionHandler from facade (#10620) 2016-08-10 15:55:18 -07:00
expression_parser refactor(compiler): html_parser -> ml_parser 2016-08-05 13:39:54 -07:00
i18n feat(i18n): xliff integration 2016-08-15 22:28:38 -07:00
ml_parser chore(imports): don't import ExceptionHandler from facade (#10620) 2016-08-10 15:55:18 -07:00
output refactor(OutputAst): BuiltinMethod.bind renamed to Bind (#10739) 2016-08-14 10:04:37 -07:00
schema refactor(compiler): html_parser -> ml_parser 2016-08-05 13:39:54 -07:00
template_parser fix(animations): remove deprecated trigger APIs (#10825) 2016-08-16 14:09:21 -07:00
directive_lifecycle_spec.ts chore(facade): remove most facade/async functions 2016-08-05 12:26:28 -07:00
directive_normalizer_spec.ts refactor(testing): introduce new testing api to support ng modules 2016-07-29 04:47:18 -07:00
directive_resolver_mock_spec.ts refactor(core/testing): remove deprecated ViewMetadata (#10837) 2016-08-16 13:59:06 -07:00
directive_resolver_spec.ts refactor(core): remove `ViewResolver` and `ViewResolverMock` 2016-07-29 04:47:17 -07:00
metadata_overrider_spec.ts fix(testing): override metadata subclasses properly (#10767) 2016-08-12 17:39:33 -07:00
metadata_resolver_fixture.ts chore(lint): Added license headers to most TypeScript files 2016-06-23 09:47:54 -07:00
metadata_resolver_spec.ts refactor(core): collect lifecycle hooks for all injectable classes 2016-08-02 11:23:26 -07:00
ng_module_resolver_mock_spec.ts chore(facade): remove most facade/async functions 2016-08-05 12:26:28 -07:00
ng_module_resolver_spec.ts refactor(core): remove `ViewResolver` and `ViewResolverMock` 2016-07-29 04:47:17 -07:00
pipe_resolver_mock_spec.ts chore(facade): remove most facade/async functions 2016-08-05 12:26:28 -07:00
runtime_compiler_spec.ts refactor(core/testing): remove deprecated ViewMetadata (#10837) 2016-08-16 13:59:06 -07:00
selector_spec.ts chore(tests): enable lint, make it green. (#10224) 2016-07-21 17:12:00 -07:00
shadow_css_spec.ts refactor(core): Replace all `var` with `const` and `let` 2016-08-14 10:10:07 -07:00
spies.ts chore(lint): Added license headers to most TypeScript files 2016-06-23 09:47:54 -07:00
style_url_resolver_spec.ts refactor: dart 2016-08-01 11:34:51 -07:00
test_bindings.ts feat(testing): add implicit test module 2016-07-06 18:04:19 -07:00
test_component_builder_spec.ts refactor(core/testing): remove deprecated ViewMetadata (#10837) 2016-08-16 13:59:06 -07:00
url_resolver_spec.ts refactor: IS_DART === false 2016-08-01 11:34:51 -07:00
util_spec.ts fix: String.split(str, n) stops after n separator (#10408) 2016-08-01 11:33:35 -07:00
xhr_mock_spec.ts chore(facade): remove most facade/async functions 2016-08-05 12:26:28 -07:00