mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00

committed by
mhartington

parent
ad006dd1ee
commit
fc0d4c0776
12
core/src/components.d.ts
vendored
12
core/src/components.d.ts
vendored
@ -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
|
||||
*/
|
||||
|
Reference in New Issue
Block a user