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

ligo-snippet

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ligo-snippet - npm Package Compare versions

Comparing version 1.4.1 to 1.4.2

14

dist/setupContainer.js

@@ -26,3 +26,7 @@ "use strict";

if (container) {
container.classList.add(`${watermark}-container`);
const shadowRoot = document
.createElement("div")
.attachShadow({ mode: "open" });
const shadowContainer = document.createElement("div");
shadowContainer.classList.add(`${watermark}-container`);
// sets up the buttons

@@ -44,3 +48,3 @@ const buttons = document.createElement("div");

buttons.append(buttonsLeft, buttonsRight);
container.appendChild(buttons);
shadowContainer.appendChild(buttons);
// sets up the container

@@ -64,6 +68,8 @@ const editorWrapper = document.createElement("div");

editorRenderer.appendChild(textarea);
container.appendChild(editorWrapper);
shadowContainer.appendChild(editorWrapper);
const errorsDiv = document.createElement("div");
errorsDiv.id = `${watermark}-compile-error`;
container.appendChild(errorsDiv);
shadowContainer.appendChild(errorsDiv);
shadowRoot.appendChild(shadowContainer);
container.appendChild(shadowRoot);
}

@@ -70,0 +76,0 @@ else {

{
"name": "ligo-snippet",
"version": "1.4.1",
"version": "1.4.2",
"description": "Ligo code snippet",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

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