Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

CHANGELOG.md 4.1 KiB

3 anni fa
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. # Change Log
  2. ## [Unreleased](https://github.com/akiran/react-slick/tree/HEAD)
  3. ## 0.22.0
  4. **Release Changes**
  5. - Internal Changes
  6. - converted InnerSlider from createReactClass object to ES6 class
  7. - removed all the mixins, created classMethods and pure utility functions instead
  8. - changed autoplay from setTimeout to setInterval
  9. - added images onload handlers to update dynamically
  10. - added autoplaying state for the betterment of autoplay and pause
  11. - removed usage of assign or Object.assign, using object spreading instead
  12. - implemented effects of touchMove props
  13. - fixed transition in opposite direction in case of continuous scrolling
  14. - added separate onclick event listener for images
  15. - added missing classes `regular` and `slider`
  16. - renamed events
  17. - edgeEvent => onEdge
  18. - init => onInit
  19. - reInit => onReInit
  20. - implemented `pauseOnDotsHover` property
  21. - implemented Progressive LazyLoad property, lazyLoad is now ondemand/progressive
  22. - implemented lazyloadError event
  23. - implemented useTransform property
  24. - implemented pauseOnFocus property
  25. - added resize observer to update on slider resize
  26. - Bug Fixes
  27. - dynamic track updates on image load
  28. - fixed slickPause and autoPlay issues (paused slider would resume autoplay sometime)
  29. - fixed trackStyle update on window resize
  30. - fixed NodeList forEach problem for chrome 51 or below
  31. - fixed bugs due to uncleared callback timers
  32. - fixed update issues on just slider resize
  33. ## 0.21.0
  34. **Release Changes**
  35. - Fixed issues
  36. - dataset undefined error in case of swipeToSlide but finite slides
  37. - slideWidth issue by transform scale
  38. - variableWidth + finite alignment problems
  39. - wrapper direction rtl issues
  40. - added onload update handler for images
  41. - fixed breaking of animation on setState
  42. - Mixins to Pure Functions
  43. - getWidth, getHeight
  44. - swipeDirection
  45. - initialize, update
  46. - Other Changes
  47. - removed sass, using pure CSS instead
  48. - enforced dir='ltr' in the slider, so dir='rtl' in wrapper doesn't break the slider
  49. - corrected up/down direction conventions
  50. - added more tests along with snapshots
  51. ## 0.20.0
  52. **Release Changes**
  53. - handled responsive breakpoint collision
  54. - renamed autoPlayTimer to autoplayTimer and removed it from state
  55. - changed es5 module.exports with es6 export default in src/index
  56. - implemented slider syncing with asNavFor prop
  57. - made all the slides untabbable
  58. - implemented getSlick method as in slick
  59. - implemented slickGetOption method
  60. - implemented lazyLoaded event
  61. - implemented reInit event
  62. - implemented onSwipe event and documented edgeEvent
  63. ## 0.19.0
  64. **Release Changes**
  65. Following are the changes to be mentioned:
  66. - fixed slideWidth calculation approximation
  67. - fixed unusual scrolls in focusOnSelect mode
  68. - added appendDots method for customization of dots
  69. - modified logic for handling odd/even cases where there were unusual scrolls in opposite direction
  70. - implemented unslick feature properly
  71. - fixed variableWidth issues like blank spaces at edges, improper alignment
  72. - handling focus loss in case of fade=true
  73. - responsive lazyloading bug fixed
  74. - increased verticalswiping resistance from 4 to 10
  75. ## 0.18.0
  76. **Major Changes:**
  77. - `centerPadding` prop now accepts % value as well
  78. - Fixed dots count in certain cases, where it was wrong
  79. - Fixed fade property mess-up on click
  80. - Fixed invisibility issue when fade & vertical are true
  81. - Modified logic for updating lazyLoadedList, earlier there were some whitespaces at ends, now they're gone
  82. - Fixed getTrackLeft issue for slideCount=1
  83. ## 0.17.1
  84. **Major Changes**
  85. * Enforced some settings in specific configurations like:
  86. - `slidesToScroll = 1` *when fade is true*
  87. - `slidesToScroll = 1` *when centerMode is true*
  88. - `slidesToShow = 1` *when fade is true*
  89. * Changed the number of clones (preclones and postclones), that fixed couple of issues like blank spaces after last slide and/or before first slide which occurred in several cases.
  90. **Minor Changes**
  91. - Rich amount of tests and test-utilities added
  92. - Additional documentation comments added
  93. - Refactored small snippets for betterment
  94. - Fixed several lazyload and centerMode bugs