Skip to content

v0.2.0

Choose a tag to compare

@StevenJPx2 StevenJPx2 released this 16 Jan 17:38
· 39 commits to main since this release

✨ Highlights

Docs page

We have a new docs page! Check it out!
It is still a MASSIVE work in progress. So, please raise a PR or issue to sort anything out!

Screenshot 2024-01-16 at 11 01 05 PM

DIrectives

We've now added a baked option to each directive that uses it in its parent's composable.
We also now have v-from-to as the directive version of useGsap, and v-aos as the directive for useAnimateOnScroll.

Example

If your v-split-animate was this:

<div 
  v-split-animate="{
    splitBy: 'words',
    translate: true,
  }"
>
  Hello there!
</div>

Change it to this:

<div 
  v-split-animate="{
    baked: true,
    options: {
      splitBy: 'words',
      translate: true,
    },
  }"
>
  Hello there!
</div>

Have a wonderful day! 😊

compare changes

🚀 Enhancements

  • useGenericTransition: Create 1-2-3 transitions (b59ff97)
  • useGenericTransition: Simplify composable (a7b9268)
  • docs: Add docs website (e5d2984)
  • ⚠️ Change baked locations, add baked option to directive (9920cc6)

🩹 Fixes

📖 Documentation

  • README: Add docs link (f9a4a7a)
  • website: Make README as the vitepress pages (6685423)
  • fix: Dead link (da55a42)
  • index: Add link (169032c)
  • vitepress: Complete auto-generate docs (0801d64)
  • vitepress: Simplify route rewrite (ea6fd14)
  • Add more (520e295)
  • vitepress: GenerateSidebar function (bf0cf5b)
  • vitepress: Add SEO (ead0671)
  • index.md: Fix get started (4618634)
  • README: Remove redundant documentation (bb5fc2b)

🏡 Chore

⚠️ Breaking Changes

  • ⚠️ Change baked locations, add baked option to directive (9920cc6)

❤️ Contributors