html-element-property-mixins
Advanced tools
Comparing version 0.10.11 to 0.10.12
{ | ||
"name": "html-element-property-mixins", | ||
"version": "0.10.11", | ||
"version": "0.10.12", | ||
"description": "A collection of mixins extending HTMLElement with properties.", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -55,2 +55,3 @@ export const ObservedProperties = (SuperClass) => class extends SuperClass { | ||
if(oldValue === newValue) return; | ||
try { if(JSON.stringify(oldValue) === JSON.stringify(newValue)) return; } catch(e) {}; | ||
this.propertyChangedCallback && this.propertyChangedCallback(propName, oldValue, newValue); | ||
@@ -57,0 +58,0 @@ } |
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
38115
244