-
Methods Method Description com.vaadin.flow.component.checkbox.Checkbox.setLabelAsHtml(String) Since 23.2, this API is deprecated in favor ofCheckbox.setLabelComponent(Component)
com.vaadin.flow.component.checkbox.CheckboxGroup.getDataProvider() com.vaadin.flow.component.checkbox.CheckboxGroup.setDataProvider(DataProvider<T, ?>) use instead one of thesetItems
methods which provide access to eitherCheckboxGroupListDataView
orCheckboxGroupDataView
com.vaadin.flow.component.checkbox.CheckboxGroup.setItems(Stream<T>) Because the stream is collected to a list anyway, useHasListDataView.setItems(Collection)
instead.