This module provides several providers in order to configure behavior of it's directives.
- formValidationDecorationsProvider is used to configure decoration of input elements
- formValidationErrorsProvider is used to configure displaying of error messages
Below you will find complete documentation for all providers.
Notice:
All setters of these providers will return the provider back to you in order to support chainability.
Example:
someProvider
.setFoo(/** Some arguments */)
.setBar(/** Some arguments */)
.useBaz(/** Some arguments */)
;