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.
@reciprocity/multiselect
Advanced tools
A select component with support multi value selection, auto-complete, etc.
Based on Vue Multiselect. Check out the documentation for more options.
npm install @reciprocity/multiselect
or
yarn add @reciprocity/multiselect
This component is meant to be used as an ES module, so you can import it using the ES6 import
syntax.
After importing you can just register it with Vue. Eg:
app.vue
<template>
<zen-multiselect v-model='value' :options='options'>Click me!</multiselect>
</template>
<script>
import ZenMultiselect from '@ reciprocity/multiselect';
export default Vue.extend({
name: 'My App',
data() {
return {
value: null,
options: ['Argentina', 'Slovenia', 'United States'],
},
},
components: {
ZenMultiselect,
},
};
</script>
Prop | Description | Type | Default |
---|---|---|---|
optionMultiline | Display the options in multiple lines in case the label exceeds the options width | Bool | false |
FAQs
A select component with multi value support
The npm package @reciprocity/multiselect receives a total of 165 weekly downloads. As such, @reciprocity/multiselect popularity was classified as not popular.
We found that @reciprocity/multiselect demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.
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.