16 lines
504 B
JavaScript
16 lines
504 B
JavaScript
/**
|
|
* @module
|
|
* @public
|
|
* @description
|
|
* This module is used for handling complex input, by defining and building a [FormObject] that consists of [Control]
|
|
* objects, and mapping them onto the DOM. [Control] objects can then be used to read information from the form DOM
|
|
* elements.
|
|
*
|
|
*/
|
|
|
|
export * from './src/forms/model';
|
|
export * from './src/forms/directives';
|
|
export * from './src/forms/validators';
|
|
export * from './src/forms/validator_directives';
|
|
export * from './src/forms/form_builder';
|