Skip to content

Releases: jeremenichelli/phena

v2.1.1

Choose a tag to compare

@jeremenichelli jeremenichelli released this 09 Jun 09:04
baf40c7

2.1.1 (2019-06-09)

Bug Fixes

  • rename private fields, delete unnecessary class property (e776355)

v2.1.0

Choose a tag to compare

@jeremenichelli jeremenichelli released this 07 Jun 12:24
812d2ab

2.1.0 (2019-06-07)

Features

  • Initial config now supports initial delay
  • You can pass an onComplete method to be called when tweening has finished
  • Multiple values by tween, from and to can now be arrays of values

v2.0.0

Choose a tag to compare

@jeremenichelli jeremenichelli released this 31 May 10:07
a2998f5

2.0.0 (2019-05-31)

BREAKING CHANGES

  • Now the library exports a class you need to instance before tweening.
import {Tween} from 'phena'

const animation = new Tween({ from: 0, to: 5, duration: 500, paused: true })

animation.start()

Features

  • You can now cancel a tweening by running .cancel() on the Tween instance
  • If you passed paused: true tweening won't start at instantiation time, call .start() to kick off later

v1.0.1

Choose a tag to compare

@jeremenichelli jeremenichelli released this 30 May 13:46
21c08a5

1.0.1 (2019-05-30)

Improvements

  • Update test dependencies
  • Add JSDoc comments to code
  • Add code formatting and commit message linting
  • Update README with contribution details

Bug Fixes

  • Call ease on proportional time

v1.0.0

Choose a tag to compare

@jeremenichelli jeremenichelli released this 11 Oct 11:19
e30af24

1.0.0 (2018-10-11)

Features

  • Initial package release