2015-04-10 06:45:02 -04:00
|
|
|
/**
|
|
|
|
* @module
|
|
|
|
* @public
|
|
|
|
* @description
|
2015-04-17 16:01:07 -04: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
|
|
|
|
* from the form DOM elements.
|
2015-04-10 14:15:01 -04:00
|
|
|
*
|
2015-04-14 00:00:52 -04:00
|
|
|
* This module is not included in the `angular2` module; you must import the forms module explicitly.
|
|
|
|
*
|
2015-04-10 06:45:02 -04:00
|
|
|
*/
|
|
|
|
|
2015-02-05 17:55:41 -05:00
|
|
|
export * from './src/forms/model';
|
2015-02-06 12:16:55 -05:00
|
|
|
export * from './src/forms/directives';
|
2015-02-24 14:59:10 -05:00
|
|
|
export * from './src/forms/validators';
|
2015-03-10 21:12:30 -04:00
|
|
|
export * from './src/forms/validator_directives';
|
2015-04-10 14:15:01 -04:00
|
|
|
export * from './src/forms/form_builder';
|