The dialog component allows you to create dialog windows inside a blog. Dialog windows can contain other components.
When you close a dialog window, the window still exists in the blog, it is just not visible.
It can be re-opened again by calling the visible method on the component
//get ctrl using $ctrl and passing in the id
let ctrl = $ctrl('i5HfHYsSD-1FF5-iJNQ-RXxu-8zVNVfaxTrAm');
ctrl.visible(true);
Sample Window
The following demonstrates what a dialog window looks like. Simple click the button, and a new dialog window will be opened.