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

@cicada/render

Package Overview
Dependencies
Maintainers
6
Versions
107
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cicada/render - npm Package Compare versions

Comparing version 1.1.7-alpha to 1.1.7-alpha2

.npmignore

8

lib/createAppearance.js

@@ -93,2 +93,9 @@ 'use strict';

}
function replaceStylesheet(styleName, content) {
if (typeof document === 'undefined') return;
var styleDom = document.getElementById(styleName);
if (styleDom) {
styleDom.innerText = '.' + styleName + ' ' + content;
}
}
var displayNoneStyle = createStylesheet(DISPLAY_NONE, '{ display: none !important; }');

@@ -257,2 +264,3 @@

replaceStylesheet: replaceStylesheet,
createStylesheet: createStylesheet,

@@ -259,0 +267,0 @@ getIdsByComponentPath: function getIdsByComponentPath(pathArr) {

2

package.json
{
"name": "@cicada/render",
"version": "1.1.7-alpha",
"version": "1.1.7-alpha2",
"main": "./lib/index.js",

@@ -5,0 +5,0 @@ "scripts": {

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