Love this component. However V2.0.3 is currently not compatible with Vaadin 14.2/15/16. Changed following code to get it to work:
public CustomMediaQuery(Consumer<Boolean> action) {
this.action = action;
// getElement().addSynchronizedProperty("querymatches");
// getElement().addSynchronizedPropertyEvent("querymatches");
getElement().setProperty("querymatches", "");
getElement().addPropertyChangeListener("querymatches", e->
{
action.accept(getModel().getQuerymatches());
});
}