Skip to content

Latest commit

 

History

History
75 lines (47 loc) · 2.25 KB

CHANGELOG.md

File metadata and controls

75 lines (47 loc) · 2.25 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

[Unreleased]

[1.1.0-beta.2] - 2019-01-02

Added

  • You can add custom classes to an item by setting classProp to the name of the property that holds your class for each item.

[1.1.0-beta.1] - 2018-12-20

Changed

  • The vue-nestable-handle component now uses a div instead of a span to allow for more flexible content. If you are useing the handle next to other content, make sure to set display: inline; on .nestable-handle. #9 (by @Guntau)

[1.1.0-beta.0] - 2018-12-20

Added

  • vue-nestable now supports touch events to handle drag & drop on mobile device.

[1.0.0] - 2018-12-16

🎉 I'm proud to announce that version 1.0 has landed. 🎉

No changes since the last beta release, but if you are upgrading from a 0.x release, please note that the polyfill for the experimental support for binding scopedSlots was removed. See Installation for details on how to import the component.

[1.0.0-beta.2] - 2018-12-15

Added

  • You can now access the index of the item in the scoped-slot.
  • The components VueNestable and VueNestableHandle are exposed as named exports.

Changed

  • Renamed component names to PascalCase.

[1.0.0-beta.1] - 2018-12-07

Fixed

  • keyProp was documented but never implemented. You can now set the keyProp that is used to identifie the item.

[1.0.0-beta.0] - 2018-12-04

🎉 We are approaching the first official release of vue-nestable. Check out this beta and please report any bugs you may encounter.

Changed

  • Switched from binding scopedSlots to useing a template loop with slots, #2 (by @pbastowski)

Removed