Releases: amendx/vue-dndrop
Releases · amendx/vue-dndrop
1.3.1
What's Changed
- Documentation: Correct link to get-child-payload by @ga676005 in #31
- Remove 404 link to helpers functions by @ga676005 in #32
- Fix blocked scroll after dragging in touch devices by @leotabosa in #39
- Fix/dragging by @amendx in #40
- build(perm): add workaround git permission by @amendx in #41
- build(perm): add workaround git permission by @amendx in #42
- build(perm): add workaround git permission by @amendx in #43
- deploy(actions): update checkout dep by @amendx in #44
- docs(update): tags and urls by @amendx in #45
- fix priority on the definition of drag relevant containers by @leotabosa in #46
- fix(core): missmatch on event listener - grab by @amendx in #56
- fix(core): prevent container mismatch in dual instances #60 by @amendx in #63
- Update README.md by @leotabosa in #65
- fix(typo): mismatch import declaration by @amendx in #67
- Update README.md by @leotabosa in #68
- Update using-vue.md by @leotabosa in #69
- Update installation.md by @leotabosa in #70
- Feature/kanban by @amendx in #75
- fix(core): check if event is cancelable before preventing default by @amendx in #81
New Contributors
Full Changelog: 1.2.0...1.3.1
1.2.0
1.1.2
1.1.1
1.1.1 is here 🎉
vue-dndrop
now supports vue 3.x with the tagnext
:vue-dndrop@next
<check out the changelog
✔️
- updated documentation and fixed some typos for better understanding
- minor docs enhancement
- added an error prevention when dragging element fires
@drop
and@drop-ready
1.1.0
1.0.3
1.0.2
- new event:
- @drop-not-allowed
Event
@drop not allowed
for either being ano-drop
zone or not suiting the validation rules at a specific state
Example
<Container @drop-not-allowed="dropNotAllowed">
dropNotAllowed ({ payload, container }) {
return false
}
Parameters
- payload :
object
: the payload object that is returned by get-child-payload. It will be undefined in case get-child-payload is not set. - container :
object
: return the container which the current payload was unable to be dropped.