react-table-edit 0.9.4 → 0.9.5

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.js CHANGED
@@ -659,6 +659,7 @@ var SelectTable = (0, import_react6.forwardRef)((props, ref) => {
659
659
  (0, import_react6.useEffect)(() => {
660
660
  if (inputRef && !isDisabled) {
661
661
  inputRef.current.addEventListener("blur", function() {
662
+ setDropdownOpen(false);
662
663
  setSearchTerm("");
663
664
  setIsFocus(false);
664
665
  });
package/dist/index.mjs CHANGED
@@ -623,6 +623,7 @@ var SelectTable = forwardRef((props, ref) => {
623
623
  useEffect3(() => {
624
624
  if (inputRef && !isDisabled) {
625
625
  inputRef.current.addEventListener("blur", function() {
626
+ setDropdownOpen(false);
626
627
  setSearchTerm("");
627
628
  setIsFocus(false);
628
629
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-table-edit",
3
3
  "license": "MIT",
4
- "version": "0.9.4",
4
+ "version": "0.9.5",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",