angular/modules/angular2/test/core
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
..
compiler feat(Directive): Have a single Directive.host which mimics HTML 2015-06-11 13:11:09 -07:00
life_cycle fix(life_cycle): throw when recursively reentering LifeCycle.tick 2015-06-11 07:43:14 -07:00
testability refactor(core): ts’ify tests 2015-05-26 17:01:31 -07:00
zone fix(ng_zone): updated zone not to run onTurnDown when invoking run synchronously from onTurnDone 2015-06-11 07:43:13 -07:00
application_spec.ts refactor(core): ts’ify tests 2015-05-26 17:01:31 -07:00
directive_lifecycle_integration_spec.ts chore: move to clang-format 1.0.17. 2015-06-03 15:27:27 -07:00
forward_ref_integration_spec.dart feat: allow for forward references in injection 2015-05-15 21:12:57 -07:00
forward_ref_integration_spec.ts fix(types): parametrize QueryList. 2015-06-03 17:08:55 -07:00