fix(slides): update events to match swipers

Closes #14865
This commit is contained in:
Adam LaCombe
2018-07-25 12:04:38 -04:00
committed by mhartington
parent ad006dd1ee
commit fc0d4c0776
5 changed files with 79 additions and 16 deletions

View File

@ -6803,6 +6803,10 @@ declare global {
* Emitted after the active slide has changed.
*/
'onIonSlideDidChange'?: (event: CustomEvent) => void;
/**
* Emitted when the user double taps on the slide's container.
*/
'onIonSlideDoubleTap'?: (event: CustomEvent) => void;
/**
* Emitted when the slider is actively being moved.
*/
@ -6831,6 +6835,10 @@ declare global {
* Emitted when the slider is at its initial position.
*/
'onIonSlideReachStart'?: (event: CustomEvent) => void;
/**
* Emitted when the user taps/clicks on the slide's container.
*/
'onIonSlideTap'?: (event: CustomEvent) => void;
/**
* Emitted when the user releases the touch.
*/
@ -6851,6 +6859,10 @@ declare global {
* Emitted before the active slide has changed.
*/
'onIonSlideWillChange'?: (event: CustomEvent) => void;
/**
* Emitted after Swiper initialization
*/
'onIonSlidesDidLoad'?: (event: CustomEvent) => void;
/**
* Options to pass to the swiper instance. See http://idangero.us/swiper/api/ for valid options
*/