Minor Changes
- Add typescript type definitions: 8451cdc
 - Merge pull request #13 from joeistas/add-types: 526da70
 - Added delay option: fb703c8
 - Added delay to example: 3eaf810
 
Thanks to @ycmjason you can now specify delay prop on each transition.
For example
<fade-transition :delay="1000">
  <div v-if="condition"></div>
</fade-transition>will delay the transition with 1000ms and trigger it only after this delay period. This allows chained/sequenced transitions (e.g 1 element appears, then another one and so on)