diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 00000000..ff2677ef --- /dev/null +++ b/.prettierrc @@ -0,0 +1,6 @@ +{ + "useTabs": true, + "singleQuote": true, + "trailingComma": "none", + "printWidth": 100 +} diff --git a/CHANGELOG.md b/CHANGELOG.md index c1196717..3b4c3b9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,11 +12,11 @@ All notable changes to this project will be documented in this file. See [standa ### BREAKING CHANGE -* change icon names without SOLID/OUTLINE +- change icon names without SOLID/OUTLINE ### Features -* add variation prop ([efc109b](https://github.com/shinokada/svelte-heros/commit/efc109b372c554ea4dd95d5a7f7dcec524158435)) +- add variation prop ([efc109b](https://github.com/shinokada/svelte-heros/commit/efc109b372c554ea4dd95d5a7f7dcec524158435)) ### [2.1.4](https://github.com/shinokada/svelte-heros/compare/v2.1.3...v2.1.4) (2022-06-01) @@ -28,10 +28,9 @@ All notable changes to this project will be documented in this file. See [standa ## [2.1.0](https://github.com/shinokada/svelte-heros/compare/v2.0.3...v2.1.0) (2022-05-26) - ### Features -* add restProps and aria-label ([6c989db](https://github.com/shinokada/svelte-heros/commit/6c989db5ecc6d01c9b341afe0f60cb324356fb94)) +- add restProps and aria-label ([6c989db](https://github.com/shinokada/svelte-heros/commit/6c989db5ecc6d01c9b341afe0f60cb324356fb94)) ### [2.0.3](https://github.com/shinokada/svelte-heros/compare/v2.0.2...v2.0.3) (2022-05-18) @@ -39,37 +38,32 @@ All notable changes to this project will be documented in this file. See [standa ### [2.0.1](https://github.com/shinokada/svelte-heros/compare/v2.0.0...v2.0.1) (2022-05-13) - ### Bug Fixes -* remove stroke on solid icons ([9d0bb3f](https://github.com/shinokada/svelte-heros/commit/9d0bb3f9c275ad6f3ba415339222f2f01e488e87)) +- remove stroke on solid icons ([9d0bb3f](https://github.com/shinokada/svelte-heros/commit/9d0bb3f9c275ad6f3ba415339222f2f01e488e87)) ## [2.0.0](https://github.com/shinokada/svelte-heros/compare/v1.3.0...v2.0.0) (2022-04-26) - ### Bug Fixes -* update icon names ([4d5692a](https://github.com/shinokada/svelte-heros/commit/4d5692aa7336c7a7212e8b2c684a6f8485e5f985)) +- update icon names ([4d5692a](https://github.com/shinokada/svelte-heros/commit/4d5692aa7336c7a7212e8b2c684a6f8485e5f985)) ## [1.3.0](https://github.com/shinokada/svelte-heroicons/compare/v1.2.1...v1.3.0) (2022-04-26) - ### Features -* remove Icon from icon names ([5478f08](https://github.com/shinokada/svelte-heroicons/commit/5478f08c824722570bf4881d6ba8d15345258dc7)) +- remove Icon from icon names ([5478f08](https://github.com/shinokada/svelte-heroicons/commit/5478f08c824722570bf4881d6ba8d15345258dc7)) ### [1.2.1](https://github.com/shinokada/svelte-heroicons/compare/v1.2.0...v1.2.1) (2022-04-26) - ### Bug Fixes -* moved class={90360props.class} to the end of ([4156617](https://github.com/shinokada/svelte-heroicons/commit/4156617ce204cccfbac85af57f2155bf178a1b90)) +- moved class={90360props.class} to the end of ([4156617](https://github.com/shinokada/svelte-heroicons/commit/4156617ce204cccfbac85af57f2155bf178a1b90)) ## [1.2.0](https://github.com/shinokada/svelte-heroicons/compare/v1.1.4...v1.2.0) (2022-04-25) - ### Features -* update icons ([2e3265b](https://github.com/shinokada/svelte-heroicons/commit/2e3265b36cc3fe82c052aa8316ca171a06f0f42a)) +- update icons ([2e3265b](https://github.com/shinokada/svelte-heroicons/commit/2e3265b36cc3fe82c052aa8316ca171a06f0f42a)) ### [1.1.4](https://github.com/shinokada/svelte-heroicons/compare/v1.1.0...v1.1.4) (2022-04-25) diff --git a/README.md b/README.md index 15605d42..79ab24ac 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,6 @@ Hero Icons for Svelte. You can import outline and solid icons without name conflict. Svlete-Heros support major CSS framework. You can add additional CSS using the `class` props. -

@@ -30,9 +29,7 @@ npm i svelte-heros@latest ## Usage ```js - + ``` ## Props @@ -67,8 +64,7 @@ Use the `size` prop to change the size of icons. Use the `color` prop to change colors with HEX color code. ```html - - + ``` ## CSS framework support @@ -95,14 +91,13 @@ Bootstrap example: ``` - ## aria-label -All icons have aria-label. For example `AcademicCap` has `aria-label="academic cap"`. -Use `ariaLabel` prop to modify the `aria-label` value. +All icons have aria-label. For example `AcademicCap` has `aria-label="academic cap"`. +Use `ariaLabel` prop to modify the `aria-label` value. ```html - + ``` ## Passing down other attributes @@ -110,7 +105,7 @@ Use `ariaLabel` prop to modify the `aria-label` value. You can pass other attibutes as well. ```html - + ``` ## Import all @@ -119,7 +114,7 @@ Use `import * as Icon from 'svelte-heros`. ```html @@ -133,4 +128,4 @@ Use `import * as Icon from 'svelte-heros`. ## Other icons -- [Svelte-Icon-Sets](https://svelte-svg-icons.vercel.app/) \ No newline at end of file +- [Svelte-Icon-Sets](https://svelte-svg-icons.vercel.app/) diff --git a/package.json b/package.json index d06b260e..99d4a227 100644 --- a/package.json +++ b/package.json @@ -1,48 +1,51 @@ { - "name": "svelte-heros", - "version": "2.2.3", - "description": "Svelte + TailwindCSS + HeroIcons components", - "author": { - "name": "Shinichi Okada", - "email": "connect@codewithshin.com", - "url": "https://blog.codewithshin.com" - }, - "bugs": "https://github.com/shinokada/svelte-heros/issues", - "homepage": "https://github.com/shinokada/svelte-heros", - "license": "MIT", - "scripts": { - "dev": "svelte-kit dev", - "build": "svelte-kit build", - "package": "svelte-kit package", - "preview": "svelte-kit preview", - "test": "vitest" - }, - "devDependencies": { - "@sveltejs/adapter-auto": "next", - "@sveltejs/kit": "next", - "@testing-library/jest-dom": "^5.16.4", - "@testing-library/svelte": "^3.1.3", - "autoprefixer": "^10.4.2", - "postcss": "^8.4.5", - "postcss-load-config": "^3.1.1", - "svelte": "^3.44.0", - "svelte-preprocess": "^4.10.1", - "svelte2tsx": "^0.5.3", - "tailwindcss": "^3.0.12", - "typescript": "^4.7.3", - "vitest": "^0.14.1" - }, - "type": "module", - "main": "index.js", - "svelte": "index.js", - "keywords": [ - "svelte", - "sveltekit", - "tailwindcss", - "icons" - ], - "repository": { - "type": "git", - "url": "https://github.com/shinokada/svelte-heros" - } + "name": "svelte-heros", + "version": "2.2.3", + "description": "Svelte + TailwindCSS + HeroIcons components", + "author": { + "name": "Shinichi Okada", + "email": "connect@codewithshin.com", + "url": "https://blog.codewithshin.com" + }, + "bugs": "https://github.com/shinokada/svelte-heros/issues", + "homepage": "https://github.com/shinokada/svelte-heros", + "license": "MIT", + "scripts": { + "dev": "svelte-kit dev", + "build": "svelte-kit build", + "package": "svelte-kit package", + "preview": "svelte-kit preview", + "test": "vitest", + "format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. ." + }, + "devDependencies": { + "@sveltejs/adapter-auto": "next", + "@sveltejs/kit": "next", + "@testing-library/jest-dom": "^5.16.4", + "@testing-library/svelte": "^3.1.3", + "autoprefixer": "^10.4.2", + "postcss": "^8.4.5", + "postcss-load-config": "^3.1.1", + "prettier": "2.7.1", + "prettier-plugin-svelte": "^2.7.0", + "svelte": "^3.44.0", + "svelte-preprocess": "^4.10.1", + "svelte2tsx": "^0.5.3", + "tailwindcss": "^3.0.12", + "typescript": "^4.7.3", + "vitest": "^0.14.1" + }, + "type": "module", + "main": "index.js", + "svelte": "index.js", + "keywords": [ + "svelte", + "sveltekit", + "tailwindcss", + "icons" + ], + "repository": { + "type": "git", + "url": "https://github.com/shinokada/svelte-heros" + } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c8776392..6d9592ea 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,6 +8,8 @@ specifiers: autoprefixer: ^10.4.2 postcss: ^8.4.5 postcss-load-config: ^3.1.1 + prettier: 2.7.1 + prettier-plugin-svelte: ^2.7.0 svelte: ^3.44.0 svelte-preprocess: ^4.10.1 svelte2tsx: ^0.5.3 @@ -23,6 +25,8 @@ devDependencies: autoprefixer: 10.4.7_postcss@8.4.14 postcss: 8.4.14 postcss-load-config: 3.1.4_postcss@8.4.14 + prettier: 2.7.1 + prettier-plugin-svelte: 2.7.0_nakrehnrzdf7fdea5k3a4dfy4m svelte: 3.48.0 svelte-preprocess: 4.10.7_kyjjbybckohdgmfoyqhtjxxdom svelte2tsx: 0.5.10_dg7s4kx4gpzom5ifrkhkr632g4 @@ -31,22 +35,30 @@ devDependencies: vitest: 0.14.1 packages: - /@babel/code-frame/7.16.7: - resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg== + } + engines: { node: '>=6.9.0' } dependencies: '@babel/highlight': 7.17.12 dev: true /@babel/helper-validator-identifier/7.16.7: - resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== + } + engines: { node: '>=6.9.0' } dev: true /@babel/highlight/7.17.12: - resolution: {integrity: sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg== + } + engines: { node: '>=6.9.0' } dependencies: '@babel/helper-validator-identifier': 7.16.7 chalk: 2.4.2 @@ -54,18 +66,27 @@ packages: dev: true /@babel/runtime/7.18.3: - resolution: {integrity: sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug== + } + engines: { node: '>=6.9.0' } dependencies: regenerator-runtime: 0.13.9 dev: true /@iarna/toml/2.2.5: - resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==} + resolution: + { + integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg== + } dev: true /@mapbox/node-pre-gyp/1.0.9: - resolution: {integrity: sha512-aDF3S3rK9Q2gey/WAttUlISduDItz5BU3306M9Eyv6/oS40aMprnopshtlKTykxRNIBEZuRMaZAnbrQ4QtKGyw==} + resolution: + { + integrity: sha512-aDF3S3rK9Q2gey/WAttUlISduDItz5BU3306M9Eyv6/oS40aMprnopshtlKTykxRNIBEZuRMaZAnbrQ4QtKGyw== + } hasBin: true dependencies: detect-libc: 2.0.1 @@ -83,36 +104,51 @@ packages: dev: true /@nodelib/fs.scandir/2.1.5: - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + } + engines: { node: '>= 8' } dependencies: '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 dev: true /@nodelib/fs.stat/2.0.5: - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + } + engines: { node: '>= 8' } dev: true /@nodelib/fs.walk/1.2.8: - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + } + engines: { node: '>= 8' } dependencies: '@nodelib/fs.scandir': 2.1.5 fastq: 1.13.0 dev: true /@rollup/pluginutils/4.2.1: - resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} - engines: {node: '>= 8.0.0'} + resolution: + { + integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ== + } + engines: { node: '>= 8.0.0' } dependencies: estree-walker: 2.0.2 picomatch: 2.3.1 dev: true /@sveltejs/adapter-auto/1.0.0-next.50: - resolution: {integrity: sha512-5OkBxw+0Wmq7+Cr0DcOEOTHyOm4VmiWTUsKwMrSc47zcjbXB8n4UvEC0XUtJ5ZSBJRZz7hmVubqH1zm1SANtdw==} + resolution: + { + integrity: sha512-5OkBxw+0Wmq7+Cr0DcOEOTHyOm4VmiWTUsKwMrSc47zcjbXB8n4UvEC0XUtJ5ZSBJRZz7hmVubqH1zm1SANtdw== + } dependencies: '@sveltejs/adapter-cloudflare': 1.0.0-next.23 '@sveltejs/adapter-netlify': 1.0.0-next.64 @@ -123,14 +159,20 @@ packages: dev: true /@sveltejs/adapter-cloudflare/1.0.0-next.23: - resolution: {integrity: sha512-WaDE25Ib3Q9kM1BBxvGxr57vfExg0Q1Wu2H3dSFV4Apw18UHKS89P/U6wd4u4zAzAw+Mcm8gduX/rRs5z0YMwA==} + resolution: + { + integrity: sha512-WaDE25Ib3Q9kM1BBxvGxr57vfExg0Q1Wu2H3dSFV4Apw18UHKS89P/U6wd4u4zAzAw+Mcm8gduX/rRs5z0YMwA== + } dependencies: esbuild: 0.14.43 worktop: 0.8.0-next.14 dev: true /@sveltejs/adapter-netlify/1.0.0-next.64: - resolution: {integrity: sha512-n2oBAIdv1s4magogcCYbequDmPgOKviNfy40JJ5ZavansboYeaygFri9HcOwcHqrTOmEo3ZDIBoc1UTpbmzMYg==} + resolution: + { + integrity: sha512-n2oBAIdv1s4magogcCYbequDmPgOKviNfy40JJ5ZavansboYeaygFri9HcOwcHqrTOmEo3ZDIBoc1UTpbmzMYg== + } dependencies: '@iarna/toml': 2.2.5 esbuild: 0.14.43 @@ -139,7 +181,10 @@ packages: dev: true /@sveltejs/adapter-vercel/1.0.0-next.58: - resolution: {integrity: sha512-Gw76HhwHh2sWP2RN8jwm4jMmO5rnvvWsPsnAhFRCYlIs6gwKf/mNE/CfTQ1nkqKEm15YEYHjKXRVRjI8BniwxA==} + resolution: + { + integrity: sha512-Gw76HhwHh2sWP2RN8jwm4jMmO5rnvvWsPsnAhFRCYlIs6gwKf/mNE/CfTQ1nkqKEm15YEYHjKXRVRjI8BniwxA== + } dependencies: '@vercel/nft': 0.19.1 esbuild: 0.14.43 @@ -149,8 +194,11 @@ packages: dev: true /@sveltejs/kit/1.0.0-next.350_svelte@3.48.0: - resolution: {integrity: sha512-qkZNjp7yIj6t91+wMhmMtGJH0Lb89OaKdVXUDy92CS5/4OHRTKcQPdfOKs4no/upkS3RiFb+rEpOkYqTMcPUXg==} - engines: {node: '>=16.7'} + resolution: + { + integrity: sha512-qkZNjp7yIj6t91+wMhmMtGJH0Lb89OaKdVXUDy92CS5/4OHRTKcQPdfOKs4no/upkS3RiFb+rEpOkYqTMcPUXg== + } + engines: { node: '>=16.7' } hasBin: true peerDependencies: svelte: ^3.44.0 @@ -169,8 +217,11 @@ packages: dev: true /@sveltejs/vite-plugin-svelte/1.0.0-next.49_svelte@3.48.0+vite@2.9.10: - resolution: {integrity: sha512-AKh0Ka8EDgidnxWUs8Hh2iZLZovkETkefO99XxZ4sW4WGJ7VFeBx5kH/NIIGlaNHLcrIvK3CK0HkZwC3Cici0A==} - engines: {node: ^14.13.1 || >= 16} + resolution: + { + integrity: sha512-AKh0Ka8EDgidnxWUs8Hh2iZLZovkETkefO99XxZ4sW4WGJ7VFeBx5kH/NIIGlaNHLcrIvK3CK0HkZwC3Cici0A== + } + engines: { node: ^14.13.1 || >= 16 } peerDependencies: diff-match-patch: ^1.0.5 svelte: ^3.44.0 @@ -192,8 +243,11 @@ packages: dev: true /@testing-library/dom/8.13.0: - resolution: {integrity: sha512-9VHgfIatKNXQNaZTtLnalIy0jNZzY35a4S3oi08YAt9Hv1VsfZ/DfA45lM8D/UhtHBGJ4/lGwp0PZkVndRkoOQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-9VHgfIatKNXQNaZTtLnalIy0jNZzY35a4S3oi08YAt9Hv1VsfZ/DfA45lM8D/UhtHBGJ4/lGwp0PZkVndRkoOQ== + } + engines: { node: '>=12' } dependencies: '@babel/code-frame': 7.16.7 '@babel/runtime': 7.18.3 @@ -206,8 +260,11 @@ packages: dev: true /@testing-library/jest-dom/5.16.4: - resolution: {integrity: sha512-Gy+IoFutbMQcky0k+bqqumXZ1cTGswLsFqmNLzNdSKkU9KGV2u9oXhukCbbJ9/LRPKiqwxEE8VpV/+YZlfkPUA==} - engines: {node: '>=8', npm: '>=6', yarn: '>=1'} + resolution: + { + integrity: sha512-Gy+IoFutbMQcky0k+bqqumXZ1cTGswLsFqmNLzNdSKkU9KGV2u9oXhukCbbJ9/LRPKiqwxEE8VpV/+YZlfkPUA== + } + engines: { node: '>=8', npm: '>=6', yarn: '>=1' } dependencies: '@babel/runtime': 7.18.3 '@types/testing-library__jest-dom': 5.14.3 @@ -221,8 +278,11 @@ packages: dev: true /@testing-library/svelte/3.1.3_svelte@3.48.0: - resolution: {integrity: sha512-pyed3yMnTu7wG9Z4XKoIxdrx52hSEFDC8qUaiSsiSh8tBVj3ZjqEKnV2Nfc0IF2llEkT0B7QOXnOVTLJ3O5RCw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-pyed3yMnTu7wG9Z4XKoIxdrx52hSEFDC8qUaiSsiSh8tBVj3ZjqEKnV2Nfc0IF2llEkT0B7QOXnOVTLJ3O5RCw== + } + engines: { node: '>= 10' } peerDependencies: svelte: 3.x dependencies: @@ -231,48 +291,75 @@ packages: dev: true /@types/aria-query/4.2.2: - resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} + resolution: + { + integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig== + } dev: true /@types/chai-subset/1.3.3: - resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==} + resolution: + { + integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw== + } dependencies: '@types/chai': 4.3.1 dev: true /@types/chai/4.3.1: - resolution: {integrity: sha512-/zPMqDkzSZ8t3VtxOa4KPq7uzzW978M9Tvh+j7GHKuo6k6GTLxPJ4J5gE5cjfJ26pnXst0N5Hax8Sr0T2Mi9zQ==} + resolution: + { + integrity: sha512-/zPMqDkzSZ8t3VtxOa4KPq7uzzW978M9Tvh+j7GHKuo6k6GTLxPJ4J5gE5cjfJ26pnXst0N5Hax8Sr0T2Mi9zQ== + } dev: true /@types/jest/28.1.1: - resolution: {integrity: sha512-C2p7yqleUKtCkVjlOur9BWVA4HgUQmEj/HWCt5WzZ5mLXrWnyIfl0wGuArc+kBXsy0ZZfLp+7dywB4HtSVYGVA==} + resolution: + { + integrity: sha512-C2p7yqleUKtCkVjlOur9BWVA4HgUQmEj/HWCt5WzZ5mLXrWnyIfl0wGuArc+kBXsy0ZZfLp+7dywB4HtSVYGVA== + } dependencies: jest-matcher-utils: 27.5.1 pretty-format: 27.5.1 dev: true /@types/node/17.0.41: - resolution: {integrity: sha512-xA6drNNeqb5YyV5fO3OAEsnXLfO7uF0whiOfPTz5AeDo8KeZFmODKnvwPymMNO8qE/an8pVY/O50tig2SQCrGw==} + resolution: + { + integrity: sha512-xA6drNNeqb5YyV5fO3OAEsnXLfO7uF0whiOfPTz5AeDo8KeZFmODKnvwPymMNO8qE/an8pVY/O50tig2SQCrGw== + } dev: true /@types/pug/2.0.6: - resolution: {integrity: sha512-SnHmG9wN1UVmagJOnyo/qkk0Z7gejYxOYYmaAwr5u2yFYfsupN3sg10kyzN8Hep/2zbHxCnsumxOoRIRMBwKCg==} + resolution: + { + integrity: sha512-SnHmG9wN1UVmagJOnyo/qkk0Z7gejYxOYYmaAwr5u2yFYfsupN3sg10kyzN8Hep/2zbHxCnsumxOoRIRMBwKCg== + } dev: true /@types/sass/1.43.1: - resolution: {integrity: sha512-BPdoIt1lfJ6B7rw35ncdwBZrAssjcwzI5LByIrYs+tpXlj/CAkuVdRsgZDdP4lq5EjyWzwxZCqAoFyHKFwp32g==} + resolution: + { + integrity: sha512-BPdoIt1lfJ6B7rw35ncdwBZrAssjcwzI5LByIrYs+tpXlj/CAkuVdRsgZDdP4lq5EjyWzwxZCqAoFyHKFwp32g== + } dependencies: '@types/node': 17.0.41 dev: true /@types/testing-library__jest-dom/5.14.3: - resolution: {integrity: sha512-oKZe+Mf4ioWlMuzVBaXQ9WDnEm1+umLx0InILg+yvZVBBDmzV5KfZyLrCvadtWcx8+916jLmHafcmqqffl+iIw==} + resolution: + { + integrity: sha512-oKZe+Mf4ioWlMuzVBaXQ9WDnEm1+umLx0InILg+yvZVBBDmzV5KfZyLrCvadtWcx8+916jLmHafcmqqffl+iIw== + } dependencies: '@types/jest': 28.1.1 dev: true /@vercel/nft/0.19.1: - resolution: {integrity: sha512-klR5oN7S3WJsZz0r6Xsq7o8YlFEyU3/00VmlpZzIPVFzKfbcEjXo/sVR5lQBUqNKuOzhcbxaFtzW9aOyHjmPYA==} + resolution: + { + integrity: sha512-klR5oN7S3WJsZz0r6Xsq7o8YlFEyU3/00VmlpZzIPVFzKfbcEjXo/sVR5lQBUqNKuOzhcbxaFtzW9aOyHjmPYA== + } hasBin: true dependencies: '@mapbox/node-pre-gyp': 1.0.9 @@ -292,11 +379,17 @@ packages: dev: true /abbrev/1.1.1: - resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} + resolution: + { + integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + } dev: true /acorn-node/1.8.2: - resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==} + resolution: + { + integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== + } dependencies: acorn: 7.4.1 acorn-walk: 7.2.0 @@ -304,25 +397,37 @@ packages: dev: true /acorn-walk/7.2.0: - resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== + } + engines: { node: '>=0.4.0' } dev: true /acorn/7.4.1: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + } + engines: { node: '>=0.4.0' } hasBin: true dev: true /acorn/8.7.1: - resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A== + } + engines: { node: '>=0.4.0' } hasBin: true dev: true /agent-base/6.0.2: - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} - engines: {node: '>= 6.0.0'} + resolution: + { + integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== + } + engines: { node: '>= 6.0.0' } dependencies: debug: 4.3.4 transitivePeerDependencies: @@ -330,87 +435,132 @@ packages: dev: true /ansi-regex/2.1.1: - resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA== + } + engines: { node: '>=0.10.0' } dev: true /ansi-regex/5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + } + engines: { node: '>=8' } dev: true /ansi-styles/3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + } + engines: { node: '>=4' } dependencies: color-convert: 1.9.3 dev: true /ansi-styles/4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + } + engines: { node: '>=8' } dependencies: color-convert: 2.0.1 dev: true /ansi-styles/5.2.0: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== + } + engines: { node: '>=10' } dev: true /anymatch/3.1.2: - resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + } + engines: { node: '>= 8' } dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 dev: true /aproba/1.2.0: - resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==} + resolution: + { + integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== + } dev: true /aproba/2.0.0: - resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} + resolution: + { + integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== + } dev: true /are-we-there-yet/1.1.7: - resolution: {integrity: sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==} + resolution: + { + integrity: sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g== + } dependencies: delegates: 1.0.0 readable-stream: 2.3.7 dev: true /are-we-there-yet/2.0.0: - resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw== + } + engines: { node: '>=10' } dependencies: delegates: 1.0.0 readable-stream: 3.6.0 dev: true /arg/5.0.2: - resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} + resolution: + { + integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== + } dev: true /aria-query/5.0.0: - resolution: {integrity: sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg==} - engines: {node: '>=6.0'} + resolution: + { + integrity: sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg== + } + engines: { node: '>=6.0' } dev: true /assertion-error/1.1.0: - resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} + resolution: + { + integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== + } dev: true /atob/2.1.2: - resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} - engines: {node: '>= 4.5.0'} + resolution: + { + integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== + } + engines: { node: '>= 4.5.0' } hasBin: true dev: true /autoprefixer/10.4.7_postcss@8.4.14: - resolution: {integrity: sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA== + } + engines: { node: ^10 || ^12 || >=14 } hasBin: true peerDependencies: postcss: ^8.1.0 @@ -425,37 +575,55 @@ packages: dev: true /balanced-match/1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + resolution: + { + integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + } dev: true /binary-extensions/2.2.0: - resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + } + engines: { node: '>=8' } dev: true /bindings/1.5.0: - resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} + resolution: + { + integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + } dependencies: file-uri-to-path: 1.0.0 dev: true /brace-expansion/1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + resolution: + { + integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + } dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 dev: true /braces/3.0.2: - resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + } + engines: { node: '>=8' } dependencies: fill-range: 7.0.1 dev: true /browserslist/4.20.4: - resolution: {integrity: sha512-ok1d+1WpnU24XYN7oC3QWgTyMhY/avPJ/r9T00xxvUOIparA/gc+UPUMaod3i+G6s+nI2nUb9xZ5k794uIwShw==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + resolution: + { + integrity: sha512-ok1d+1WpnU24XYN7oC3QWgTyMhY/avPJ/r9T00xxvUOIparA/gc+UPUMaod3i+G6s+nI2nUb9xZ5k794uIwShw== + } + engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } hasBin: true dependencies: caniuse-lite: 1.0.30001352 @@ -466,21 +634,33 @@ packages: dev: true /buffer-crc32/0.2.13: - resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + resolution: + { + integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== + } dev: true /camelcase-css/2.0.1: - resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== + } + engines: { node: '>= 6' } dev: true /caniuse-lite/1.0.30001352: - resolution: {integrity: sha512-GUgH8w6YergqPQDGWhJGt8GDRnY0L/iJVQcU3eJ46GYf52R8tk0Wxp0PymuFVZboJYXGiCqwozAYZNRjVj6IcA==} + resolution: + { + integrity: sha512-GUgH8w6YergqPQDGWhJGt8GDRnY0L/iJVQcU3eJ46GYf52R8tk0Wxp0PymuFVZboJYXGiCqwozAYZNRjVj6IcA== + } dev: true /chai/4.3.6: - resolution: {integrity: sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q== + } + engines: { node: '>=4' } dependencies: assertion-error: 1.1.0 check-error: 1.0.2 @@ -492,8 +672,11 @@ packages: dev: true /chalk/2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + } + engines: { node: '>=4' } dependencies: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 @@ -501,28 +684,40 @@ packages: dev: true /chalk/3.0.0: - resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== + } + engines: { node: '>=8' } dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 dev: true /chalk/4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + } + engines: { node: '>=10' } dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 dev: true /check-error/1.0.2: - resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==} + resolution: + { + integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA== + } dev: true /chokidar/3.5.3: - resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} - engines: {node: '>= 8.10.0'} + resolution: + { + integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + } + engines: { node: '>= 8.10.0' } dependencies: anymatch: 3.1.2 braces: 3.0.2 @@ -536,63 +731,99 @@ packages: dev: true /chownr/1.1.4: - resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} + resolution: + { + integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== + } dev: true /chownr/2.0.0: - resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== + } + engines: { node: '>=10' } dev: true /code-point-at/1.1.0: - resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA== + } + engines: { node: '>=0.10.0' } dev: true /color-convert/1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + resolution: + { + integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + } dependencies: color-name: 1.1.3 dev: true /color-convert/2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} + resolution: + { + integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + } + engines: { node: '>=7.0.0' } dependencies: color-name: 1.1.4 dev: true /color-name/1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + resolution: + { + integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + } dev: true /color-name/1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + resolution: + { + integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + } dev: true /color-support/1.1.3: - resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} + resolution: + { + integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== + } hasBin: true dev: true /concat-map/0.0.1: - resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} + resolution: { integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= } dev: true /console-control-strings/1.1.0: - resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} + resolution: + { + integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== + } dev: true /core-util-is/1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + resolution: + { + integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + } dev: true /css.escape/1.5.1: - resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} + resolution: + { + integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg== + } dev: true /css/3.0.0: - resolution: {integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==} + resolution: + { + integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ== + } dependencies: inherits: 2.0.4 source-map: 0.6.1 @@ -600,13 +831,19 @@ packages: dev: true /cssesc/3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + } + engines: { node: '>=4' } hasBin: true dev: true /debug/3.2.7: - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + resolution: + { + integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + } peerDependencies: supports-color: '*' peerDependenciesMeta: @@ -617,8 +854,11 @@ packages: dev: true /debug/4.3.4: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} + resolution: + { + integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + } + engines: { node: '>=6.0' } peerDependencies: supports-color: '*' peerDependenciesMeta: @@ -629,58 +869,91 @@ packages: dev: true /decode-uri-component/0.2.0: - resolution: {integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og== + } + engines: { node: '>=0.10' } dev: true /dedent-js/1.0.1: - resolution: {integrity: sha512-OUepMozQULMLUmhxS95Vudo0jb0UchLimi3+pQ2plj61Fcy8axbP9hbiD4Sz6DPqn6XG3kfmziVfQ1rSys5AJQ==} + resolution: + { + integrity: sha512-OUepMozQULMLUmhxS95Vudo0jb0UchLimi3+pQ2plj61Fcy8axbP9hbiD4Sz6DPqn6XG3kfmziVfQ1rSys5AJQ== + } dev: true /deep-eql/3.0.1: - resolution: {integrity: sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==} - engines: {node: '>=0.12'} + resolution: + { + integrity: sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw== + } + engines: { node: '>=0.12' } dependencies: type-detect: 4.0.8 dev: true /deep-extend/0.6.0: - resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== + } + engines: { node: '>=4.0.0' } dev: true /deepmerge/4.2.2: - resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== + } + engines: { node: '>=0.10.0' } dev: true /defined/1.0.0: - resolution: {integrity: sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ==} + resolution: + { + integrity: sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ== + } dev: true /delegates/1.0.0: - resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} + resolution: + { + integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== + } dev: true /detect-indent/6.1.0: - resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== + } + engines: { node: '>=8' } dev: true /detect-libc/1.0.3: - resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg== + } + engines: { node: '>=0.10' } hasBin: true dev: true /detect-libc/2.0.1: - resolution: {integrity: sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w== + } + engines: { node: '>=8' } dev: true /detective/5.2.1: - resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw== + } + engines: { node: '>=0.8.0' } hasBin: true dependencies: acorn-node: 1.8.2 @@ -689,37 +962,61 @@ packages: dev: true /didyoumean/1.2.2: - resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} + resolution: + { + integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== + } dev: true /diff-sequences/27.5.1: - resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ== + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } dev: true /dlv/1.1.3: - resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + resolution: + { + integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== + } dev: true /dom-accessibility-api/0.5.14: - resolution: {integrity: sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg==} + resolution: + { + integrity: sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg== + } dev: true /electron-to-chromium/1.4.151: - resolution: {integrity: sha512-XaG2LpZi9fdiWYOqJh0dJy4SlVywCvpgYXhzOlZTp4JqSKqxn5URqOjbm9OMYB3aInA2GuHQiem1QUOc1yT0Pw==} + resolution: + { + integrity: sha512-XaG2LpZi9fdiWYOqJh0dJy4SlVywCvpgYXhzOlZTp4JqSKqxn5URqOjbm9OMYB3aInA2GuHQiem1QUOc1yT0Pw== + } dev: true /emoji-regex/8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + resolution: + { + integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + } dev: true /es6-promise/3.3.1: - resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} + resolution: + { + integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg== + } dev: true /esbuild-android-64/0.14.43: - resolution: {integrity: sha512-kqFXAS72K6cNrB6RiM7YJ5lNvmWRDSlpi7ZuRZ1hu1S3w0zlwcoCxWAyM23LQUyZSs1PbjHgdbbfYAN8IGh6xg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-kqFXAS72K6cNrB6RiM7YJ5lNvmWRDSlpi7ZuRZ1hu1S3w0zlwcoCxWAyM23LQUyZSs1PbjHgdbbfYAN8IGh6xg== + } + engines: { node: '>=12' } cpu: [x64] os: [android] requiresBuild: true @@ -727,8 +1024,11 @@ packages: optional: true /esbuild-android-arm64/0.14.43: - resolution: {integrity: sha512-bKS2BBFh+7XZY9rpjiHGRNA7LvWYbZWP87pLehggTG7tTaCDvj8qQGOU/OZSjCSKDYbgY7Q+oDw8RlYQ2Jt2BA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-bKS2BBFh+7XZY9rpjiHGRNA7LvWYbZWP87pLehggTG7tTaCDvj8qQGOU/OZSjCSKDYbgY7Q+oDw8RlYQ2Jt2BA== + } + engines: { node: '>=12' } cpu: [arm64] os: [android] requiresBuild: true @@ -736,8 +1036,11 @@ packages: optional: true /esbuild-darwin-64/0.14.43: - resolution: {integrity: sha512-/3PSilx011ttoieRGkSZ0XV8zjBf2C9enV4ScMMbCT4dpx0mFhMOpFnCHkOK0pWGB8LklykFyHrWk2z6DENVUg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-/3PSilx011ttoieRGkSZ0XV8zjBf2C9enV4ScMMbCT4dpx0mFhMOpFnCHkOK0pWGB8LklykFyHrWk2z6DENVUg== + } + engines: { node: '>=12' } cpu: [x64] os: [darwin] requiresBuild: true @@ -745,8 +1048,11 @@ packages: optional: true /esbuild-darwin-arm64/0.14.43: - resolution: {integrity: sha512-1HyFUKs8DMCBOvw1Qxpr5Vv/ThNcVIFb5xgXWK3pyT40WPvgYIiRTwJCvNs4l8i5qWF8/CK5bQxJVDjQvtv0Yw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-1HyFUKs8DMCBOvw1Qxpr5Vv/ThNcVIFb5xgXWK3pyT40WPvgYIiRTwJCvNs4l8i5qWF8/CK5bQxJVDjQvtv0Yw== + } + engines: { node: '>=12' } cpu: [arm64] os: [darwin] requiresBuild: true @@ -754,8 +1060,11 @@ packages: optional: true /esbuild-freebsd-64/0.14.43: - resolution: {integrity: sha512-FNWc05TPHYgaXjbPZO5/rJKSBslfG6BeMSs8GhwnqAKP56eEhvmzwnIz1QcC9cRVyO+IKqWNfmHFkCa1WJTULA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-FNWc05TPHYgaXjbPZO5/rJKSBslfG6BeMSs8GhwnqAKP56eEhvmzwnIz1QcC9cRVyO+IKqWNfmHFkCa1WJTULA== + } + engines: { node: '>=12' } cpu: [x64] os: [freebsd] requiresBuild: true @@ -763,8 +1072,11 @@ packages: optional: true /esbuild-freebsd-arm64/0.14.43: - resolution: {integrity: sha512-amrYopclz3VohqisOPR6hA3GOWA3LZC1WDLnp21RhNmoERmJ/vLnOpnrG2P/Zao+/erKTCUqmrCIPVtj58DRoA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-amrYopclz3VohqisOPR6hA3GOWA3LZC1WDLnp21RhNmoERmJ/vLnOpnrG2P/Zao+/erKTCUqmrCIPVtj58DRoA== + } + engines: { node: '>=12' } cpu: [arm64] os: [freebsd] requiresBuild: true @@ -772,8 +1084,11 @@ packages: optional: true /esbuild-linux-32/0.14.43: - resolution: {integrity: sha512-KoxoEra+9O3AKVvgDFvDkiuddCds6q71owSQEYwjtqRV7RwbPzKxJa6+uyzUulHcyGVq0g15K0oKG5CFBcvYDw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-KoxoEra+9O3AKVvgDFvDkiuddCds6q71owSQEYwjtqRV7RwbPzKxJa6+uyzUulHcyGVq0g15K0oKG5CFBcvYDw== + } + engines: { node: '>=12' } cpu: [ia32] os: [linux] requiresBuild: true @@ -781,8 +1096,11 @@ packages: optional: true /esbuild-linux-64/0.14.43: - resolution: {integrity: sha512-EwINwGMyiJMgBby5/SbMqKcUhS5AYAZ2CpEBzSowsJPNBJEdhkCTtEjk757TN/wxgbu3QklqDM6KghY660QCUw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-EwINwGMyiJMgBby5/SbMqKcUhS5AYAZ2CpEBzSowsJPNBJEdhkCTtEjk757TN/wxgbu3QklqDM6KghY660QCUw== + } + engines: { node: '>=12' } cpu: [x64] os: [linux] requiresBuild: true @@ -790,8 +1108,11 @@ packages: optional: true /esbuild-linux-arm/0.14.43: - resolution: {integrity: sha512-e6YzQUoDxxtyamuF12eVzzRC7bbEFSZohJ6igQB9tBqnNmIQY3fI6Cns3z2wxtbZ3f2o6idkD2fQnlvs2902Dg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-e6YzQUoDxxtyamuF12eVzzRC7bbEFSZohJ6igQB9tBqnNmIQY3fI6Cns3z2wxtbZ3f2o6idkD2fQnlvs2902Dg== + } + engines: { node: '>=12' } cpu: [arm] os: [linux] requiresBuild: true @@ -799,8 +1120,11 @@ packages: optional: true /esbuild-linux-arm64/0.14.43: - resolution: {integrity: sha512-UlSpjMWllAc70zYbHxWuDS3FJytyuR/gHJYBr8BICcTNb/TSOYVBg6U7b3jZ3mILTrgzwJUHwhEwK18FZDouUQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-UlSpjMWllAc70zYbHxWuDS3FJytyuR/gHJYBr8BICcTNb/TSOYVBg6U7b3jZ3mILTrgzwJUHwhEwK18FZDouUQ== + } + engines: { node: '>=12' } cpu: [arm64] os: [linux] requiresBuild: true @@ -808,8 +1132,11 @@ packages: optional: true /esbuild-linux-mips64le/0.14.43: - resolution: {integrity: sha512-f+v8cInPEL1/SDP//CfSYzcDNgE4CY3xgDV81DWm3KAPWzhvxARrKxB1Pstf5mB56yAslJDxu7ryBUPX207EZA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-f+v8cInPEL1/SDP//CfSYzcDNgE4CY3xgDV81DWm3KAPWzhvxARrKxB1Pstf5mB56yAslJDxu7ryBUPX207EZA== + } + engines: { node: '>=12' } cpu: [mips64el] os: [linux] requiresBuild: true @@ -817,8 +1144,11 @@ packages: optional: true /esbuild-linux-ppc64le/0.14.43: - resolution: {integrity: sha512-5wZYMDGAL/K2pqkdIsW+I4IR41kyfHr/QshJcNpUfK3RjB3VQcPWOaZmc+74rm4ZjVirYrtz+jWw0SgxtxRanA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-5wZYMDGAL/K2pqkdIsW+I4IR41kyfHr/QshJcNpUfK3RjB3VQcPWOaZmc+74rm4ZjVirYrtz+jWw0SgxtxRanA== + } + engines: { node: '>=12' } cpu: [ppc64] os: [linux] requiresBuild: true @@ -826,8 +1156,11 @@ packages: optional: true /esbuild-linux-riscv64/0.14.43: - resolution: {integrity: sha512-lYcAOUxp85hC7lSjycJUVSmj4/9oEfSyXjb/ua9bNl8afonaduuqtw7hvKMoKuYnVwOCDw4RSfKpcnIRDWq+Bw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-lYcAOUxp85hC7lSjycJUVSmj4/9oEfSyXjb/ua9bNl8afonaduuqtw7hvKMoKuYnVwOCDw4RSfKpcnIRDWq+Bw== + } + engines: { node: '>=12' } cpu: [riscv64] os: [linux] requiresBuild: true @@ -835,8 +1168,11 @@ packages: optional: true /esbuild-linux-s390x/0.14.43: - resolution: {integrity: sha512-27e43ZhHvhFE4nM7HqtUbMRu37I/4eNSUbb8FGZWszV+uLzMIsHDwLoBiJmw7G9N+hrehNPeQ4F5Ujad0DrUKQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-27e43ZhHvhFE4nM7HqtUbMRu37I/4eNSUbb8FGZWszV+uLzMIsHDwLoBiJmw7G9N+hrehNPeQ4F5Ujad0DrUKQ== + } + engines: { node: '>=12' } cpu: [s390x] os: [linux] requiresBuild: true @@ -844,8 +1180,11 @@ packages: optional: true /esbuild-netbsd-64/0.14.43: - resolution: {integrity: sha512-2mH4QF6hHBn5zzAfxEI/2eBC0mspVsZ6UVo821LpAJKMvLJPBk3XJO5xwg7paDqSqpl7p6IRrAenW999AEfJhQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-2mH4QF6hHBn5zzAfxEI/2eBC0mspVsZ6UVo821LpAJKMvLJPBk3XJO5xwg7paDqSqpl7p6IRrAenW999AEfJhQ== + } + engines: { node: '>=12' } cpu: [x64] os: [netbsd] requiresBuild: true @@ -853,8 +1192,11 @@ packages: optional: true /esbuild-openbsd-64/0.14.43: - resolution: {integrity: sha512-ZhQpiZjvqCqO8jKdGp9+8k9E/EHSA+zIWOg+grwZasI9RoblqJ1QiZqqi7jfd6ZrrG1UFBNGe4m0NFxCFbMVbg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ZhQpiZjvqCqO8jKdGp9+8k9E/EHSA+zIWOg+grwZasI9RoblqJ1QiZqqi7jfd6ZrrG1UFBNGe4m0NFxCFbMVbg== + } + engines: { node: '>=12' } cpu: [x64] os: [openbsd] requiresBuild: true @@ -862,8 +1204,11 @@ packages: optional: true /esbuild-sunos-64/0.14.43: - resolution: {integrity: sha512-DgxSi9DaHReL9gYuul2rrQCAapgnCJkh3LSHPKsY26zytYppG0HgkgVF80zjIlvEsUbGBP/GHQzBtrezj/Zq1Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-DgxSi9DaHReL9gYuul2rrQCAapgnCJkh3LSHPKsY26zytYppG0HgkgVF80zjIlvEsUbGBP/GHQzBtrezj/Zq1Q== + } + engines: { node: '>=12' } cpu: [x64] os: [sunos] requiresBuild: true @@ -871,8 +1216,11 @@ packages: optional: true /esbuild-windows-32/0.14.43: - resolution: {integrity: sha512-Ih3+2O5oExiqm0mY6YYE5dR0o8+AspccQ3vIAtRodwFvhuyGLjb0Hbmzun/F3Lw19nuhPMu3sW2fqIJ5xBxByw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-Ih3+2O5oExiqm0mY6YYE5dR0o8+AspccQ3vIAtRodwFvhuyGLjb0Hbmzun/F3Lw19nuhPMu3sW2fqIJ5xBxByw== + } + engines: { node: '>=12' } cpu: [ia32] os: [win32] requiresBuild: true @@ -880,8 +1228,11 @@ packages: optional: true /esbuild-windows-64/0.14.43: - resolution: {integrity: sha512-8NsuNfI8xwFuJbrCuI+aBqNTYkrWErejFO5aYM+yHqyHuL8mmepLS9EPzAzk8rvfaJrhN0+RvKWAcymViHOKEw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-8NsuNfI8xwFuJbrCuI+aBqNTYkrWErejFO5aYM+yHqyHuL8mmepLS9EPzAzk8rvfaJrhN0+RvKWAcymViHOKEw== + } + engines: { node: '>=12' } cpu: [x64] os: [win32] requiresBuild: true @@ -889,8 +1240,11 @@ packages: optional: true /esbuild-windows-arm64/0.14.43: - resolution: {integrity: sha512-7ZlD7bo++kVRblJEoG+cepljkfP8bfuTPz5fIXzptwnPaFwGS6ahvfoYzY7WCf5v/1nX2X02HDraVItTgbHnKw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-7ZlD7bo++kVRblJEoG+cepljkfP8bfuTPz5fIXzptwnPaFwGS6ahvfoYzY7WCf5v/1nX2X02HDraVItTgbHnKw== + } + engines: { node: '>=12' } cpu: [arm64] os: [win32] requiresBuild: true @@ -898,8 +1252,11 @@ packages: optional: true /esbuild/0.14.43: - resolution: {integrity: sha512-Uf94+kQmy/5jsFwKWiQB4hfo/RkM9Dh7b79p8yqd1tshULdr25G2szLz631NoH3s2ujnKEKVD16RmOxvCNKRFA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-Uf94+kQmy/5jsFwKWiQB4hfo/RkM9Dh7b79p8yqd1tshULdr25G2szLz631NoH3s2ujnKEKVD16RmOxvCNKRFA== + } + engines: { node: '>=12' } hasBin: true requiresBuild: true optionalDependencies: @@ -926,26 +1283,41 @@ packages: dev: true /escalade/3.1.1: - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + } + engines: { node: '>=6' } dev: true /escape-string-regexp/1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + } + engines: { node: '>=0.8.0' } dev: true /estree-walker/0.6.1: - resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} + resolution: + { + integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== + } dev: true /estree-walker/2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + resolution: + { + integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== + } dev: true /fast-glob/3.2.11: - resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==} - engines: {node: '>=8.6.0'} + resolution: + { + integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew== + } + engines: { node: '>=8.6.0' } dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 @@ -955,57 +1327,87 @@ packages: dev: true /fastq/1.13.0: - resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==} + resolution: + { + integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== + } dependencies: reusify: 1.0.4 dev: true /file-uri-to-path/1.0.0: - resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} + resolution: + { + integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + } dev: true /fill-range/7.0.1: - resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + } + engines: { node: '>=8' } dependencies: to-regex-range: 5.0.1 dev: true /fraction.js/4.2.0: - resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} + resolution: + { + integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== + } dev: true /fs-minipass/1.2.7: - resolution: {integrity: sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==} + resolution: + { + integrity: sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA== + } dependencies: minipass: 2.9.0 dev: true /fs-minipass/2.1.0: - resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== + } + engines: { node: '>= 8' } dependencies: minipass: 3.1.6 dev: true /fs.realpath/1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + resolution: + { + integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + } dev: true /fsevents/2.3.2: - resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + resolution: + { + integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + } + engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } os: [darwin] requiresBuild: true dev: true optional: true /function-bind/1.1.1: - resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + resolution: + { + integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + } dev: true /gauge/2.7.4: - resolution: {integrity: sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==} + resolution: + { + integrity: sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg== + } dependencies: aproba: 1.2.0 console-control-strings: 1.1.0 @@ -1018,8 +1420,11 @@ packages: dev: true /gauge/3.0.2: - resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q== + } + engines: { node: '>=10' } dependencies: aproba: 2.0.0 color-support: 1.1.3 @@ -1033,25 +1438,37 @@ packages: dev: true /get-func-name/2.0.0: - resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==} + resolution: + { + integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig== + } dev: true /glob-parent/5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + } + engines: { node: '>= 6' } dependencies: is-glob: 4.0.3 dev: true /glob-parent/6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + } + engines: { node: '>=10.13.0' } dependencies: is-glob: 4.0.3 dev: true /glob/7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + resolution: + { + integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + } dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -1062,41 +1479,65 @@ packages: dev: true /globalyzer/0.1.0: - resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} + resolution: + { + integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q== + } dev: true /globrex/0.1.2: - resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} + resolution: + { + integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg== + } dev: true /graceful-fs/4.2.10: - resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} + resolution: + { + integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== + } dev: true /has-flag/3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + } + engines: { node: '>=4' } dev: true /has-flag/4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + } + engines: { node: '>=8' } dev: true /has-unicode/2.0.1: - resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} + resolution: + { + integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== + } dev: true /has/1.0.3: - resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} - engines: {node: '>= 0.4.0'} + resolution: + { + integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + } + engines: { node: '>= 0.4.0' } dependencies: function-bind: 1.1.1 dev: true /https-proxy-agent/5.0.1: - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== + } + engines: { node: '>= 6' } dependencies: agent-base: 6.0.2 debug: 4.3.4 @@ -1105,87 +1546,132 @@ packages: dev: true /iconv-lite/0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + } + engines: { node: '>=0.10.0' } dependencies: safer-buffer: 2.1.2 dev: true /ignore-walk/3.0.4: - resolution: {integrity: sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==} + resolution: + { + integrity: sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ== + } dependencies: minimatch: 3.1.2 dev: true /indent-string/4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + } + engines: { node: '>=8' } dev: true /inflight/1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + resolution: + { + integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + } dependencies: once: 1.4.0 wrappy: 1.0.2 dev: true /inherits/2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + resolution: + { + integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + } dev: true /ini/1.3.8: - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + resolution: + { + integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== + } dev: true /is-binary-path/2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + } + engines: { node: '>=8' } dependencies: binary-extensions: 2.2.0 dev: true /is-core-module/2.9.0: - resolution: {integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==} + resolution: + { + integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A== + } dependencies: has: 1.0.3 dev: true /is-extglob/2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + } + engines: { node: '>=0.10.0' } dev: true /is-fullwidth-code-point/1.0.0: - resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw== + } + engines: { node: '>=0.10.0' } dependencies: number-is-nan: 1.0.1 dev: true /is-fullwidth-code-point/3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + } + engines: { node: '>=8' } dev: true /is-glob/4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + } + engines: { node: '>=0.10.0' } dependencies: is-extglob: 2.1.1 dev: true /is-number/7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} + resolution: + { + integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + } + engines: { node: '>=0.12.0' } dev: true /isarray/1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + resolution: + { + integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + } dev: true /jest-diff/27.5.1: - resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw== + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } dependencies: chalk: 4.1.2 diff-sequences: 27.5.1 @@ -1194,13 +1680,19 @@ packages: dev: true /jest-get-type/27.5.1: - resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw== + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } dev: true /jest-matcher-utils/27.5.1: - resolution: {integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw== + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } dependencies: chalk: 4.1.2 jest-diff: 27.5.1 @@ -1209,168 +1701,255 @@ packages: dev: true /js-tokens/4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + resolution: + { + integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + } dev: true /kleur/4.1.4: - resolution: {integrity: sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA== + } + engines: { node: '>=6' } dev: true /lilconfig/2.0.5: - resolution: {integrity: sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg== + } + engines: { node: '>=10' } dev: true /local-pkg/0.4.1: - resolution: {integrity: sha512-lL87ytIGP2FU5PWwNDo0w3WhIo2gopIAxPg9RxDYF7m4rr5ahuZxP22xnJHIvaLTe4Z9P6uKKY2UHiwyB4pcrw==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-lL87ytIGP2FU5PWwNDo0w3WhIo2gopIAxPg9RxDYF7m4rr5ahuZxP22xnJHIvaLTe4Z9P6uKKY2UHiwyB4pcrw== + } + engines: { node: '>=14' } dev: true /lodash/4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + resolution: + { + integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + } dev: true /loupe/2.3.4: - resolution: {integrity: sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==} + resolution: + { + integrity: sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ== + } dependencies: get-func-name: 2.0.0 dev: true /lower-case/2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + resolution: + { + integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + } dependencies: tslib: 2.4.0 dev: true /lru-cache/6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + } + engines: { node: '>=10' } dependencies: yallist: 4.0.0 dev: true /lz-string/1.4.4: - resolution: {integrity: sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ==} + resolution: + { + integrity: sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ== + } hasBin: true dev: true /magic-string/0.25.9: - resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} + resolution: + { + integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ== + } dependencies: sourcemap-codec: 1.4.8 dev: true /magic-string/0.26.2: - resolution: {integrity: sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A== + } + engines: { node: '>=12' } dependencies: sourcemap-codec: 1.4.8 dev: true /make-dir/3.1.0: - resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== + } + engines: { node: '>=8' } dependencies: semver: 6.3.0 dev: true /merge2/1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + } + engines: { node: '>= 8' } dev: true /micromatch/4.0.5: - resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + } + engines: { node: '>=8.6' } dependencies: braces: 3.0.2 picomatch: 2.3.1 dev: true /min-indent/1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== + } + engines: { node: '>=4' } dev: true /minimatch/3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + resolution: + { + integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + } dependencies: brace-expansion: 1.1.11 dev: true /minimist/1.2.6: - resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} + resolution: + { + integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== + } dev: true /minipass/2.9.0: - resolution: {integrity: sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==} + resolution: + { + integrity: sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg== + } dependencies: safe-buffer: 5.2.1 yallist: 3.1.1 dev: true /minipass/3.1.6: - resolution: {integrity: sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ== + } + engines: { node: '>=8' } dependencies: yallist: 4.0.0 dev: true /minizlib/1.3.3: - resolution: {integrity: sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==} + resolution: + { + integrity: sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q== + } dependencies: minipass: 2.9.0 dev: true /minizlib/2.1.2: - resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== + } + engines: { node: '>= 8' } dependencies: minipass: 3.1.6 yallist: 4.0.0 dev: true /mkdirp/0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + resolution: + { + integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== + } hasBin: true dependencies: minimist: 1.2.6 dev: true /mkdirp/1.0.4: - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + } + engines: { node: '>=10' } hasBin: true dev: true /mri/1.2.0: - resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA== + } + engines: { node: '>=4' } dev: true /mrmime/1.0.1: - resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw== + } + engines: { node: '>=10' } dev: true /ms/2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + resolution: + { + integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + } dev: true /ms/2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + resolution: + { + integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + } dev: true /nanoid/3.3.4: - resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + resolution: + { + integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== + } + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } hasBin: true dev: true /needle/2.9.1: - resolution: {integrity: sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==} - engines: {node: '>= 4.4.x'} + resolution: + { + integrity: sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ== + } + engines: { node: '>= 4.4.x' } hasBin: true dependencies: debug: 3.2.7 @@ -1381,15 +1960,21 @@ packages: dev: true /no-case/3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + resolution: + { + integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + } dependencies: lower-case: 2.0.2 tslib: 2.4.0 dev: true /node-fetch/2.6.7: - resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} - engines: {node: 4.x || >=6.0.0} + resolution: + { + integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== + } + engines: { node: 4.x || >=6.0.0 } peerDependencies: encoding: ^0.1.0 peerDependenciesMeta: @@ -1400,12 +1985,18 @@ packages: dev: true /node-gyp-build/4.4.0: - resolution: {integrity: sha512-amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ==} + resolution: + { + integrity: sha512-amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ== + } hasBin: true dev: true /node-pre-gyp/0.13.0: - resolution: {integrity: sha512-Md1D3xnEne8b/HGVQkZZwV27WUi1ZRuZBij24TNaZwUPU3ZAFtvT6xxJGaUVillfmMKnn5oD1HoGsp2Ftik7SQ==} + resolution: + { + integrity: sha512-Md1D3xnEne8b/HGVQkZZwV27WUi1ZRuZBij24TNaZwUPU3ZAFtvT6xxJGaUVillfmMKnn5oD1HoGsp2Ftik7SQ== + } deprecated: 'Please upgrade to @mapbox/node-pre-gyp: the non-scoped node-pre-gyp package is deprecated and only the @mapbox scoped package will recieve updates in the future' hasBin: true dependencies: @@ -1424,11 +2015,17 @@ packages: dev: true /node-releases/2.0.5: - resolution: {integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==} + resolution: + { + integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q== + } dev: true /nopt/4.0.3: - resolution: {integrity: sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==} + resolution: + { + integrity: sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg== + } hasBin: true dependencies: abbrev: 1.1.1 @@ -1436,35 +2033,53 @@ packages: dev: true /nopt/5.0.0: - resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== + } + engines: { node: '>=6' } hasBin: true dependencies: abbrev: 1.1.1 dev: true /normalize-path/3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + } + engines: { node: '>=0.10.0' } dev: true /normalize-range/0.1.2: - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== + } + engines: { node: '>=0.10.0' } dev: true /npm-bundled/1.1.2: - resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==} + resolution: + { + integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ== + } dependencies: npm-normalize-package-bin: 1.0.1 dev: true /npm-normalize-package-bin/1.0.1: - resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==} + resolution: + { + integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== + } dev: true /npm-packlist/1.4.8: - resolution: {integrity: sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A==} + resolution: + { + integrity: sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A== + } dependencies: ignore-walk: 3.0.4 npm-bundled: 1.1.2 @@ -1472,7 +2087,10 @@ packages: dev: true /npmlog/4.1.2: - resolution: {integrity: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==} + resolution: + { + integrity: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== + } dependencies: are-we-there-yet: 1.1.7 console-control-strings: 1.1.0 @@ -1481,7 +2099,10 @@ packages: dev: true /npmlog/5.0.1: - resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} + resolution: + { + integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw== + } dependencies: are-we-there-yet: 2.0.0 console-control-strings: 1.1.0 @@ -1490,80 +2111,125 @@ packages: dev: true /number-is-nan/1.0.1: - resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ== + } + engines: { node: '>=0.10.0' } dev: true /object-assign/4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + } + engines: { node: '>=0.10.0' } dev: true /object-hash/3.0.0: - resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== + } + engines: { node: '>= 6' } dev: true /once/1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + resolution: + { + integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + } dependencies: wrappy: 1.0.2 dev: true /os-homedir/1.0.2: - resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ== + } + engines: { node: '>=0.10.0' } dev: true /os-tmpdir/1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== + } + engines: { node: '>=0.10.0' } dev: true /osenv/0.1.5: - resolution: {integrity: sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==} + resolution: + { + integrity: sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== + } dependencies: os-homedir: 1.0.2 os-tmpdir: 1.0.2 dev: true /pascal-case/3.1.2: - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} + resolution: + { + integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== + } dependencies: no-case: 3.0.4 tslib: 2.4.0 dev: true /path-is-absolute/1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + } + engines: { node: '>=0.10.0' } dev: true /path-parse/1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + resolution: + { + integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + } dev: true /pathval/1.1.1: - resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} + resolution: + { + integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== + } dev: true /picocolors/1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + resolution: + { + integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + } dev: true /picomatch/2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + } + engines: { node: '>=8.6' } dev: true /pify/2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== + } + engines: { node: '>=0.10.0' } dev: true /postcss-import/14.1.0_postcss@8.4.14: - resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw== + } + engines: { node: '>=10.0.0' } peerDependencies: postcss: ^8.0.0 dependencies: @@ -1574,8 +2240,11 @@ packages: dev: true /postcss-js/4.0.0_postcss@8.4.14: - resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==} - engines: {node: ^12 || ^14 || >= 16} + resolution: + { + integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ== + } + engines: { node: ^12 || ^14 || >= 16 } peerDependencies: postcss: ^8.3.3 dependencies: @@ -1584,8 +2253,11 @@ packages: dev: true /postcss-load-config/3.1.4_postcss@8.4.14: - resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg== + } + engines: { node: '>= 10' } peerDependencies: postcss: '>=8.0.9' ts-node: '>=9.0.0' @@ -1601,8 +2273,11 @@ packages: dev: true /postcss-nested/5.0.6_postcss@8.4.14: - resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==} - engines: {node: '>=12.0'} + resolution: + { + integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA== + } + engines: { node: '>=12.0' } peerDependencies: postcss: ^8.2.14 dependencies: @@ -1611,29 +2286,63 @@ packages: dev: true /postcss-selector-parser/6.0.10: - resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w== + } + engines: { node: '>=4' } dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 dev: true /postcss-value-parser/4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + resolution: + { + integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + } dev: true /postcss/8.4.14: - resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== + } + engines: { node: ^10 || ^12 || >=14 } dependencies: nanoid: 3.3.4 picocolors: 1.0.0 source-map-js: 1.0.2 dev: true + /prettier-plugin-svelte/2.7.0_nakrehnrzdf7fdea5k3a4dfy4m: + resolution: + { + integrity: sha512-fQhhZICprZot2IqEyoiUYLTRdumULGRvw0o4dzl5jt0jfzVWdGqeYW27QTWAeXhoupEZJULmNoH3ueJwUWFLIA== + } + peerDependencies: + prettier: ^1.16.4 || ^2.0.0 + svelte: ^3.2.0 + dependencies: + prettier: 2.7.1 + svelte: 3.48.0 + dev: true + + /prettier/2.7.1: + resolution: + { + integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g== + } + engines: { node: '>=10.13.0' } + hasBin: true + dev: true + /pretty-format/27.5.1: - resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } dependencies: ansi-regex: 5.0.1 ansi-styles: 5.2.0 @@ -1641,20 +2350,32 @@ packages: dev: true /process-nextick-args/2.0.1: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + resolution: + { + integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + } dev: true /queue-microtask/1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + resolution: + { + integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + } dev: true /quick-lru/5.1.1: - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== + } + engines: { node: '>=10' } dev: true /rc/1.2.8: - resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} + resolution: + { + integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== + } hasBin: true dependencies: deep-extend: 0.6.0 @@ -1664,17 +2385,26 @@ packages: dev: true /react-is/17.0.2: - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + resolution: + { + integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== + } dev: true /read-cache/1.0.0: - resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + resolution: + { + integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== + } dependencies: pify: 2.3.0 dev: true /readable-stream/2.3.7: - resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==} + resolution: + { + integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== + } dependencies: core-util-is: 1.0.3 inherits: 2.0.4 @@ -1686,8 +2416,11 @@ packages: dev: true /readable-stream/3.6.0: - resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + } + engines: { node: '>= 6' } dependencies: inherits: 2.0.4 string_decoder: 1.3.0 @@ -1695,36 +2428,54 @@ packages: dev: true /readdirp/3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} + resolution: + { + integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + } + engines: { node: '>=8.10.0' } dependencies: picomatch: 2.3.1 dev: true /redent/3.0.0: - resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== + } + engines: { node: '>=8' } dependencies: indent-string: 4.0.0 strip-indent: 3.0.0 dev: true /regenerator-runtime/0.13.9: - resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==} + resolution: + { + integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== + } dev: true /regexparam/2.0.0: - resolution: {integrity: sha512-gJKwd2MVPWHAIFLsaYDZfyKzHNS4o7E/v8YmNf44vmeV2e4YfVoDToTOKTvE7ab68cRJ++kLuEXJBaEeJVt5ow==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-gJKwd2MVPWHAIFLsaYDZfyKzHNS4o7E/v8YmNf44vmeV2e4YfVoDToTOKTvE7ab68cRJ++kLuEXJBaEeJVt5ow== + } + engines: { node: '>=8' } dev: true /resolve-from/5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + } + engines: { node: '>=8' } dev: true /resolve/1.22.0: - resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==} + resolution: + { + integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw== + } hasBin: true dependencies: is-core-module: 2.9.0 @@ -1733,65 +2484,98 @@ packages: dev: true /reusify/1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + resolution: + { + integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + } + engines: { iojs: '>=1.0.0', node: '>=0.10.0' } dev: true /rimraf/2.7.1: - resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + resolution: + { + integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== + } hasBin: true dependencies: glob: 7.2.3 dev: true /rimraf/3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + resolution: + { + integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + } hasBin: true dependencies: glob: 7.2.3 dev: true /rollup-pluginutils/2.8.2: - resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} + resolution: + { + integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== + } dependencies: estree-walker: 0.6.1 dev: true /rollup/2.75.6: - resolution: {integrity: sha512-OEf0TgpC9vU6WGROJIk1JA3LR5vk/yvqlzxqdrE2CzzXnqKXNzbAwlWUXis8RS3ZPe7LAq+YUxsRa0l3r27MLA==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-OEf0TgpC9vU6WGROJIk1JA3LR5vk/yvqlzxqdrE2CzzXnqKXNzbAwlWUXis8RS3ZPe7LAq+YUxsRa0l3r27MLA== + } + engines: { node: '>=10.0.0' } hasBin: true optionalDependencies: fsevents: 2.3.2 dev: true /run-parallel/1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + resolution: + { + integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + } dependencies: queue-microtask: 1.2.3 dev: true /sade/1.8.1: - resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A== + } + engines: { node: '>=6' } dependencies: mri: 1.2.0 dev: true /safe-buffer/5.1.2: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + resolution: + { + integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + } dev: true /safe-buffer/5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + resolution: + { + integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + } dev: true /safer-buffer/2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + resolution: + { + integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + } dev: true /sander/0.5.1: - resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==} + resolution: + { + integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA== + } dependencies: es6-promise: 3.3.1 graceful-fs: 4.2.10 @@ -1800,41 +2584,65 @@ packages: dev: true /sax/1.2.4: - resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} + resolution: + { + integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== + } dev: true /semver/5.7.1: - resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} + resolution: + { + integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + } hasBin: true dev: true /semver/6.3.0: - resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} + resolution: + { + integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + } hasBin: true dev: true /semver/7.3.7: - resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== + } + engines: { node: '>=10' } hasBin: true dependencies: lru-cache: 6.0.0 dev: true /set-blocking/2.0.0: - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + resolution: + { + integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== + } dev: true /set-cookie-parser/2.5.0: - resolution: {integrity: sha512-cHMAtSXilfyBePduZEBVPTCftTQWz6ehWJD5YNUg4mqvRosrrjKbo4WS8JkB0/RxonMoohHm7cOGH60mDkRQ9w==} + resolution: + { + integrity: sha512-cHMAtSXilfyBePduZEBVPTCftTQWz6ehWJD5YNUg4mqvRosrrjKbo4WS8JkB0/RxonMoohHm7cOGH60mDkRQ9w== + } dev: true /signal-exit/3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + resolution: + { + integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + } dev: true /sorcery/0.10.0: - resolution: {integrity: sha512-R5ocFmKZQFfSTstfOtHjJuAwbpGyf9qjQa1egyhvXSbM7emjrtLXtGdZsDJDABC85YBfVvrOiGWKSYXPKdvP1g==} + resolution: + { + integrity: sha512-R5ocFmKZQFfSTstfOtHjJuAwbpGyf9qjQa1egyhvXSbM7emjrtLXtGdZsDJDABC85YBfVvrOiGWKSYXPKdvP1g== + } hasBin: true dependencies: buffer-crc32: 0.2.13 @@ -1844,12 +2652,18 @@ packages: dev: true /source-map-js/1.0.2: - resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== + } + engines: { node: '>=0.10.0' } dev: true /source-map-resolve/0.6.0: - resolution: {integrity: sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==} + resolution: + { + integrity: sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w== + } deprecated: See https://github.com/lydell/source-map-resolve#deprecated dependencies: atob: 2.1.2 @@ -1857,17 +2671,26 @@ packages: dev: true /source-map/0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + } + engines: { node: '>=0.10.0' } dev: true /sourcemap-codec/1.4.8: - resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} + resolution: + { + integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== + } dev: true /string-width/1.0.2: - resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw== + } + engines: { node: '>=0.10.0' } dependencies: code-point-at: 1.1.0 is-fullwidth-code-point: 1.0.0 @@ -1875,8 +2698,11 @@ packages: dev: true /string-width/4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + } + engines: { node: '>=8' } dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 @@ -1884,65 +2710,95 @@ packages: dev: true /string_decoder/1.1.1: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + resolution: + { + integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + } dependencies: safe-buffer: 5.1.2 dev: true /string_decoder/1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + resolution: + { + integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + } dependencies: safe-buffer: 5.2.1 dev: true /strip-ansi/3.0.1: - resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg== + } + engines: { node: '>=0.10.0' } dependencies: ansi-regex: 2.1.1 dev: true /strip-ansi/6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + } + engines: { node: '>=8' } dependencies: ansi-regex: 5.0.1 dev: true /strip-indent/3.0.0: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== + } + engines: { node: '>=8' } dependencies: min-indent: 1.0.1 dev: true /strip-json-comments/2.0.1: - resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== + } + engines: { node: '>=0.10.0' } dev: true /supports-color/5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + } + engines: { node: '>=4' } dependencies: has-flag: 3.0.0 dev: true /supports-color/7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + } + engines: { node: '>=8' } dependencies: has-flag: 4.0.0 dev: true /supports-preserve-symlinks-flag/1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + } + engines: { node: '>= 0.4' } dev: true /svelte-hmr/0.14.12_svelte@3.48.0: - resolution: {integrity: sha512-4QSW/VvXuqVcFZ+RhxiR8/newmwOCTlbYIezvkeN6302YFRE8cXy0naamHcjz8Y9Ce3ITTZtrHrIL0AGfyo61w==} - engines: {node: ^12.20 || ^14.13.1 || >= 16} + resolution: + { + integrity: sha512-4QSW/VvXuqVcFZ+RhxiR8/newmwOCTlbYIezvkeN6302YFRE8cXy0naamHcjz8Y9Ce3ITTZtrHrIL0AGfyo61w== + } + engines: { node: ^12.20 || ^14.13.1 || >= 16 } peerDependencies: svelte: '>=3.19.0' dependencies: @@ -1950,8 +2806,11 @@ packages: dev: true /svelte-preprocess/4.10.7_kyjjbybckohdgmfoyqhtjxxdom: - resolution: {integrity: sha512-sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw==} - engines: {node: '>= 9.11.2'} + resolution: + { + integrity: sha512-sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw== + } + engines: { node: '>= 9.11.2' } requiresBuild: true peerDependencies: '@babel/core': ^7.10.2 @@ -2003,12 +2862,18 @@ packages: dev: true /svelte/3.48.0: - resolution: {integrity: sha512-fN2YRm/bGumvjUpu6yI3BpvZnpIm9I6A7HR4oUNYd7ggYyIwSA/BX7DJ+UXXffLp6XNcUijyLvttbPVCYa/3xQ==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-fN2YRm/bGumvjUpu6yI3BpvZnpIm9I6A7HR4oUNYd7ggYyIwSA/BX7DJ+UXXffLp6XNcUijyLvttbPVCYa/3xQ== + } + engines: { node: '>= 8' } dev: true /svelte2tsx/0.5.10_dg7s4kx4gpzom5ifrkhkr632g4: - resolution: {integrity: sha512-nokQ0HTTWMcNX6tLrDLiOmJCuqjKZU9nCZ6/mVuCL3nusXdbp+9nv69VG2pCy7uQC66kV4Ls+j0WfvvJuGVnkg==} + resolution: + { + integrity: sha512-nokQ0HTTWMcNX6tLrDLiOmJCuqjKZU9nCZ6/mVuCL3nusXdbp+9nv69VG2pCy7uQC66kV4Ls+j0WfvvJuGVnkg== + } peerDependencies: svelte: ^3.24 typescript: ^4.1.2 @@ -2020,8 +2885,11 @@ packages: dev: true /tailwindcss/3.1.1: - resolution: {integrity: sha512-F5VFj5FiS4QZqdXPE6T6RJFqbsmISQ2KBUp9bOQyws9TleGToHsa54X8kwXwVdHMQhNeXOlxI47lrRICEVuOvg==} - engines: {node: '>=12.13.0'} + resolution: + { + integrity: sha512-F5VFj5FiS4QZqdXPE6T6RJFqbsmISQ2KBUp9bOQyws9TleGToHsa54X8kwXwVdHMQhNeXOlxI47lrRICEVuOvg== + } + engines: { node: '>=12.13.0' } hasBin: true dependencies: arg: 5.0.2 @@ -2051,8 +2919,11 @@ packages: dev: true /tar/4.4.19: - resolution: {integrity: sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==} - engines: {node: '>=4.5'} + resolution: + { + integrity: sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA== + } + engines: { node: '>=4.5' } dependencies: chownr: 1.1.4 fs-minipass: 1.2.7 @@ -2064,8 +2935,11 @@ packages: dev: true /tar/6.1.11: - resolution: {integrity: sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA== + } + engines: { node: '>= 10' } dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 @@ -2076,55 +2950,82 @@ packages: dev: true /tiny-glob/0.2.9: - resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} + resolution: + { + integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg== + } dependencies: globalyzer: 0.1.0 globrex: 0.1.2 dev: true /tinypool/0.1.3: - resolution: {integrity: sha512-2IfcQh7CP46XGWGGbdyO4pjcKqsmVqFAPcXfPxcPXmOWt9cYkTP9HcDmGgsfijYoAEc4z9qcpM/BaBz46Y9/CQ==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-2IfcQh7CP46XGWGGbdyO4pjcKqsmVqFAPcXfPxcPXmOWt9cYkTP9HcDmGgsfijYoAEc4z9qcpM/BaBz46Y9/CQ== + } + engines: { node: '>=14.0.0' } dev: true /tinyspy/0.3.2: - resolution: {integrity: sha512-2+40EP4D3sFYy42UkgkFFB+kiX2Tg3URG/lVvAZFfLxgGpnWl5qQJuBw1gaLttq8UOS+2p3C0WrhJnQigLTT2Q==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-2+40EP4D3sFYy42UkgkFFB+kiX2Tg3URG/lVvAZFfLxgGpnWl5qQJuBw1gaLttq8UOS+2p3C0WrhJnQigLTT2Q== + } + engines: { node: '>=14.0.0' } dev: true /to-regex-range/5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} + resolution: + { + integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + } + engines: { node: '>=8.0' } dependencies: is-number: 7.0.0 dev: true /tr46/0.0.3: - resolution: {integrity: sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=} + resolution: + { + integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + } dev: true /tslib/2.4.0: - resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} + resolution: + { + integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== + } dev: true /type-detect/4.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== + } + engines: { node: '>=4' } dev: true /typescript/4.7.3: - resolution: {integrity: sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA==} - engines: {node: '>=4.2.0'} + resolution: + { + integrity: sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA== + } + engines: { node: '>=4.2.0' } hasBin: true dev: true /util-deprecate/1.0.2: - resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=} + resolution: { integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= } dev: true /vite/2.9.10: - resolution: {integrity: sha512-TwZRuSMYjpTurLqXspct+HZE7ONiW9d+wSWgvADGxhDPPyoIcNywY+RX4ng+QpK30DCa1l/oZgi2PLZDibhzbQ==} - engines: {node: '>=12.2.0'} + resolution: + { + integrity: sha512-TwZRuSMYjpTurLqXspct+HZE7ONiW9d+wSWgvADGxhDPPyoIcNywY+RX4ng+QpK30DCa1l/oZgi2PLZDibhzbQ== + } + engines: { node: '>=12.2.0' } hasBin: true peerDependencies: less: '*' @@ -2147,8 +3048,11 @@ packages: dev: true /vitest/0.14.1: - resolution: {integrity: sha512-2UUm6jYgkwh7Y3VKSRR8OuaNCm+iA5LPDnal7jyITN39maZK9L+JVxqjtQ39PSFo5Fl3/BgaJvER6GGHX9JLxg==} - engines: {node: '>=v14.16.0'} + resolution: + { + integrity: sha512-2UUm6jYgkwh7Y3VKSRR8OuaNCm+iA5LPDnal7jyITN39maZK9L+JVxqjtQ39PSFo5Fl3/BgaJvER6GGHX9JLxg== + } + engines: { node: '>=v14.16.0' } hasBin: true peerDependencies: '@vitest/ui': '*' @@ -2181,48 +3085,72 @@ packages: dev: true /webidl-conversions/3.0.1: - resolution: {integrity: sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=} + resolution: + { + integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + } dev: true /whatwg-url/5.0.0: - resolution: {integrity: sha1-lmRU6HZUYuN2RNNib2dCzotwll0=} + resolution: + { + integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + } dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 dev: true /wide-align/1.1.5: - resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + resolution: + { + integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== + } dependencies: string-width: 4.2.3 dev: true /worktop/0.8.0-next.14: - resolution: {integrity: sha512-RZgqHu1w/JcUdWOE/BUEAzarrUUHh39eWkLdX8XpA6MfgLJF6X5Vl26CV7/wcm4O/UpZvHMGJUtB9eYTqDjc9g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-RZgqHu1w/JcUdWOE/BUEAzarrUUHh39eWkLdX8XpA6MfgLJF6X5Vl26CV7/wcm4O/UpZvHMGJUtB9eYTqDjc9g== + } + engines: { node: '>=12' } dependencies: mrmime: 1.0.1 regexparam: 2.0.0 dev: true /wrappy/1.0.2: - resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=} + resolution: { integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= } dev: true /xtend/4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} - engines: {node: '>=0.4'} + resolution: + { + integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + } + engines: { node: '>=0.4' } dev: true /yallist/3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + resolution: + { + integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + } dev: true /yallist/4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + resolution: + { + integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + } dev: true /yaml/1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + } + engines: { node: '>= 6' } dev: true diff --git a/postcss.config.cjs b/postcss.config.cjs index e48cff58..fe10e55a 100644 --- a/postcss.config.cjs +++ b/postcss.config.cjs @@ -1,13 +1,13 @@ -const tailwindcss = require("tailwindcss"); -const autoprefixer = require("autoprefixer"); +const tailwindcss = require('tailwindcss'); +const autoprefixer = require('autoprefixer'); const config = { - plugins: [ - //Some plugins, like tailwindcss/nesting, need to run before Tailwind, - tailwindcss(), - //But others, like autoprefixer, need to run after, - autoprefixer, - ], + plugins: [ + //Some plugins, like tailwindcss/nesting, need to run before Tailwind, + tailwindcss(), + //But others, like autoprefixer, need to run after, + autoprefixer + ] }; module.exports = config; diff --git a/src/lib/AcademicCap.svelte b/src/lib/AcademicCap.svelte index fa1d67ca..b3afe0b3 100644 --- a/src/lib/AcademicCap.svelte +++ b/src/lib/AcademicCap.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'academic cap'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Adjustments.svelte b/src/lib/Adjustments.svelte index f617fa9a..f656e832 100644 --- a/src/lib/Adjustments.svelte +++ b/src/lib/Adjustments.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'adjustments'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Annotation.svelte b/src/lib/Annotation.svelte index 17ae13b7..52591c53 100644 --- a/src/lib/Annotation.svelte +++ b/src/lib/Annotation.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'annotation'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Archive.svelte b/src/lib/Archive.svelte index 9d081cc3..827f2e1b 100644 --- a/src/lib/Archive.svelte +++ b/src/lib/Archive.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'archive'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ArrowCircleDown.svelte b/src/lib/ArrowCircleDown.svelte index 203741b2..cce40f61 100644 --- a/src/lib/ArrowCircleDown.svelte +++ b/src/lib/ArrowCircleDown.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'arrow circle down'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ArrowCircleLeft.svelte b/src/lib/ArrowCircleLeft.svelte index 550ed1b0..8512f9d1 100644 --- a/src/lib/ArrowCircleLeft.svelte +++ b/src/lib/ArrowCircleLeft.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'arrow circle left'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ArrowCircleRight.svelte b/src/lib/ArrowCircleRight.svelte index f4f6ca22..a939edca 100644 --- a/src/lib/ArrowCircleRight.svelte +++ b/src/lib/ArrowCircleRight.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'arrow circle right'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ArrowCircleUp.svelte b/src/lib/ArrowCircleUp.svelte index 69a9c6c6..6707ae58 100644 --- a/src/lib/ArrowCircleUp.svelte +++ b/src/lib/ArrowCircleUp.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'arrow circle up'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ArrowDown.svelte b/src/lib/ArrowDown.svelte index 872d9b51..fccf4b87 100644 --- a/src/lib/ArrowDown.svelte +++ b/src/lib/ArrowDown.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'arrow down'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ArrowLeft.svelte b/src/lib/ArrowLeft.svelte index 1dc72765..14d2145c 100644 --- a/src/lib/ArrowLeft.svelte +++ b/src/lib/ArrowLeft.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'arrow left'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ArrowNarrowDown.svelte b/src/lib/ArrowNarrowDown.svelte index 2087c604..c14c2f86 100644 --- a/src/lib/ArrowNarrowDown.svelte +++ b/src/lib/ArrowNarrowDown.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'arrow narrow down'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ArrowNarrowLeft.svelte b/src/lib/ArrowNarrowLeft.svelte index 47433e94..0969e7f5 100644 --- a/src/lib/ArrowNarrowLeft.svelte +++ b/src/lib/ArrowNarrowLeft.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'arrow narrow left'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ArrowNarrowRight.svelte b/src/lib/ArrowNarrowRight.svelte index e184ee56..2d46cebf 100644 --- a/src/lib/ArrowNarrowRight.svelte +++ b/src/lib/ArrowNarrowRight.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'arrow narrow right'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ArrowNarrowUp.svelte b/src/lib/ArrowNarrowUp.svelte index bf140d5e..dd0cb833 100644 --- a/src/lib/ArrowNarrowUp.svelte +++ b/src/lib/ArrowNarrowUp.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'arrow narrow up'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ArrowRight.svelte b/src/lib/ArrowRight.svelte index 97f30db9..cd4e6d16 100644 --- a/src/lib/ArrowRight.svelte +++ b/src/lib/ArrowRight.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'arrow right'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ArrowSmDown.svelte b/src/lib/ArrowSmDown.svelte index 9b852ec3..a2f41a87 100644 --- a/src/lib/ArrowSmDown.svelte +++ b/src/lib/ArrowSmDown.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'arrow sm down'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ArrowSmLeft.svelte b/src/lib/ArrowSmLeft.svelte index 77145e8b..f7841cd2 100644 --- a/src/lib/ArrowSmLeft.svelte +++ b/src/lib/ArrowSmLeft.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'arrow sm left'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ArrowSmRight.svelte b/src/lib/ArrowSmRight.svelte index 7bad9a96..8e7517e5 100644 --- a/src/lib/ArrowSmRight.svelte +++ b/src/lib/ArrowSmRight.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'arrow sm right'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ArrowSmUp.svelte b/src/lib/ArrowSmUp.svelte index 89a42491..5125b53c 100644 --- a/src/lib/ArrowSmUp.svelte +++ b/src/lib/ArrowSmUp.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'arrow sm up'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ArrowUp.svelte b/src/lib/ArrowUp.svelte index c15f1550..559c91cb 100644 --- a/src/lib/ArrowUp.svelte +++ b/src/lib/ArrowUp.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'arrow up'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ArrowsExpand.svelte b/src/lib/ArrowsExpand.svelte index 5d4a56d4..72d9eaeb 100644 --- a/src/lib/ArrowsExpand.svelte +++ b/src/lib/ArrowsExpand.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'arrows expand'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/AtSymbol.svelte b/src/lib/AtSymbol.svelte index abda19b7..7d0fa92a 100644 --- a/src/lib/AtSymbol.svelte +++ b/src/lib/AtSymbol.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'at symbol'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Backspace.svelte b/src/lib/Backspace.svelte index 224376d9..07e5cfd8 100644 --- a/src/lib/Backspace.svelte +++ b/src/lib/Backspace.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'backspace'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/BadgeCheck.svelte b/src/lib/BadgeCheck.svelte index 09cbc922..a32416e6 100644 --- a/src/lib/BadgeCheck.svelte +++ b/src/lib/BadgeCheck.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'badge check'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Ban.svelte b/src/lib/Ban.svelte index 0f5631c0..d7e67dfd 100644 --- a/src/lib/Ban.svelte +++ b/src/lib/Ban.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'ban'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Beaker.svelte b/src/lib/Beaker.svelte index 07ba260f..b4b51391 100644 --- a/src/lib/Beaker.svelte +++ b/src/lib/Beaker.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'beaker'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Bell.svelte b/src/lib/Bell.svelte index 00181be6..0ca51b26 100644 --- a/src/lib/Bell.svelte +++ b/src/lib/Bell.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'bell'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/BookOpen.svelte b/src/lib/BookOpen.svelte index b4d4de54..202a0037 100644 --- a/src/lib/BookOpen.svelte +++ b/src/lib/BookOpen.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'book open'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Bookmark.svelte b/src/lib/Bookmark.svelte index ae68b311..a563193d 100644 --- a/src/lib/Bookmark.svelte +++ b/src/lib/Bookmark.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'bookmark'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/BookmarkAlt.svelte b/src/lib/BookmarkAlt.svelte index 4010be84..7bd6a5c2 100644 --- a/src/lib/BookmarkAlt.svelte +++ b/src/lib/BookmarkAlt.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'bookmark alt'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Briefcase.svelte b/src/lib/Briefcase.svelte index ae4fc345..6816b6ee 100644 --- a/src/lib/Briefcase.svelte +++ b/src/lib/Briefcase.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'briefcase'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Cake.svelte b/src/lib/Cake.svelte index 69fb2b63..d5ec20b3 100644 --- a/src/lib/Cake.svelte +++ b/src/lib/Cake.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'cake'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Calculator.svelte b/src/lib/Calculator.svelte index 992fbf82..6fbe84d7 100644 --- a/src/lib/Calculator.svelte +++ b/src/lib/Calculator.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'calculator'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Calendar.svelte b/src/lib/Calendar.svelte index 7a6af93b..85ec5817 100644 --- a/src/lib/Calendar.svelte +++ b/src/lib/Calendar.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'calendar'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Camera.svelte b/src/lib/Camera.svelte index a5b9ed53..6d3e094f 100644 --- a/src/lib/Camera.svelte +++ b/src/lib/Camera.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'camera'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Cash.svelte b/src/lib/Cash.svelte index 39bb518c..6409bf5e 100644 --- a/src/lib/Cash.svelte +++ b/src/lib/Cash.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'cash'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ChartBar.svelte b/src/lib/ChartBar.svelte index f11fe3a1..9d34da15 100644 --- a/src/lib/ChartBar.svelte +++ b/src/lib/ChartBar.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'chart bar'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ChartPie.svelte b/src/lib/ChartPie.svelte index 757a9337..00567e8b 100644 --- a/src/lib/ChartPie.svelte +++ b/src/lib/ChartPie.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'chart pie'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ChartSquareBar.svelte b/src/lib/ChartSquareBar.svelte index 4f69fd17..8f243cda 100644 --- a/src/lib/ChartSquareBar.svelte +++ b/src/lib/ChartSquareBar.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'chart square bar'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Chat.svelte b/src/lib/Chat.svelte index 3c417fbe..1d7baaa9 100644 --- a/src/lib/Chat.svelte +++ b/src/lib/Chat.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'chat'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ChatAlt.svelte b/src/lib/ChatAlt.svelte index ad4c1bce..af1d4549 100644 --- a/src/lib/ChatAlt.svelte +++ b/src/lib/ChatAlt.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'chat alt'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ChatAlt2.svelte b/src/lib/ChatAlt2.svelte index 84c4e84a..48ef3f5c 100644 --- a/src/lib/ChatAlt2.svelte +++ b/src/lib/ChatAlt2.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'chat alt 2'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Check.svelte b/src/lib/Check.svelte index fbadffa4..bae52f97 100644 --- a/src/lib/Check.svelte +++ b/src/lib/Check.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'check'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/CheckCircle.svelte b/src/lib/CheckCircle.svelte index e8857917..df7e5e2e 100644 --- a/src/lib/CheckCircle.svelte +++ b/src/lib/CheckCircle.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'check circle'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ChevronDoubleDown.svelte b/src/lib/ChevronDoubleDown.svelte index 54461bf1..cc08bcf1 100644 --- a/src/lib/ChevronDoubleDown.svelte +++ b/src/lib/ChevronDoubleDown.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'chevron double down'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ChevronDoubleLeft.svelte b/src/lib/ChevronDoubleLeft.svelte index dc6c4016..9e0bf7f4 100644 --- a/src/lib/ChevronDoubleLeft.svelte +++ b/src/lib/ChevronDoubleLeft.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'chevron double left'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ChevronDoubleRight.svelte b/src/lib/ChevronDoubleRight.svelte index e4be36a3..eabe1473 100644 --- a/src/lib/ChevronDoubleRight.svelte +++ b/src/lib/ChevronDoubleRight.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'chevron double right'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ChevronDoubleUp.svelte b/src/lib/ChevronDoubleUp.svelte index a401f0a4..1992badc 100644 --- a/src/lib/ChevronDoubleUp.svelte +++ b/src/lib/ChevronDoubleUp.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'chevron double up'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ChevronDown.svelte b/src/lib/ChevronDown.svelte index d898af0f..5450d015 100644 --- a/src/lib/ChevronDown.svelte +++ b/src/lib/ChevronDown.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'chevron down'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ChevronLeft.svelte b/src/lib/ChevronLeft.svelte index 81692e4c..c6567265 100644 --- a/src/lib/ChevronLeft.svelte +++ b/src/lib/ChevronLeft.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'chevron left'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ChevronRight.svelte b/src/lib/ChevronRight.svelte index 3c91cae4..c9d07e08 100644 --- a/src/lib/ChevronRight.svelte +++ b/src/lib/ChevronRight.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'chevron right'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ChevronUp.svelte b/src/lib/ChevronUp.svelte index 1a53c239..4e74f509 100644 --- a/src/lib/ChevronUp.svelte +++ b/src/lib/ChevronUp.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'chevron up'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Chip.svelte b/src/lib/Chip.svelte index a9c06cce..d2efb889 100644 --- a/src/lib/Chip.svelte +++ b/src/lib/Chip.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'chip'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Clipboard.svelte b/src/lib/Clipboard.svelte index fce9885d..8b17e4c3 100644 --- a/src/lib/Clipboard.svelte +++ b/src/lib/Clipboard.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'clipboard'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ClipboardCheck.svelte b/src/lib/ClipboardCheck.svelte index 72f1f9f9..5768609c 100644 --- a/src/lib/ClipboardCheck.svelte +++ b/src/lib/ClipboardCheck.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'clipboard check'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ClipboardCopy.svelte b/src/lib/ClipboardCopy.svelte index 4c91f60c..9284f650 100644 --- a/src/lib/ClipboardCopy.svelte +++ b/src/lib/ClipboardCopy.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'clipboard copy'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ClipboardList.svelte b/src/lib/ClipboardList.svelte index c2aea654..dc296aa6 100644 --- a/src/lib/ClipboardList.svelte +++ b/src/lib/ClipboardList.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'clipboard list'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Clock.svelte b/src/lib/Clock.svelte index e897a361..d7f8c001 100644 --- a/src/lib/Clock.svelte +++ b/src/lib/Clock.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'clock'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Cloud.svelte b/src/lib/Cloud.svelte index b18db2fb..52784756 100644 --- a/src/lib/Cloud.svelte +++ b/src/lib/Cloud.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'cloud'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/CloudDownload.svelte b/src/lib/CloudDownload.svelte index ee0e34d9..5ea0ab22 100644 --- a/src/lib/CloudDownload.svelte +++ b/src/lib/CloudDownload.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'cloud download'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/CloudUpload.svelte b/src/lib/CloudUpload.svelte index a52094b3..ce216a95 100644 --- a/src/lib/CloudUpload.svelte +++ b/src/lib/CloudUpload.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'cloud upload'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Code.svelte b/src/lib/Code.svelte index 6a7e35e1..13b12e15 100644 --- a/src/lib/Code.svelte +++ b/src/lib/Code.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'code'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Cog.svelte b/src/lib/Cog.svelte index c8df0c46..3b31ae21 100644 --- a/src/lib/Cog.svelte +++ b/src/lib/Cog.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'cog'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Collection.svelte b/src/lib/Collection.svelte index bf21d168..b55a0787 100644 --- a/src/lib/Collection.svelte +++ b/src/lib/Collection.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'collection'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ColorSwatch.svelte b/src/lib/ColorSwatch.svelte index 882fdaa1..c65cbe18 100644 --- a/src/lib/ColorSwatch.svelte +++ b/src/lib/ColorSwatch.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'color swatch'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/CreditCard.svelte b/src/lib/CreditCard.svelte index 991238ad..fe04a7ba 100644 --- a/src/lib/CreditCard.svelte +++ b/src/lib/CreditCard.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'credit card'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Cube.svelte b/src/lib/Cube.svelte index 0004cb92..abbdc9af 100644 --- a/src/lib/Cube.svelte +++ b/src/lib/Cube.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'cube'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/CubeTransparent.svelte b/src/lib/CubeTransparent.svelte index f7b10d55..4aa6108b 100644 --- a/src/lib/CubeTransparent.svelte +++ b/src/lib/CubeTransparent.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'cube transparent'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/CurrencyBangladeshi.svelte b/src/lib/CurrencyBangladeshi.svelte index 6bffcc8f..86379a97 100644 --- a/src/lib/CurrencyBangladeshi.svelte +++ b/src/lib/CurrencyBangladeshi.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'currency bangladeshi'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/CurrencyDollar.svelte b/src/lib/CurrencyDollar.svelte index 703bb91b..7515e845 100644 --- a/src/lib/CurrencyDollar.svelte +++ b/src/lib/CurrencyDollar.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'currency dollar'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/CurrencyEuro.svelte b/src/lib/CurrencyEuro.svelte index d13ec5c5..4526ec0a 100644 --- a/src/lib/CurrencyEuro.svelte +++ b/src/lib/CurrencyEuro.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'currency euro'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/CurrencyPound.svelte b/src/lib/CurrencyPound.svelte index acc8e5b3..4efa980f 100644 --- a/src/lib/CurrencyPound.svelte +++ b/src/lib/CurrencyPound.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'currency pound'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/CurrencyRupee.svelte b/src/lib/CurrencyRupee.svelte index a8e9e73e..f4b4f5d9 100644 --- a/src/lib/CurrencyRupee.svelte +++ b/src/lib/CurrencyRupee.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'currency rupee'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/CurrencyYen.svelte b/src/lib/CurrencyYen.svelte index e19991e6..0005db4f 100644 --- a/src/lib/CurrencyYen.svelte +++ b/src/lib/CurrencyYen.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'currency yen'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/CursorClick.svelte b/src/lib/CursorClick.svelte index e0d9e8d2..d6f7ec53 100644 --- a/src/lib/CursorClick.svelte +++ b/src/lib/CursorClick.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'cursor click'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Database.svelte b/src/lib/Database.svelte index 188d99ea..68880387 100644 --- a/src/lib/Database.svelte +++ b/src/lib/Database.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'database'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/DesktopComputer.svelte b/src/lib/DesktopComputer.svelte index 151a7ce6..0f31c961 100644 --- a/src/lib/DesktopComputer.svelte +++ b/src/lib/DesktopComputer.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'desktop computer'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/DeviceMobile.svelte b/src/lib/DeviceMobile.svelte index 9768ab7d..1ac09fd0 100644 --- a/src/lib/DeviceMobile.svelte +++ b/src/lib/DeviceMobile.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'device mobile'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/DeviceTablet.svelte b/src/lib/DeviceTablet.svelte index 6ec9c58a..67b23a9b 100644 --- a/src/lib/DeviceTablet.svelte +++ b/src/lib/DeviceTablet.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'device tablet'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Document.svelte b/src/lib/Document.svelte index aec8e92a..5b88379b 100644 --- a/src/lib/Document.svelte +++ b/src/lib/Document.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'document'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/DocumentAdd.svelte b/src/lib/DocumentAdd.svelte index f621074b..27166458 100644 --- a/src/lib/DocumentAdd.svelte +++ b/src/lib/DocumentAdd.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'document add'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/DocumentDownload.svelte b/src/lib/DocumentDownload.svelte index 8d3d4e1c..617bd66d 100644 --- a/src/lib/DocumentDownload.svelte +++ b/src/lib/DocumentDownload.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'document download'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/DocumentDuplicate.svelte b/src/lib/DocumentDuplicate.svelte index 649190e6..2e1f2317 100644 --- a/src/lib/DocumentDuplicate.svelte +++ b/src/lib/DocumentDuplicate.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'document duplicate'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/DocumentRemove.svelte b/src/lib/DocumentRemove.svelte index 1ece44d6..8ec55b49 100644 --- a/src/lib/DocumentRemove.svelte +++ b/src/lib/DocumentRemove.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'document remove'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/DocumentReport.svelte b/src/lib/DocumentReport.svelte index 93d1493f..cda17e0f 100644 --- a/src/lib/DocumentReport.svelte +++ b/src/lib/DocumentReport.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'document report'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/DocumentSearch.svelte b/src/lib/DocumentSearch.svelte index 7907659b..a6329cdd 100644 --- a/src/lib/DocumentSearch.svelte +++ b/src/lib/DocumentSearch.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'document search'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/DocumentText.svelte b/src/lib/DocumentText.svelte index c683a6f3..18c82f4a 100644 --- a/src/lib/DocumentText.svelte +++ b/src/lib/DocumentText.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'document text'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/DotsCircleHorizontal.svelte b/src/lib/DotsCircleHorizontal.svelte index 68f71b94..ccfd6736 100644 --- a/src/lib/DotsCircleHorizontal.svelte +++ b/src/lib/DotsCircleHorizontal.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'dots circle horizontal'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/DotsHorizontal.svelte b/src/lib/DotsHorizontal.svelte index 97bed981..bd314e40 100644 --- a/src/lib/DotsHorizontal.svelte +++ b/src/lib/DotsHorizontal.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'dots horizontal'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/DotsVertical.svelte b/src/lib/DotsVertical.svelte index 037e3ef0..d7ae4552 100644 --- a/src/lib/DotsVertical.svelte +++ b/src/lib/DotsVertical.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'dots vertical'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Download.svelte b/src/lib/Download.svelte index a8044664..457a29d1 100644 --- a/src/lib/Download.svelte +++ b/src/lib/Download.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'download'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Duplicate.svelte b/src/lib/Duplicate.svelte index 437e9d57..93fc9686 100644 --- a/src/lib/Duplicate.svelte +++ b/src/lib/Duplicate.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'duplicate'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/EmojiHappy.svelte b/src/lib/EmojiHappy.svelte index 8f1772b0..1f099c4f 100644 --- a/src/lib/EmojiHappy.svelte +++ b/src/lib/EmojiHappy.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'emoji happy'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/EmojiSad.svelte b/src/lib/EmojiSad.svelte index be684e08..247b9dad 100644 --- a/src/lib/EmojiSad.svelte +++ b/src/lib/EmojiSad.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'emoji sad'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Exclamation.svelte b/src/lib/Exclamation.svelte index 67027b05..d28e8711 100644 --- a/src/lib/Exclamation.svelte +++ b/src/lib/Exclamation.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'exclamation'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ExclamationCircle.svelte b/src/lib/ExclamationCircle.svelte index e4428fea..83100057 100644 --- a/src/lib/ExclamationCircle.svelte +++ b/src/lib/ExclamationCircle.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'exclamation circle'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ExternalLink.svelte b/src/lib/ExternalLink.svelte index 66a7e76a..d5e33934 100644 --- a/src/lib/ExternalLink.svelte +++ b/src/lib/ExternalLink.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'external link'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Eye.svelte b/src/lib/Eye.svelte index 177d9806..f0c9d3f2 100644 --- a/src/lib/Eye.svelte +++ b/src/lib/Eye.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'eye'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/EyeOff.svelte b/src/lib/EyeOff.svelte index 7d3c9d04..752ff701 100644 --- a/src/lib/EyeOff.svelte +++ b/src/lib/EyeOff.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'eye off'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/FastForward.svelte b/src/lib/FastForward.svelte index fad4d7e0..32018542 100644 --- a/src/lib/FastForward.svelte +++ b/src/lib/FastForward.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'fast forward'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Film.svelte b/src/lib/Film.svelte index 6b00307a..8b8d208f 100644 --- a/src/lib/Film.svelte +++ b/src/lib/Film.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'film'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Filter.svelte b/src/lib/Filter.svelte index 26e88c12..f24e6b93 100644 --- a/src/lib/Filter.svelte +++ b/src/lib/Filter.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'filter'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/FingerPrint.svelte b/src/lib/FingerPrint.svelte index 4960e773..066f7365 100644 --- a/src/lib/FingerPrint.svelte +++ b/src/lib/FingerPrint.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'finger print'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Fire.svelte b/src/lib/Fire.svelte index f98a9f54..3abe161f 100644 --- a/src/lib/Fire.svelte +++ b/src/lib/Fire.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'fire'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Flag.svelte b/src/lib/Flag.svelte index 78ad14d5..4a65352b 100644 --- a/src/lib/Flag.svelte +++ b/src/lib/Flag.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'flag'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Folder.svelte b/src/lib/Folder.svelte index c594f342..8bdbf3f3 100644 --- a/src/lib/Folder.svelte +++ b/src/lib/Folder.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'folder'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/FolderAdd.svelte b/src/lib/FolderAdd.svelte index eb022652..ee794fef 100644 --- a/src/lib/FolderAdd.svelte +++ b/src/lib/FolderAdd.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'folder add'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/FolderDownload.svelte b/src/lib/FolderDownload.svelte index c45740c2..86472a44 100644 --- a/src/lib/FolderDownload.svelte +++ b/src/lib/FolderDownload.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'folder download'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/FolderOpen.svelte b/src/lib/FolderOpen.svelte index 89a9836b..9fc685db 100644 --- a/src/lib/FolderOpen.svelte +++ b/src/lib/FolderOpen.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'folder open'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/FolderRemove.svelte b/src/lib/FolderRemove.svelte index 6385abcb..72e12706 100644 --- a/src/lib/FolderRemove.svelte +++ b/src/lib/FolderRemove.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'folder remove'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Gift.svelte b/src/lib/Gift.svelte index c0b5ed81..25655c90 100644 --- a/src/lib/Gift.svelte +++ b/src/lib/Gift.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'gift'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Globe.svelte b/src/lib/Globe.svelte index 7a6fdbde..c5b9ab39 100644 --- a/src/lib/Globe.svelte +++ b/src/lib/Globe.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'globe'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/GlobeAlt.svelte b/src/lib/GlobeAlt.svelte index 2fe925e9..f75c5afd 100644 --- a/src/lib/GlobeAlt.svelte +++ b/src/lib/GlobeAlt.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'globe alt'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Hand.svelte b/src/lib/Hand.svelte index ac980992..4dcfc7be 100644 --- a/src/lib/Hand.svelte +++ b/src/lib/Hand.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'hand'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Hashtag.svelte b/src/lib/Hashtag.svelte index 960e25d9..2c82ab98 100644 --- a/src/lib/Hashtag.svelte +++ b/src/lib/Hashtag.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'hashtag'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Heart.svelte b/src/lib/Heart.svelte index dcafb8f4..4840fcf8 100644 --- a/src/lib/Heart.svelte +++ b/src/lib/Heart.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'heart'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Home.svelte b/src/lib/Home.svelte index 6e008d1a..f694e48c 100644 --- a/src/lib/Home.svelte +++ b/src/lib/Home.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'home'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Identification.svelte b/src/lib/Identification.svelte index 0c1f6351..c2689da1 100644 --- a/src/lib/Identification.svelte +++ b/src/lib/Identification.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'identification'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Inbox.svelte b/src/lib/Inbox.svelte index 4e75748f..78de86b0 100644 --- a/src/lib/Inbox.svelte +++ b/src/lib/Inbox.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'inbox'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/InboxIn.svelte b/src/lib/InboxIn.svelte index 778dd861..98a63761 100644 --- a/src/lib/InboxIn.svelte +++ b/src/lib/InboxIn.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'inbox in'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/InformationCircle.svelte b/src/lib/InformationCircle.svelte index c6efb039..41cd1b0a 100644 --- a/src/lib/InformationCircle.svelte +++ b/src/lib/InformationCircle.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'information circle'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Key.svelte b/src/lib/Key.svelte index 5535b685..78a92763 100644 --- a/src/lib/Key.svelte +++ b/src/lib/Key.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'key'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Library.svelte b/src/lib/Library.svelte index d63bdc31..6d843008 100644 --- a/src/lib/Library.svelte +++ b/src/lib/Library.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'library'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/LightBulb.svelte b/src/lib/LightBulb.svelte index 3af153c0..d0821aa5 100644 --- a/src/lib/LightBulb.svelte +++ b/src/lib/LightBulb.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'light bulb'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/LightningBolt.svelte b/src/lib/LightningBolt.svelte index 495afbea..dddeb58b 100644 --- a/src/lib/LightningBolt.svelte +++ b/src/lib/LightningBolt.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'lightning bolt'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Link.svelte b/src/lib/Link.svelte index 47060ecf..bb6dc2f4 100644 --- a/src/lib/Link.svelte +++ b/src/lib/Link.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'link'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/LocationMarker.svelte b/src/lib/LocationMarker.svelte index c9f1e31c..396a1f8a 100644 --- a/src/lib/LocationMarker.svelte +++ b/src/lib/LocationMarker.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'location marker'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/LockClosed.svelte b/src/lib/LockClosed.svelte index e635eb15..8faaa26c 100644 --- a/src/lib/LockClosed.svelte +++ b/src/lib/LockClosed.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'lock closed'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/LockOpen.svelte b/src/lib/LockOpen.svelte index 4fcbc3d3..47e9e8aa 100644 --- a/src/lib/LockOpen.svelte +++ b/src/lib/LockOpen.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'lock open'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Login.svelte b/src/lib/Login.svelte index a53c73de..ae5e73b2 100644 --- a/src/lib/Login.svelte +++ b/src/lib/Login.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'login'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Logout.svelte b/src/lib/Logout.svelte index a539c1e1..3c7b1b60 100644 --- a/src/lib/Logout.svelte +++ b/src/lib/Logout.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'logout'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Mail.svelte b/src/lib/Mail.svelte index 2b6bc3dd..ba5cf6e2 100644 --- a/src/lib/Mail.svelte +++ b/src/lib/Mail.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'mail'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/MailOpen.svelte b/src/lib/MailOpen.svelte index fef1b5c1..0422acce 100644 --- a/src/lib/MailOpen.svelte +++ b/src/lib/MailOpen.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'mail open'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Map.svelte b/src/lib/Map.svelte index 95ba45f3..2b6d2f30 100644 --- a/src/lib/Map.svelte +++ b/src/lib/Map.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'map'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Menu.svelte b/src/lib/Menu.svelte index 888c58e0..2f4ad279 100644 --- a/src/lib/Menu.svelte +++ b/src/lib/Menu.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'menu'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/MenuAlt1.svelte b/src/lib/MenuAlt1.svelte index b3a3ee1d..da188bc8 100644 --- a/src/lib/MenuAlt1.svelte +++ b/src/lib/MenuAlt1.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'menu alt 1'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/MenuAlt2.svelte b/src/lib/MenuAlt2.svelte index 9271b3b4..d568495f 100644 --- a/src/lib/MenuAlt2.svelte +++ b/src/lib/MenuAlt2.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'menu alt 2'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/MenuAlt3.svelte b/src/lib/MenuAlt3.svelte index e1192ba9..b8b64bbb 100644 --- a/src/lib/MenuAlt3.svelte +++ b/src/lib/MenuAlt3.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'menu alt 3'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/MenuAlt4.svelte b/src/lib/MenuAlt4.svelte index 713cd42a..241b08ba 100644 --- a/src/lib/MenuAlt4.svelte +++ b/src/lib/MenuAlt4.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'menu alt 4'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Microphone.svelte b/src/lib/Microphone.svelte index ffccbedd..2d50d146 100644 --- a/src/lib/Microphone.svelte +++ b/src/lib/Microphone.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'microphone'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Minus.svelte b/src/lib/Minus.svelte index 5c8947cc..f1b8483c 100644 --- a/src/lib/Minus.svelte +++ b/src/lib/Minus.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'minus'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/MinusCircle.svelte b/src/lib/MinusCircle.svelte index db78d494..581d741a 100644 --- a/src/lib/MinusCircle.svelte +++ b/src/lib/MinusCircle.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'minus circle'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/MinusSm.svelte b/src/lib/MinusSm.svelte index 969b1169..c070b9fe 100644 --- a/src/lib/MinusSm.svelte +++ b/src/lib/MinusSm.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'minus sm'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Moon.svelte b/src/lib/Moon.svelte index 00277cd9..30784405 100644 --- a/src/lib/Moon.svelte +++ b/src/lib/Moon.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'moon'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/MusicNote.svelte b/src/lib/MusicNote.svelte index 16069133..2eb6763d 100644 --- a/src/lib/MusicNote.svelte +++ b/src/lib/MusicNote.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'music note'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Newspaper.svelte b/src/lib/Newspaper.svelte index 4cb0ce0d..b3678d15 100644 --- a/src/lib/Newspaper.svelte +++ b/src/lib/Newspaper.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'newspaper'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/OfficeBuilding.svelte b/src/lib/OfficeBuilding.svelte index e17fb19b..b30f94f9 100644 --- a/src/lib/OfficeBuilding.svelte +++ b/src/lib/OfficeBuilding.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'office building'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/PaperAirplane.svelte b/src/lib/PaperAirplane.svelte index cf5b94f8..58784f11 100644 --- a/src/lib/PaperAirplane.svelte +++ b/src/lib/PaperAirplane.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'paper airplane'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/PaperClip.svelte b/src/lib/PaperClip.svelte index 7b3766cc..1c52d3ef 100644 --- a/src/lib/PaperClip.svelte +++ b/src/lib/PaperClip.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'paper clip'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Pause.svelte b/src/lib/Pause.svelte index 605a24e4..22d234af 100644 --- a/src/lib/Pause.svelte +++ b/src/lib/Pause.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'pause'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Pencil.svelte b/src/lib/Pencil.svelte index d9f19f55..f44d8b9f 100644 --- a/src/lib/Pencil.svelte +++ b/src/lib/Pencil.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'pencil'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/PencilAlt.svelte b/src/lib/PencilAlt.svelte index b8e6b220..0d9436a7 100644 --- a/src/lib/PencilAlt.svelte +++ b/src/lib/PencilAlt.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'pencil alt'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Phone.svelte b/src/lib/Phone.svelte index 311c3ce5..3822d9f7 100644 --- a/src/lib/Phone.svelte +++ b/src/lib/Phone.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'phone'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/PhoneIncoming.svelte b/src/lib/PhoneIncoming.svelte index fc859682..5ab61405 100644 --- a/src/lib/PhoneIncoming.svelte +++ b/src/lib/PhoneIncoming.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'phone incoming'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/PhoneMissedCall.svelte b/src/lib/PhoneMissedCall.svelte index 3d16fc2d..b83effbe 100644 --- a/src/lib/PhoneMissedCall.svelte +++ b/src/lib/PhoneMissedCall.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'phone missed call'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/PhoneOutgoing.svelte b/src/lib/PhoneOutgoing.svelte index 14c01bda..10531622 100644 --- a/src/lib/PhoneOutgoing.svelte +++ b/src/lib/PhoneOutgoing.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'phone outgoing'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Photograph.svelte b/src/lib/Photograph.svelte index 34241b6e..216697a8 100644 --- a/src/lib/Photograph.svelte +++ b/src/lib/Photograph.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'photograph'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Play.svelte b/src/lib/Play.svelte index d01d9313..26aa18f9 100644 --- a/src/lib/Play.svelte +++ b/src/lib/Play.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'play'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Plus.svelte b/src/lib/Plus.svelte index 88fd550f..ccbff0bb 100644 --- a/src/lib/Plus.svelte +++ b/src/lib/Plus.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'plus'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/PlusCircle.svelte b/src/lib/PlusCircle.svelte index 10db115b..44c5f1d9 100644 --- a/src/lib/PlusCircle.svelte +++ b/src/lib/PlusCircle.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'plus circle'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/PlusSm.svelte b/src/lib/PlusSm.svelte index 59f9b6d9..b6f13786 100644 --- a/src/lib/PlusSm.svelte +++ b/src/lib/PlusSm.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'plus sm'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/PresentationChartBar.svelte b/src/lib/PresentationChartBar.svelte index 78301920..00fc8416 100644 --- a/src/lib/PresentationChartBar.svelte +++ b/src/lib/PresentationChartBar.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'presentation chart bar'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/PresentationChartLine.svelte b/src/lib/PresentationChartLine.svelte index ebbcd7c9..9abdc67f 100644 --- a/src/lib/PresentationChartLine.svelte +++ b/src/lib/PresentationChartLine.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'presentation chart line'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Printer.svelte b/src/lib/Printer.svelte index e3a618dd..bf07abbc 100644 --- a/src/lib/Printer.svelte +++ b/src/lib/Printer.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'printer'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Puzzle.svelte b/src/lib/Puzzle.svelte index 63f5d1be..46fe7aed 100644 --- a/src/lib/Puzzle.svelte +++ b/src/lib/Puzzle.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'puzzle'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Qrcode.svelte b/src/lib/Qrcode.svelte index e7611657..578f8416 100644 --- a/src/lib/Qrcode.svelte +++ b/src/lib/Qrcode.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'qrcode'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/QuestionMarkCircle.svelte b/src/lib/QuestionMarkCircle.svelte index d709033d..0be2c4e7 100644 --- a/src/lib/QuestionMarkCircle.svelte +++ b/src/lib/QuestionMarkCircle.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'question mark circle'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ReceiptRefund.svelte b/src/lib/ReceiptRefund.svelte index 6aa0cb07..23f5cbfb 100644 --- a/src/lib/ReceiptRefund.svelte +++ b/src/lib/ReceiptRefund.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'receipt refund'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ReceiptTax.svelte b/src/lib/ReceiptTax.svelte index fc06c672..1a7f8363 100644 --- a/src/lib/ReceiptTax.svelte +++ b/src/lib/ReceiptTax.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'receipt tax'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Refresh.svelte b/src/lib/Refresh.svelte index a31ec76d..b0e1f010 100644 --- a/src/lib/Refresh.svelte +++ b/src/lib/Refresh.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'refresh'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Reply.svelte b/src/lib/Reply.svelte index 75de2c3b..430bd7f0 100644 --- a/src/lib/Reply.svelte +++ b/src/lib/Reply.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'reply'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Rewind.svelte b/src/lib/Rewind.svelte index 56f41be4..75483d5e 100644 --- a/src/lib/Rewind.svelte +++ b/src/lib/Rewind.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'rewind'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Rss.svelte b/src/lib/Rss.svelte index 0c01d995..424c7a55 100644 --- a/src/lib/Rss.svelte +++ b/src/lib/Rss.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'rss'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Save.svelte b/src/lib/Save.svelte index 21d2ca7d..f9b1c868 100644 --- a/src/lib/Save.svelte +++ b/src/lib/Save.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'save'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/SaveAs.svelte b/src/lib/SaveAs.svelte index 0d852011..891bb52b 100644 --- a/src/lib/SaveAs.svelte +++ b/src/lib/SaveAs.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'save as'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Scale.svelte b/src/lib/Scale.svelte index 2c41ad40..bfa82e3b 100644 --- a/src/lib/Scale.svelte +++ b/src/lib/Scale.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'scale'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Scissors.svelte b/src/lib/Scissors.svelte index bcb38ff9..7492db25 100644 --- a/src/lib/Scissors.svelte +++ b/src/lib/Scissors.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'scissors'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Search.svelte b/src/lib/Search.svelte index a797c1d1..52eb2d20 100644 --- a/src/lib/Search.svelte +++ b/src/lib/Search.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'search'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/SearchCircle.svelte b/src/lib/SearchCircle.svelte index fbbaa30e..202cec37 100644 --- a/src/lib/SearchCircle.svelte +++ b/src/lib/SearchCircle.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'search circle'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Selector.svelte b/src/lib/Selector.svelte index 686dc0fe..12b0182d 100644 --- a/src/lib/Selector.svelte +++ b/src/lib/Selector.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'selector'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Server.svelte b/src/lib/Server.svelte index 63ba6f23..703529dd 100644 --- a/src/lib/Server.svelte +++ b/src/lib/Server.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'server'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Share.svelte b/src/lib/Share.svelte index 3f2cf7ba..019d9784 100644 --- a/src/lib/Share.svelte +++ b/src/lib/Share.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'share'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ShieldCheck.svelte b/src/lib/ShieldCheck.svelte index c250197a..2e460b4c 100644 --- a/src/lib/ShieldCheck.svelte +++ b/src/lib/ShieldCheck.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'shield check'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ShieldExclamation.svelte b/src/lib/ShieldExclamation.svelte index a52d8253..8011fefe 100644 --- a/src/lib/ShieldExclamation.svelte +++ b/src/lib/ShieldExclamation.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'shield exclamation'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ShoppingBag.svelte b/src/lib/ShoppingBag.svelte index 6fedf1a3..8aca399c 100644 --- a/src/lib/ShoppingBag.svelte +++ b/src/lib/ShoppingBag.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'shopping bag'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ShoppingCart.svelte b/src/lib/ShoppingCart.svelte index d30ffa70..6f5f8160 100644 --- a/src/lib/ShoppingCart.svelte +++ b/src/lib/ShoppingCart.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'shopping cart'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/SortAscending.svelte b/src/lib/SortAscending.svelte index 6cd228be..adbad251 100644 --- a/src/lib/SortAscending.svelte +++ b/src/lib/SortAscending.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'sort ascending'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/SortDescending.svelte b/src/lib/SortDescending.svelte index 5f7984c5..54d31b9e 100644 --- a/src/lib/SortDescending.svelte +++ b/src/lib/SortDescending.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'sort descending'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Sparkles.svelte b/src/lib/Sparkles.svelte index f7db747c..218dc3e3 100644 --- a/src/lib/Sparkles.svelte +++ b/src/lib/Sparkles.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'sparkles'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Speakerphone.svelte b/src/lib/Speakerphone.svelte index d830a321..4eba0e55 100644 --- a/src/lib/Speakerphone.svelte +++ b/src/lib/Speakerphone.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'speakerphone'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Star.svelte b/src/lib/Star.svelte index 8036c244..0459cad5 100644 --- a/src/lib/Star.svelte +++ b/src/lib/Star.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'star'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/StatusOffline.svelte b/src/lib/StatusOffline.svelte index 8ffde048..6f9a1083 100644 --- a/src/lib/StatusOffline.svelte +++ b/src/lib/StatusOffline.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'status offline'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/StatusOnline.svelte b/src/lib/StatusOnline.svelte index 1db685a2..6a6251e4 100644 --- a/src/lib/StatusOnline.svelte +++ b/src/lib/StatusOnline.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'status online'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Stop.svelte b/src/lib/Stop.svelte index 533a4ca8..b98e4516 100644 --- a/src/lib/Stop.svelte +++ b/src/lib/Stop.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'stop'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Sun.svelte b/src/lib/Sun.svelte index 39f537de..70e9946d 100644 --- a/src/lib/Sun.svelte +++ b/src/lib/Sun.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'sun'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Support.svelte b/src/lib/Support.svelte index 9f0ee4ed..0000d9e7 100644 --- a/src/lib/Support.svelte +++ b/src/lib/Support.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'support'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/SwitchHorizontal.svelte b/src/lib/SwitchHorizontal.svelte index 4bc47f35..0bf99b26 100644 --- a/src/lib/SwitchHorizontal.svelte +++ b/src/lib/SwitchHorizontal.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'switch horizontal'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/SwitchVertical.svelte b/src/lib/SwitchVertical.svelte index 70fbe4e2..b0b64e7c 100644 --- a/src/lib/SwitchVertical.svelte +++ b/src/lib/SwitchVertical.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'switch vertical'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Table.svelte b/src/lib/Table.svelte index 2f5ca925..10a53afb 100644 --- a/src/lib/Table.svelte +++ b/src/lib/Table.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'table'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Tag.svelte b/src/lib/Tag.svelte index be8214a1..eae58c9f 100644 --- a/src/lib/Tag.svelte +++ b/src/lib/Tag.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'tag'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Template.svelte b/src/lib/Template.svelte index a72dc681..fc7a406a 100644 --- a/src/lib/Template.svelte +++ b/src/lib/Template.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'template'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Terminal.svelte b/src/lib/Terminal.svelte index 0e3c56c4..1820e7f8 100644 --- a/src/lib/Terminal.svelte +++ b/src/lib/Terminal.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'terminal'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ThumbDown.svelte b/src/lib/ThumbDown.svelte index 4a95c398..05dc765e 100644 --- a/src/lib/ThumbDown.svelte +++ b/src/lib/ThumbDown.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'thumb down'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ThumbUp.svelte b/src/lib/ThumbUp.svelte index 2f17eca8..9a10c4c5 100644 --- a/src/lib/ThumbUp.svelte +++ b/src/lib/ThumbUp.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'thumb up'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Ticket.svelte b/src/lib/Ticket.svelte index 54fc857a..eb0cd5d8 100644 --- a/src/lib/Ticket.svelte +++ b/src/lib/Ticket.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'ticket'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Translate.svelte b/src/lib/Translate.svelte index 6f670f7b..1912759f 100644 --- a/src/lib/Translate.svelte +++ b/src/lib/Translate.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'translate'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Trash.svelte b/src/lib/Trash.svelte index 539fe438..85abee70 100644 --- a/src/lib/Trash.svelte +++ b/src/lib/Trash.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'trash'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/TrendingDown.svelte b/src/lib/TrendingDown.svelte index 08d4d734..56570dfb 100644 --- a/src/lib/TrendingDown.svelte +++ b/src/lib/TrendingDown.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'trending down'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/TrendingUp.svelte b/src/lib/TrendingUp.svelte index 2936e6c4..8d1217d2 100644 --- a/src/lib/TrendingUp.svelte +++ b/src/lib/TrendingUp.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'trending up'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Truck.svelte b/src/lib/Truck.svelte index bb7541a0..f3e4ab32 100644 --- a/src/lib/Truck.svelte +++ b/src/lib/Truck.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'truck'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Upload.svelte b/src/lib/Upload.svelte index 169ea4ee..061bd59a 100644 --- a/src/lib/Upload.svelte +++ b/src/lib/Upload.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'upload'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/User.svelte b/src/lib/User.svelte index 2175f457..3dd21994 100644 --- a/src/lib/User.svelte +++ b/src/lib/User.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'user'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/UserAdd.svelte b/src/lib/UserAdd.svelte index 3dbbe7e1..a6554241 100644 --- a/src/lib/UserAdd.svelte +++ b/src/lib/UserAdd.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'user add'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/UserCircle.svelte b/src/lib/UserCircle.svelte index 8d3361a3..2af0d930 100644 --- a/src/lib/UserCircle.svelte +++ b/src/lib/UserCircle.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'user circle'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/UserGroup.svelte b/src/lib/UserGroup.svelte index db596beb..7197a3ac 100644 --- a/src/lib/UserGroup.svelte +++ b/src/lib/UserGroup.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'user group'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/UserRemove.svelte b/src/lib/UserRemove.svelte index d5b76028..80a53c20 100644 --- a/src/lib/UserRemove.svelte +++ b/src/lib/UserRemove.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'user remove'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Users.svelte b/src/lib/Users.svelte index 74673b72..581fc6f8 100644 --- a/src/lib/Users.svelte +++ b/src/lib/Users.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'users'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Variable.svelte b/src/lib/Variable.svelte index 8d283c01..65fb6010 100644 --- a/src/lib/Variable.svelte +++ b/src/lib/Variable.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'variable'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/VideoCamera.svelte b/src/lib/VideoCamera.svelte index 6c4e7253..22f33203 100644 --- a/src/lib/VideoCamera.svelte +++ b/src/lib/VideoCamera.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'video camera'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ViewBoards.svelte b/src/lib/ViewBoards.svelte index 319ee527..e7a22285 100644 --- a/src/lib/ViewBoards.svelte +++ b/src/lib/ViewBoards.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'view boards'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ViewGrid.svelte b/src/lib/ViewGrid.svelte index 5c357160..468e0869 100644 --- a/src/lib/ViewGrid.svelte +++ b/src/lib/ViewGrid.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'view grid'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ViewGridAdd.svelte b/src/lib/ViewGridAdd.svelte index 36b17b1f..84dc9a1c 100644 --- a/src/lib/ViewGridAdd.svelte +++ b/src/lib/ViewGridAdd.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'view grid add'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ViewList.svelte b/src/lib/ViewList.svelte index c2f7646c..7baa1ccc 100644 --- a/src/lib/ViewList.svelte +++ b/src/lib/ViewList.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'view list'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/VolumeOff.svelte b/src/lib/VolumeOff.svelte index 1963957c..7a0fdb65 100644 --- a/src/lib/VolumeOff.svelte +++ b/src/lib/VolumeOff.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'volume off'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/VolumeUp.svelte b/src/lib/VolumeUp.svelte index fba29675..27dcfd93 100644 --- a/src/lib/VolumeUp.svelte +++ b/src/lib/VolumeUp.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'volume up'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/Wifi.svelte b/src/lib/Wifi.svelte index 872819ec..ab0a1df7 100644 --- a/src/lib/Wifi.svelte +++ b/src/lib/Wifi.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'wifi'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/X.svelte b/src/lib/X.svelte index b5c25615..272bc4bb 100644 --- a/src/lib/X.svelte +++ b/src/lib/X.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'x'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/XCircle.svelte b/src/lib/XCircle.svelte index 0b2cb4c4..12cf8e83 100644 --- a/src/lib/XCircle.svelte +++ b/src/lib/XCircle.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'x circle'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ZoomIn.svelte b/src/lib/ZoomIn.svelte index 98e86d7a..68c4a0ee 100644 --- a/src/lib/ZoomIn.svelte +++ b/src/lib/ZoomIn.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'zoom in'; + - {@html svgpath} + {@html svgpath} diff --git a/src/lib/ZoomOut.svelte b/src/lib/ZoomOut.svelte index 85575c75..145def65 100644 --- a/src/lib/ZoomOut.svelte +++ b/src/lib/ZoomOut.svelte @@ -1,31 +1,33 @@ + export let size = '24'; + export let color = 'currentColor'; + export let variation: 'solid' | 'outline' = 'outline'; + let svgpath: string; + let svgoutline = ` `; + let svgsolid = ` `; + $: switch (variation) { + case 'outline': + svgpath = svgoutline; + break; + case 'solid': + svgpath = svgsolid; + break; + default: + svgpath = svgoutline; + } + export let ariaLabel = 'zoom out'; + - {@html svgpath} + {@html svgpath} diff --git a/src/routes/__layout.svelte b/src/routes/__layout.svelte index 881d2ba8..2e511e00 100644 --- a/src/routes/__layout.svelte +++ b/src/routes/__layout.svelte @@ -1,5 +1,5 @@ diff --git a/src/routes/example1.svelte b/src/routes/example1.svelte index 854457ed..24acb771 100644 --- a/src/routes/example1.svelte +++ b/src/routes/example1.svelte @@ -1,9 +1,9 @@ diff --git a/src/routes/index.svelte b/src/routes/index.svelte index e1eb8ac4..ce9344b5 100644 --- a/src/routes/index.svelte +++ b/src/routes/index.svelte @@ -1,9 +1,9 @@

Hero icons

diff --git a/src/routes/outline.svelte b/src/routes/outline.svelte index 17072146..a164d57b 100644 --- a/src/routes/outline.svelte +++ b/src/routes/outline.svelte @@ -1,5 +1,5 @@ diff --git a/src/routes/solid-color.svelte b/src/routes/solid-color.svelte index 91e1ff27..a5ceb713 100644 --- a/src/routes/solid-color.svelte +++ b/src/routes/solid-color.svelte @@ -1,72 +1,32 @@ - - - - + + + + - - - - + + + + - + - + @@ -84,68 +44,28 @@ - + - - - - + + + + - + - - - + + + - + @@ -153,116 +73,36 @@ - - - - - - + + + + + + - - - + + + - - - - - - - - - + + + + + + + + + - - + + @@ -273,17 +113,9 @@ - + - + @@ -291,32 +123,16 @@ - + - + - + - + @@ -336,60 +152,28 @@ - - + + - - - + + + - + - - + + @@ -400,66 +184,26 @@ - + - + - - - + + + - + - - + + - - + + @@ -469,11 +213,7 @@ - + diff --git a/src/routes/solid.svelte b/src/routes/solid.svelte index 61ae212e..f63d78c7 100644 --- a/src/routes/solid.svelte +++ b/src/routes/solid.svelte @@ -1,5 +1,5 @@ diff --git a/svelte.config.js b/svelte.config.js index 63211b32..4cf2288c 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -1,17 +1,17 @@ -import preprocess from "svelte-preprocess"; -import adapter from "@sveltejs/adapter-auto"; +import preprocess from 'svelte-preprocess'; +import adapter from '@sveltejs/adapter-auto'; /** @type {import('@sveltejs/kit').Config} */ const config = { - kit: { - adapter: adapter(), - }, + kit: { + adapter: adapter() + }, - preprocess: [ - preprocess({ - postcss: true, - }), - ], + preprocess: [ + preprocess({ + postcss: true + }) + ] }; export default config; diff --git a/tailwind.config.cjs b/tailwind.config.cjs index ec34afe3..0f5280a6 100644 --- a/tailwind.config.cjs +++ b/tailwind.config.cjs @@ -1,11 +1,11 @@ const config = { - content: ["./src/**/*.{html,js,svelte,ts}"], + content: ['./src/**/*.{html,js,svelte,ts}'], - theme: { - extend: {}, - }, + theme: { + extend: {} + }, - plugins: [], + plugins: [] }; module.exports = config; diff --git a/tests/Icon.test.ts b/tests/Icon.test.ts index 064b48f6..939f6c4e 100644 --- a/tests/Icon.test.ts +++ b/tests/Icon.test.ts @@ -5,17 +5,17 @@ import { render, screen, cleanup } from '@testing-library/svelte'; afterEach(() => cleanup()); beforeEach(() => { - render(AcademicCap, { size: "40" }); + render(AcademicCap, { size: '40' }); }); test('should mount the path element', async () => { - const pathElement = screen.getByLabelText('svg-path'); + const pathElement = screen.getByLabelText('svg-path'); - expect(pathElement).toBeInTheDocument(); + expect(pathElement).toBeInTheDocument(); }); test('should have the correct d attribute passed in from baseEdgeProps', async () => { - const pathElement = screen.getByLabelText('svg-path'); + const pathElement = screen.getByLabelText('svg-path'); - expect(pathElement).toHaveAttribute('size', '40'); -}); \ No newline at end of file + expect(pathElement).toHaveAttribute('size', '40'); +});