angular/modules/angular2/test/forms
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
..
directives_spec.ts feat(forms): added support for status classes 2015-06-03 14:43:46 -07:00
form_builder_spec.ts chore(forms): moved tests/forms to typescript 2015-05-22 14:44:57 -07:00
integration_spec.ts feat(Directive): Have a single Directive.host which mimics HTML 2015-06-11 13:11:09 -07:00
model_spec.ts feat(forms): added hasError and getError methods to all controls 2015-06-09 11:51:08 -07:00
validators_spec.ts chore(forms): moved tests/forms to typescript 2015-05-22 14:44:57 -07:00