Socket
Socket
Sign inDemoInstall

@polymer/polymer

Package Overview
Dependencies
1
Maintainers
9
Versions
49
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.5.0 to 3.5.1

2

lib/mixins/element-mixin.js

@@ -27,3 +27,3 @@ /**

*/
export const version = '3.5.0';
export const version = '3.5.1';

@@ -30,0 +30,0 @@ export const builtCSS = window.ShadyCSS && window.ShadyCSS['cssBuild'];

@@ -534,3 +534,9 @@ /**

} else {
node.setAttribute(attribute, str);
node.setAttribute(
attribute,
// Closure's type for `setAttribute`'s second parameter incorrectly
// excludes `TrustedScript`.
(str === '' && window.trustedTypes) ?
/** @type {?} */ (window.trustedTypes.emptyScript) :
str);
}

@@ -537,0 +543,0 @@ }

{
"name": "@polymer/polymer",
"version": "3.5.0",
"version": "3.5.1",
"description": "The Polymer library makes it easy to create your own web components. Give your element some markup and properties, and then use it on a site. Polymer provides features like dynamic templates and data binding to reduce the amount of boilerplate you need to write",

@@ -5,0 +5,0 @@ "main": "polymer-element.js",

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc