* Update documentation for ion-slide
Reading the documentation and following along left me lost as to why the .lockNextSlides() was not working, this was because it required a boolean parameter that was not reflected in the documentation. This PR adds the JSDoc @param to show that the function requires a boolean parameter. Does not include a definition for the single parameters so this may cause issue in the theme of the docs template.
* Changing order of type definition
* Adding definitions to JSdoc for slider.
BREAKING CHANGES
Slides input `options` has been removed. Please use the input
properties instead.
Slide event `ionWillChange` has been removed, please use
`ionSlideWillChange` instead.
Slide event `ionDidChange` has been removed, please use
`ionSlideDidChange` instead.
Slide event `ionDrag` has been removed, please use `ionSlideDrag`
instead.
Slides `getSlider()` method has been removed, please use the instance
of ion-slides.
* feat(split-panel): split panel support for ion-nav and ion-menu
Revert some changes
adds support split-panel support for tabs
Removes .orig
removes e2e.ts
Removes unneeded changes in menu.ts
improves stuff
* fix(split-panel): resize is called when menu wraps a ion-nav
* test(split-panel): improves split-panel/basic test
* feat(split-panel): ionChange is an ng2 @Output()
* fix(split-panel): fix tabs as side content
* fix(menu): forzedClose works as expected
* feat(split-panel): split-panel works with several menus
* chore(split-panel): renames to split-pane
* refactor(split-pane): splitPane can be injected
* fix(split-pane): it is a directive
* fix(slides): integration with split-panel
* Make gulp validate happy
* feat(slides): expose more options
Closes#9988
Exposes slidesPerView and spaceBetween. Also documents how to change
unexposed options
* docs(slides): update advanced usage
Internal refactor completed in order to improve tree shaking and dead
code removal. The public API, with an exception to ion-slides, has
stayed the same. However, internally many changes were required so
bundlers could better exclude modules which should not be bundled.
Ultimately most changes resorted to removing references to `window` or
`document`, or a module that referenced one of those.
BREAKING CHANGES
ion-slides was refactored to remove the external dependencies, and
rewritten in TypeScript/ES6 modules to again improve tree shaking
abilities.