element-internals-polyfill
Advanced tools
Comparing version 0.0.17 to 0.0.18
@@ -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 @@ |
@@ -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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
25424
446