Comparing version 0.7.3 to 0.7.4
@@ -112,2 +112,5 @@ Object.defineProperty(exports, "__esModule", { value: true }); | ||
} | ||
else if (property === 'role') { | ||
element.setAttribute(property, value); | ||
} | ||
else { | ||
@@ -150,2 +153,5 @@ try { | ||
} | ||
else if (property === 'role') { | ||
element.removeAttribute(property); | ||
} | ||
else { | ||
@@ -152,0 +158,0 @@ try { |
{ | ||
"name": "cascade", | ||
"version": "0.7.3", | ||
"version": "0.7.4", | ||
"description": "A modern library for creating user interfaces.", | ||
@@ -5,0 +5,0 @@ "author": "Sean Johnson <sjohnson@sjohnsonaz.com>", |
@@ -124,2 +124,4 @@ import { IVirtualNode, IVirtualElementProps } from './IVirtualNode'; | ||
element.setAttribute(property, value); | ||
} else if (property === 'role') { | ||
element.setAttribute(property, value); | ||
} else { | ||
@@ -156,2 +158,4 @@ try { | ||
element.removeAttribute(property); | ||
} else if (property === 'role') { | ||
element.removeAttribute(property); | ||
} else { | ||
@@ -158,0 +162,0 @@ try { |
Sorry, the diff of this file is not supported yet
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
386877
10581