-
Methods Method Description com.vaadin.flow.component.select.Select.setDataProvider(DataProvider<T, ?>) use instead one of thesetItemsmethods which provide access to eitherSelectListDataVieworSelectDataViewcom.vaadin.flow.component.select.Select.setItems(Stream<T>) Because the stream is collected to a list anyway, useHasListDataView.setItems(Collection)instead.
-
Constructors Constructor Description com.vaadin.flow.component.select.Select(T...) as of 23.1. Please useHasListDataView.setItems(Object[])instead.