Releases: BinarCode/vue2-transitions
Releases · BinarCode/vue2-transitions
v0.3.0
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)
Patches
v0.2.3
v0.2.2
v0.2.1
v0.2.0
Minor Changes
- Add support for
transition-group
with dynamic componentis
attribute: 80ad403
Each transition can be used as agroup
transition now.
Example
<fade-transition group>
<!--keyed children here-->
</fade-transition>
There are some details/things to take care when you use group transitions in order to achieve really smooth transitions which are addressed in the Readme.
Patches
v0.1.2
Commits
- Update README.md: aa565e5
- Add appear to transitions in demo Adjust duration to 500ms: e9974bf
- Add Scale, Slide transitions Add origin prop: 147d2b7
New Transitions
Slide
- SlideYUpTransition
- SlideYDownTransition
- SlideXRightTransition
- SlideXLeftTransition
Scale
-
ScaleTransition
-
Added origin prop to control
transform-origin
. Can be also set throughstyles
prop
Initial release
Initial release with the following transitions:
- FadeTransition
- ZoomCenterTransition
- ZoomXTransition
- ZoomYTransition
- ZoomUpTransition
- CollapseTransition