angular2-polyfill icon indicating copy to clipboard operation
angular2-polyfill copied to clipboard

Angular2 polyfill for Angular1

Results 11 angular2-polyfill issues
Sort by recently updated
recently updated
newest added

Throw an error if multiple components have the same name.

enhancement

At the moment, we only have one global module where all the services, components, ... are defined in. This is not entirely correct. If we have this tree ``` -...

enhancement

All the HTTP methods should transform their responses to observables to make it Angular 2 compliant. - [x] Return observables https://github.com/SamVerschueren/angular2-polyfill/commit/f98bdcee1c205a91d11636c7118371d34839008b - [ ] Transform response to ng2 response -...

enhancement
help wanted

It would be nice if we could do `typings install angular2-polyfill`.

enhancement
help wanted

An example of this is the [TabsComponent](http://blog.thoughtram.io/angular/2015/04/09/developing-a-tabs-component-in-angular-2.html) where the child component gets a reference to the parent component. I don't directly have an idea on how to do this except...

enhancement

Not sure if possible with ui-router though.

At the moment, we support `styles` and `styleUrls` for components. They work like this. ``` ts @Component({ selector: 'home', template: 'Foo Bar' styles: [` h1 { color: red; } `],...

enhancement
help wanted
question

As explained by Todd Motto in his [article](https://toddmotto.com/emulated-native-shadow-dom-angular-2-view-encapsulation). At the moment, we don't support any encapsulation. So in theory it's `ViewEncapsulation.None` at the moment.

enhancement

In Angular1, you would have to `$scope.$apply` when using `setTimeout`, `setInterval`, etc. This is not necessary anymore in Angular2 because the entire change detection changed. In order for easier migration...

question