Project

General

Profile

1
/**
2
 * @license
3
 * Copyright Google Inc. All Rights Reserved.
4
 *
5
 * Use of this source code is governed by an MIT-style license that can be
6
 * found in the LICENSE file at https://angular.io/license
7
 */
8
/**
9
 * @module
10
 * @description
11
 * This module is used for handling user input, by defining and building a {@link FormGroup} that
12
 * consists of {@link FormControl} objects, and mapping them onto the DOM. {@link FormControl}
13
 * objects can then be used to read information from the form DOM elements.
14
 *
15
 * Forms providers are not included in default providers; you must import these providers
16
 * explicitly.
17
 */
18
export { AbstractControlDirective } from './directives/abstract_control_directive';
19
export { AbstractFormGroupDirective } from './directives/abstract_form_group_directive';
20
export { CheckboxControlValueAccessor } from './directives/checkbox_value_accessor';
21
export { ControlContainer } from './directives/control_container';
22
export { ControlValueAccessor, NG_VALUE_ACCESSOR } from './directives/control_value_accessor';
23
export { COMPOSITION_BUFFER_MODE, DefaultValueAccessor } from './directives/default_value_accessor';
24
export { Form } from './directives/form_interface';
25
export { NgControl } from './directives/ng_control';
26
export { NgControlStatus, NgControlStatusGroup } from './directives/ng_control_status';
27
export { NgForm } from './directives/ng_form';
28
export { NgModel } from './directives/ng_model';
29
export { NgModelGroup } from './directives/ng_model_group';
30
export { RadioControlValueAccessor } from './directives/radio_control_value_accessor';
31
export { FormControlDirective } from './directives/reactive_directives/form_control_directive';
32
export { FormControlName } from './directives/reactive_directives/form_control_name';
33
export { FormGroupDirective } from './directives/reactive_directives/form_group_directive';
34
export { FormArrayName } from './directives/reactive_directives/form_group_name';
35
export { FormGroupName } from './directives/reactive_directives/form_group_name';
36
export { NgSelectOption, SelectControlValueAccessor } from './directives/select_control_value_accessor';
37
export { SelectMultipleControlValueAccessor } from './directives/select_multiple_control_value_accessor';
38
export { AsyncValidator, AsyncValidatorFn, CheckboxRequiredValidator, EmailValidator, MaxLengthValidator, MinLengthValidator, PatternValidator, RequiredValidator, ValidationErrors, Validator, ValidatorFn } from './directives/validators';
39
export { FormBuilder } from './form_builder';
40
export { AbstractControl, FormArray, FormControl, FormGroup } from './model';
41
export { NG_ASYNC_VALIDATORS, NG_VALIDATORS, Validators } from './validators';
42
export { VERSION } from './version';
43
export * from './form_providers';
(4-4/7)