From 30b5d878a18f4abd665b18fd0b45742b45f62f5d Mon Sep 17 00:00:00 2001 From: Maria Hutt Date: Fri, 31 Jul 2026 16:01:39 -0700 Subject: [PATCH 1/3] docs(modal): document isDismissing on ModalDragEventDetail --- docs/api/modal.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/api/modal.md b/docs/api/modal.md index a9153305e6..95823929a6 100644 --- a/docs/api/modal.md +++ b/docs/api/modal.md @@ -321,6 +321,23 @@ interface ModalDragEventDetail { * snap to upon release. */ snapBreakpoint?: number; + /** + * Whether the modal will begin dismissing when the drag gesture ends. + * + * In a sheet modal, this is `true` when the modal will snap to a + * breakpoint of 0. In a card modal, it is `true` when the gesture + * passed the threshold required to close the modal. + * + * If a `canDismiss` callback is set, it can still cancel the dismiss + * after this event is emitted. Listen for `ionModalDidDismiss` to + * confirm that the modal closed. + * + * This property is only included on `ionDragEnd`. + * + * This can be used to react as soon as the user releases the modal, + * such as dismissing the keyboard while the modal animates away. + */ + isDismissing?: boolean; } ``` From 98b4b68a5ed9851fb2326fb9eed5c06b8ed8dd1f Mon Sep 17 00:00:00 2001 From: Maria Hutt Date: Thu, 6 Aug 2026 15:23:15 -0700 Subject: [PATCH 2/3] docs(modal): use attempting to dismiss for isDismissing --- docs/api/modal.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/api/modal.md b/docs/api/modal.md index 95823929a6..732151008d 100644 --- a/docs/api/modal.md +++ b/docs/api/modal.md @@ -322,7 +322,8 @@ interface ModalDragEventDetail { */ snapBreakpoint?: number; /** - * Whether the modal will begin dismissing when the drag gesture ends. + * Whether the modal is attempting to dismiss when the drag gesture + * ends. * * In a sheet modal, this is `true` when the modal will snap to a * breakpoint of 0. In a card modal, it is `true` when the gesture From bf938885d74fdad603ff55905e0c52c71de2cf60 Mon Sep 17 00:00:00 2001 From: Maria Hutt Date: Fri, 7 Aug 2026 10:24:47 -0700 Subject: [PATCH 3/3] chore: retrigger checks