├── .gitignore ├── .markdownlint.jsonc ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── README.md ├── eslint.config.js ├── package.json ├── skeleton.gif ├── src ├── app.d.ts ├── app.html ├── lib │ ├── MoveIcon.svelte │ ├── SortableItem.svelte │ └── index.ts └── routes │ ├── +layout.svelte │ ├── +page.svelte │ └── table │ └── +page.svelte ├── static └── favicon.png ├── svelte.config.js ├── table.gif ├── tsconfig.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/.markdownlint.jsonc -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/package.json -------------------------------------------------------------------------------- /skeleton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/skeleton.gif -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/src/app.html -------------------------------------------------------------------------------- /src/lib/MoveIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/src/lib/MoveIcon.svelte -------------------------------------------------------------------------------- /src/lib/SortableItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/src/lib/SortableItem.svelte -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/src/lib/index.ts -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/routes/table/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/src/routes/table/+page.svelte -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/static/favicon.png -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/svelte.config.js -------------------------------------------------------------------------------- /table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/table.gif -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaquimnetocel/svelte-sortable-items/HEAD/vite.config.ts --------------------------------------------------------------------------------