I'm working on an application in Angular 1.5. I stick to Component-based architecture (https://docs.angularjs.org/guide/component) and Input/Output flow described there.
Until now it worked fine, but now i need to open a child component as a dialog window and I'm stuck.
The architecture is fine when you render components tree down starting from main component. But i don't have an idea how get one of those children and display it as a dialog, and still use recommended Input/Output flow.
Do You know any pattern/library to do so?