angular/modules/angular2/src
vsavkin 2dcf714d2b refactor(pipes): use Injector instead of pipe factories for pipe instantiation
BREAKING CHANGE
    - Pipe factories have been removed.
    - PIpe names to pipe implementations are 1-to-1  instead of 1-to-*

 Before:
     class DateFormatter {
         transform(date, args){}
     }

     class DateFormatterFactory {
       supporst(obj) { return true; }
       create(cdRef) { return new DateFormatter(); }
     }
     new Pipes({date: [new DateFormatterFactory()]})

After
    class DateFormatter {
      transform(date, args){}
    }
    new Pipes({date: DateFormatter})
2015-08-07 10:02:11 -07:00
..
change_detection refactor(pipes): use Injector instead of pipe factories for pipe instantiation 2015-08-07 10:02:11 -07:00
core refactor(pipes): use Injector instead of pipe factories for pipe instantiation 2015-08-07 10:02:11 -07:00
debug feat(build): require parameter types 2015-07-21 06:20:13 -07:00
di refactor(pipes): use Injector instead of pipe factories for pipe instantiation 2015-08-07 10:02:11 -07:00
directives fix(CSSClass): change selector to ng-class 2015-08-07 14:56:41 +02:00
dom style(dart): Format with dartfmt v0.2.0 2015-08-05 11:04:29 -07:00
facade chore(build): enable type-checking for TypeScript ES6 emit. 2015-08-06 16:57:52 -07:00
forms cleanup(di): renamed viewInjector and hostInjector 2015-07-31 09:49:51 -07:00
http fix(XHRConnection): use xhr status code 2015-08-04 00:39:11 +00:00
mock fix(dart): @proxy is a value, not a factory 2015-08-06 10:02:49 -07:00
profile style(dart): Format with dartfmt v0.2.0 2015-08-05 11:04:29 -07:00
reflection style(dart): Format with dartfmt v0.2.0 2015-08-05 11:04:29 -07:00
render fix(CSSClass): change selector to ng-class 2015-08-07 14:56:41 +02:00
router test(router): add tests for router.d.ts 2015-08-05 00:29:32 +00:00
services Revert "fix(url_resolver): in Dart make package urls relative to AppRootUrl" 2015-07-27 14:15:02 -07:00
test_lib refactor(pipes): use Injector instead of pipe factories for pipe instantiation 2015-08-07 10:02:11 -07:00
transform refactor(pipes): use Injector instead of pipe factories for pipe instantiation 2015-08-07 10:02:11 -07:00
util chore(build): Upgrade to TypeScript@1.5.3 2015-07-31 20:01:27 +00:00
web-workers refactor(pipes): use Injector instead of pipe factories for pipe instantiation 2015-08-07 10:02:11 -07:00