angular-cn/packages
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
..
animations fix(animations): only treat view removals as `void` state transitions (#15245) 2017-03-17 13:48:25 -05:00
benchpress refactor: update paths from modules/@angular to packages 2017-03-08 16:29:28 -08:00
common build: fix paths to typings files so tsickle resolves imports correctly 2017-03-16 17:34:29 -07:00
compiler feat(core): expose `inputs`, `outputs` and `ngContentSelectors` on `ComponentFactory`. (#15214) 2017-03-17 13:52:41 -05:00
compiler-cli release: cut the 4.0.0-rc.5 release 2017-03-17 10:16:53 -07:00
core feat(core): expose `inputs`, `outputs` and `ngContentSelectors` on `ComponentFactory`. (#15214) 2017-03-17 13:52:41 -05:00
docs refactor: move angular source to /packages rather than modules/@angular 2017-03-08 16:29:27 -08:00
examples Revert "feat(upgrade): use `ComponentFactory.inputs/outputs/ngContentSelectors`" 2017-03-15 13:22:54 -07:00
forms feat(forms): allow to compile forms in strictNullChecks mode (#14679) 2017-03-17 13:47:12 -05:00
http build: fix paths to typings files so tsickle resolves imports correctly 2017-03-16 17:34:29 -07:00
language-service build: fix paths to typings files so tsickle resolves imports correctly 2017-03-16 17:34:29 -07:00
platform-browser build: fix paths to typings files so tsickle resolves imports correctly 2017-03-16 17:34:29 -07:00
platform-browser-dynamic build: fix paths to typings files so tsickle resolves imports correctly 2017-03-16 17:34:29 -07:00
platform-server build: fix paths to typings files so tsickle resolves imports correctly 2017-03-16 17:34:29 -07:00
platform-webworker build: fix paths to typings files so tsickle resolves imports correctly 2017-03-16 17:34:29 -07:00
platform-webworker-dynamic build: fix paths to typings files so tsickle resolves imports correctly 2017-03-16 17:34:29 -07:00
router build: fix paths to typings files so tsickle resolves imports correctly 2017-03-16 17:34:29 -07:00
upgrade refactor(upgrade): don’t rely on compiler internals (#15214) 2017-03-17 13:52:34 -05:00
README.md refactor: move angular source to /packages rather than modules/@angular 2017-03-08 16:29:27 -08:00
empty.ts refactor: move angular source to /packages rather than modules/@angular 2017-03-08 16:29:27 -08:00
es6-subset.d.ts refactor: update paths from modules/@angular to packages 2017-03-08 16:29:28 -08:00
license-banner.txt refactor: move angular source to /packages rather than modules/@angular 2017-03-08 16:29:27 -08:00
router-license-banner.txt refactor: move angular source to /packages rather than modules/@angular 2017-03-08 16:29:27 -08:00
system.d.ts refactor: move angular source to /packages rather than modules/@angular 2017-03-08 16:29:27 -08:00
tsconfig.json test(platform-server): add initial e2e tests for platform-server (#15061) 2017-03-14 17:11:39 -07:00
types.d.ts refactor: move angular source to /packages rather than modules/@angular 2017-03-08 16:29:27 -08:00

README.md

Angular

The sources for this package are in the main Angular repo. Please file issues and pull requests against that repo.

License: MIT