Releases: oliviertassinari/react-swipeable-views
Releases · oliviertassinari/react-swipeable-views
v0.4.4
Improvement
- Remove hundreds of callback for the
ref
if no height is provided tocontainerStyle
.
v0.4.3
Improvement
- Skip the height animation if a
minHeight
is also provided.
Dev
- Upgrade to eslint v2.
v0.4.2
Improvement
- Only output the
/src
and the/lib
folder
v0.4.1
New feature
- Add support for nested swipeable view. See the demo 6.
v0.4.0
Breaking changes
- Upgrade to
[email protected]
- Change the name of the
style
property tocontainerStyle
.
New features
- Pass any other properties not declared in the
propTypes
to the root component. For instance, theclassName
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
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
v0.3.4
v0.3.3
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
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.