Skip to content

Releases: lukasoppermann/html5sortable

Adding dist to release

14 Mar 17:34
Compare
Choose a tag to compare
v0.9.11

create build

Sortenter Event & allow handle in shadowRoot

05 Mar 06:43
Compare
Choose a tag to compare

Remove fsevent as hard dep

09 Oct 11:41
Compare
Choose a tag to compare

FIX ie 11 offset calc

08 Oct 17:44
Compare
Choose a tag to compare

Firefox fix

25 Aug 20:12
Compare
Choose a tag to compare

Minor flickering fix

26 May 13:13
Compare
Choose a tag to compare

Minor Fixes

25 Apr 11:57
Compare
Choose a tag to compare
v0.9.2

0.9.2

🎉 Features & stability

04 Apr 20:14
Compare
Choose a tag to compare

⚠️Warning: Some minor b/c breaks.

Features:

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

13 Mar 20:10
Compare
Choose a tag to compare

Small bugfix for big sortable items thanks to @mfriesen!

🎉Feature Update

09 Mar 15:58
Compare
Choose a tag to compare

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