albinasoft-ui-package 1.1.40 → 1.1.41
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.
@@ -152,7 +152,7 @@ var CustomSelect = function (_a) {
|
|
152
152
|
maxHeight: "200px",
|
153
153
|
overflowY: "auto",
|
154
154
|
} },
|
155
|
-
searchable && (react_1.default.createElement("input", { type: "text", placeholder: "Ara...", className: "form-control search-input", value: inputValue, onChange: function (e) { return setInputValue(e.target.value); } })),
|
155
|
+
searchable && (react_1.default.createElement("input", { type: "text", placeholder: "Ara...", className: "form-control custom-search-input", value: inputValue, onChange: function (e) { return setInputValue(e.target.value); } })),
|
156
156
|
filteredOptions.length > 0 ? (filteredOptions.map(function (option) { return (react_1.default.createElement("div", { key: option.id, className: "dropdown-item ".concat(currentValues.includes(option.value) ? "selected" : ""), onClick: function () { return toggleValue(option.value); } },
|
157
157
|
currentValues.includes(option.value) && (react_1.default.createElement(fa_1.FaCheck, { className: "me-2 text-success" })),
|
158
158
|
option.label)); })) : (react_1.default.createElement("div", { className: "dropdown-item text-muted" }, "Uygun se\u00E7enek yok"))),
|