Blazored / Modal

A powerful and customizable modal implementation for Blazor applications.
https://blazored.github.io/Modal/
MIT License
764 stars 184 forks source link

[Feature Request] Access to all visible modals from IModalService #552

Open zorgoz opened 5 months ago

zorgoz commented 5 months ago

Please provide readonly access to the Stack of all visible Modal instances in IModalService.

Suggestion. The enumeration would start with the topmost modal.

public interface IModalService {
   IEnumerable<IModalReference> VisibleModals();
   IEnumerable<IModalReference> VisibleModals<ModalType>();
}