Trouble opening multiple Dialogs ... Bug ?

In my Application I need to open several Dialogs on top of each other in a kind of modal way and I’ve found this problem when I try to close more than one from the top of the stack.
All the objects on the screen become frozen, locked and everything seems disable, not a button clickable, etc.
Here a simple source to reproduce the problem.
Tested using Vaadin Flow 12.0.5 on Linux Ubuntu Chrome, Linux Ubuntu Firefox and Android 8 Chrome.
Is this a bug ?
Any hint for some workaround ?

public class MainView extends VerticalLayout {
    public MainView() {
    	Button button = new Button("Open Dialog 0", e -> {
    		Dialog dialog0 = new Dialog();
    		dialog0.setCloseOnEsc(false);
    		dialog0.setCloseOnOutsideClick(false);
    		dialog0.add(new Label("Dialog 0"));
    		dialog0.add(new Button("Open Dialog 1", e0 -> {
    			Dialog dialog1 = new Dialog();
    			dialog1.setCloseOnEsc(false);
    			dialog1.setCloseOnOutsideClick(false);
        		dialog1.add(new Label("Dialog 1"));
        		dialog1.add(new Button("Open Dialog 2", e1 -> {
        			Dialog dialog2 = new Dialog();
        			dialog2.setCloseOnEsc(false);
        			dialog2.setCloseOnOutsideClick(false);
        			dialog2.add(new Label("Dialog 2"));
        			dialog2.add(new Button("Close Dialog 1 and 2", e2 -> {
        				dialog2.close();
        				dialog1.close();
        			}));
        			dialog2.open();
        		}));
        		dialog1.open();
    		}));
    		dialog0.open();
    	});
    	add(button);
    }
}

Yeah, looks like a bug. You should file a ticket at https://github.com/vaadin/vaadin-dialog-flow/issues .

Solved on 12.0.6

Same problem with textfields in my FormLayout. Not editable when I add a dialog over a open dialog. Using 14.0.x and 14.1.x. Any fix oder workaround?

I have the same problem in version 15.0.2

This problem has come up again. Tested on LTS Version 14.1.23
I also noticed that the problem is related to the use of the mouse: moving with the Tab key and using the Enter key the button behaves correctly, instead using the mouse it is not possible to click on the same button.

Still present in Version 14.1.24. From some tests, I noticed that the problem seems to arise from version 14.1.17
Maybe this helps.

Ok. it seems finally solved in version 14.1.25
Thanks