Releases: jstejada/react-typist
Releases · jstejada/react-typist
v2.0.5
v.2.0.4
v.2.0.3
v2.0.2
v2.0.2 (10/17/17)
- Fixes:
Keep typing scheduling invariant from version < 2
Before version 2, characters would be typed in the following order:
- Update characters and lines state (i.e. render character in a line)
- After being rendered, call onCharacterTyped
- Generate a new delay for the given line and character that was just rendered
- Set a timeout with the generated delay
After the introduction of Backspace and Delay elements in v2, the order
in which characters were typed was changed, changing the invariant of
when the delayGenerator was called and how delays were scheduled.
This was due to conflation between the newly introduced delays and the
normal typing scheduling.
v2.0.0
v2.0.0 (10/15/17)
- Features
- Add support for Backspace and Delay. See #27 and https://github.com/jstejada/react-typist#typistdelay and https://github.com/jstejada/react-typist#typistbackspace
This version should contain no breaking changes, but given that it contains a fairly large change I am bumping the major version so users manually upgrade if the want the new feature, just to be on the safer side.
v1.1.1
v.1.1.0
v1.0.3
v1.0.1
v1.0.0
v1.0.0 (10/01/16)
This version should have no breaking changes, but given that we've bumped a
major version of React, we decided to make this release opt-in, in case
unexpected errors occur.
- Fixes:
- Can now use server rendering
- Component no longer sets state after being unmounted
- Development:
- Upgrade to React 15
- Upgrade to Babel 6, and other tooling upgrades
- Switch to promises to make code more concise and readable