angular/modules/angular2/test
Ted Sander 28d88c5b12 feat(validators): Allow errors at both the group/array level or their children
Allow ControlGroups and ControlArrays to contain errors from their level, and
errors from their children. [Design Doc](https://docs.google.com/document/d/1EnJ3-_iFpVKFz1ifN1LkXSGQ7h3A72OQGry2g8eo7IA/edit?pli=1#heading=h.j53rt81eegm4)

BREAKING CHANGE: errors format has changed from validators. Now errors from
a control or an array's children are prefixed with 'controls' while errors
from the object itself are left at the root level.
Example:
Given a Control group as follows:
var group = new ControlGroup({
  login: new Control("", required),
  password: new Control("", required),
  passwordConfirm: new Control("", required)
});

Before:
group.errors

{
  login: {required: true},
  password: {required: true},
  passwordConfirm: {required: true},
}

After:
group.errors

{
  controls: {
    login: {required: true},
    password: {required: true},
    passwordConfirm: {required: true},
  }
}
2015-10-26 11:48:32 -07:00
..
animate refactor(test): rename test_lib to testing 2015-10-13 10:36:49 -07:00
core feat(validators): Allow errors at both the group/array level or their children 2015-10-26 11:48:32 -07:00
http chore(http): remove double "var http" in http spec 2015-10-22 10:08:35 +00:00
mock refactor(test): rename test_lib to testing 2015-10-13 10:36:49 -07:00
pipes chore(saucelabs): add Edge 2015-10-15 18:20:41 +00:00
router test(router): add testing code for querystring serialization 2015-10-13 12:06:22 -07:00
symbol_inspector refactor(dart): Format Dart code 2015-10-20 17:39:37 +00:00
testing fix(testing): let DOM adapter dictate XHR implementation for tests 2015-10-15 12:12:27 -07:00
tools refactor(test): rename test_lib to testing 2015-10-13 10:36:49 -07:00
web_workers refactor(dart): Format Dart code 2015-10-20 17:39:37 +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
public_api_spec.ts feat(validators): Add a pending state to AbstractControl 2015-10-26 11:48:32 -07:00