
Research
/Security News
Malicious npm Packages Target WhatsApp Developers with Remote Kill Switch
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
@dotburo/multi-select
Advanced tools
Lightweight & dynamic select dropdown with an input field, without dependencies
Simple multiple <select> box (dropdown) in vanilla Javascript
›_ demo
npm i -P @dotburo/multi-select
import MultiSelect from 'multi-select';
// Minimal parameters
let multiSelect = new MultiSelect('.multi-select', {
items: ['A', 'B', 'C', 'D']
});
// Listen to changes
multiSelect.on('change', e => console.log(multiSelect.getCurrent()));
items: [] # Array of strings, numbers or objects
display: 'value' # If an array of objects was passed, the property to use for display in the list
current: null # Items to select upon instantiation
parent: null # Parent element, to
maxHeight: 0 # Maximum height of the dropdown, `0` means no constraint
sort: true # Whether to sort the list
order: 'desc' # Sort order
placeHolder: 'Select items' # Place holder text for when nothing is selected
more: '(+{X} more)' # Place holder multiple selections; `{X}` will be replaced with current count;
# if `{X}` is not present, `more` will replace the whole placeholder
MultiSelect triggers one event: change
.
Event handlers can be bound with instance.on()
or instance.getElement().addEventListener()
. In browsers which
support CustomEvent
, the detail
property of the event object contains the selected or deselected item.
To get all currently selected items use instance.getCurrent()
.
Listen to events, pass in and event name (String
), a subscriber (Function
) and optionally and event target (Element
).
If the latter is omitted, events are delegated to instance.getElement()
.
Show or hide the list
Return MultiSelect's outermost element
Get all the items in the list as an array of objects
Return the currently selected items; if a key
is passed, it will be used to return only the matching value of each
item object.
Programmatically set the currently selected items
Find an item in the list by its value (String|Number
)
Unbind all events and clean up the DOM
FAQs
Lightweight & dynamic select dropdown with an input field, without dependencies
We found that @dotburo/multi-select 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
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.