refactor(): remove old animation utility (#19586)

Use Ionic Animations instead
This commit is contained in:
Liam DeBeasi
2019-10-11 13:47:52 -04:00
committed by GitHub
parent 0d699fb2e4
commit 32b97582cb
60 changed files with 229 additions and 1687 deletions

View File

@ -1,7 +1,7 @@
import { EventEmitter } from '@stencil/core';
import { HTMLStencilElement } from '@stencil/core/internal';
import { Animation, AnimationBuilder, IonicAnimation, Mode } from '../interface';
import { Animation, AnimationBuilder, Mode } from '../interface';
export interface OverlayEventDetail<T = any> {
data?: T;
@ -15,7 +15,7 @@ export interface OverlayInterface {
keyboardClose: boolean;
overlayIndex: number;
presented: boolean;
animation?: Animation | IonicAnimation;
animation?: Animation;
enterAnimation?: AnimationBuilder;
leaveAnimation?: AnimationBuilder;