├── .babelrc ├── .gitignore ├── .nvmrc ├── LICENSE ├── README.md ├── package.json ├── public ├── bundle.css ├── bundle.js ├── github-logo.png ├── global.css └── index.html ├── src ├── Autocomplete.svelte ├── ChevronIcon.svelte ├── Demo.svelte ├── main.js ├── utils.js └── utils.spec.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themarquisdesheric/simply-svelte-autocomplete/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12.8.1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themarquisdesheric/simply-svelte-autocomplete/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themarquisdesheric/simply-svelte-autocomplete/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themarquisdesheric/simply-svelte-autocomplete/HEAD/package.json -------------------------------------------------------------------------------- /public/bundle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themarquisdesheric/simply-svelte-autocomplete/HEAD/public/bundle.css -------------------------------------------------------------------------------- /public/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themarquisdesheric/simply-svelte-autocomplete/HEAD/public/bundle.js -------------------------------------------------------------------------------- /public/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themarquisdesheric/simply-svelte-autocomplete/HEAD/public/github-logo.png -------------------------------------------------------------------------------- /public/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themarquisdesheric/simply-svelte-autocomplete/HEAD/public/global.css -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themarquisdesheric/simply-svelte-autocomplete/HEAD/public/index.html -------------------------------------------------------------------------------- /src/Autocomplete.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themarquisdesheric/simply-svelte-autocomplete/HEAD/src/Autocomplete.svelte -------------------------------------------------------------------------------- /src/ChevronIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themarquisdesheric/simply-svelte-autocomplete/HEAD/src/ChevronIcon.svelte -------------------------------------------------------------------------------- /src/Demo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themarquisdesheric/simply-svelte-autocomplete/HEAD/src/Demo.svelte -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themarquisdesheric/simply-svelte-autocomplete/HEAD/src/main.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themarquisdesheric/simply-svelte-autocomplete/HEAD/src/utils.js -------------------------------------------------------------------------------- /src/utils.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themarquisdesheric/simply-svelte-autocomplete/HEAD/src/utils.spec.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themarquisdesheric/simply-svelte-autocomplete/HEAD/webpack.config.js --------------------------------------------------------------------------------