├── .gitignore ├── .husky └── pre-commit ├── .npmrc ├── .prettierignore ├── .vscode └── settings.json ├── README.md ├── eslint.config.js ├── jsconfig.json ├── netlify.toml ├── package.json ├── postcss.config.js ├── prettier.config.cjs ├── src ├── app.css ├── app.html ├── lib │ ├── components │ │ ├── input-box.svelte │ │ ├── key-value-button.svelte │ │ ├── spinner-input-button.svelte │ │ └── spinner-input.svelte │ └── utils │ │ └── add-wait-to-keyframes.js └── routes │ ├── +layout.js │ ├── +layout.svelte │ └── +page.svelte ├── static ├── favicon.ico └── images │ ├── android-chrome-36x36.png │ ├── android-chrome-48x48.png │ ├── android-chrome-72x72.png │ ├── android-chrome-96x96.png │ ├── apple-touch-icon-57x57.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── manifest.json │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-70x70.png │ ├── safari-pinned-tab.svg │ ├── wa-avatar.png │ ├── wa-avatar.pxm │ ├── wa-favicon.png │ ├── wa-favicon.pxm │ └── worn-dots.png ├── svelte.config.js ├── tailwind.config.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | lint-staged 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/eslint.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/jsconfig.json -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/src/app.html -------------------------------------------------------------------------------- /src/lib/components/input-box.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/src/lib/components/input-box.svelte -------------------------------------------------------------------------------- /src/lib/components/key-value-button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/src/lib/components/key-value-button.svelte -------------------------------------------------------------------------------- /src/lib/components/spinner-input-button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/src/lib/components/spinner-input-button.svelte -------------------------------------------------------------------------------- /src/lib/components/spinner-input.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/src/lib/components/spinner-input.svelte -------------------------------------------------------------------------------- /src/lib/utils/add-wait-to-keyframes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/src/lib/utils/add-wait-to-keyframes.js -------------------------------------------------------------------------------- /src/routes/+layout.js: -------------------------------------------------------------------------------- 1 | export const prerender = true 2 | -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/images/android-chrome-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/android-chrome-36x36.png -------------------------------------------------------------------------------- /static/images/android-chrome-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/android-chrome-48x48.png -------------------------------------------------------------------------------- /static/images/android-chrome-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/android-chrome-72x72.png -------------------------------------------------------------------------------- /static/images/android-chrome-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/android-chrome-96x96.png -------------------------------------------------------------------------------- /static/images/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /static/images/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /static/images/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /static/images/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /static/images/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /static/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/apple-touch-icon.png -------------------------------------------------------------------------------- /static/images/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/browserconfig.xml -------------------------------------------------------------------------------- /static/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/favicon-16x16.png -------------------------------------------------------------------------------- /static/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/favicon-32x32.png -------------------------------------------------------------------------------- /static/images/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/favicon-96x96.png -------------------------------------------------------------------------------- /static/images/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/manifest.json -------------------------------------------------------------------------------- /static/images/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/mstile-150x150.png -------------------------------------------------------------------------------- /static/images/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/mstile-310x150.png -------------------------------------------------------------------------------- /static/images/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/mstile-70x70.png -------------------------------------------------------------------------------- /static/images/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/safari-pinned-tab.svg -------------------------------------------------------------------------------- /static/images/wa-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/wa-avatar.png -------------------------------------------------------------------------------- /static/images/wa-avatar.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/wa-avatar.pxm -------------------------------------------------------------------------------- /static/images/wa-favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/wa-favicon.png -------------------------------------------------------------------------------- /static/images/wa-favicon.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/wa-favicon.pxm -------------------------------------------------------------------------------- /static/images/worn-dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/static/images/worn-dots.png -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will-stone/waitanimate/HEAD/vite.config.js --------------------------------------------------------------------------------