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/index.js CHANGED
@@ -40922,7 +40922,7 @@ class SearchEngine {
40922
40922
  return this.searchText !== this.searchTextToSearch;
40923
40923
  }
40924
40924
  get shouldShowSuggestions() {
40925
- return true;
40925
+ return this.isSearchInputFocused && !this.isSuggestionsDismissed && this.suggestionItems.length > 0;
40926
40926
  }
40927
40927
  get suggestionItems() {
40928
40928
  if (this.isSearchTextDebouncing && !this.searchText.includes("."))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobx-view-model-devtools",
3
- "version": "0.0.45",
3
+ "version": "0.0.46",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "author": "js2me",