docs(all): improve type docs for event

This commit is contained in:
Manu Mtz.-Almeida
2018-12-28 20:12:54 +01:00
committed by Manu MA
parent b3316d480f
commit 3d656ac312
74 changed files with 380 additions and 371 deletions

View File

@ -91,24 +91,24 @@ slides.options = {
## Events
| Event | Description | Detail |
| ------------------------- | ----------------------------------------------------------- | ------ |
| `ionSlideDidChange` | Emitted after the active slide has changed. | void |
| `ionSlideDoubleTap` | Emitted when the user double taps on the slide's container. | void |
| `ionSlideDrag` | Emitted when the slider is actively being moved. | void |
| `ionSlideNextEnd` | Emitted when the next slide has ended. | void |
| `ionSlideNextStart` | Emitted when the next slide has started. | void |
| `ionSlidePrevEnd` | Emitted when the previous slide has ended. | void |
| `ionSlidePrevStart` | Emitted when the previous slide has started. | void |
| `ionSlideReachEnd` | Emitted when the slider is at the last slide. | void |
| `ionSlideReachStart` | Emitted when the slider is at its initial position. | void |
| `ionSlidesDidLoad` | Emitted after Swiper initialization | void |
| `ionSlideTap` | Emitted when the user taps/clicks on the slide's container. | void |
| `ionSlideTouchEnd` | Emitted when the user releases the touch. | void |
| `ionSlideTouchStart` | Emitted when the user first touches the slider. | void |
| `ionSlideTransitionEnd` | Emitted when the slide transition has ended. | void |
| `ionSlideTransitionStart` | Emitted when the slide transition has started. | void |
| `ionSlideWillChange` | Emitted before the active slide has changed. | void |
| Event | Description | Type |
| ------------------------- | ----------------------------------------------------------- | ------------------- |
| `ionSlideDidChange` | Emitted after the active slide has changed. | `CustomEvent<void>` |
| `ionSlideDoubleTap` | Emitted when the user double taps on the slide's container. | `CustomEvent<void>` |
| `ionSlideDrag` | Emitted when the slider is actively being moved. | `CustomEvent<void>` |
| `ionSlideNextEnd` | Emitted when the next slide has ended. | `CustomEvent<void>` |
| `ionSlideNextStart` | Emitted when the next slide has started. | `CustomEvent<void>` |
| `ionSlidePrevEnd` | Emitted when the previous slide has ended. | `CustomEvent<void>` |
| `ionSlidePrevStart` | Emitted when the previous slide has started. | `CustomEvent<void>` |
| `ionSlideReachEnd` | Emitted when the slider is at the last slide. | `CustomEvent<void>` |
| `ionSlideReachStart` | Emitted when the slider is at its initial position. | `CustomEvent<void>` |
| `ionSlidesDidLoad` | Emitted after Swiper initialization | `CustomEvent<void>` |
| `ionSlideTap` | Emitted when the user taps/clicks on the slide's container. | `CustomEvent<void>` |
| `ionSlideTouchEnd` | Emitted when the user releases the touch. | `CustomEvent<void>` |
| `ionSlideTouchStart` | Emitted when the user first touches the slider. | `CustomEvent<void>` |
| `ionSlideTransitionEnd` | Emitted when the slide transition has ended. | `CustomEvent<void>` |
| `ionSlideTransitionStart` | Emitted when the slide transition has started. | `CustomEvent<void>` |
| `ionSlideWillChange` | Emitted before the active slide has changed. | `CustomEvent<void>` |
## Methods