This repository has been archived by the owner on Jul 1, 2020. It is now read-only.
Releases: ghiscoding/angular-validation
Releases · ghiscoding/angular-validation
Fixed issue #91, enhancement #97 and #98
- Fixed issue #91 interpolation problem with remove validation doesn't work twice.
- Enhancement #98 possibility to use one validation or another (tell how many Validators are required for field to become valid).
- Enhancement #97 possibility to validate even on empty text field (useful on
custom
andremote
validation). - Refined some Validators (IPV6 now include compressed/uncompressed addresses, added more Polish characters to other Validators)
Input name accepting dot (.), in_list accepting special characters and added Polish chars
Fixed blinking messages, issue #90
While doing TAB out, the error message appears to be blinking to human eyes, now fixed.
Fixed implicit global variable on regex
Related to issue #86
Added new validation-callback attribute, also added parameters to both Custom & Remote validators
- Added new validation-callback attribute, runs after the debounce/blur and validaiton are completed
- Added possibility passing arguments to Custom & Remote validators
- Added new Global Options: hideErrorUnderInputs
Fixed issue #78 - `max` validator problem
Fixed issue #78 - 'strValue is not defined' error when using max
auto-detect validator.
Fixed small issue with pulling form name
In some occasion, trying to find the parent form and the form name of an input element was giving the wrong result. We should call instead `form.getAttribute("name")` for correct result.
Added validation through custom user defined functions
Sanitized messages & fixed issue #69 display error on invalid chars for input[number]
- Added sanitize to the demo page
- Fixed issue #69, display proper error message when user type invalid chars on an input[number]