@homebound/beam 2.417.0 → 2.417.2
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 +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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();
|
|
@@ -11118,6 +11118,7 @@ function ComboBoxBase(props) {
|
|
|
11118
11118
|
onSelect(keys.map(keyToValue), newSelectedOptions);
|
|
11119
11119
|
} else {
|
|
11120
11120
|
const key = newValue;
|
|
11121
|
+
if (key === selectedKeys[0]) return;
|
|
11121
11122
|
if (key === null || key === void 0) {
|
|
11122
11123
|
onSelect([], []);
|
|
11123
11124
|
return;
|