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 #68 - Matching validation problem when parent input changes
- Added a $watch on the parent so that it will invalidate confirmation field as soon as parent is touched.
Fixed issue #65 - wrong return on String.format()
v1.4.7 Fixed issue #65 - invalid return on String.format()
Updated Spanish translation file
v1.4.6 Pull #64 - updated Spanish translation file
Fixed issue #63 custom Regex pattern has to be greedy
Custom Regex pattern was non-greedy and was causing problem when user had a '/' inside his own custom pattern.
Added some new Laravel Validators
Added few Validators that are like Laravel for reusability. The in
and not_in
Validators are the most interesting. The list includes:
- accepted: useful on "Terms of service"
- between: auto-detect type then use between_len or between_num
- max: auto-detect type then use max_len or max_num
- min: auto-detect type then use min_len or min_num
- size: auto-detect type then use exact_len or exact_num
- ip: new alias
- digits: similar to exact_len but only for digits
- digits_between: similar to between_len but only for digits
- in / in_list: useful for accepting a word from a given list of values
- not_in / not_in_list: useful for accepting a word outside a given list of values
- different: make sure current input is different from another input
- same: new alias to match
Fixed issue #58 - multiple ControllerAs with Route
v1.4.3 Fixed issue #58 - multiple ControllerAs with Route
Final fix issue #55 - Bootstrap UI validation interference
- Fixed Bootstrap UI (or any other tool) interference with Angular-Validation, in relation to issue #55.
Fixed issue #56 - TextArea validation with ENTER key (newline)
v1.4.1 Fix issue #56 - TextArea validation with ENTER key
Tested with AngularJS 1.4.x branch and fixed issue #55
- Made sure it works with AngularJS 1.4.x branch, updated my own Rev to 1.4.x branch as well
- Fixed issue #55 ui bootsrap datepicker and angular-validation
Fixed issue #54 - display alt text as HTML
display alt text as HTML instead of escaped text, changed from .text()
to .html()