@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 +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8541,7 +8541,7 @@ function TextFieldBase(props) {
|
|
|
8541
8541
|
}
|
|
8542
8542
|
}
|
|
8543
8543
|
const onFocusChained = chain((e) => {
|
|
8544
|
-
if (selectOnFocus) e.target.select();
|
|
8544
|
+
if (selectOnFocus && e.isTrusted) e.target.select();
|
|
8545
8545
|
}, onFocus);
|
|
8546
8546
|
function handleUnfocusedPlaceholderClick(e) {
|
|
8547
8547
|
e.stopPropagation();
|