@simplybusiness/mobius 5.30.0 → 5.30.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/CHANGELOG.md +6 -0
- package/dist/cjs/index.js +1 -2
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/esm/index.js +1 -2
- package/dist/types/src/components/AddressLookup/AddressLookup.d.ts +1 -1
- package/package.json +2 -2
- package/src/components/AddressLookup/AddressLookup.tsx +2 -2
- package/src/components/Combobox/Combobox.tsx +3 -5
package/CHANGELOG.md
CHANGED
package/dist/cjs/index.js
CHANGED
|
@@ -1565,12 +1565,11 @@ var ComboboxInner = (0, import_react25.forwardRef)(
|
|
|
1565
1565
|
const { down } = useBreakpoint();
|
|
1566
1566
|
const isMobile = down("md");
|
|
1567
1567
|
const handleFocus = (e) => {
|
|
1568
|
+
onFocus?.(e);
|
|
1568
1569
|
if (!filteredOptions || filteredOptions.length === 0) return;
|
|
1569
1570
|
if (blurTimeoutRef.current) {
|
|
1570
1571
|
clearTimeout(blurTimeoutRef.current);
|
|
1571
1572
|
blurTimeoutRef.current = null;
|
|
1572
|
-
} else {
|
|
1573
|
-
onFocus?.(e);
|
|
1574
1573
|
}
|
|
1575
1574
|
setIsOpen(true);
|
|
1576
1575
|
};
|