Member Junction
    Preparing search index...

    Options for MJConfirmService.Confirm. Mirror the <mj-confirm-dialog> inputs, but in a flat options bag suited to an imperative call.

    interface MJConfirmOptions {
        cancelText?: string;
        confirmText?: string;
        detail?: string;
        icon?: string;
        message: string;
        title?: string;
        type?: MJConfirmDialogType;
    }
    Index

    Properties

    cancelText?: string

    Dismiss button label. Defaults to 'Cancel'.

    confirmText?: string

    Affirmative button label. Defaults to 'Confirm'.

    detail?: string

    Optional secondary line, rendered smaller/muted beneath the message.

    icon?: string

    Font Awesome icon override (e.g. "fa-solid fa-trash"). '' suppresses the icon.

    message: string

    Primary prompt text.

    title?: string

    Title-bar heading. Defaults to 'Confirm'.

    Visual intent — drives the header icon + confirm button color. Defaults to 'default'.