React Typist Versions Save

Typing animations with React

v2.0.5

5 years ago
  • Fixes:

    • Properly detect Backspace and Delay elements when using React Hot Loader (#42)
  • Improvements:

    • Update how element keys are computed to make key collisions more unlikely (#58)

v2.0.4

6 years ago

v2.0.3 (10/21/17)

  • Fixes: Actually fix detection of Backspace and Delay elements d122bd1 attempted to fix detection of Backspace and Delay elements by checking their type instead of their type.name

However, due to oversight, we were still performing the check with name inside Typist.jsx.

v2.0.3

6 years ago

v2.0.3 (10/21/17)

  • Fixes:
    • Fix detection of Backspace and Delay elements (#33) d122bd1

v2.0.2

6 years ago

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:
  1. Update characters and lines state (i.e. render character in a line)
  2. After being rendered, call onCharacterTyped
  3. Generate a new delay for the given line and character that was just rendered
  4. 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

6 years ago

v2.0.0 (10/15/17)

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

6 years ago

v1.1.1 (06/01/17)

  • Update dependencies, add yarn.lock
  • Updated dist codebase; Updated contribution section
  • Internet Explorer Compatibility Documentation (#26)
  • Use prop-types (#25)

v1.1.0

6 years ago

v1.1.0 (03/26/17)

  • Fixes
    • Add onCharacterTyped and onLineTyped callback options (#22)
    • Fix text rendering issue in webkit/blink under certain widths (#13)

v1.0.3

7 years ago

v1.0.3 (10/29/16)

  • Fixes
    • Component no longer sets isDone state if unmounted

v1.0.1

7 years ago

v1.0.1 (10/01/16)

  • Fixes
    • Move promise-mock to devDependencies

v.1.0.0

7 years ago

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