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.6 to 0.0.7

19

lib/index.js

@@ -809,6 +809,19 @@ module.exports =

autoShowWithMode: function autoShowWithMode(evt) {
if (this.mode === 'hover' && evt.type === 'mouseover' || this.mode === 'click' && evt.type === 'click') {
this.show();
this.$emit('input', true);
if (this.mode === 'hover') {
if (evt.type === 'mouseover') {
this.show();
this.$emit('input', true);
}
return;
}
if (this.mode === 'click' && evt.type === 'click') {
if (this.isShowing) {
this.hide();
this.$emit('input', false);
} else {
this.show();
this.$emit('input', true);
}
}
},

@@ -815,0 +828,0 @@ autoHideWithMode: function autoHideWithMode(evt) {

2

package.json
{
"name": "hsy-vue-tooltip",
"version": "0.0.6",
"version": "0.0.7",
"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