Comparing version 7.0.0-beta.1 to 7.0.0-beta.2
@@ -329,2 +329,9 @@ "use strict" | ||
case "dangerouslySetInnerHTML": | ||
if (isObject(value)) { | ||
node.innerHTML = value["__html"] | ||
} | ||
return | ||
case "spellCheck": | ||
@@ -331,0 +338,0 @@ node.spellcheck = value |
@@ -325,2 +325,9 @@ const keys = Object.keys | ||
case "dangerouslySetInnerHTML": | ||
if (isObject(value)) { | ||
node.innerHTML = value["__html"] | ||
} | ||
return | ||
case "spellCheck": | ||
@@ -327,0 +334,0 @@ node.spellcheck = value |
@@ -184,2 +184,9 @@ "use strict" | ||
case "dangerouslySetInnerHTML": | ||
if (isObject(value)) { | ||
node.innerHTML = value["__html"] | ||
} | ||
return | ||
case "spellCheck": | ||
@@ -186,0 +193,0 @@ node.spellcheck = value |
@@ -180,2 +180,9 @@ const keys = Object.keys | ||
case "dangerouslySetInnerHTML": | ||
if (isObject(value)) { | ||
node.innerHTML = value["__html"] | ||
} | ||
return | ||
case "spellCheck": | ||
@@ -182,0 +189,0 @@ node.spellcheck = value |
{ | ||
"name": "jsx-dom", | ||
"version": "7.0.0-beta.1", | ||
"version": "7.0.0-beta.2", | ||
"description": "JSX to document.createElement.", | ||
@@ -15,4 +15,15 @@ "main": "index.cjs.js", | ||
"dependencies": { | ||
"csstype": "^3.0.6" | ||
"csstype": "^3.0.7" | ||
}, | ||
"lint-staged": { | ||
"*.ts": [ | ||
"eslint --fix", | ||
"prettier --write" | ||
] | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "lint-staged && yarn build && yarn test" | ||
} | ||
}, | ||
"repository": { | ||
@@ -19,0 +30,0 @@ "type": "git", |
Sorry, the diff of this file is too big to display
115686
3378
Updatedcsstype@^3.0.7