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

@semantic-ui/component

Package Overview
Dependencies
Maintainers
0
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@semantic-ui/component - npm Package Compare versions

Comparing version 0.0.34 to 0.0.35

10

package.json

@@ -15,8 +15,8 @@ {

"dependencies": {
"@semantic-ui/query": "^0.0.34",
"@semantic-ui/reactivity": "^0.0.34",
"@semantic-ui/templating": "^0.0.34",
"@semantic-ui/utils": "^0.0.34"
"@semantic-ui/query": "^0.0.35",
"@semantic-ui/reactivity": "^0.0.35",
"@semantic-ui/templating": "^0.0.35",
"@semantic-ui/utils": "^0.0.35"
},
"version": "0.0.34"
"version": "0.0.35"
}

@@ -9,3 +9,2 @@ import { unsafeCSS } from 'lit';

export const createComponent = ({

@@ -12,0 +11,0 @@ template = '',

@@ -15,3 +15,3 @@ import { html, svg } from 'lit';

static PARENS_REGEXP = /('[^']*'|\(|\)|[^\s()]+)/g;
static PARENS_REGEXP = /('[^']*'|"[^"]*"|\(|\)|[^\s()]+)/g;
static STRING_REGEXP = /^\'(.*)\'$/;

@@ -152,3 +152,7 @@

evaluateSVG(svg, data) {
return this.renderContent({ ast: svg, isSVG: true, data });
return this.renderContent({
isSVG: true,
ast: svg,
data
});
}

@@ -309,5 +313,13 @@

}
const current = wrapFunction(acc)();
const current = (acc instanceof ReactiveVar)
? acc.get()
: wrapFunction(acc)()
;
if (current == undefined) {
fatal(`Error evaluating expression "${path}"`);
return undefined;
/* erroring on intermediate undefined
feels better not as an error state
but this may change
*/
//fatal(`Error evaluating expression "${path}"`);
}

@@ -314,0 +326,0 @@ return current[part];

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