Blazored / Modal

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

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

Open zorgoz opened 10 months ago

zorgoz commented 10 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>();
}