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

@semantic-ui/templating

Package Overview
Dependencies
Maintainers
0
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@semantic-ui/templating - npm Package Compare versions

Comparing version 0.0.38 to 0.0.39

12

package.json

@@ -8,9 +8,9 @@ {

"dependencies": {
"@semantic-ui/component": "^0.0.38",
"@semantic-ui/query": "^0.0.38",
"@semantic-ui/reactivity": "^0.0.38",
"@semantic-ui/templating": "^0.0.38",
"@semantic-ui/utils": "^0.0.38"
"@semantic-ui/component": "^0.0.39",
"@semantic-ui/query": "^0.0.39",
"@semantic-ui/reactivity": "^0.0.39",
"@semantic-ui/templating": "^0.0.39",
"@semantic-ui/utils": "^0.0.39"
},
"version": "0.0.38"
"version": "0.0.39"
}

@@ -372,2 +372,9 @@ import { $ } from '@semantic-ui/query';

}
// check if event occured on a deep event handler and the handler type isnt 'deep'
const isDeep = selector && $(event.target).closest(selector).length == 0;
if(eventType !== 'deep' && isDeep) {
return;
}
// handle related target use case for special events

@@ -380,8 +387,2 @@ if (inArray(eventName, ['mouseover', 'mouseout'])

// check if the event occurred in a slotted element or nested web component
const isDeep = $(event.target).closest(selector).length == 0;
if(isDeep && eventType !== 'deep') {
return;
}
// prepare data for users event handler

@@ -388,0 +389,0 @@ const targetElement = this;

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