angular/modules/angular2/test/core/compiler
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_spec.ts feat(Directive): Have a single Directive.host which mimics HTML 2015-06-11 13:11:09 -07:00
component_url_mapper_spec.ts refactor(core): ts’ify tests 2015-05-26 17:01:31 -07:00
directive_lifecycle_spec.dart style(dart): Format Dart source with dart_style 0.1.8 2015-05-29 10:42:47 -07:00
directive_lifecycle_spec.ts feat(change_detection): added onInit and onCheck hooks 2015-05-28 16:46:22 -07:00
directive_metadata_reader_spec.ts refactor(core): ts’ify tests 2015-05-26 17:01:31 -07:00
dynamic_component_loader_spec.ts feat(Directive): Have a single Directive.host which mimics HTML 2015-06-11 13:11:09 -07:00
element_injector_spec.ts feat(Directive): Have a single Directive.host which mimics HTML 2015-06-11 13:11:09 -07:00
integration_dart_spec.dart style(dart): Format Dart source with dart_style 0.1.8 2015-05-29 10:42:47 -07:00
integration_spec.ts feat(Directive): Have a single Directive.host which mimics HTML 2015-06-11 13:11:09 -07:00
proto_view_factory_spec.ts feat(Directive): Have a single Directive.host which mimics HTML 2015-06-11 13:11:09 -07:00
query_integration_spec.ts fix(types): parametrize QueryList. 2015-06-03 17:08:55 -07:00
query_list_spec.ts refactor(core): ts’ify tests 2015-05-26 17:01:31 -07:00
view_container_ref_spec.ts refactor(core): ts’ify tests 2015-05-26 17:01:31 -07:00
view_manager_spec.ts feat(view): added support for exportAs, so any directive can be assigned to a variable 2015-06-04 14:14:03 -07:00
view_manager_utils_spec.ts feat(view): added support for exportAs, so any directive can be assigned to a variable 2015-06-04 14:14:03 -07:00
view_pool_spec.ts feat(view): add AppViewListener interface 2015-05-29 11:33:22 -07:00