
Security News
Open Source Maintainers Demand Ability to Block Copilot-Generated Issues and PRs
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
@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).
The npm package @moxy/keyboard-only-outlines receives a total of 326 weekly downloads. As such, @moxy/keyboard-only-outlines popularity was classified as not popular.
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.
Security News
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
Research
Security News
Malicious Koishi plugin silently exfiltrates messages with hex strings to a hardcoded QQ account, exposing secrets in chatbots across platforms.
Research
Security News
Malicious PyPI checkers validate stolen emails against TikTok and Instagram APIs, enabling targeted account attacks and dark web credential sales.