Feature: add extension api (hide and paste) (#210)

* feat: add paste API to extension API

* feat(desktop): enhance clipboard and hotkey utilities

- Add `hideAndPaste` utility function to simplify window hiding and clipboard pasting
- Adjust key press and sleep timings for more reliable input simulation
- Implement window focus listener in clipboard extension
- Bind input element reference for automatic focus management

* feat(permissions): enhance clipboard permission handling

- Update clipboard permission schema to include paste permission
- Modify clipboard API to check for paste permission before executing
- Refactor permission map and schema for more flexible permission management

* feat(desktop): refactor extension command search and rendering

- Add `svelte-inspect-value` for debugging
- Implement new `ExtCmds` component to replace `ExtCmdsGroup`
- Enhance extension command search with separate Fuse.js instances for installed and dev extensions
- Simplify extension command filtering and rendering logic
- Add derived stores for extension commands with improved type safety

* feat(desktop): improve extension command search filtering

* bump @kksh/api version

* feat(permissions): add clipboard paste permission description
This commit is contained in:
Huakun 2025-02-26 04:47:43 -05:00 committed by GitHub
parent a92c266d32
commit 97cd20906f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
50 changed files with 427 additions and 245 deletions

View file

@ -1,5 +1,12 @@
# template-ext-vue
## 0.0.8
### Patch Changes
- Updated dependencies
- @kksh/api@0.1.5
## 0.0.7
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "template-ext-vue",
"license": "MIT",
"version": "0.0.7",
"version": "0.0.8",
"type": "module",
"scripts": {
"dev": "vite",