@homebound/beam 2.96.0 → 2.96.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/README.md +1 -1
- package/dist/inputs/ChipSelectField.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ _To see the latest designs, check out the [Figma](https://www.figma.com/file/aWU
|
|
|
23
23
|
|
|
24
24
|
## Beam's API Design Approach
|
|
25
25
|
|
|
26
|
-
Beam is specifically "Homebound's
|
|
26
|
+
Beam is specifically "Homebound's Design System". Given this extremely narrow purpose, we can lean into the simplicity of:
|
|
27
27
|
|
|
28
28
|
- We don't need to support everything for everyone
|
|
29
29
|
- We can prefer API/UX consistency & simplicity over configuration & complexity
|
|
@@ -42,7 +42,7 @@ function ChipSelectField(props) {
|
|
|
42
42
|
},
|
|
43
43
|
onBlur: (e) => {
|
|
44
44
|
// Do not call onBlur if focus moved to within the Popover
|
|
45
|
-
if (popoverRef.current && popoverRef.current.contains(e.relatedTarget)) {
|
|
45
|
+
if ((popoverRef.current && popoverRef.current.contains(e.relatedTarget)) || showInput) {
|
|
46
46
|
return;
|
|
47
47
|
}
|
|
48
48
|
(0, utils_1.maybeCall)(onBlur);
|