Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@usulpro/color-picker
Advanced tools
Material Design is a design language introduced by Google. If you want to find color inspiration for a specific design style based on material color palette, you can use this component as a development tool. You may find it useful while creating Material apps in combination with such libraries as Material-UI
$ npm i react-material-color-picker --save
import React from 'react';
import MaterialColorPicker from 'react-material-color-picker';
// in your app
<MaterialColorPicker
initColor="rgba(0, 0, 0, 0.26)"
onSubmit={actionLog()}
onReset={actionLog()}
style={{width: 400, backgroundColor: '#c7c7c7'}}
submitLabel='Apply'
resetLabel='Undo'
/>
initColor should be color string from Goggle material color palette
style - inline style of the root div node
submitLabel and resetLabel are titles of the appropriate buttons
onSubmit and onReset are callbacks wich will be invoked by clicking the appropriate buttons. It will recieve an argument with the following structure:
event = {
type, // 'submit' || 'reset',
timeStamp, // nativeEvent.timeStamp,
target: {
value, // currient color string,
nativeEvent, // nativeEvent,
name: 'MaterialColorPicker',
node, // ref to root div element,
...this.props,
}
};
FAQs
React Material Color Picker Component
The npm package @usulpro/color-picker receives a total of 15,425 weekly downloads. As such, @usulpro/color-picker popularity was classified as popular.
We found that @usulpro/color-picker demonstrated a not healthy version release cadence and project activity because the last version was released 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.