Skip to content
This repository has been archived by the owner on Jul 1, 2020. It is now read-only.

Releases: ghiscoding/angular-validation

Fixed issue #68 - Matching validation problem when parent input changes

13 Sep 01:58
Compare
Choose a tag to compare
  • 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()

09 Sep 01:22
Compare
Choose a tag to compare
v1.4.7

Fixed issue #65 - invalid return on String.format()

Updated Spanish translation file

04 Sep 15:28
Compare
Choose a tag to compare
v1.4.6

Pull #64 - updated Spanish translation file

Fixed issue #63 custom Regex pattern has to be greedy

04 Sep 03:10
Compare
Choose a tag to compare

Custom Regex pattern was non-greedy and was causing problem when user had a '/' inside his own custom pattern.

Added some new Laravel Validators

22 Aug 03:54
Compare
Choose a tag to compare

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

19 Aug 02:28
Compare
Choose a tag to compare
v1.4.3

Fixed issue #58 - multiple ControllerAs with Route

Final fix issue #55 - Bootstrap UI validation interference

10 Aug 02:19
Compare
Choose a tag to compare
  • 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)

09 Aug 20:54
Compare
Choose a tag to compare
v1.4.1

Fix issue #56 - TextArea validation with ENTER key

Tested with AngularJS 1.4.x branch and fixed issue #55

07 Aug 03:25
Compare
Choose a tag to compare
  • 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

29 Jul 03:21
Compare
Choose a tag to compare

display alt text as HTML instead of escaped text, changed from .text() to .html()