@sd-angular/core 0.0.969 → 0.0.970
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/bundles/sd-angular-core-grid-material.umd.js +2 -2
- package/bundles/sd-angular-core-grid-material.umd.js.map +1 -1
- package/bundles/sd-angular-core-grid-material.umd.min.js +1 -1
- package/bundles/sd-angular-core-grid-material.umd.min.js.map +1 -1
- package/esm2015/grid-material/src/lib/grid-material.component.js +3 -3
- package/fesm2015/sd-angular-core-grid-material.js +2 -2
- package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
- package/package.json +1 -1
- package/{sd-angular-core-0.0.969.tgz → sd-angular-core-0.0.970.tgz} +0 -0
|
@@ -1843,12 +1843,12 @@
|
|
|
1843
1843
|
return false;
|
|
1844
1844
|
}
|
|
1845
1845
|
}
|
|
1846
|
-
else if (column.type === 'date' || column.type === '
|
|
1846
|
+
else if (column.type === 'datetime' || column.type === 'date' || column.type === 'time') {
|
|
1847
1847
|
var from = (_a = filterInfo.rawColumnFilter[column.field]) === null || _a === void 0 ? void 0 : _a.from;
|
|
1848
1848
|
var to = (_b = filterInfo.rawColumnFilter[column.field]) === null || _b === void 0 ? void 0 : _b.to;
|
|
1849
1849
|
var fromDate = Date.begin(from);
|
|
1850
1850
|
var toDate = Date.end(to);
|
|
1851
|
-
if (
|
|
1851
|
+
if (fromDate && toDate) {
|
|
1852
1852
|
if (new Date(columnValue).getTime() < fromDate.getTime() || new Date(columnValue).getTime() >= toDate.getTime()) {
|
|
1853
1853
|
return false;
|
|
1854
1854
|
}
|