@homebound/beam 2.417.0 → 2.417.1

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.cjs CHANGED
@@ -8910,7 +8910,7 @@ function TextFieldBase(props) {
8910
8910
  }
8911
8911
  }
8912
8912
  const onFocusChained = (0, import_react_aria12.chain)((e) => {
8913
- if (selectOnFocus) e.target.select();
8913
+ if (selectOnFocus && e.isTrusted) e.target.select();
8914
8914
  }, onFocus);
8915
8915
  function handleUnfocusedPlaceholderClick(e) {
8916
8916
  e.stopPropagation();