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