gulp dist build

This commit is contained in:
2022-01-28 14:28:32 +01:00
parent 385d2e78b5
commit 041ce84965
88 changed files with 4428 additions and 1543 deletions

View File

@@ -475,6 +475,9 @@ declare const Swiper: DefineComponent<
* Event will be fired when swiper updates the hash
*/
hashSet: (swiper: SwiperClass) => void;/**
* Event will be fired on key press
*/
keyPress: (swiper: SwiperClass, keyCode: string) => void;/**
* Event will be fired in the beginning of lazy loading of image
*/
lazyImageLoad: (swiper: SwiperClass, slideEl: HTMLElement, imageEl: HTMLElement) => void;
@@ -482,9 +485,9 @@ declare const Swiper: DefineComponent<
* Event will be fired when lazy loading image will be loaded
*/
lazyImageReady: (swiper: SwiperClass, slideEl: HTMLElement, imageEl: HTMLElement) => void;/**
* Event will be fired on key press
* Event will be fired on mousewheel scroll
*/
keyPress: (swiper: SwiperClass, keyCode: string) => void;/**
scroll: (swiper: SwiperClass, event: WheelEvent) => void;/**
* Event will be fired on navigation hide
*/
navigationHide: (swiper: SwiperClass) => void;
@@ -492,9 +495,6 @@ declare const Swiper: DefineComponent<
* Event will be fired on navigation show
*/
navigationShow: (swiper: SwiperClass) => void;/**
* Event will be fired on mousewheel scroll
*/
scroll: (swiper: SwiperClass, event: WheelEvent) => void;/**
* Event will be fired after pagination rendered
*/
paginationRender: (swiper: SwiperClass, paginationEl: HTMLElement) => void;

View File

@@ -1,5 +1,5 @@
/**
* Swiper Vue 7.0.9
* Swiper Vue 7.3.1
* Most modern mobile touch slider and framework with hardware accelerated transitions
* https://swiperjs.com
*
@@ -7,7 +7,7 @@
*
* Released under the MIT License
*
* Released on: October 18, 2021
* Released on: November 24, 2021
*/
import { Swiper } from './swiper.js';