UNPKG

2.15 kBMarkdownView Raw
1# Changes to VueForm
2
3## 1.5.0
4
5* Fixed [#19: Fix SVG layout for IE on demo site](https://github.com/optick/vueform/issues/19)
6* Fixed [#18: Wait for fonts to load before rendering demo page](https://github.com/optick/vueform/issues/18)
7* Fixed [#17: Fix Internet Explorer error](https://github.com/optick/vueform/issues/17)
8* Added [#16: Check if the directive value is a VueForm instance before populating it](https://github.com/optick/vueform/issues/16)
9* Added [#11: Show a success message after a valid form is submitted](https://github.com/optick/vueform/issues/11)
10
11## 1.4.0
12
13* Fixed [#15: Add required fields to the form object on bind](https://github.com/optick/vueform/issues/15)
14* Fixed [#13: Allow form directive to handle DOM updates and new fields](https://github.com/optick/vueform/issues/13)
15* 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)
16
17## 1.3.1
18
19* Fixed [#10: Update form validity after setting named validity](https://github.com/optick/vueform/issues/10)
20
21## 1.3.0
22
23* Fixed [#7: Issue with implementing validation on multiple checkboxes](https://github.com/optick/vueform/issues/7)
24* Fixed [#8: Listen to change event instead of input for checkboxes and radio buttons](https://github.com/optick/vueform/issues/8)
25
26## 1.2.1
27
28* Fixed [#5: Check for field existence in $setCustomValidity in case it gets
29called before directive bind completes](https://github.com/optick/vueform/issues/5)
30
31## 1.2.0
32
33* Added [#3: Rename $updateCustomValidity to $setCustomValidity](https://github.com/optick/vueform/issues/3)
34* Added [#4: Simplify $updateValidity by accepting a single result boolean or string](https://github.com/optick/vueform/issues/4)
35
36## 1.1.0
37
38* Added [#1: Add polyfill for ValidityState.tooShort](https://github.com/optick/vueform/issues/1)
39
40## 1.0.1
41
42* Removed dist/ from .gitignore so you can actually use this plugin!
43* Added CHANGELOG.md
44
45## 1.0.0
46
47* Added field validation functionality
48* Added form validity state
49* Added $updateCustomValidity to update validity state in custom validators