Great!

Great!

Can you please change the remove() method in CleaveExtension class to handle null value for ‘extended’ variable?

public void remove() {
	if(this.extended != null) {
		this.getElement().removeFromParent();
		this.extended.clear();
	}
}

Null value situation can happen if it was extended and later removed without UI being available in the meanwhile.

Sorry I had missed the notification for this message. I’ll create a ticket and see if I have time to do it tomorrow.

I had time now so I released a new version. Thanks for the report.

Thank you