tabler-react-2 0.1.116 → 0.1.117
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/dist/input/dropdown.js +0 -1
- package/package.json +1 -1
package/dist/input/dropdown.js
CHANGED
|
@@ -112,7 +112,6 @@ var DropdownInput = exports.DropdownInput = function DropdownInput(_ref) {
|
|
|
112
112
|
|
|
113
113
|
// Filter values based on the search query using getLabelText
|
|
114
114
|
(0, _react.useEffect)(function () {
|
|
115
|
-
console.log(values);
|
|
116
115
|
setFilteredValues(values.filter(function (val) {
|
|
117
116
|
var _normalize, _val$searchIndex;
|
|
118
117
|
return getLabelText(val).toLowerCase().includes(searchQuery.toLowerCase()) || ((_normalize = normalize((_val$searchIndex = val.searchIndex) === null || _val$searchIndex === void 0 ? void 0 : _val$searchIndex.toLowerCase())) === null || _normalize === void 0 ? void 0 : _normalize.includes(normalize(searchQuery).toLowerCase()));
|