diff --git a/core/src/components/modal/modal-interface.ts b/core/src/components/modal/modal-interface.ts index 5656b4963a..c957945498 100644 --- a/core/src/components/modal/modal-interface.ts +++ b/core/src/components/modal/modal-interface.ts @@ -17,6 +17,11 @@ export interface ModalOptions { enterAnimation?: AnimationBuilder; leaveAnimation?: AnimationBuilder; + + breakpoints?: number[]; + initialBreakpoint?: number; + backdropBreakpoint?: number; + handle?: boolean; } export interface ModalAnimationOptions { diff --git a/core/src/components/modal/readme.md b/core/src/components/modal/readme.md index f7b852bce4..8ac2b9a208 100644 --- a/core/src/components/modal/readme.md +++ b/core/src/components/modal/readme.md @@ -147,6 +147,11 @@ interface ModalOptions { enterAnimation?: AnimationBuilder; leaveAnimation?: AnimationBuilder; + + breakpoints?: number[]; + initialBreakpoint?: number; + backdropBreakpoint?: number; + handle?: boolean; } ```