@hexure/ui 1.13.81 → 1.13.82
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/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -5296,7 +5296,7 @@ const Input$1 = (_a) => {
|
|
|
5296
5296
|
useEffect(() => {
|
|
5297
5297
|
setInternalValue(value);
|
|
5298
5298
|
setInternalSuggestedValues(suggestedValues || []);
|
|
5299
|
-
if (value === null || value === void 0 ? void 0 : value.length) {
|
|
5299
|
+
if ((value === null || value === void 0 ? void 0 : value.length) && !isAutoComplete) {
|
|
5300
5300
|
const newSuggestions = (suggestedValues || []).filter(s => s.toLowerCase().includes(value.toLowerCase()));
|
|
5301
5301
|
setInternalSuggestedValues(newSuggestions);
|
|
5302
5302
|
}
|