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

element-internals-polyfill

Package Overview
Dependencies
Maintainers
1
Versions
110
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

element-internals-polyfill - npm Package Compare versions

Comparing version 0.0.17 to 0.0.18

7

CHANGELOG.md

@@ -5,2 +5,9 @@ # Changelog

### [0.0.18](https://github.com/calebdwilliams/element-internals-polyfill/compare/v0.0.17...v0.0.18) (2020-05-27)
### Bug Fixes
* **polyfill:** now uses correct event names for validity events ([a2fb8d6](https://github.com/calebdwilliams/element-internals-polyfill/commit/a2fb8d6239995bdff170c63446d41b9421324223))
### [0.0.17](https://github.com/calebdwilliams/element-internals-polyfill/compare/v0.0.16...v0.0.17) (2020-05-27)

@@ -7,0 +14,0 @@

3

dist/element-internals.js

@@ -383,3 +383,4 @@ (function () {

const ref = refMap.get(this);
const validityEvent = new Event(validity.valid, {
const eventName = validity.valid ? 'valid' : 'invalid';
const validityEvent = new Event(eventName, {
bubbles: false,

@@ -386,0 +387,0 @@ cancelable: true,

{
"name": "element-internals-polyfill",
"version": "0.0.17",
"version": "0.0.18",
"description": "A polyfill for the element internals specification",

@@ -5,0 +5,0 @@ "main": "dist/element-internals.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