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

@transcend-io/consent-manager-ui

Package Overview
Dependencies
Maintainers
6
Versions
152
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@transcend-io/consent-manager-ui - npm Package Compare versions

Comparing version 1.0.12 to 1.0.13

src/.DS_Store

6

package.json

@@ -10,3 +10,3 @@ {

"homepage": "https://github.com/transcend-io/consent-manager-ui",
"version": "1.0.12",
"version": "1.0.13",
"license": "MIT",

@@ -28,3 +28,3 @@ "main": "src/index",

"@emotion/css": "^11.1.3",
"@transcend-io/airgap.js-types": "^6.8.14",
"@transcend-io/airgap.js-types": "^6.8.16",
"@transcend-io/internationalization": "^1.0.0",

@@ -70,2 +70,2 @@ "@transcend-io/logger": "^1.0.10",

"packageManager": "yarn@3.1.1"
}
}

@@ -22,4 +22,4 @@ /**

// eslint-disable-next-line no-restricted-globals
const view = self;
// eslint-disable-next-line no-restricted-globals, @typescript-eslint/no-explicit-any
const view = self as any;

@@ -46,4 +46,4 @@ /** Pre-setup reference to window.transcend */

// Stub self.airgap.ready() queue if it doesn't exist
// eslint-disable-next-line no-restricted-globals
(self.airgap ??= {
// eslint-disable-next-line no-restricted-globals, @typescript-eslint/no-explicit-any
((self as any).airgap ??= {
readyQueue: [],

@@ -121,9 +121,12 @@ /**

if (readyQueue) {
readyQueue.forEach((callback) => {
try {
callback(transcend);
} catch (ex) {
throwOutside(ex);
}
});
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(readyQueue as any).forEach(
(callback: (transcend: TranscendAPI) => void) => {
try {
callback(transcend);
} catch (ex) {
throwOutside(ex);
}
},
);
readyQueue.length = 0;

@@ -130,0 +133,0 @@ }

@@ -18,3 +18,3 @@ // eslint-disable-next-line no-restricted-globals

},
// eslint-disable-next-line no-restricted-globals
} = self;
// eslint-disable-next-line no-restricted-globals, @typescript-eslint/no-explicit-any
} = self as any;
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