UNPKG

2.59 kBMarkdownView Raw
1# Changes to VueForm
2
3## 1.6.3
4
5* Fixed [#23: $setCustomValidity doesn't work on named groups](https://github.com/optick/vueform/issues/23)
6
7## 1.6.2
8
9* Fixed [#22: Empty grouped value issue](https://github.com/optick/vueform/issues/22)
10
11## 1.6.1
12
13* Fixed [#21: isUnregistered issue](https://github.com/optick/vueform/issues/21)
14
15## 1.6.0
16
17* Added [#20: Allow non-checkable fields to have their validity grouped by name](https://github.com/optick/vueform/issues/20)
18
19## 1.5.0
20
21* Fixed [#19: Fix SVG layout for IE on demo site](https://github.com/optick/vueform/issues/19)
22* Fixed [#18: Wait for fonts to load before rendering demo page](https://github.com/optick/vueform/issues/18)
23* Fixed [#17: Fix Internet Explorer error](https://github.com/optick/vueform/issues/17)
24* Added [#16: Check if the directive value is a VueForm instance before populating it](https://github.com/optick/vueform/issues/16)
25* Added [#11: Show a success message after a valid form is submitted](https://github.com/optick/vueform/issues/11)
26
27## 1.4.0
28
29* Fixed [#15: Add required fields to the form object on bind](https://github.com/optick/vueform/issues/15)
30* Fixed [#13: Allow form directive to handle DOM updates and new fields](https://github.com/optick/vueform/issues/13)
31* Fixed [#12: Allow arrays in required array so that users can supply a callback that determines if the field is required or not](https://github.com/optick/vueform/issues/12)
32
33## 1.3.1
34
35* Fixed [#10: Update form validity after setting named validity](https://github.com/optick/vueform/issues/10)
36
37## 1.3.0
38
39* Fixed [#7: Issue with implementing validation on multiple checkboxes](https://github.com/optick/vueform/issues/7)
40* Fixed [#8: Listen to change event instead of input for checkboxes and radio buttons](https://github.com/optick/vueform/issues/8)
41
42## 1.2.1
43
44* Fixed [#5: Check for field existence in $setCustomValidity in case it gets
45called before directive bind completes](https://github.com/optick/vueform/issues/5)
46
47## 1.2.0
48
49* Added [#3: Rename $updateCustomValidity to $setCustomValidity](https://github.com/optick/vueform/issues/3)
50* Added [#4: Simplify $updateValidity by accepting a single result boolean or string](https://github.com/optick/vueform/issues/4)
51
52## 1.1.0
53
54* Added [#1: Add polyfill for ValidityState.tooShort](https://github.com/optick/vueform/issues/1)
55
56## 1.0.1
57
58* Removed dist/ from .gitignore so you can actually use this plugin!
59* Added CHANGELOG.md
60
61## 1.0.0
62
63* Added field validation functionality
64* Added form validity state
65* Added $updateCustomValidity to update validity state in custom validators