angular/modules
vsavkin 5b5d31fa9a feat(pipe): added the Pipe decorator and the pipe property to View
BREAKING CHANGE:
    Instead of configuring pipes via a Pipes object, now you can configure them by providing the pipes property to the View decorator.

    @Pipe({
      name: 'double'
    })
    class DoublePipe {
      transform(value, args) { return value * 2; }
    }

    @View({
      template: '{{ 10 | double}}'
      pipes: [DoublePipe]
    })
    class CustomComponent {}

Closes #3572
2015-08-12 00:38:40 +00:00
..
angular2 feat(pipe): added the Pipe decorator and the pipe property to View 2015-08-12 00:38:40 +00:00
angular2_material chore(material): clean up old workarounds with new features. 2015-08-06 17:54:34 -07:00
benchmarks feat(pipe): added the Pipe decorator and the pipe property to View 2015-08-12 00:38:40 +00:00
benchmarks_external chore(build): enable type-checking for TypeScript ES6 emit. 2015-08-06 16:57:52 -07:00
benchpress chore(build): enable type-checking for TypeScript ES6 emit. 2015-08-06 16:57:52 -07:00
examples refactor(http): move http files to top-level module 2015-08-11 22:32:17 +00:00
http refactor(http): move http files to top-level module 2015-08-11 22:32:17 +00:00
rtts_assert docs(modules): fix typos 2015-07-07 16:14:43 -07:00