intelicoreact 1.4.56 → 1.4.57
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.
|
@@ -503,6 +503,7 @@ const TagsDropdown = _ref => {
|
|
|
503
503
|
};
|
|
504
504
|
|
|
505
505
|
const isItemMatchesSearch = item => {
|
|
506
|
+
if (item.isHiddenInList) return false;
|
|
506
507
|
const title = item.title || item.label;
|
|
507
508
|
return searchValue.length ? title === null || title === void 0 ? void 0 : title.toLowerCase().includes((searchValue === null || searchValue === void 0 ? void 0 : searchValue.toLowerCase()) || "") : true;
|
|
508
509
|
}; // --- GENERAL FUNCTIONS END --- //
|