├── .github └── workflows │ ├── ci.yml │ ├── github-pages.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bun.lock ├── package.json ├── rollup.config.ts ├── src ├── Typeahead.svelte ├── Typeahead.svelte.d.ts ├── index.d.ts └── index.js ├── tests └── Typeahead.test.svelte └── tsconfig.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metonym/svelte-typeahead/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/github-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metonym/svelte-typeahead/HEAD/.github/workflows/github-pages.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metonym/svelte-typeahead/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.tgz 3 | /dist 4 | /lib 5 | /node_modules 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metonym/svelte-typeahead/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metonym/svelte-typeahead/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metonym/svelte-typeahead/HEAD/README.md -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metonym/svelte-typeahead/HEAD/bun.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metonym/svelte-typeahead/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metonym/svelte-typeahead/HEAD/rollup.config.ts -------------------------------------------------------------------------------- /src/Typeahead.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metonym/svelte-typeahead/HEAD/src/Typeahead.svelte -------------------------------------------------------------------------------- /src/Typeahead.svelte.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metonym/svelte-typeahead/HEAD/src/Typeahead.svelte.d.ts -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Typeahead.svelte"; 2 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Typeahead.svelte"; 2 | -------------------------------------------------------------------------------- /tests/Typeahead.test.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metonym/svelte-typeahead/HEAD/tests/Typeahead.test.svelte -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metonym/svelte-typeahead/HEAD/tsconfig.json --------------------------------------------------------------------------------