Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@alexkuz/react-autocomplete
Advanced tools
> Yes, this is another fork. Of the fork. I'm sorry. This fork enables bootstrap appearance, like this: ``` <Compobox appearance='bootstrap' ... /> ``` Also, it has a mode, in which it shrinks to it's content. Can be useful as inline component: ``` <Compo
Yes, this is another fork. Of the fork. I'm sorry. This fork enables bootstrap appearance, like this:
<Compobox appearance='bootstrap' ... />
Also, it has a mode, in which it shrinks to it's content. Can be useful as inline component:
<Compobox shrink={true} shrinkMinSize={100} ... />
Installation:
$ npm install @alexkuz/react-autocomplete
A quick, friendly fork aimed at making the original lib easier to consume, when using with:
npm install colinhicks/react-autocomplete
import {Combobox, Option} from 'react-autocomplete';
Original readme preserved below ...
WAI-ARIA accessible React autocomplete component (combobox).
npm install react-autocomplete
This is not production ready, but I welcome use-cases opened in the issues :)
http://rackt.github.io/react-autocomplete/example/
var Autocomplete = require('react-autocomplete');
// its actually called a combobox, but noboby searches for that
var Combobox = Autocomplete.Combobox;
var Option = Autocomplete.Option;
var comboboxinItUp = (
// Just like <select><option/></select>, this component is a
// composite component. This gives you complete control over
// What is displayed inside the <Option>s as well as allowing
// you to render whatever you want inside, like a "no results"
// message that isn't interactive like the <Options> are.
// Start with the <Combobox/> and give it some handlers.
<Combobox
onInput={handleInput}
onSelect={handleSelect}
autocomplete="both"
>
// `onInput` is called when the user is typing, it gets passed the
// value from the input. This is your chance to filter the Options
// and redraw. More realistically, you'd make a request to get data
// and then redraw when it lands.
//
// `onSelect` is called when the user makes a selection, you probably
// want to reset the Options to your full dataset again, or maybe
// deal with the value and then clear it out if this is used to
// populate a list.
//
// `autocomplete` defaults to 'both'. 'inline' will autocomplete the
// first matched Option into the input value, 'list' will display a
// list of choices, and of course, both does both.
// When this option is selected, `onSelect` will be called with the
// value `"foo"`.
<Option value="foo">Foo</Option>
// `label` is the text to display in the input when the Option is
// selected. It defaults to the content of the Option just like a
// real <option>. (Maybe the value should too, now that I'm writing
// this, but it doesn't yet)
<Option value="bar" label="not bar at all">Bar</Option>
</Combobox>
);
This is not realistic code, check out the examples directory for a real implementation.
FAQs
> Yes, this is another fork. Of the fork. I'm sorry. This fork enables bootstrap appearance, like this: ``` <Compobox appearance='bootstrap' ... /> ``` Also, it has a mode, in which it shrinks to it's content. Can be useful as inline component: ``` <Compo
The npm package @alexkuz/react-autocomplete receives a total of 4 weekly downloads. As such, @alexkuz/react-autocomplete popularity was classified as not popular.
We found that @alexkuz/react-autocomplete 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.