Skip to content

Latest commit

 

History

History
161 lines (80 loc) · 6.95 KB

CHANGELOG.md

File metadata and controls

161 lines (80 loc) · 6.95 KB

2.0.5 (2023-02-12)

2.0.4 (2023-02-12)

2.0.3 (2022-11-25)

2.0.2 (2022-11-19)

2.0.1 (2022-11-19)

2.0.0 (2022-11-19)

Features

  • track game wins and moves (ef7d36e)

2.0.0-alpha.5 (2021-05-04)

Bug Fixes

Features

  • Cancel drag on escape keypress (c92833e)

2.0.0-alpha.4 (2021-02-24)

Bug Fixes

  • animate nodes on drag out (0a3c2be)
  • remove helper class before transition to allow animation (ab5aafd)
  • useWindowAsScrollContainer (0b65c19), closes #88

2.0.0-alpha.3 (2021-02-19)

Bug Fixes

  • Better guessing for "closest" destination (b462c57)
  • drag settling animation (cba65c3)
  • Prevent memory leaks by holding on to old helper refs (2ef5d66)
  • remove ghost reference on drag out (d8e9adf)
  • revert setup() to data() (c0528e5)
  • timeout ssr compat (06e9450)
  • XY sorting bug when n=1 (819bd4b)

Features

  • Add #item slot support for SlickList (33ac30d)
  • Animate nodes when dragging out (962a706)
  • DragHandle component (ab88102)

2.0.0-alpha.2 (2021-02-16)

Bug Fixes

  • Account for margin in drag and drop (0c571bb)
  • Account for scroll change when transitioning helper (9a4c0c7)
  • change setup() to data() (6a5617d)
  • components rendering with imported h (daf9d09)
  • drag-n-drop for vue 3 (9f603d3)
  • Dragging between containers (849aa8c)
  • nodes is undefined (7e2409d)
  • references to this.getOffset no longer valid (94816c0)
  • scroll compensation and node offset (69fa066)
  • scrolling on mobile broken because of passive events (37630b2)

Features

  • add drag handle to plugin (2b088a1)
  • add support for allow and block props (e032282)
  • Allow :accept="true" as a prop (d794cd7)
  • change modelValue to list prop (d2c2488)
  • working drag between groups (aa11244)

2.0.0-alpha.1 (2021-01-22)

Bug Fixes

2.0.0-alpha.0 (2020-12-01)

Features

BREAKING CHANGES

  • No longer works in Vue 2

Changelog

1.2.0

  • feat: tag props on SlickList and SlickItem components
  • fix: Dragging broken on Android when distance property is set
  • fix: node helper not clean
  • fix: add event listeners in passive mode
  • fix: stopPropogation on click events
  • fix: .d.ts types
  • docs: Chinese documentation
  • chore: lots of dependencies

1.1.0

  • ADDED appendTo prop - appends the helper to the selected DOM node.

1.0.0

  • ADDED Typescript support
  • ADDED Settling animation, the drag helper will now settle back into its new location after releasing the drag.
  • BREAKING: sortStart, sortMove, and sortEnd events are now kebab-case (sort-start, sort-move, sort-end) as per standard practice.
  • Any previous event listeners will need to be updated

0.1.5

  • Fixed a bug in firefox where the text got selected upon dragging

0.1.1

  • Fixed bug where the node index wasn't being updated on the manager

0.1.0

  • Initial push: Convert library from react to vue.