solid-command-palette icon indicating copy to clipboard operation
solid-command-palette copied to clipboard

UI Library for Command Palette in SolidJS webapps

Results 13 solid-command-palette issues
Sort by recently updated
recently updated
newest added

Can you help guide me through how I can gain access to the underlying methods such as opening and closing the palette? Is it possible to export those methods?

# Example ```ts defineAction({ id: "Pages", title: "Pages", shortcut: "$mod+g", }) for(const {page, url} of pages){ defineAction({ parentActionId: "Pages", id: page, title: page, run: (() => {window.location.href = url}), })...

Implements functionality discussed in #14. - open parent actions via keyboard shortcut - hide child actions from palette unless explicitly allowed via `isolateChildren: false`

Hey folks, again, following the example from the README I ran into an issue, where a newer version of tinykey does no longer have a default export. If I am...

Hey @itaditya , I tried to updated most dependencies and also updated the Root component type. This should fix the issues mentioned in #21 and #22 . However I didn't...

Just curious if there is an option to dynamically add actions to the command palette. I was able to modify the `` actions parameter to accept a Solid signal and...