vue-treeselect

A multi-select component with nested options support for Vue.js

MIT License

Downloads
143.1K
Stars
2.9K
Committers
21

Bot releases are hidden (Show)

vue-treeselect - v0.0.23

Published by riophae over 6 years ago

Improvements

  • The information of selected nodes should be kept when reinitializing options
  • normalizer can only return keys that need to be customized (#66)
vue-treeselect - v0.0.22

Published by riophae over 6 years ago

New

  • Added new prop: required (#56)

Improvements

  • Now accepts beforeClearAll() returning Promise<Boolean>s in addition to Booleans (by @lkmadushan)

Bug Fixes

  • Fixed an edge case that a branch node with no children can't be deselected
vue-treeselect - v0.0.21

Published by riophae over 6 years ago

New

  • Added new prop: beforeClearAll (by @lkmadushan)

Improvements

  • Now options prop is finally reactive! More improvements are on the way. (#16, #17, #18, #36, #58, #60, #63)
vue-treeselect - v0.0.20

Published by riophae over 6 years ago

Changes

  • Added an extra id argument to normalizer prop (by @yan170772286)
vue-treeselect - v0.0.19

Published by riophae over 6 years ago

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)
vue-treeselect - v0.0.18

Published by riophae over 6 years ago

New

  • Nested search mode (by @ThomasKlessen)
vue-treeselect - v0.0.16

Published by riophae over 6 years ago

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
vue-treeselect - v0.0.15

Published by riophae over 6 years ago

New

  • Add new prop valueConsistsOf that enables preventing value combining (#13)
vue-treeselect - v0.0.14

Published by riophae over 6 years ago

New

  • Add new prop normalizer that enables customizing key names of a node object
vue-treeselect - v0.0.13

Published by riophae over 6 years ago

New

  • Add new prop: valueFormat

Bug Fixes

  • Fix: should not emit input event immediately after component created (#25)
vue-treeselect - v0.0.12

Published by riophae over 6 years ago

Bug Fixes

  • Fixed that default selected nodes won't show the correct label after the real data has been registered (delayed loading)
vue-treeselect - v0.0.11

Published by riophae over 6 years ago

New

  • Added new prop disableFuzzyMatching (#2)
vue-treeselect - v0.0.10

Published by riophae over 6 years ago

New

  • Added support for making a specific branch node as default expanded
vue-treeselect - v0.0.9

Published by riophae over 6 years ago

Bug Fixes

  • Fixed disableBranchNodes (#20)
  • Minor style tweaks
vue-treeselect - v0.0.8

Published by riophae over 6 years ago

New

  • Added alwaysOpen prop
  • Added the ability of disabling item selection

Bug Fixes

  • Fixed that clicking on scrollbar accidently closes the dropdown in IE 11 (#15)
vue-treeselect - v0.0.7

Published by riophae over 6 years ago

New

  • Added autoLoadRootOptions prop
  • Added option-label slot for customizing option label (#8)