diff --git a/src/components/confirmationoptions/ConfirmationOptions.d.ts b/src/components/confirmationoptions/ConfirmationOptions.d.ts index d0e4fb178..d6652a580 100644 --- a/src/components/confirmationoptions/ConfirmationOptions.d.ts +++ b/src/components/confirmationoptions/ConfirmationOptions.d.ts @@ -11,6 +11,10 @@ export interface ConfirmationOptions { * Message of the confirmation. */ message?: string | undefined; + /** + * Header text of the dialog. + */ + header?: string | undefined; /** * Optional key to match the key of the confirmation, useful to target a specific confirm dialog instance. */ @@ -19,6 +23,10 @@ export interface ConfirmationOptions { * Icon to display next to the message. */ icon?: string | undefined; + /** + * Whether background scroll should be blocked when dialog is visible. + */ + blockScroll?: boolean | undefined; /** * Callback to execute when action is confirmed. */