
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
material-ui-next-datepicker
Advanced tools
This repository act as a sample of creating a datepicker in Material UI Next or it can be imported as a datepicker component.
npm install material-ui-next-datepicker --save
name: string
value: Date
onChange: (value:Date) => void
label?: string
error?: string
min?: Date
max?: Date
fullWidth?: boolean
dialog?: boolean
import DateFormatInput from 'material-ui-next-datepicker'
class YourComponent extends React.Component<{}, YourComponentState> {
onChange = (date:Date) => {
console.log(date)
this.setState({date})
}
render() {
const {date} = this.state
return (
<div>
<DateFormatInput name='date-input' value={date} onChange={this.onChange}/>
</div>
)
}
}
interface YourComponentState {
date: Date
}
FAQs
Datepicker for material-ui next
The npm package material-ui-next-datepicker receives a total of 2 weekly downloads. As such, material-ui-next-datepicker popularity was classified as not popular.
We found that material-ui-next-datepicker 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.