Victor Berchet
|
38e5c3f918
|
style: format the code with the updated clang
|
2015-06-12 19:07:13 +02:00 |
vsavkin
|
4fe919335c
|
refactor(forms): made directive names consistent
|
2015-06-12 09:45:55 -07:00 |
Victor Berchet
|
f3b49378e4
|
feat(Directive): Have a single Directive.host which mimics HTML
fixes #2268
BREAKING CHANGE:
Before
@Directive({
hostListeners: {'event': 'statement'},
hostProperties: {'expression': 'hostProp'},
hostAttributes: {'attr': 'value'},
hostActions: {'action': 'statement'}
})
After
@Directive({
host: {
'(event)': 'statement',
'[hostProp]': 'expression' // k & v swapped
'attr': 'value',
'@action': 'statement'
}
})
|
2015-06-11 13:11:09 -07:00 |
vsavkin
|
73bce40287
|
feat(forms): export validator directives as part of formDirectives
|
2015-06-09 11:51:14 -07:00 |
vsavkin
|
5fc23caef7
|
feat(forms): changed forms to capture submit events and fires synthetic ng-submit events
|
2015-06-09 11:51:13 -07:00 |
Victor Berchet
|
309ef0f354
|
refactor(test): remove explicit calls to flushMicrotasks()
flushMicrotasks() is now called at after the fakeAsync callback returns,
see https://github.com/angular/angular/pull/2290
|
2015-06-08 20:30:49 +02:00 |
vsavkin
|
3baf815d76
|
feat(forms): added support for status classes
|
2015-06-03 14:43:46 -07:00 |
vsavkin
|
ec3a78289f
|
feat(forms): added touched and untouched to Control
|
2015-06-02 17:32:41 -07:00 |
vsavkin
|
f543834be9
|
feat(forms): renamed control, control-group into ng-control and ng-control-group
|
2015-06-02 16:24:08 -07:00 |
vsavkin
|
6bef1c4169
|
feat(forms): changed the selector of TemplatdrivenFormDirective to match <form>
|
2015-06-02 16:24:08 -07:00 |
vsavkin
|
652ed0cf6d
|
feat(form): implemented an imperative way of updating the view by updating the value of a control
|
2015-06-02 16:24:07 -07:00 |
vsavkin
|
559f54e92b
|
feat(forms): added ng-model
|
2015-06-02 16:24:07 -07:00 |
vsavkin
|
a9d6fd9afa
|
feat(forms): implemented template-driven forms
|
2015-05-30 11:56:00 -07:00 |
vsavkin
|
3525c9c074
|
chore(forms): moved tests/forms to typescript
|
2015-05-22 14:44:57 -07:00 |