X Tutup
Skip to content

Commit 25ddd87

Browse files
author
Tim Blasi
committed
feat(forms): Export NumberValueAccessor
Export `NumberValueAccessor` from `forms/directives.ts`
1 parent 3ed9796 commit 25ddd87

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

modules/angular2/src/core/forms/directives.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,20 @@ import {RequiredValidator, MinLengthValidator, MaxLengthValidator} from './direc
1818
export {NgControlName} from './directives/ng_control_name';
1919
export {NgFormControl} from './directives/ng_form_control';
2020
export {NgModel} from './directives/ng_model';
21-
export {NgControl} from './directives/ng_control';
2221
export {NgControlGroup} from './directives/ng_control_group';
2322
export {NgFormModel} from './directives/ng_form_model';
2423
export {NgForm} from './directives/ng_form';
25-
export {ControlValueAccessor} from './directives/control_value_accessor';
2624
export {DefaultValueAccessor} from './directives/default_value_accessor';
2725
export {CheckboxControlValueAccessor} from './directives/checkbox_value_accessor';
26+
export {NumberValueAccessor} from './directives/number_value_accessor';
27+
export {NgControlStatus} from './directives/ng_control_status';
2828
export {
2929
SelectControlValueAccessor,
3030
NgSelectOption
3131
} from './directives/select_control_value_accessor';
3232
export {RequiredValidator, MinLengthValidator, MaxLengthValidator} from './directives/validators';
33-
export {NgControlStatus} from './directives/ng_control_status';
33+
export {NgControl} from './directives/ng_control';
34+
export {ControlValueAccessor} from './directives/control_value_accessor';
3435

3536
/**
3637
*

0 commit comments

Comments
 (0)
X Tutup