Skip to content

Releases: oliviertassinari/react-swipeable-views

v0.4.4

27 Feb 15:06
Compare
Choose a tag to compare

Improvement

  • Remove hundreds of callback for the ref if no height is provided to containerStyle.

v0.4.3

27 Feb 14:26
Compare
Choose a tag to compare

Improvement

  • Skip the height animation if a minHeight is also provided.

Dev

  • Upgrade to eslint v2.

v0.4.2

22 Feb 18:55
Compare
Choose a tag to compare

Improvement

  • Only output the /src and the /lib folder

v0.4.1

19 Feb 18:12
Compare
Choose a tag to compare

New feature

  • Add support for nested swipeable view. See the demo 6.

v0.4.0

26 Jan 21:03
Compare
Choose a tag to compare

Breaking changes

  • Upgrade to react-motion@0.4.x
  • Change the name of the style property to containerStyle.

New features

  • Pass any other properties not declared in the propTypes to the root component. For instance, the className property will be applied on the root component #28

Improvement

  • Use the pure HOC instead of the pure render mixin.
  • Use the ES6 classes instead of createClass.
  • Remove the documentation from the npm release

v0.3.6

10 Jan 13:25
Compare
Choose a tag to compare

Improvements

  • Replace the objectAssign ponyfill dependency and use the babel transform instead.
    The output size lib is smaller (8.7kB instead of 10.7kB without minification).

v0.3.5

14 Dec 11:48
Compare
Choose a tag to compare

Bug fixes

  • Fix null references to slide (#21)

New features

  • Add onSwitching property (#20)

v0.3.4

10 Dec 12:49
Compare
Choose a tag to compare

Bug fixes

  • Fix flexbox styling in Safari (#18)

v0.3.3

25 Nov 17:01
Compare
Choose a tag to compare

New features

  • Add the resistance property. If true, it will add bounds effect on the edges.

Bug fixes

  • Prevent componentWillMount to trigger twice

v0.3.1

01 Nov 15:36
Compare
Choose a tag to compare

New features

  • Add a disabled property. If true, will disable touch events. This is useful when you want to prohibit the user from changing slides.
  • Add support for dynamic height. (See Demo 4), This behavior is enabled when no height style property is given.