Is it possible to have a ngBootstrap modal as a shared component and use an instance of it in other components.
I'd like to have one Modal that prompts the user to delete a record and I'd like to re-use it across multiple components with different record types.
ngBootstrap site shows a "Components As Content" example but in that example it looks like the ModalComponent dictates whether to open or close the ModalContents. I'd like the ability to open/close an instance of a modal from another (arbitrary) component.
Is this possible?