Skip to content

Releases: headmandev/vue3-side-panel

v.1.3.0

11 Nov 00:26
d849ef2
Compare
Choose a tag to compare

Events opened and closed added in version 1.3.0:
Here is an example of how to use it:

<VueSidePanel
  v-model="isOpened"
  @opened="() => console.log('@opened event: transition stopped and modal is opened')"
  @closed="() => console.log('@closed event: transition stopped and modal is closed')" 
>
  ...
</VueSidePanel>

v.1.2.0

16 Apr 21:22
Compare
Choose a tag to compare

Now we have scroll blocking via setTimeout because of incorrectly calculation the scrollbar gap
(body-scroll-lock issue)
Related to this bug problem has been described here.
willmcpo/body-scroll-lock#239

v1.1.1

19 Nov 22:17
Compare
Choose a tag to compare

Bug with nested modals and body scrolling is fixed (Nested modal closing caused enabling body scroll)

v1.1.0

30 Oct 21:47
Compare
Choose a tag to compare
  • The <Transtion> component is now used for animation.

  • rerender prop to render when opened

  • transition-name prop to override the default animation

v1.0.3

10 Sep 09:37
Compare
Choose a tag to compare
  • Bug with default value for the side prop is fixed. Now it is 'right' as expected

v1.0.2

22 May 14:22
Compare
Choose a tag to compare

Fixes:

  • Bug with body height calculation at the initial open panel was fixed