feat(forms): Export NgSelectOption directive

Make the `NgSelectOption` directive visible from top-level forms module.
This commit is contained in:
Tim Blasi
2015-07-17 14:07:32 -07:00
parent 011fab37af
commit f74d97e1f1
2 changed files with 10 additions and 4 deletions

View File

@ -23,7 +23,10 @@ export {NgForm} from './directives/ng_form';
export {ControlValueAccessor} from './directives/control_value_accessor';
export {DefaultValueAccessor} from './directives/default_value_accessor';
export {CheckboxControlValueAccessor} from './directives/checkbox_value_accessor';
export {SelectControlValueAccessor} from './directives/select_control_value_accessor';
export {
SelectControlValueAccessor,
NgSelectOption
} from './directives/select_control_value_accessor';
export {NgValidator, NgRequiredValidator} from './directives/validators';
/**
@ -47,4 +50,4 @@ export const formDirectives: List<Type> = CONST_EXPR([
SelectControlValueAccessor,
NgRequiredValidator
]);
]);