
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.
svelte-keydown
Advanced tools
Utility to listen for keyboard events.
Utility component leveraging the svelte:body API to listen for keydown events.
Use Cases
Yarn
yarn add -D svelte-keydown
NPM
npm i -D svelte-keydown
pnpm
pnpm i -D svelte-keydown
<script>
import Keydown from "svelte-keydown";
let events = [];
</script>
<Keydown
on:Enter={() => {
events = [...events, "enter"];
}}
/>
Press "enter": {events.join(", ")}
Set pauseOnInput
to prevent the utility from capturing keydown events on input events.
<script>
import Keydown from "svelte-keydown";
let evt = [];
</script>
<Keydown
pauseOnInput
on:key={(e) => {
evt = [...evt, e.detail];
}}
/>
<input placeholder="Type here..." />
{evt.join("")}
This component forward the on:keyup
and on:keydown
events.
You can use on:keydown
to prevent the default behavior for certain keys.
In the following example, pressing "Space" should not cause the browser page to scroll.
<Keydown
on:keydown={(e) => {
if (e.key === " ") e.preventDefault();
}}
on:Space={(e) => {
console.log("key", "Space");
}}
/>
In this use case, keydown events are paused if the modal is not open.
<script>
import Keydown from "svelte-keydown";
let showModal = true;
</script>
<Keydown paused={!showModal} on:Escape={() => (showModal = false)} />
<button on:click={() => (showModal = !showModal)}>Toggled? {showModal}</button>
on:combo
Use the combo
dispatched event to listen for a combination of keys.
<script>
import Keydown from "svelte-keydown";
let combo = [];
</script>
<Keydown on:combo={(e) => (combo = [...combo, e.detail])} />
{combo.join(", ")}
separator
Use the separator
property to customize the separating key between multiple keys.
<script>
import Keydown from "svelte-keydown";
let combo = [];
</script>
<Keydown separator="+" on:combo={(e) => (combo = [...combo, e.detail])} />
{combo.join(", ")}
Prop | Type | Default value |
---|---|---|
paused | boolean | false |
pauseOnInput | boolean | false |
separator | string | - |
on:keyup
on:keydown
on:[Key]
Example:
<Keydown on:Enter />
<Keydown on:Escape />
<Keydown on:Space />
on:key
Alternative API to on:[Key]
.
Example:
<script>
import Keydown from "svelte-keydown";
let keys = [];
</script>
<Keydown on:key={({ detail }) => (keys = [...keys, detail])} />
<pre>{JSON.stringify(keys, null, 2)}</pre>
on:combo
Triggered when a sequence of keys are pressed and cleared when a keyup event is fired.
Examples:
<script>
import Keydown from "svelte-keydown";
let combos = [];
</script>
<Keydown on:combo={({ detail }) => (combos = [...combos, detail])} />
<pre>{JSON.stringify(combos, null, 2)}</pre>
Svelte version 3.31 or greater is required to use this component with TypeScript.
TypeScript definitions are located in the types folder.
0.7.0 - 2024-03-14
Breaking Changes
.svelte
codeFixes
exports
field to package.json
FAQs
Utility to listen for keyboard events
The npm package svelte-keydown receives a total of 314 weekly downloads. As such, svelte-keydown popularity was classified as not popular.
We found that svelte-keydown 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
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.