Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@moxy/keyboard-only-outlines
Advanced tools
Disable outlines displayed when using navigation methods other than keyboard navigation (e.g.: tab).
Disable outlines displayed when using navigation methods other than keyboard navigation (e.g.: tab).
By default, some browsers, such as Firefox and Edge, set input borders on focus according to the host Operating System theme. This package does not disable borders, as it may interfere with the user's own styles. This is only apparent when users don't explicitly define a border for their inputs.
You can see it working in the demo page.
$ npm install @moxy/keyboard-only-outlines
This library is written in modern JavaScript and is published in both CommonJS and ES module transpiled variants. If you target older browsers please make sure to transpile accordingly.
import keyboardOnlyOutlines from '@moxy/keyboard-only-outlines'
const dispose = keyboardOnlyOutlines()
// dispose will be a function which deactivates this behaviour and can be called at any time
The function may also be invoked with the following options:
keyboardOnlyOutlines({ styles: ..., stylesheetTarget: ... })
Where styles
represents the styles to apply when a focus event is caused by mouse navigation, and stylesheetTarget
is the node which will receive the aforementioned style. The latter option is particularly useful when dealing with ShadowDOMs.
These options have the following default values:
const defaultOptions = {
styles: `
*:focus {
outline: none !important;
}
*::-moz-focus-inner {
border: none !important;
}`,
stylesheetTarget: document.head,
};
$ npm test
$ npm test -- --watch # during development
Released under the MIT License.
FAQs
Disable outlines displayed when using navigation methods other than keyboard navigation (e.g.: tab).
We found that @moxy/keyboard-only-outlines demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 20 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.