Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix transitions aborting on repeated style values #257

Open
wants to merge 18 commits into
base: master
Choose a base branch
from

Commits on Mar 6, 2019

  1. Fix transitions aborting on repeated values

    Before this fix the following could happen:
    
    1. Button receives props 
    {
      otherProp: valA
      style: {translateY: 50}
    }
    2. Transition starts to translate button to 50.
    3. While transition is happening Button receives the following props
    {
      otherProp: valB
      style: {translateY: 50}
    }
    4. Transition is aborted and Button "jerks" to the target state of the transition.
    
    This update makes react-native-animatable ignore repeated style props and only start transitions when new values are received.
    solidfox authored Mar 6, 2019
    Configuration menu
    Copy the full SHA
    cfdc48d View commit details
    Browse the repository at this point in the history
  2. Remove for in usage

    solidfox authored Mar 6, 2019
    Configuration menu
    Copy the full SHA
    235ea64 View commit details
    Browse the repository at this point in the history
  3. Code style compliance

    solidfox authored Mar 6, 2019
    Configuration menu
    Copy the full SHA
    d4071a4 View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2019

  1. Fix all animations using interpolation

    Copy and paste error in needsInterpolation check
    solidfox authored Mar 7, 2019
    Configuration menu
    Copy the full SHA
    c3d0142 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2019

  1. Configuration menu
    Copy the full SHA
    8793a6d View commit details
    Browse the repository at this point in the history
  2. Release 1.3.2

    oblador authored and solidfox committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    dc06573 View commit details
    Browse the repository at this point in the history
  3. Add custom animation imperative usage (oblador#275)

    I failed to find documentation for this, but I found this issue:
    oblador#174
    mifi authored and solidfox committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    c1fb6b0 View commit details
    Browse the repository at this point in the history
  4. Fix typing of AnimatableProperties.animation (oblador#256)

    * Fix typing of AnimatableProperties.animation
    
    * Add custom animation usage examples in Readme
    Lilysunstrider authored and solidfox committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    2c55fa8 View commit details
    Browse the repository at this point in the history
  5. Export sub typings (oblador#287)

    Andries-Smit authored and solidfox committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    9e78d3c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    277347b View commit details
    Browse the repository at this point in the history
  7. Update MakeItRain example to RN 0.61

    oblador authored and solidfox committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    0f8d55d View commit details
    Browse the repository at this point in the history
  8. Bump eslint and config

    oblador authored and solidfox committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    ad6a336 View commit details
    Browse the repository at this point in the history
  9. Bump prettier

    oblador authored and solidfox committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    16a6f02 View commit details
    Browse the repository at this point in the history
  10. Bump jest/react/react-native deps

    oblador authored and solidfox committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    29751f0 View commit details
    Browse the repository at this point in the history
  11. Release 1.3.3

    oblador authored and solidfox committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    c12f9ba View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    b106ba6 View commit details
    Browse the repository at this point in the history
  13. Fix all animations using interpolation

    Copy and paste error in needsInterpolation check
    solidfox committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    4cc41c8 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    5a9f8a7 View commit details
    Browse the repository at this point in the history