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.
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.
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.
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.