Skip to content

Releases: Akryum/floating-vue

v2.0.0-rc.25

23 Nov 12:58
Compare
Choose a tag to compare
v2.0.0-rc.25 Pre-release
Pre-release

New

  • v-close-popover directive to close the popover on element click (docs, example). It implements the event.closePopover = true feature in a proper way to handle mobiles.

Improved

  • Plugin options can now directly changed on the package default export (docs).
  • Popover: global events optimizations

Fixed

  • Popover: autoHide prop set to false no longer blocks the event.closePopover = true feature.
  • Popover: mobile fixes

v2.0.0-rc.24

23 Nov 11:35
Compare
Choose a tag to compare
v2.0.0-rc.24 Pre-release
Pre-release

New

New features have landed to help change all the CSS classes in case of conflicts with other libraries (looking at you bootstrap).

  • Tooltip arrowSelector and innerSelector options (and corresponding global options).
  • Popover popoverBaseClass, popoverInnerClass, popoverWrapperClass and popoverArrowClass props (and corresponding global options).

Other new features:

  • Popover disabled prop.

Improvements

  • Popover: improvements has been made to internals regarding the show and hide actions.
  • Better demo design.

Fixed

v2.0.0-rc.23

20 Nov 11:39
Compare
Choose a tag to compare
v2.0.0-rc.23 Pre-release
Pre-release

Improved

  • Use passive: true on touch events when supported.

Fixed

  • If an element that should close the popover is positioned over the popover target, it would immediatly re-open the popover on iOS.

v2.0.0-rc.22

16 Nov 19:13
Compare
Choose a tag to compare
v2.0.0-rc.22 Pre-release
Pre-release

Improved

  • Better SVG support, fixes #67

v2.0.0-rc.21

16 Nov 13:54
Compare
Choose a tag to compare
v2.0.0-rc.21 Pre-release
Pre-release

Fix

  • Reverted Better performance by using mouseover instead of mouseenter. from v2.0.0-rc.19 to fix #65
  • Fix mobile issues #23

v2.0.0-rc.19

14 Nov 12:36
Compare
Choose a tag to compare
v2.0.0-rc.19 Pre-release
Pre-release

Improved

  • Better performance by using mouseover instead of mouseenter.

Fixed

  • Fixed tooltips not disappearing #62
  • Fixed a crash in Popover.vue

v2.0.0-rc.18

09 Nov 15:41
Compare
Choose a tag to compare
v2.0.0-rc.18 Pre-release
Pre-release

New

  • targetClasses option to add CSS classes to the target element of the tooltip if it will show one.
  • defaultTargetClasses global option.

v2.0.0-rc.17

09 Nov 12:35
Compare
Choose a tag to compare
v2.0.0-rc.17 Pre-release
Pre-release

Fixed

  • Default options could sometime override defined options that were 'falsy'.
  • Fixed defaultOffset global option.

v2.0.0-rc.16

07 Nov 16:22
Compare
Choose a tag to compare
v2.0.0-rc.16 Pre-release
Pre-release

Improved

  • New <div class="wrapper"> element wrapping the popover inner and the arrow (to allow transform transitions).

Fixed

  • Popover not shown if open prop is true when created #61
  • Other misc. issues

Popovers and Dropdowns

02 Nov 19:13
Compare
Choose a tag to compare
Pre-release

New

  • <v-popover> component to display components or template in a tooltip/popover/dropdown/whatever (doc). #31