
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Suggest search box with pill constraints.
npm install -S ttbox
bower install -S ttbox
Constructs a ttbox around a given div. Returns a façade for interacting with the box.
ttbox($('#myinput'), ttbox.trig('@', {prefix:true}, ttbox.type('person', {
suggest: function(word, cb, type) {
...
}
})));
A façade is returned by the ttbox
function and is provided in all events.
Returns the current values of the box.
Adds a new pill to the box. Item is optional.
Clear the input
Focus the input (or do nothing if cursor already there).
XXX TODO
Set placeholder text (shown when input is empty).
Declares a triggers with the nested types for that trigger. Opts can be omitted.
Options:
prefix
boolean indicating whether trigger is a prefixclassName
items belonging to this trigger (suggest/pills) will
have this class.ttbox.trig('@', {
prefix: true,
className: 'persontrig'
}, ttbox.type('person', { ... }));
Declare a type belonging to a trigger. Opts can be omitted.
Options:
desc
description for this type. displayed in suggests.suggest
to do suggestions for input function(word, callback, type)
limitOne
to limit number of pills of type to one (boolean).html
to take control of what html represents the type in suggest
list. function(word)
and return a string with the html.format
to get a chance to format (such as upper/lower-case) input
that wasn't controlled by a suggest.Callback can be provided with
{value:'value'}
Item options (for object form)
value
mandatory unless html
is provided.html
function to control html representation in suggests.desc
value descriptionclassName
additional class in suggests.Simplest form, no suggest.
ttbox.type('mytype')
Suggest with fixed values returned
ttbox.type('mytype', {
suggest: function(word, cb, type) {
cb(['my', 'list']);
}});
Fixed list with descriptions
ttbox.type('product', {
className: 'productype',
desc: 'my products',
suggest: function(word, cb, type) {
return cb([
{
value: 'PHOTO',
desc: 'All photos'
html: function() { ... }
}, {
value: 'VIDEO',
desc: 'All videos'
}
].filter(function(i) {
return i.value.indexOf(word.toUpperCase()) === 0;
}));
},
format: function(t) {
return t.toUpperCase();
}
});
Special type inserted in type lists to ttbox.trig
to make visual dividers.
var types = [
ttbox.divider('Limit result to'),
ttbox.type('product', { ... })
...
ttbox.divider('Other options'),
ttbox.type('quality', { ... })
A number of events are dispatched on the DOM element provided.
ttbox:init
after initialization.ttbox:suggesttypes
when there are multiple possible types to select from.ttbox:suggesttype
whenever one single type is highlighted (cursor move)ttbox:suggesttypeselect
when a type is selectedttbox:suggestitems
when there are multiple item choicesttbox:suggestitem
when a single item is highlighted (cursor move)ttbox:suggestitemselect
when a single item is selectedttbox:suggeststop
when suggest is hidden.ttbox:pilladd
when a pill is addedttbox:pillremove
when a pill is removedThe MIT License (MIT)
Copyright © 2015 TT Nyhetsbyrån
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
modern search box with pills for restrictions
The npm package ttbox receives a total of 58 weekly downloads. As such, ttbox popularity was classified as not popular.
We found that ttbox 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 researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.