2015-04-10 10:45:02 +00:00
|
|
|
/**
|
|
|
|
|
* @module
|
|
|
|
|
* @public
|
|
|
|
|
* @description
|
2015-04-17 20:01:07 +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
|
|
|
|
|
* from the form DOM elements.
|
2015-04-10 18:15:01 +00:00
|
|
|
*
|
2015-04-14 04:00:52 +00:00
|
|
|
* This module is not included in the `angular2` module; you must import the forms module explicitly.
|
|
|
|
|
*
|
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';
|