@megha-ui/react 1.2.437 → 1.2.438
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.
|
@@ -149,7 +149,6 @@ withCard = false, cardClassName, cardHeader, title, headerLeft, headerRight, sub
|
|
|
149
149
|
return filterValue.includes(cellValue);
|
|
150
150
|
})
|
|
151
151
|
: true);
|
|
152
|
-
console.log(searchOp, "searchOp");
|
|
153
152
|
_filteredData = _filteredData.filter((item) => searchOp === "and"
|
|
154
153
|
? filterColumns.every((column) => {
|
|
155
154
|
var _a, _b, _c;
|
|
@@ -162,7 +161,6 @@ withCard = false, cardClassName, cardHeader, title, headerLeft, headerRight, sub
|
|
|
162
161
|
const regex = createRegexFromWildcard(query);
|
|
163
162
|
return regex.test(value);
|
|
164
163
|
}
|
|
165
|
-
console.log("searchQueries[column.key]?.type", searchQueries[column.key]);
|
|
166
164
|
switch ((_c = searchQueries[column.key]) === null || _c === void 0 ? void 0 : _c.type) {
|
|
167
165
|
case "contains":
|
|
168
166
|
return value.toLowerCase().includes(query.toLowerCase());
|
package/package.json
CHANGED