Skip to content

Latest commit

 

History

History
45 lines (34 loc) · 1.02 KB

CHANGELOG.md

File metadata and controls

45 lines (34 loc) · 1.02 KB
  • [Carousel] triggerClickOn prop

    Triggers onClick handlers of carousel items if swipe amount smaller than triggerClickOn.
<Carousel triggerClickOn={5} />
  • [Carousel] Navigation Thumbnail Feature

    Enables item to item navigation.
<Carousel navigation={(isSelected) => <MyNavigationThumbnail selected={isSelected}>} />
  • [Carousel] Auto Swipe Feature

    You can pass number of milliseconds to enable auto swiping.
<Carousel autoSwipe={3000} />
  • Github Actions integrated.

    Release

  • Custom Arrows option added for both Scrolling Carousel and Carousel

<Carousel leftArrow={<CustomArrow />} rightArrow={<CustomArrow />} />
  • Pagination feature added.

<Carousel
 dynamic={true}
 show={4}
 slide={3}
 swiping={true}
 paginationCallback={(direction) => /* Append new childs before each slide */)}
 pageCount={5} /* Total page count  */
>
 <Item>
</Carousel>