2015-04-10 12:45:02 +02:00
|
|
|
/**
|
|
|
|
* @module
|
|
|
|
* @description
|
2015-05-20 18:10:30 -07:00
|
|
|
* This module is used for handling user input, by defining and building a {@link ControlGroup} that
|
|
|
|
* consists of
|
|
|
|
* {@link Control} objects, and mapping them onto the DOM. {@link Control} objects can then be used
|
|
|
|
* to read information
|
2015-04-17 13:01:07 -07:00
|
|
|
* from the form DOM elements.
|
2015-04-10 11:15:01 -07:00
|
|
|
*
|
2016-05-01 22:50:37 -07:00
|
|
|
* Forms providers are not included in default providers; you must import these providers
|
|
|
|
* explicitly.
|
2015-04-10 12:45:02 +02:00
|
|
|
*/
|
2015-09-03 22:01:36 -07:00
|
|
|
export {AbstractControl, Control, ControlGroup, ControlArray} from './forms/model';
|
2015-06-19 16:33:49 -07:00
|
|
|
|
2015-09-03 22:01:36 -07:00
|
|
|
export {AbstractControlDirective} from './forms/directives/abstract_control_directive';
|
|
|
|
export {Form} from './forms/directives/form_interface';
|
|
|
|
export {ControlContainer} from './forms/directives/control_container';
|
|
|
|
export {NgControlName} from './forms/directives/ng_control_name';
|
|
|
|
export {NgFormControl} from './forms/directives/ng_form_control';
|
|
|
|
export {NgModel} from './forms/directives/ng_model';
|
|
|
|
export {NgControl} from './forms/directives/ng_control';
|
|
|
|
export {NgControlGroup} from './forms/directives/ng_control_group';
|
|
|
|
export {NgFormModel} from './forms/directives/ng_form_model';
|
|
|
|
export {NgForm} from './forms/directives/ng_form';
|
2015-11-02 11:35:47 -08:00
|
|
|
export {ControlValueAccessor, NG_VALUE_ACCESSOR} from './forms/directives/control_value_accessor';
|
2015-09-03 22:01:36 -07:00
|
|
|
export {DefaultValueAccessor} from './forms/directives/default_value_accessor';
|
2015-09-30 17:52:33 -07:00
|
|
|
export {NgControlStatus} from './forms/directives/ng_control_status';
|
2015-09-03 22:01:36 -07:00
|
|
|
export {CheckboxControlValueAccessor} from './forms/directives/checkbox_value_accessor';
|
2016-04-12 09:40:37 -07:00
|
|
|
export {
|
|
|
|
NgSelectOption,
|
|
|
|
SelectControlValueAccessor
|
|
|
|
} from './forms/directives/select_control_value_accessor';
|
2016-02-05 16:08:53 -08:00
|
|
|
export {FORM_DIRECTIVES, RadioButtonState} from './forms/directives';
|
2015-11-02 10:00:42 -08:00
|
|
|
export {NG_VALIDATORS, NG_ASYNC_VALIDATORS, Validators} from './forms/validators';
|
2016-04-12 09:40:37 -07:00
|
|
|
export {
|
|
|
|
RequiredValidator,
|
|
|
|
MinLengthValidator,
|
|
|
|
MaxLengthValidator,
|
|
|
|
PatternValidator,
|
|
|
|
Validator
|
|
|
|
} from './forms/directives/validators';
|
2016-02-05 16:08:53 -08:00
|
|
|
export {FormBuilder} from './forms/form_builder';
|
|
|
|
import {FormBuilder} from './forms/form_builder';
|
|
|
|
import {RadioControlRegistry} from './forms/directives/radio_control_value_accessor';
|
2016-04-28 17:50:03 -07:00
|
|
|
import {Type} from '@angular/core';
|
2016-02-05 16:08:53 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Shorthand set of providers used for building Angular forms.
|
|
|
|
*
|
|
|
|
* ### Example
|
|
|
|
*
|
|
|
|
* ```typescript
|
|
|
|
* bootstrap(MyApp, [FORM_PROVIDERS]);
|
|
|
|
* ```
|
|
|
|
*/
|
2016-04-25 21:47:33 -07:00
|
|
|
export const FORM_PROVIDERS: Type[] = /*@ts2dart_const*/[FormBuilder, RadioControlRegistry];
|
2016-02-05 16:08:53 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* See {@link FORM_PROVIDERS} instead.
|
|
|
|
*
|
|
|
|
* @deprecated
|
|
|
|
*/
|
2016-04-25 21:47:33 -07:00
|
|
|
export const FORM_BINDINGS = /*@ts2dart_const*/ FORM_PROVIDERS;
|