2.1.0 (2024-04-18)
- Add custom color config for the search and history button (b3fb792)
2.0.1 (2019-02-07)
- Add try/catch around findConfigByKey() calls | 🐛 (8522adf)
2.0.0 (2019-02-04)
- Attribute
datas
is renamedconfig
:- From :
<pm-angular-omnibox datas="$ctrl.datasOmnibox" />
- To :
<pm-angular-omnibox config="$ctrl.configOmnibox" />
- From :
- The config's key
autocomplete
does not acceptPromise
anymore, onlyarray
:- From :
config.pokemons.autocomplete = this.$http.get(uri)
- To :
this.$http.get(uri).then((pokemons) => { config.pokemons.autocomplete = pokemons; })
- From :
- Add search history and ability to load last history entry (8bd8e04)
- The history is stored in the LocalStorage under the key
omnibox-history
- You can inject the
OmniboxStorageService
and use thelockOn
method to prepend a string to this string :OmniboxStorageService.lockOn(this.user.name)
- The history is stored in the LocalStorage under the key
Fork from a private gitlab repository