Releases: Akryum/floating-vue
Releases · Akryum/floating-vue
v2.0.0-rc.25
New
v-close-popover
directive to close the popover on element click (docs, example). It implements theevent.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 tofalse
no longer blocks theevent.closePopover = true
feature. - Popover: mobile fixes
v2.0.0-rc.24
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
andinnerSelector
options (and corresponding global options). - Popover
popoverBaseClass
,popoverInnerClass
,popoverWrapperClass
andpopoverArrowClass
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
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
Improved
- Better SVG support, fixes #67
v2.0.0-rc.21
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
Improved
- Better performance by using
mouseover
instead ofmouseenter
.
Fixed
- Fixed tooltips not disappearing #62
- Fixed a crash in Popover.vue
v2.0.0-rc.18
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
Fixed
- Default options could sometime override defined options that were 'falsy'.
- Fixed
defaultOffset
global option.
v2.0.0-rc.16
Improved
- New
<div class="wrapper">
element wrapping the popover inner and the arrow (to allow transform transitions).
Fixed
- Popover not shown if
open
prop istrue
when created #61 - Other misc. issues