2015-04-10 10:45:02 +00:00
|
|
|
/**
|
|
|
|
|
* @module
|
|
|
|
|
* @public
|
|
|
|
|
* @description
|
2015-05-21 01:10:30 +00: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 20:01:07 +00:00
|
|
|
* from the form DOM elements.
|
2015-04-10 18:15:01 +00:00
|
|
|
*
|
2015-05-21 01:10:30 +00:00
|
|
|
* This module is not included in the `angular2` module; you must import the forms module
|
|
|
|
|
* explicitly.
|
2015-04-14 04:00:52 +00:00
|
|
|
*
|
2015-04-10 10:45:02 +00:00
|
|
|
*/
|
|
|
|
|
|
2015-02-05 22:55:41 +00:00
|
|
|
export * from './src/forms/model';
|
2015-02-06 17:16:55 +00:00
|
|
|
export * from './src/forms/directives';
|
2015-02-24 19:59:10 +00:00
|
|
|
export * from './src/forms/validators';
|
2015-03-11 01:12:30 +00:00
|
|
|
export * from './src/forms/validator_directives';
|
2015-04-10 18:15:01 +00:00
|
|
|
export * from './src/forms/form_builder';
|
2015-06-10 05:38:19 +00:00
|
|
|
|
|
|
|
|
import {FormBuilder} from './src/forms/form_builder';
|
|
|
|
|
import {CONST_EXPR, Type} from './src/facade/lang';
|
|
|
|
|
export const formInjectables: List<Type> = CONST_EXPR([FormBuilder]);
|