@megha-ui/react 1.2.65 → 1.2.67
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.
|
@@ -210,6 +210,8 @@ const Grid = ({ columns, wrapperClass, updateGridColumns, data, height, sortable
|
|
|
210
210
|
new Date(value).getTime() < end);
|
|
211
211
|
}
|
|
212
212
|
else if (start && end) {
|
|
213
|
+
console.log(start, end, value, parseFloat(start.trim()) < parseFloat(value) &&
|
|
214
|
+
parseFloat(value) < parseFloat(end.trim()));
|
|
213
215
|
return (parseFloat(start.trim()) < parseFloat(value) &&
|
|
214
216
|
parseFloat(value) < parseFloat(end.trim()));
|
|
215
217
|
}
|
|
@@ -271,8 +273,6 @@ const Grid = ({ columns, wrapperClass, updateGridColumns, data, height, sortable
|
|
|
271
273
|
new Date(value).getTime() < end);
|
|
272
274
|
}
|
|
273
275
|
else if (start && end) {
|
|
274
|
-
console.log(start, end, value, parseFloat(start.trim()) < parseFloat(value) &&
|
|
275
|
-
parseFloat(value) < parseFloat(end.trim()));
|
|
276
276
|
return (parseFloat(start.trim()) < parseFloat(value) &&
|
|
277
277
|
parseFloat(value) < parseFloat(end.trim()));
|
|
278
278
|
}
|
package/package.json
CHANGED