@sd-angular/core 1.3.206 → 1.3.208

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.
@@ -1391,7 +1391,7 @@
1391
1391
  if (isMultiple) {
1392
1392
  var columnValues_1 = (_a = item[field].map(function (i) { var _a; return ((_a = i[columnType_1.option.valueField]) !== null && _a !== void 0 ? _a : '').toString().trim().toLowerCase(); })) !== null && _a !== void 0 ? _a : [];
1393
1393
  var filterValues = (_b = rawColumnFilter[field]) === null || _b === void 0 ? void 0 : _b.map(function (v) { return (v !== null && v !== void 0 ? v : '').toString().trim().toLowerCase(); });
1394
- if ((filterValues === null || filterValues === void 0 ? void 0 : filterValues.length) && filterValues.some(function (fv) { return !columnValues_1.includes(fv); })) {
1394
+ if ((filterValues === null || filterValues === void 0 ? void 0 : filterValues.length) && filterValues.every(function (fv) { return !columnValues_1.includes(fv); })) {
1395
1395
  return { value: false };
1396
1396
  }
1397
1397
  }