Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@thi.ng/hdom

Package Overview
Dependencies
Maintainers
1
Versions
276
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thi.ng/hdom - npm Package Compare versions

Comparing version 3.0.14 to 3.0.15

11

CHANGELOG.md

@@ -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)

6

dom.js

@@ -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;

22

package.json
{
"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": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc