New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

hsy-vue-tooltip

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hsy-vue-tooltip - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

7

lib/index.js

@@ -567,3 +567,4 @@ module.exports =

return {
arrowStyle: {}
arrowStyle: {},
isShowing: true
};

@@ -796,2 +797,4 @@ },

show: function show() {
if (this.isShowing) return;
this.isShowing = true;
this.tooltipEl.style.display = 'block';

@@ -802,4 +805,6 @@ this.updateArrowStyle();

hide: function hide() {
if (!this.isShowing) return;
this.tooltipEl.style.display = 'none';
this.cbHide !== EMPTY_FN && this.cbHide();
this.isShowing = false;
},

@@ -806,0 +811,0 @@ autoShowWithMode: function autoShowWithMode(evt) {

2

package.json
{
"name": "hsy-vue-tooltip",
"version": "0.0.4",
"version": "0.0.5",
"description": "vue tooltip component",

@@ -5,0 +5,0 @@ "author": "hsiaosiyuan0 <hsiaosiyuan0@outlook.com>",

Sorry, the diff of this file is not supported yet

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