From 8dd566b5c1241022e26cc91c0f415de20c0d0f34 Mon Sep 17 00:00:00 2001 From: Luis Rhenals <137983537+luisbytes@users.noreply.github.com> Date: Mon, 14 Apr 2025 12:50:03 -0500 Subject: [PATCH] fix(modal): add expandToScroll property to ModalOptions (#30357) Issue number: resolves #30356 --------- ## What is the current behavior? Cannot use expandToScroll property in ModalController.create ## What is the new behavior? ExpandToScroll can be added without syntax problems ## Does this introduce a breaking change? - [ ] Yes - [x] No --- 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 0b3ce7f901..7cc22f842b 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 {