angular/modules/angular2/test/render/dom
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
events refactor(render): ts’ify tests 2015-05-26 09:38:26 -07:00
shadow_dom fix(shadow_dom): moves the imported nodes into the correct location. 2015-06-10 13:50:12 -07:00
view refactor(render): don’t use a global cache for property setters 2015-06-05 13:11:23 -07:00
convert_spec.ts feat(Directive): Have a single Directive.host which mimics HTML 2015-06-11 13:11:09 -07:00
dom_renderer_integration_spec.ts feat(Directive): Have a single Directive.host which mimics HTML 2015-06-11 13:11:09 -07:00
dom_testbed.ts refactor(render): add DomElement 2015-06-04 11:44:26 -07:00
shadow_dom_emulation_integration_spec.ts feat(Directive): Have a single Directive.host which mimics HTML 2015-06-11 13:11:09 -07:00