New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

jsx-dom

Package Overview
Dependencies
Maintainers
1
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jsx-dom - npm Package Compare versions

Comparing version 7.0.0-beta.1 to 7.0.0-beta.2

7

index.cjs.js

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

15

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

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