Skip to content

Commit b66f9a9

Browse files
committed
docs: update readme
1 parent 023b342 commit b66f9a9

File tree

1 file changed

+5
-13
lines changed

1 file changed

+5
-13
lines changed

README.md

+5-13
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ A schema-based form generator component for Vue.js
1616

1717
## Features
1818
- multiple objects editing
19-
- 18 built-in field types
19+
- 19 built-in field types
2020
- built-in validators
2121
- Bootstrap friendly templates
2222
- ...etc
@@ -124,14 +124,13 @@ export default {
124124
multiSelect: true,
125125
values: ["HTML5", "Javascript", "CSS3", "CoffeeScript", "AngularJS", "ReactJS", "VueJS"]
126126
}, {
127-
type: "checkbox",
127+
type: "switch",
128128
label: "Status",
129129
model: "status",
130130
multi: true,
131-
readonly: false,
132-
featured: false,
133-
disabled: false,
134-
default: true
131+
default: true,
132+
textOn: "Active",
133+
textOff: "Inactive"
135134
}]
136135
}
137136
```
@@ -154,16 +153,9 @@ npm run test
154153
```
155154

156155
## TODO
157-
* [x] Date picker with bootstrap-datepicker
158-
* [x] Time picker
159-
* [x] HTML5 Color picker
160-
* [x] Color picker with spectrum
161-
* [x] Image editor
162-
* [x] Better slider (ion.rangeSlider)
163156
* [ ] Groupable fields
164157
* [ ] Validation handling with multiple models
165158
* [ ] Bundle for vendor files
166-
* [x] Unit tests, coverage and CI
167159
* [ ] try [joi](https://www.npmjs.com/package/joi) for validation
168160
* [ ] sortable checkbox list
169161

0 commit comments

Comments
 (0)