Template Upload
This commit is contained in:
51
node_modules/angular2/es6/prod/src/common/forms.js
generated
vendored
Normal file
51
node_modules/angular2/es6/prod/src/common/forms.js
generated
vendored
Normal file
@ -0,0 +1,51 @@
|
||||
/**
|
||||
* @module
|
||||
* @description
|
||||
* 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
|
||||
* from the form DOM elements.
|
||||
*
|
||||
* This module is not included in the `angular2` module; you must import the forms module
|
||||
* explicitly.
|
||||
*
|
||||
*/
|
||||
export { AbstractControl, Control, ControlGroup, ControlArray } from './forms/model';
|
||||
export { AbstractControlDirective } from './forms/directives/abstract_control_directive';
|
||||
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';
|
||||
export { NG_VALUE_ACCESSOR } from './forms/directives/control_value_accessor';
|
||||
export { DefaultValueAccessor } from './forms/directives/default_value_accessor';
|
||||
export { NgControlStatus } from './forms/directives/ng_control_status';
|
||||
export { CheckboxControlValueAccessor } from './forms/directives/checkbox_value_accessor';
|
||||
export { NgSelectOption, SelectControlValueAccessor } from './forms/directives/select_control_value_accessor';
|
||||
export { FORM_DIRECTIVES, RadioButtonState } from './forms/directives';
|
||||
export { NG_VALIDATORS, NG_ASYNC_VALIDATORS, Validators } from './forms/validators';
|
||||
export { RequiredValidator, MinLengthValidator, MaxLengthValidator, PatternValidator } from './forms/directives/validators';
|
||||
export { FormBuilder } from './forms/form_builder';
|
||||
import { FormBuilder } from './forms/form_builder';
|
||||
import { RadioControlRegistry } from './forms/directives/radio_control_value_accessor';
|
||||
import { CONST_EXPR } from 'angular2/src/facade/lang';
|
||||
/**
|
||||
* Shorthand set of providers used for building Angular forms.
|
||||
*
|
||||
* ### Example
|
||||
*
|
||||
* ```typescript
|
||||
* bootstrap(MyApp, [FORM_PROVIDERS]);
|
||||
* ```
|
||||
*/
|
||||
export const FORM_PROVIDERS = CONST_EXPR([FormBuilder, RadioControlRegistry]);
|
||||
/**
|
||||
* See {@link FORM_PROVIDERS} instead.
|
||||
*
|
||||
* @deprecated
|
||||
*/
|
||||
export const FORM_BINDINGS = FORM_PROVIDERS;
|
Reference in New Issue
Block a user