@megha-ui/react 1.3.78 → 1.3.79
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.
|
@@ -98,6 +98,9 @@ const GridHeader = ({ columns, onSearch, searchQueries, sortable, search, resiza
|
|
|
98
98
|
setDropdownVisible("");
|
|
99
99
|
setMenuPosition(null);
|
|
100
100
|
setSearchOpsPosition(null);
|
|
101
|
+
if (!target.closest(".column-search-outside-wrapper")) {
|
|
102
|
+
setActiveSearchColumn(null);
|
|
103
|
+
}
|
|
101
104
|
};
|
|
102
105
|
document.addEventListener("click", closeMenu);
|
|
103
106
|
return () => {
|
|
@@ -558,7 +561,7 @@ const GridHeader = ({ columns, onSearch, searchQueries, sortable, search, resiza
|
|
|
558
561
|
? "var(--background)"
|
|
559
562
|
: "var(--disabled-bg)",
|
|
560
563
|
}, value: ((_48 = searchQueries[((_47 = headerColumns.find((column) => column.key === _groupBy)) === null || _47 === void 0 ? void 0 : _47.key) || ""]) === null || _48 === void 0 ? void 0 : _48.text) || "", disabled: !((_49 = headerColumns.find((column) => column.key === _groupBy)) === null || _49 === void 0 ? void 0 : _49.search), height: 32, extraInputStyle: { minWidth: 10 }, className: "w-full", backgroundColor: "#fff" }) }))) ||
|
|
561
|
-
null })))] })) })] }), search && columnSearchOutside && (_jsxs("div", { style: { position: "relative" }, children: [_jsx("div", { style: {
|
|
564
|
+
null })))] })) })] }), search && columnSearchOutside && (_jsxs("div", { style: { position: "relative" }, className: "column-search-outside-wrapper", children: [_jsx("div", { style: {
|
|
562
565
|
marginTop: "0.5rem",
|
|
563
566
|
pointerEvents: search &&
|
|
564
567
|
((_50 = headerColumns.find((column) => column.key === _groupBy)) === null || _50 === void 0 ? void 0 : _50.search)
|
|
@@ -888,7 +891,7 @@ const GridHeader = ({ columns, onSearch, searchQueries, sortable, search, resiza
|
|
|
888
891
|
: "var(--disabled-bg)",
|
|
889
892
|
}, value: ((_t = searchQueries[column.key]) === null || _t === void 0 ? void 0 : _t.text) ||
|
|
890
893
|
"", disabled: !column.search, height: 32, extraInputStyle: { minWidth: 10 }, className: "w-full", backgroundColor: "var(--background)" }) }))) ||
|
|
891
|
-
null })))] })) })] }), search && columnSearchOutside && (_jsxs("div", { style: { position: "relative" }, children: [_jsx("div", { style: {
|
|
894
|
+
null })))] })) })] }), search && columnSearchOutside && (_jsxs("div", { style: { position: "relative" }, className: "column-search-outside-wrapper", children: [_jsx("div", { style: {
|
|
892
895
|
marginTop: "0.5rem",
|
|
893
896
|
pointerEvents: search && column.search ? "auto" : "none",
|
|
894
897
|
cursor: search && column.search
|
package/package.json
CHANGED