Dot's transition is infinite mode has no delay now.
Previously there were delay when you are passing showDots={true}
and infinite={true}
.
This is because there was a type-checking mistake in the code as the following:
if(!index)
which is now changed to:
if(index !== undefined)
Because index can be 0, and it should be truthy.
The feature is stable now.