├── .editorconfig ├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── rollup.config.js └── src ├── Tags.svelte └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinl/svelte-tags-input/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .npmignore 4 | types/ 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinl/svelte-tags-input/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinl/svelte-tags-input/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinl/svelte-tags-input/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinl/svelte-tags-input/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinl/svelte-tags-input/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinl/svelte-tags-input/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/Tags.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinl/svelte-tags-input/HEAD/src/Tags.svelte -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustinl/svelte-tags-input/HEAD/src/index.js --------------------------------------------------------------------------------