@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.
- package/bundles/sd-angular-core-table.umd.js +1 -1
- package/bundles/sd-angular-core-table.umd.js.map +1 -1
- package/bundles/sd-angular-core-table.umd.min.js +1 -1
- package/bundles/sd-angular-core-table.umd.min.js.map +1 -1
- package/esm2015/table/src/lib/table.component.js +2 -2
- package/fesm2015/sd-angular-core-table.js +1 -1
- package/fesm2015/sd-angular-core-table.js.map +1 -1
- package/package.json +2 -2
- package/{sd-angular-core-1.3.206.tgz → sd-angular-core-1.3.208.tgz} +0 -0
|
@@ -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.
|
|
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
|
}
|