Releases: lukasoppermann/html5sortable
Releases · lukasoppermann/html5sortable
Adding dist to release
v0.9.11 create build
Sortenter Event & allow handle in shadowRoot
Thanks to @christophe-g for #494 & #490
Remove fsevent as hard dep
This should fix #466
FIX ie 11 offset calc
Firefox fix
Minor flickering fix
Minor Fixes
v0.9.2 0.9.2
🎉 Features & stability
Features:
- thanks to @mfeherpataky the events have a much set of data, check out the readme for the changes
- you can now set a custom DragImage
Improvements:
- @jmuzsik added an npm script
npm run tsc
for checking typescript and started creating interfaces and fixing typescript issues - thanks to @jmuzsik we the tests are now much better separated
- a new
store
class was added and will replace the data on the elements to have a cleaner storage and make extracting into modules easier - even more parts of the sortable are extracted into small modules & have dedicates unit tests
Bugfixes:
- sortupdate now fires correctly and the index is fixed
- thanks to @mfeherpataky when dragging an item, the hoever class will not be added to items
⚠️ Deprecations:
The IEfix
as well as connectWith
(which was replace with acceptFrom
) is now considered deprecated.
Bugfix
🎉Feature Update
This release introduces many features & bugfixes, but also some backwards compatibility breaks. Read more below.
Backwards Compatibility Breaks
But why?
Well, IE11 was not really well supported in any case and to get to the same level of support as before you need to include a Polyfill now. By moving to modern JS we can also build a more performant and much cleaner package.
Features
- Thanks to @mfriesen we have a copy option now! 🎉
- The serializer has been improved and you can customize it with the itemSerializer and the containerSerializer function
- Changed testing framework to jest, which makes testing much easier
- Changed build system to rollup
- separate build versions per module type (es,cjs,amd) & added es6 module
🐛Bugfixes & Improvements
- Tables can now be used without providing a placeholder
- Items can be dropped onto disabled items, which fixes #44
- Many functions have been split out into small modules
- Tests have been improved a lot
- Dependency updates
- Non-Items should not receive a sortstart event anymore which removes another bug