what is the replacement for grid.setResponsive(true) method in vaadin 14 F

I am working vaadin 14 upgrade from vaadin 8. I just want to know the replacement for grid.setResponsive(true) method in vaadin 14 Flow.

Please advise / suggest the possible alternate for grid.setResponsive(true) in vaadin 14 .

also please advise for below missing methods(setBodyRowHeight, setCaption, setWidth, setExpandRatio) in vaadin 14 …

grid.setBodyRowHeight();
grid.addColumn(CustomAction::getName).setCaption(“Name”).setExpandRatio(1);
grid.addComponentColumn(this::buildActLayOut).setCaption(“Action”).setWidth(100);

There’s no setResponsive in Vaadin 14. You can replace the responsive styles with Media Queries.