Skip to content

Latest commit

 

History

History
250 lines (108 loc) · 8.03 KB

CHANGELOG.md

File metadata and controls

250 lines (108 loc) · 8.03 KB

Changelog

All notable changes to this project will be documented in this file. See commit-and-tag-version for commit guidelines.

1.2.1 (2024-02-17)

Bug Fixes

  • fix errors in tsconfg.json (85e04282)
  • make nuxt as optional dependency (#1) (6c60b93a)

Chores

  • update conventional-changelog-aaron-preset (5b6b7379)

1.2.0 (2023-10-11)

Features

  • support nuxt as a nuxt module vue-view-transitions/nuxt (f298e0e0)

Documentation

1.1.1 (2023-07-30)

Bug Fixes

  • fix an error when pass a value of wrong type and improve error message's readability (839340e1)

Test

Chores

  • use aaron-preset to regenerate the whole CHANGELOG.md (323cf1c3)
  • update README and keywords (1a6ce423)

1.1.0 (2023-07-29)

Features

  • provides a shorthand v-trans for v-view-transition-name (4bb3f69e)

Bug Fixes

  • should execute the callback of startViewTransition as well when running in unsupported browsers (1b190965)

Chores

1.0.0 (2023-07-27)

Bug Fixes

  • return ViewTransition object with default values when browser does not support view transitions api (a47d5ade)

1.0.0-beta.2 (2023-07-25)

Bug Fixes

  • should not access capturedPromise before initialization (abf2cb97)

1.0.0-beta.1 (2023-07-25)

Features

  • add captured property to ViewTransition object (2648719b)

    Description

    • captured property is promise resolved when user agent finishes capturing images of the current state

    BREAKING CHANGE

    • startViewTransition no longer return a promise. Previous:
      await startViewTransition()
      Now:
      const viewTransition = startViewTransition()
      await viewTransition.captured

0.4.0-beta.1 (2023-07-25)

Features

  • startViewTransition accepts an optional callback (cf27ddcb)

    Description

    • startViewTransition accepts an optional callback, which returns a promise. the view transition starts once the promise is resolved.
    • viewTransition.updateCallbackDone is provided in the returned ViewTransition object, which is the same as the native ViewTransition object

0.3.1 (2023-07-23)

Bug Fixes

  • fix an error when using object syntax (0edbb633)

0.3.0 (2023-07-02)

Features

  • support passing an object for dynamic toggling (f80358ce)

0.2.4 (2023-07-01)

Bug Fixes

  • directive callback should be called in udpate hook (b3e50e95)

Chores

  • trigger github action on tag push (0195dca9)

0.2.3 (2023-06-20)

Bug Fixes

0.2.2 (2023-06-20)

Bug Fixes

  • correct information in LICENSE (b63f8f1e)

Documentation

0.2.1 (2023-06-20)

Bug Fixes

0.2.0 (2023-06-20)

Features

Documentation

Chores

0.1.2 (2023-06-20)

Bug Fixes

  • fix incorrect exports field (afabf87d)

0.1.1 (2023-06-20)

Bug Fixes

  • add types to package.json to fix missing type declarations error (81fced57)

Chores

  • update repository in package.json (5ab615d0)

0.1.0 (2023-06-20)

Features

  • ViewTransitionsPlugin and startViewTransition (df1ec5f9)

Documentation

Chores