Comparing version 11.1.2 to 11.1.3
{ | ||
"name": "swiper", | ||
"version": "11.1.2", | ||
"version": "11.1.3", | ||
"description": "Most modern mobile touch slider and framework with hardware accelerated transitions", | ||
@@ -5,0 +5,0 @@ "typings": "swiper.d.ts", |
@@ -32,15 +32,5 @@ // @ts-ignore | ||
autoplay: CustomEvent<[swiper: Swiper]>;/** | ||
* Event will be fired on window hash change | ||
*/ | ||
hashchange: CustomEvent<[swiper: Swiper]>; | ||
/** | ||
* Event will be fired when swiper updates the hash | ||
*/ | ||
hashset: CustomEvent<[swiper: Swiper]>;/** | ||
* Event will be fired on key press | ||
*/ | ||
keypress: CustomEvent<[swiper: Swiper, keyCode: string]>;/** | ||
* Event will be fired on mousewheel scroll | ||
*/ | ||
scroll: CustomEvent<[swiper: Swiper, event: WheelEvent]>;/** | ||
* Event will be fired on navigation hide | ||
@@ -61,2 +51,12 @@ */ | ||
navigationnext: CustomEvent<[swiper: Swiper]>;/** | ||
* Event will be fired on mousewheel scroll | ||
*/ | ||
scroll: CustomEvent<[swiper: Swiper, event: WheelEvent]>;/** | ||
* Event will be fired on window hash change | ||
*/ | ||
hashchange: CustomEvent<[swiper: Swiper]>; | ||
/** | ||
* Event will be fired when swiper updates the hash | ||
*/ | ||
hashset: CustomEvent<[swiper: Swiper]>;/** | ||
* Event will be fired after pagination rendered | ||
@@ -80,2 +80,5 @@ */ | ||
paginationshow: CustomEvent<[swiper: Swiper]>;/** | ||
* Event will be fired on zoom change | ||
*/ | ||
zoomchange: CustomEvent<[swiper: Swiper, scale: number, imageEl: HTMLElement, slideEl: HTMLElement]>;/** | ||
* Event will be fired on draggable scrollbar drag start | ||
@@ -93,6 +96,3 @@ */ | ||
*/ | ||
scrollbardragend: CustomEvent<[swiper: Swiper, event: MouseEvent | TouchEvent | PointerEvent]>;/** | ||
* Event will be fired on zoom change | ||
*/ | ||
zoomchange: CustomEvent<[swiper: Swiper, scale: number, imageEl: HTMLElement, slideEl: HTMLElement]>; | ||
scrollbardragend: CustomEvent<[swiper: Swiper, event: MouseEvent | TouchEvent | PointerEvent]>; | ||
@@ -99,0 +99,0 @@ |
@@ -62,15 +62,5 @@ import * as React from 'react'; | ||
onAutoplay?: (swiper: SwiperClass) => void;/** | ||
* Event will be fired on window hash change | ||
*/ | ||
onHashChange?: (swiper: SwiperClass) => void; | ||
/** | ||
* Event will be fired when swiper updates the hash | ||
*/ | ||
onHashSet?: (swiper: SwiperClass) => void;/** | ||
* Event will be fired on key press | ||
*/ | ||
onKeyPress?: (swiper: SwiperClass, keyCode: string) => void;/** | ||
* Event will be fired on mousewheel scroll | ||
*/ | ||
onScroll?: (swiper: SwiperClass, event: WheelEvent) => void;/** | ||
* Event will be fired on navigation hide | ||
@@ -91,2 +81,12 @@ */ | ||
onNavigationNext?: (swiper: SwiperClass) => void;/** | ||
* Event will be fired on mousewheel scroll | ||
*/ | ||
onScroll?: (swiper: SwiperClass, event: WheelEvent) => void;/** | ||
* Event will be fired on window hash change | ||
*/ | ||
onHashChange?: (swiper: SwiperClass) => void; | ||
/** | ||
* Event will be fired when swiper updates the hash | ||
*/ | ||
onHashSet?: (swiper: SwiperClass) => void;/** | ||
* Event will be fired after pagination rendered | ||
@@ -110,2 +110,5 @@ */ | ||
onPaginationShow?: (swiper: SwiperClass) => void;/** | ||
* Event will be fired on zoom change | ||
*/ | ||
onZoomChange?: (swiper: SwiperClass, scale: number, imageEl: HTMLElement, slideEl: HTMLElement) => void;/** | ||
* Event will be fired on draggable scrollbar drag start | ||
@@ -123,6 +126,3 @@ */ | ||
*/ | ||
onScrollbarDragEnd?: (swiper: SwiperClass, event: MouseEvent | TouchEvent | PointerEvent) => void;/** | ||
* Event will be fired on zoom change | ||
*/ | ||
onZoomChange?: (swiper: SwiperClass, scale: number, imageEl: HTMLElement, slideEl: HTMLElement) => void; | ||
onScrollbarDragEnd?: (swiper: SwiperClass, event: MouseEvent | TouchEvent | PointerEvent) => void; | ||
@@ -129,0 +129,0 @@ /** |
@@ -469,15 +469,5 @@ import type { | ||
autoplay: (swiper: SwiperClass) => void;/** | ||
* Event will be fired on window hash change | ||
*/ | ||
hashChange: (swiper: SwiperClass) => void; | ||
/** | ||
* 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 on mousewheel scroll | ||
*/ | ||
scroll: (swiper: SwiperClass, event: WheelEvent) => void;/** | ||
* Event will be fired on navigation hide | ||
@@ -498,2 +488,12 @@ */ | ||
navigationNext: (swiper: SwiperClass) => void;/** | ||
* Event will be fired on mousewheel scroll | ||
*/ | ||
scroll: (swiper: SwiperClass, event: WheelEvent) => void;/** | ||
* Event will be fired on window hash change | ||
*/ | ||
hashChange: (swiper: SwiperClass) => void; | ||
/** | ||
* Event will be fired when swiper updates the hash | ||
*/ | ||
hashSet: (swiper: SwiperClass) => void;/** | ||
* Event will be fired after pagination rendered | ||
@@ -517,2 +517,5 @@ */ | ||
paginationShow: (swiper: SwiperClass) => void;/** | ||
* Event will be fired on zoom change | ||
*/ | ||
zoomChange: (swiper: SwiperClass, scale: number, imageEl: HTMLElement, slideEl: HTMLElement) => void;/** | ||
* Event will be fired on draggable scrollbar drag start | ||
@@ -530,6 +533,3 @@ */ | ||
*/ | ||
scrollbarDragEnd: (swiper: SwiperClass, event: MouseEvent | TouchEvent | PointerEvent) => void;/** | ||
* Event will be fired on zoom change | ||
*/ | ||
zoomChange: (swiper: SwiperClass, scale: number, imageEl: HTMLElement, slideEl: HTMLElement) => void; | ||
scrollbarDragEnd: (swiper: SwiperClass, event: MouseEvent | TouchEvent | PointerEvent) => void; | ||
@@ -536,0 +536,0 @@ /** |
@@ -1,2 +0,2 @@ | ||
import { Swiper } from './index.d.ts'; | ||
import type { Swiper } from './index.d.ts'; | ||
@@ -3,0 +3,0 @@ export interface CSSSelector extends String {} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3328657