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

@haxtheweb/utils

Package Overview
Dependencies
Maintainers
0
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@haxtheweb/utils - npm Package Compare versions

Comparing version 9.0.1 to 9.0.2

LICENSE.md

26

lib/activeStateBehavior.js

@@ -7,15 +7,17 @@ export const activeStateBehavior = function (SuperClass) {

setTimeout(() => {
this.addEventListener("mouseover", (e) => {
this.isUserSelected = true;
});
this.addEventListener("focusin", (e) => {
this.isUserSelected = true;
});
if (this.addEventListener) {
this.addEventListener("mouseover", (e) => {
this.isUserSelected = true;
});
this.addEventListener("focusin", (e) => {
this.isUserSelected = true;
});
this.addEventListener("mouseout", (e) => {
this.isUserSelected = false;
});
this.addEventListener("focusout", (e) => {
this.isUserSelected = false;
});
this.addEventListener("mouseout", (e) => {
this.isUserSelected = false;
});
this.addEventListener("focusout", (e) => {
this.isUserSelected = false;
});
}
}, 0);

@@ -22,0 +24,0 @@ }

{
"name": "@haxtheweb/utils",
"version": "9.0.1",
"version": "9.0.2",
"description": "Helper functions to clean up web component data handling.",

@@ -21,3 +21,3 @@ "repository": {

},
"gitHead": "7f62cde6a6242afcb57715e1e2067ea767c777fd"
"gitHead": "f528e4aac8aeadf5350d9262fb515d14d208e376"
}

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