element-internals-polyfill
Advanced tools
Comparing version 0.1.5 to 0.1.6
@@ -5,2 +5,9 @@ # Changelog | ||
### [0.1.6](https://github.com/calebdwilliams/element-internals-polyfill/compare/v0.1.5...v0.1.6) (2021-02-10) | ||
### Bug Fixes | ||
* **formSubmitCallback:** elements now report validity when a form is submitted ([01b2499](https://github.com/calebdwilliams/element-internals-polyfill/commit/01b249956f3874f54e3b59db5184c0012ee8c324)) | ||
### [0.1.5](https://github.com/calebdwilliams/element-internals-polyfill/compare/v0.1.4...v0.1.5) (2021-02-10) | ||
@@ -7,0 +14,0 @@ |
@@ -182,3 +182,3 @@ (function () { | ||
const internals = internalsMap.get(node); | ||
return internals.checkValidity(); | ||
return internals.reportValidity(); | ||
}); | ||
@@ -185,0 +185,0 @@ /** If any node is false, stop the event */ |
{ | ||
"name": "element-internals-polyfill", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"description": "A polyfill for the element internals specification", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.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
50963