
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Small library that adds CSS class to html when user starts tabbing, and removes it if user clicks anywhere.
Today, :focus-visible is widely supported, so you probably want to use that instead of this library. However, I'll keep it around for posterity and poor souls that still have to support old browsers.
Small library that adds CSS class to html when user starts using keyboard to navigate, and removes it if user clicks anywhere.
This enables you to have focus outline only when user is using keyboard.
Get it from npm
npm install --save has-tabbed
and use it
import HasTabbed from 'has-tabbed';
const tabbed = new HasTabbed();
That's it. By default library is active when instance is created.
You can control it manually by using addEvents
and removeEvents
methods.
// Removes all listeners and CSS class
tabbed.removeEvents();
// Adds listeners again
tabbed.addEvents();
Then you can use has-tabbed
class in your CSS
/* This is naive example used in the demo */
* {
outline: 3px solid transparent;
outline-offset: 0.3rem;
}
.has-tabbed *:focus {
outline: 3px solid #409ad7;
}
Library accepts a single options object with the following properties:
className (default has-tabbed
)
CSS class name which will be added to the html
element.
triggerOnAllKeys (default false
)
If you want to add CSS class on all keyboard events not only when user presses tab, change this one to true
import HasTabbed from 'has-tabbed';
const tabbed = new HasTabbed({
className: 'navigating-using-keyboard',
triggerOnAllKeys: true,
});
className
property is now replaced with an options object.--tabbed
to has-tabbed
.You should use ES modules, but you can use it directly in the browser.
<!-- copy "has-tabbed.js" to your project -->
<script src="has-tabbed.js"></script>
<script>
var tabbed = new HasTabbed();
</script>
FAQs
Small library that adds CSS class to html when user starts tabbing, and removes it if user clicks anywhere.
The npm package has-tabbed receives a total of 17 weekly downloads. As such, has-tabbed popularity was classified as not popular.
We found that has-tabbed 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.