@thi.ng/hdom
Advanced tools
Comparing version 3.0.14 to 3.0.15
@@ -6,2 +6,13 @@ # Change Log | ||
<a name="3.0.15"></a> | ||
## [3.0.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@3.0.14...@thi.ng/hdom@3.0.15) (2018-05-09) | ||
### Bug Fixes | ||
* **hdom:** native boolean attrib handling (e.g. "checked") ([68ea086](https://github.com/thi-ng/umbrella/commit/68ea086)) | ||
<a name="3.0.14"></a> | ||
@@ -8,0 +19,0 @@ ## [3.0.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@3.0.13...@thi.ng/hdom@3.0.14) (2018-05-01) |
@@ -133,2 +133,6 @@ "use strict"; | ||
break; | ||
case "checked": | ||
// TODO add more native attribs? | ||
el[id] = val; | ||
break; | ||
default: | ||
@@ -144,3 +148,3 @@ if (isListener) { | ||
else { | ||
el[id] ? (el[id] = null) : el.removeAttribute(id); | ||
el[id] != null ? (el[id] = null) : el.removeAttribute(id); | ||
} | ||
@@ -147,0 +151,0 @@ return el; |
{ | ||
"name": "@thi.ng/hdom", | ||
"version": "3.0.14", | ||
"version": "3.0.15", | ||
"description": "Lightweight vanilla ES6 UI component & virtual DOM system", | ||
@@ -19,15 +19,15 @@ "main": "./index.js", | ||
"devDependencies": { | ||
"@thi.ng/atom": "^1.3.6", | ||
"@types/mocha": "^5.0.0", | ||
"@types/node": "^9.6.1", | ||
"mocha": "^5.0.5", | ||
"nyc": "^11.6.0", | ||
"@thi.ng/atom": "^1.3.7", | ||
"@types/mocha": "^5.2.0", | ||
"@types/node": "^10.0.6", | ||
"mocha": "^5.1.1", | ||
"nyc": "^11.7.1", | ||
"typedoc": "^0.11.1", | ||
"typescript": "^2.8.1" | ||
"typescript": "^2.8.3" | ||
}, | ||
"dependencies": { | ||
"@thi.ng/api": "^2.3.1", | ||
"@thi.ng/diff": "^1.0.10", | ||
"@thi.ng/hiccup": "^1.3.12", | ||
"@thi.ng/iterators": "^4.1.9" | ||
"@thi.ng/api": "^2.3.2", | ||
"@thi.ng/diff": "^1.0.11", | ||
"@thi.ng/hiccup": "^1.3.13", | ||
"@thi.ng/iterators": "^4.1.10" | ||
}, | ||
@@ -34,0 +34,0 @@ "keywords": [ |
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
72361
799
Updated@thi.ng/api@^2.3.2
Updated@thi.ng/diff@^1.0.11
Updated@thi.ng/hiccup@^1.3.13
Updated@thi.ng/iterators@^4.1.10