Skip to content

Commit 8da1960

Browse files
committed
Added CHANGELOG, Updated README
1 parent 1b08f45 commit 8da1960

File tree

3 files changed

+26
-11
lines changed

3 files changed

+26
-11
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## 1.4.0
2+
3+
### Added:
4+
5+
- Support for integrated FormItem for all components via `formItem` prop
6+
- [<RadioGroup />](/VueForm/RadioGroup.js)
7+
- [<CheckboxGroup />](/VueForm/CheckboxGroup.js)

README.md

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -63,18 +63,26 @@ See demo at [https://detools.github.io/vue-form](https://detools.github.io/vue-f
6363

6464
## Available Connected Components
6565

66-
- Checkbox
67-
- DatePicker
68-
- Input
69-
- InputNumber
70-
- Radio
71-
- Select
72-
- Slider
73-
- Switch
74-
- TimePicker
75-
- Form
66+
- [Checkbox](/VueForm/Checkbox.js)
67+
- [CheckboxGroup](/VueForm/CheckboxGroup.js)
68+
- [DatePicker](/VueForm/DatePicker.js)
69+
- [Input](/VueForm/Input.js)
70+
- [InputNumber](/VueForm/InputNumber.js)
71+
- [Radio](/VueForm/Radio.js)
72+
- [RadioGroup](/VueForm/RadioGroup.js)
73+
- [Select](/VueForm/Select.js)
74+
- [Slider](/VueForm/Slider.js)
75+
- [Switch](/VueForm/Switch.js)
76+
- [TimePicker](/VueForm/TimePicker.js)
77+
- [Form](/VueForm/Form.vue)
7678

7779
## Roadmap
7880

7981
- Add remaining components
82+
- <Upload />
83+
- <Rate />
8084
- Add validation examples
85+
- [Field level sync validation](https://detools.github.io/vue-form/#inline-validations-form)
86+
- Form level sync validation
87+
- Field level async validation
88+
- Form level async validation

example/src/InlineValidationsForm/InlineValidationsForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default {
1717
render() {
1818
return (
1919
<div>
20-
<h1>Inline Validations Form</h1>
20+
<h1 id="inline-validations-form">Inline Validations Form</h1>
2121
<div class="wrapper">
2222
<div class="form">
2323
<Form reset save submit handleSubmit={this.handleSubmit}>

0 commit comments

Comments
 (0)