evui 3.4.86 → 3.4.88

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evui",
3
- "version": "3.4.86",
3
+ "version": "3.4.88",
4
4
  "description": "A EXEM Library project",
5
5
  "author": "exem <dev_client@ex-em.com>",
6
6
  "license": "MIT",
@@ -315,6 +315,7 @@ export const useDropdown = (param) => {
315
315
  mv.value.splice(idx, 1);
316
316
  }
317
317
  allCheck.value = mv.value.length === filteredItems.value.filter(item => !item.disabled).length;
318
+ mv.value = [...mv.value];
318
319
  changeMv();
319
320
  };
320
321
  const clickItem = !props.multiple ? singleClickItem : multipleClickItem;
@@ -718,8 +718,8 @@ export default {
718
718
  });
719
719
 
720
720
  onUnmounted(() => {
721
- document.removeEventListener('wheel', onMouseWheel);
722
- document.removeEventListener('scroll', onMouseWheel);
721
+ document.removeEventListener('wheel', onMouseWheel, { capture: false });
722
+ document.removeEventListener('scroll', onMouseWheel, { capture: true });
723
723
  });
724
724
 
725
725
  onActivated(() => {