From 6b2f56624132c3f1d54e4f1e3e2fdbb46db86993 Mon Sep 17 00:00:00 2001 From: Yannick Date: Thu, 20 Oct 2022 11:27:54 +0200 Subject: [PATCH 01/13] Rename legacy docs to "dl" --- .fantasticonrc.js | 2 +- {docs => dl}/Valkyrie.css | 0 {docs => dl}/fonts/Valkyrie.eot | Bin {docs => dl}/fonts/Valkyrie.ttf | Bin {docs => dl}/fonts/Valkyrie.woff | Bin {docs => dl}/fonts/Valkyrie.woff2 | Bin {docs => dl}/index.html | 0 package.json | 6 +++--- 8 files changed, 4 insertions(+), 4 deletions(-) rename {docs => dl}/Valkyrie.css (100%) rename {docs => dl}/fonts/Valkyrie.eot (100%) rename {docs => dl}/fonts/Valkyrie.ttf (100%) rename {docs => dl}/fonts/Valkyrie.woff (100%) rename {docs => dl}/fonts/Valkyrie.woff2 (100%) rename {docs => dl}/index.html (100%) diff --git a/.fantasticonrc.js b/.fantasticonrc.js index cf1d2c71..00e7df09 100644 --- a/.fantasticonrc.js +++ b/.fantasticonrc.js @@ -25,7 +25,7 @@ module.exports = { woff2: "./font/fonts/Valkyrie.woff2", css: "./font/Valkyrie.css", scss: "./font/Valkyrie.scss", - html: "./docs/index.html", + html: "./dl/index.html", json: "./font/valkyrie.json", }, }; diff --git a/docs/Valkyrie.css b/dl/Valkyrie.css similarity index 100% rename from docs/Valkyrie.css rename to dl/Valkyrie.css diff --git a/docs/fonts/Valkyrie.eot b/dl/fonts/Valkyrie.eot similarity index 100% rename from docs/fonts/Valkyrie.eot rename to dl/fonts/Valkyrie.eot diff --git a/docs/fonts/Valkyrie.ttf b/dl/fonts/Valkyrie.ttf similarity index 100% rename from docs/fonts/Valkyrie.ttf rename to dl/fonts/Valkyrie.ttf diff --git a/docs/fonts/Valkyrie.woff b/dl/fonts/Valkyrie.woff similarity index 100% rename from docs/fonts/Valkyrie.woff rename to dl/fonts/Valkyrie.woff diff --git a/docs/fonts/Valkyrie.woff2 b/dl/fonts/Valkyrie.woff2 similarity index 100% rename from docs/fonts/Valkyrie.woff2 rename to dl/fonts/Valkyrie.woff2 diff --git a/docs/index.html b/dl/index.html similarity index 100% rename from docs/index.html rename to dl/index.html diff --git a/package.json b/package.json index 1c9fb3b6..e04e0991 100644 --- a/package.json +++ b/package.json @@ -9,8 +9,8 @@ "build": "npm run build:esm && npm run build:cjs", "build:esm": "tsc", "build:cjs": "tsc --module commonjs --outDir dist/cjs", - "docs:fonts": "copyfiles -a \"font/fonts/*.*\" \"docs/fonts\" -f", - "docs:styles": "copyfiles -a \"font/Valkyrie.css\" \"docs/\" -f", + "dl:fonts": "copyfiles -a \"font/fonts/*.*\" \"dl/fonts\" -f", + "dl:styles": "copyfiles -a \"font/Valkyrie.css\" \"dl/\" -f", "fonts": "npm run fonts:generate", "fonts:generate": "fantasticon", "icons": "npm run icons:clean && npm run icons:ts", @@ -19,7 +19,7 @@ "icons:ts": "svg-to-ts-constants", "mellow": "svgo -f ./mellow -o ./mellow", "test": "echo \"Error: no test specified\" && exit 1", - "prod": "npm run icons && npm run fonts && npm run build && npm run scss && npm run docs:fonts && npm run docs:styles", + "prod": "npm run icons && npm run fonts && npm run build && npm run scss && npm run dl:fonts && npm run dl:styles", "scss": "npm run scss:compile && npm run scss:prefix", "scss:compile": "node-sass font -o font --output-style compressed", "scss:prefix": "postcss -u autoprefixer -r ./font/*.css --map" From 10fe3dffc18ed861834e3bffdd3f582562e0deea Mon Sep 17 00:00:00 2001 From: Yannick Date: Thu, 20 Oct 2022 11:30:54 +0200 Subject: [PATCH 02/13] Add Hugo and basic configuration --- .hugo_build.lock | 0 config.yml | 60 + package-lock.json | 2912 ++++++++++++++++++++++++++++++++++++++++++++- package.json | 3 + 4 files changed, 2946 insertions(+), 29 deletions(-) create mode 100644 .hugo_build.lock create mode 100644 config.yml diff --git a/.hugo_build.lock b/.hugo_build.lock new file mode 100644 index 00000000..e69de29b diff --git a/config.yml b/config.yml new file mode 100644 index 00000000..9acd1541 --- /dev/null +++ b/config.yml @@ -0,0 +1,60 @@ +languageCode: "en" +title: "Valkyrie" +baseURL: "https://sippy-platform.github.io/valkyrie" +enableInlineShortcodes: true +enableRobotsTXT: true +metaDataFormat: "yaml" +disableKinds: ["404", "taxonomy", "term", "RSS"] + +publishDir: "_site" + +security: + enableInlineShortcodes: true + funcs: + getenv: + - ^HUGO_ + +markup: + goldmark: + renderer: + unsafe: true + highlight: + noClasses: false + +module: + mounts: + - source: docs/assets + target: assets + - source: docs/content + target: content + - source: docs/data + target: data + - source: docs/layouts + target: layouts + - source: docs/static + target: static + - source: docs/static/assets/img/favicons/apple-touch-icon.png + target: static/apple-touch-icon.png + - source: docs/static/assets/img/favicons/favicon.png + target: static/favicon.png + - source: valkyrie.svg + target: static/valkyrie.svg + - source: icons + target: static/assets/icons + - source: font + target: static/assets/font + - source: node_modules/bootstrap/scss + target: assets/scss/bootstrap + - source: node_modules/bootstrap/dist/js/bootstrap.min.js + target: assets/js/bootstrap.min.js + +params: + description: "Open source SVG icon library from Sippy" + social_image_path: /assets/img/valkyrie-social.png + + version: "0.21.1" + + main: "https://sippy.cloud" + github_org: "https://github.com/sippy-platform" + repo: "https://github.com/sippy-platform/valkyrie" + icons_figma: "https://www.figma.com/community/file/1164522380895285426" diff --git a/package-lock.json b/package-lock.json index 3125d70b..f089ec47 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,9 +11,11 @@ "devDependencies": { "@types/react": "18.0.21", "autoprefixer": "10.4.12", + "bootstrap": "5.2.2", "bundle-scss": "1.5.1", "copyfiles": "2.4.1", "fantasticon": "1.2.3", + "hugo-bin": "0.92.3", "node-sass": "7.0.3", "nodemon": "2.0.20", "npm-run-all": "4.1.5", @@ -930,6 +932,26 @@ "node": ">=10" } }, + "node_modules/@popperjs/core": { + "version": "2.11.6", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz", + "integrity": "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==", + "dev": true, + "peer": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@sindresorhus/is": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", + "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/@tootallnate/once": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", @@ -1184,6 +1206,47 @@ "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", "dev": true }, + "node_modules/arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/archive-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz", + "integrity": "sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==", + "dev": true, + "dependencies": { + "file-type": "^4.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/archive-type/node_modules/file-type": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz", + "integrity": "sha512-f2UbFQEk7LXgWpi5ntcO86OeA/cC80fuDDDaX/fZ2ZGel+AF7leRQqBBW1eJNiiQkrZlAoM6P+VYP5P6bOlDEQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/are-we-there-yet": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", @@ -1409,6 +1472,178 @@ "tweetnacl": "^0.14.3" } }, + "node_modules/bin-check": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", + "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", + "dev": true, + "dependencies": { + "execa": "^0.7.0", + "executable": "^4.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-version": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz", + "integrity": "sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==", + "dev": true, + "dependencies": { + "execa": "^1.0.0", + "find-versions": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-version-check": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz", + "integrity": "sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==", + "dev": true, + "dependencies": { + "bin-version": "^3.0.0", + "semver": "^5.6.0", + "semver-truncate": "^1.1.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-version-check/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/bin-version/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/bin-version/node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-version/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-version/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-version/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/bin-version/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-version/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-version/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/bin-wrapper": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz", + "integrity": "sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q==", + "dev": true, + "dependencies": { + "bin-check": "^4.1.0", + "bin-version-check": "^4.0.0", + "download": "^7.1.0", + "import-lazy": "^3.1.0", + "os-filter-obj": "^2.0.0", + "pify": "^4.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-wrapper/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/binary-extensions": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", @@ -1467,6 +1702,25 @@ "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", "dev": true }, + "node_modules/bootstrap": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.2.2.tgz", + "integrity": "sha512-dEtzMTV71n6Fhmbg4fYJzQsw1N29hJKO1js5ackCgIpDcGid2ETMGC6zwSYw09v05Y+oRdQ9loC54zB1La3hHQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/twbs" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + } + ], + "peerDependencies": { + "@popperjs/core": "^2.11.6" + } + }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -1540,6 +1794,37 @@ "ieee754": "^1.1.13" } }, + "node_modules/buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "dev": true, + "dependencies": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "node_modules/buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", + "dev": true + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==", + "dev": true + }, "node_modules/bufferstreams": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/bufferstreams/-/bufferstreams-3.0.0.tgz", @@ -1624,6 +1909,36 @@ "node": ">= 10" } }, + "node_modules/cacheable-request": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", + "integrity": "sha512-vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ==", + "dev": true, + "dependencies": { + "clone-response": "1.0.2", + "get-stream": "3.0.0", + "http-cache-semantics": "3.8.1", + "keyv": "3.0.0", + "lowercase-keys": "1.0.0", + "normalize-url": "2.0.1", + "responselike": "1.0.2" + } + }, + "node_modules/cacheable-request/node_modules/http-cache-semantics": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", + "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==", + "dev": true + }, + "node_modules/cacheable-request/node_modules/lowercase-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", + "integrity": "sha512-RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/call-bind": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", @@ -1713,6 +2028,21 @@ "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", "dev": true }, + "node_modules/caw": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz", + "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==", + "dev": true, + "dependencies": { + "get-proxy": "^2.0.0", + "isurl": "^1.0.0-alpha5", + "tunnel-agent": "^0.6.0", + "url-to-options": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -1848,6 +2178,15 @@ "node": ">=0.8" } }, + "node_modules/clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==", + "dev": true, + "dependencies": { + "mimic-response": "^1.0.0" + } + }, "node_modules/clsx": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", @@ -1911,6 +2250,16 @@ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", "dev": true }, + "node_modules/config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "dev": true, + "dependencies": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, "node_modules/console-control-strings": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", @@ -1928,6 +2277,18 @@ "upper-case": "^2.0.2" } }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/convert-source-map": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", @@ -2133,6 +2494,175 @@ "node": ">=0.10.0" } }, + "node_modules/decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/decompress": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz", + "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==", + "dev": true, + "dependencies": { + "decompress-tar": "^4.0.0", + "decompress-tarbz2": "^4.0.0", + "decompress-targz": "^4.0.0", + "decompress-unzip": "^4.0.1", + "graceful-fs": "^4.1.10", + "make-dir": "^1.0.0", + "pify": "^2.3.0", + "strip-dirs": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", + "dev": true, + "dependencies": { + "mimic-response": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tar": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz", + "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==", + "dev": true, + "dependencies": { + "file-type": "^5.2.0", + "is-stream": "^1.1.0", + "tar-stream": "^1.5.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tar/node_modules/file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tarbz2": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz", + "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==", + "dev": true, + "dependencies": { + "decompress-tar": "^4.1.0", + "file-type": "^6.1.0", + "is-stream": "^1.1.0", + "seek-bzip": "^1.0.5", + "unbzip2-stream": "^1.0.9" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tarbz2/node_modules/file-type": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz", + "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-targz": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz", + "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==", + "dev": true, + "dependencies": { + "decompress-tar": "^4.1.1", + "file-type": "^5.2.0", + "is-stream": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-targz/node_modules/file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-unzip": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz", + "integrity": "sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==", + "dev": true, + "dependencies": { + "file-type": "^3.8.0", + "get-stream": "^2.2.0", + "pify": "^2.3.0", + "yauzl": "^2.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-unzip/node_modules/file-type": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", + "integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress-unzip/node_modules/get-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", + "integrity": "sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==", + "dev": true, + "dependencies": { + "object-assign": "^4.0.1", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress/node_modules/make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress/node_modules/make-dir/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/defaults": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", @@ -2264,6 +2794,56 @@ "tslib": "^2.0.3" } }, + "node_modules/download": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz", + "integrity": "sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==", + "dev": true, + "dependencies": { + "archive-type": "^4.0.0", + "caw": "^2.0.1", + "content-disposition": "^0.5.2", + "decompress": "^4.2.0", + "ext-name": "^5.0.0", + "file-type": "^8.1.0", + "filenamify": "^2.0.0", + "get-stream": "^3.0.0", + "got": "^8.3.1", + "make-dir": "^1.2.0", + "p-event": "^2.1.0", + "pify": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/download/node_modules/make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/duplexer3": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", + "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==", + "dev": true + }, "node_modules/ecc-jsbn": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", @@ -2295,6 +2875,15 @@ "iconv-lite": "^0.6.2" } }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, "node_modules/entities": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", @@ -2448,6 +3037,96 @@ "es5-ext": "~0.10.14" } }, + "node_modules/execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", + "dev": true, + "dependencies": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/execa/node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "dev": true, + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "node_modules/execa/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/execa/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/execa/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true + }, + "node_modules/executable": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", + "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", + "dev": true, + "dependencies": { + "pify": "^2.2.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/ext": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz", @@ -2457,6 +3136,31 @@ "type": "^2.5.0" } }, + "node_modules/ext-list": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", + "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", + "dev": true, + "dependencies": { + "mime-db": "^1.28.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ext-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", + "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", + "dev": true, + "dependencies": { + "ext-list": "^2.0.0", + "sort-keys-length": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/ext/node_modules/type": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/type/-/type-2.5.0.tgz", @@ -2552,15 +3256,56 @@ "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", "dev": true, "dependencies": { - "reusify": "^1.0.4" + "reusify": "^1.0.4" + } + }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "dev": true, + "dependencies": { + "pend": "~1.2.0" + } + }, + "node_modules/file-type": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz", + "integrity": "sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true + }, + "node_modules/filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/filenamify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz", + "integrity": "sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==", + "dev": true, + "dependencies": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.0", + "trim-repeated": "^1.0.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "dev": true - }, "node_modules/fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -2592,6 +3337,18 @@ "node": ">=8" } }, + "node_modules/find-versions": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz", + "integrity": "sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==", + "dev": true, + "dependencies": { + "semver-regex": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/forever-agent": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", @@ -2628,6 +3385,58 @@ "url": "https://www.patreon.com/infusion" } }, + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "node_modules/from2/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/from2/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/from2/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/from2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, "node_modules/fs-extra": { "version": "10.0.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", @@ -2749,6 +3558,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/get-proxy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz", + "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==", + "dev": true, + "dependencies": { + "npm-conf": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/get-stdin": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", @@ -2758,6 +3579,15 @@ "node": ">=0.10.0" } }, + "node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/get-symbol-description": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", @@ -2878,6 +3708,43 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/got": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", + "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", + "dev": true, + "dependencies": { + "@sindresorhus/is": "^0.7.0", + "cacheable-request": "^2.1.1", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "into-stream": "^3.1.0", + "is-retry-allowed": "^1.1.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "mimic-response": "^1.0.0", + "p-cancelable": "^0.4.0", + "p-timeout": "^2.0.1", + "pify": "^3.0.0", + "safe-buffer": "^5.1.1", + "timed-out": "^4.0.1", + "url-parse-lax": "^3.0.0", + "url-to-options": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/got/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/graceful-fs": { "version": "4.2.8", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", @@ -2966,6 +3833,15 @@ "node": ">=8" } }, + "node_modules/has-symbol-support-x": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", + "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==", + "dev": true, + "engines": { + "node": "*" + } + }, "node_modules/has-symbols": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", @@ -2978,6 +3854,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/has-to-string-tag-x": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", + "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", + "dev": true, + "dependencies": { + "has-symbol-support-x": "^1.4.1" + }, + "engines": { + "node": "*" + } + }, "node_modules/has-tostringtag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", @@ -3124,6 +4012,25 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, + "node_modules/hugo-bin": { + "version": "0.92.3", + "resolved": "https://registry.npmjs.org/hugo-bin/-/hugo-bin-0.92.3.tgz", + "integrity": "sha512-gM121hh7C5ZXRNITQdk/rPWeZ7eh0PqQAVjebQ7uA5eu/Xbk8YH6bsq8A11T3po+RmzCkeh178eJkXiRDRScag==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "bin-wrapper": "^4.1.0", + "picocolors": "^1.0.0", + "pkg-conf": "^4.0.0", + "rimraf": "^3.0.2" + }, + "bin": { + "hugo": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, "node_modules/humanize-ms": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", @@ -3210,6 +4117,15 @@ "node": ">=4" } }, + "node_modules/import-lazy": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz", + "integrity": "sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", @@ -3250,6 +4166,12 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, "node_modules/internal-slot": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", @@ -3264,6 +4186,19 @@ "node": ">= 0.4" } }, + "node_modules/into-stream": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", + "integrity": "sha512-TcdjPibTksa1NQximqep2r17ISRiNE9fwlfbg3F8ANdvP5/yrFTew86VcO//jk4QTaMlbjypPBq76HN2zaKfZQ==", + "dev": true, + "dependencies": { + "from2": "^2.1.1", + "p-is-promise": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/ip": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", @@ -3398,6 +4333,12 @@ "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=", "dev": true }, + "node_modules/is-natural-number": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz", + "integrity": "sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==", + "dev": true + }, "node_modules/is-negative-zero": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", @@ -3434,6 +4375,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", + "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-plain-obj": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", @@ -3465,6 +4415,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/is-shared-array-buffer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz", @@ -3474,6 +4433,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/is-string": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", @@ -3552,6 +4520,19 @@ "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", "dev": true }, + "node_modules/isurl": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", + "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", + "dev": true, + "dependencies": { + "has-to-string-tag-x": "^1.2.0", + "is-object": "^1.0.1" + }, + "engines": { + "node": ">= 4" + } + }, "node_modules/js-base64": { "version": "2.6.4", "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", @@ -3581,6 +4562,12 @@ "node": ">=4" } }, + "node_modules/json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==", + "dev": true + }, "node_modules/json-parse-better-errors": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", @@ -3649,6 +4636,15 @@ "node": ">=0.6.0" } }, + "node_modules/keyv": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", + "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.0" + } + }, "node_modules/kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", @@ -3798,6 +4794,15 @@ "tslib": "^2.0.3" } }, + "node_modules/lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -3994,6 +4999,15 @@ "node": ">=6" } }, + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/min-indent": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", @@ -4495,6 +5509,42 @@ "node": ">=0.10.0" } }, + "node_modules/normalize-url": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", + "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", + "dev": true, + "dependencies": { + "prepend-http": "^2.0.0", + "query-string": "^5.0.1", + "sort-keys": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", + "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", + "dev": true, + "dependencies": { + "config-chain": "^1.1.11", + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-conf/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/npm-run-all": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", @@ -4649,6 +5699,27 @@ "which": "bin/which" } }, + "node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/npmlog": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", @@ -4773,6 +5844,57 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/os-filter-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", + "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", + "dev": true, + "dependencies": { + "arch": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-cancelable": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", + "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-event": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz", + "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==", + "dev": true, + "dependencies": { + "p-timeout": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-is-promise": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", + "integrity": "sha512-zL7VE4JVS2IFSkR2GQKDSPEVxkoH43/p7oEnwpdCndKYJO0HVeRB7fA8TJwuLOTBREtK0ea8eHaxdwcpob5dmg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/p-limit": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", @@ -4815,6 +5937,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/p-timeout": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", + "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", + "dev": true, + "dependencies": { + "p-finally": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", @@ -4933,6 +6067,12 @@ "node": ">=8" } }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "dev": true + }, "node_modules/performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", @@ -4977,6 +6117,125 @@ "node": ">=0.10.0" } }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pkg-conf": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-4.0.0.tgz", + "integrity": "sha512-7dmgi4UY4qk+4mj5Cd8v/GExPo0K+SlY+hulOSdfZ/T6jVH6//y7NtzZo5WrfhDBxuQ0jCa7fLZmNaNh7EWL/w==", + "dev": true, + "dependencies": { + "find-up": "^6.0.0", + "load-json-file": "^7.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-conf/node_modules/find-up": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", + "dev": true, + "dependencies": { + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-conf/node_modules/load-json-file": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-7.0.1.tgz", + "integrity": "sha512-Gnxj3ev3mB5TkVBGad0JM6dmLiQL+o0t23JPBZ9sd+yvSLk05mFoqKBw5N8gbbkU4TNXyqCgIrl/VM17OgUIgQ==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-conf/node_modules/locate-path": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.1.1.tgz", + "integrity": "sha512-vJXaRMJgRVD3+cUZs3Mncj2mxpt5mP0EmNOsxRSZRMlbqjvxzDEOIUWXGmavo0ZC9+tNZCBLQ66reA11nbpHZg==", + "dev": true, + "dependencies": { + "p-locate": "^6.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-conf/node_modules/p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^1.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-conf/node_modules/p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "dev": true, + "dependencies": { + "p-limit": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-conf/node_modules/path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, "node_modules/postcss": { "version": "8.4.18", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.18.tgz", @@ -5159,6 +6418,15 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true }, + "node_modules/prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/prettier": { "version": "1.19.1", "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz", @@ -5216,6 +6484,18 @@ "react-is": "^16.13.1" } }, + "node_modules/proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", + "dev": true + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "dev": true + }, "node_modules/psl": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", @@ -5228,6 +6508,16 @@ "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", "dev": true }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, "node_modules/punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", @@ -5246,6 +6536,20 @@ "node": ">=0.6" } }, + "node_modules/query-string": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", + "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "dev": true, + "dependencies": { + "decode-uri-component": "^0.2.0", + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", @@ -5567,6 +6871,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", + "dev": true, + "dependencies": { + "lowercase-keys": "^1.0.0" + } + }, "node_modules/restore-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", @@ -5759,6 +7072,25 @@ "node": ">= 8" } }, + "node_modules/seek-bzip": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz", + "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==", + "dev": true, + "dependencies": { + "commander": "^2.8.1" + }, + "bin": { + "seek-bunzip": "bin/seek-bunzip", + "seek-table": "bin/seek-bzip-table" + } + }, + "node_modules/seek-bzip/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, "node_modules/semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", @@ -5767,6 +7099,36 @@ "semver": "bin/semver.js" } }, + "node_modules/semver-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz", + "integrity": "sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/semver-truncate": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz", + "integrity": "sha512-V1fGg9i4CL3qesB6U0L6XAm4xOJiHmt4QAacazumuasc03BvtFGIMCduv01JWQ69Nv+JST9TqhSCiJoxoY031w==", + "dev": true, + "dependencies": { + "semver": "^5.3.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/semver-truncate/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, "node_modules/sentence-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", @@ -5941,6 +7303,42 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, + "node_modules/sort-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", + "integrity": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==", + "dev": true, + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/sort-keys-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", + "integrity": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==", + "dev": true, + "dependencies": { + "sort-keys": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sort-keys-length/node_modules/sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", + "dev": true, + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -6085,6 +7483,15 @@ "safe-buffer": "~5.1.0" } }, + "node_modules/strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/string_decoder": { "version": "0.10.31", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", @@ -6169,6 +7576,24 @@ "node": ">=4" } }, + "node_modules/strip-dirs": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz", + "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==", + "dev": true, + "dependencies": { + "is-natural-number": "^4.0.1" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/strip-indent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", @@ -6181,6 +7606,18 @@ "node": ">=8" } }, + "node_modules/strip-outer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/stylis": { "version": "4.0.13", "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.0.13.tgz", @@ -6373,6 +7810,76 @@ "node": ">= 10" } }, + "node_modules/tar-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", + "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", + "dev": true, + "dependencies": { + "bl": "^1.0.0", + "buffer-alloc": "^1.2.0", + "end-of-stream": "^1.0.0", + "fs-constants": "^1.0.0", + "readable-stream": "^2.3.0", + "to-buffer": "^1.1.1", + "xtend": "^4.0.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/tar-stream/node_modules/bl": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", + "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", + "dev": true, + "dependencies": { + "readable-stream": "^2.3.5", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/tar-stream/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/tar-stream/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/tar-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/tar-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, "node_modules/through2": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", @@ -6428,6 +7935,15 @@ "node": ">=0.10.0" } }, + "node_modules/timed-out": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/timers-ext": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.7.tgz", @@ -6438,6 +7954,12 @@ "next-tick": "1" } }, + "node_modules/to-buffer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", + "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==", + "dev": true + }, "node_modules/to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", @@ -6508,6 +8030,18 @@ "node": ">=8" } }, + "node_modules/trim-repeated": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/true-case-path": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz", @@ -6654,6 +8188,16 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/unbzip2-stream": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "dev": true, + "dependencies": { + "buffer": "^5.2.1", + "through": "^2.3.8" + } + }, "node_modules/undefsafe": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", @@ -6748,6 +8292,27 @@ "punycode": "^2.1.0" } }, + "node_modules/url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", + "dev": true, + "dependencies": { + "prepend-http": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/url-to-options": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", + "integrity": "sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", @@ -6946,6 +8511,28 @@ "engines": { "node": ">=10" } + }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "dev": true, + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "node_modules/yocto-queue": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "dev": true, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } } }, "dependencies": { @@ -7598,6 +9185,19 @@ "rimraf": "^3.0.2" } }, + "@popperjs/core": { + "version": "2.11.6", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz", + "integrity": "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==", + "dev": true, + "peer": true + }, + "@sindresorhus/is": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", + "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==", + "dev": true + }, "@tootallnate/once": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", @@ -7799,6 +9399,29 @@ "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", "dev": true }, + "arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "dev": true + }, + "archive-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz", + "integrity": "sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==", + "dev": true, + "requires": { + "file-type": "^4.2.0" + }, + "dependencies": { + "file-type": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz", + "integrity": "sha512-f2UbFQEk7LXgWpi5ntcO86OeA/cC80fuDDDaX/fZ2ZGel+AF7leRQqBBW1eJNiiQkrZlAoM6P+VYP5P6bOlDEQ==", + "dev": true + } + } + }, "are-we-there-yet": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", @@ -7961,6 +9584,142 @@ "tweetnacl": "^0.14.3" } }, + "bin-check": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", + "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", + "dev": true, + "requires": { + "execa": "^0.7.0", + "executable": "^4.1.0" + } + }, + "bin-version": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz", + "integrity": "sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==", + "dev": true, + "requires": { + "execa": "^1.0.0", + "find-versions": "^3.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "bin-version-check": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz", + "integrity": "sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==", + "dev": true, + "requires": { + "bin-version": "^3.0.0", + "semver": "^5.6.0", + "semver-truncate": "^1.1.2" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "bin-wrapper": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz", + "integrity": "sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q==", + "dev": true, + "requires": { + "bin-check": "^4.1.0", + "bin-version-check": "^4.0.0", + "download": "^7.1.0", + "import-lazy": "^3.1.0", + "os-filter-obj": "^2.0.0", + "pify": "^4.0.1" + }, + "dependencies": { + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + } + } + }, "binary-extensions": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", @@ -8015,6 +9774,13 @@ "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", "dev": true }, + "bootstrap": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.2.2.tgz", + "integrity": "sha512-dEtzMTV71n6Fhmbg4fYJzQsw1N29hJKO1js5ackCgIpDcGid2ETMGC6zwSYw09v05Y+oRdQ9loC54zB1La3hHQ==", + "dev": true, + "requires": {} + }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -8055,6 +9821,34 @@ "ieee754": "^1.1.13" } }, + "buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "dev": true, + "requires": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", + "dev": true + }, + "buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "dev": true + }, + "buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==", + "dev": true + }, "bufferstreams": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/bufferstreams/-/bufferstreams-3.0.0.tgz", @@ -8126,6 +9920,35 @@ "unique-filename": "^1.1.1" } }, + "cacheable-request": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", + "integrity": "sha512-vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ==", + "dev": true, + "requires": { + "clone-response": "1.0.2", + "get-stream": "3.0.0", + "http-cache-semantics": "3.8.1", + "keyv": "3.0.0", + "lowercase-keys": "1.0.0", + "normalize-url": "2.0.1", + "responselike": "1.0.2" + }, + "dependencies": { + "http-cache-semantics": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", + "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==", + "dev": true + }, + "lowercase-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", + "integrity": "sha512-RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A==", + "dev": true + } + } + }, "call-bind": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", @@ -8190,6 +10013,18 @@ "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", "dev": true }, + "caw": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz", + "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==", + "dev": true, + "requires": { + "get-proxy": "^2.0.0", + "isurl": "^1.0.0-alpha5", + "tunnel-agent": "^0.6.0", + "url-to-options": "^1.0.1" + } + }, "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -8293,6 +10128,15 @@ "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", "dev": true }, + "clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==", + "dev": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, "clsx": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", @@ -8341,6 +10185,16 @@ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", "dev": true }, + "config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "dev": true, + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, "console-control-strings": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", @@ -8358,6 +10212,15 @@ "upper-case": "^2.0.2" } }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "requires": { + "safe-buffer": "5.2.1" + } + }, "convert-source-map": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", @@ -8488,39 +10351,178 @@ "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", "dev": true, "requires": { - "assert-plus": "^1.0.0" + "assert-plus": "^1.0.0" + } + }, + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "decamelize-keys": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz", + "integrity": "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=", + "dev": true, + "requires": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, + "dependencies": { + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "dev": true + } + } + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==", + "dev": true + }, + "decompress": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz", + "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==", + "dev": true, + "requires": { + "decompress-tar": "^4.0.0", + "decompress-tarbz2": "^4.0.0", + "decompress-targz": "^4.0.0", + "decompress-unzip": "^4.0.1", + "graceful-fs": "^4.1.10", + "make-dir": "^1.0.0", + "pify": "^2.3.0", + "strip-dirs": "^2.0.0" + }, + "dependencies": { + "make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true + } + } + } + } + }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", + "dev": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, + "decompress-tar": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz", + "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==", + "dev": true, + "requires": { + "file-type": "^5.2.0", + "is-stream": "^1.1.0", + "tar-stream": "^1.5.2" + }, + "dependencies": { + "file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", + "dev": true + } + } + }, + "decompress-tarbz2": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz", + "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==", + "dev": true, + "requires": { + "decompress-tar": "^4.1.0", + "file-type": "^6.1.0", + "is-stream": "^1.1.0", + "seek-bzip": "^1.0.5", + "unbzip2-stream": "^1.0.9" + }, + "dependencies": { + "file-type": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz", + "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==", + "dev": true + } } }, - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "decompress-targz": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz", + "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==", "dev": true, "requires": { - "ms": "^2.1.1" + "decompress-tar": "^4.1.1", + "file-type": "^5.2.0", + "is-stream": "^1.1.0" + }, + "dependencies": { + "file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", + "dev": true + } } }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true - }, - "decamelize-keys": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz", - "integrity": "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=", + "decompress-unzip": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz", + "integrity": "sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==", "dev": true, "requires": { - "decamelize": "^1.1.0", - "map-obj": "^1.0.0" + "file-type": "^3.8.0", + "get-stream": "^2.2.0", + "pify": "^2.3.0", + "yauzl": "^2.4.2" }, "dependencies": { - "map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "file-type": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", + "integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==", "dev": true + }, + "get-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", + "integrity": "sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==", + "dev": true, + "requires": { + "object-assign": "^4.0.1", + "pinkie-promise": "^2.0.0" + } } } }, @@ -8622,6 +10624,49 @@ "tslib": "^2.0.3" } }, + "download": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz", + "integrity": "sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==", + "dev": true, + "requires": { + "archive-type": "^4.0.0", + "caw": "^2.0.1", + "content-disposition": "^0.5.2", + "decompress": "^4.2.0", + "ext-name": "^5.0.0", + "file-type": "^8.1.0", + "filenamify": "^2.0.0", + "get-stream": "^3.0.0", + "got": "^8.3.1", + "make-dir": "^1.2.0", + "p-event": "^2.1.0", + "pify": "^3.0.0" + }, + "dependencies": { + "make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "requires": { + "pify": "^3.0.0" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true + } + } + }, + "duplexer3": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", + "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==", + "dev": true + }, "ecc-jsbn": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", @@ -8653,6 +10698,15 @@ "iconv-lite": "^0.6.2" } }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, "entities": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", @@ -8782,6 +10836,83 @@ "es5-ext": "~0.10.14" } }, + "execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", + "dev": true, + "requires": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "dev": true, + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true + } + } + }, + "executable": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", + "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", + "dev": true, + "requires": { + "pify": "^2.2.0" + } + }, "ext": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz", @@ -8799,6 +10930,25 @@ } } }, + "ext-list": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", + "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", + "dev": true, + "requires": { + "mime-db": "^1.28.0" + } + }, + "ext-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", + "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", + "dev": true, + "requires": { + "ext-list": "^2.0.0", + "sort-keys-length": "^1.0.0" + } + }, "extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", @@ -8876,12 +11026,44 @@ "reusify": "^1.0.4" } }, + "fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "dev": true, + "requires": { + "pend": "~1.2.0" + } + }, + "file-type": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz", + "integrity": "sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==", + "dev": true + }, "file-uri-to-path": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", "dev": true }, + "filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==", + "dev": true + }, + "filenamify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz", + "integrity": "sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==", + "dev": true, + "requires": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.0", + "trim-repeated": "^1.0.0" + } + }, "fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -8907,6 +11089,15 @@ "path-exists": "^4.0.0" } }, + "find-versions": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz", + "integrity": "sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==", + "dev": true, + "requires": { + "semver-regex": "^2.0.0" + } + }, "forever-agent": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", @@ -8930,6 +11121,60 @@ "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", "dev": true }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, "fs-extra": { "version": "10.0.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", @@ -9023,12 +11268,27 @@ "has-symbols": "^1.0.1" } }, + "get-proxy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz", + "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==", + "dev": true, + "requires": { + "npm-conf": "^1.1.0" + } + }, "get-stdin": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", "dev": true }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true + }, "get-symbol-description": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", @@ -9118,6 +11378,39 @@ } } }, + "got": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", + "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", + "dev": true, + "requires": { + "@sindresorhus/is": "^0.7.0", + "cacheable-request": "^2.1.1", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "into-stream": "^3.1.0", + "is-retry-allowed": "^1.1.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "mimic-response": "^1.0.0", + "p-cancelable": "^0.4.0", + "p-timeout": "^2.0.1", + "pify": "^3.0.0", + "safe-buffer": "^5.1.1", + "timed-out": "^4.0.1", + "url-parse-lax": "^3.0.0", + "url-to-options": "^1.0.1" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true + } + } + }, "graceful-fs": { "version": "4.2.8", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", @@ -9179,12 +11472,27 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, + "has-symbol-support-x": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", + "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==", + "dev": true + }, "has-symbols": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", "dev": true }, + "has-to-string-tag-x": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", + "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", + "dev": true, + "requires": { + "has-symbol-support-x": "^1.4.1" + } + }, "has-tostringtag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", @@ -9300,6 +11608,18 @@ } } }, + "hugo-bin": { + "version": "0.92.3", + "resolved": "https://registry.npmjs.org/hugo-bin/-/hugo-bin-0.92.3.tgz", + "integrity": "sha512-gM121hh7C5ZXRNITQdk/rPWeZ7eh0PqQAVjebQ7uA5eu/Xbk8YH6bsq8A11T3po+RmzCkeh178eJkXiRDRScag==", + "dev": true, + "requires": { + "bin-wrapper": "^4.1.0", + "picocolors": "^1.0.0", + "pkg-conf": "^4.0.0", + "rimraf": "^3.0.2" + } + }, "humanize-ms": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", @@ -9359,6 +11679,12 @@ } } }, + "import-lazy": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz", + "integrity": "sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==", + "dev": true + }, "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", @@ -9393,6 +11719,12 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, "internal-slot": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", @@ -9404,6 +11736,16 @@ "side-channel": "^1.0.4" } }, + "into-stream": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", + "integrity": "sha512-TcdjPibTksa1NQximqep2r17ISRiNE9fwlfbg3F8ANdvP5/yrFTew86VcO//jk4QTaMlbjypPBq76HN2zaKfZQ==", + "dev": true, + "requires": { + "from2": "^2.1.1", + "p-is-promise": "^1.1.0" + } + }, "ip": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", @@ -9499,6 +11841,12 @@ "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=", "dev": true }, + "is-natural-number": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz", + "integrity": "sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==", + "dev": true + }, "is-negative-zero": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", @@ -9520,6 +11868,12 @@ "has-tostringtag": "^1.0.0" } }, + "is-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", + "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==", + "dev": true + }, "is-plain-obj": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", @@ -9542,12 +11896,24 @@ "has-tostringtag": "^1.0.0" } }, + "is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", + "dev": true + }, "is-shared-array-buffer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz", "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==", "dev": true }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true + }, "is-string": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", @@ -9605,6 +11971,16 @@ "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", "dev": true }, + "isurl": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", + "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", + "dev": true, + "requires": { + "has-to-string-tag-x": "^1.2.0", + "is-object": "^1.0.1" + } + }, "js-base64": { "version": "2.6.4", "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", @@ -9628,6 +12004,12 @@ "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "peer": true }, + "json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==", + "dev": true + }, "json-parse-better-errors": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", @@ -9685,6 +12067,15 @@ "verror": "1.10.0" } }, + "keyv": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", + "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", + "dev": true, + "requires": { + "json-buffer": "3.0.0" + } + }, "kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", @@ -9812,6 +12203,12 @@ "tslib": "^2.0.3" } }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "dev": true + }, "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -9968,6 +12365,12 @@ "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true + }, "min-indent": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", @@ -10354,6 +12757,35 @@ "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", "dev": true }, + "normalize-url": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", + "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", + "dev": true, + "requires": { + "prepend-http": "^2.0.0", + "query-string": "^5.0.1", + "sort-keys": "^2.0.0" + } + }, + "npm-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", + "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", + "dev": true, + "requires": { + "config-chain": "^1.1.11", + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true + } + } + }, "npm-run-all": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", @@ -10472,6 +12904,23 @@ } } }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "requires": { + "path-key": "^2.0.0" + }, + "dependencies": { + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true + } + } + }, "npmlog": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", @@ -10563,6 +13012,42 @@ "wcwidth": "^1.0.1" } }, + "os-filter-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", + "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", + "dev": true, + "requires": { + "arch": "^2.1.0" + } + }, + "p-cancelable": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", + "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==", + "dev": true + }, + "p-event": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz", + "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==", + "dev": true, + "requires": { + "p-timeout": "^2.0.1" + } + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "dev": true + }, + "p-is-promise": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", + "integrity": "sha512-zL7VE4JVS2IFSkR2GQKDSPEVxkoH43/p7oEnwpdCndKYJO0HVeRB7fA8TJwuLOTBREtK0ea8eHaxdwcpob5dmg==", + "dev": true + }, "p-limit": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", @@ -10590,6 +13075,15 @@ "aggregate-error": "^3.0.0" } }, + "p-timeout": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", + "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", + "dev": true, + "requires": { + "p-finally": "^1.0.0" + } + }, "p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", @@ -10684,6 +13178,12 @@ "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" }, + "pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "dev": true + }, "performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", @@ -10713,6 +13213,82 @@ "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", "dev": true }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "pkg-conf": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-4.0.0.tgz", + "integrity": "sha512-7dmgi4UY4qk+4mj5Cd8v/GExPo0K+SlY+hulOSdfZ/T6jVH6//y7NtzZo5WrfhDBxuQ0jCa7fLZmNaNh7EWL/w==", + "dev": true, + "requires": { + "find-up": "^6.0.0", + "load-json-file": "^7.0.0" + }, + "dependencies": { + "find-up": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", + "dev": true, + "requires": { + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" + } + }, + "load-json-file": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-7.0.1.tgz", + "integrity": "sha512-Gnxj3ev3mB5TkVBGad0JM6dmLiQL+o0t23JPBZ9sd+yvSLk05mFoqKBw5N8gbbkU4TNXyqCgIrl/VM17OgUIgQ==", + "dev": true + }, + "locate-path": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.1.1.tgz", + "integrity": "sha512-vJXaRMJgRVD3+cUZs3Mncj2mxpt5mP0EmNOsxRSZRMlbqjvxzDEOIUWXGmavo0ZC9+tNZCBLQ66reA11nbpHZg==", + "dev": true, + "requires": { + "p-locate": "^6.0.0" + } + }, + "p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "dev": true, + "requires": { + "yocto-queue": "^1.0.0" + } + }, + "p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "dev": true, + "requires": { + "p-limit": "^4.0.0" + } + }, + "path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "dev": true + } + } + }, "postcss": { "version": "8.4.18", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.18.tgz", @@ -10824,6 +13400,12 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true }, + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", + "dev": true + }, "prettier": { "version": "1.19.1", "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz", @@ -10869,6 +13451,18 @@ "react-is": "^16.13.1" } }, + "proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", + "dev": true + }, + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "dev": true + }, "psl": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", @@ -10881,6 +13475,16 @@ "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", "dev": true }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, "punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", @@ -10893,6 +13497,17 @@ "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", "dev": true }, + "query-string": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", + "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "dev": true, + "requires": { + "decode-uri-component": "^0.2.0", + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + } + }, "queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", @@ -11145,6 +13760,15 @@ "path-parse": "^1.0.6" } }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", + "dev": true, + "requires": { + "lowercase-keys": "^1.0.0" + } + }, "restore-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", @@ -11276,11 +13900,51 @@ } } }, + "seek-bzip": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz", + "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==", + "dev": true, + "requires": { + "commander": "^2.8.1" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + } + } + }, "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" }, + "semver-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz", + "integrity": "sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==", + "dev": true + }, + "semver-truncate": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz", + "integrity": "sha512-V1fGg9i4CL3qesB6U0L6XAm4xOJiHmt4QAacazumuasc03BvtFGIMCduv01JWQ69Nv+JST9TqhSCiJoxoY031w==", + "dev": true, + "requires": { + "semver": "^5.3.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, "sentence-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", @@ -11419,6 +14083,35 @@ } } }, + "sort-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", + "integrity": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==", + "dev": true, + "requires": { + "is-plain-obj": "^1.0.0" + } + }, + "sort-keys-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", + "integrity": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==", + "dev": true, + "requires": { + "sort-keys": "^1.0.0" + }, + "dependencies": { + "sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", + "dev": true, + "requires": { + "is-plain-obj": "^1.0.0" + } + } + } + }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -11548,6 +14241,12 @@ } } }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==", + "dev": true + }, "string_decoder": { "version": "0.10.31", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", @@ -11611,6 +14310,21 @@ "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", "dev": true }, + "strip-dirs": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz", + "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==", + "dev": true, + "requires": { + "is-natural-number": "^4.0.1" + } + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "dev": true + }, "strip-indent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", @@ -11620,6 +14334,15 @@ "min-indent": "^1.0.0" } }, + "strip-outer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.2" + } + }, "stylis": { "version": "4.0.13", "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.0.13.tgz", @@ -11771,6 +14494,75 @@ "yallist": "^4.0.0" } }, + "tar-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", + "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", + "dev": true, + "requires": { + "bl": "^1.0.0", + "buffer-alloc": "^1.2.0", + "end-of-stream": "^1.0.0", + "fs-constants": "^1.0.0", + "readable-stream": "^2.3.0", + "to-buffer": "^1.1.1", + "xtend": "^4.0.0" + }, + "dependencies": { + "bl": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", + "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", + "dev": true, + "requires": { + "readable-stream": "^2.3.5", + "safe-buffer": "^5.1.1" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, "through2": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", @@ -11825,6 +14617,12 @@ "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=", "dev": true }, + "timed-out": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==", + "dev": true + }, "timers-ext": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.7.tgz", @@ -11835,6 +14633,12 @@ "next-tick": "1" } }, + "to-buffer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", + "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==", + "dev": true + }, "to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", @@ -11886,6 +14690,15 @@ "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", "dev": true }, + "trim-repeated": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.2" + } + }, "true-case-path": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz", @@ -11996,6 +14809,16 @@ "which-boxed-primitive": "^1.0.2" } }, + "unbzip2-stream": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "dev": true, + "requires": { + "buffer": "^5.2.1", + "through": "^2.3.8" + } + }, "undefsafe": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", @@ -12068,6 +14891,21 @@ "punycode": "^2.1.0" } }, + "url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", + "dev": true, + "requires": { + "prepend-http": "^2.0.0" + } + }, + "url-to-options": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", + "integrity": "sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==", + "dev": true + }, "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", @@ -12224,6 +15062,22 @@ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true + }, + "yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "dev": true, + "requires": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "yocto-queue": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "dev": true } } } diff --git a/package.json b/package.json index e04e0991..1bca82dc 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ "build:cjs": "tsc --module commonjs --outDir dist/cjs", "dl:fonts": "copyfiles -a \"font/fonts/*.*\" \"dl/fonts\" -f", "dl:styles": "copyfiles -a \"font/Valkyrie.css\" \"dl/\" -f", + "docs:serve": "hugo server --port 5000 --disableFastRender", "fonts": "npm run fonts:generate", "fonts:generate": "fantasticon", "icons": "npm run icons:clean && npm run icons:ts", @@ -53,9 +54,11 @@ "devDependencies": { "@types/react": "18.0.21", "autoprefixer": "10.4.12", + "bootstrap": "5.2.2", "bundle-scss": "1.5.1", "copyfiles": "2.4.1", "fantasticon": "1.2.3", + "hugo-bin": "0.92.3", "node-sass": "7.0.3", "nodemon": "2.0.20", "npm-run-all": "4.1.5", From 46f61f848f7eb185e842828a4bff951ae0c72baa Mon Sep 17 00:00:00 2001 From: Yannick Date: Thu, 20 Oct 2022 15:41:30 +0200 Subject: [PATCH 03/13] Update bootstrap in legacy docs --- dl/Valkyrie.css | 2 +- dl/fonts/Valkyrie.woff | Bin 24336 -> 23936 bytes dl/fonts/Valkyrie.woff2 | Bin 20176 -> 19404 bytes dl/index.html | 2 +- templates/html.hbs | 2 +- 5 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dl/Valkyrie.css b/dl/Valkyrie.css index 08c65aa6..607dc4f0 100644 --- a/dl/Valkyrie.css +++ b/dl/Valkyrie.css @@ -1,3 +1,3 @@ -@font-face{font-family:"Valkyrie";src:url("./fonts/Valkyrie.woff?d86ddf5f6da0de0c529308a30355532c") format("woff"),url("./fonts/Valkyrie.woff2?d86ddf5f6da0de0c529308a30355532c") format("woff2")}.vi{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-family:Valkyrie !important;font-style:normal;font-variant:normal;font-weight:normal !important;line-height:1;text-rendering:auto;box-sizing:content-box;position:relative;overflow:visible;vertical-align:0;flex-shrink:0}.vi-spin{-webkit-animation-name:animate-spin;animation-name:animate-spin;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}@media (prefers-reduced-motion: reduce){.vi-spin{-webkit-animation:none;animation:none}}.vi-rotate-90{transform:rotate(90deg)}.vi-rotate-180{transform:rotate(180deg)}.vi-rotate-270{transform:rotate(270deg)}.vi-flip-x{transform:scaleX(-1)}.vi-flip-y{transform:scaleY(-1)}.vi-flip{transform:scale(-1)}@-webkit-keyframes animate-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes animate-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.vi.vi-a-gum:before{content:"\f101"}.vi.vi-address-book:before{content:"\f102"}.vi.vi-angle-down:before{content:"\f103"}.vi.vi-angle-left:before{content:"\f104"}.vi.vi-angle-right:before{content:"\f105"}.vi.vi-angle-up:before{content:"\f106"}.vi.vi-angles-y:before{content:"\f107"}.vi.vi-apple-app-store:before{content:"\f108"}.vi.vi-arrow-down-short-wide:before{content:"\f109"}.vi.vi-arrow-down-to-line:before{content:"\f10a"}.vi.vi-arrow-down-wide-short:before{content:"\f10b"}.vi.vi-arrow-down:before{content:"\f10c"}.vi.vi-arrow-left-from-bracket:before{content:"\f10d"}.vi.vi-arrow-left-to-bracket:before{content:"\f10e"}.vi.vi-arrow-left-to-line:before{content:"\f10f"}.vi.vi-arrow-left:before{content:"\f110"}.vi.vi-arrow-pointer:before{content:"\f111"}.vi.vi-arrow-right-from-bracket:before{content:"\f112"}.vi.vi-arrow-right-prohibited:before{content:"\f113"}.vi.vi-arrow-right-to-bracket:before{content:"\f114"}.vi.vi-arrow-right-to-line:before{content:"\f115"}.vi.vi-arrow-right:before{content:"\f116"}.vi.vi-arrow-rotate-right:before{content:"\f117"}.vi.vi-arrow-up-short-wide:before{content:"\f118"}.vi.vi-arrow-up-to-line:before{content:"\f119"}.vi.vi-arrow-up-wide-short:before{content:"\f11a"}.vi.vi-arrow-up:before{content:"\f11b"}.vi.vi-arrows-rotate-right:before{content:"\f11c"}.vi.vi-asterisk:before{content:"\f11d"}.vi.vi-at:before{content:"\f11e"}.vi.vi-backward:before{content:"\f11f"}.vi.vi-bars:before{content:"\f120"}.vi.vi-blf:before{content:"\f121"}.vi.vi-bold:before{content:"\f122"}.vi.vi-book:before{content:"\f123"}.vi.vi-box-open-full:before{content:"\f124"}.vi.vi-brackets-curly:before{content:"\f125"}.vi.vi-bug:before{content:"\f126"}.vi.vi-building:before{content:"\f127"}.vi.vi-calendar-stars:before{content:"\f128"}.vi.vi-calendar:before{content:"\f129"}.vi.vi-chain-slash:before{content:"\f12a"}.vi.vi-chain:before{content:"\f12b"}.vi.vi-chart-pie:before{content:"\f12c"}.vi.vi-check:before{content:"\f12d"}.vi.vi-chevron-down:before{content:"\f12e"}.vi.vi-chevron-left:before{content:"\f12f"}.vi.vi-chevron-right:before{content:"\f130"}.vi.vi-chevron-up:before{content:"\f131"}.vi.vi-chrome:before{content:"\f132"}.vi.vi-circle-check:before{content:"\f133"}.vi.vi-circle-exclamation:before{content:"\f134"}.vi.vi-circle-info:before{content:"\f135"}.vi.vi-circle-plus:before{content:"\f136"}.vi.vi-circle-question:before{content:"\f137"}.vi.vi-circle-user:before{content:"\f138"}.vi.vi-circle-xmark:before{content:"\f139"}.vi.vi-city:before{content:"\f13a"}.vi.vi-clock-rotate-left:before{content:"\f13b"}.vi.vi-clock:before{content:"\f13c"}.vi.vi-code:before{content:"\f13d"}.vi.vi-codeblock:before{content:"\f13e"}.vi.vi-compass:before{content:"\f13f"}.vi.vi-compress:before{content:"\f140"}.vi.vi-copy:before{content:"\f141"}.vi.vi-devices:before{content:"\f142"}.vi.vi-display:before{content:"\f143"}.vi.vi-earth:before{content:"\f144"}.vi.vi-eclipse:before{content:"\f145"}.vi.vi-edge:before{content:"\f146"}.vi.vi-ellipsis:before{content:"\f147"}.vi.vi-envelope:before{content:"\f148"}.vi.vi-ethernet:before{content:"\f149"}.vi.vi-euro:before{content:"\f14a"}.vi.vi-expand:before{content:"\f14b"}.vi.vi-eye-slash:before{content:"\f14c"}.vi.vi-eye:before{content:"\f14d"}.vi.vi-facebook-messenger:before{content:"\f14e"}.vi.vi-facebook:before{content:"\f14f"}.vi.vi-fast-backward:before{content:"\f150"}.vi.vi-fast-forward:before{content:"\f151"}.vi.vi-fax:before{content:"\f152"}.vi.vi-file:before{content:"\f153"}.vi.vi-files-list:before{content:"\f154"}.vi.vi-files:before{content:"\f155"}.vi.vi-filmstrip:before{content:"\f156"}.vi.vi-filter-plus:before{content:"\f157"}.vi.vi-filter-xmark:before{content:"\f158"}.vi.vi-filter:before{content:"\f159"}.vi.vi-fingerprint:before{content:"\f15a"}.vi.vi-firefox:before{content:"\f15b"}.vi.vi-flag-checkered:before{content:"\f15c"}.vi.vi-flag:before{content:"\f15d"}.vi.vi-floppy-disk:before{content:"\f15e"}.vi.vi-folder:before{content:"\f15f"}.vi.vi-forward:before{content:"\f160"}.vi.vi-gauge:before{content:"\f161"}.vi.vi-gear:before{content:"\f162"}.vi.vi-gift:before{content:"\f163"}.vi.vi-github:before{content:"\f164"}.vi.vi-google-play:before{content:"\f165"}.vi.vi-grid:before{content:"\f166"}.vi.vi-grip-lines:before{content:"\f167"}.vi.vi-heading-1:before{content:"\f168"}.vi.vi-heading-2:before{content:"\f169"}.vi.vi-heading-3:before{content:"\f16a"}.vi.vi-heading-4:before{content:"\f16b"}.vi.vi-heading-5:before{content:"\f16c"}.vi.vi-heading-6:before{content:"\f16d"}.vi.vi-headset:before{content:"\f16e"}.vi.vi-heart-crack:before{content:"\f16f"}.vi.vi-heart-half:before{content:"\f170"}.vi.vi-heart:before{content:"\f171"}.vi.vi-house:before{content:"\f172"}.vi.vi-id-card:before{content:"\f173"}.vi.vi-image:before{content:"\f174"}.vi.vi-italic:before{content:"\f175"}.vi.vi-laptop:before{content:"\f176"}.vi.vi-layers-plus:before{content:"\f177"}.vi.vi-layers:before{content:"\f178"}.vi.vi-lightbulb-on:before{content:"\f179"}.vi.vi-lightbulb:before{content:"\f17a"}.vi.vi-line:before{content:"\f17b"}.vi.vi-linkedin:before{content:"\f17c"}.vi.vi-list-checks:before{content:"\f17d"}.vi.vi-list-clock:before{content:"\f17e"}.vi.vi-list-ordered-clock:before{content:"\f17f"}.vi.vi-list-ordered:before{content:"\f180"}.vi.vi-list:before{content:"\f181"}.vi.vi-location-pin-dot:before{content:"\f182"}.vi.vi-location-pin-slash:before{content:"\f183"}.vi.vi-location-pin:before{content:"\f184"}.vi.vi-location-pins-route:before{content:"\f185"}.vi.vi-lock-open:before{content:"\f186"}.vi.vi-lock:before{content:"\f187"}.vi.vi-magnifying-glass:before{content:"\f188"}.vi.vi-megaphone:before{content:"\f189"}.vi.vi-message-pen:before{content:"\f18a"}.vi.vi-message-smile:before{content:"\f18b"}.vi.vi-message-text:before{content:"\f18c"}.vi.vi-message:before{content:"\f18d"}.vi.vi-microphone:before{content:"\f18e"}.vi.vi-moon:before{content:"\f18f"}.vi.vi-music:before{content:"\f190"}.vi.vi-network:before{content:"\f191"}.vi.vi-numpad:before{content:"\f192"}.vi.vi-paper-plane:before{content:"\f193"}.vi.vi-parachute-box:before{content:"\f194"}.vi.vi-paragraph:before{content:"\f195"}.vi.vi-pause:before{content:"\f196"}.vi.vi-pen:before{content:"\f197"}.vi.vi-people-circle:before{content:"\f198"}.vi.vi-people:before{content:"\f199"}.vi.vi-person-clock:before{content:"\f19a"}.vi.vi-person-gear:before{content:"\f19b"}.vi.vi-person-headset:before{content:"\f19c"}.vi.vi-person-list:before{content:"\f19d"}.vi.vi-person-lock:before{content:"\f19e"}.vi.vi-person-plus:before{content:"\f19f"}.vi.vi-person:before{content:"\f1a0"}.vi.vi-phone-arrow-down-left-prohibited:before{content:"\f1a1"}.vi.vi-phone-arrow-down-left:before{content:"\f1a2"}.vi.vi-phone-arrow-up-right-prohibited:before{content:"\f1a3"}.vi.vi-phone-arrow-up-right:before{content:"\f1a4"}.vi.vi-phone-clock:before{content:"\f1a5"}.vi.vi-phone-gear:before{content:"\f1a6"}.vi.vi-phone-list:before{content:"\f1a7"}.vi.vi-phone-office:before{content:"\f1a8"}.vi.vi-phone-volume:before{content:"\f1a9"}.vi.vi-phone:before{content:"\f1aa"}.vi.vi-play-pause:before{content:"\f1ab"}.vi.vi-play:before{content:"\f1ac"}.vi.vi-plus:before{content:"\f1ad"}.vi.vi-power:before{content:"\f1ae"}.vi.vi-prohibited:before{content:"\f1af"}.vi.vi-puzzle-piece:before{content:"\f1b0"}.vi.vi-quote:before{content:"\f1b1"}.vi.vi-redo:before{content:"\f1b2"}.vi.vi-repeat-once:before{content:"\f1b3"}.vi.vi-repeat:before{content:"\f1b4"}.vi.vi-safari:before{content:"\f1b5"}.vi.vi-server:before{content:"\f1b6"}.vi.vi-shield-keyhole:before{content:"\f1b7"}.vi.vi-shield-plus:before{content:"\f1b8"}.vi.vi-shield-xmark:before{content:"\f1b9"}.vi.vi-shield:before{content:"\f1ba"}.vi.vi-shuffle:before{content:"\f1bb"}.vi.vi-sim-card:before{content:"\f1bc"}.vi.vi-sippy:before{content:"\f1bd"}.vi.vi-sliders:before{content:"\f1be"}.vi.vi-smartphone-arrow-right:before{content:"\f1bf"}.vi.vi-smartphone:before{content:"\f1c0"}.vi.vi-spinner-third:before{content:"\f1c1"}.vi.vi-spy:before{content:"\f1c2"}.vi.vi-square-gum:before{content:"\f1c3"}.vi.vi-star:before{content:"\f1c4"}.vi.vi-stop:before{content:"\f1c5"}.vi.vi-store:before{content:"\f1c6"}.vi.vi-strikethrough:before{content:"\f1c7"}.vi.vi-sun:before{content:"\f1c8"}.vi.vi-swatchbook:before{content:"\f1c9"}.vi.vi-table-clock:before{content:"\f1ca"}.vi.vi-table:before{content:"\f1cb"}.vi.vi-tag:before{content:"\f1cc"}.vi.vi-tower-broadcast:before{content:"\f1cd"}.vi.vi-trash-can:before{content:"\f1ce"}.vi.vi-triangle-exclamation:before{content:"\f1cf"}.vi.vi-underline:before{content:"\f1d0"}.vi.vi-undo:before{content:"\f1d1"}.vi.vi-valkyrie-sword:before{content:"\f1d2"}.vi.vi-video:before{content:"\f1d3"}.vi.vi-voicemail:before{content:"\f1d4"}.vi.vi-volume-0:before{content:"\f1d5"}.vi.vi-volume-1:before{content:"\f1d6"}.vi.vi-volume-2:before{content:"\f1d7"}.vi.vi-volume-3:before{content:"\f1d8"}.vi.vi-volume-slash:before{content:"\f1d9"}.vi.vi-wallpaper:before{content:"\f1da"}.vi.vi-waveform:before{content:"\f1db"}.vi.vi-webhooks-clock:before{content:"\f1dc"}.vi.vi-webhooks:before{content:"\f1dd"}.vi.vi-window:before{content:"\f1de"}.vi.vi-xmark:before{content:"\f1df"} +@font-face{font-family:"Valkyrie";src:url("./fonts/Valkyrie.woff?02572d1af40deaeeff4936d54a091c95") format("woff"),url("./fonts/Valkyrie.woff2?02572d1af40deaeeff4936d54a091c95") format("woff2")}.vi{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-family:Valkyrie !important;font-style:normal;font-variant:normal;font-weight:normal !important;line-height:1;text-rendering:auto;box-sizing:content-box;position:relative;overflow:visible;vertical-align:0;flex-shrink:0}.vi-spin{-webkit-animation-name:animate-spin;animation-name:animate-spin;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}@media (prefers-reduced-motion: reduce){.vi-spin{-webkit-animation:none;animation:none}}.vi-rotate-90{transform:rotate(90deg)}.vi-rotate-180{transform:rotate(180deg)}.vi-rotate-270{transform:rotate(270deg)}.vi-flip-x{transform:scaleX(-1)}.vi-flip-y{transform:scaleY(-1)}.vi-flip{transform:scale(-1)}@-webkit-keyframes animate-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes animate-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.vi.vi-a-gum:before{content:"\f101"}.vi.vi-address-book:before{content:"\f102"}.vi.vi-angle-down:before{content:"\f103"}.vi.vi-angle-left:before{content:"\f104"}.vi.vi-angle-right:before{content:"\f105"}.vi.vi-angle-up:before{content:"\f106"}.vi.vi-angles-y:before{content:"\f107"}.vi.vi-apple-app-store:before{content:"\f108"}.vi.vi-arrow-down-short-wide:before{content:"\f109"}.vi.vi-arrow-down-to-line:before{content:"\f10a"}.vi.vi-arrow-down-wide-short:before{content:"\f10b"}.vi.vi-arrow-down:before{content:"\f10c"}.vi.vi-arrow-left-from-bracket:before{content:"\f10d"}.vi.vi-arrow-left-to-bracket:before{content:"\f10e"}.vi.vi-arrow-left-to-line:before{content:"\f10f"}.vi.vi-arrow-left:before{content:"\f110"}.vi.vi-arrow-pointer:before{content:"\f111"}.vi.vi-arrow-right-from-bracket:before{content:"\f112"}.vi.vi-arrow-right-prohibited:before{content:"\f113"}.vi.vi-arrow-right-to-bracket:before{content:"\f114"}.vi.vi-arrow-right-to-line:before{content:"\f115"}.vi.vi-arrow-right:before{content:"\f116"}.vi.vi-arrow-rotate-right:before{content:"\f117"}.vi.vi-arrow-up-short-wide:before{content:"\f118"}.vi.vi-arrow-up-to-line:before{content:"\f119"}.vi.vi-arrow-up-wide-short:before{content:"\f11a"}.vi.vi-arrow-up:before{content:"\f11b"}.vi.vi-arrows-rotate-right:before{content:"\f11c"}.vi.vi-asterisk:before{content:"\f11d"}.vi.vi-at:before{content:"\f11e"}.vi.vi-backward:before{content:"\f11f"}.vi.vi-bars:before{content:"\f120"}.vi.vi-blf:before{content:"\f121"}.vi.vi-bold:before{content:"\f122"}.vi.vi-book:before{content:"\f123"}.vi.vi-box-open-full:before{content:"\f124"}.vi.vi-brackets-curly:before{content:"\f125"}.vi.vi-bug:before{content:"\f126"}.vi.vi-building:before{content:"\f127"}.vi.vi-calendar-stars:before{content:"\f128"}.vi.vi-calendar:before{content:"\f129"}.vi.vi-chain-slash:before{content:"\f12a"}.vi.vi-chain:before{content:"\f12b"}.vi.vi-chart-pie:before{content:"\f12c"}.vi.vi-check:before{content:"\f12d"}.vi.vi-chevron-down:before{content:"\f12e"}.vi.vi-chevron-left:before{content:"\f12f"}.vi.vi-chevron-right:before{content:"\f130"}.vi.vi-chevron-up:before{content:"\f131"}.vi.vi-chrome:before{content:"\f132"}.vi.vi-circle-check:before{content:"\f133"}.vi.vi-circle-exclamation:before{content:"\f134"}.vi.vi-circle-info:before{content:"\f135"}.vi.vi-circle-plus:before{content:"\f136"}.vi.vi-circle-question:before{content:"\f137"}.vi.vi-circle-user:before{content:"\f138"}.vi.vi-circle-xmark:before{content:"\f139"}.vi.vi-city:before{content:"\f13a"}.vi.vi-clock-rotate-left:before{content:"\f13b"}.vi.vi-clock:before{content:"\f13c"}.vi.vi-code:before{content:"\f13d"}.vi.vi-codeblock:before{content:"\f13e"}.vi.vi-compass:before{content:"\f13f"}.vi.vi-compress:before{content:"\f140"}.vi.vi-copy:before{content:"\f141"}.vi.vi-devices:before{content:"\f142"}.vi.vi-display:before{content:"\f143"}.vi.vi-earth:before{content:"\f144"}.vi.vi-eclipse:before{content:"\f145"}.vi.vi-edge:before{content:"\f146"}.vi.vi-ellipsis:before{content:"\f147"}.vi.vi-envelope:before{content:"\f148"}.vi.vi-ethernet:before{content:"\f149"}.vi.vi-euro:before{content:"\f14a"}.vi.vi-expand:before{content:"\f14b"}.vi.vi-eye-slash:before{content:"\f14c"}.vi.vi-eye:before{content:"\f14d"}.vi.vi-facebook-messenger:before{content:"\f14e"}.vi.vi-facebook:before{content:"\f14f"}.vi.vi-fast-backward:before{content:"\f150"}.vi.vi-fast-forward:before{content:"\f151"}.vi.vi-fax:before{content:"\f152"}.vi.vi-file:before{content:"\f153"}.vi.vi-files-list:before{content:"\f154"}.vi.vi-files:before{content:"\f155"}.vi.vi-filmstrip:before{content:"\f156"}.vi.vi-filter-plus:before{content:"\f157"}.vi.vi-filter-xmark:before{content:"\f158"}.vi.vi-filter:before{content:"\f159"}.vi.vi-fingerprint:before{content:"\f15a"}.vi.vi-firefox:before{content:"\f15b"}.vi.vi-flag-checkered:before{content:"\f15c"}.vi.vi-flag:before{content:"\f15d"}.vi.vi-floppy-disk:before{content:"\f15e"}.vi.vi-folder:before{content:"\f15f"}.vi.vi-forward:before{content:"\f160"}.vi.vi-gauge:before{content:"\f161"}.vi.vi-gear:before{content:"\f162"}.vi.vi-gift:before{content:"\f163"}.vi.vi-github:before{content:"\f164"}.vi.vi-google-play:before{content:"\f165"}.vi.vi-grid:before{content:"\f166"}.vi.vi-grip-lines:before{content:"\f167"}.vi.vi-heading-1:before{content:"\f168"}.vi.vi-heading-2:before{content:"\f169"}.vi.vi-heading-3:before{content:"\f16a"}.vi.vi-heading-4:before{content:"\f16b"}.vi.vi-heading-5:before{content:"\f16c"}.vi.vi-heading-6:before{content:"\f16d"}.vi.vi-headset:before{content:"\f16e"}.vi.vi-heart-crack:before{content:"\f16f"}.vi.vi-heart-half:before{content:"\f170"}.vi.vi-heart:before{content:"\f171"}.vi.vi-house:before{content:"\f172"}.vi.vi-id-card:before{content:"\f173"}.vi.vi-image:before{content:"\f174"}.vi.vi-italic:before{content:"\f175"}.vi.vi-laptop:before{content:"\f176"}.vi.vi-layers-plus:before{content:"\f177"}.vi.vi-layers:before{content:"\f178"}.vi.vi-lightbulb-on:before{content:"\f179"}.vi.vi-lightbulb:before{content:"\f17a"}.vi.vi-line:before{content:"\f17b"}.vi.vi-linkedin:before{content:"\f17c"}.vi.vi-list-checks:before{content:"\f17d"}.vi.vi-list-clock:before{content:"\f17e"}.vi.vi-list-ordered-clock:before{content:"\f17f"}.vi.vi-list-ordered:before{content:"\f180"}.vi.vi-list:before{content:"\f181"}.vi.vi-location-pin-dot:before{content:"\f182"}.vi.vi-location-pin-slash:before{content:"\f183"}.vi.vi-location-pin:before{content:"\f184"}.vi.vi-location-pins-route:before{content:"\f185"}.vi.vi-lock-open:before{content:"\f186"}.vi.vi-lock:before{content:"\f187"}.vi.vi-magnifying-glass:before{content:"\f188"}.vi.vi-megaphone:before{content:"\f189"}.vi.vi-message-pen:before{content:"\f18a"}.vi.vi-message-smile:before{content:"\f18b"}.vi.vi-message-text:before{content:"\f18c"}.vi.vi-message:before{content:"\f18d"}.vi.vi-microphone:before{content:"\f18e"}.vi.vi-moon:before{content:"\f18f"}.vi.vi-music:before{content:"\f190"}.vi.vi-network:before{content:"\f191"}.vi.vi-numpad:before{content:"\f192"}.vi.vi-paper-plane:before{content:"\f193"}.vi.vi-parachute-box:before{content:"\f194"}.vi.vi-paragraph:before{content:"\f195"}.vi.vi-pause:before{content:"\f196"}.vi.vi-pen:before{content:"\f197"}.vi.vi-people-circle:before{content:"\f198"}.vi.vi-people:before{content:"\f199"}.vi.vi-person-clock:before{content:"\f19a"}.vi.vi-person-gear:before{content:"\f19b"}.vi.vi-person-headset:before{content:"\f19c"}.vi.vi-person-list:before{content:"\f19d"}.vi.vi-person-lock:before{content:"\f19e"}.vi.vi-person-plus:before{content:"\f19f"}.vi.vi-person:before{content:"\f1a0"}.vi.vi-phone-arrow-down-left-prohibited:before{content:"\f1a1"}.vi.vi-phone-arrow-down-left:before{content:"\f1a2"}.vi.vi-phone-arrow-up-right-prohibited:before{content:"\f1a3"}.vi.vi-phone-arrow-up-right:before{content:"\f1a4"}.vi.vi-phone-clock:before{content:"\f1a5"}.vi.vi-phone-gear:before{content:"\f1a6"}.vi.vi-phone-list:before{content:"\f1a7"}.vi.vi-phone-office:before{content:"\f1a8"}.vi.vi-phone-volume:before{content:"\f1a9"}.vi.vi-phone:before{content:"\f1aa"}.vi.vi-play-pause:before{content:"\f1ab"}.vi.vi-play:before{content:"\f1ac"}.vi.vi-plus:before{content:"\f1ad"}.vi.vi-power:before{content:"\f1ae"}.vi.vi-prohibited:before{content:"\f1af"}.vi.vi-puzzle-piece:before{content:"\f1b0"}.vi.vi-quote:before{content:"\f1b1"}.vi.vi-redo:before{content:"\f1b2"}.vi.vi-repeat-once:before{content:"\f1b3"}.vi.vi-repeat:before{content:"\f1b4"}.vi.vi-safari:before{content:"\f1b5"}.vi.vi-server:before{content:"\f1b6"}.vi.vi-shield-keyhole:before{content:"\f1b7"}.vi.vi-shield-plus:before{content:"\f1b8"}.vi.vi-shield-xmark:before{content:"\f1b9"}.vi.vi-shield:before{content:"\f1ba"}.vi.vi-shuffle:before{content:"\f1bb"}.vi.vi-sim-card:before{content:"\f1bc"}.vi.vi-sippy:before{content:"\f1bd"}.vi.vi-sliders:before{content:"\f1be"}.vi.vi-smartphone-arrow-right:before{content:"\f1bf"}.vi.vi-smartphone:before{content:"\f1c0"}.vi.vi-spinner-third:before{content:"\f1c1"}.vi.vi-spy:before{content:"\f1c2"}.vi.vi-square-gum:before{content:"\f1c3"}.vi.vi-star:before{content:"\f1c4"}.vi.vi-stop:before{content:"\f1c5"}.vi.vi-store:before{content:"\f1c6"}.vi.vi-strikethrough:before{content:"\f1c7"}.vi.vi-sun:before{content:"\f1c8"}.vi.vi-swatchbook:before{content:"\f1c9"}.vi.vi-table-clock:before{content:"\f1ca"}.vi.vi-table:before{content:"\f1cb"}.vi.vi-tag:before{content:"\f1cc"}.vi.vi-tower-broadcast:before{content:"\f1cd"}.vi.vi-trash-can:before{content:"\f1ce"}.vi.vi-triangle-exclamation:before{content:"\f1cf"}.vi.vi-underline:before{content:"\f1d0"}.vi.vi-undo:before{content:"\f1d1"}.vi.vi-valkyrie-sword:before{content:"\f1d2"}.vi.vi-video:before{content:"\f1d3"}.vi.vi-voicemail:before{content:"\f1d4"}.vi.vi-volume-0:before{content:"\f1d5"}.vi.vi-volume-1:before{content:"\f1d6"}.vi.vi-volume-2:before{content:"\f1d7"}.vi.vi-volume-3:before{content:"\f1d8"}.vi.vi-volume-slash:before{content:"\f1d9"}.vi.vi-wallpaper:before{content:"\f1da"}.vi.vi-waveform:before{content:"\f1db"}.vi.vi-webhooks-clock:before{content:"\f1dc"}.vi.vi-webhooks:before{content:"\f1dd"}.vi.vi-window:before{content:"\f1de"}.vi.vi-xmark:before{content:"\f1df"} /*# sourceMappingURL=Valkyrie.css.map */ \ No newline at end of file diff --git a/dl/fonts/Valkyrie.woff b/dl/fonts/Valkyrie.woff index 08445feecdf8311149f7c0c475d43259918d8b1d..42c07b82f8298988bc3bdae60c7539f071bb61a8 100644 GIT binary patch delta 21019 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 E2gV$y`v3p{ diff --git a/dl/fonts/Valkyrie.woff2 b/dl/fonts/Valkyrie.woff2 index 39c59556956b46ae5012b42032523e2cf9be8acb..1e7130f10ef4c3bfacea785d282bceb57346a37e 100644 GIT binary patch literal 19404 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 Valkyrie - + - - - - - -

-

Valkyrie

-
- -
- -
- - - -
- a-gum -
- - -
- - - -
- address-book -
- - -
- - - -
- angle-down -
- - -
- - - -
- angle-left -
- - -
- - - -
- angle-right -
- - -
- - - -
- angle-up -
- - -
- - - -
- angles-y -
- - -
- - - -
- apple-app-store -
- - -
- - - -
- arrow-down-short-wide -
- - -
- - - -
- arrow-down-to-line -
- - -
- - - -
- arrow-down-wide-short -
- - -
- - - -
- arrow-down -
- - -
- - - -
- arrow-left-from-bracket -
- - -
- - - -
- arrow-left-to-bracket -
- - -
- - - -
- arrow-left-to-line -
- - -
- - - -
- arrow-left -
- - -
- - - -
- arrow-pointer -
- - -
- - - -
- arrow-right-from-bracket -
- - -
- - - -
- arrow-right-prohibited -
- - -
- - - -
- arrow-right-to-bracket -
- - -
- - - -
- arrow-right-to-line -
- - -
- - - -
- arrow-right -
- - -
- - - -
- arrow-rotate-right -
- - -
- - - -
- arrow-up-short-wide -
- - -
- - - -
- arrow-up-to-line -
- - -
- - - -
- arrow-up-wide-short -
- - -
- - - -
- arrow-up -
- - -
- - - -
- arrows-rotate-right -
- - -
- - - -
- asterisk -
- - -
- - - -
- at -
- - -
- - - -
- backward -
- - -
- - - -
- bars -
- - -
- - - -
- blf -
- - -
- - - -
- bold -
- - -
- - - -
- book -
- - -
- - - -
- box-open-full -
- - -
- - - -
- brackets-curly -
- - -
- - - -
- bug -
- - -
- - - -
- building -
- - -
- - - -
- calendar-stars -
- - -
- - - -
- calendar -
- - -
- - - -
- chain-slash -
- - -
- - - -
- chain -
- - -
- - - -
- chart-pie -
- - -
- - - -
- check -
- - -
- - - -
- chevron-down -
- - -
- - - -
- chevron-left -
- - -
- - - -
- chevron-right -
- - -
- - - -
- chevron-up -
- - -
- - - -
- chrome -
- - -
- - - -
- circle-check -
- - -
- - - -
- circle-exclamation -
- - -
- - - -
- circle-info -
- - -
- - - -
- circle-plus -
- - -
- - - -
- circle-question -
- - -
- - - -
- circle-user -
- - -
- - - -
- circle-xmark -
- - -
- - - -
- city -
- - -
- - - -
- clock-rotate-left -
- - -
- - - -
- clock -
- - -
- - - -
- code -
- - -
- - - -
- codeblock -
- - -
- - - -
- compass -
- - -
- - - -
- compress -
- - -
- - - -
- copy -
- - -
- - - -
- devices -
- - -
- - - -
- display -
- - -
- - - -
- earth -
- - -
- - - -
- eclipse -
- - -
- - - -
- edge -
- - -
- - - -
- ellipsis -
- - -
- - - -
- envelope -
- - -
- - - -
- ethernet -
- - -
- - - -
- euro -
- - -
- - - -
- expand -
- - -
- - - -
- eye-slash -
- - -
- - - -
- eye -
- - -
- - - -
- facebook-messenger -
- - -
- - - -
- facebook -
- - -
- - - -
- fast-backward -
- - -
- - - -
- fast-forward -
- - -
- - - -
- fax -
- - -
- - - -
- file -
- - -
- - - -
- files-list -
- - -
- - - -
- files -
- - -
- - - -
- filmstrip -
- - -
- - - -
- filter-plus -
- - -
- - - -
- filter-xmark -
- - -
- - - -
- filter -
- - -
- - - -
- fingerprint -
- - -
- - - -
- firefox -
- - -
- - - -
- flag-checkered -
- - -
- - - -
- flag -
- - -
- - - -
- floppy-disk -
- - -
- - - -
- folder -
- - -
- - - -
- forward -
- - -
- - - -
- gauge -
- - -
- - - -
- gear -
- - -
- - - -
- gift -
- - -
- - - -
- github -
- - -
- - - -
- google-play -
- - -
- - - -
- grid -
- - -
- - - -
- grip-lines -
- - -
- - - -
- heading-1 -
- - -
- - - -
- heading-2 -
- - -
- - - -
- heading-3 -
- - -
- - - -
- heading-4 -
- - -
- - - -
- heading-5 -
- - -
- - - -
- heading-6 -
- - -
- - - -
- headset -
- - -
- - - -
- heart-crack -
- - -
- - - -
- heart-half -
- - -
- - - -
- heart -
- - -
- - - -
- house -
- - -
- - - -
- id-card -
- - -
- - - -
- image -
- - -
- - - -
- italic -
- - -
- - - -
- laptop -
- - -
- - - -
- layers-plus -
- - -
- - - -
- layers -
- - -
- - - -
- lightbulb-on -
- - -
- - - -
- lightbulb -
- - -
- - - -
- line -
- - -
- - - -
- linkedin -
- - -
- - - -
- list-checks -
- - -
- - - -
- list-clock -
- - -
- - - -
- list-ordered-clock -
- - -
- - - -
- list-ordered -
- - -
- - - -
- list -
- - -
- - - -
- location-pin-dot -
- - -
- - - -
- location-pin-slash -
- - -
- - - -
- location-pin -
- - -
- - - -
- location-pins-route -
- - -
- - - -
- lock-open -
- - -
- - - -
- lock -
- - -
- - - -
- magnifying-glass -
- - -
- - - -
- megaphone -
- - -
- - - -
- message-pen -
- - -
- - - -
- message-smile -
- - -
- - - -
- message-text -
- - -
- - - -
- message -
- - -
- - - -
- microphone -
- - -
- - - -
- moon -
- - -
- - - -
- music -
- - -
- - - -
- network -
- - -
- - - -
- numpad -
- - -
- - - -
- paper-plane -
- - -
- - - -
- parachute-box -
- - -
- - - -
- paragraph -
- - -
- - - -
- pause -
- - -
- - - -
- pen -
- - -
- - - -
- people-circle -
- - -
- - - -
- people -
- - -
- - - -
- person-clock -
- - -
- - - -
- person-gear -
- - -
- - - -
- person-headset -
- - -
- - - -
- person-list -
- - -
- - - -
- person-lock -
- - -
- - - -
- person-plus -
- - -
- - - -
- person -
- - -
- - - -
- phone-arrow-down-left-prohibited -
- - -
- - - -
- phone-arrow-down-left -
- - -
- - - -
- phone-arrow-up-right-prohibited -
- - -
- - - -
- phone-arrow-up-right -
- - -
- - - -
- phone-clock -
- - -
- - - -
- phone-gear -
- - -
- - - -
- phone-list -
- - -
- - - -
- phone-office -
- - -
- - - -
- phone-volume -
- - -
- - - -
- phone -
- - -
- - - -
- play-pause -
- - -
- - - -
- play -
- - -
- - - -
- plus -
- - -
- - - -
- power -
- - -
- - - -
- prohibited -
- - -
- - - -
- puzzle-piece -
- - -
- - - -
- quote -
- - -
- - - -
- redo -
- - -
- - - -
- repeat-once -
- - -
- - - -
- repeat -
- - -
- - - -
- safari -
- - -
- - - -
- server -
- - -
- - - -
- shield-keyhole -
- - -
- - - -
- shield-plus -
- - -
- - - -
- shield-xmark -
- - -
- - - -
- shield -
- - -
- - - -
- shuffle -
- - -
- - - -
- sim-card -
- - -
- - - -
- sippy -
- - -
- - - -
- sliders -
- - -
- - - -
- smartphone-arrow-right -
- - -
- - - -
- smartphone -
- - -
- - - -
- spinner-third -
- - -
- - - -
- spy -
- - -
- - - -
- square-gum -
- - -
- - - -
- star -
- - -
- - - -
- stop -
- - -
- - - -
- store -
- - -
- - - -
- strikethrough -
- - -
- - - -
- sun -
- - -
- - - -
- swatchbook -
- - -
- - - -
- table-clock -
- - -
- - - -
- table -
- - -
- - - -
- tag -
- - -
- - - -
- tower-broadcast -
- - -
- - - -
- trash-can -
- - -
- - - -
- triangle-exclamation -
- - -
- - - -
- underline -
- - -
- - - -
- undo -
- - -
- - - -
- valkyrie-sword -
- - -
- - - -
- video -
- - -
- - - -
- voicemail -
- - -
- - - -
- volume-0 -
- - -
- - - -
- volume-1 -
- - -
- - - -
- volume-2 -
- - -
- - - -
- volume-3 -
- - -
- - - -
- volume-slash -
- - -
- - - -
- wallpaper -
- - -
- - - -
- waveform -
- - -
- - - -
- webhooks-clock -
- - -
- - - -
- webhooks -
- - -
- - - -
- window -
- - -
- - - -
- xmark -
- -
- -

CSS classes

- -
-
- - - -
- spin -
- -
- - - -
- rotate-90 -
- -
- - - -
- rotate-180 -
- -
- - - -
- rotate-270 -
- -
- - - -
- flip-x -
- -
- - - -
- flip-y -
- -
- - - -
- flip -
-
- - - diff --git a/font/Valkyrie.css b/font/Valkyrie.css index 607dc4f0..e80889d0 100644 --- a/font/Valkyrie.css +++ b/font/Valkyrie.css @@ -1,3 +1,3 @@ -@font-face{font-family:"Valkyrie";src:url("./fonts/Valkyrie.woff?02572d1af40deaeeff4936d54a091c95") format("woff"),url("./fonts/Valkyrie.woff2?02572d1af40deaeeff4936d54a091c95") format("woff2")}.vi{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-family:Valkyrie !important;font-style:normal;font-variant:normal;font-weight:normal !important;line-height:1;text-rendering:auto;box-sizing:content-box;position:relative;overflow:visible;vertical-align:0;flex-shrink:0}.vi-spin{-webkit-animation-name:animate-spin;animation-name:animate-spin;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}@media (prefers-reduced-motion: reduce){.vi-spin{-webkit-animation:none;animation:none}}.vi-rotate-90{transform:rotate(90deg)}.vi-rotate-180{transform:rotate(180deg)}.vi-rotate-270{transform:rotate(270deg)}.vi-flip-x{transform:scaleX(-1)}.vi-flip-y{transform:scaleY(-1)}.vi-flip{transform:scale(-1)}@-webkit-keyframes animate-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes animate-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.vi.vi-a-gum:before{content:"\f101"}.vi.vi-address-book:before{content:"\f102"}.vi.vi-angle-down:before{content:"\f103"}.vi.vi-angle-left:before{content:"\f104"}.vi.vi-angle-right:before{content:"\f105"}.vi.vi-angle-up:before{content:"\f106"}.vi.vi-angles-y:before{content:"\f107"}.vi.vi-apple-app-store:before{content:"\f108"}.vi.vi-arrow-down-short-wide:before{content:"\f109"}.vi.vi-arrow-down-to-line:before{content:"\f10a"}.vi.vi-arrow-down-wide-short:before{content:"\f10b"}.vi.vi-arrow-down:before{content:"\f10c"}.vi.vi-arrow-left-from-bracket:before{content:"\f10d"}.vi.vi-arrow-left-to-bracket:before{content:"\f10e"}.vi.vi-arrow-left-to-line:before{content:"\f10f"}.vi.vi-arrow-left:before{content:"\f110"}.vi.vi-arrow-pointer:before{content:"\f111"}.vi.vi-arrow-right-from-bracket:before{content:"\f112"}.vi.vi-arrow-right-prohibited:before{content:"\f113"}.vi.vi-arrow-right-to-bracket:before{content:"\f114"}.vi.vi-arrow-right-to-line:before{content:"\f115"}.vi.vi-arrow-right:before{content:"\f116"}.vi.vi-arrow-rotate-right:before{content:"\f117"}.vi.vi-arrow-up-short-wide:before{content:"\f118"}.vi.vi-arrow-up-to-line:before{content:"\f119"}.vi.vi-arrow-up-wide-short:before{content:"\f11a"}.vi.vi-arrow-up:before{content:"\f11b"}.vi.vi-arrows-rotate-right:before{content:"\f11c"}.vi.vi-asterisk:before{content:"\f11d"}.vi.vi-at:before{content:"\f11e"}.vi.vi-backward:before{content:"\f11f"}.vi.vi-bars:before{content:"\f120"}.vi.vi-blf:before{content:"\f121"}.vi.vi-bold:before{content:"\f122"}.vi.vi-book:before{content:"\f123"}.vi.vi-box-open-full:before{content:"\f124"}.vi.vi-brackets-curly:before{content:"\f125"}.vi.vi-bug:before{content:"\f126"}.vi.vi-building:before{content:"\f127"}.vi.vi-calendar-stars:before{content:"\f128"}.vi.vi-calendar:before{content:"\f129"}.vi.vi-chain-slash:before{content:"\f12a"}.vi.vi-chain:before{content:"\f12b"}.vi.vi-chart-pie:before{content:"\f12c"}.vi.vi-check:before{content:"\f12d"}.vi.vi-chevron-down:before{content:"\f12e"}.vi.vi-chevron-left:before{content:"\f12f"}.vi.vi-chevron-right:before{content:"\f130"}.vi.vi-chevron-up:before{content:"\f131"}.vi.vi-chrome:before{content:"\f132"}.vi.vi-circle-check:before{content:"\f133"}.vi.vi-circle-exclamation:before{content:"\f134"}.vi.vi-circle-info:before{content:"\f135"}.vi.vi-circle-plus:before{content:"\f136"}.vi.vi-circle-question:before{content:"\f137"}.vi.vi-circle-user:before{content:"\f138"}.vi.vi-circle-xmark:before{content:"\f139"}.vi.vi-city:before{content:"\f13a"}.vi.vi-clock-rotate-left:before{content:"\f13b"}.vi.vi-clock:before{content:"\f13c"}.vi.vi-code:before{content:"\f13d"}.vi.vi-codeblock:before{content:"\f13e"}.vi.vi-compass:before{content:"\f13f"}.vi.vi-compress:before{content:"\f140"}.vi.vi-copy:before{content:"\f141"}.vi.vi-devices:before{content:"\f142"}.vi.vi-display:before{content:"\f143"}.vi.vi-earth:before{content:"\f144"}.vi.vi-eclipse:before{content:"\f145"}.vi.vi-edge:before{content:"\f146"}.vi.vi-ellipsis:before{content:"\f147"}.vi.vi-envelope:before{content:"\f148"}.vi.vi-ethernet:before{content:"\f149"}.vi.vi-euro:before{content:"\f14a"}.vi.vi-expand:before{content:"\f14b"}.vi.vi-eye-slash:before{content:"\f14c"}.vi.vi-eye:before{content:"\f14d"}.vi.vi-facebook-messenger:before{content:"\f14e"}.vi.vi-facebook:before{content:"\f14f"}.vi.vi-fast-backward:before{content:"\f150"}.vi.vi-fast-forward:before{content:"\f151"}.vi.vi-fax:before{content:"\f152"}.vi.vi-file:before{content:"\f153"}.vi.vi-files-list:before{content:"\f154"}.vi.vi-files:before{content:"\f155"}.vi.vi-filmstrip:before{content:"\f156"}.vi.vi-filter-plus:before{content:"\f157"}.vi.vi-filter-xmark:before{content:"\f158"}.vi.vi-filter:before{content:"\f159"}.vi.vi-fingerprint:before{content:"\f15a"}.vi.vi-firefox:before{content:"\f15b"}.vi.vi-flag-checkered:before{content:"\f15c"}.vi.vi-flag:before{content:"\f15d"}.vi.vi-floppy-disk:before{content:"\f15e"}.vi.vi-folder:before{content:"\f15f"}.vi.vi-forward:before{content:"\f160"}.vi.vi-gauge:before{content:"\f161"}.vi.vi-gear:before{content:"\f162"}.vi.vi-gift:before{content:"\f163"}.vi.vi-github:before{content:"\f164"}.vi.vi-google-play:before{content:"\f165"}.vi.vi-grid:before{content:"\f166"}.vi.vi-grip-lines:before{content:"\f167"}.vi.vi-heading-1:before{content:"\f168"}.vi.vi-heading-2:before{content:"\f169"}.vi.vi-heading-3:before{content:"\f16a"}.vi.vi-heading-4:before{content:"\f16b"}.vi.vi-heading-5:before{content:"\f16c"}.vi.vi-heading-6:before{content:"\f16d"}.vi.vi-headset:before{content:"\f16e"}.vi.vi-heart-crack:before{content:"\f16f"}.vi.vi-heart-half:before{content:"\f170"}.vi.vi-heart:before{content:"\f171"}.vi.vi-house:before{content:"\f172"}.vi.vi-id-card:before{content:"\f173"}.vi.vi-image:before{content:"\f174"}.vi.vi-italic:before{content:"\f175"}.vi.vi-laptop:before{content:"\f176"}.vi.vi-layers-plus:before{content:"\f177"}.vi.vi-layers:before{content:"\f178"}.vi.vi-lightbulb-on:before{content:"\f179"}.vi.vi-lightbulb:before{content:"\f17a"}.vi.vi-line:before{content:"\f17b"}.vi.vi-linkedin:before{content:"\f17c"}.vi.vi-list-checks:before{content:"\f17d"}.vi.vi-list-clock:before{content:"\f17e"}.vi.vi-list-ordered-clock:before{content:"\f17f"}.vi.vi-list-ordered:before{content:"\f180"}.vi.vi-list:before{content:"\f181"}.vi.vi-location-pin-dot:before{content:"\f182"}.vi.vi-location-pin-slash:before{content:"\f183"}.vi.vi-location-pin:before{content:"\f184"}.vi.vi-location-pins-route:before{content:"\f185"}.vi.vi-lock-open:before{content:"\f186"}.vi.vi-lock:before{content:"\f187"}.vi.vi-magnifying-glass:before{content:"\f188"}.vi.vi-megaphone:before{content:"\f189"}.vi.vi-message-pen:before{content:"\f18a"}.vi.vi-message-smile:before{content:"\f18b"}.vi.vi-message-text:before{content:"\f18c"}.vi.vi-message:before{content:"\f18d"}.vi.vi-microphone:before{content:"\f18e"}.vi.vi-moon:before{content:"\f18f"}.vi.vi-music:before{content:"\f190"}.vi.vi-network:before{content:"\f191"}.vi.vi-numpad:before{content:"\f192"}.vi.vi-paper-plane:before{content:"\f193"}.vi.vi-parachute-box:before{content:"\f194"}.vi.vi-paragraph:before{content:"\f195"}.vi.vi-pause:before{content:"\f196"}.vi.vi-pen:before{content:"\f197"}.vi.vi-people-circle:before{content:"\f198"}.vi.vi-people:before{content:"\f199"}.vi.vi-person-clock:before{content:"\f19a"}.vi.vi-person-gear:before{content:"\f19b"}.vi.vi-person-headset:before{content:"\f19c"}.vi.vi-person-list:before{content:"\f19d"}.vi.vi-person-lock:before{content:"\f19e"}.vi.vi-person-plus:before{content:"\f19f"}.vi.vi-person:before{content:"\f1a0"}.vi.vi-phone-arrow-down-left-prohibited:before{content:"\f1a1"}.vi.vi-phone-arrow-down-left:before{content:"\f1a2"}.vi.vi-phone-arrow-up-right-prohibited:before{content:"\f1a3"}.vi.vi-phone-arrow-up-right:before{content:"\f1a4"}.vi.vi-phone-clock:before{content:"\f1a5"}.vi.vi-phone-gear:before{content:"\f1a6"}.vi.vi-phone-list:before{content:"\f1a7"}.vi.vi-phone-office:before{content:"\f1a8"}.vi.vi-phone-volume:before{content:"\f1a9"}.vi.vi-phone:before{content:"\f1aa"}.vi.vi-play-pause:before{content:"\f1ab"}.vi.vi-play:before{content:"\f1ac"}.vi.vi-plus:before{content:"\f1ad"}.vi.vi-power:before{content:"\f1ae"}.vi.vi-prohibited:before{content:"\f1af"}.vi.vi-puzzle-piece:before{content:"\f1b0"}.vi.vi-quote:before{content:"\f1b1"}.vi.vi-redo:before{content:"\f1b2"}.vi.vi-repeat-once:before{content:"\f1b3"}.vi.vi-repeat:before{content:"\f1b4"}.vi.vi-safari:before{content:"\f1b5"}.vi.vi-server:before{content:"\f1b6"}.vi.vi-shield-keyhole:before{content:"\f1b7"}.vi.vi-shield-plus:before{content:"\f1b8"}.vi.vi-shield-xmark:before{content:"\f1b9"}.vi.vi-shield:before{content:"\f1ba"}.vi.vi-shuffle:before{content:"\f1bb"}.vi.vi-sim-card:before{content:"\f1bc"}.vi.vi-sippy:before{content:"\f1bd"}.vi.vi-sliders:before{content:"\f1be"}.vi.vi-smartphone-arrow-right:before{content:"\f1bf"}.vi.vi-smartphone:before{content:"\f1c0"}.vi.vi-spinner-third:before{content:"\f1c1"}.vi.vi-spy:before{content:"\f1c2"}.vi.vi-square-gum:before{content:"\f1c3"}.vi.vi-star:before{content:"\f1c4"}.vi.vi-stop:before{content:"\f1c5"}.vi.vi-store:before{content:"\f1c6"}.vi.vi-strikethrough:before{content:"\f1c7"}.vi.vi-sun:before{content:"\f1c8"}.vi.vi-swatchbook:before{content:"\f1c9"}.vi.vi-table-clock:before{content:"\f1ca"}.vi.vi-table:before{content:"\f1cb"}.vi.vi-tag:before{content:"\f1cc"}.vi.vi-tower-broadcast:before{content:"\f1cd"}.vi.vi-trash-can:before{content:"\f1ce"}.vi.vi-triangle-exclamation:before{content:"\f1cf"}.vi.vi-underline:before{content:"\f1d0"}.vi.vi-undo:before{content:"\f1d1"}.vi.vi-valkyrie-sword:before{content:"\f1d2"}.vi.vi-video:before{content:"\f1d3"}.vi.vi-voicemail:before{content:"\f1d4"}.vi.vi-volume-0:before{content:"\f1d5"}.vi.vi-volume-1:before{content:"\f1d6"}.vi.vi-volume-2:before{content:"\f1d7"}.vi.vi-volume-3:before{content:"\f1d8"}.vi.vi-volume-slash:before{content:"\f1d9"}.vi.vi-wallpaper:before{content:"\f1da"}.vi.vi-waveform:before{content:"\f1db"}.vi.vi-webhooks-clock:before{content:"\f1dc"}.vi.vi-webhooks:before{content:"\f1dd"}.vi.vi-window:before{content:"\f1de"}.vi.vi-xmark:before{content:"\f1df"} +@font-face{font-family:"Valkyrie";src:url("./fonts/Valkyrie.woff?02572d1af40deaeeff4936d54a091c95") format("woff"),url("./fonts/Valkyrie.woff2?02572d1af40deaeeff4936d54a091c95") format("woff2")}.vi{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-family:Valkyrie !important;font-style:normal;font-variant:normal;font-weight:normal !important;height:1em;width:1em;line-height:1;text-rendering:auto;box-sizing:content-box;position:relative;overflow:visible;vertical-align:0;flex-shrink:0}.vi-spin{-webkit-animation-name:animate-spin;animation-name:animate-spin;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}@media (prefers-reduced-motion: reduce){.vi-spin{-webkit-animation:none;animation:none}}.vi-rotate-90{transform:rotate(90deg)}.vi-rotate-180{transform:rotate(180deg)}.vi-rotate-270{transform:rotate(270deg)}.vi-flip-x{transform:scaleX(-1)}.vi-flip-y{transform:scaleY(-1)}.vi-flip{transform:scale(-1)}@-webkit-keyframes animate-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes animate-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.vi.vi-a-gum:before{content:""}.vi.vi-address-book:before{content:""}.vi.vi-angle-down:before{content:""}.vi.vi-angle-left:before{content:""}.vi.vi-angle-right:before{content:""}.vi.vi-angle-up:before{content:""}.vi.vi-angles-y:before{content:""}.vi.vi-apple-app-store:before{content:""}.vi.vi-arrow-down-short-wide:before{content:""}.vi.vi-arrow-down-to-line:before{content:""}.vi.vi-arrow-down-wide-short:before{content:""}.vi.vi-arrow-down:before{content:""}.vi.vi-arrow-left-from-bracket:before{content:""}.vi.vi-arrow-left-to-bracket:before{content:""}.vi.vi-arrow-left-to-line:before{content:""}.vi.vi-arrow-left:before{content:""}.vi.vi-arrow-pointer:before{content:""}.vi.vi-arrow-right-from-bracket:before{content:""}.vi.vi-arrow-right-prohibited:before{content:""}.vi.vi-arrow-right-to-bracket:before{content:""}.vi.vi-arrow-right-to-line:before{content:""}.vi.vi-arrow-right:before{content:""}.vi.vi-arrow-rotate-right:before{content:""}.vi.vi-arrow-up-short-wide:before{content:""}.vi.vi-arrow-up-to-line:before{content:""}.vi.vi-arrow-up-wide-short:before{content:""}.vi.vi-arrow-up:before{content:""}.vi.vi-arrows-rotate-right:before{content:""}.vi.vi-asterisk:before{content:""}.vi.vi-at:before{content:""}.vi.vi-backward:before{content:""}.vi.vi-bars:before{content:""}.vi.vi-blf:before{content:""}.vi.vi-bold:before{content:""}.vi.vi-book:before{content:""}.vi.vi-box-open-full:before{content:""}.vi.vi-brackets-curly:before{content:""}.vi.vi-bug:before{content:""}.vi.vi-building:before{content:""}.vi.vi-calendar-stars:before{content:""}.vi.vi-calendar:before{content:""}.vi.vi-chain-slash:before{content:""}.vi.vi-chain:before{content:""}.vi.vi-chart-pie:before{content:""}.vi.vi-check:before{content:""}.vi.vi-chevron-down:before{content:""}.vi.vi-chevron-left:before{content:""}.vi.vi-chevron-right:before{content:""}.vi.vi-chevron-up:before{content:""}.vi.vi-chrome:before{content:""}.vi.vi-circle-check:before{content:""}.vi.vi-circle-exclamation:before{content:""}.vi.vi-circle-info:before{content:""}.vi.vi-circle-plus:before{content:""}.vi.vi-circle-question:before{content:""}.vi.vi-circle-user:before{content:""}.vi.vi-circle-xmark:before{content:""}.vi.vi-city:before{content:""}.vi.vi-clock-rotate-left:before{content:""}.vi.vi-clock:before{content:""}.vi.vi-code:before{content:""}.vi.vi-codeblock:before{content:""}.vi.vi-compass:before{content:""}.vi.vi-compress:before{content:""}.vi.vi-copy:before{content:""}.vi.vi-devices:before{content:""}.vi.vi-display:before{content:""}.vi.vi-earth:before{content:""}.vi.vi-eclipse:before{content:""}.vi.vi-edge:before{content:""}.vi.vi-ellipsis:before{content:""}.vi.vi-envelope:before{content:""}.vi.vi-ethernet:before{content:""}.vi.vi-euro:before{content:""}.vi.vi-expand:before{content:""}.vi.vi-eye-slash:before{content:""}.vi.vi-eye:before{content:""}.vi.vi-facebook-messenger:before{content:""}.vi.vi-facebook:before{content:""}.vi.vi-fast-backward:before{content:""}.vi.vi-fast-forward:before{content:""}.vi.vi-fax:before{content:""}.vi.vi-file:before{content:""}.vi.vi-files-list:before{content:""}.vi.vi-files:before{content:""}.vi.vi-filmstrip:before{content:""}.vi.vi-filter-plus:before{content:""}.vi.vi-filter-xmark:before{content:""}.vi.vi-filter:before{content:""}.vi.vi-fingerprint:before{content:""}.vi.vi-firefox:before{content:""}.vi.vi-flag-checkered:before{content:""}.vi.vi-flag:before{content:""}.vi.vi-floppy-disk:before{content:""}.vi.vi-folder:before{content:""}.vi.vi-forward:before{content:""}.vi.vi-gauge:before{content:""}.vi.vi-gear:before{content:""}.vi.vi-gift:before{content:""}.vi.vi-github:before{content:""}.vi.vi-google-play:before{content:""}.vi.vi-grid:before{content:""}.vi.vi-grip-lines:before{content:""}.vi.vi-heading-1:before{content:""}.vi.vi-heading-2:before{content:""}.vi.vi-heading-3:before{content:""}.vi.vi-heading-4:before{content:""}.vi.vi-heading-5:before{content:""}.vi.vi-heading-6:before{content:""}.vi.vi-headset:before{content:""}.vi.vi-heart-crack:before{content:""}.vi.vi-heart-half:before{content:""}.vi.vi-heart:before{content:""}.vi.vi-house:before{content:""}.vi.vi-id-card:before{content:""}.vi.vi-image:before{content:""}.vi.vi-italic:before{content:""}.vi.vi-laptop:before{content:""}.vi.vi-layers-plus:before{content:""}.vi.vi-layers:before{content:""}.vi.vi-lightbulb-on:before{content:""}.vi.vi-lightbulb:before{content:""}.vi.vi-line:before{content:""}.vi.vi-linkedin:before{content:""}.vi.vi-list-checks:before{content:""}.vi.vi-list-clock:before{content:""}.vi.vi-list-ordered-clock:before{content:""}.vi.vi-list-ordered:before{content:""}.vi.vi-list:before{content:""}.vi.vi-location-pin-dot:before{content:""}.vi.vi-location-pin-slash:before{content:""}.vi.vi-location-pin:before{content:""}.vi.vi-location-pins-route:before{content:""}.vi.vi-lock-open:before{content:""}.vi.vi-lock:before{content:""}.vi.vi-magnifying-glass:before{content:""}.vi.vi-megaphone:before{content:""}.vi.vi-message-pen:before{content:""}.vi.vi-message-smile:before{content:""}.vi.vi-message-text:before{content:""}.vi.vi-message:before{content:""}.vi.vi-microphone:before{content:""}.vi.vi-moon:before{content:""}.vi.vi-music:before{content:""}.vi.vi-network:before{content:""}.vi.vi-numpad:before{content:""}.vi.vi-paper-plane:before{content:""}.vi.vi-parachute-box:before{content:""}.vi.vi-paragraph:before{content:""}.vi.vi-pause:before{content:""}.vi.vi-pen:before{content:""}.vi.vi-people-circle:before{content:""}.vi.vi-people:before{content:""}.vi.vi-person-clock:before{content:""}.vi.vi-person-gear:before{content:""}.vi.vi-person-headset:before{content:""}.vi.vi-person-list:before{content:""}.vi.vi-person-lock:before{content:""}.vi.vi-person-plus:before{content:""}.vi.vi-person:before{content:""}.vi.vi-phone-arrow-down-left-prohibited:before{content:""}.vi.vi-phone-arrow-down-left:before{content:""}.vi.vi-phone-arrow-up-right-prohibited:before{content:""}.vi.vi-phone-arrow-up-right:before{content:""}.vi.vi-phone-clock:before{content:""}.vi.vi-phone-gear:before{content:""}.vi.vi-phone-list:before{content:""}.vi.vi-phone-office:before{content:""}.vi.vi-phone-volume:before{content:""}.vi.vi-phone:before{content:""}.vi.vi-play-pause:before{content:""}.vi.vi-play:before{content:""}.vi.vi-plus:before{content:""}.vi.vi-power:before{content:""}.vi.vi-prohibited:before{content:""}.vi.vi-puzzle-piece:before{content:""}.vi.vi-quote:before{content:""}.vi.vi-redo:before{content:""}.vi.vi-repeat-once:before{content:""}.vi.vi-repeat:before{content:""}.vi.vi-safari:before{content:""}.vi.vi-server:before{content:""}.vi.vi-shield-keyhole:before{content:""}.vi.vi-shield-plus:before{content:""}.vi.vi-shield-xmark:before{content:""}.vi.vi-shield:before{content:""}.vi.vi-shuffle:before{content:""}.vi.vi-sim-card:before{content:""}.vi.vi-sippy:before{content:""}.vi.vi-sliders:before{content:""}.vi.vi-smartphone-arrow-right:before{content:""}.vi.vi-smartphone:before{content:""}.vi.vi-spinner-third:before{content:""}.vi.vi-spy:before{content:""}.vi.vi-square-gum:before{content:""}.vi.vi-star:before{content:""}.vi.vi-stop:before{content:""}.vi.vi-store:before{content:""}.vi.vi-strikethrough:before{content:""}.vi.vi-sun:before{content:""}.vi.vi-swatchbook:before{content:""}.vi.vi-table-clock:before{content:""}.vi.vi-table:before{content:""}.vi.vi-tag:before{content:""}.vi.vi-tower-broadcast:before{content:""}.vi.vi-trash-can:before{content:""}.vi.vi-triangle-exclamation:before{content:""}.vi.vi-underline:before{content:""}.vi.vi-undo:before{content:""}.vi.vi-valkyrie-sword:before{content:""}.vi.vi-video:before{content:""}.vi.vi-voicemail:before{content:""}.vi.vi-volume-0:before{content:""}.vi.vi-volume-1:before{content:""}.vi.vi-volume-2:before{content:""}.vi.vi-volume-3:before{content:""}.vi.vi-volume-slash:before{content:""}.vi.vi-wallpaper:before{content:""}.vi.vi-waveform:before{content:""}.vi.vi-webhooks-clock:before{content:""}.vi.vi-webhooks:before{content:""}.vi.vi-window:before{content:""}.vi.vi-xmark:before{content:""} /*# sourceMappingURL=Valkyrie.css.map */ \ No newline at end of file diff --git a/font/Valkyrie.css.map b/font/Valkyrie.css.map index 2e1526df..4ad600cb 100644 --- a/font/Valkyrie.css.map +++ b/font/Valkyrie.css.map @@ -1 +1 @@ -{"version":3,"sources":["Valkyrie.css"],"names":[],"mappings":"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","file":"Valkyrie.css","sourcesContent":["@font-face{font-family:\"Valkyrie\";src:url(\"./fonts/Valkyrie.woff?02572d1af40deaeeff4936d54a091c95\") format(\"woff\"),url(\"./fonts/Valkyrie.woff2?02572d1af40deaeeff4936d54a091c95\") format(\"woff2\")}.vi{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-family:Valkyrie !important;font-style:normal;font-variant:normal;font-weight:normal !important;line-height:1;text-rendering:auto;box-sizing:content-box;position:relative;overflow:visible;vertical-align:0;flex-shrink:0}.vi-spin{animation-name:animate-spin;animation-duration:2s;animation-iteration-count:infinite;animation-timing-function:linear}@media (prefers-reduced-motion: reduce){.vi-spin{animation:none}}.vi-rotate-90{transform:rotate(90deg)}.vi-rotate-180{transform:rotate(180deg)}.vi-rotate-270{transform:rotate(270deg)}.vi-flip-x{transform:scaleX(-1)}.vi-flip-y{transform:scaleY(-1)}.vi-flip{transform:scale(-1)}@keyframes animate-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.vi.vi-a-gum:before{content:\"\\f101\"}.vi.vi-address-book:before{content:\"\\f102\"}.vi.vi-angle-down:before{content:\"\\f103\"}.vi.vi-angle-left:before{content:\"\\f104\"}.vi.vi-angle-right:before{content:\"\\f105\"}.vi.vi-angle-up:before{content:\"\\f106\"}.vi.vi-angles-y:before{content:\"\\f107\"}.vi.vi-apple-app-store:before{content:\"\\f108\"}.vi.vi-arrow-down-short-wide:before{content:\"\\f109\"}.vi.vi-arrow-down-to-line:before{content:\"\\f10a\"}.vi.vi-arrow-down-wide-short:before{content:\"\\f10b\"}.vi.vi-arrow-down:before{content:\"\\f10c\"}.vi.vi-arrow-left-from-bracket:before{content:\"\\f10d\"}.vi.vi-arrow-left-to-bracket:before{content:\"\\f10e\"}.vi.vi-arrow-left-to-line:before{content:\"\\f10f\"}.vi.vi-arrow-left:before{content:\"\\f110\"}.vi.vi-arrow-pointer:before{content:\"\\f111\"}.vi.vi-arrow-right-from-bracket:before{content:\"\\f112\"}.vi.vi-arrow-right-prohibited:before{content:\"\\f113\"}.vi.vi-arrow-right-to-bracket:before{content:\"\\f114\"}.vi.vi-arrow-right-to-line:before{content:\"\\f115\"}.vi.vi-arrow-right:before{content:\"\\f116\"}.vi.vi-arrow-rotate-right:before{content:\"\\f117\"}.vi.vi-arrow-up-short-wide:before{content:\"\\f118\"}.vi.vi-arrow-up-to-line:before{content:\"\\f119\"}.vi.vi-arrow-up-wide-short:before{content:\"\\f11a\"}.vi.vi-arrow-up:before{content:\"\\f11b\"}.vi.vi-arrows-rotate-right:before{content:\"\\f11c\"}.vi.vi-asterisk:before{content:\"\\f11d\"}.vi.vi-at:before{content:\"\\f11e\"}.vi.vi-backward:before{content:\"\\f11f\"}.vi.vi-bars:before{content:\"\\f120\"}.vi.vi-blf:before{content:\"\\f121\"}.vi.vi-bold:before{content:\"\\f122\"}.vi.vi-book:before{content:\"\\f123\"}.vi.vi-box-open-full:before{content:\"\\f124\"}.vi.vi-brackets-curly:before{content:\"\\f125\"}.vi.vi-bug:before{content:\"\\f126\"}.vi.vi-building:before{content:\"\\f127\"}.vi.vi-calendar-stars:before{content:\"\\f128\"}.vi.vi-calendar:before{content:\"\\f129\"}.vi.vi-chain-slash:before{content:\"\\f12a\"}.vi.vi-chain:before{content:\"\\f12b\"}.vi.vi-chart-pie:before{content:\"\\f12c\"}.vi.vi-check:before{content:\"\\f12d\"}.vi.vi-chevron-down:before{content:\"\\f12e\"}.vi.vi-chevron-left:before{content:\"\\f12f\"}.vi.vi-chevron-right:before{content:\"\\f130\"}.vi.vi-chevron-up:before{content:\"\\f131\"}.vi.vi-chrome:before{content:\"\\f132\"}.vi.vi-circle-check:before{content:\"\\f133\"}.vi.vi-circle-exclamation:before{content:\"\\f134\"}.vi.vi-circle-info:before{content:\"\\f135\"}.vi.vi-circle-plus:before{content:\"\\f136\"}.vi.vi-circle-question:before{content:\"\\f137\"}.vi.vi-circle-user:before{content:\"\\f138\"}.vi.vi-circle-xmark:before{content:\"\\f139\"}.vi.vi-city:before{content:\"\\f13a\"}.vi.vi-clock-rotate-left:before{content:\"\\f13b\"}.vi.vi-clock:before{content:\"\\f13c\"}.vi.vi-code:before{content:\"\\f13d\"}.vi.vi-codeblock:before{content:\"\\f13e\"}.vi.vi-compass:before{content:\"\\f13f\"}.vi.vi-compress:before{content:\"\\f140\"}.vi.vi-copy:before{content:\"\\f141\"}.vi.vi-devices:before{content:\"\\f142\"}.vi.vi-display:before{content:\"\\f143\"}.vi.vi-earth:before{content:\"\\f144\"}.vi.vi-eclipse:before{content:\"\\f145\"}.vi.vi-edge:before{content:\"\\f146\"}.vi.vi-ellipsis:before{content:\"\\f147\"}.vi.vi-envelope:before{content:\"\\f148\"}.vi.vi-ethernet:before{content:\"\\f149\"}.vi.vi-euro:before{content:\"\\f14a\"}.vi.vi-expand:before{content:\"\\f14b\"}.vi.vi-eye-slash:before{content:\"\\f14c\"}.vi.vi-eye:before{content:\"\\f14d\"}.vi.vi-facebook-messenger:before{content:\"\\f14e\"}.vi.vi-facebook:before{content:\"\\f14f\"}.vi.vi-fast-backward:before{content:\"\\f150\"}.vi.vi-fast-forward:before{content:\"\\f151\"}.vi.vi-fax:before{content:\"\\f152\"}.vi.vi-file:before{content:\"\\f153\"}.vi.vi-files-list:before{content:\"\\f154\"}.vi.vi-files:before{content:\"\\f155\"}.vi.vi-filmstrip:before{content:\"\\f156\"}.vi.vi-filter-plus:before{content:\"\\f157\"}.vi.vi-filter-xmark:before{content:\"\\f158\"}.vi.vi-filter:before{content:\"\\f159\"}.vi.vi-fingerprint:before{content:\"\\f15a\"}.vi.vi-firefox:before{content:\"\\f15b\"}.vi.vi-flag-checkered:before{content:\"\\f15c\"}.vi.vi-flag:before{content:\"\\f15d\"}.vi.vi-floppy-disk:before{content:\"\\f15e\"}.vi.vi-folder:before{content:\"\\f15f\"}.vi.vi-forward:before{content:\"\\f160\"}.vi.vi-gauge:before{content:\"\\f161\"}.vi.vi-gear:before{content:\"\\f162\"}.vi.vi-gift:before{content:\"\\f163\"}.vi.vi-github:before{content:\"\\f164\"}.vi.vi-google-play:before{content:\"\\f165\"}.vi.vi-grid:before{content:\"\\f166\"}.vi.vi-grip-lines:before{content:\"\\f167\"}.vi.vi-heading-1:before{content:\"\\f168\"}.vi.vi-heading-2:before{content:\"\\f169\"}.vi.vi-heading-3:before{content:\"\\f16a\"}.vi.vi-heading-4:before{content:\"\\f16b\"}.vi.vi-heading-5:before{content:\"\\f16c\"}.vi.vi-heading-6:before{content:\"\\f16d\"}.vi.vi-headset:before{content:\"\\f16e\"}.vi.vi-heart-crack:before{content:\"\\f16f\"}.vi.vi-heart-half:before{content:\"\\f170\"}.vi.vi-heart:before{content:\"\\f171\"}.vi.vi-house:before{content:\"\\f172\"}.vi.vi-id-card:before{content:\"\\f173\"}.vi.vi-image:before{content:\"\\f174\"}.vi.vi-italic:before{content:\"\\f175\"}.vi.vi-laptop:before{content:\"\\f176\"}.vi.vi-layers-plus:before{content:\"\\f177\"}.vi.vi-layers:before{content:\"\\f178\"}.vi.vi-lightbulb-on:before{content:\"\\f179\"}.vi.vi-lightbulb:before{content:\"\\f17a\"}.vi.vi-line:before{content:\"\\f17b\"}.vi.vi-linkedin:before{content:\"\\f17c\"}.vi.vi-list-checks:before{content:\"\\f17d\"}.vi.vi-list-clock:before{content:\"\\f17e\"}.vi.vi-list-ordered-clock:before{content:\"\\f17f\"}.vi.vi-list-ordered:before{content:\"\\f180\"}.vi.vi-list:before{content:\"\\f181\"}.vi.vi-location-pin-dot:before{content:\"\\f182\"}.vi.vi-location-pin-slash:before{content:\"\\f183\"}.vi.vi-location-pin:before{content:\"\\f184\"}.vi.vi-location-pins-route:before{content:\"\\f185\"}.vi.vi-lock-open:before{content:\"\\f186\"}.vi.vi-lock:before{content:\"\\f187\"}.vi.vi-magnifying-glass:before{content:\"\\f188\"}.vi.vi-megaphone:before{content:\"\\f189\"}.vi.vi-message-pen:before{content:\"\\f18a\"}.vi.vi-message-smile:before{content:\"\\f18b\"}.vi.vi-message-text:before{content:\"\\f18c\"}.vi.vi-message:before{content:\"\\f18d\"}.vi.vi-microphone:before{content:\"\\f18e\"}.vi.vi-moon:before{content:\"\\f18f\"}.vi.vi-music:before{content:\"\\f190\"}.vi.vi-network:before{content:\"\\f191\"}.vi.vi-numpad:before{content:\"\\f192\"}.vi.vi-paper-plane:before{content:\"\\f193\"}.vi.vi-parachute-box:before{content:\"\\f194\"}.vi.vi-paragraph:before{content:\"\\f195\"}.vi.vi-pause:before{content:\"\\f196\"}.vi.vi-pen:before{content:\"\\f197\"}.vi.vi-people-circle:before{content:\"\\f198\"}.vi.vi-people:before{content:\"\\f199\"}.vi.vi-person-clock:before{content:\"\\f19a\"}.vi.vi-person-gear:before{content:\"\\f19b\"}.vi.vi-person-headset:before{content:\"\\f19c\"}.vi.vi-person-list:before{content:\"\\f19d\"}.vi.vi-person-lock:before{content:\"\\f19e\"}.vi.vi-person-plus:before{content:\"\\f19f\"}.vi.vi-person:before{content:\"\\f1a0\"}.vi.vi-phone-arrow-down-left-prohibited:before{content:\"\\f1a1\"}.vi.vi-phone-arrow-down-left:before{content:\"\\f1a2\"}.vi.vi-phone-arrow-up-right-prohibited:before{content:\"\\f1a3\"}.vi.vi-phone-arrow-up-right:before{content:\"\\f1a4\"}.vi.vi-phone-clock:before{content:\"\\f1a5\"}.vi.vi-phone-gear:before{content:\"\\f1a6\"}.vi.vi-phone-list:before{content:\"\\f1a7\"}.vi.vi-phone-office:before{content:\"\\f1a8\"}.vi.vi-phone-volume:before{content:\"\\f1a9\"}.vi.vi-phone:before{content:\"\\f1aa\"}.vi.vi-play-pause:before{content:\"\\f1ab\"}.vi.vi-play:before{content:\"\\f1ac\"}.vi.vi-plus:before{content:\"\\f1ad\"}.vi.vi-power:before{content:\"\\f1ae\"}.vi.vi-prohibited:before{content:\"\\f1af\"}.vi.vi-puzzle-piece:before{content:\"\\f1b0\"}.vi.vi-quote:before{content:\"\\f1b1\"}.vi.vi-redo:before{content:\"\\f1b2\"}.vi.vi-repeat-once:before{content:\"\\f1b3\"}.vi.vi-repeat:before{content:\"\\f1b4\"}.vi.vi-safari:before{content:\"\\f1b5\"}.vi.vi-server:before{content:\"\\f1b6\"}.vi.vi-shield-keyhole:before{content:\"\\f1b7\"}.vi.vi-shield-plus:before{content:\"\\f1b8\"}.vi.vi-shield-xmark:before{content:\"\\f1b9\"}.vi.vi-shield:before{content:\"\\f1ba\"}.vi.vi-shuffle:before{content:\"\\f1bb\"}.vi.vi-sim-card:before{content:\"\\f1bc\"}.vi.vi-sippy:before{content:\"\\f1bd\"}.vi.vi-sliders:before{content:\"\\f1be\"}.vi.vi-smartphone-arrow-right:before{content:\"\\f1bf\"}.vi.vi-smartphone:before{content:\"\\f1c0\"}.vi.vi-spinner-third:before{content:\"\\f1c1\"}.vi.vi-spy:before{content:\"\\f1c2\"}.vi.vi-square-gum:before{content:\"\\f1c3\"}.vi.vi-star:before{content:\"\\f1c4\"}.vi.vi-stop:before{content:\"\\f1c5\"}.vi.vi-store:before{content:\"\\f1c6\"}.vi.vi-strikethrough:before{content:\"\\f1c7\"}.vi.vi-sun:before{content:\"\\f1c8\"}.vi.vi-swatchbook:before{content:\"\\f1c9\"}.vi.vi-table-clock:before{content:\"\\f1ca\"}.vi.vi-table:before{content:\"\\f1cb\"}.vi.vi-tag:before{content:\"\\f1cc\"}.vi.vi-tower-broadcast:before{content:\"\\f1cd\"}.vi.vi-trash-can:before{content:\"\\f1ce\"}.vi.vi-triangle-exclamation:before{content:\"\\f1cf\"}.vi.vi-underline:before{content:\"\\f1d0\"}.vi.vi-undo:before{content:\"\\f1d1\"}.vi.vi-valkyrie-sword:before{content:\"\\f1d2\"}.vi.vi-video:before{content:\"\\f1d3\"}.vi.vi-voicemail:before{content:\"\\f1d4\"}.vi.vi-volume-0:before{content:\"\\f1d5\"}.vi.vi-volume-1:before{content:\"\\f1d6\"}.vi.vi-volume-2:before{content:\"\\f1d7\"}.vi.vi-volume-3:before{content:\"\\f1d8\"}.vi.vi-volume-slash:before{content:\"\\f1d9\"}.vi.vi-wallpaper:before{content:\"\\f1da\"}.vi.vi-waveform:before{content:\"\\f1db\"}.vi.vi-webhooks-clock:before{content:\"\\f1dc\"}.vi.vi-webhooks:before{content:\"\\f1dd\"}.vi.vi-window:before{content:\"\\f1de\"}.vi.vi-xmark:before{content:\"\\f1df\"}\n"]} \ No newline at end of file +{"version":3,"sources":["Valkyrie.css"],"names":[],"mappings":"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","file":"Valkyrie.css","sourcesContent":["@font-face{font-family:\"Valkyrie\";src:url(\"./fonts/Valkyrie.woff?02572d1af40deaeeff4936d54a091c95\") format(\"woff\"),url(\"./fonts/Valkyrie.woff2?02572d1af40deaeeff4936d54a091c95\") format(\"woff2\")}.vi{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-family:Valkyrie !important;font-style:normal;font-variant:normal;font-weight:normal !important;height:1em;width:1em;line-height:1;text-rendering:auto;box-sizing:content-box;position:relative;overflow:visible;vertical-align:0;flex-shrink:0}.vi-spin{animation-name:animate-spin;animation-duration:2s;animation-iteration-count:infinite;animation-timing-function:linear}@media (prefers-reduced-motion: reduce){.vi-spin{animation:none}}.vi-rotate-90{transform:rotate(90deg)}.vi-rotate-180{transform:rotate(180deg)}.vi-rotate-270{transform:rotate(270deg)}.vi-flip-x{transform:scaleX(-1)}.vi-flip-y{transform:scaleY(-1)}.vi-flip{transform:scale(-1)}@keyframes animate-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.vi.vi-a-gum:before{content:\"\"}.vi.vi-address-book:before{content:\"\"}.vi.vi-angle-down:before{content:\"\"}.vi.vi-angle-left:before{content:\"\"}.vi.vi-angle-right:before{content:\"\"}.vi.vi-angle-up:before{content:\"\"}.vi.vi-angles-y:before{content:\"\"}.vi.vi-apple-app-store:before{content:\"\"}.vi.vi-arrow-down-short-wide:before{content:\"\"}.vi.vi-arrow-down-to-line:before{content:\"\"}.vi.vi-arrow-down-wide-short:before{content:\"\"}.vi.vi-arrow-down:before{content:\"\"}.vi.vi-arrow-left-from-bracket:before{content:\"\"}.vi.vi-arrow-left-to-bracket:before{content:\"\"}.vi.vi-arrow-left-to-line:before{content:\"\"}.vi.vi-arrow-left:before{content:\"\"}.vi.vi-arrow-pointer:before{content:\"\"}.vi.vi-arrow-right-from-bracket:before{content:\"\"}.vi.vi-arrow-right-prohibited:before{content:\"\"}.vi.vi-arrow-right-to-bracket:before{content:\"\"}.vi.vi-arrow-right-to-line:before{content:\"\"}.vi.vi-arrow-right:before{content:\"\"}.vi.vi-arrow-rotate-right:before{content:\"\"}.vi.vi-arrow-up-short-wide:before{content:\"\"}.vi.vi-arrow-up-to-line:before{content:\"\"}.vi.vi-arrow-up-wide-short:before{content:\"\"}.vi.vi-arrow-up:before{content:\"\"}.vi.vi-arrows-rotate-right:before{content:\"\"}.vi.vi-asterisk:before{content:\"\"}.vi.vi-at:before{content:\"\"}.vi.vi-backward:before{content:\"\"}.vi.vi-bars:before{content:\"\"}.vi.vi-blf:before{content:\"\"}.vi.vi-bold:before{content:\"\"}.vi.vi-book:before{content:\"\"}.vi.vi-box-open-full:before{content:\"\"}.vi.vi-brackets-curly:before{content:\"\"}.vi.vi-bug:before{content:\"\"}.vi.vi-building:before{content:\"\"}.vi.vi-calendar-stars:before{content:\"\"}.vi.vi-calendar:before{content:\"\"}.vi.vi-chain-slash:before{content:\"\"}.vi.vi-chain:before{content:\"\"}.vi.vi-chart-pie:before{content:\"\"}.vi.vi-check:before{content:\"\"}.vi.vi-chevron-down:before{content:\"\"}.vi.vi-chevron-left:before{content:\"\"}.vi.vi-chevron-right:before{content:\"\"}.vi.vi-chevron-up:before{content:\"\"}.vi.vi-chrome:before{content:\"\"}.vi.vi-circle-check:before{content:\"\"}.vi.vi-circle-exclamation:before{content:\"\"}.vi.vi-circle-info:before{content:\"\"}.vi.vi-circle-plus:before{content:\"\"}.vi.vi-circle-question:before{content:\"\"}.vi.vi-circle-user:before{content:\"\"}.vi.vi-circle-xmark:before{content:\"\"}.vi.vi-city:before{content:\"\"}.vi.vi-clock-rotate-left:before{content:\"\"}.vi.vi-clock:before{content:\"\"}.vi.vi-code:before{content:\"\"}.vi.vi-codeblock:before{content:\"\"}.vi.vi-compass:before{content:\"\"}.vi.vi-compress:before{content:\"\"}.vi.vi-copy:before{content:\"\"}.vi.vi-devices:before{content:\"\"}.vi.vi-display:before{content:\"\"}.vi.vi-earth:before{content:\"\"}.vi.vi-eclipse:before{content:\"\"}.vi.vi-edge:before{content:\"\"}.vi.vi-ellipsis:before{content:\"\"}.vi.vi-envelope:before{content:\"\"}.vi.vi-ethernet:before{content:\"\"}.vi.vi-euro:before{content:\"\"}.vi.vi-expand:before{content:\"\"}.vi.vi-eye-slash:before{content:\"\"}.vi.vi-eye:before{content:\"\"}.vi.vi-facebook-messenger:before{content:\"\"}.vi.vi-facebook:before{content:\"\"}.vi.vi-fast-backward:before{content:\"\"}.vi.vi-fast-forward:before{content:\"\"}.vi.vi-fax:before{content:\"\"}.vi.vi-file:before{content:\"\"}.vi.vi-files-list:before{content:\"\"}.vi.vi-files:before{content:\"\"}.vi.vi-filmstrip:before{content:\"\"}.vi.vi-filter-plus:before{content:\"\"}.vi.vi-filter-xmark:before{content:\"\"}.vi.vi-filter:before{content:\"\"}.vi.vi-fingerprint:before{content:\"\"}.vi.vi-firefox:before{content:\"\"}.vi.vi-flag-checkered:before{content:\"\"}.vi.vi-flag:before{content:\"\"}.vi.vi-floppy-disk:before{content:\"\"}.vi.vi-folder:before{content:\"\"}.vi.vi-forward:before{content:\"\"}.vi.vi-gauge:before{content:\"\"}.vi.vi-gear:before{content:\"\"}.vi.vi-gift:before{content:\"\"}.vi.vi-github:before{content:\"\"}.vi.vi-google-play:before{content:\"\"}.vi.vi-grid:before{content:\"\"}.vi.vi-grip-lines:before{content:\"\"}.vi.vi-heading-1:before{content:\"\"}.vi.vi-heading-2:before{content:\"\"}.vi.vi-heading-3:before{content:\"\"}.vi.vi-heading-4:before{content:\"\"}.vi.vi-heading-5:before{content:\"\"}.vi.vi-heading-6:before{content:\"\"}.vi.vi-headset:before{content:\"\"}.vi.vi-heart-crack:before{content:\"\"}.vi.vi-heart-half:before{content:\"\"}.vi.vi-heart:before{content:\"\"}.vi.vi-house:before{content:\"\"}.vi.vi-id-card:before{content:\"\"}.vi.vi-image:before{content:\"\"}.vi.vi-italic:before{content:\"\"}.vi.vi-laptop:before{content:\"\"}.vi.vi-layers-plus:before{content:\"\"}.vi.vi-layers:before{content:\"\"}.vi.vi-lightbulb-on:before{content:\"\"}.vi.vi-lightbulb:before{content:\"\"}.vi.vi-line:before{content:\"\"}.vi.vi-linkedin:before{content:\"\"}.vi.vi-list-checks:before{content:\"\"}.vi.vi-list-clock:before{content:\"\"}.vi.vi-list-ordered-clock:before{content:\"\"}.vi.vi-list-ordered:before{content:\"\"}.vi.vi-list:before{content:\"\"}.vi.vi-location-pin-dot:before{content:\"\"}.vi.vi-location-pin-slash:before{content:\"\"}.vi.vi-location-pin:before{content:\"\"}.vi.vi-location-pins-route:before{content:\"\"}.vi.vi-lock-open:before{content:\"\"}.vi.vi-lock:before{content:\"\"}.vi.vi-magnifying-glass:before{content:\"\"}.vi.vi-megaphone:before{content:\"\"}.vi.vi-message-pen:before{content:\"\"}.vi.vi-message-smile:before{content:\"\"}.vi.vi-message-text:before{content:\"\"}.vi.vi-message:before{content:\"\"}.vi.vi-microphone:before{content:\"\"}.vi.vi-moon:before{content:\"\"}.vi.vi-music:before{content:\"\"}.vi.vi-network:before{content:\"\"}.vi.vi-numpad:before{content:\"\"}.vi.vi-paper-plane:before{content:\"\"}.vi.vi-parachute-box:before{content:\"\"}.vi.vi-paragraph:before{content:\"\"}.vi.vi-pause:before{content:\"\"}.vi.vi-pen:before{content:\"\"}.vi.vi-people-circle:before{content:\"\"}.vi.vi-people:before{content:\"\"}.vi.vi-person-clock:before{content:\"\"}.vi.vi-person-gear:before{content:\"\"}.vi.vi-person-headset:before{content:\"\"}.vi.vi-person-list:before{content:\"\"}.vi.vi-person-lock:before{content:\"\"}.vi.vi-person-plus:before{content:\"\"}.vi.vi-person:before{content:\"\"}.vi.vi-phone-arrow-down-left-prohibited:before{content:\"\"}.vi.vi-phone-arrow-down-left:before{content:\"\"}.vi.vi-phone-arrow-up-right-prohibited:before{content:\"\"}.vi.vi-phone-arrow-up-right:before{content:\"\"}.vi.vi-phone-clock:before{content:\"\"}.vi.vi-phone-gear:before{content:\"\"}.vi.vi-phone-list:before{content:\"\"}.vi.vi-phone-office:before{content:\"\"}.vi.vi-phone-volume:before{content:\"\"}.vi.vi-phone:before{content:\"\"}.vi.vi-play-pause:before{content:\"\"}.vi.vi-play:before{content:\"\"}.vi.vi-plus:before{content:\"\"}.vi.vi-power:before{content:\"\"}.vi.vi-prohibited:before{content:\"\"}.vi.vi-puzzle-piece:before{content:\"\"}.vi.vi-quote:before{content:\"\"}.vi.vi-redo:before{content:\"\"}.vi.vi-repeat-once:before{content:\"\"}.vi.vi-repeat:before{content:\"\"}.vi.vi-safari:before{content:\"\"}.vi.vi-server:before{content:\"\"}.vi.vi-shield-keyhole:before{content:\"\"}.vi.vi-shield-plus:before{content:\"\"}.vi.vi-shield-xmark:before{content:\"\"}.vi.vi-shield:before{content:\"\"}.vi.vi-shuffle:before{content:\"\"}.vi.vi-sim-card:before{content:\"\"}.vi.vi-sippy:before{content:\"\"}.vi.vi-sliders:before{content:\"\"}.vi.vi-smartphone-arrow-right:before{content:\"\"}.vi.vi-smartphone:before{content:\"\"}.vi.vi-spinner-third:before{content:\"\"}.vi.vi-spy:before{content:\"\"}.vi.vi-square-gum:before{content:\"\"}.vi.vi-star:before{content:\"\"}.vi.vi-stop:before{content:\"\"}.vi.vi-store:before{content:\"\"}.vi.vi-strikethrough:before{content:\"\"}.vi.vi-sun:before{content:\"\"}.vi.vi-swatchbook:before{content:\"\"}.vi.vi-table-clock:before{content:\"\"}.vi.vi-table:before{content:\"\"}.vi.vi-tag:before{content:\"\"}.vi.vi-tower-broadcast:before{content:\"\"}.vi.vi-trash-can:before{content:\"\"}.vi.vi-triangle-exclamation:before{content:\"\"}.vi.vi-underline:before{content:\"\"}.vi.vi-undo:before{content:\"\"}.vi.vi-valkyrie-sword:before{content:\"\"}.vi.vi-video:before{content:\"\"}.vi.vi-voicemail:before{content:\"\"}.vi.vi-volume-0:before{content:\"\"}.vi.vi-volume-1:before{content:\"\"}.vi.vi-volume-2:before{content:\"\"}.vi.vi-volume-3:before{content:\"\"}.vi.vi-volume-slash:before{content:\"\"}.vi.vi-wallpaper:before{content:\"\"}.vi.vi-waveform:before{content:\"\"}.vi.vi-webhooks-clock:before{content:\"\"}.vi.vi-webhooks:before{content:\"\"}.vi.vi-window:before{content:\"\"}.vi.vi-xmark:before{content:\"\"}\n"]} \ No newline at end of file diff --git a/font/Valkyrie.scss b/font/Valkyrie.scss index 90b26b2e..bebd88c8 100644 --- a/font/Valkyrie.scss +++ b/font/Valkyrie.scss @@ -1,5 +1,7 @@ +$Valkyrie-font: "Valkyrie"; + @font-face { - font-family: "Valkyrie"; + font-family: $Valkyrie-font; src: url("./fonts/Valkyrie.woff?02572d1af40deaeeff4936d54a091c95") format("woff"), url("./fonts/Valkyrie.woff2?02572d1af40deaeeff4936d54a091c95") format("woff2"); } @@ -12,6 +14,8 @@ url("./fonts/Valkyrie.woff2?02572d1af40deaeeff4936d54a091c95") format("woff2"); font-style: normal; font-variant: normal; font-weight: normal !important; + height: 1em; + width: 1em; line-height: 1; text-rendering: auto; box-sizing: content-box; @@ -26,10 +30,8 @@ url("./fonts/Valkyrie.woff2?02572d1af40deaeeff4936d54a091c95") format("woff2"); animation-duration: 2s; animation-iteration-count: infinite; animation-timing-function: linear; -} -@media (prefers-reduced-motion: reduce) { - .vi-spin { + @media (prefers-reduced-motion: reduce) { animation: none; } } @@ -68,672 +70,898 @@ url("./fonts/Valkyrie.woff2?02572d1af40deaeeff4936d54a091c95") format("woff2"); } } +$Valkyrie-map: ( + "a-gum": "\f101", + "address-book": "\f102", + "angle-down": "\f103", + "angle-left": "\f104", + "angle-right": "\f105", + "angle-up": "\f106", + "angles-y": "\f107", + "apple-app-store": "\f108", + "arrow-down-short-wide": "\f109", + "arrow-down-to-line": "\f10a", + "arrow-down-wide-short": "\f10b", + "arrow-down": "\f10c", + "arrow-left-from-bracket": "\f10d", + "arrow-left-to-bracket": "\f10e", + "arrow-left-to-line": "\f10f", + "arrow-left": "\f110", + "arrow-pointer": "\f111", + "arrow-right-from-bracket": "\f112", + "arrow-right-prohibited": "\f113", + "arrow-right-to-bracket": "\f114", + "arrow-right-to-line": "\f115", + "arrow-right": "\f116", + "arrow-rotate-right": "\f117", + "arrow-up-short-wide": "\f118", + "arrow-up-to-line": "\f119", + "arrow-up-wide-short": "\f11a", + "arrow-up": "\f11b", + "arrows-rotate-right": "\f11c", + "asterisk": "\f11d", + "at": "\f11e", + "backward": "\f11f", + "bars": "\f120", + "blf": "\f121", + "bold": "\f122", + "book": "\f123", + "box-open-full": "\f124", + "brackets-curly": "\f125", + "bug": "\f126", + "building": "\f127", + "calendar-stars": "\f128", + "calendar": "\f129", + "chain-slash": "\f12a", + "chain": "\f12b", + "chart-pie": "\f12c", + "check": "\f12d", + "chevron-down": "\f12e", + "chevron-left": "\f12f", + "chevron-right": "\f130", + "chevron-up": "\f131", + "chrome": "\f132", + "circle-check": "\f133", + "circle-exclamation": "\f134", + "circle-info": "\f135", + "circle-plus": "\f136", + "circle-question": "\f137", + "circle-user": "\f138", + "circle-xmark": "\f139", + "city": "\f13a", + "clock-rotate-left": "\f13b", + "clock": "\f13c", + "code": "\f13d", + "codeblock": "\f13e", + "compass": "\f13f", + "compress": "\f140", + "copy": "\f141", + "devices": "\f142", + "display": "\f143", + "earth": "\f144", + "eclipse": "\f145", + "edge": "\f146", + "ellipsis": "\f147", + "envelope": "\f148", + "ethernet": "\f149", + "euro": "\f14a", + "expand": "\f14b", + "eye-slash": "\f14c", + "eye": "\f14d", + "facebook-messenger": "\f14e", + "facebook": "\f14f", + "fast-backward": "\f150", + "fast-forward": "\f151", + "fax": "\f152", + "file": "\f153", + "files-list": "\f154", + "files": "\f155", + "filmstrip": "\f156", + "filter-plus": "\f157", + "filter-xmark": "\f158", + "filter": "\f159", + "fingerprint": "\f15a", + "firefox": "\f15b", + "flag-checkered": "\f15c", + "flag": "\f15d", + "floppy-disk": "\f15e", + "folder": "\f15f", + "forward": "\f160", + "gauge": "\f161", + "gear": "\f162", + "gift": "\f163", + "github": "\f164", + "google-play": "\f165", + "grid": "\f166", + "grip-lines": "\f167", + "heading-1": "\f168", + "heading-2": "\f169", + "heading-3": "\f16a", + "heading-4": "\f16b", + "heading-5": "\f16c", + "heading-6": "\f16d", + "headset": "\f16e", + "heart-crack": "\f16f", + "heart-half": "\f170", + "heart": "\f171", + "house": "\f172", + "id-card": "\f173", + "image": "\f174", + "italic": "\f175", + "laptop": "\f176", + "layers-plus": "\f177", + "layers": "\f178", + "lightbulb-on": "\f179", + "lightbulb": "\f17a", + "line": "\f17b", + "linkedin": "\f17c", + "list-checks": "\f17d", + "list-clock": "\f17e", + "list-ordered-clock": "\f17f", + "list-ordered": "\f180", + "list": "\f181", + "location-pin-dot": "\f182", + "location-pin-slash": "\f183", + "location-pin": "\f184", + "location-pins-route": "\f185", + "lock-open": "\f186", + "lock": "\f187", + "magnifying-glass": "\f188", + "megaphone": "\f189", + "message-pen": "\f18a", + "message-smile": "\f18b", + "message-text": "\f18c", + "message": "\f18d", + "microphone": "\f18e", + "moon": "\f18f", + "music": "\f190", + "network": "\f191", + "numpad": "\f192", + "paper-plane": "\f193", + "parachute-box": "\f194", + "paragraph": "\f195", + "pause": "\f196", + "pen": "\f197", + "people-circle": "\f198", + "people": "\f199", + "person-clock": "\f19a", + "person-gear": "\f19b", + "person-headset": "\f19c", + "person-list": "\f19d", + "person-lock": "\f19e", + "person-plus": "\f19f", + "person": "\f1a0", + "phone-arrow-down-left-prohibited": "\f1a1", + "phone-arrow-down-left": "\f1a2", + "phone-arrow-up-right-prohibited": "\f1a3", + "phone-arrow-up-right": "\f1a4", + "phone-clock": "\f1a5", + "phone-gear": "\f1a6", + "phone-list": "\f1a7", + "phone-office": "\f1a8", + "phone-volume": "\f1a9", + "phone": "\f1aa", + "play-pause": "\f1ab", + "play": "\f1ac", + "plus": "\f1ad", + "power": "\f1ae", + "prohibited": "\f1af", + "puzzle-piece": "\f1b0", + "quote": "\f1b1", + "redo": "\f1b2", + "repeat-once": "\f1b3", + "repeat": "\f1b4", + "safari": "\f1b5", + "server": "\f1b6", + "shield-keyhole": "\f1b7", + "shield-plus": "\f1b8", + "shield-xmark": "\f1b9", + "shield": "\f1ba", + "shuffle": "\f1bb", + "sim-card": "\f1bc", + "sippy": "\f1bd", + "sliders": "\f1be", + "smartphone-arrow-right": "\f1bf", + "smartphone": "\f1c0", + "spinner-third": "\f1c1", + "spy": "\f1c2", + "square-gum": "\f1c3", + "star": "\f1c4", + "stop": "\f1c5", + "store": "\f1c6", + "strikethrough": "\f1c7", + "sun": "\f1c8", + "swatchbook": "\f1c9", + "table-clock": "\f1ca", + "table": "\f1cb", + "tag": "\f1cc", + "tower-broadcast": "\f1cd", + "trash-can": "\f1ce", + "triangle-exclamation": "\f1cf", + "underline": "\f1d0", + "undo": "\f1d1", + "valkyrie-sword": "\f1d2", + "video": "\f1d3", + "voicemail": "\f1d4", + "volume-0": "\f1d5", + "volume-1": "\f1d6", + "volume-2": "\f1d7", + "volume-3": "\f1d8", + "volume-slash": "\f1d9", + "wallpaper": "\f1da", + "waveform": "\f1db", + "webhooks-clock": "\f1dc", + "webhooks": "\f1dd", + "window": "\f1de", + "xmark": "\f1df", +); + .vi.vi-a-gum:before { - content: "\f101"; + content: map-get($Valkyrie-map, "a-gum"); } .vi.vi-address-book:before { - content: "\f102"; + content: map-get($Valkyrie-map, "address-book"); } .vi.vi-angle-down:before { - content: "\f103"; + content: map-get($Valkyrie-map, "angle-down"); } .vi.vi-angle-left:before { - content: "\f104"; + content: map-get($Valkyrie-map, "angle-left"); } .vi.vi-angle-right:before { - content: "\f105"; + content: map-get($Valkyrie-map, "angle-right"); } .vi.vi-angle-up:before { - content: "\f106"; + content: map-get($Valkyrie-map, "angle-up"); } .vi.vi-angles-y:before { - content: "\f107"; + content: map-get($Valkyrie-map, "angles-y"); } .vi.vi-apple-app-store:before { - content: "\f108"; + content: map-get($Valkyrie-map, "apple-app-store"); } .vi.vi-arrow-down-short-wide:before { - content: "\f109"; + content: map-get($Valkyrie-map, "arrow-down-short-wide"); } .vi.vi-arrow-down-to-line:before { - content: "\f10a"; + content: map-get($Valkyrie-map, "arrow-down-to-line"); } .vi.vi-arrow-down-wide-short:before { - content: "\f10b"; + content: map-get($Valkyrie-map, "arrow-down-wide-short"); } .vi.vi-arrow-down:before { - content: "\f10c"; + content: map-get($Valkyrie-map, "arrow-down"); } .vi.vi-arrow-left-from-bracket:before { - content: "\f10d"; + content: map-get($Valkyrie-map, "arrow-left-from-bracket"); } .vi.vi-arrow-left-to-bracket:before { - content: "\f10e"; + content: map-get($Valkyrie-map, "arrow-left-to-bracket"); } .vi.vi-arrow-left-to-line:before { - content: "\f10f"; + content: map-get($Valkyrie-map, "arrow-left-to-line"); } .vi.vi-arrow-left:before { - content: "\f110"; + content: map-get($Valkyrie-map, "arrow-left"); } .vi.vi-arrow-pointer:before { - content: "\f111"; + content: map-get($Valkyrie-map, "arrow-pointer"); } .vi.vi-arrow-right-from-bracket:before { - content: "\f112"; + content: map-get($Valkyrie-map, "arrow-right-from-bracket"); } .vi.vi-arrow-right-prohibited:before { - content: "\f113"; + content: map-get($Valkyrie-map, "arrow-right-prohibited"); } .vi.vi-arrow-right-to-bracket:before { - content: "\f114"; + content: map-get($Valkyrie-map, "arrow-right-to-bracket"); } .vi.vi-arrow-right-to-line:before { - content: "\f115"; + content: map-get($Valkyrie-map, "arrow-right-to-line"); } .vi.vi-arrow-right:before { - content: "\f116"; + content: map-get($Valkyrie-map, "arrow-right"); } .vi.vi-arrow-rotate-right:before { - content: "\f117"; + content: map-get($Valkyrie-map, "arrow-rotate-right"); } .vi.vi-arrow-up-short-wide:before { - content: "\f118"; + content: map-get($Valkyrie-map, "arrow-up-short-wide"); } .vi.vi-arrow-up-to-line:before { - content: "\f119"; + content: map-get($Valkyrie-map, "arrow-up-to-line"); } .vi.vi-arrow-up-wide-short:before { - content: "\f11a"; + content: map-get($Valkyrie-map, "arrow-up-wide-short"); } .vi.vi-arrow-up:before { - content: "\f11b"; + content: map-get($Valkyrie-map, "arrow-up"); } .vi.vi-arrows-rotate-right:before { - content: "\f11c"; + content: map-get($Valkyrie-map, "arrows-rotate-right"); } .vi.vi-asterisk:before { - content: "\f11d"; + content: map-get($Valkyrie-map, "asterisk"); } .vi.vi-at:before { - content: "\f11e"; + content: map-get($Valkyrie-map, "at"); } .vi.vi-backward:before { - content: "\f11f"; + content: map-get($Valkyrie-map, "backward"); } .vi.vi-bars:before { - content: "\f120"; + content: map-get($Valkyrie-map, "bars"); } .vi.vi-blf:before { - content: "\f121"; + content: map-get($Valkyrie-map, "blf"); } .vi.vi-bold:before { - content: "\f122"; + content: map-get($Valkyrie-map, "bold"); } .vi.vi-book:before { - content: "\f123"; + content: map-get($Valkyrie-map, "book"); } .vi.vi-box-open-full:before { - content: "\f124"; + content: map-get($Valkyrie-map, "box-open-full"); } .vi.vi-brackets-curly:before { - content: "\f125"; + content: map-get($Valkyrie-map, "brackets-curly"); } .vi.vi-bug:before { - content: "\f126"; + content: map-get($Valkyrie-map, "bug"); } .vi.vi-building:before { - content: "\f127"; + content: map-get($Valkyrie-map, "building"); } .vi.vi-calendar-stars:before { - content: "\f128"; + content: map-get($Valkyrie-map, "calendar-stars"); } .vi.vi-calendar:before { - content: "\f129"; + content: map-get($Valkyrie-map, "calendar"); } .vi.vi-chain-slash:before { - content: "\f12a"; + content: map-get($Valkyrie-map, "chain-slash"); } .vi.vi-chain:before { - content: "\f12b"; + content: map-get($Valkyrie-map, "chain"); } .vi.vi-chart-pie:before { - content: "\f12c"; + content: map-get($Valkyrie-map, "chart-pie"); } .vi.vi-check:before { - content: "\f12d"; + content: map-get($Valkyrie-map, "check"); } .vi.vi-chevron-down:before { - content: "\f12e"; + content: map-get($Valkyrie-map, "chevron-down"); } .vi.vi-chevron-left:before { - content: "\f12f"; + content: map-get($Valkyrie-map, "chevron-left"); } .vi.vi-chevron-right:before { - content: "\f130"; + content: map-get($Valkyrie-map, "chevron-right"); } .vi.vi-chevron-up:before { - content: "\f131"; + content: map-get($Valkyrie-map, "chevron-up"); } .vi.vi-chrome:before { - content: "\f132"; + content: map-get($Valkyrie-map, "chrome"); } .vi.vi-circle-check:before { - content: "\f133"; + content: map-get($Valkyrie-map, "circle-check"); } .vi.vi-circle-exclamation:before { - content: "\f134"; + content: map-get($Valkyrie-map, "circle-exclamation"); } .vi.vi-circle-info:before { - content: "\f135"; + content: map-get($Valkyrie-map, "circle-info"); } .vi.vi-circle-plus:before { - content: "\f136"; + content: map-get($Valkyrie-map, "circle-plus"); } .vi.vi-circle-question:before { - content: "\f137"; + content: map-get($Valkyrie-map, "circle-question"); } .vi.vi-circle-user:before { - content: "\f138"; + content: map-get($Valkyrie-map, "circle-user"); } .vi.vi-circle-xmark:before { - content: "\f139"; + content: map-get($Valkyrie-map, "circle-xmark"); } .vi.vi-city:before { - content: "\f13a"; + content: map-get($Valkyrie-map, "city"); } .vi.vi-clock-rotate-left:before { - content: "\f13b"; + content: map-get($Valkyrie-map, "clock-rotate-left"); } .vi.vi-clock:before { - content: "\f13c"; + content: map-get($Valkyrie-map, "clock"); } .vi.vi-code:before { - content: "\f13d"; + content: map-get($Valkyrie-map, "code"); } .vi.vi-codeblock:before { - content: "\f13e"; + content: map-get($Valkyrie-map, "codeblock"); } .vi.vi-compass:before { - content: "\f13f"; + content: map-get($Valkyrie-map, "compass"); } .vi.vi-compress:before { - content: "\f140"; + content: map-get($Valkyrie-map, "compress"); } .vi.vi-copy:before { - content: "\f141"; + content: map-get($Valkyrie-map, "copy"); } .vi.vi-devices:before { - content: "\f142"; + content: map-get($Valkyrie-map, "devices"); } .vi.vi-display:before { - content: "\f143"; + content: map-get($Valkyrie-map, "display"); } .vi.vi-earth:before { - content: "\f144"; + content: map-get($Valkyrie-map, "earth"); } .vi.vi-eclipse:before { - content: "\f145"; + content: map-get($Valkyrie-map, "eclipse"); } .vi.vi-edge:before { - content: "\f146"; + content: map-get($Valkyrie-map, "edge"); } .vi.vi-ellipsis:before { - content: "\f147"; + content: map-get($Valkyrie-map, "ellipsis"); } .vi.vi-envelope:before { - content: "\f148"; + content: map-get($Valkyrie-map, "envelope"); } .vi.vi-ethernet:before { - content: "\f149"; + content: map-get($Valkyrie-map, "ethernet"); } .vi.vi-euro:before { - content: "\f14a"; + content: map-get($Valkyrie-map, "euro"); } .vi.vi-expand:before { - content: "\f14b"; + content: map-get($Valkyrie-map, "expand"); } .vi.vi-eye-slash:before { - content: "\f14c"; + content: map-get($Valkyrie-map, "eye-slash"); } .vi.vi-eye:before { - content: "\f14d"; + content: map-get($Valkyrie-map, "eye"); } .vi.vi-facebook-messenger:before { - content: "\f14e"; + content: map-get($Valkyrie-map, "facebook-messenger"); } .vi.vi-facebook:before { - content: "\f14f"; + content: map-get($Valkyrie-map, "facebook"); } .vi.vi-fast-backward:before { - content: "\f150"; + content: map-get($Valkyrie-map, "fast-backward"); } .vi.vi-fast-forward:before { - content: "\f151"; + content: map-get($Valkyrie-map, "fast-forward"); } .vi.vi-fax:before { - content: "\f152"; + content: map-get($Valkyrie-map, "fax"); } .vi.vi-file:before { - content: "\f153"; + content: map-get($Valkyrie-map, "file"); } .vi.vi-files-list:before { - content: "\f154"; + content: map-get($Valkyrie-map, "files-list"); } .vi.vi-files:before { - content: "\f155"; + content: map-get($Valkyrie-map, "files"); } .vi.vi-filmstrip:before { - content: "\f156"; + content: map-get($Valkyrie-map, "filmstrip"); } .vi.vi-filter-plus:before { - content: "\f157"; + content: map-get($Valkyrie-map, "filter-plus"); } .vi.vi-filter-xmark:before { - content: "\f158"; + content: map-get($Valkyrie-map, "filter-xmark"); } .vi.vi-filter:before { - content: "\f159"; + content: map-get($Valkyrie-map, "filter"); } .vi.vi-fingerprint:before { - content: "\f15a"; + content: map-get($Valkyrie-map, "fingerprint"); } .vi.vi-firefox:before { - content: "\f15b"; + content: map-get($Valkyrie-map, "firefox"); } .vi.vi-flag-checkered:before { - content: "\f15c"; + content: map-get($Valkyrie-map, "flag-checkered"); } .vi.vi-flag:before { - content: "\f15d"; + content: map-get($Valkyrie-map, "flag"); } .vi.vi-floppy-disk:before { - content: "\f15e"; + content: map-get($Valkyrie-map, "floppy-disk"); } .vi.vi-folder:before { - content: "\f15f"; + content: map-get($Valkyrie-map, "folder"); } .vi.vi-forward:before { - content: "\f160"; + content: map-get($Valkyrie-map, "forward"); } .vi.vi-gauge:before { - content: "\f161"; + content: map-get($Valkyrie-map, "gauge"); } .vi.vi-gear:before { - content: "\f162"; + content: map-get($Valkyrie-map, "gear"); } .vi.vi-gift:before { - content: "\f163"; + content: map-get($Valkyrie-map, "gift"); } .vi.vi-github:before { - content: "\f164"; + content: map-get($Valkyrie-map, "github"); } .vi.vi-google-play:before { - content: "\f165"; + content: map-get($Valkyrie-map, "google-play"); } .vi.vi-grid:before { - content: "\f166"; + content: map-get($Valkyrie-map, "grid"); } .vi.vi-grip-lines:before { - content: "\f167"; + content: map-get($Valkyrie-map, "grip-lines"); } .vi.vi-heading-1:before { - content: "\f168"; + content: map-get($Valkyrie-map, "heading-1"); } .vi.vi-heading-2:before { - content: "\f169"; + content: map-get($Valkyrie-map, "heading-2"); } .vi.vi-heading-3:before { - content: "\f16a"; + content: map-get($Valkyrie-map, "heading-3"); } .vi.vi-heading-4:before { - content: "\f16b"; + content: map-get($Valkyrie-map, "heading-4"); } .vi.vi-heading-5:before { - content: "\f16c"; + content: map-get($Valkyrie-map, "heading-5"); } .vi.vi-heading-6:before { - content: "\f16d"; + content: map-get($Valkyrie-map, "heading-6"); } .vi.vi-headset:before { - content: "\f16e"; + content: map-get($Valkyrie-map, "headset"); } .vi.vi-heart-crack:before { - content: "\f16f"; + content: map-get($Valkyrie-map, "heart-crack"); } .vi.vi-heart-half:before { - content: "\f170"; + content: map-get($Valkyrie-map, "heart-half"); } .vi.vi-heart:before { - content: "\f171"; + content: map-get($Valkyrie-map, "heart"); } .vi.vi-house:before { - content: "\f172"; + content: map-get($Valkyrie-map, "house"); } .vi.vi-id-card:before { - content: "\f173"; + content: map-get($Valkyrie-map, "id-card"); } .vi.vi-image:before { - content: "\f174"; + content: map-get($Valkyrie-map, "image"); } .vi.vi-italic:before { - content: "\f175"; + content: map-get($Valkyrie-map, "italic"); } .vi.vi-laptop:before { - content: "\f176"; + content: map-get($Valkyrie-map, "laptop"); } .vi.vi-layers-plus:before { - content: "\f177"; + content: map-get($Valkyrie-map, "layers-plus"); } .vi.vi-layers:before { - content: "\f178"; + content: map-get($Valkyrie-map, "layers"); } .vi.vi-lightbulb-on:before { - content: "\f179"; + content: map-get($Valkyrie-map, "lightbulb-on"); } .vi.vi-lightbulb:before { - content: "\f17a"; + content: map-get($Valkyrie-map, "lightbulb"); } .vi.vi-line:before { - content: "\f17b"; + content: map-get($Valkyrie-map, "line"); } .vi.vi-linkedin:before { - content: "\f17c"; + content: map-get($Valkyrie-map, "linkedin"); } .vi.vi-list-checks:before { - content: "\f17d"; + content: map-get($Valkyrie-map, "list-checks"); } .vi.vi-list-clock:before { - content: "\f17e"; + content: map-get($Valkyrie-map, "list-clock"); } .vi.vi-list-ordered-clock:before { - content: "\f17f"; + content: map-get($Valkyrie-map, "list-ordered-clock"); } .vi.vi-list-ordered:before { - content: "\f180"; + content: map-get($Valkyrie-map, "list-ordered"); } .vi.vi-list:before { - content: "\f181"; + content: map-get($Valkyrie-map, "list"); } .vi.vi-location-pin-dot:before { - content: "\f182"; + content: map-get($Valkyrie-map, "location-pin-dot"); } .vi.vi-location-pin-slash:before { - content: "\f183"; + content: map-get($Valkyrie-map, "location-pin-slash"); } .vi.vi-location-pin:before { - content: "\f184"; + content: map-get($Valkyrie-map, "location-pin"); } .vi.vi-location-pins-route:before { - content: "\f185"; + content: map-get($Valkyrie-map, "location-pins-route"); } .vi.vi-lock-open:before { - content: "\f186"; + content: map-get($Valkyrie-map, "lock-open"); } .vi.vi-lock:before { - content: "\f187"; + content: map-get($Valkyrie-map, "lock"); } .vi.vi-magnifying-glass:before { - content: "\f188"; + content: map-get($Valkyrie-map, "magnifying-glass"); } .vi.vi-megaphone:before { - content: "\f189"; + content: map-get($Valkyrie-map, "megaphone"); } .vi.vi-message-pen:before { - content: "\f18a"; + content: map-get($Valkyrie-map, "message-pen"); } .vi.vi-message-smile:before { - content: "\f18b"; + content: map-get($Valkyrie-map, "message-smile"); } .vi.vi-message-text:before { - content: "\f18c"; + content: map-get($Valkyrie-map, "message-text"); } .vi.vi-message:before { - content: "\f18d"; + content: map-get($Valkyrie-map, "message"); } .vi.vi-microphone:before { - content: "\f18e"; + content: map-get($Valkyrie-map, "microphone"); } .vi.vi-moon:before { - content: "\f18f"; + content: map-get($Valkyrie-map, "moon"); } .vi.vi-music:before { - content: "\f190"; + content: map-get($Valkyrie-map, "music"); } .vi.vi-network:before { - content: "\f191"; + content: map-get($Valkyrie-map, "network"); } .vi.vi-numpad:before { - content: "\f192"; + content: map-get($Valkyrie-map, "numpad"); } .vi.vi-paper-plane:before { - content: "\f193"; + content: map-get($Valkyrie-map, "paper-plane"); } .vi.vi-parachute-box:before { - content: "\f194"; + content: map-get($Valkyrie-map, "parachute-box"); } .vi.vi-paragraph:before { - content: "\f195"; + content: map-get($Valkyrie-map, "paragraph"); } .vi.vi-pause:before { - content: "\f196"; + content: map-get($Valkyrie-map, "pause"); } .vi.vi-pen:before { - content: "\f197"; + content: map-get($Valkyrie-map, "pen"); } .vi.vi-people-circle:before { - content: "\f198"; + content: map-get($Valkyrie-map, "people-circle"); } .vi.vi-people:before { - content: "\f199"; + content: map-get($Valkyrie-map, "people"); } .vi.vi-person-clock:before { - content: "\f19a"; + content: map-get($Valkyrie-map, "person-clock"); } .vi.vi-person-gear:before { - content: "\f19b"; + content: map-get($Valkyrie-map, "person-gear"); } .vi.vi-person-headset:before { - content: "\f19c"; + content: map-get($Valkyrie-map, "person-headset"); } .vi.vi-person-list:before { - content: "\f19d"; + content: map-get($Valkyrie-map, "person-list"); } .vi.vi-person-lock:before { - content: "\f19e"; + content: map-get($Valkyrie-map, "person-lock"); } .vi.vi-person-plus:before { - content: "\f19f"; + content: map-get($Valkyrie-map, "person-plus"); } .vi.vi-person:before { - content: "\f1a0"; + content: map-get($Valkyrie-map, "person"); } .vi.vi-phone-arrow-down-left-prohibited:before { - content: "\f1a1"; + content: map-get($Valkyrie-map, "phone-arrow-down-left-prohibited"); } .vi.vi-phone-arrow-down-left:before { - content: "\f1a2"; + content: map-get($Valkyrie-map, "phone-arrow-down-left"); } .vi.vi-phone-arrow-up-right-prohibited:before { - content: "\f1a3"; + content: map-get($Valkyrie-map, "phone-arrow-up-right-prohibited"); } .vi.vi-phone-arrow-up-right:before { - content: "\f1a4"; + content: map-get($Valkyrie-map, "phone-arrow-up-right"); } .vi.vi-phone-clock:before { - content: "\f1a5"; + content: map-get($Valkyrie-map, "phone-clock"); } .vi.vi-phone-gear:before { - content: "\f1a6"; + content: map-get($Valkyrie-map, "phone-gear"); } .vi.vi-phone-list:before { - content: "\f1a7"; + content: map-get($Valkyrie-map, "phone-list"); } .vi.vi-phone-office:before { - content: "\f1a8"; + content: map-get($Valkyrie-map, "phone-office"); } .vi.vi-phone-volume:before { - content: "\f1a9"; + content: map-get($Valkyrie-map, "phone-volume"); } .vi.vi-phone:before { - content: "\f1aa"; + content: map-get($Valkyrie-map, "phone"); } .vi.vi-play-pause:before { - content: "\f1ab"; + content: map-get($Valkyrie-map, "play-pause"); } .vi.vi-play:before { - content: "\f1ac"; + content: map-get($Valkyrie-map, "play"); } .vi.vi-plus:before { - content: "\f1ad"; + content: map-get($Valkyrie-map, "plus"); } .vi.vi-power:before { - content: "\f1ae"; + content: map-get($Valkyrie-map, "power"); } .vi.vi-prohibited:before { - content: "\f1af"; + content: map-get($Valkyrie-map, "prohibited"); } .vi.vi-puzzle-piece:before { - content: "\f1b0"; + content: map-get($Valkyrie-map, "puzzle-piece"); } .vi.vi-quote:before { - content: "\f1b1"; + content: map-get($Valkyrie-map, "quote"); } .vi.vi-redo:before { - content: "\f1b2"; + content: map-get($Valkyrie-map, "redo"); } .vi.vi-repeat-once:before { - content: "\f1b3"; + content: map-get($Valkyrie-map, "repeat-once"); } .vi.vi-repeat:before { - content: "\f1b4"; + content: map-get($Valkyrie-map, "repeat"); } .vi.vi-safari:before { - content: "\f1b5"; + content: map-get($Valkyrie-map, "safari"); } .vi.vi-server:before { - content: "\f1b6"; + content: map-get($Valkyrie-map, "server"); } .vi.vi-shield-keyhole:before { - content: "\f1b7"; + content: map-get($Valkyrie-map, "shield-keyhole"); } .vi.vi-shield-plus:before { - content: "\f1b8"; + content: map-get($Valkyrie-map, "shield-plus"); } .vi.vi-shield-xmark:before { - content: "\f1b9"; + content: map-get($Valkyrie-map, "shield-xmark"); } .vi.vi-shield:before { - content: "\f1ba"; + content: map-get($Valkyrie-map, "shield"); } .vi.vi-shuffle:before { - content: "\f1bb"; + content: map-get($Valkyrie-map, "shuffle"); } .vi.vi-sim-card:before { - content: "\f1bc"; + content: map-get($Valkyrie-map, "sim-card"); } .vi.vi-sippy:before { - content: "\f1bd"; + content: map-get($Valkyrie-map, "sippy"); } .vi.vi-sliders:before { - content: "\f1be"; + content: map-get($Valkyrie-map, "sliders"); } .vi.vi-smartphone-arrow-right:before { - content: "\f1bf"; + content: map-get($Valkyrie-map, "smartphone-arrow-right"); } .vi.vi-smartphone:before { - content: "\f1c0"; + content: map-get($Valkyrie-map, "smartphone"); } .vi.vi-spinner-third:before { - content: "\f1c1"; + content: map-get($Valkyrie-map, "spinner-third"); } .vi.vi-spy:before { - content: "\f1c2"; + content: map-get($Valkyrie-map, "spy"); } .vi.vi-square-gum:before { - content: "\f1c3"; + content: map-get($Valkyrie-map, "square-gum"); } .vi.vi-star:before { - content: "\f1c4"; + content: map-get($Valkyrie-map, "star"); } .vi.vi-stop:before { - content: "\f1c5"; + content: map-get($Valkyrie-map, "stop"); } .vi.vi-store:before { - content: "\f1c6"; + content: map-get($Valkyrie-map, "store"); } .vi.vi-strikethrough:before { - content: "\f1c7"; + content: map-get($Valkyrie-map, "strikethrough"); } .vi.vi-sun:before { - content: "\f1c8"; + content: map-get($Valkyrie-map, "sun"); } .vi.vi-swatchbook:before { - content: "\f1c9"; + content: map-get($Valkyrie-map, "swatchbook"); } .vi.vi-table-clock:before { - content: "\f1ca"; + content: map-get($Valkyrie-map, "table-clock"); } .vi.vi-table:before { - content: "\f1cb"; + content: map-get($Valkyrie-map, "table"); } .vi.vi-tag:before { - content: "\f1cc"; + content: map-get($Valkyrie-map, "tag"); } .vi.vi-tower-broadcast:before { - content: "\f1cd"; + content: map-get($Valkyrie-map, "tower-broadcast"); } .vi.vi-trash-can:before { - content: "\f1ce"; + content: map-get($Valkyrie-map, "trash-can"); } .vi.vi-triangle-exclamation:before { - content: "\f1cf"; + content: map-get($Valkyrie-map, "triangle-exclamation"); } .vi.vi-underline:before { - content: "\f1d0"; + content: map-get($Valkyrie-map, "underline"); } .vi.vi-undo:before { - content: "\f1d1"; + content: map-get($Valkyrie-map, "undo"); } .vi.vi-valkyrie-sword:before { - content: "\f1d2"; + content: map-get($Valkyrie-map, "valkyrie-sword"); } .vi.vi-video:before { - content: "\f1d3"; + content: map-get($Valkyrie-map, "video"); } .vi.vi-voicemail:before { - content: "\f1d4"; + content: map-get($Valkyrie-map, "voicemail"); } .vi.vi-volume-0:before { - content: "\f1d5"; + content: map-get($Valkyrie-map, "volume-0"); } .vi.vi-volume-1:before { - content: "\f1d6"; + content: map-get($Valkyrie-map, "volume-1"); } .vi.vi-volume-2:before { - content: "\f1d7"; + content: map-get($Valkyrie-map, "volume-2"); } .vi.vi-volume-3:before { - content: "\f1d8"; + content: map-get($Valkyrie-map, "volume-3"); } .vi.vi-volume-slash:before { - content: "\f1d9"; + content: map-get($Valkyrie-map, "volume-slash"); } .vi.vi-wallpaper:before { - content: "\f1da"; + content: map-get($Valkyrie-map, "wallpaper"); } .vi.vi-waveform:before { - content: "\f1db"; + content: map-get($Valkyrie-map, "waveform"); } .vi.vi-webhooks-clock:before { - content: "\f1dc"; + content: map-get($Valkyrie-map, "webhooks-clock"); } .vi.vi-webhooks:before { - content: "\f1dd"; + content: map-get($Valkyrie-map, "webhooks"); } .vi.vi-window:before { - content: "\f1de"; + content: map-get($Valkyrie-map, "window"); } .vi.vi-xmark:before { - content: "\f1df"; + content: map-get($Valkyrie-map, "xmark"); } diff --git a/package.json b/package.json index 8f05116a..f262c51b 100644 --- a/package.json +++ b/package.json @@ -9,8 +9,6 @@ "build": "npm run build:esm && npm run build:cjs", "build:esm": "tsc", "build:cjs": "tsc --module commonjs --outDir dist/cjs", - "dl:fonts": "copyfiles -a \"font/fonts/*.*\" \"dl/fonts\" -f", - "dl:styles": "copyfiles -a \"font/Valkyrie.css\" \"dl/\" -f", "docs:serve": "hugo server --port 5000 --disableFastRender", "fonts": "npm run fonts:generate", "fonts:generate": "fantasticon", @@ -21,7 +19,7 @@ "mellow": "svgo -f ./mellow -o ./mellow", "test": "echo \"Error: no test specified\" && exit 1", "pages": "node build/generate-pages.js --verbose", - "prod": "npm run icons && npm run fonts && npm run build && npm run scss && npm run dl:fonts && npm run dl:styles", + "prod": "npm run icons && npm run fonts && npm run build && npm run scss", "scss": "npm run scss:compile && npm run scss:prefix", "scss:compile": "node-sass font -o font --output-style compressed", "scss:prefix": "postcss -u autoprefixer -r ./font/*.css --map" diff --git a/templates/css.hbs b/templates/css.hbs deleted file mode 100644 index e53237e7..00000000 --- a/templates/css.hbs +++ /dev/null @@ -1,82 +0,0 @@ -@font-face { - font-family: "{{ name }}"; - src: {{{ fontSrc }}}; -} - -{{# if selector }} -{{ selector }} { -{{ else }} -{{ tag }}[class^="{{prefix}}-"], {{ tag }}[class*=" {{prefix}}-"] { -{{/ if }} - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: inline-block; - font-family: {{ name }} !important; - font-style: normal; - font-variant: normal; - font-weight: normal !important; - line-height: 1; - text-rendering: auto; - box-sizing: content-box; - position: relative; - overflow: visible; - vertical-align: 0; - flex-shrink: 0; -} - -{{ selector }}-spin { - animation-name: animate-spin; - animation-duration: 2s; - animation-iteration-count: infinite; - animation-timing-function: linear; -} - -@media (prefers-reduced-motion: reduce) { - {{ selector }}-spin { - animation: none; - } -} - -{{ selector }}-rotate-90 { - transform: rotate(90deg); -} - -{{ selector }}-rotate-180 { - transform: rotate(180deg); -} - -{{ selector }}-rotate-270 { - transform: rotate(270deg); -} - -{{ selector }}-flip-x { - transform: scaleX(-1); -} - -{{ selector }}-flip-y { - transform: scaleY(-1); -} - -{{ selector }}-flip { - transform: scale(-1); -} - -@keyframes animate-spin { - 0% { - transform: rotate(0deg); - } - - 100% { - transform: rotate(360deg); - } -} - -{{# each codepoints }} -{{# if ../selector }} -{{ ../selector }}.{{ ../prefix }}-{{ @key }}:before { -{{ else }} -{{ tag }}.{{ ../prefix }}-{{ @key }}:before { -{{/ if }} - content: "\\{{ codepoint this }}"; -} -{{/ each }} diff --git a/templates/html.hbs b/templates/html.hbs deleted file mode 100644 index 6ae8ca36..00000000 --- a/templates/html.hbs +++ /dev/null @@ -1,151 +0,0 @@ - - - - - {{ name }} - - - - - - - - - -
-

{{ name }}

-
- -
- {{# each assets }} - -
- - <{{ ../tag }} class="{{ ../prefix }} {{ ../prefix }}-{{ @key }}"> - -
- {{ @key }} -
- - {{/ each }} -
- -

CSS classes

- -
-
- - - -
- spin -
- -
- - - -
- rotate-90 -
- -
- - - -
- rotate-180 -
- -
- - - -
- rotate-270 -
- -
- - - -
- flip-x -
- -
- - - -
- flip-y -
- -
- - - -
- flip -
-
- - - From d89db6cea6eb1a78af357e7cb0818f5dc7e85ef3 Mon Sep 17 00:00:00 2001 From: Yannick Date: Fri, 21 Oct 2022 09:15:27 +0200 Subject: [PATCH 11/13] Update grid --- docs/assets/scss/docs.scss | 9 +++++++++ docs/layouts/partials/icons.html | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/assets/scss/docs.scss b/docs/assets/scss/docs.scss index a9e1404b..e275112b 100644 --- a/docs/assets/scss/docs.scss +++ b/docs/assets/scss/docs.scss @@ -166,6 +166,15 @@ h1 { } } +@media (min-width: 1800px) { + .row-cols-4xl-12 { + > * { + flex: 0 0 8.33%; + max-width: 8.33%; + } + } +} + .icon-demo { border-radius: .5rem; background-color: #fdfdfd; diff --git a/docs/layouts/partials/icons.html b/docs/layouts/partials/icons.html index 2724255e..692032a2 100644 --- a/docs/layouts/partials/icons.html +++ b/docs/layouts/partials/icons.html @@ -12,7 +12,7 @@

Icons

-
    +
      {{ range (where .Site.RegularPages "Type" "icons") -}} {{- $filename := .File.TranslationBaseName -}} {{- with .Site.GetPage .File.Path }} From a8ba23a704ed5a2971962dd9a8c35a335fc8d015 Mon Sep 17 00:00:00 2001 From: Yannick Date: Fri, 21 Oct 2022 09:15:36 +0200 Subject: [PATCH 12/13] Add docs build --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index f262c51b..badc7fa9 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,7 @@ "build": "npm run build:esm && npm run build:cjs", "build:esm": "tsc", "build:cjs": "tsc --module commonjs --outDir dist/cjs", + "docs:build": "hugo --cleanDestinationDir", "docs:serve": "hugo server --port 5000 --disableFastRender", "fonts": "npm run fonts:generate", "fonts:generate": "fantasticon", From fd74544a0d20ff28231fcdd9f1e58d39be07371d Mon Sep 17 00:00:00 2001 From: Yannick Date: Tue, 25 Oct 2022 09:56:25 +0200 Subject: [PATCH 13/13] Valkyrie 1.0 alpha 1 --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 27a42b8c..3793d172 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@sippy-platform/valkyrie", - "version": "0.21.1", + "version": "1.0.0-alpha.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@sippy-platform/valkyrie", - "version": "0.21.1", + "version": "1.0.0-alpha.1", "license": "AGPL-3.0-or-later", "devDependencies": { "@types/react": "18.0.21", @@ -19,7 +19,7 @@ "node-sass": "7.0.3", "nodemon": "2.0.20", "npm-run-all": "4.1.5", - "picocolors": "^1.0.0", + "picocolors": "1.0.0", "postcss": "8.4.18", "postcss-cli": "10.0.0", "react": "18.2.0", diff --git a/package.json b/package.json index badc7fa9..a84fe7d0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@sippy-platform/valkyrie", - "version": "0.21.1", + "version": "1.0.0-alpha.1", "description": "The iconography of Sippy.", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js",