UNPKG

react-multi-carousel

Version:

Production-ready, lightweight fully customizable React carousel component that rocks supports multiple items and SSR(Server-side rendering) with typescript.

10 lines (9 loc) 1.03 kB
import { getOriginalCounterPart, getCloneCounterPart, getClones, checkClonesPosition } from "./clones"; import { getWidthFromDeviceType, getParitialVisibilityGutter, getItemClientSideWidth } from "./elementWidth"; import { getInitialState, getIfSlideIsVisbile, getTransformForCenterMode, getTransformForPartialVsibile, isInLeftEnd, isInRightEnd, notEnoughChildren } from "./common"; import throttle from "./throttle"; import throwError from "./throwError"; import { populateNextSlides } from "./next"; import { populatePreviousSlides } from "./previous"; import { populateSlidesOnMouseTouchMove } from "./mouseOrTouchMove"; export { isInLeftEnd, isInRightEnd, getOriginalCounterPart, getCloneCounterPart, getClones, getWidthFromDeviceType, checkClonesPosition, getItemClientSideWidth, getParitialVisibilityGutter, throttle, getInitialState, getIfSlideIsVisbile, getTransformForCenterMode, getTransformForPartialVsibile, throwError, populateNextSlides, populatePreviousSlides, populateSlidesOnMouseTouchMove, notEnoughChildren };