@splidejs/splide
Version:
Splide is a lightweight, flexible and accessible slider/carousel. No dependencies, no Lighthouse errors.
32 lines (30 loc) • 1.63 kB
text/typescript
export const EVENT_MOUNTED = 'mounted';
export const EVENT_READY = 'ready';
export const EVENT_MOVE = 'move';
export const EVENT_MOVED = 'moved';
export const EVENT_SHIFTED = 'shifted';
export const EVENT_CLICK = 'click';
export const EVENT_ACTIVE = 'active';
export const EVENT_INACTIVE = 'inactive';
export const EVENT_VISIBLE = 'visible';
export const EVENT_HIDDEN = 'hidden';
export const EVENT_SLIDE_KEYDOWN = 'slide:keydown';
export const EVENT_REFRESH = 'refresh';
export const EVENT_UPDATED = 'updated';
export const EVENT_RESIZE = 'resize';
export const EVENT_RESIZED = 'resized';
export const EVENT_DRAG = 'drag';
export const EVENT_DRAGGING = 'dragging';
export const EVENT_DRAGGED = 'dragged';
export const EVENT_SCROLL = 'scroll';
export const EVENT_SCROLLED = 'scrolled';
export const EVENT_DESTROY = 'destroy';
export const EVENT_ARROWS_MOUNTED = 'arrows:mounted';
export const EVENT_ARROWS_UPDATED = 'arrows:updated';
export const EVENT_PAGINATION_MOUNTED = 'pagination:mounted';
export const EVENT_PAGINATION_UPDATED = 'pagination:updated';
export const EVENT_NAVIGATION_MOUNTED = 'navigation:mounted';
export const EVENT_AUTOPLAY_PLAY = 'autoplay:play';
export const EVENT_AUTOPLAY_PLAYING = 'autoplay:playing';
export const EVENT_AUTOPLAY_PAUSE = 'autoplay:pause';
export const EVENT_LAZYLOAD_LOADED = 'lazyload:loaded';