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

@ -4019,7 +4019,7 @@ export namespace Components {
* The text to display on the ok button. Default: `OK`. * The text to display on the ok button. Default: `OK`.
*/ */
'okText': string; 'okText': string;
'open': (ev?: UIEvent | undefined) => Promise<HTMLIonPopoverElement | HTMLIonActionSheetElement | HTMLIonAlertElement>; 'open': (ev?: UIEvent | undefined) => Promise<HTMLIonActionSheetElement | HTMLIonAlertElement | HTMLIonPopoverElement>;
/** /**
* The text to display when the select is empty. * The text to display when the select is empty.
*/ */

View File

@ -244,6 +244,17 @@ dates in JavaScript.
| `open` | | | `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/)* *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 }; export { Swiper };