├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .npmrc ├── .prettierrc.yaml ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── jsconfig.json ├── package.json ├── src ├── app.d.ts ├── app.html ├── demo-lib │ └── icons │ │ ├── Icon.svelte │ │ └── IconPaths.js ├── lib │ ├── Alert.svelte │ ├── Steps.svelte │ ├── check.svelte │ └── index.js └── routes │ └── +page.svelte ├── static ├── demo.png └── favicon.png ├── svelte.config.js ├── vite.config.js └── vite.config.ts /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | trailingComma: es5 2 | tabWidth: 2 3 | semi: false 4 | singleQuote: true -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/package.json -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/src/app.html -------------------------------------------------------------------------------- /src/demo-lib/icons/Icon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/src/demo-lib/icons/Icon.svelte -------------------------------------------------------------------------------- /src/demo-lib/icons/IconPaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/src/demo-lib/icons/IconPaths.js -------------------------------------------------------------------------------- /src/lib/Alert.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/src/lib/Alert.svelte -------------------------------------------------------------------------------- /src/lib/Steps.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/src/lib/Steps.svelte -------------------------------------------------------------------------------- /src/lib/check.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/src/lib/check.svelte -------------------------------------------------------------------------------- /src/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/src/lib/index.js -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /static/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/static/demo.png -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/static/favicon.png -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/svelte.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/vite.config.js -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaozi/svelte-steps/HEAD/vite.config.ts --------------------------------------------------------------------------------