Merge pull request #7205 from wangziling/fix-confirm-dialog-types

fix(confirmdialog): fix the missing of the pass-though prop named `mask`
pull/7210/head
Tuğçe Küçükoğlu 2025-02-06 12:35:23 +03:00 committed by GitHub
commit a8796c2775
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -101,6 +101,10 @@ export interface ConfirmDialogPassThroughOptions {
* Used to pass attributes to the footer's DOM element. * Used to pass attributes to the footer's DOM element.
*/ */
footer?: ConfirmDialogPassThroughOptionType; footer?: ConfirmDialogPassThroughOptionType;
/**
* Used to pass attributes to the mask's DOM element.
*/
mask?: ConfirmDialogPassThroughOptionType;
/** /**
* Used to pass attributes to the Button component. * Used to pass attributes to the Button component.
* @see {@link ButtonPassThroughOptions} * @see {@link ButtonPassThroughOptions}