├── .eslintrc.cjs ├── .gitignore ├── .npmrc ├── .prettierrc ├── .release-it.json ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── generateDocSnippets.js ├── package.json ├── playwright.config.ts ├── postcss.config.cjs ├── snippets ├── command-palette.txt ├── paletteStore.txt └── styling.txt ├── src ├── app.css ├── app.d.ts ├── app.html ├── components │ ├── Counter.svelte │ ├── Document.svelte │ ├── Features.svelte │ ├── Hero.svelte │ ├── KeyboardShortcut.svelte │ ├── Navbar.svelte │ └── Sidebar.svelte ├── lib │ ├── components │ │ ├── CommandPalette.svelte │ │ ├── KeyboardButton.svelte │ │ ├── Portal.svelte │ │ ├── Result.svelte │ │ ├── ResultPanel.svelte │ │ └── index.js │ ├── constants │ │ └── index.js │ ├── index.ts │ ├── store │ │ └── PaletteStore.ts │ ├── types │ │ └── index.d.ts │ └── utils │ │ ├── createActionMap.ts │ │ ├── createShortcuts.ts │ │ ├── createStoreMethods.ts │ │ └── index.ts ├── routes │ ├── __layout-doc.svelte │ ├── __layout.svelte │ ├── code │ │ ├── code.json.js │ │ ├── command-palette.html │ │ ├── paletteStore.html │ │ └── styling.html │ ├── docs │ │ ├── __layout@doc.svelte │ │ ├── command-palette-api.svelte │ │ ├── define-actions.svelte │ │ ├── index.svelte │ │ ├── palette-store.svelte │ │ └── styling.svelte │ └── index.svelte ├── store │ └── themeStore.ts └── utils │ └── switchTheme.js ├── static ├── favicon.png └── tailwind.png ├── svelte.config.js ├── tailwind.config.cjs ├── tests └── test.ts └── tsconfig.json /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/.prettierrc -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/.release-it.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/README.md -------------------------------------------------------------------------------- /generateDocSnippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/generateDocSnippets.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /snippets/command-palette.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/snippets/command-palette.txt -------------------------------------------------------------------------------- /snippets/paletteStore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/snippets/paletteStore.txt -------------------------------------------------------------------------------- /snippets/styling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/snippets/styling.txt -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/app.html -------------------------------------------------------------------------------- /src/components/Counter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/components/Counter.svelte -------------------------------------------------------------------------------- /src/components/Document.svelte: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Features.svelte: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Hero.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/components/Hero.svelte -------------------------------------------------------------------------------- /src/components/KeyboardShortcut.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/components/KeyboardShortcut.svelte -------------------------------------------------------------------------------- /src/components/Navbar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/components/Navbar.svelte -------------------------------------------------------------------------------- /src/components/Sidebar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/components/Sidebar.svelte -------------------------------------------------------------------------------- /src/lib/components/CommandPalette.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/lib/components/CommandPalette.svelte -------------------------------------------------------------------------------- /src/lib/components/KeyboardButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/lib/components/KeyboardButton.svelte -------------------------------------------------------------------------------- /src/lib/components/Portal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/lib/components/Portal.svelte -------------------------------------------------------------------------------- /src/lib/components/Result.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/lib/components/Result.svelte -------------------------------------------------------------------------------- /src/lib/components/ResultPanel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/lib/components/ResultPanel.svelte -------------------------------------------------------------------------------- /src/lib/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/lib/components/index.js -------------------------------------------------------------------------------- /src/lib/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/lib/constants/index.js -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/lib/index.ts -------------------------------------------------------------------------------- /src/lib/store/PaletteStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/lib/store/PaletteStore.ts -------------------------------------------------------------------------------- /src/lib/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/lib/types/index.d.ts -------------------------------------------------------------------------------- /src/lib/utils/createActionMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/lib/utils/createActionMap.ts -------------------------------------------------------------------------------- /src/lib/utils/createShortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/lib/utils/createShortcuts.ts -------------------------------------------------------------------------------- /src/lib/utils/createStoreMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/lib/utils/createStoreMethods.ts -------------------------------------------------------------------------------- /src/lib/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/lib/utils/index.ts -------------------------------------------------------------------------------- /src/routes/__layout-doc.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/routes/__layout-doc.svelte -------------------------------------------------------------------------------- /src/routes/__layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/routes/__layout.svelte -------------------------------------------------------------------------------- /src/routes/code/code.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/routes/code/code.json.js -------------------------------------------------------------------------------- /src/routes/code/command-palette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/routes/code/command-palette.html -------------------------------------------------------------------------------- /src/routes/code/paletteStore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/routes/code/paletteStore.html -------------------------------------------------------------------------------- /src/routes/code/styling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/routes/code/styling.html -------------------------------------------------------------------------------- /src/routes/docs/__layout@doc.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/routes/docs/__layout@doc.svelte -------------------------------------------------------------------------------- /src/routes/docs/command-palette-api.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/routes/docs/command-palette-api.svelte -------------------------------------------------------------------------------- /src/routes/docs/define-actions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/routes/docs/define-actions.svelte -------------------------------------------------------------------------------- /src/routes/docs/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/routes/docs/index.svelte -------------------------------------------------------------------------------- /src/routes/docs/palette-store.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/routes/docs/palette-store.svelte -------------------------------------------------------------------------------- /src/routes/docs/styling.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/routes/docs/styling.svelte -------------------------------------------------------------------------------- /src/routes/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/routes/index.svelte -------------------------------------------------------------------------------- /src/store/themeStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/store/themeStore.ts -------------------------------------------------------------------------------- /src/utils/switchTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/src/utils/switchTheme.js -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/tailwind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/static/tailwind.png -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tests/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/tests/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/svelte-command-palette/HEAD/tsconfig.json --------------------------------------------------------------------------------