@lacspace/hotkeys 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
1
3
|
# @lacspace/hotkeys
|
|
2
4
|
|
|
3
|
-
**Ergonomic keyboard shortcuts for React
|
|
5
|
+
**Ergonomic keyboard shortcuts for React — combos, sequences, scopes and `⌘K` formatting.**
|
|
6
|
+
|
|
7
|
+
[](https://www.npmjs.com/package/@lacspace/hotkeys)
|
|
8
|
+
[](https://packagephobia.com/result?p=@lacspace/hotkeys)
|
|
9
|
+
[](https://bundlephobia.com/package/@lacspace/hotkeys)
|
|
10
|
+
[](https://www.npmjs.com/package/@lacspace/hotkeys)
|
|
11
|
+
[](https://github.com/lacspace/npm-packages/blob/main/LICENSE)
|
|
12
|
+
|
|
13
|
+
</div>
|
|
14
|
+
|
|
15
|
+
> `useHotkeys` for combos (`mod+k`), key sequences (`g then d`), named scopes, and pretty display formatting (`⌘K`). SSR-safe, respects form fields, zero-dependency, fully typed.
|
|
4
16
|
|
|
5
17
|
- **`mod` does the right thing** — Cmd on macOS, Ctrl everywhere else.
|
|
6
18
|
- **Sequences** — Gmail-style `g then d` chords with a rolling timeout.
|
|
@@ -162,7 +174,7 @@ No dependencies. No context providers. Combos and sequences are matched by compa
|
|
|
162
174
|
|
|
163
175
|
## Licensing
|
|
164
176
|
|
|
165
|
-
Free under the **[Lacspace Free Licence](https://lacspace.com/licenses/lacspace-free-1.0)** — permissive freedoms. Use it in personal and commercial projects at no cost; just keep the notice. See the **[Lacspace Licence Centre](https://lacspace.com/licenses)**.
|
|
177
|
+
Free under the **[Lacspace Free Licence](https://developer.lacspace.com/licenses/lacspace-free-1.0)** — permissive freedoms. Use it in personal and commercial projects at no cost; just keep the notice. See the **[Lacspace Licence Centre](https://lacspace.com/licenses)**.
|
|
166
178
|
|
|
167
179
|
<!-- LACSPACE-DEV-PLATFORM -->
|
|
168
180
|
|
|
@@ -170,14 +182,14 @@ Free under the **[Lacspace Free Licence](https://lacspace.com/licenses/lacspace-
|
|
|
170
182
|
|
|
171
183
|
## The Lacspace Developer Platform
|
|
172
184
|
|
|
173
|
-
`@lacspace/hotkeys` is part of **
|
|
185
|
+
`@lacspace/hotkeys` is part of **80+ zero-dependency, isomorphic TypeScript packages** — one standard library for the modern web. Explore the ecosystem:
|
|
174
186
|
|
|
175
187
|
- 📦 **This package, documented** — https://developer.lacspace.com/packages/hotkeys
|
|
176
|
-
- 🗂️ **All
|
|
188
|
+
- 🗂️ **All 80+ packages** — https://developer.lacspace.com/packages
|
|
177
189
|
- 🧭 **Developer handbook** — guides & runnable recipes — https://developer.lacspace.com/handbook
|
|
178
190
|
- 🧪 **Live playground** — run any package in your browser — https://developer.lacspace.com/playground
|
|
179
191
|
- 🖥️ **Finished app templates** — https://templates.lacspace.com
|
|
180
192
|
- 🚀 **Scaffold a full app** — `npm create lacspace-app@latest`
|
|
181
193
|
|
|
182
|
-
Free under the **[Lacspace Free Licence](https://lacspace.com/licenses/lacspace-free-1.0)** — a permissive, free-to-use licence.
|
|
194
|
+
Free under the **[Lacspace Free Licence](https://developer.lacspace.com/licenses/lacspace-free-1.0)** — a permissive, free-to-use licence.
|
|
183
195
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lacspace/hotkeys",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Ergonomic keyboard shortcuts for React — combos (mod+k), key sequences (g then d), scopes, and pretty display formatting (⌘K). SSR-safe, respects form fields, zero-dependency, fully typed.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|