From 33186ba716de77edc92ae8e7d307f90fff8b8ed1 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Mon, 27 Jan 2020 11:20:32 -0500 Subject: [PATCH] fix(picker): include showBackdrop in interface (#20301) fixes #18893 --- core/src/components/picker/picker-interface.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/components/picker/picker-interface.ts b/core/src/components/picker/picker-interface.ts index c950764baf..8079c0279e 100644 --- a/core/src/components/picker/picker-interface.ts +++ b/core/src/components/picker/picker-interface.ts @@ -4,6 +4,7 @@ export interface PickerOptions { columns: PickerColumn[]; buttons?: PickerButton[]; cssClass?: string | string[]; + showBackdrop?: boolean; backdropDismiss?: boolean; animated?: boolean;