@true-engineering/true-react-common-ui-kit 3.45.3 → 3.45.4
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 +6 -0
- package/dist/true-react-common-ui-kit.js +4 -0
- package/dist/true-react-common-ui-kit.js.map +1 -1
- package/dist/true-react-common-ui-kit.umd.cjs +4 -0
- package/dist/true-react-common-ui-kit.umd.cjs.map +1 -1
- package/package.json +1 -1
- package/src/components/Select/Select.tsx +5 -1
|
@@ -11817,9 +11817,13 @@
|
|
|
11817
11817
|
dropdownOptions === null || dropdownOptions === void 0 ? void 0 : dropdownOptions.shouldUsePopper
|
|
11818
11818
|
]);
|
|
11819
11819
|
var handleListClose = React.useCallback(function(event) {
|
|
11820
|
+
if (!isListOpen) {
|
|
11821
|
+
return;
|
|
11822
|
+
}
|
|
11820
11823
|
closeList();
|
|
11821
11824
|
onBlur === null || onBlur === void 0 ? void 0 : onBlur(event);
|
|
11822
11825
|
}, [
|
|
11826
|
+
isListOpen,
|
|
11823
11827
|
closeList,
|
|
11824
11828
|
onBlur
|
|
11825
11829
|
]);
|