angular/modules/angular2/test
Victor Berchet f3b49378e4 feat(Directive): Have a single Directive.host which mimics HTML
fixes #2268

BREAKING CHANGE:

Before

    @Directive({
      hostListeners: {'event': 'statement'},
      hostProperties: {'expression': 'hostProp'},
      hostAttributes: {'attr': 'value'},
      hostActions: {'action': 'statement'}
    })

After

    @Directive({
      host: {
        '(event)': 'statement',
        '[hostProp]': 'expression'  // k & v swapped
        'attr': 'value',
        '@action': 'statement'
      }
    })
2015-06-11 13:11:09 -07:00
..
benchmark/transform chore(benchmarks): add transform benchmark runner and clean up benchmark output 2015-05-07 10:36:04 -07:00
change_detection fix(Parser): Parse pipes in arguments 2015-06-11 21:02:40 +02:00
core feat(Directive): Have a single Directive.host which mimics HTML 2015-06-11 13:11:09 -07:00
debug feat(test): add element probe 2015-05-29 12:44:21 -07:00
di fix: Improve error message on missing dependency 2015-06-10 16:40:38 -07:00
directives refactor (test/directives): ts'ify test/directives 2015-05-26 16:51:38 -07:00
dom refactor: update Dart package dependencies 2015-03-25 15:54:12 -07:00
facade refactor(lang_spec): Add missing ;s and clang-format 2015-06-02 21:09:38 +02:00
forms feat(Directive): Have a single Directive.host which mimics HTML 2015-06-11 13:11:09 -07:00
http feat(http): add basic http service 2015-06-09 10:00:04 -07:00
mock refactor(xhr): move render's xhr implementation to render/ 2015-06-09 10:28:35 -07:00
reflection style(dart): Format Dart source with dart_style 0.1.8 2015-05-29 10:42:47 -07:00
render feat(Directive): Have a single Directive.host which mimics HTML 2015-06-11 13:11:09 -07:00
router feat(router): add routing to async components 2015-06-08 15:49:56 -07:00
services refactor(xhr): move render's xhr implementation to render/ 2015-06-09 10:28:35 -07:00
test_lib chore: update zone.js to 0.5.1 2015-06-10 23:41:45 +02:00
transform feat(dart/transform): Allow absolute urls in templates 2015-06-11 09:35:17 -07:00