angular-decorators icon indicating copy to clipboard operation
angular-decorators copied to clipboard

A collection of utilities and annotations that make it easier to write Angular 2 style code in AngularJS 1.x

Results 5 angular-decorators issues
Sort by recently updated
recently updated
newest added

Currently i am working on a project which is built upon Angular 1.x. I have decided to use ES2015 features along with ES7 decorators. So surfing around to get an...

Suppose ``` @Component({ selector: 'time-table', controllerAs: 'TimeTableCtrl', properties: [ '@minHour', '@maxHour', '=myEvents' ] }) @View({template: require('./timetable.html')}) @Inject('$log') export class TimeTableComponent { ``` How can I access the myEvents in the...

Hi, have you considered making `@Component` decorator compliant with the new `.component()` directive? More info: https://code.angularjs.org/1.5.5/docs/api/ng/provider/$compileProvider

As usage of decorators with TypeScript is relatively new, can you tell, how to make compiler happy, e.g. when using https://github.com/frankwallis/plugin-typescript/tree/master/examples/angular with import {module} from "angular-decorators"; I do not see...

Feature Request: Ability to use `replace: true` with `@Component` decorator