From 8af460dadf0afa180f6c23b0b1f4d28c42bf55ca Mon Sep 17 00:00:00 2001 From: Luis Rhenals <137983537+luisbytes@users.noreply.github.com> Date: Sat, 12 Apr 2025 18:38:16 -0500 Subject: [PATCH] fix(modal): add expandToScroll property to ModalOptions --- core/src/components/modal/modal-interface.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/components/modal/modal-interface.ts b/core/src/components/modal/modal-interface.ts index 0b3ce7f901d..7cc22f842bb 100644 --- a/core/src/components/modal/modal-interface.ts +++ b/core/src/components/modal/modal-interface.ts @@ -25,6 +25,7 @@ export interface ModalOptions { backdropBreakpoint?: number; handle?: boolean; handleBehavior?: ModalHandleBehavior; + expandToScroll?: boolean; } export interface ModalAnimationOptions {