feat(overlays): expose animation customization

This commit is contained in:
Manu Mtz.-Almeida
2018-10-04 17:21:15 +02:00
parent f63c0f5ccc
commit dc976cc745
7 changed files with 25 additions and 8 deletions

View File

@ -1,3 +1,4 @@
import { AnimationBuilder } from '../../interface';
export interface PickerOptions {
columns: PickerColumn[];
@ -9,6 +10,9 @@ export interface PickerOptions {
mode?: string;
keyboardClose?: boolean;
id?: string;
enterAnimation?: AnimationBuilder;
leaveAnimation?: AnimationBuilder;
}
export interface PickerButton {