mobx-view-model-devtools 0.0.45 → 0.0.46
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/auto.global.js +1 -1
- package/index.cjs +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -40922,7 +40922,7 @@ class SearchEngine {
|
|
|
40922
40922
|
return this.searchText !== this.searchTextToSearch;
|
|
40923
40923
|
}
|
|
40924
40924
|
get shouldShowSuggestions() {
|
|
40925
|
-
return
|
|
40925
|
+
return this.isSearchInputFocused && !this.isSuggestionsDismissed && this.suggestionItems.length > 0;
|
|
40926
40926
|
}
|
|
40927
40927
|
get suggestionItems() {
|
|
40928
40928
|
if (this.isSearchTextDebouncing && !this.searchText.includes("."))
|