Skip to content

Releases: alexmacarthur/typeit

Fix Types

19 Dec 05:42
Compare
Choose a tag to compare

TypeIt's option types were not correctly being exposed through typeit-react. This release fixes that.

Migrate to Vite

25 Oct 02:49
Compare
Choose a tag to compare

Migrated from Microbundle to Vite for bundling, which led to a ~18% drop in the UMD bundle size. 🎉

Update Dependencies + `postinstall` Script

12 Sep 02:39
Compare
Choose a tag to compare

Not much exciting here. Just some dependency updates, and switching over from a Node to bash for the postinstall script.

move() Bug Fix

01 Sep 03:48
Compare
Choose a tag to compare

When a number of steps was being passed to .move() that was outside the range of typed characters, unexpected weirdness was occurring. This released fixes that bug. Passing values beyond the lower or upper range of typed characters will no longer cause any execution problems, but instead just work.

Callback Fixes

22 Aug 04:40
Compare
Choose a tag to compare

There were a couple of issues occurring with TypeIt's callback methods.

https://typeitjs.com/docs/vanilla/changelog#v801

More Versatile than Ever.

22 Aug 04:04
Compare
Choose a tag to compare

v8 introduces a host of new features & enhancements, and with limited breaking changes. For a full changelog, see here:

https://typeitjs.com/docs/vanilla/changelog#v800

Fix Looping Bug

02 May 04:05
25e1396
Compare
Choose a tag to compare

A bug was causing a delay to gradually increase as animations looped over and over again. This releases fixes that bug, simplifying the internal loop logic along the way.

Don't Remove Cursor Node's Children Expectedly

22 Apr 21:42
Compare
Choose a tag to compare

There was a bug that was removing a custom cursor children during deletion. This release properly ignores the cursor and its children correctly, so that they're preserved throughout the animation.

Don't Remove Break Tags Unexpectedly

22 Apr 21:40
Compare
Choose a tag to compare

A bug was causing <br> tags to be removed when strings were being deleted. This release fixes that.

Fix Bug Caused by Empty Strings Being Passed

29 Mar 05:29
ebbd48c
Compare
Choose a tag to compare

This release fixes a bug caused by how TypeIt handled empty strings passed to the strings option. When something like ["", "foo", "bar"] was passed, the animation would halt on the empty string. See issue #199 for more details.