Thanks for all the great work on this project to date. Loving the Angular approach :)
I'm using Typeahead with a remote datasource, retrieving suggestions from a remote service while searches 100,000 items.
I have everything working pretty well, but on every keypress the suggestion list disappears, before reappearing with the results from the remote service.
You can see this behaviour here: http://plnkr.co/edit/eGG9Kj?p=preview (try typing "Little".)
My previous experience has been with JQuery UI autocomplete, which keeps the suggestion list visible and in-place, while the items in the list are replaced with the new suggestions coming from the server - resulting in no flicker and a better experience IMHO.
You can see the jQueryUi behaviour here:
http://jqueryui.com/autocomplete/#remote-jsonp
Thanks for considering this!