fix(modal): add expandToScroll property to ModalOptions (#30357)

Issue number: resolves #30356

---------

<!-- Please do not submit updates to dependencies unless it fixes an
issue. -->

<!-- Please try to limit your pull request to one type (bugfix, feature,
etc). Submit multiple pull requests if needed. -->

## 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
This commit is contained in:
Luis Rhenals
2025-04-14 12:50:03 -05:00
committed by GitHub
parent 44efdb06e0
commit 8dd566b5c1

View File

@ -25,6 +25,7 @@ export interface ModalOptions<T extends ComponentRef = ComponentRef> {
backdropBreakpoint?: number;
handle?: boolean;
handleBehavior?: ModalHandleBehavior;
expandToScroll?: boolean;
}
export interface ModalAnimationOptions {