fix(slides): add back zoom plugin for swiper

Closes #15676
This commit is contained in:
mhartington
2018-09-19 12:22:44 -04:00
parent 92b2011725
commit 6890ecccda
3 changed files with 14 additions and 3 deletions

View File

@ -244,6 +244,17 @@ dates in JavaScript.
| `open` | |
## CSS Custom Properties
| Name | Description |
| --------------------- | --------------------------------- |
| `--padding-bottom` | Padding bottom of the datetime |
| `--padding-end` | Padding end of the datetime |
| `--padding-start` | Padding start of the datetime |
| `--padding-top` | Padding top of the datetime |
| `--placeholder-color` | Color of the datetime placeholder |
----------------------------------------------
*Built with [StencilJS](https://stenciljs.com/)*

View File

@ -1,4 +1,4 @@
import { Autoplay, Pagination, Scrollbar, Swiper } from 'swiper/dist/js/swiper.esm';
import { Autoplay, Pagination, Scrollbar, Swiper, Zoom } from 'swiper/dist/js/swiper.esm';
Swiper.use([Pagination, Scrollbar, Autoplay]);
Swiper.use([Pagination, Scrollbar, Autoplay, Zoom]);
export { Swiper };