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

@semantic-ui/templating

Package Overview
Dependencies
Maintainers
0
Versions
56
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.31 to 0.0.32

12

package.json

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

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

@@ -30,4 +30,4 @@ import { Reaction } from '@semantic-ui/reactivity';

},
concat(a, b) {
return a + b;
concat(...args) {
return args.join('');
},

@@ -102,17 +102,11 @@ both(a, b) {

is(a, b) {
if(b == undefined) {
return a == true;
}
return a == b;
},
not(a, b) {
if(b == undefined) {
return a == false;
}
return a != b;
},
isEqual(a, b) {
isExactly(a, b) {
return a === b;
},
isNotEqual(a, b) {
isNotExactly(a, b) {
return a !== b;

@@ -119,0 +113,0 @@ },

@@ -361,4 +361,5 @@ import { $ } from '@semantic-ui/query';

const elData = targetElement.dataset;
const elValue = targetElement.value;
template.call(boundEvent, {
additionalData: { event: event, data: { ...elData, ...eventData } },
additionalData: { event: event, value: elValue, data: { ...elData, ...eventData } },
});

@@ -365,0 +366,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