Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
org.webjars.bowergithub.polymerelements:iron-a11y-keys-behavior
Advanced tools
WebJar for iron-a11y-keys-behavior
Polymer.IronA11yKeysBehavior
provides a normalized interface for processing
keyboard commands that pertain to WAI-ARIA best practices.
The element takes care of browser differences with respect to Keyboard events
and uses an expressive syntax to filter key presses.
Use the keyBindings
prototype property to express what combination of keys
will trigger the callback. A key binding has the format
"KEY+MODIFIER:EVENT": "callback"
("KEY": "callback"
or
"KEY:EVENT": "callback"
are valid as well). Some examples:
keyBindings: {
'space': '_onKeydown', // same as 'space:keydown'
'shift+tab': '_onKeydown',
'enter:keypress': '_onKeypress',
'esc:keyup': '_onKeyup'
}
The callback will receive with an event containing the following information in event.detail
:
_onKeydown: function(event) {
console.log(event.detail.combo); // KEY+MODIFIER, e.g. "shift+tab"
console.log(event.detail.key); // KEY only, e.g. "tab"
console.log(event.detail.event); // EVENT, e.g. "keydown"
console.log(event.detail.keyboardEvent); // the original KeyboardEvent
}
Use the keyEventTarget
attribute to set up event handlers on a specific
node.
See the demo source code for an example.
FAQs
WebJar for iron-a11y-keys-behavior
We found that org.webjars.bowergithub.polymerelements:iron-a11y-keys-behavior demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.