angular/modules/benchmarks/src
Tobias Bosch 791534f2f4 feat(core): expose inputs, outputs and ngContentSelectors on ComponentFactory. (#15214)
E.g. for a component like this:
```
@Component({
  template: ‘<ng-content select=“child”></ng-content>’
})
class MyComp {
  @Input(‘aInputName’)
  aInputProp: string;

  @Output(‘aEventName’)
  aOuputProp: EventEmitter<any>;
}
```

the `ComponentFactory` will now contain the following:
- `inputs = {aInputProp: ‘aInputName’}`
- `outputs = {aOutputProp: ‘aOutputName’}`
- `ngContentSelectors = [‘child’]`
2017-03-17 13:52:41 -05:00
..
largeform refactor(): use const and let instead of var 2016-11-12 16:40:17 -08:00
largetable feat(compiler): introduce <ng-template>, deprecate <template> and template attribute 2017-02-23 20:03:16 -08:00
old refactor: remove lang.ts (#14837) 2017-03-06 15:22:29 -08:00
tree feat(core): expose inputs, outputs and ngContentSelectors on ComponentFactory. (#15214) 2017-03-17 13:52:41 -05:00
bootstrap_ng2.ts refactor(animations): support browser animation rendering (#14578) 2017-02-22 15:14:49 -08:00
bootstrap_plain.ts refactor(benchmarks): refactor to support AOT bootstrap in G3 (#12075) 2016-10-04 16:27:45 -07:00
util.ts fix(benchmarks): don’t force gc on the profile buttons (#14345) 2017-02-08 14:42:01 -06:00