Select: make @filter event cancelable
Right now, there is no possibility to have any control over the filter in the select.
When I use the filter to request data from the server as well, I can listen to the @filter event to update the search query on the server.
However, some backends impose a minimum char count for filtering. This usecase is not depictable with the current implementation. The select will always filter on the items its given. So if the minimum char count is not reached yet, it will filter on an uncomplete result set.
It would help to get some control whether filtering is applied or not.
My proposal would be to make the filter-event cancelable. Right now $event.originalEvent.preventDefault() does nothing.
If it would actually prevent the filtering from happening, the Select component could be easily used for things like the above scenario