@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.
@@ -1843,12 +1843,12 @@
1843
1843
  return false;
1844
1844
  }
1845
1845
  }
1846
- else if (column.type === 'date' || column.type === 'datetime') {
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 (!fromDate || !toDate) {
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
  }