@firecms/ui 3.0.0-canary.138 → 3.0.0-canary.139

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.umd.js CHANGED
@@ -15825,7 +15825,7 @@
15825
15825
  React.useEffect(() => {
15826
15826
  if (type !== "number") return;
15827
15827
  const handleWheel = (event) => {
15828
- event.preventDefault();
15828
+ if (event.target instanceof HTMLElement) event.target.blur();
15829
15829
  };
15830
15830
  const element = "current" in inputRef ? inputRef.current : inputRef;
15831
15831
  element.addEventListener("wheel", handleWheel);