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

cignium-hypermedia-client

Package Overview
Dependencies
Maintainers
1
Versions
101
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cignium-hypermedia-client - npm Package Compare versions

Comparing version 1.15.0 to 1.16.0

3

package.json

@@ -32,2 +32,3 @@ {

"babel-preset-stage-0": "^6.3.13",
"babel-polyfill": "^6.6.1",
"css-loader": "^0.23.0",

@@ -57,3 +58,3 @@ "eslint": "^1.10.3",

},
"version": "1.15.0"
"version": "1.16.0"
}

@@ -9,4 +9,4 @@ import cx from 'classnames'

id={property.name}
onBlur={() => onCommit()}
onChange={e => onUpdate(e.target.value == '' ? null : parseFloat(e.target.value))}
onBlur={() => onCommit(value == '' ? null : value)}
onChange={e => onUpdate(parseInput(e.target.value))}
title={property.title}

@@ -16,1 +16,9 @@ type='number'

)
function parseInput(input) {
if (input == null || isNaN(parseFloat(input))) {
return ''
}
return parseFloat(input)
}

@@ -0,1 +1,2 @@

import 'babel-polyfill'
import { render } from 'react-dom'

@@ -2,0 +3,0 @@ import { navigate, update } from './api'

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