Skip to content

v2.0.0-beta.14

Pre-release
Pre-release
Compare
Choose a tag to compare
@shentao shentao released this 15 Mar 20:43
· 87 commits to 2.0 since this release

Important

Styles are now contained inside a separate css file. This should enable usage in SSR apps. It should also make it easier to customize the styles without having redundant CSS rules.
However, you have to add the styles manually. Usually this can be done by adding:

<style src="vue-multiselect/dist/vue-multiselect.min.css"></style>

inside a root component or in the place where vue-multiselect is used or as a static asset along with your component-agnostic CSS code.
When used without a bundler, you can add the file as a static asset with this CDN link:

<style src="https://unpkg.com/[email protected]/dist/vue-multiselect.min.css"></style>

New

  • #136 Options list appear on top if there is no space below the component
  • Enable SSR support

Changes

  • #164 Refactor single vs multiple selects by @pczarn
  • #196 Added warning for conflicting configuration
  • #211 noResults slot won’t be displayed if loading is set to true
  • #234 Creating a tag when in single-select mode should close the dropdown by @innominata
  • Migrated to webpack 2

Fixes:

  • #188 Prevent enter submit the form by @slevy85
  • #197 New tagging entries are not transformed to lowercase
  • #204 Full options list should not flash when the component loses focus
  • #190 Closing the multiselect should not cause any isLabel related errors in any case
  • #195 Pointer should now correctly point to the first non-label option when using option groups
  • #188 Pressing enter key should not submit the form by @slevy85
  • #208 Placeholder should now behave correctly in every case
  • #187 Search query is no longer trimmed
  • #274 Custom search should not interfere with option groups by Eidan Spiegel