angular-cn/modules/angular2/test
vsavkin 79994b2abf refactor(forms): use multibindings instead of query to get a list of validators
BREAKING CHANGE

Before:

@Directive({selector: '[credit-card]', bindings: [new Binding(NgValidator, {toAlias: forwardRef(() => CreditCardValidator)})]})
class CreditCardValidator {
  get validator() { return CreditCardValidator.validate; }
  static validate(c): StringMap<string, boolean> {...}
}

After:

function creditCardValidator(c): StringMap<string, boolean> {...}
@Directive({selector: '[credit-card]', bindings: [new Binding(NG_VALIDATORS, {toValue: creditCardValidator, multi: true})]})
class CreditCardValidator {}
2015-09-03 15:18:18 +00:00
..
benchmark/transform chore: update all import paths 2015-08-25 15:33:23 -07:00
compiler feat(compiler): allow to create ChangeDetectors from parsed templates 2015-09-02 23:20:14 +00:00
core feat(di): add support for multi bindings 2015-09-03 15:18:18 +00:00
forms refactor(forms): use multibindings instead of query to get a list of validators 2015-09-03 15:18:18 +00:00
http chore: Make enum names consistent with TypeScript convention 2015-08-27 22:32:21 -07:00
mock chore: update all import paths 2015-08-25 15:33:23 -07:00
pipes refactor(ChandeDetection): Rename ChangeDetectorRef.markForCheck 2015-08-31 21:32:10 +00:00
router feat(core): remove the (^ syntax and make all DOM events bubbling 2015-09-01 15:54:47 +00:00
test_lib refactor(test_lib): BrowserDetection util 2015-08-28 11:41:17 +02:00
web_workers feat(WebWorker): Expose MessageBroker API 2015-09-01 23:53:54 +00:00
platform.dart refactor: Remove isDart from public API 2015-08-13 21:18:31 +00:00
platform.ts refactor: Remove isDart from public API 2015-08-13 21:18:31 +00:00