• Show a modal confirm dialog and resolve with the user's choice.

    Resolution rules:

    • confirm button click → true
    • cancel button click → false
    • Escape key → false
    • click on the backdrop → false
    • Enter key → true (the confirm button is auto-focused)

    The Promise never rejects.

    Parameters

    Returns Promise<boolean>