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

@vaadin/vaadin-cookie-consent

Package Overview
Dependencies
Maintainers
16
Versions
238
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/vaadin-cookie-consent - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

8

package.json

@@ -13,3 +13,3 @@ {

"name": "@vaadin/vaadin-cookie-consent",
"version": "1.1.1",
"version": "1.1.2",
"main": "vaadin-cookie-consent.js",

@@ -39,8 +39,8 @@ "author": "Vaadin Ltd",

"pwa-helpers": "^0.8.3",
"@polymer/iron-component-page": "^3.0.0-pre.18",
"@polymer/iron-demo-helpers": "^3.0.0-pre.18",
"@polymer/iron-component-page": "^4.0.0",
"@polymer/iron-demo-helpers": "^3.0.0",
"@webcomponents/webcomponentsjs": "^2.0.0",
"wct-browser-legacy": "^1.0.1",
"@vaadin/vaadin-demo-helpers": "^2.0.0"
"@vaadin/vaadin-demo-helpers": "^3.0.0"
}
}

@@ -64,3 +64,3 @@ /**

static get version() {
return '1.1.1';
return '1.1.2';
}

@@ -127,2 +127,16 @@

}
/**
* @protected
*/
static _finalizeClass() {
super._finalizeClass();
const devModeCallback = window.Vaadin.developmentModeCallback;
const licenseChecker = devModeCallback && devModeCallback['vaadin-license-checker'];
if (typeof licenseChecker === 'function') {
licenseChecker(CookieConsentElement);
}
}
_showLink(learnMoreLink) {

@@ -219,7 +233,1 @@ return !!learnMoreLink;

export { CookieConsentElement };
const licenseChecker = window.Vaadin.developmentModeCallback
&& window.Vaadin.developmentModeCallback['vaadin-license-checker'];
if (typeof licenseChecker === 'function') {
licenseChecker(CookieConsentElement);
}
window.VaadinCookieConsentSuites = [
'change-texts-test.html',
'accessibility-test.html',
'basic-test.html'
];
const isIOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
if (!isIOS) {
window.VaadinCookieConsentSuites.push('accessibility-test.html');
}
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