Releases: riophae/vue-treeselect
Releases · riophae/vue-treeselect
v0.0.22
New
- Added new prop:
required
(#56)
Improvements
- Now accepts
beforeClearAll()
returning Promise<Boolean>
s in addition to Boolean
s (by @lkmadushan)
Bug Fixes
- Fixed an edge case that a branch node with no children can't be deselected
v0.0.21
New
Improvements
- Now
options
prop is finally reactive! More improvements are on the way. (#16, #17, #18, #36, #58, #60, #63)
v0.0.19
New
- Added new event types:
select
& deselect
(#53)
Other Changes
- Added an extra
id
argument to loadRootOptions
and loadChildrenOptions
, which is useful if your multiple instances of vue-treeselect are sharing the same function (by @yan170772286)
v0.0.17
New
- Added support for non-ajax forms by using hidden fields (related props newly added:
name
, joinValues
& delimiter
)
Improvements
- If the control is out of viewport, when activated the menu will open below
Other Changes
autofocus
is now changed to autoFocus
. The old prop name will still work for some time but will be removed from a future version.
v0.0.16
Bug Fixes
- Fix: default selected nodes not showing correct label after the real data has been registered (delayed loading) (#49)
- Fix: after loading children options of a checked node, should also check these children options
v0.0.15
New
- Add new prop
valueConsistsOf
that enables preventing value combining (#13)
v0.0.14
New
- Add new prop
normalizer
that enables customizing key names of a node object
v0.0.13
New
- Add new prop:
valueFormat
Bug Fixes
- Fix: should not emit
input
event immediately after component created (#25)