From 4e5038cffd45d29dee41786501771ff9cbe56404 Mon Sep 17 00:00:00 2001 From: mertsincan Date: Wed, 2 Aug 2023 15:00:18 +0300 Subject: [PATCH] Refactor #4231 - For ConfirmPopup --- components/lib/confirmpopup/ConfirmPopup.d.ts | 4 ++++ components/lib/confirmpopup/ConfirmPopup.vue | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/components/lib/confirmpopup/ConfirmPopup.d.ts b/components/lib/confirmpopup/ConfirmPopup.d.ts index a89a48a92..c3cb6b46a 100644 --- a/components/lib/confirmpopup/ConfirmPopup.d.ts +++ b/components/lib/confirmpopup/ConfirmPopup.d.ts @@ -64,6 +64,10 @@ export interface ConfirmPopupPassThroughOptions { * @see {@link BaseComponent.ComponentHooks} */ hooks?: ComponentHooks; + /** + * Used to control Vue Transition API. + */ + transition?: any; } /** diff --git a/components/lib/confirmpopup/ConfirmPopup.vue b/components/lib/confirmpopup/ConfirmPopup.vue index 0bf6d53a0..38dddfd4e 100644 --- a/components/lib/confirmpopup/ConfirmPopup.vue +++ b/components/lib/confirmpopup/ConfirmPopup.vue @@ -1,6 +1,6 @@