
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
A small, React UI primitive toolkit.
radon-select
:
React select box replacement componentradon-typeahead
:
React typeahead component$ npm install --save radon # OR
$ yarn add radon
We provide UMD bundles at:
./dist/radon.js
: Development build./dist/radon.min.js
: Production buildBoth require that you have external dependencies available on window
/global
of:
React
ReactDOM
We provide ESM and CommonJS versions of the Radon Toolkit. Your bundling tool should pick up the appropriate one automagically from our entries for package.json:main
(CommonJS) and package.json:module
(ESM).
import React from 'react';
import ReactDOM from 'react-dom';
import { Select } from 'radon';
class App extends React.Component {
render() {
return (
<div>
<h3>Basic</h3>
<Select selectName="foo">
<Select.Option value="who">Who</Select.Option>
<Select.Option value="what">What</Select.Option>
</Select>
</div>
);
}
}
ReactDOM.render(<App />, document.getElementById('root'));
import React from 'react';
import ReactDOM from 'react-dom';
import { Typeahead } from 'radon';
const CAR_BRANDS = [
'Alfa Romeo',
'Audi',
'Bmw',
'Chevrolet',
'Chrystler',
'Dodge',
'Ferrari',
'Fiat',
'Ford',
'Honda',
'Hyundai',
'Jaguar',
'Jeep',
'Kia',
'Mazda',
'Mercedez-Benz',
'Mitsubish',
'Nissan',
'Peugeot',
'Porsche',
'Subaru',
'Suzuki',
'Toyota',
'Volkswagen'
];
class App extends React.Component {
render() {
return (
<div>
<h3>Car Brands</h3>
<Typeahead list={CAR_BRANDS} inputComponent={<input />}/>
</div>
);
}
}
ReactDOM.render(<App />, document.getElementById('root'));
FAQs
A small, React UI primitive toolkit.
The npm package radon receives a total of 154 weekly downloads. As such, radon popularity was classified as not popular.
We found that radon demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.