From fa7f4d80d00eea22374c75702b53188b33b080c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=AD=90=E5=87=8C?= Date: Thu, 6 Feb 2025 11:44:32 +0800 Subject: [PATCH] fix(confirmdialog): fix the missing of the pass-though prop named `mask` --- packages/primevue/src/confirmdialog/ConfirmDialog.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/primevue/src/confirmdialog/ConfirmDialog.d.ts b/packages/primevue/src/confirmdialog/ConfirmDialog.d.ts index bebc73c1a..d313429fb 100644 --- a/packages/primevue/src/confirmdialog/ConfirmDialog.d.ts +++ b/packages/primevue/src/confirmdialog/ConfirmDialog.d.ts @@ -101,6 +101,10 @@ export interface ConfirmDialogPassThroughOptions { * Used to pass attributes to the footer's DOM element. */ footer?: ConfirmDialogPassThroughOptionType; + /** + * Used to pass attributes to the mask's DOM element. + */ + mask?: ConfirmDialogPassThroughOptionType; /** * Used to pass attributes to the Button component. * @see {@link ButtonPassThroughOptions}