From f381a17405051e76668f14a19f994fc206d9afbd Mon Sep 17 00:00:00 2001 From: Michael Reeves Date: Wed, 8 Dec 2021 05:16:41 -0600 Subject: [PATCH] added header and blockScroll props to confirmationoptions.d.ts --- .../confirmationoptions/ConfirmationOptions.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) 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. */