Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vue-tippy

Package Overview
Dependencies
Maintainers
1
Versions
175
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-tippy - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

4

package.json
{
"name": "vue-tippy",
"version": "0.1.2",
"version": "0.1.3",
"description": "",

@@ -35,4 +35,4 @@ "main": "vue-tippy.js",

"dependencies": {
"tippy.js": "^0.11.1"
"tippy.js": "^0.17.0"
}
}
# vue-tippy
> Directive wrapper for Tippy.js 0.11
> Directive wrapper for Tippy.js

@@ -5,0 +5,0 @@ ## Install

@@ -8,3 +8,3 @@ const Tippy = require('tippy.js');

bind: function (el, binding, vnode) {
new Tippy(el, {
const instance = new Tippy(el, {
shown: function () {

@@ -17,2 +17,15 @@ const handlers = (vnode.data && vnode.data.on) ||

}
},
wait: function(show, event) {
// Change your app model to be rendered by the UI library/framework
// Queue show to run once rendering is complete
setTimeout(function() {
// update(popper) content
const popper = instance.getPopperElement(el);
instance.update(popper);
show()
}, 0)
}

@@ -19,0 +32,0 @@ });

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc