@facter/ds-core 1.33.8 → 1.33.9

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/dist/index.js CHANGED
@@ -3563,8 +3563,8 @@ function CardSelect({
3563
3563
  e.stopPropagation();
3564
3564
  el.scrollTop = Math.max(0, Math.min(scrollTop + e.deltaY, scrollHeight - clientHeight));
3565
3565
  };
3566
- el.addEventListener("wheel", handleWheel, { passive: false });
3567
- return () => el.removeEventListener("wheel", handleWheel);
3566
+ el.addEventListener("wheel", handleWheel, { passive: false, capture: true });
3567
+ return () => el.removeEventListener("wheel", handleWheel, { capture: true });
3568
3568
  }, [open, filteredOptions]);
3569
3569
  const handleScroll = React10__namespace.useCallback(() => {
3570
3570
  if (!onLoadMore || !hasMore || loading) return;