@true-engineering/true-react-common-ui-kit 1.5.0 → 1.5.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.
@@ -7701,6 +7701,10 @@
7701
7701
  handleListOpen();
7702
7702
  };
7703
7703
  var handleBlur = function(event) {
7704
+ if (isListOpen && !isOpen) {
7705
+ handleListClose(event);
7706
+ return;
7707
+ }
7704
7708
  if (!isNotEmpty(event.relatedTarget) || !isNotEmpty(list.current)) {
7705
7709
  return;
7706
7710
  }
@@ -7945,7 +7949,7 @@
7945
7949
  event.preventDefault();
7946
7950
  },
7947
7951
  onClick: onArrowClick,
7948
- className: clsx(classes.arrow, isListOpen && classes.activeArrow),
7952
+ className: clsx(classes.arrow, isOpen && classes.activeArrow),
7949
7953
  children: /* @__PURE__ */ jsx(Icon, {
7950
7954
  type: dropdownIcon
7951
7955
  })