@megha-ui/react 1.2.145 → 1.2.147
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.
|
@@ -169,7 +169,6 @@ const Grid = ({ columns, wrapperClass, updateGridColumns, data, height, sortable
|
|
|
169
169
|
return filterValue.includes(cellValue);
|
|
170
170
|
})
|
|
171
171
|
: true);
|
|
172
|
-
console.log(searchQueries);
|
|
173
172
|
_filteredData = _filteredData.filter((item) => searchOp === "and"
|
|
174
173
|
? filterColumns.every((column) => {
|
|
175
174
|
var _a, _b, _c;
|
|
@@ -199,6 +198,7 @@ const Grid = ({ columns, wrapperClass, updateGridColumns, data, height, sortable
|
|
|
199
198
|
}
|
|
200
199
|
return true;
|
|
201
200
|
case "lt":
|
|
201
|
+
console.log({ query });
|
|
202
202
|
if (query) {
|
|
203
203
|
return parseFloat(value) < parseFloat(query);
|
|
204
204
|
}
|
|
@@ -275,6 +275,7 @@ const Grid = ({ columns, wrapperClass, updateGridColumns, data, height, sortable
|
|
|
275
275
|
}
|
|
276
276
|
return true;
|
|
277
277
|
case "lt":
|
|
278
|
+
console.log({ query });
|
|
278
279
|
if (query) {
|
|
279
280
|
return parseFloat(value) < parseFloat(query);
|
|
280
281
|
}
|
package/package.json
CHANGED