@artf how can we show toolbar on hover. Currently toolbar is open when we select any element but I want to show it on hover. Any help would be appreciated.

The only way I can help you here is to tell you to check this command https://github.com/artf/grapesjs/blob/dev/src/commands/view/SelectComponent.js (id of the command: select-comp) which is responsible for showing the toolbar. So you can try to use Commands API to extend it
@YashPrince Hi, were you able to solve this? I need a similar implementation
@sakshigarg9 ,
editor.Commands.extend('select-comp', {
onHovered(em, component) {
const trg = component && component.getEl();
if (trg) {
const pos = this.getElementPos(trg);
this.updateBadge(trg, pos);
this.updateToolbar(component); // show toolbar
this.updateHighlighter(trg, pos);
this.showElementOffset(trg, pos);
}
},
});
Most helpful comment
@sakshigarg9 ,