
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
redux-form-numeric-field
Advanced tools
A customized redux-form
Field
for entering numbers. It isn't contrary; it won't stop you from typing, pasting, or cutting
any characters, though it will produce a "must be a number" validation error immediately if the current input is invalid.
When it loses focus it will normalize its value to a number, if valid; otherwise it will trim its value but leave it as a string.
npm install --save redux-form-numeric-field
const { NumericField } = require('redux-form-numeric-field')
or
const { NumericField } = require('redux-form-numeric-field/immutable')
The following field will normalize its value to a number when it loses focus (unless the text is not a valid number, in which case it will just trim the text when it loses focus).
<NumericField name="value" component={YourInputComponent} />
NumericField
Has the same API as redux-form
's Field
, but normalizes its value to a number when it loses focus
(unless the text is not a valid number, in which case it will just trim the text when it loses focus).
normalizeNumber?: (value: ?(string | number)) => ?(string | number)
Allows you to override the default implementation which is called on blur. If value
is a number
or
correctly-formatted string
, return a number
; otherwise, return a string
or null
.
normalizeOnBlur?: (value: ?(string | number)) => ?(string | number)
If you provide this, it will be called with the output of normalizeNumber
when the field loses focus.
validate?: Validator | Array<Validator>
Unlike a normal Field
, NumericField
will call your validators with the normalized value from
normalizeNumber
. If its value is an invalid number but not whitespace, it will produce a
"must be a number" validation error without calling your own validators.
FAQs
a customized redux-form Field for entering numbers
The npm package redux-form-numeric-field receives a total of 616 weekly downloads. As such, redux-form-numeric-field popularity was classified as not popular.
We found that redux-form-numeric-field demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.