Skip to content

Releases: jledentu/vue-finder

v2.2.2

17 Sep 07:55
Compare
Choose a tag to compare

2.2.2 (2024-09-17)

Bug Fixes

  • Allow to drop on items that cannot be dragged (#219)

Maintenance

  • Upgrade GitHub workflow

v5.0.0

05 Jul 21:21
Compare
Choose a tag to compare

5.0.0 (2024-07-05)

  • feat!: replace components by scoped slots for customization

BREAKING CHANGES

This release introduces scoped slots allowing to customize some parts of the UI. They replace previous custom components passed as props : itemComponent, arrowComponent and undocumented dragImageComponent, dropZoneComponent.

- <Finder :tree="tree" :item-component="itemComponent" />
+ <Finder :tree="tree">
+   <template #item="{ item }">
+     <div style="color: blue">
+       <em>Name:</em> <strong>{{ item.label }}</strong>
+     </div>
+  </template>
+ </Finder>
- itemComponent: {
-   props: ["item"],
-   template: '<div style="color: blue"><em>Name:</em> <strong>{{ item.label }}</strong></div>',
- }

See https://vue-finder.netlify.app/customization.html#custom-slots

v2.2.1

22 Dec 08:12
Compare
Choose a tag to compare

2.2.1 (2023-12-22)

Bug Fixes

  • do not trap focus when virtualize: true (594f501)

v2.2.0

19 May 14:05
Compare
Choose a tag to compare

2.2.0 (2023-05-19)

Features

v4.1.1

05 May 22:54
Compare
Choose a tag to compare

4.1.1 (2023-05-05)

Performance Improvements

  • do not refresh when expanding already selected node (#208) (58f018c)

v2.1.2

05 May 22:28
Compare
Choose a tag to compare

2.1.2 (2023-05-05)

Performance Improvements

  • avoid update when expanding same node (#207) (87b859e)

v4.1.0

12 Apr 07:29
Compare
Choose a tag to compare

4.1.0 (2023-04-12)

Features

v2.1.1

31 Mar 10:39
Compare
Choose a tag to compare

2.1.1 (2023-03-31)

Bug Fixes

  • fix validation of drag-enabled prop to avoid Vue warnings (#205) (9455989)

v4.0.0

30 Mar 21:13
Compare
Choose a tag to compare

This new release brings the stable support of Vue 3. 🎉

BREAKING CHANGES

This version does not support Vue 2, please use the 2.x version if you use Vue 2.

Here are the changes since the 2.1.0 version:

Features

  • support Vue 3
  • events: pass items in events (#195) (08681a0)

Bug Fixes

Chore

  • upgrade many development dependencies

v2.1.0

30 Mar 21:43
Compare
Choose a tag to compare

2.1.0 (2023-03-30)

Features