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 +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
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