diff --git a/.babelrc.json b/.babelrc.json new file mode 100644 index 00000000..7aafc53b --- /dev/null +++ b/.babelrc.json @@ -0,0 +1,18 @@ +{ + "sourceType": "unambiguous", + "presets": [ + [ + "@babel/preset-env", + { + "targets": { + "chrome": 100, + "safari": 15, + "firefox": 91 + } + } + ], + "@babel/preset-typescript", + "@babel/preset-react" + ], + "plugins": [] +} \ No newline at end of file diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index 13afdf7c..00000000 --- a/.eslintrc.js +++ /dev/null @@ -1,26 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ -module.exports = { - env: { - es2021: true, - node: true - }, - plugins: [ - 'header' - ], - extends: [ - 'standard' - ], - parserOptions: { - ecmaVersion: 12, - sourceType: 'module' - }, - rules: { - 'header/header': [ - 2, - 'block', - '\nCopyright © 2021 The Sage Group plc or its licensors. All Rights reserved\n ' - ] - } -} diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 00000000..4f48cce0 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,35 @@ +name: Build +on: + pull_request: + branches: + - master + +jobs: + # Builds token library. + build: + name: Build library + runs-on: ubuntu-latest + permissions: + contents: write + packages: write + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + persist-credentials: false + + - uses: actions/setup-node@v4 + with: + node-version: '20' + + - run: yarn install --frozen-lockfile + + - name: Append .env + run: | + echo " + FIGMA_ACCESS_TOKEN=${{ secrets.FIGMA_ACCESS_TOKEN }} + FIGMA_FILE_ID=${{ secrets.FIGMA_FILE_ID }} + " >> .env + + - name: Build + run: yarn run build diff --git a/.github/workflows/copy-package.yaml b/.github/workflows/copy-package.yaml deleted file mode 100644 index 0e27d264..00000000 --- a/.github/workflows/copy-package.yaml +++ /dev/null @@ -1,39 +0,0 @@ -name: Copy released package to X3 - -on: - workflow_dispatch: - release: - types: [published] - - -jobs: - # Builds token library from current data/tokens.json file and releases it. - release: - name: Copy package to X3 - runs-on: ubuntu-latest - permissions: - contents: write - packages: write - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 0 - persist-credentials: true - - - uses: actions/setup-node@v2 - with: - node-version: '14' - - - name: Copy released package to private GitHub NPM registry - run: npx npm-copy --from https://registry.npmjs.org --from-username any --from-password any --to=https://npm.pkg.github.com --to-email="${GIT_COMMITTER_EMAIL}" --to-token="${NODE_AUTH_TOKEN}" %40sage%2Fdesign-tokens - env: - NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }} - - - name: Copy released package to private to X3 Nexus Registry - run: npx npm-copy --from https://registry.npmjs.org --from-username any --from-password any --to=https://repository.sagex3.com:8443/repository/x3-npm-hosted/ --to-email="${GIT_COMMITTER_EMAIL}" --to-username="${X3_NPM_USER}" --to-password="${X3_NPM_PASSWORD}" %40sage%2Fdesign-tokens - env: - X3_NPM_USER: ${{ secrets.X3_NPM_USER }} - X3_NPM_PASSWORD: ${{ secrets.X3_NPM_PASSWORD }} - GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }} - diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index fb2b1325..f4cc33fd 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -3,7 +3,7 @@ on: pull_request: branches: - master - - main + jobs: run-linters: name: Run linters @@ -11,28 +11,21 @@ jobs: steps: - name: Check out Git repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4 with: - node-version: '16' + node-version: '20' - name: Install run: yarn install --frozen-lockfile - # Install your linters here - - name: Run linters - uses: wearerequired/lint-action@v1 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - eslint: true - auto_fix: true - git_name: github-actions[bot] - git_email: github-actions[bot]@users.noreply.github.com - - name: Build project run: npm run build + - name: Run stylelint + run: npm run stylelint:dist + - name: Download W3C Validator (vnu.jar) run: wget https://github.com/validator/validator/releases/download/latest/vnu.jar diff --git a/.github/workflows/semantic-release.yaml b/.github/workflows/semantic-release.yaml index dbc36fd1..8aac483d 100644 --- a/.github/workflows/semantic-release.yaml +++ b/.github/workflows/semantic-release.yaml @@ -14,41 +14,58 @@ jobs: contents: write packages: write steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 0 persist-credentials: false - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4 with: - node-version: '16' + node-version: '20' - run: yarn install --frozen-lockfile + - name: Append .env + run: | + echo " + FIGMA_ACCESS_TOKEN=${{ secrets.FIGMA_ACCESS_TOKEN }} + FIGMA_FILE_ID=${{ secrets.FIGMA_FILE_ID }} + " >> .env + - name: Build run: yarn run build - name: Import GPG key - uses: crazy-max/ghaction-import-gpg@v3.0.1 + uses: crazy-max/ghaction-import-gpg@v6 with: - gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} + gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} passphrase: ${{ secrets.GPG_PASSPHRASE }} - git-user-signingkey: true - git-commit-gpgsign: true + git_user_signingkey: true + git_commit_gpgsign: true - - name: Release package to public NPM registry - run: npx semantic-release@19 --debug + - name: Release package to NPM registries + run: npx semantic-release --debug env: GITHUB_TOKEN: ${{ secrets.ADMIN_ACCESS_TOKEN }} - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} GIT_COMMITTER_NAME: Sage Carbon GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }} - - name: Upload documentation via ftp - uses: SamKirkland/FTP-Deploy-Action@4.3.0 - with: - server: ${{ secrets.FTP_HOST }} - username: ${{ secrets.FTP_USERNAME }} - password: ${{ secrets.FTP_PASSWORD }} - local-dir: "./dist/docs/" - server-dir: "./sage/docs/" + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + NPM_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }} + + # GitHub registry - @amanda-mitchell/semantic-release-npm-multiple + GITHUB_NPM_CONFIG_REGISTRY: https://npm.pkg.github.com + GITHUB_NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_NPM_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }} + + # NpmJS registry - @amanda-mitchell/semantic-release-npm-multiple + PUBLIC_NPM_CONFIG_REGISTRY: https://registry.npmjs.org + PUBLIC_NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + PUBLIC_NPM_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }} + + # X3 registry - @amanda-mitchell/semantic-release-npm-multiple + X3_NPM_CONFIG_REGISTRY: https://repository.sagex3.com:8443/repository/x3-npm-hosted/ + X3_NPM_USERNAME: ${{ secrets.X3_NPM_USER }} + X3_NPM_PASSWORD: ${{ secrets.X3_NPM_PASSWORD }} + X3_NPM_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }} + diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml new file mode 100644 index 00000000..baef6d4a --- /dev/null +++ b/.github/workflows/validate.yml @@ -0,0 +1,24 @@ +name: Validate +on: + pull_request: + branches: + - master + +jobs: + run-unit-tests: + name: Run unit tests + runs-on: ubuntu-latest + + steps: + - name: Check out Git repository + uses: actions/checkout@v4 + + - uses: actions/setup-node@v4 + with: + node-version: "20" + + - name: Install + run: yarn install --frozen-lockfile + + - name: Run tests + run: npm test diff --git a/.husky/.gitignore b/.husky/.gitignore deleted file mode 100644 index 31354ec1..00000000 --- a/.husky/.gitignore +++ /dev/null @@ -1 +0,0 @@ -_ diff --git a/.husky/pre-commit b/.husky/pre-commit deleted file mode 100755 index 6c1142f6..00000000 --- a/.husky/pre-commit +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -. "$(dirname "$0")/_/husky.sh" - -npm run format && git add -A . \ No newline at end of file diff --git a/.mocharc.json b/.mocharc.json new file mode 100644 index 00000000..e0e886ba --- /dev/null +++ b/.mocharc.json @@ -0,0 +1,10 @@ +{ + "parallel": true, + "recursive": true, + "require": ["tsx"], + "spec": [ + "scripts/**/*.spec.ts" + ], + "extension": ["js", "cjs", "mjs", "ts"] + } + \ No newline at end of file diff --git a/.releaserc.json b/.releaserc.json new file mode 100644 index 00000000..f474048d --- /dev/null +++ b/.releaserc.json @@ -0,0 +1,43 @@ +{ + "branches": ["master"], + "plugins": [ + "@semantic-release/commit-analyzer", + "@semantic-release/release-notes-generator", + [ + "@semantic-release/changelog", + { + "changelogFile": "docs/CHANGELOG.md" + } + ], + [ + "@amanda-mitchell/semantic-release-npm-multiple", + { + "registries": { + "github": { + "changelogFile": "docs/CHANGELOG.md", + "pkgRoot": "dist", + "tarballDir": "dist" + }, + "public": { + "changelogFile": "docs/CHANGELOG.md", + "pkgRoot": "dist" + } + } + } + ], + [ + "@semantic-release/git", + { + "assets": ["docs/CHANGELOG.md", "package.json"] + } + ], + [ + "@semantic-release/github", + { + "assets": "dist/*.tgz" + } + ] + ], + "dryRun": false, + "debug": false +} diff --git a/.stylelintrc.json b/.stylelintrc.json new file mode 100644 index 00000000..0300f609 --- /dev/null +++ b/.stylelintrc.json @@ -0,0 +1,14 @@ + +{ + "extends": ["stylelint-config-standard", "stylelint-config-standard-scss"], + "rules": { + "alpha-value-notation": null, + "color-function-notation": null, + "color-hex-length": null, + "comment-whitespace-inside": null, + "length-zero-no-unit": null, + "scss/comment-no-empty": null, + "scss/operator-no-unspaced": null, + "value-keyword-case": null + } +} diff --git a/README.md b/README.md index 87767462..11050d33 100644 --- a/README.md +++ b/README.md @@ -20,10 +20,7 @@ Design tokens purpose is to: - **Keep visual consistency across all components of the library.** ## Docs: -- [Figma tokens github workflow](./docs/figma-github-workflow.md) -- [Pre-transform phase](./docs/pretransform-phase.md) - [Generating icons](./docs/icons.md) -- [Generating tokens documentation](./docs/tokens-documentation.md) ## Using the design tokens @@ -111,4 +108,4 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -Copyright (c) 2021 Sage Group Plc. All rights reserved. +Copyright (c) 2024 Sage Group Plc. All rights reserved. diff --git a/data/tokens.json b/data/tokens.json deleted file mode 100644 index 44c82e02..00000000 --- a/data/tokens.json +++ /dev/null @@ -1,6860 +0,0 @@ -{ - "origin": { - "meta": { - "name": { - "value": "Origin Token Set", - "type": "other" - }, - "public": { - "value": "true", - "type": "other" - } - }, - "origin-color-reference-only": { - "yin": { - "100": { - "value": "rgba(0,0,0,1)", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "010": { - "value": "rgba(0,0,0,0.1)", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "020": { - "value": "rgba(0,0,0,0.2)", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "030": { - "value": "rgba(0,0,0,0.3)", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "055": { - "value": "rgba(0,0,0,0.55)", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "065": { - "value": "rgba(0,0,0,0.65)", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "075": { - "value": "rgba(0,0,0,0.75)", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "090": { - "value": "rgba(0,0,0,0.9)", - "type": "color", - "description": "Reference only. Do not use in components." - } - }, - "yang": { - "100": { - "value": "rgba(255,255,255,1)", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "010": { - "value": "#FFFFFF1A", - "type": "color" - }, - "030": { - "value": "rgba(255,255,255,0.3)", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "080": { - "value": "rgba(255,255,255,0.8)", - "type": "color", - "description": "Reference only. Do not use in components." - } - }, - "malachite": { - "150": { - "value": "#B7DEC0", - "type": "color", - "description": "ORIGIN" - }, - "225": { - "value": "#92CDA0", - "type": "color", - "description": "ORIGIN" - }, - "300": { - "value": "#6DBC80", - "type": "color", - "description": "ORIGIN" - }, - "375": { - "value": "#46AA5E", - "type": "color", - "description": "ORIGIN" - }, - "450": { - "value": "#1E983B", - "type": "color", - "description": "ORIGIN" - }, - "525": { - "value": "#00831F", - "type": "color", - "description": "ORIGIN" - }, - "600": { - "value": "#006E1A", - "type": "color", - "description": "ORIGIN" - }, - "675": { - "value": "#005A15", - "type": "color", - "description": "ORIGIN" - }, - "750": { - "value": "#004611", - "type": "color", - "description": "ORIGIN" - }, - "825": { - "value": "#00330C", - "type": "color", - "description": "ORIGIN" - }, - "900": { - "value": "#002108", - "type": "color", - "description": "ORIGIN" - }, - "075": { - "value": "#DBEEE0", - "type": "color", - "description": "ORIGIN" - } - }, - "jade": { - "150": { - "value": "#B6DDCB", - "type": "color", - "description": "ORIGIN" - }, - "225": { - "value": "#91CCB1", - "type": "color", - "description": "ORIGIN" - }, - "300": { - "value": "#6CBA97", - "type": "color", - "description": "ORIGIN" - }, - "375": { - "value": "#46A97C", - "type": "color", - "description": "ORIGIN" - }, - "450": { - "value": "#1E965F", - "type": "color", - "description": "ORIGIN" - }, - "525": { - "value": "#008247", - "type": "color", - "description": "ORIGIN" - }, - "600": { - "value": "#006D3B", - "type": "color", - "description": "ORIGIN" - }, - "675": { - "value": "#005930", - "type": "color", - "description": "ORIGIN" - }, - "750": { - "value": "#004526", - "type": "color", - "description": "ORIGIN" - }, - "825": { - "value": "#00331C", - "type": "color", - "description": "ORIGIN" - }, - "900": { - "value": "#002112", - "type": "color", - "description": "ORIGIN" - }, - "075": { - "value": "#DBEEE5", - "type": "color", - "description": "ORIGIN" - } - }, - "navy": { - "150": { - "value": "#BDD9E7", - "type": "color", - "description": "ORIGIN" - }, - "225": { - "value": "#9CC6DB", - "type": "color", - "description": "ORIGIN" - }, - "300": { - "value": "#7BB3CF", - "type": "color", - "description": "ORIGIN" - }, - "375": { - "value": "#599FC2", - "type": "color", - "description": "ORIGIN" - }, - "450": { - "value": "#378CB6", - "type": "color", - "description": "ORIGIN" - }, - "525": { - "value": "#1478A9", - "type": "color", - "description": "ORIGIN" - }, - "600": { - "value": "#0C6490", - "type": "color", - "description": "ORIGIN" - }, - "675": { - "value": "#0A5175", - "type": "color", - "description": "ORIGIN" - }, - "750": { - "value": "#083F5B", - "type": "color", - "description": "ORIGIN" - }, - "825": { - "value": "#062E43", - "type": "color", - "description": "ORIGIN" - }, - "900": { - "value": "#041E2B", - "type": "color", - "description": "ORIGIN" - }, - "075": { - "value": "#DEECF3", - "type": "color", - "description": "ORIGIN" - } - }, - "teal": { - "150": { - "value": "#BBDBDA", - "type": "color", - "description": "ORIGIN" - }, - "225": { - "value": "#99C8C8", - "type": "color", - "description": "ORIGIN" - }, - "300": { - "value": "#76B6B6", - "type": "color", - "description": "ORIGIN" - }, - "375": { - "value": "#54A4A3", - "type": "color", - "description": "ORIGIN" - }, - "450": { - "value": "#319190", - "type": "color", - "description": "ORIGIN" - }, - "525": { - "value": "#0D7E7D", - "type": "color", - "description": "ORIGIN" - }, - "600": { - "value": "#006A69", - "type": "color", - "description": "ORIGIN" - }, - "675": { - "value": "#005655", - "type": "color", - "description": "ORIGIN" - }, - "750": { - "value": "#004342", - "type": "color", - "description": "ORIGIN" - }, - "825": { - "value": "#003131", - "type": "color", - "description": "ORIGIN" - }, - "900": { - "value": "#002020", - "type": "color", - "description": "ORIGIN" - }, - "075": { - "value": "#DDEDED", - "type": "color", - "description": "ORIGIN" - } - }, - "cherry": { - "150": { - "value": "#EDCCD6", - "type": "color", - "description": "ORIGIN" - }, - "225": { - "value": "#E4B2C2", - "type": "color", - "description": "ORIGIN" - }, - "300": { - "value": "#DB99AD", - "type": "color", - "description": "ORIGIN" - }, - "375": { - "value": "#D27F98", - "type": "color", - "description": "ORIGIN" - }, - "450": { - "value": "#C86483", - "type": "color", - "description": "ORIGIN" - }, - "525": { - "value": "#BE466B", - "type": "color", - "description": "ORIGIN" - }, - "600": { - "value": "#A53558", - "type": "color", - "description": "ORIGIN" - }, - "675": { - "value": "#862B47", - "type": "color", - "description": "ORIGIN" - }, - "750": { - "value": "#692238", - "type": "color", - "description": "ORIGIN" - }, - "825": { - "value": "#4D1929", - "type": "color", - "description": "ORIGIN" - }, - "900": { - "value": "#32101B", - "type": "color", - "description": "ORIGIN" - }, - "075": { - "value": "#F6E5EB", - "type": "color", - "description": "ORIGIN" - } - }, - "terra": { - "150": { - "value": "#F0CCC7", - "type": "color", - "description": "ORIGIN" - }, - "225": { - "value": "#E9B3AB", - "type": "color", - "description": "ORIGIN" - }, - "300": { - "value": "#E1998E", - "type": "color", - "description": "ORIGIN" - }, - "375": { - "value": "#D97E71", - "type": "color", - "description": "ORIGIN" - }, - "450": { - "value": "#D16252", - "type": "color", - "description": "ORIGIN" - }, - "525": { - "value": "#C64532", - "type": "color", - "description": "ORIGIN" - }, - "600": { - "value": "#A63A2A", - "type": "color", - "description": "ORIGIN" - }, - "675": { - "value": "#872F22", - "type": "color", - "description": "ORIGIN" - }, - "750": { - "value": "#69251B", - "type": "color", - "description": "ORIGIN" - }, - "825": { - "value": "#4D1B14", - "type": "color", - "description": "ORIGIN" - }, - "900": { - "value": "#32110D", - "type": "color", - "description": "ORIGIN" - }, - "075": { - "value": "#F8E6E3", - "type": "color", - "description": "ORIGIN" - } - }, - "amber": { - "150": { - "value": "#F6CE9A", - "type": "color", - "description": "ORIGIN" - }, - "225": { - "value": "#F1B465", - "type": "color", - "description": "ORIGIN" - }, - "300": { - "value": "#EC992D", - "type": "color", - "description": "ORIGIN" - }, - "375": { - "value": "#DD8009", - "type": "color", - "description": "ORIGIN" - }, - "450": { - "value": "#C17007", - "type": "color", - "description": "ORIGIN" - }, - "525": { - "value": "#A56006", - "type": "color", - "description": "ORIGIN" - }, - "600": { - "value": "#8B5005", - "type": "color", - "description": "ORIGIN" - }, - "675": { - "value": "#714104", - "type": "color", - "description": "ORIGIN" - }, - "750": { - "value": "#583303", - "type": "color", - "description": "ORIGIN" - }, - "825": { - "value": "#402502", - "type": "color", - "description": "ORIGIN" - }, - "900": { - "value": "#291802", - "type": "color", - "description": "ORIGIN" - }, - "075": { - "value": "#FBE7CD", - "type": "color", - "description": "ORIGIN" - } - }, - "gray": { - "150": { - "value": "#D4D4D4", - "type": "color", - "description": "ORIGIN" - }, - "225": { - "value": "#BFBFBF", - "type": "color", - "description": "ORIGIN" - }, - "300": { - "value": "#ABABAB", - "type": "color", - "description": "ORIGIN" - }, - "375": { - "value": "#979797", - "type": "color", - "description": "ORIGIN" - }, - "450": { - "value": "#848484", - "type": "color", - "description": "ORIGIN" - }, - "525": { - "value": "#717171", - "type": "color", - "description": "ORIGIN" - }, - "600": { - "value": "#5E5E5E", - "type": "color", - "description": "ORIGIN" - }, - "675": { - "value": "#4C4C4C", - "type": "color", - "description": "ORIGIN" - }, - "750": { - "value": "#3B3B3B", - "type": "color", - "description": "ORIGIN" - }, - "825": { - "value": "#2B2B2B", - "type": "color", - "description": "ORIGIN" - }, - "900": { - "value": "#1B1B1B", - "type": "color", - "description": "ORIGIN" - }, - "1000": { - "value": "#000000", - "type": "color", - "description": "ORIGIN - brand" - }, - "000": { - "value": "#ffffff", - "type": "color", - "description": "ORIGIN - brand" - }, - "075": { - "value": "#E9E9E9", - "type": "color", - "description": "ORIGIN" - } - }, - "skin": { - "400": { - "value": "#ddb89e", - "type": "color", - "description": "ORIGIN" - }, - "500": { - "value": "#e84d4f", - "type": "color", - "description": "ORIGIN" - }, - "600": { - "value": "#b26e3d", - "type": "color", - "description": "ORIGIN" - }, - "700": { - "value": "#3a2417", - "type": "color", - "description": "ORIGIN" - } - }, - "fuchsia": { - "450": { - "value": "#C557C8", - "type": "color", - "description": "ORIGIN" - }, - "525": { - "value": "#B934BD", - "type": "color", - "description": "ORIGIN" - } - } - } - }, - "base": { - "meta": { - "name": { - "value": "Base Theme", - "type": "other" - }, - "public": { - "value": "true", - "type": "other" - } - }, - "colors": { - "utility": { - "major": { - "100": { - "value": "$colors.action.minor.200", - "type": "color", - "description": "#CCD6DB " - }, - "150": { - "value": "$colors.action.minor.250", - "type": "color", - "description": "#B3C2C9" - }, - "200": { - "value": "$colors.action.minor.300", - "type": "color", - "description": "#99ADB7 " - }, - "300": { - "value": "$colors.action.minor.400", - "type": "color", - "description": "#668494" - }, - "400": { - "value": "$colors.action.minor.500", - "type": "color", - "description": "#335B70" - }, - "450": { - "value": "$colors.action.minor.550", - "type": "color" - }, - "500": { - "value": "$colors.action.minor.600", - "type": "color", - "description": "#00324C" - }, - "800": { - "value": "$colors.action.minor.900", - "type": "color", - "description": "#00141E" - }, - "025": { - "value": "$colors.action.minor.050", - "type": "color", - "description": "#F2F5F6" - }, - "010": { - "value": "$colors.action.minor.025", - "type": "color", - "description": "" - }, - "040": { - "value": "#EDF1F2", - "type": "color" - }, - "050": { - "value": "$colors.action.minor.100", - "type": "color", - "description": "#E6EBED" - }, - "075": { - "value": "$colors.action.minor.150", - "type": "color", - "description": "#D9E0E4" - }, - "transparent": { - "value": "$colors.transparent", - "type": "color" - } - }, - "yin": { - "100": { - "value": "$colors.yin.100", - "type": "color", - "description": "NOT for text" - }, - "030": { - "value": "$colors.yin.030", - "type": "color" - }, - "055": { - "value": "$colors.yin.055", - "type": "color" - }, - "065": { - "value": "$colors.yin.065", - "type": "color" - }, - "090": { - "value": "$colors.yin.090", - "type": "color" - } - }, - "yang": { - "100": { - "value": "$colors.yang.100", - "type": "color" - }, - "080": { - "value": "$colors.yang.080", - "type": "color", - "description": "Search on dark placeholder" - } - }, - "disabled": { - "400": { - "value": "$colors.disabled.400", - "type": "color", - "description": "" - }, - "500": { - "value": "$colors.disabled.500", - "type": "color", - "description": "" - }, - "600": { - "value": "$colors.disabled.600", - "type": "color", - "description": "" - } - }, - "readOnly": { - "400": { - "value": "$colors.readOnly.400", - "type": "color", - "description": "" - }, - "500": { - "value": "$colors.readOnly.500", - "type": "color", - "description": "" - }, - "600": { - "value": "$colors.readOnly.600", - "type": "color", - "description": "" - } - } - }, - "action": { - "major": { - "150": { - "value": "#B3D9C8", - "type": "color", - "description": "origin" - }, - "350": { - "value": "#4DA77E", - "type": "color", - "description": "origin" - }, - "450": { - "value": "#198E59", - "type": "color", - "description": "origin" - }, - "500": { - "value": "#007E45", - "type": "color", - "description": "origin (was originally #008146, darkened by 2% black to meet accessibility requirements)" - }, - "600": { - "value": "#006738", - "type": "color", - "description": "origin" - }, - "700": { - "value": "#004D2A", - "type": "color", - "description": "origin." - }, - "025": { - "value": "#F2F9F6", - "description": "origin (Currently only used on Tile Select)", - "type": "color" - }, - "transparent": { - "value": "$colors.transparent", - "type": "color" - }, - "yin": { - "030": { - "value": "$colors.yin.030", - "type": "color" - }, - "055": { - "value": "$colors.yin.055", - "type": "color" - }, - "065": { - "value": "$colors.yin.065", - "type": "color" - }, - "090": { - "value": "$colors.yin.090", - "type": "color" - } - }, - "yang": { - "100": { - "value": "$colors.yang.100", - "type": "color" - }, - "030": { - "value": "$colors.yang.030", - "type": "color" - } - } - }, - "minor": { - "100": { - "value": "#E6EBED", - "type": "color", - "description": "origin" - }, - "150": { - "value": "#D9E0E4", - "type": "color", - "description": "origin" - }, - "200": { - "value": "#CCD6DB", - "type": "color", - "description": "origin" - }, - "250": { - "value": "#B3C2C9", - "type": "color", - "description": "origin" - }, - "300": { - "value": "#99ADB7", - "type": "color", - "description": "origin" - }, - "400": { - "value": "#668494", - "type": "color", - "description": "origin" - }, - "500": { - "value": "#335B70", - "type": "color", - "description": "origin" - }, - "550": { - "value": "#19475E", - "type": "color", - "description": "origin" - }, - "600": { - "value": "#00324C", - "type": "color", - "description": "origin" - }, - "700": { - "value": "#00283D", - "type": "color", - "description": "origin" - }, - "850": { - "value": "#001926", - "type": "color", - "description": "origin" - }, - "900": { - "value": "#00141E", - "type": "color", - "description": "origin" - }, - "025": { - "value": "#FAFBFB", - "type": "color", - "description": "origin" - }, - "050": { - "value": "#F2F5F6", - "type": "color", - "description": "origin" - }, - "transparent": { - "value": "$colors.transparent", - "type": "color" - }, - "yin": { - "030": { - "value": "$colors.yin.030", - "type": "color" - }, - "055": { - "value": "$colors.yin.055", - "type": "color" - }, - "065": { - "value": "$colors.yin.065", - "type": "color" - }, - "090": { - "value": "$colors.yin.090", - "type": "color" - } - }, - "yang": { - "100": { - "value": "$colors.yang.100", - "type": "color" - } - }, - "gray": { - "700": { - "value": "$colors.gray.700", - "type": "color" - } - } - }, - "disabled": { - "400": { - "value": "$colors.disabled.400", - "type": "color" - }, - "500": { - "value": "$colors.disabled.500", - "type": "color" - }, - "600": { - "value": "$colors.disabled.600", - "type": "color" - } - }, - "readOnly": { - "400": { - "value": "$colors.readOnly.400", - "type": "color" - }, - "500": { - "value": "$colors.readOnly.500", - "type": "color" - }, - "600": { - "value": "$colors.readOnly.600", - "type": "color" - } - } - }, - "semantic": { - "neutral": { - "200": { - "value": "#CCD6DB", - "type": "color" - }, - "400": { - "value": "#668494", - "type": "color" - }, - "500": { - "value": "#335B70", - "type": "color", - "description": "" - }, - "600": { - "value": "#00324C", - "type": "color" - }, - "transparent": { - "value": "$colors.transparent", - "type": "color" - }, - "yin": { - "030": { - "value": "$colors.yin.030", - "type": "color" - }, - "055": { - "value": "$colors.yin.055", - "type": "color" - }, - "065": { - "value": "$colors.yin.065", - "type": "color" - }, - "090": { - "value": "$colors.yin.090", - "type": "color" - } - }, - "yang": { - "100": { - "value": "$colors.yang.100", - "type": "color" - } - } - }, - "focus": { - "250": { - "value": "#FFDA80", - "type": "color" - }, - "500": { - "value": "#FFBC19", - "type": "color", - "description": "Was #FFB500. On introduction of double focus borders it was changed to #FFBC19 (to meet accessibility requirements against hover in left nav)." - }, - "1000": { - "value": "{origin-color-reference-only.gray.1000}", - "type": "color", - "description": "2023 focus outer outline and focus link underline" - }, - "000": { - "value": "{origin-color-reference-only.gray.000}", - "type": "color", - "description": "2023 focus inner outline" - }, - "transparent": { - "value": "$colors.transparent", - "type": "color" - } - }, - "positive": { - "400": { - "value": "#33A14D", - "type": "color" - }, - "500": { - "value": "#00821F", - "type": "color", - "description": "Was #008A21 (not accessible on #F2F5F6)" - }, - "600": { - "value": "#006819", - "type": "color", - "description": "Was #006E1A but 500 token was darkened, so 600 had to be darkened too." - }, - "transparent": { - "value": "$colors.transparent", - "type": "color" - }, - "yin": { - "030": { - "value": "$colors.yin.030", - "type": "color" - }, - "055": { - "value": "$colors.yin.055", - "type": "color" - }, - "065": { - "value": "$colors.yin.065", - "type": "color" - }, - "090": { - "value": "$colors.yin.090", - "type": "color" - } - }, - "yang": { - "100": { - "value": "$colors.yang.100", - "type": "color" - } - } - }, - "negative": { - "350": { - "value": "#DB7380", - "type": "color" - }, - "450": { - "value": "#D04B5C", - "type": "color" - }, - "500": { - "value": "#CB374A", - "type": "color" - }, - "600": { - "value": "#A22C3B", - "type": "color" - }, - "transparent": { - "value": "$colors.transparent", - "type": "color" - }, - "yin": { - "030": { - "value": "$colors.yin.030", - "type": "color" - }, - "055": { - "value": "$colors.yin.055", - "type": "color" - }, - "065": { - "value": "$colors.yin.065", - "type": "color" - }, - "090": { - "value": "$colors.yin.090", - "type": "color" - } - }, - "yang": { - "100": { - "value": "$colors.yang.100", - "type": "color" - } - } - }, - "caution": { - "400": { - "value": "#f28533", - "type": "color" - }, - "500": { - "value": "#EF6700", - "type": "color", - "description": "was #E96400" - }, - "600": { - "value": "#bf5200", - "type": "color" - }, - "650": { - "value": "#A74800", - "type": "color" - }, - "transparent": { - "value": "$colors.transparent", - "type": "color" - }, - "yin": { - "030": { - "value": "$colors.yin.030", - "type": "color" - }, - "055": { - "value": "$colors.yin.055", - "type": "color" - }, - "065": { - "value": "$colors.yin.065", - "type": "color" - }, - "090": { - "value": "$colors.yin.090", - "type": "color" - } - }, - "yang": { - "100": { - "value": "$colors.yang.100", - "type": "color" - } - } - }, - "info": { - "150": { - "value": "#b3cfe5", - "type": "color" - }, - "400": { - "value": "#3380B9", - "type": "color" - }, - "500": { - "value": "#0060A7", - "type": "color" - }, - "600": { - "value": "#004d86", - "type": "color" - }, - "transparent": { - "value": "$colors.transparent", - "type": "color" - }, - "yin": { - "030": { - "value": "$colors.yin.030", - "type": "color" - }, - "055": { - "value": "$colors.yin.055", - "type": "color" - }, - "065": { - "value": "$colors.yin.065", - "type": "color" - }, - "090": { - "value": "$colors.yin.090", - "type": "color" - } - }, - "yang": { - "100": { - "value": "$colors.yang.100", - "type": "color" - } - } - }, - "notification": { - "600": { - "value": "#BB4F00", - "type": "color", - "description": "badge" - }, - "transparent": { - "value": "$colors.transparent", - "type": "color" - }, - "yin": { - "100": { - "value": "$colors.yin.100", - "type": "color" - } - }, - "yang": { - "100": { - "value": "$colors.yang.100", - "type": "color" - } - } - } - }, - "logo": { - "value": "#00D639", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "transparent": { - "value": "rgba(0,0,0,0)", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "yin": { - "100": { - "value": "rgba(0,0,0,1)", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "030": { - "value": "rgba(0,0,0,0.3)", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "055": { - "value": "rgba(0,0,0,0.55)", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "065": { - "value": "rgba(0,0,0,0.65)", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "075": { - "value": "rgba(0,0,0,0.75)", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "090": { - "value": "rgba(0,0,0,0.9)", - "type": "color", - "description": "Reference only. Do not use in components." - } - }, - "yang": { - "100": { - "value": "rgba(255,255,255,1)", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "030": { - "value": "rgba(255,255,255,0.3)", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "080": { - "value": "rgba(255,255,255,0.8)", - "type": "color", - "description": "Reference only. Do not use in components." - } - }, - "gray": { - "600": { - "value": "#666666", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "700": { - "value": "#4d4d4d", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "750": { - "value": "#404040", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "850": { - "value": "#262626", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "900": { - "value": "#191919", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "1000": { - "value": "#000000", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "000": { - "value": "#FFFFFF", - "description": "Reference only. Do not use in components.", - "type": "color" - } - }, - "disabled": { - "400": { - "value": "#F2F5F6", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "500": { - "value": "#E6EBED", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "600": { - "value": "#CCD6DB", - "type": "color", - "description": "Reference only. Do not use in components." - } - }, - "readOnly": { - "400": { - "value": "#F2F5F6", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "500": { - "value": "#E6EBED", - "type": "color", - "description": "Reference only. Do not use in components." - }, - "600": { - "value": "#CCD6DB", - "type": "color", - "description": "Reference only. Do not use in components." - } - }, - "components": { - "leftnav": { - "winter": { - "standard": { - "background": { - "value": "$colors.gray.850", - "type": "color", - "description": "Navigation bar bg (FY23)" - }, - "background-child": { - "value": "{colors.gray.750}", - "type": "color", - "description": "Navigation bar bg-child (FY23)" - }, - "divider-on-dark": { - "value": "{colors.utility.yin.055}", - "type": "color", - "description": "Divider on dark for LeftNav (FY23)" - }, - "hover": { - "value": "{colors.action.major.500}", - "type": "color", - "description": "NavigationLeft menu item hover (FY23)" - }, - "selected": { - "value": "{colors.yang.030}", - "type": "color", - "description": "NavigationLeft menu item selected (FY23)" - }, - "content": { - "value": "$colors.yang.100", - "type": "color", - "description": "NavigationLeft menu item text and icons (FY23)" - } - } - } - }, - "menu": { - "spring": { - "standard": { - "500": { - "value": "$colors.action.minor.100", - "type": "color" - }, - "600": { - "value": "$colors.action.major.500", - "type": "color" - }, - "700": { - "value": "$colors.action.minor.150", - "type": "color" - } - }, - "parent": { - "500": { - "value": "$colors.action.minor.100", - "type": "color" - }, - "600": { - "value": "$colors.action.major.500", - "type": "color" - }, - "700": { - "value": "$colors.action.minor.150", - "type": "color" - } - }, - "child": { - "400": { - "value": "$colors.action.minor.200", - "type": "color" - }, - "500": { - "value": "$colors.components.menu.yang.100", - "type": "color" - }, - "600": { - "value": "$colors.action.major.500", - "type": "color" - } - }, - "childAlt": { - "400": { - "value": "$colors.action.minor.200", - "type": "color" - }, - "500": { - "value": "$colors.action.minor.100", - "type": "color" - }, - "600": { - "value": "$colors.action.major.500", - "type": "color" - } - } - }, - "summer": { - "standard": { - "400": { - "value": "$colors.action.minor.200", - "type": "color", - "description": "selected menu button border" - }, - "500": { - "value": "$colors.components.menu.yang.100", - "type": "color", - "description": "default menu button (to sit on colors.gray.000 nav bar)" - }, - "600": { - "value": "$colors.action.major.500", - "type": "color", - "description": "hover (with click action)" - }, - "700": { - "value": "$colors.action.minor.100", - "type": "color", - "description": "TO BE REMOVED" - }, - "800": { - "value": "$colors.action.minor.100", - "type": "color", - "description": "selected menu button bg (use with 400 border)" - } - }, - "parent": { - "400": { - "value": "$colors.action.minor.200", - "type": "color", - "description": "selected menu button border (on parent with clickable action)" - }, - "500": { - "value": "$colors.components.menu.yang.100", - "type": "color", - "description": "default menu button (to sit on colors.gray.000 nav bar)" - }, - "600": { - "value": "$colors.action.major.500", - "type": "color", - "description": "hover (with click action)" - }, - "700": { - "value": "$colors.action.minor.100", - "type": "color", - "description": "open menu item (or hover non-clickable)" - }, - "800": { - "value": "$colors.action.minor.100", - "type": "color", - "description": "selected menu item (on parent with clickable action)" - } - }, - "child": { - "300": { - "value": "$colors.action.minor.250", - "type": "color", - "description": "menu divider" - }, - "400": { - "value": "$colors.action.minor.200", - "type": "color", - "description": "selected menu button border" - }, - "500": { - "value": "$colors.action.minor.100", - "type": "color", - "description": "default menu button" - }, - "600": { - "value": "$colors.action.major.500", - "type": "color", - "description": "hover (with click action)" - }, - "700": { - "value": "$colors.action.minor.100", - "type": "color", - "description": "open menu item" - }, - "800": { - "value": "$colors.action.minor.100", - "type": "color", - "description": "selected menu button bg (use with 400 border)" - } - }, - "childAlt": { - "300": { - "value": "$colors.action.minor.250", - "type": "color", - "description": "menu divider" - }, - "400": { - "value": "$colors.action.minor.200", - "type": "color", - "description": "selected menu button border" - }, - "500": { - "value": "$colors.action.minor.150", - "type": "color", - "description": "default menu button" - }, - "600": { - "value": "$colors.action.major.500", - "type": "color", - "description": "hover (with click action)" - }, - "700": { - "value": "$colors.action.minor.150", - "type": "color", - "description": "open menu item" - }, - "800": { - "value": "$colors.action.minor.150", - "type": "color", - "description": "selected menu button bg (use with 400 border)" - } - } - }, - "autumn": { - "standard": { - "500": { - "value": "$colors.action.minor.600", - "type": "color" - }, - "600": { - "value": "$colors.action.major.500", - "type": "color" - }, - "700": { - "value": "$colors.action.minor.550", - "type": "color", - "description": "" - } - }, - "parent": { - "500": { - "value": "$colors.action.minor.600", - "type": "color" - }, - "600": { - "value": "$colors.action.major.500", - "type": "color", - "description": "" - }, - "700": { - "value": "$colors.action.minor.550", - "type": "color", - "description": "" - } - }, - "child": { - "400": { - "value": "$colors.action.minor.550", - "type": "color" - }, - "500": { - "value": "$colors.action.minor.850", - "type": "color" - }, - "600": { - "value": "$colors.action.major.500", - "type": "color" - } - }, - "childAlt": { - "400": { - "value": "$colors.action.minor.550", - "type": "color" - }, - "500": { - "value": "$colors.action.minor.600", - "type": "color" - }, - "600": { - "value": "$colors.action.major.500", - "type": "color" - } - } - }, - "winter": { - "standard": { - "400": { - "value": "$colors.gray.700", - "type": "color", - "description": "selected menu button border" - }, - "500": { - "value": "$colors.components.menu.yin.100", - "type": "color", - "description": "default menu button (to sit on colors.gray.1000 nav bar)" - }, - "600": { - "value": "$colors.action.major.500", - "type": "color", - "description": "hover (with click action)" - }, - "700": { - "value": "$colors.gray.850", - "type": "color", - "description": "TO BE REMOVED" - }, - "800": { - "value": "$colors.gray.850", - "type": "color", - "description": "selected menu button bg (use with 400 border)" - } - }, - "parent": { - "400": { - "value": "$colors.gray.700", - "type": "color", - "description": "selected menu button border (for parent with clickable action)" - }, - "500": { - "value": "$colors.components.menu.yin.100", - "type": "color", - "description": "default menu button (to sit on colors.gray.1000 nav bar)" - }, - "600": { - "value": "$colors.action.major.500", - "type": "color", - "description": "hover (with click action)" - }, - "700": { - "value": "$colors.gray.850", - "type": "color", - "description": "open menu item (or hover non-clickable)" - }, - "800": { - "value": "$colors.gray.850", - "type": "color", - "description": "selected menu item (on parent with clickable action)" - } - }, - "child": { - "300": { - "value": "$colors.gray.600", - "type": "color", - "description": "menu divider" - }, - "400": { - "value": "$colors.gray.700", - "type": "color", - "description": "selected menu button border (darker than divider)" - }, - "500": { - "value": "$colors.gray.850", - "type": "color", - "description": "default menu button" - }, - "600": { - "value": "$colors.action.major.500", - "type": "color", - "description": "hover (with click action)" - }, - "700": { - "value": "$colors.gray.850", - "type": "color", - "description": "open menu item" - }, - "800": { - "value": "$colors.gray.850", - "type": "color", - "description": "selected menu button bg (use with 400 border)" - } - }, - "childAlt": { - "300": { - "value": "$colors.gray.600", - "type": "color", - "description": "menu divider" - }, - "400": { - "value": "$colors.gray.700", - "type": "color", - "description": "selected menu button border" - }, - "500": { - "value": "$colors.gray.750", - "type": "color", - "description": "default menu button" - }, - "600": { - "value": "$colors.action.major.500", - "type": "color", - "description": "hover (with click action)" - }, - "700": { - "value": "$colors.gray.750", - "type": "color", - "description": "open menu item" - }, - "800": { - "value": "$colors.gray.750", - "type": "color", - "description": "selected menu button bg (use with 400 border)" - } - } - }, - "yin": { - "100": { - "value": "#000000", - "type": "color" - }, - "065": { - "value": "$colors.yin.065", - "type": "color" - }, - "090": { - "value": "$colors.yin.090", - "type": "color" - } - }, - "yang": { - "100": { - "value": "$colors.yang.100", - "type": "color" - }, - "080": { - "value": "$colors.yang.080", - "type": "color" - }, - "030": { - "value": "{colors.yang.030}", - "type": "color", - "description": "Selected state for on dark menu item." - } - }, - "transparent": { - "value": "$colors.transparent", - "type": "color" - } - } - } - }, - "sizing": { - "100": { - "value": "8px", - "type": "sizing" - }, - "125": { - "value": "10px", - "type": "sizing" - }, - "150": { - "value": "12px", - "type": "sizing" - }, - "175": { - "value": "14px", - "type": "sizing" - }, - "200": { - "value": "16px", - "type": "sizing" - }, - "225": { - "value": "18px", - "type": "sizing" - }, - "250": { - "value": "20px", - "type": "sizing" - }, - "275": { - "value": "22px", - "type": "sizing" - }, - "300": { - "value": "24px", - "type": "sizing" - }, - "350": { - "value": "28px", - "type": "sizing" - }, - "375": { - "value": "30px", - "type": "sizing" - }, - "400": { - "value": "32px", - "type": "sizing" - }, - "450": { - "value": "36px", - "type": "sizing" - }, - "500": { - "value": "40px", - "type": "sizing" - }, - "525": { - "value": "42px", - "type": "sizing" - }, - "550": { - "value": "44px", - "type": "sizing" - }, - "600": { - "value": "48px", - "type": "sizing" - }, - "700": { - "value": "56px", - "type": "sizing" - }, - "800": { - "value": "64px", - "type": "sizing" - }, - "900": { - "value": "72px", - "type": "sizing" - }, - "1000": { - "value": "80px", - "type": "sizing" - }, - "1100": { - "value": "88px", - "type": "sizing" - }, - "1200": { - "value": "96px", - "type": "sizing" - }, - "1300": { - "value": "104px", - "type": "sizing" - }, - "1500": { - "value": "120px", - "type": "sizing" - }, - "1600": { - "value": "128px", - "type": "sizing" - }, - "2000": { - "value": "160px", - "type": "sizing", - "description": "Tile" - }, - "2500": { - "value": "200px", - "type": "sizing", - "description": "Tile" - }, - "3000": { - "value": "240px", - "type": "sizing", - "description": "Tile" - }, - "7000": { - "value": "560px", - "type": "sizing", - "description": "Tile" - }, - "010": { - "value": "1px", - "type": "sizing" - }, - "025": { - "value": "2px", - "type": "sizing" - }, - "050": { - "value": "4px", - "type": "sizing" - }, - "075": { - "value": "6px", - "type": "sizing" - }, - "logowidth": { - "value": "40px", - "type": "sizing" - } - }, - "spacing": { - "100": { - "value": "8px", - "type": "spacing" - }, - "110": { - "value": "9px", - "type": "spacing" - }, - "125": { - "value": "10px", - "type": "spacing" - }, - "150": { - "value": "12px", - "type": "spacing" - }, - "175": { - "value": "14px", - "type": "spacing" - }, - "200": { - "value": "16px", - "type": "spacing" - }, - "250": { - "value": "20px", - "type": "spacing" - }, - "300": { - "value": "24px", - "type": "spacing" - }, - "400": { - "value": "32px", - "type": "spacing" - }, - "500": { - "value": "40px", - "type": "spacing" - }, - "600": { - "value": "48px", - "type": "spacing" - }, - "700": { - "value": "56px", - "type": "spacing" - }, - "800": { - "value": "64px", - "type": "spacing" - }, - "900": { - "value": "72px", - "type": "spacing" - }, - "1000": { - "value": "80px", - "type": "spacing" - }, - "000": { - "value": "0", - "type": "spacing" - }, - "010": { - "value": "1px", - "type": "spacing" - }, - "025": { - "value": "2px", - "type": "spacing" - }, - "035": { - "value": "3px", - "type": "spacing" - }, - "050": { - "value": "4px", - "type": "spacing" - }, - "060": { - "value": "5px", - "type": "spacing" - }, - "075": { - "value": "6px", - "type": "spacing" - }, - "neg010": { - "value": "-1px", - "type": "spacing" - }, - "neg025": { - "value": "-2px", - "type": "spacing" - }, - "neg050": { - "value": "-4px", - "type": "spacing" - }, - "neg075": { - "value": "-6px", - "type": "spacing" - }, - "neg100": { - "value": "-8", - "type": "spacing", - "description": "pill(XL)" - } - }, - "borderWidth": { - "100": { - "value": "1px", - "type": "borderWidth" - }, - "200": { - "value": "2px", - "type": "borderWidth" - }, - "300": { - "value": "3px", - "type": "borderWidth" - }, - "400": { - "value": "4px", - "type": "borderWidth" - }, - "600": { - "value": "6px", - "type": "borderWidth" - }, - "000": { - "value": "0px", - "type": "borderWidth" - } - }, - "fontSizes": { - "100": { - "value": "14px", - "type": "fontSizes" - }, - "200": { - "value": "16px", - "type": "fontSizes" - }, - "300": { - "value": "18px", - "type": "fontSizes" - }, - "400": { - "value": "20px", - "type": "fontSizes" - }, - "500": { - "value": "22px", - "type": "fontSizes" - }, - "600": { - "value": "24px", - "type": "fontSizes" - }, - "700": { - "value": "32px", - "type": "fontSizes" - }, - "800": { - "value": "40px", - "type": "fontSizes" - }, - "900": { - "value": "48px", - "type": "fontSizes" - }, - "1000": { - "value": "56px", - "type": "fontSizes" - }, - "010": { - "value": "10px", - "type": "fontSizes" - }, - "025": { - "value": "12px", - "type": "fontSizes" - }, - "050": { - "value": "13px", - "type": "fontSizes" - } - }, - "boxShadow": { - "100": { - "value": [ - { - "x": "0", - "y": "5", - "blur": "5", - "spread": "0", - "color": "rgba($colors.utility.major.800, 0.2)", - "type": "dropShadow" - }, - { - "x": "0", - "y": "10", - "blur": "10", - "spread": "0", - "color": "rgba($colors.utility.major.800, 0.1)", - "type": "dropShadow" - } - ], - "type": "boxShadow" - }, - "150": { - "value": { - "x": "0", - "y": "-4", - "blur": "12", - "spread": "0", - "color": "rgba($colors.utility.major.800, 0.05)", - "type": "dropShadow" - }, - "description": "for sticky footers", - "type": "boxShadow" - }, - "200": { - "value": [ - { - "x": "0", - "y": "10", - "blur": "20", - "spread": "0", - "color": "rgba($colors.utility.major.800, 0.2)", - "type": "dropShadow" - }, - { - "x": "0", - "y": "20", - "blur": "40", - "spread": "0", - "color": "rgba($colors.utility.major.800, 0.1)", - "type": "dropShadow" - } - ], - "type": "boxShadow" - }, - "300": { - "value": [ - { - "x": "0", - "y": "10", - "blur": "30", - "spread": "0", - "color": "rgba($colors.utility.major.800, 0.1)", - "type": "dropShadow" - }, - { - "x": "0", - "y": "30", - "blur": "60", - "spread": "0", - "color": "rgba($colors.utility.major.800, 0.1)", - "type": "dropShadow" - } - ], - "type": "boxShadow" - }, - "400": { - "value": [ - { - "x": "0", - "y": "10", - "blur": "40", - "spread": "0", - "color": "rgba($colors.utility.major.800, 0.04)", - "type": "dropShadow" - }, - { - "x": "0", - "y": "50", - "blur": "80", - "spread": "0", - "color": "rgba($colors.utility.major.800, 0.1)", - "type": "dropShadow" - } - ], - "type": "boxShadow" - }, - "010": { - "value": { - "x": "0", - "y": "-1px", - "blur": "0", - "spread": "0", - "color": "$colors.utility.major.050", - "type": "innerShadow" - }, - "description": "bottom internal border", - "type": "boxShadow" - }, - "050": { - "value": [ - { - "x": "0", - "y": "3", - "blur": "3", - "spread": "0", - "color": "rgba($colors.utility.major.800, 0.2)", - "type": "dropShadow" - }, - { - "x": "0", - "y": "2", - "blur": "4", - "spread": "0", - "color": "rgba($colors.utility.major.800, 0.15)", - "type": "dropShadow" - } - ], - "description": "", - "type": "boxShadow" - }, - "075": { - "value": { - "x": "0", - "y": "6", - "blur": "4", - "spread": "-4", - "color": "rgba($colors.utility.major.800, 0.05)", - "type": "innerShadow" - }, - "description": "for table expandable row 1st child", - "type": "boxShadow" - }, - "090": { - "value": { - "x": "0", - "y": "4px", - "blur": "8px", - "spread": "-4px", - "color": "rgba($colors.utility.major.800, 0.1)", - "type": "dropShadow" - }, - "type": "boxShadow", - "description": "product nav horizontal" - }, - "091": { - "value": { - "x": "4px", - "y": "0", - "blur": "8px", - "spread": "-4px", - "color": "rgba($colors.utility.major.800, 0.1)", - "type": "dropShadow" - }, - "type": "boxShadow", - "description": "product nav vertical" - } - }, - "fontWeights": { - "400": { - "value": "Regular", - "type": "fontWeights" - }, - "500": { - "value": "Medium", - "type": "fontWeights" - }, - "700": { - "value": "Bold", - "type": "fontWeights" - } - }, - "lineHeights": { - "300": { - "value": "100%", - "type": "lineHeights" - }, - "400": { - "value": "125%", - "type": "lineHeights" - }, - "500": { - "value": "150%", - "type": "lineHeights" - } - }, - "fontFamilies": { - "default": { - "value": "Sage UI", - "type": "fontFamilies" - }, - "ios": { - "value": "San Francisco", - "type": "fontFamilies" - }, - "android": { - "value": "Roboto", - "type": "fontFamilies" - }, - "other": { - "value": "Open Sans", - "type": "fontFamilies" - } - }, - "borderRadius": { - "100": { - "value": "8px", - "type": "borderRadius", - "description": "Action popover (menu), Anchor navigation, Card (less rounded), Card select (single), Card select group (outer corners), Carousel (slides), Color picker standard (container), Menu (bottom corners), Message, Navigation: top (menu bottom corners), Navigation: left (selected menu), Pagination, Tab, Table, Tile (less rounded), Toast." - }, - "200": { - "value": "16px", - "type": "borderRadius", - "description": "Carousel (outer part), Card (more rounded), Color picker advanced (outer container), Dialog (not full screen), Tile (more rounded)." - }, - "400": { - "value": "32px", - "type": "borderRadius", - "description": "Action popover (button), Button: major (including button bar), Button: multi-action & split, Button toggle: major, Loader bar, Progress tracker, Switch." - }, - "circle": { - "value": "50%", - "type": "borderRadius", - "description": "Badge, Loader dots, Portrait, Radio button." - }, - "000": { - "value": "0px", - "type": "borderRadius", - "description": "Button groups (internal/adjacent corners), Card select group (internal/adjacent corners), File input (integrated base bar top corners)." - }, - "010": { - "value": "1px", - "type": "borderRadius", - "description": "Validation bar" - }, - "025": { - "value": "2px", - "type": "borderRadius", - "description": "Checkbox (S, M), Link (focus background),Pill" - }, - "050": { - "value": "4px", - "type": "borderRadius", - "description": "Button: minor (including button bar), Button: multi-action & split (menu), Button toggle: minor, Checkbox (large), Color picker advanced (inner container), Date picker, Date range, Dropdown: select (trigger & menu), File input, Link (focus), Search, Text area, Text input, Tooltip." - } - }, - "typography": { - "accordion": { - "title": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.400", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - }, - "subtitle": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - }, - "paragraph": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - }, - "actionPopover": { - "menuItem": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - }, - "anchorNav": { - "label": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - }, - "badge": { - "label": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.025", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.010", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - }, - "breadcrumb": { - "separator": { - "m": { - "value": { - "fontFamily": "{fontFamilies.default}", - "fontWeight": "{fontWeights.400}", - "lineHeight": "{lineHeights.500}", - "fontSize": "{fontSizes.100}" - }, - "type": "typography", - "description": "Style for the slash forward character that separates the breadcrumbs" - } - }, - "currentPage": { - "m": { - "value": { - "fontFamily": "{fontFamilies.default}", - "fontWeight": "{fontWeights.400}", - "lineHeight": "{lineHeights.500}", - "fontSize": "{fontSizes.100}" - }, - "type": "typography", - "description": "Style for the current page text" - } - } - }, - "button": { - "label": { - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - }, - "card": { - "paragraph": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - }, - "cardSelect": { - "title": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - }, - "subtitle": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - }, - "paragraph": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - }, - "footer": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - }, - "datePicker": { - "calendar": { - "date": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - }, - "day": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - }, - "month": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - } - }, - "dialog": { - "title": { - "xs": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.600", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.600", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "ms": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.600", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.600", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "ml": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.600", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.600", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "xl": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.600", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "xxl": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.600", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - }, - "subtitle": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.400", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - }, - "paragraph": { - "xs": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "ms": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "ml": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "xl": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "xxl": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - }, - "drawer": { - "title": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.500", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - }, - "paragraph": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - }, - "flash": { - "text": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - } - }, - "formField": { - "label": { - "xs": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - }, - "hintText": { - "xs": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - }, - "errorMessage": { - "xs": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - }, - "cautionMessage": { - "xs": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - }, - "inputText": { - "xs": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - }, - "dropdownOptions": { - "xs": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - }, - "secondLabel": { - "xs": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - }, - "characterCount": { - "xs": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "lineHeight": "$lineHeights.500", - "fontWeight": "$fontWeights.400", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - }, - "link": { - "text": { - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.025", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "underline", - "textCase": "none" - }, - "type": "typography", - "description": "Small font size, not recommended for use, as not accessible" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "underline", - "textCase": "none" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "underline", - "textCase": "none" - }, - "type": "typography" - } - }, - "textFocus": { - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.025", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography", - "description": "Small font size, not recommended for use, as not accessible" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - }, - "loader": { - "message": { - "xs": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "xl": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - }, - "menu": { - "label": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - }, - "segmentTitle": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - }, - "message": { - "heading": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - }, - "text": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - } - }, - "note": { - "editorName": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0%" - }, - "type": "typography" - } - }, - "date": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - }, - "paragraph": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - }, - "paragraphList": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - }, - "title": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.300", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - } - }, - "pageState": { - "title": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.600", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - }, - "subtitle": { - "m": { - "value": { - "fontFamily": "{fontFamilies.default}", - "fontWeight": "{fontWeights.500}", - "lineHeight": "{lineHeights.500}", - "fontSize": "{fontSizes.300}" - }, - "type": "typography" - } - }, - "paragraph": { - "m": { - "value": { - "fontFamily": "{fontFamilies.default}", - "fontWeight": "{fontWeights.400}", - "lineHeight": "{lineHeights.500}", - "fontSize": "{fontSizes.200}" - }, - "type": "typography" - } - } - }, - "pagination": { - "label": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - }, - "pill": { - "label": { - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.025", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "xl": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - } - }, - "profile": { - "emailText": { - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "ml": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "xl": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.300", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "xxl": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.600", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - }, - "emailLink": { - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "underline", - "textCase": "none" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "underline", - "textCase": "none" - }, - "type": "typography" - }, - "ml": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "underline", - "textCase": "none" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "underline", - "textCase": "none" - }, - "type": "typography" - }, - "xl": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.300", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "underline", - "textCase": "none" - }, - "type": "typography" - }, - "xxl": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.600", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "underline", - "textCase": "none" - }, - "type": "typography" - } - }, - "initials": { - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "uppercase" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.300", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "uppercase" - }, - "type": "typography" - }, - "ml": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.600", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "uppercase" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.700", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "uppercase" - }, - "type": "typography" - }, - "xl": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.900", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "uppercase" - }, - "type": "typography" - }, - "xxl": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.1000", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "uppercase" - }, - "type": "typography", - "description": " " - } - }, - "name": { - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "ml": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.400", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "xl": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.600", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "xxl": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.700", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - }, - "progressTracker": { - "valueLabel": { - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - }, - "sidebar": { - "title": { - "xs": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.400", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.400", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "ms": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.400", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.400", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "ml": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.400", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.400", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "xl": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.400", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - }, - "paragraph": { - "xs": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "ms": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "ml": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "xl": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - }, - "stepFlow": { - "completeLabel": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - }, - "currentLabel": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - }, - "incompleteLabel": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - } - }, - "switch": { - "optionLabel": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.025", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textCase": "uppercase", - "textDecoration": "none" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "uppercase" - }, - "type": "typography" - } - } - }, - "table": { - "headerText": { - "xs": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.050", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "xl": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - }, - "cellText": { - "xs": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.050", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "s": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - }, - "xl": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - }, - "tile": { - "paragraph": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - }, - "tileSubscription": { - "title": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.700", - "lineHeight": "$lineHeights.400", - "fontSize": "$fontSizes.300", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - }, - "paragraph": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - }, - "paragraphBold": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - }, - "price": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.500", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0", - "textDecoration": "none", - "textCase": "none" - }, - "type": "typography" - } - } - }, - "tooltip": { - "text": { - "m": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.100", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - }, - "l": { - "value": { - "fontFamily": "$fontFamilies.default", - "fontWeight": "$fontWeights.400", - "lineHeight": "$lineHeights.500", - "fontSize": "$fontSizes.200", - "letterSpacing": "0%", - "paragraphSpacing": "0px" - }, - "type": "typography" - } - } - } - }, - "opacity": { - "300": { - "value": "0.3", - "type": "opacity" - }, - "600": { - "value": "0.6", - "type": "opacity" - }, - "800": { - "value": "0.8", - "type": "opacity" - } - } - }, - "dashboard/lightMode": { - "meta": { - "name": { - "value": "Dashboard Light-Mode Token Set", - "type": "other" - }, - "public": { - "value": "true", - "type": "other" - } - }, - "background": { - "surface": { - "value": "{origin-color-reference-only.yang.100}", - "type": "color" - }, - "neutral": { - "value": "{origin-color-reference-only.yin.010}", - "type": "color" - } - }, - "text": { - "primary": { - "value": "{origin-color-reference-only.yin.090}", - "type": "color" - }, - "secondary": { - "value": "{colors.yin.055}", - "type": "color" - }, - "tertiary": { - "value": "{colors.yang.100}", - "type": "color" - } - }, - "callout": { - "value": "{origin-color-reference-only.fuchsia.525}", - "type": "color" - }, - "comparative": { - "core": { - "fill-1": { - "value": "{origin-color-reference-only.malachite.525}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.malachite.825}", - "type": "color" - } - }, - "neutral": { - "fill-1": { - "value": "{origin-color-reference-only.gray.525}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.gray.825}", - "type": "color" - } - }, - "primary": { - "positive": { - "fill-1": { - "value": "{origin-color-reference-only.jade.525}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.jade.825}", - "type": "color" - } - }, - "negative": { - "fill-1": { - "value": "{origin-color-reference-only.cherry.525}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.cherry.825}", - "type": "color" - } - } - }, - "secondary": { - "positive": { - "fill-1": { - "value": "{origin-color-reference-only.navy.525}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.navy.825}", - "type": "color" - } - }, - "negative": { - "fill-1": { - "value": "{origin-color-reference-only.terra.525}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.terra.825}", - "type": "color" - } - } - }, - "tertiary": { - "positive": { - "fill-1": { - "value": "{origin-color-reference-only.teal.525}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.teal.825}", - "type": "color" - } - }, - "negative": { - "fill-1": { - "value": "{origin-color-reference-only.amber.525}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.amber.825}", - "type": "color" - } - } - } - }, - "divergent": { - "primary": { - "positive": { - "fill-1": { - "value": "{origin-color-reference-only.jade.525}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.jade.675}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.jade.825}", - "type": "color" - } - }, - "negative": { - "fill-1": { - "value": "{origin-color-reference-only.cherry.525}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.cherry.675}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.cherry.825}", - "type": "color" - } - } - }, - "secondary": { - "positive": { - "fill-1": { - "value": "{origin-color-reference-only.navy.525}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.navy.675}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.navy.825}", - "type": "color" - } - }, - "negative": { - "fill-1": { - "value": "{origin-color-reference-only.terra.525}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.terra.675}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.terra.825}", - "type": "color" - } - } - }, - "tertiary": { - "positive": { - "fill-1": { - "value": "{origin-color-reference-only.teal.525}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.teal.675}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.teal.825}", - "type": "color" - } - }, - "negative": { - "fill-1": { - "value": "{origin-color-reference-only.amber.525}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.amber.675}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.amber.825}", - "type": "color" - } - } - } - }, - "gap": { - "core": { - "border": { - "value": "{origin-color-reference-only.malachite.600}", - "type": "color" - }, - "fill-1": { - "value": "{origin-color-reference-only.malachite.600}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.malachite.150}", - "type": "color" - } - }, - "neutral": { - "border": { - "value": "{origin-color-reference-only.gray.600}", - "type": "color" - }, - "fill-1": { - "value": "{origin-color-reference-only.gray.600}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.gray.150}", - "type": "color" - } - }, - "primary": { - "positive": { - "border": { - "value": "{origin-color-reference-only.jade.600}", - "type": "color" - }, - "fill-1": { - "value": "{origin-color-reference-only.jade.600}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.jade.150}", - "type": "color" - } - }, - "negative": { - "border": { - "value": "{origin-color-reference-only.cherry.600}", - "type": "color" - }, - "fill-1": { - "value": "{origin-color-reference-only.cherry.600}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.cherry.150}", - "type": "color" - } - } - }, - "secondary": { - "positive": { - "border": { - "value": "{origin-color-reference-only.navy.600}", - "type": "color" - }, - "fill-1": { - "value": "{origin-color-reference-only.navy.600}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.navy.150}", - "type": "color" - } - }, - "negative": { - "border": { - "value": "{origin-color-reference-only.terra.600}", - "type": "color" - }, - "fill-1": { - "value": "{origin-color-reference-only.terra.600}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.terra.150}", - "type": "color" - } - } - }, - "tertiary": { - "positive": { - "border": { - "value": "{origin-color-reference-only.teal.600}", - "type": "color" - }, - "fill-1": { - "value": "{origin-color-reference-only.teal.600}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.teal.150}", - "type": "color" - } - }, - "negative": { - "border": { - "value": "{origin-color-reference-only.amber.600}", - "type": "color" - }, - "fill-1": { - "value": "{origin-color-reference-only.amber.600}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.amber.150}", - "type": "color" - } - } - } - }, - "progressive": { - "positive": { - "border": { - "value": "{origin-color-reference-only.jade.900}", - "type": "color" - }, - "fill": { - "value": "{origin-color-reference-only.jade.525}", - "type": "color" - } - }, - "neutral": { - "border": { - "value": "{origin-color-reference-only.navy.900}", - "type": "color" - }, - "fill": { - "value": "{origin-color-reference-only.navy.525}", - "type": "color" - } - }, - "negative": { - "border": { - "value": "{origin-color-reference-only.cherry.900}", - "type": "color" - }, - "fill": { - "value": "{origin-color-reference-only.cherry.525}", - "type": "color" - } - } - }, - "qualitative": { - "fill-1": { - "value": "{origin-color-reference-only.jade.750}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.navy.525}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.cherry.750}", - "type": "color" - }, - "fill-4": { - "value": "{origin-color-reference-only.terra.525}", - "type": "color" - }, - "fill-5": { - "value": "{origin-color-reference-only.gray.525}", - "type": "color" - } - }, - "sequential": { - "core": { - "fill-1": { - "value": "{origin-color-reference-only.malachite.900}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.malachite.825}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.malachite.750}", - "type": "color" - }, - "fill-4": { - "value": "{origin-color-reference-only.malachite.675}", - "type": "color" - }, - "fill-5": { - "value": "{origin-color-reference-only.malachite.600}", - "type": "color" - }, - "fill-6": { - "value": "{origin-color-reference-only.malachite.525}", - "type": "color" - } - }, - "neutral": { - "fill-1": { - "value": "{origin-color-reference-only.gray.900}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.gray.825}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.gray.750}", - "type": "color" - }, - "fill-4": { - "value": "{origin-color-reference-only.gray.675}", - "type": "color" - }, - "fill-5": { - "value": "{origin-color-reference-only.gray.600}", - "type": "color" - }, - "fill-6": { - "value": "{origin-color-reference-only.gray.525}", - "type": "color" - } - }, - "primary": { - "positive": { - "fill-1": { - "value": "{origin-color-reference-only.jade.900}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.jade.825}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.jade.750}", - "type": "color" - }, - "fill-4": { - "value": "{origin-color-reference-only.jade.675}", - "type": "color" - }, - "fill-5": { - "value": "{origin-color-reference-only.jade.600}", - "type": "color" - }, - "fill-6": { - "value": "{origin-color-reference-only.jade.525}", - "type": "color" - } - }, - "negative": { - "fill-1": { - "value": "{origin-color-reference-only.cherry.900}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.cherry.825}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.cherry.750}", - "type": "color" - }, - "fill-4": { - "value": "{origin-color-reference-only.cherry.675}", - "type": "color" - }, - "fill-5": { - "value": "{origin-color-reference-only.cherry.600}", - "type": "color" - }, - "fill-6": { - "value": "{origin-color-reference-only.cherry.525}", - "type": "color" - } - } - }, - "secondary": { - "positive": { - "fill-1": { - "value": "{origin-color-reference-only.navy.900}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.navy.825}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.navy.750}", - "type": "color" - }, - "fill-4": { - "value": "{origin-color-reference-only.navy.675}", - "type": "color" - }, - "fill-5": { - "value": "{origin-color-reference-only.navy.600}", - "type": "color" - }, - "fill-6": { - "value": "{origin-color-reference-only.navy.525}", - "type": "color" - } - }, - "negative": { - "fill-1": { - "value": "{origin-color-reference-only.terra.900}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.terra.825}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.terra.750}", - "type": "color" - }, - "fill-4": { - "value": "{origin-color-reference-only.terra.675}", - "type": "color" - }, - "fill-5": { - "value": "{origin-color-reference-only.terra.600}", - "type": "color" - }, - "fill-6": { - "value": "{origin-color-reference-only.terra.525}", - "type": "color" - } - } - }, - "tertiary": { - "positive": { - "fill-1": { - "value": "{origin-color-reference-only.teal.900}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.teal.825}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.teal.750}", - "type": "color" - }, - "fill-4": { - "value": "{origin-color-reference-only.teal.675}", - "type": "color" - }, - "fill-5": { - "value": "{origin-color-reference-only.teal.600}", - "type": "color" - }, - "fill-6": { - "value": "{origin-color-reference-only.teal.525}", - "type": "color" - } - }, - "negative": { - "fill-1": { - "value": "{origin-color-reference-only.amber.900}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.amber.825}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.amber.750}", - "type": "color" - }, - "fill-4": { - "value": "{origin-color-reference-only.amber.675}", - "type": "color" - }, - "fill-5": { - "value": "{origin-color-reference-only.amber.600}", - "type": "color" - }, - "fill-6": { - "value": "{origin-color-reference-only.amber.525}", - "type": "color" - } - } - } - } - }, - "dashboard/darkMode": { - "meta": { - "name": { - "value": "Dashboard Dark-Mode Token Set", - "type": "other" - }, - "public": { - "value": "true", - "type": "other" - } - }, - "background": { - "surface": { - "value": "{origin-color-reference-only.gray.825}", - "type": "color" - }, - "neutral": { - "value": "{origin-color-reference-only.yang.010}", - "type": "color" - } - }, - "text": { - "primary": { - "value": "{origin-color-reference-only.yang.100}", - "type": "color" - }, - "secondary": { - "value": "{origin-color-reference-only.yang.080}", - "type": "color" - }, - "tertiary": { - "value": "{origin-color-reference-only.yin.090}", - "type": "color" - } - }, - "callout": { - "value": "{origin-color-reference-only.fuchsia.450}", - "type": "color" - }, - "comparative": { - "core": { - "fill-1": { - "value": "{origin-color-reference-only.malachite.075}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.malachite.375}", - "type": "color" - } - }, - "neutral": { - "fill-1": { - "value": "{origin-color-reference-only.gray.075}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.gray.375}", - "type": "color" - } - }, - "primary": { - "positive": { - "fill-1": { - "value": "{origin-color-reference-only.jade.075}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.jade.375}", - "type": "color" - } - }, - "negative": { - "fill-1": { - "value": "{origin-color-reference-only.cherry.075}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.cherry.375}", - "type": "color" - } - } - }, - "secondary": { - "positive": { - "fill-1": { - "value": "{origin-color-reference-only.navy.075}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.navy.375}", - "type": "color" - } - }, - "negative": { - "fill-1": { - "value": "{origin-color-reference-only.terra.075}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.terra.375}", - "type": "color" - } - } - }, - "tertiary": { - "positive": { - "fill-1": { - "value": "{origin-color-reference-only.teal.075}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.teal.375}", - "type": "color" - } - }, - "negative": { - "fill-1": { - "value": "{origin-color-reference-only.amber.075}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.amber.375}", - "type": "color" - } - } - } - }, - "divergent": { - "primary": { - "positive": { - "fill-1": { - "value": "{origin-color-reference-only.jade.150}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.jade.300}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.jade.450}", - "type": "color" - } - }, - "negative": { - "fill-1": { - "value": "{origin-color-reference-only.cherry.150}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.cherry.300}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.cherry.450}", - "type": "color" - } - } - }, - "secondary": { - "positive": { - "fill-1": { - "value": "{origin-color-reference-only.navy.150}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.navy.300}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.navy.450}", - "type": "color" - } - }, - "negative": { - "fill-1": { - "value": "{origin-color-reference-only.terra.150}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.terra.300}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.terra.450}", - "type": "color" - } - } - }, - "tertiary": { - "positive": { - "fill-1": { - "value": "{origin-color-reference-only.teal.150}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.teal.300}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.teal.450}", - "type": "color" - } - }, - "negative": { - "fill-1": { - "value": "{origin-color-reference-only.amber.150}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.amber.300}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.amber.450}", - "type": "color" - } - } - } - }, - "gap": { - "core": { - "border": { - "value": "{origin-color-reference-only.malachite.450}", - "type": "color" - }, - "fill-1": { - "value": "{origin-color-reference-only.malachite.450}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.malachite.075}", - "type": "color" - } - }, - "neutral": { - "border": { - "value": "{origin-color-reference-only.gray.450}", - "type": "color" - }, - "fill-1": { - "value": "{origin-color-reference-only.gray.450}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.gray.075}", - "type": "color" - } - }, - "primary": { - "positive": { - "border": { - "value": "{origin-color-reference-only.jade.450}", - "type": "color" - }, - "fill-1": { - "value": "{origin-color-reference-only.jade.450}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.jade.075}", - "type": "color" - } - }, - "negative": { - "border": { - "value": "{origin-color-reference-only.cherry.450}", - "type": "color" - }, - "fill-1": { - "value": "{origin-color-reference-only.cherry.450}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.cherry.075}", - "type": "color" - } - } - }, - "secondary": { - "positive": { - "border": { - "value": "{origin-color-reference-only.navy.450}", - "type": "color" - }, - "fill-1": { - "value": "{origin-color-reference-only.navy.450}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.navy.075}", - "type": "color" - } - }, - "negative": { - "border": { - "value": "{origin-color-reference-only.terra.450}", - "type": "color" - }, - "fill-1": { - "value": "{origin-color-reference-only.terra.450}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.terra.075}", - "type": "color" - } - } - }, - "tertiary": { - "positive": { - "border": { - "value": "{origin-color-reference-only.teal.450}", - "type": "color" - }, - "fill-1": { - "value": "{origin-color-reference-only.teal.450}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.teal.075}", - "type": "color" - } - }, - "negative": { - "border": { - "value": "{origin-color-reference-only.amber.450}", - "type": "color" - }, - "fill-1": { - "value": "{origin-color-reference-only.amber.450}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.amber.075}", - "type": "color" - } - } - } - }, - "progressive": { - "positive": { - "border": { - "value": "{origin-color-reference-only.jade.075}", - "type": "color" - }, - "fill": { - "value": "{origin-color-reference-only.jade.450}", - "type": "color" - } - }, - "neutral": { - "border": { - "value": "{origin-color-reference-only.navy.075}", - "type": "color" - }, - "fill": { - "value": "{origin-color-reference-only.navy.450}", - "type": "color" - } - }, - "negative": { - "border": { - "value": "{origin-color-reference-only.cherry.075}", - "type": "color" - }, - "fill": { - "value": "{origin-color-reference-only.cherry.450}", - "type": "color" - } - } - }, - "qualitative": { - "fill-1": { - "value": "{origin-color-reference-only.jade.225}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.navy.450}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.cherry.225}", - "type": "color" - }, - "fill-4": { - "value": "{origin-color-reference-only.terra.450}", - "type": "color" - }, - "fill-5": { - "value": "{origin-color-reference-only.gray.450}", - "type": "color" - } - }, - "sequential": { - "core": { - "fill-1": { - "value": "{origin-color-reference-only.malachite.450}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.malachite.375}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.malachite.300}", - "type": "color" - }, - "fill-4": { - "value": "{origin-color-reference-only.malachite.225}", - "type": "color" - }, - "fill-5": { - "value": "{origin-color-reference-only.malachite.150}", - "type": "color" - }, - "fill-6": { - "value": "{origin-color-reference-only.malachite.075}", - "type": "color" - } - }, - "neutral": { - "fill-1": { - "value": "{origin-color-reference-only.gray.450}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.gray.375}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.gray.300}", - "type": "color" - }, - "fill-4": { - "value": "{origin-color-reference-only.gray.225}", - "type": "color" - }, - "fill-5": { - "value": "{origin-color-reference-only.gray.150}", - "type": "color" - }, - "fill-6": { - "value": "{origin-color-reference-only.gray.075}", - "type": "color" - } - }, - "primary": { - "positive": { - "fill-1": { - "value": "{origin-color-reference-only.jade.450}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.jade.375}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.jade.300}", - "type": "color" - }, - "fill-4": { - "value": "{origin-color-reference-only.jade.225}", - "type": "color" - }, - "fill-5": { - "value": "{origin-color-reference-only.jade.150}", - "type": "color" - }, - "fill-6": { - "value": "{origin-color-reference-only.jade.075}", - "type": "color" - } - }, - "negative": { - "fill-1": { - "value": "{origin-color-reference-only.cherry.450}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.cherry.375}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.cherry.300}", - "type": "color" - }, - "fill-4": { - "value": "{origin-color-reference-only.cherry.225}", - "type": "color" - }, - "fill-5": { - "value": "{origin-color-reference-only.cherry.150}", - "type": "color" - }, - "fill-6": { - "value": "{origin-color-reference-only.cherry.075}", - "type": "color" - } - } - }, - "secondary": { - "positive": { - "fill-1": { - "value": "{origin-color-reference-only.navy.450}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.navy.375}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.navy.300}", - "type": "color" - }, - "fill-4": { - "value": "{origin-color-reference-only.navy.225}", - "type": "color" - }, - "fill-5": { - "value": "{origin-color-reference-only.navy.150}", - "type": "color" - }, - "fill-6": { - "value": "{origin-color-reference-only.navy.075}", - "type": "color" - } - }, - "negative": { - "fill-1": { - "value": "{origin-color-reference-only.terra.450}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.terra.375}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.terra.300}", - "type": "color" - }, - "fill-4": { - "value": "{origin-color-reference-only.terra.225}", - "type": "color" - }, - "fill-5": { - "value": "{origin-color-reference-only.terra.150}", - "type": "color" - }, - "fill-6": { - "value": "{origin-color-reference-only.terra.075}", - "type": "color" - } - } - }, - "tertiary": { - "positive": { - "fill-1": { - "value": "{origin-color-reference-only.teal.450}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.teal.375}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.teal.300}", - "type": "color" - }, - "fill-4": { - "value": "{origin-color-reference-only.teal.225}", - "type": "color" - }, - "fill-5": { - "value": "{origin-color-reference-only.teal.150}", - "type": "color" - }, - "fill-6": { - "value": "{origin-color-reference-only.teal.075}", - "type": "color" - } - }, - "negative": { - "fill-1": { - "value": "{origin-color-reference-only.amber.450}", - "type": "color" - }, - "fill-2": { - "value": "{origin-color-reference-only.amber.375}", - "type": "color" - }, - "fill-3": { - "value": "{origin-color-reference-only.amber.300}", - "type": "color" - }, - "fill-4": { - "value": "{origin-color-reference-only.amber.225}", - "type": "color" - }, - "fill-5": { - "value": "{origin-color-reference-only.amber.150}", - "type": "color" - }, - "fill-6": { - "value": "{origin-color-reference-only.amber.075}", - "type": "color" - } - } - } - } - }, - "$themes": [ - { - "id": "0dd57a3b7c158a13c1b04e6e5efd7edeaf12155e", - "name": "DS dash-dark", - "selectedTokenSets": { - "base": "source", - "origin": "source", - "dashboard/darkMode": "enabled" - }, - "$figmaStyleReferences": { - "dashboard-colors.background.surface": "S:b97746dfd13d29f480a7846ef5d914a4dccd6de6,", - "dashboard-colors.background.neutral": "S:16fdc793d512dcdc97d95e776a64de8915c95b7b,", - "dashboard-colors.text.primary": "S:85a55cb5da6b9d0db4a7ef86034cf913e2c640d5,", - "dashboard-colors.text.secondary": "S:fd06ce6a89b6d36549faefc1b8ec5deb77f9816a,", - "dashboard-colors.callout": "S:861abf958fc4efe66312d71e0967fc7cc7389e37,", - "dashboard-colors.comparative.core.fill-1": "S:7185ad1e52d643f83d9ebe07450ed0de5c4479ad,", - "dashboard-colors.comparative.core.fill-2": "S:ce8cb96383e5a57e1321be12df7bf7f27d9a30e2,", - "dashboard-colors.comparative.neutral.fill-1": "S:6f1079ab3bbf5ae21cb21cd940199fb5982d49cf,", - "dashboard-colors.comparative.neutral.fill-2": "S:266cb4ea9fb22da9d056e70877aa4907e71ed174,", - "dashboard-colors.comparative.primary.positive.fill-1": "S:997c3d2aaf2f96c31a0997cff2833d7120305499,", - "dashboard-colors.comparative.primary.positive.fill-2": "S:e48387f3900450994b1292c3b3d84f09de2e0618,", - "dashboard-colors.comparative.primary.negative.fill-1": "S:cdd9c469c5681f4105b86a7d476758f65b988135,", - "dashboard-colors.comparative.primary.negative.fill-2": "S:0a7ecc7e430782462c6dbed7e7aa10712ed84489,", - "dashboard-colors.comparative.secondary.positive.fill-1": "S:5507bff9ae96a032cb7cfa3e265ea3c0dbfb0449,", - "dashboard-colors.comparative.secondary.positive.fill-2": "S:c6252becdf7eaf50f6328bf184138335739ffe96,", - "dashboard-colors.comparative.secondary.negative.fill-1": "S:e6e3f9e772e5fdbb648080cf7dbcc26c65ec40bb,", - "dashboard-colors.comparative.secondary.negative.fill-2": "S:38869fddbb989e872bb1df989b94fe55c8a6f029,", - "dashboard-colors.comparative.tertiary.positive.fill-1": "S:6109ef94edb37955759d574249136c8da1fb07b3,", - "dashboard-colors.comparative.tertiary.positive.fill-2": "S:676bd6d8dbda3429c6536b453458ad13383a975a,", - "dashboard-colors.comparative.tertiary.negative.fill-1": "S:759daddfef9946d050c55309dfd2377fa417b255,", - "dashboard-colors.comparative.tertiary.negative.fill-2": "S:a2037ca436af5fb4d014afc3bc2b8242c4b32a73,", - "dashboard-colors.divergent.primary.positive.fill-1": "S:8b5b58715727debba88ea9e82626495969680c74,", - "dashboard-colors.divergent.primary.positive.fill-2": "S:d775b11200c560f578c6a3b2e52343f361785341,", - "dashboard-colors.divergent.primary.positive.fill-3": "S:c2c577f285ae830a5d59b2ca08fcf0f4960475f3,", - "dashboard-colors.divergent.primary.negative.fill-1": "S:6d0899102996d44331fb677837213872f604907c,", - "dashboard-colors.divergent.primary.negative.fill-2": "S:99b0b99c8f77f9dee0733e37f376cc4c56941805,", - "dashboard-colors.divergent.primary.negative.fill-3": "S:97f680fb65ebdbd3fe273366cb2aec2c7a87f725,", - "dashboard-colors.divergent.secondary.positive.fill-1": "S:fdcf2b9943f1c8d998be8b03c4b47cc4dc947aa1,", - "dashboard-colors.divergent.secondary.positive.fill-2": "S:abeafa66404adb8beec3083a9c516ff5f9a98ee6,", - "dashboard-colors.divergent.secondary.positive.fill-3": "S:eaaf59d07b4d40c19ea058a6ac318a2e9b4b3133,", - "dashboard-colors.divergent.secondary.negative.fill-1": "S:1431fa1324f38f3d5dcdd5e7c9dd459de5ea3f3e,", - "dashboard-colors.divergent.secondary.negative.fill-2": "S:723a67fe570e8dd0c0964ad605100bc28d3c2468,", - "dashboard-colors.divergent.secondary.negative.fill-3": "S:4125954ea70aab3d9db1dfa6d81350d94ec7518d,", - "dashboard-colors.divergent.tertiary.positive.fill-1": "S:45a2749b2c363d61665cb43b118f2e5e6c4c54df,", - "dashboard-colors.divergent.tertiary.positive.fill-2": "S:64f806b5b29d2805ea91d21e22cb8308893a0e9b,", - "dashboard-colors.divergent.tertiary.positive.fill-3": "S:702adb19fc2a2138ee7878af8aa3dca38952770a,", - "dashboard-colors.divergent.tertiary.negative.fill-1": "S:6601ae9d484abf493d3196ae9221aff1aa7d5525,", - "dashboard-colors.divergent.tertiary.negative.fill-2": "S:7c450d8b6168286ffe2ae31842692335a805790b,", - "dashboard-colors.divergent.tertiary.negative.fill-3": "S:8856fdb53f81f8d09122c335fe28f8d8ba929eef,", - "dashboard-colors.gap.core.border": "S:26036fa3f633ccd9c70560bc706956e8bb5952f0,", - "dashboard-colors.gap.core.fill": "S:6acbb2ec09543306802cdf0643c99f6edee57122,", - "dashboard-colors.gap.neutral.border": "S:308154974dd553cc0873cce0c31091ec37a9070d,", - "dashboard-colors.gap.neutral.fill": "S:805b534ae1e03f15ac6b6a6c73c16b217ad62680,", - "dashboard-colors.gap.primary.positive.border": "S:24c0c40a55e1c456d84e1c7775a5a691573aca98,", - "dashboard-colors.gap.primary.positive.fill": "S:54c65d8c9c33a81b978b4fdcea980b95faa5db17,", - "dashboard-colors.gap.primary.negative.border": "S:4d38602b1dd8f13ffad6689e6bed780690ac18e7,", - "dashboard-colors.gap.primary.negative.fill": "S:eb5726689ae3aed5c19129e9a07d3b5139b4dab7,", - "dashboard-colors.gap.secondary.positive.border": "S:f781984d58d81d959733f64391b767405cf37212,", - "dashboard-colors.gap.secondary.positive.fill": "S:3050c654d707a15b817e02a474ff34d51e9245c4,", - "dashboard-colors.gap.secondary.negative.border": "S:5922577c9a50fb0cb6cd30c7f28085bb25c1ab20,", - "dashboard-colors.gap.secondary.negative.fill": "S:7573d9218540704fec94d4cb483cd02aabc5502b,", - "dashboard-colors.gap.tertiary.positive.border": "S:8a7d05779180d59ae8f06bbf81b02f192ecc21b2,", - "dashboard-colors.gap.tertiary.positive.fill": "S:52d99262b71ca5cc6fd0cd4c3fc3a33e684241b4,", - "dashboard-colors.gap.tertiary.negative.border": "S:9c6fec1f595ebf29712509b52535a1b3f33a65c9,", - "dashboard-colors.gap.tertiary.negative.fill": "S:56f991dea582ca7c20e3dc1d636accf246929fb8,", - "dashboard-colors.progressive.positive.border": "S:950077b7ce4b23b19484b4592a695e8767151736,", - "dashboard-colors.progressive.positive.fill": "S:bd5a0c800c1d09063bfc6512165ba1433cd5af86,", - "dashboard-colors.progressive.neutral.border": "S:57972ff430bf90da76729ffa1962fd240de2b8b6,", - "dashboard-colors.progressive.neutral.fill": "S:fa1df4a2b34952bfa7e7804e0823002342789a96,", - "dashboard-colors.progressive.negative.border": "S:ce50222dedaf54a202a99fcf6e9fd4d7488b294c,", - "dashboard-colors.progressive.negative.fill": "S:e39aa4aae3cb60f7df7cc0ccfbd3ca2e91471be3,", - "dashboard-colors.qualitative.fill-1": "S:477f1bd4a351394f5badc1e2ad09bb4dae5787af,", - "dashboard-colors.qualitative.fill-2": "S:fd90f6fecc984394352bcdfea4972e5f1fee8dd7,", - "dashboard-colors.qualitative.fill-3": "S:bd3acdf7455895822608d5663267057aa19015a3,", - "dashboard-colors.qualitative.fill-4": "S:3922f7ca69deb2c6b5de981c062c357b9c7ccc25,", - "dashboard-colors.qualitative.fill-5": "S:252b9d568e5a791e2d730458b071e6c7977e8270,", - "dashboard-colors.sequential.core.fill-1": "S:74e49cf501f2bd1ff26c96e0f9f3eea6416f7d63,", - "dashboard-colors.sequential.core.fill-2": "S:d01c56fb5efd2ec625b29d80ac06acccab45ec41,", - "dashboard-colors.sequential.core.fill-3": "S:37798bd19fd7d1246445c8fce68ef181a5b46756,", - "dashboard-colors.sequential.core.fill-4": "S:ad729595f8ac4708ff3b488c94740c06b8fd448b,", - "dashboard-colors.sequential.core.fill-5": "S:d7c315da3a1f566c39bd0c3347822cd1ca167ea0,", - "dashboard-colors.sequential.core.fill-6": "S:9590fd9613c7ef764f2f3277925430395add34b1,", - "dashboard-colors.sequential.neutral.fill-1": "S:5a2bee37e9bb6113f3c5737750fdb3019da64826,", - "dashboard-colors.sequential.neutral.fill-2": "S:d063e90862f6b12114cad80aea14fe27bc8499a8,", - "dashboard-colors.sequential.neutral.fill-3": "S:074653f4cc9568d68ba79b184b4696e31fbd8678,", - "dashboard-colors.sequential.neutral.fill-4": "S:b50bb633ef2ba176babdf82c8d79eaa43626fa42,", - "dashboard-colors.sequential.neutral.fill-5": "S:cf658addc2f4bf7cc679cdbb439ee1dafd8d92cc,", - "dashboard-colors.sequential.neutral.fill-6": "S:6203cd4e615d3cfbc49aa8154c79dd47a47d0013,", - "dashboard-colors.sequential.primary.positive.fill-1": "S:5e8936cf556d967e75da0f1290319e4d93aabe27,", - "dashboard-colors.sequential.primary.positive.fill-2": "S:306e78fc6fb55b61607ce16f23cd3a0e4487bbcd,", - "dashboard-colors.sequential.primary.positive.fill-3": "S:ba18ebb91499a19400b28269c0f0d3e05a7327df,", - "dashboard-colors.sequential.primary.positive.fill-4": "S:61541068cfa1edacba7985a73fcb6b6b5767583b,", - "dashboard-colors.sequential.primary.positive.fill-5": "S:deef728692d1d38f54c6175c560dd8d47b94b6c8,", - "dashboard-colors.sequential.primary.positive.fill-6": "S:9f27a3cd70336fee69a999de833e37569d6d08f1,", - "dashboard-colors.sequential.primary.negative.fill-1": "S:8fbbca5876c84f1ace7254dc21770d23dc90fa9c,", - "dashboard-colors.sequential.primary.negative.fill-2": "S:90383728a9325cc5c17286a4e0c0662d16d7f7c1,", - "dashboard-colors.sequential.primary.negative.fill-3": "S:b64c303ff33bb8d642fa95d8a7e6e943a2ab77d4,", - "dashboard-colors.sequential.primary.negative.fill-4": "S:335dd3ab65d7314cca3cd9ddf840853094440a7c,", - "dashboard-colors.sequential.primary.negative.fill-5": "S:878bed9072a2d273f20d78b8016f04fc94d4b486,", - "dashboard-colors.sequential.primary.negative.fill-6": "S:5fefcb8aed94a80c9dfd4a94ba79f0561e918463,", - "dashboard-colors.sequential.secondary.positive.fill-1": "S:d757870e76d4e8b88c0a1addc76ed4c562424b17,", - "dashboard-colors.sequential.secondary.positive.fill-2": "S:8ada21bd62553b371fda03ebddc8dacf00dea10e,", - "dashboard-colors.sequential.secondary.positive.fill-3": "S:a3de0c1daa031f39ca30ef248147618d694b73cd,", - "dashboard-colors.sequential.secondary.positive.fill-4": "S:96575e746b40e7a66d8bb47d737c782e35c74273,", - "dashboard-colors.sequential.secondary.positive.fill-5": "S:ff0301cdf1b54ee5e5052ec4d33a9bd6f761d4af,", - "dashboard-colors.sequential.secondary.positive.fill-6": "S:3d8d0824b43a853db15de70d43026f0b5b72e803,", - "dashboard-colors.sequential.secondary.negative.fill-1": "S:ca2739f649f995e73ac02f5a3a73a5a90223aad4,", - "dashboard-colors.sequential.secondary.negative.fill-2": "S:e333194c4ba2d6a7ea8e86b56f0875f6162cd151,", - "dashboard-colors.sequential.secondary.negative.fill-3": "S:77785347ce2d454d3c3227fb20521152b5c99f0a,", - "dashboard-colors.sequential.secondary.negative.fill-4": "S:ba766e0a29e783151bda0bfdc51731b25fadb2bb,", - "dashboard-colors.sequential.secondary.negative.fill-5": "S:c535ddcba53e158793f754c36ae7793986f4b91d,", - "dashboard-colors.sequential.secondary.negative.fill-6": "S:ef0abc69c8c24e2b7bbab9679a9587d840043019,", - "dashboard-colors.sequential.tertiary.positive.fill-1": "S:a29a7caf2edb1c1b8287ee5eb86155f36c08daec,", - "dashboard-colors.sequential.tertiary.positive.fill-2": "S:824c2a3c085139fa399c0eb21c147bec80d6ac4d,", - "dashboard-colors.sequential.tertiary.positive.fill-3": "S:93ff8c5fc10fcb1c9688b9bd8959eda6beb4bd8a,", - "dashboard-colors.sequential.tertiary.positive.fill-4": "S:0cb43fe92c9bcab12b511eb5ef441ddc4892860c,", - "dashboard-colors.sequential.tertiary.positive.fill-5": "S:8d76a080ef447ba9514b0ad870f5abe8ccf3db62,", - "dashboard-colors.sequential.tertiary.positive.fill-6": "S:17d183ead53db80f4db355bd01080357041f23d2,", - "dashboard-colors.sequential.tertiary.negative.fill-1": "S:75e34d2b7df8a3328c294183d003c23a4138c574,", - "dashboard-colors.sequential.tertiary.negative.fill-2": "S:290dc6c5f06ccac96a166ac5106d19408f013ef7,", - "dashboard-colors.sequential.tertiary.negative.fill-3": "S:85f6dc709bb91a13803442daaa4302c43d506deb,", - "dashboard-colors.sequential.tertiary.negative.fill-4": "S:5323c38ef9f20259a2fb31679cf866e611410c3f,", - "dashboard-colors.sequential.tertiary.negative.fill-5": "S:051b1efda2877d9c86a50fd04a4adef206b29d58,", - "dashboard-colors.sequential.tertiary.negative.fill-6": "S:227017b3d4cb93bbf40e2e8248e92716c460d476,", - "background.surface": "S:f8717fbdad6b607e82ce04b59388fe71dba12897,", - "background.neutral": "S:dd5bca3a15108806f632704ca9c920478ef4c181,", - "text.primary": "S:682b644c4cf2f8310a629506082aab69e0568437,", - "callout": "S:f7f56c02d554544d4fd494c3a7e35305df2bf31c,", - "comparative.core.fill-1": "S:d7302ebfae6e30813ab1371a2108ddef9d882b45,", - "comparative.core.fill-2": "S:df24121696c8dd21236493348e83f731c58bc57c,", - "comparative.neutral.fill-1": "S:f2f9c82bcd2ec4face64ee175c5a2458e5269097,", - "comparative.neutral.fill-2": "S:1069dc65de7539e97a57b133ec91bbc396c9e76e,", - "comparative.primary.positive.fill-1": "S:01c1e992d90c3746d7957644d85111885d88924c,", - "comparative.primary.positive.fill-2": "S:2010d697da4c0695e0bddae293ec1cb813f56def,", - "comparative.primary.negative.fill-1": "S:24e5b235ea6f02e72d4cc77245ec316eeba1c79f,", - "comparative.primary.negative.fill-2": "S:df0e1eaaa2bb60bbcaf060a0aef4a4b5055a7b0b,", - "comparative.secondary.positive.fill-1": "S:8174010770199b193a7b1b64c75d188cfc077307,", - "comparative.secondary.positive.fill-2": "S:67535ead36e15b16373daf49221598ec8584e3a7,", - "comparative.secondary.negative.fill-1": "S:107fe69ef0598f1d25a522071aadbf56c9d2bdb3,", - "comparative.secondary.negative.fill-2": "S:96f389a1896df79c76dc8fb82ce30fb4f977939b,", - "comparative.tertiary.positive.fill-1": "S:c788ccd3b0b1c9006928690082e3dd6614c0dd03,", - "comparative.tertiary.positive.fill-2": "S:c1ba9c6cd9a56bd389536770f18015f3ccf3641e,", - "comparative.tertiary.negative.fill-1": "S:8ea45e3ca4fbb2082697a628be8a07a106053a82,", - "comparative.tertiary.negative.fill-2": "S:a16f62b2f05f96f8a989039f8e8e0e404a402839,", - "divergent.primary.positive.fill-1": "S:da86cc88f6df0d3b006c0557507c29c2be5f37e4,", - "divergent.primary.positive.fill-2": "S:eb0229c796016b4381e2fefd5dde549172c4e0f9,", - "divergent.primary.positive.fill-3": "S:fa9ae7c47bdf16066edf1101b9d95adfcb7dfa37,", - "divergent.primary.negative.fill-1": "S:20f451270c0ca50a3412cca661e711231a2f4223,", - "divergent.primary.negative.fill-2": "S:4befef01dc1669a9c3335e9754dcf28f5178d10e,", - "divergent.primary.negative.fill-3": "S:6b60e5ae00815194184c5ac9ce37bbeb0d5bcf7e,", - "divergent.secondary.positive.fill-1": "S:90dca75d0f1e31a8774d1f7ce4eb48a3a35fc19b,", - "divergent.secondary.positive.fill-2": "S:ae9884a8a61635b4401c342393682e3b93d3cee3,", - "divergent.secondary.positive.fill-3": "S:6b159878eacbeb4cca34eb7b39f67b130bb71c77,", - "divergent.secondary.negative.fill-1": "S:a8c790ca52776a39ba0e33da125ce2ce2cd1ed8e,", - "divergent.secondary.negative.fill-2": "S:81945b090f6ba30bf89a58dec074439d893902cf,", - "divergent.secondary.negative.fill-3": "S:79879360b7fdf26db5d958da72725207e6e6320a,", - "divergent.tertiary.positive.fill-1": "S:0c92de43af75ae1c133ef8b56eea103d23f7e596,", - "divergent.tertiary.positive.fill-2": "S:f7c7c13796577a5157e22f41f70af4c30e237fba,", - "divergent.tertiary.positive.fill-3": "S:7f30db35369f594a6ed16c4f9bfdd7dbd14a0459,", - "divergent.tertiary.negative.fill-1": "S:e0b00db773ca3f35635d555e8d63e480b27f19d2,", - "divergent.tertiary.negative.fill-2": "S:50a295ec085764180ced15459a88dc22a7d8c39d,", - "divergent.tertiary.negative.fill-3": "S:4946aec8bd342974a16ab92b3956a29c38c8c1fb,", - "gap.core.border": "S:9a712053df5df8fff04346a618374011e4594c41,", - "gap.neutral.border": "S:239b9d1e896335e105b356488fa12abe0a4fc079,", - "gap.primary.positive.border": "S:7b0e7f3bc4d9abd94bfcb9dbf707d155128b34c9,", - "gap.primary.negative.border": "S:3f03560c44944e4756e45b58feb4b340354ac419,", - "gap.secondary.positive.border": "S:75be92df1223415b93723cf4c2f009d689f57e2c,", - "gap.secondary.negative.border": "S:f1a80ab54edf4711d92ed985563de140bef55441,", - "gap.tertiary.positive.border": "S:69122e860a9355a2d7816ccdf01f4d7c3533bd2b,", - "gap.tertiary.negative.border": "S:fded002c0538533c0eeeac089e4237ba8732c55e,", - "progressive.positive.border": "S:adcc2673796a01e78b539efce3e31d14d8a905c4,", - "progressive.positive.fill": "S:5c23d10e36282950e2ec17d727472c6719266037,", - "progressive.neutral.border": "S:f433dd6c6be866d3d4a7801a6c8f13ad52e6efe7,", - "progressive.neutral.fill": "S:f24576bf463135c372d718a1341b45b755f67606,", - "progressive.negative.border": "S:43c3c68ff5dc6f33fac128cc9aab0f1b73df2f60,", - "progressive.negative.fill": "S:b6107b24e5538e52c278b1024a42a87de05543bf,", - "qualitative.fill-1": "S:1a521b6fc0c3aedc511459fb56956625613638d6,", - "qualitative.fill-2": "S:99b11764394d4e5ff61e65435d92286cdc9309aa,", - "qualitative.fill-3": "S:09b6d1b98e726b02f99a2f94eec128186f1e3ec3,", - "qualitative.fill-4": "S:39b54775f71a2d7cb084a1c79a2041793375e9f7,", - "qualitative.fill-5": "S:7a9bc98c21cabd9046f52344678a88fa79f1385f,", - "sequential.core.fill-1": "S:ac841beb6b6e486c9da2d2d2fcd32948ca7fe4c7,", - "sequential.core.fill-2": "S:dfb6e6064d82bd28d83ff93c67121d24cbbe4d15,", - "sequential.core.fill-3": "S:6705082229d161cfee8b2a5e0666281669ef1809,", - "sequential.core.fill-4": "S:8d2547990e0197809ad46c4556871c6d875ca9b6,", - "sequential.core.fill-5": "S:11952c105b9b0a4003c78aae729c05976d1282f9,", - "sequential.core.fill-6": "S:de1502fb1f0d57fa8e6a557635c99dad10465578,", - "sequential.neutral.fill-1": "S:6555c5320d9bc3155cba250d35d4a1f45755a6b6,", - "sequential.neutral.fill-2": "S:c52064460b991c2814e82c5e3a7a684bbbe5fa19,", - "sequential.neutral.fill-3": "S:c1033d36ef1464ff3bfe7095715dc70f51f325bd,", - "sequential.neutral.fill-4": "S:91a96ea232aa41d91040b3dc95eea354db91c14e,", - "sequential.neutral.fill-5": "S:3ac0ea2a63b0067dd2f879357f59ef9d3a3293a2,", - "sequential.neutral.fill-6": "S:4682fc07b7e4da31c96a4da01c86e376ea012c87,", - "sequential.primary.positive.fill-1": "S:1fd10a9789c635eb2bff9896528b895afc041c5b,", - "sequential.primary.positive.fill-2": "S:fd5418b3b71d7017dc75f666a45148ee8a44a51c,", - "sequential.primary.positive.fill-3": "S:f3c31ac8192aa8e50ce0fb9060ffa7b45339a3bc,", - "sequential.primary.positive.fill-4": "S:ae668619fe8919cbae180ec78790d7483196aade,", - "sequential.primary.positive.fill-5": "S:73830bb491b01a4382873b9657978bcb4c6787f9,", - "sequential.primary.positive.fill-6": "S:b6ada0725f6d53240e5b5e2b9a37e90274a2afec,", - "sequential.primary.negative.fill-1": "S:8afb5a76636bad468c178b4cc20a9fc0c884f308,", - "sequential.primary.negative.fill-2": "S:ff73e0c136523eefcc268bf192a18fe04bab3fca,", - "sequential.primary.negative.fill-3": "S:b84202d686ce2a300c219ddd511fa85f977093de,", - "sequential.primary.negative.fill-4": "S:3ee463a9d67086df637efb79a344cfa0ca75ebab,", - "sequential.primary.negative.fill-5": "S:f162deadd87d4d8e3a6273a8f139674d02bdea93,", - "sequential.primary.negative.fill-6": "S:9b90de279b127f77844eb6e7aa8f1b5ff96dd7a7,", - "sequential.secondary.positive.fill-1": "S:5e1f16e15fc38fbdb0a6615c78f737a692872bd7,", - "sequential.secondary.positive.fill-2": "S:3b8ec3456b65143b180c530e017a0db7e2dec5c2,", - "sequential.secondary.positive.fill-3": "S:883c49d3b065ee3737d526dba9840a1e6e1f449a,", - "sequential.secondary.positive.fill-4": "S:84a4c3991aec276d296c52cc8994dbbebd9a0c13,", - "sequential.secondary.positive.fill-5": "S:73ca8f0446080623ec44d20d1824b39a3fcf6598,", - "sequential.secondary.positive.fill-6": "S:cbaa905fd70e1f4eec78c1bcbbb7da8e0c9de1c7,", - "sequential.secondary.negative.fill-1": "S:c295a57302edb28ba441e4885c0f8bcca7f18470,", - "sequential.secondary.negative.fill-2": "S:61dfd17548dd3e99eadfb90aea922f15dc1fc362,", - "sequential.secondary.negative.fill-3": "S:5fa1965f52a7aa99af20200df1121a62581197f8,", - "sequential.secondary.negative.fill-4": "S:504d7bffabd1fd41a274a4c0dbd0d0e66ff5a3a4,", - "sequential.secondary.negative.fill-5": "S:22152e420f650515e9bf307d07502a413090dc73,", - "sequential.secondary.negative.fill-6": "S:da582e9c998ba46bf01f017d53a3318deba3222b,", - "sequential.tertiary.positive.fill-1": "S:2642c4fdaa2bc28d5037b77ff00502e88e53c160,", - "sequential.tertiary.positive.fill-2": "S:5554ba39beff9d7aaf8d2fa469c9c785f62f6d67,", - "sequential.tertiary.positive.fill-3": "S:2ef5c7bae52b6fcd0dc7fa9911bcc0b908f6458f,", - "sequential.tertiary.positive.fill-4": "S:b2b9c9c0d0ef889bc2ffa5052363de643439252a,", - "sequential.tertiary.positive.fill-5": "S:e2e31701f6bf29af5c2645be06113260ae46db1a,", - "sequential.tertiary.positive.fill-6": "S:fdb59981c2032784205ef40e35ed60915b10e184,", - "sequential.tertiary.negative.fill-1": "S:b24994fd32032a0926ffded8b5577825ff28b43b,", - "sequential.tertiary.negative.fill-2": "S:99fa0781cc208d43aa67b0a6d397118bb57ff84e,", - "sequential.tertiary.negative.fill-3": "S:a905a30e59a78ed62c566abcbc83361015f10317,", - "sequential.tertiary.negative.fill-4": "S:f6034f45ad28e24941df90c6760716fbc0bb6f06,", - "sequential.tertiary.negative.fill-5": "S:3dc65161b15c218365aaf2b6b1e04b91eb206ba7,", - "sequential.tertiary.negative.fill-6": "S:cd3b97c403c8e2fffcd9a9a59cf7ac519ef406f3,", - "text.secondary": "S:aecbab17257a04b80a39f3fa042bb00bdb74cf1b,", - "gap.primary.positive.fill-2": "S:f92e1752e245d194bdf63e274a141f1b3a8192be,", - "gap.core.fill-2": "S:dcef9415adc6812dfee212c43fcf4c7853714f22,", - "gap.neutral.fill-2": "S:84c49a77dbd46740deb6efa6b6b136672eab0a73,", - "gap.primary.negative.fill-2": "S:685b0b9174b75c31ec07140e16fc9733103d341d,", - "gap.secondary.positive.fill-2": "S:1f4ef3154d07e2737475d9dc0747f363bf63491f,", - "gap.secondary.negative.fill-2": "S:4ab0665028031741dd06fdaf47cdbef7bc2aa224,", - "gap.tertiary.positive.fill-2": "S:ab6b5a2f84eacadebf53b36e3d8d2bf92275ab48,", - "gap.tertiary.negative.fill-2": "S:2b43af724d9881cb1cc170ae8653ef8756b95c3e,", - "text.tertiary": "S:bb57b8b317e069298714b9c132a09a6b888dfcda,", - "gap.core.fill-1": "S:7db4f040b49c3e69e109a168f3108043ddc90caf,", - "gap.neutral.fill-1": "S:09694f69e6c913c1b0ed509ad28a0066aaefb513,", - "gap.primary.positive.fill-1": "S:8d8b6e95819ff4aee78d51a36156058d64ba1794,", - "gap.primary.negative.fill-1": "S:6260ed915285a3d3c65c6ca64e0ddf701f48a7ec,", - "gap.secondary.positive.fill-1": "S:462748d461b4f5bbf846b1be3c5be1ad3ff29e87,", - "gap.secondary.negative.fill-1": "S:ca120fbc22714d499bc1bbf3378b66531a2595c1,", - "gap.tertiary.positive.fill-1": "S:d87ff25b76e6f1d0b7f13293345db88ab489e4ea,", - "gap.tertiary.negative.fill-1": "S:d5632d7675fcb0beafe8e51f6ebc23731562ebb2," - } - }, - { - "id": "8b5802d33b02d0ad8af51c53cf9136d140879652", - "name": "DS dash-light", - "selectedTokenSets": { - "base": "source", - "origin": "source", - "dashboard/lightMode": "enabled" - }, - "$figmaStyleReferences": { - "dashboard-colors.background.surface": "S:6175de842da454a927b994f38590cad606e98fdd,", - "dashboard-colors.background.neutral": "S:3e118f83898b6621e8b81ac240d2a4a975efdd5e,", - "dashboard-colors.text.primary": "S:32b5489fd5bae16f3339e004fff20605bea2491b,", - "dashboard-colors.text.secondary": "S:5fddae8965d6a43a54b008a094cf80a06a7dd993,", - "dashboard-colors.callout": "S:1c48168ce64220b965031499644ba16158dfcebd,", - "dashboard-colors.comparative.core.fill-1": "S:3ae0e3edd654fd69daf4f39faecace056e65287f,", - "dashboard-colors.comparative.core.fill-2": "S:fe189784df188df9baa033b96a9f18e1892acb59,", - "dashboard-colors.comparative.neutral.fill-1": "S:dbbe982bd2ba9f9e8943fa107712743b2b19ccfa,", - "dashboard-colors.comparative.neutral.fill-2": "S:fec0889144554cbf0e006080a213e47fe3e49381,", - "dashboard-colors.comparative.primary.positive.fill-1": "S:41ccedcdfa88ffd2607be7f47faca52ad58ff417,", - "dashboard-colors.comparative.primary.positive.fill-2": "S:74f5f8b435018bd55b846d71e95c50862396249c,", - "dashboard-colors.comparative.primary.negative.fill-1": "S:f87ded6f89835be77d2e4149cb4178869314ea3b,", - "dashboard-colors.comparative.primary.negative.fill-2": "S:deecf1648ef7ecca2d35440c4e43a0bb2b55e04a,", - "dashboard-colors.comparative.secondary.positive.fill-1": "S:6dfd1a06bc5ae4501c96d94f1fba4169d1edeb43,", - "dashboard-colors.comparative.secondary.positive.fill-2": "S:20f2e069279b37ffa9b0520ac915a6fdd5f673ed,", - "dashboard-colors.comparative.secondary.negative.fill-1": "S:f32a2aa67e361303ad49c58224e7237c83bda7b9,", - "dashboard-colors.comparative.secondary.negative.fill-2": "S:6320470f8f12f0c14be16d8dd4d7d3a2dcbde148,", - "dashboard-colors.comparative.tertiary.positive.fill-1": "S:cbadf2cab68aec37b99a0282e09fa3ee720f6aa5,", - "dashboard-colors.comparative.tertiary.positive.fill-2": "S:fe191022f813c60ead5db9c75a954176c12c1448,", - "dashboard-colors.comparative.tertiary.negative.fill-1": "S:074f84156efcad0bfdda651955f328da38c5ad02,", - "dashboard-colors.comparative.tertiary.negative.fill-2": "S:0a5dbc85889a7aa9fa9cc18c697f5d332b861aa1,", - "dashboard-colors.divergent.primary.positive.fill-1": "S:a3e35ae52b46ea81b1115660573b90916d62ff18,", - "dashboard-colors.divergent.primary.positive.fill-2": "S:f429eb09fc7c0b2ad1d7865bed5ee6a89c4d05cd,", - "dashboard-colors.divergent.primary.positive.fill-3": "S:2005c8640dfcd5ac0ff96a15cbbe8341453cf280,", - "dashboard-colors.divergent.primary.negative.fill-1": "S:8741338c8d2517b4d1850942f32a0d61efceb3ac,", - "dashboard-colors.divergent.primary.negative.fill-2": "S:1d514368c95f99fa2223f9949b14b7a4e6915c72,", - "dashboard-colors.divergent.primary.negative.fill-3": "S:df694f92b58199f5c9073fdc870d0f69a678ebd5,", - "dashboard-colors.divergent.secondary.positive.fill-1": "S:775fa14295cc7e0ea63aca231c57792326512da0,", - "dashboard-colors.divergent.secondary.positive.fill-2": "S:deb630cee601dbaa642c790463fbc8c4f400996a,", - "dashboard-colors.divergent.secondary.positive.fill-3": "S:7697abecf8296d677a228a6ec1a2c6d851eafe6f,", - "dashboard-colors.divergent.secondary.negative.fill-1": "S:b7a62459f5833fb8e8ee6c08d7a4182fec5e8d74,", - "dashboard-colors.divergent.secondary.negative.fill-2": "S:60ba243b1203a69f9be4814bd2d1719f100015e3,", - "dashboard-colors.divergent.secondary.negative.fill-3": "S:8bdf7ddfdf5baad6883283b492c8663c2efc3bc1,", - "dashboard-colors.divergent.tertiary.positive.fill-1": "S:0886055b0bcd892bf9188538a70702e3006ee134,", - "dashboard-colors.divergent.tertiary.positive.fill-2": "S:73c4d52be9c51ddc1ec0e61a1a7bc19c995e401a,", - "dashboard-colors.divergent.tertiary.positive.fill-3": "S:299a1e2911ddff52c02cb970875c220906a94faa,", - "dashboard-colors.divergent.tertiary.negative.fill-1": "S:63d560f3afdfaf21885503f31e5647e5782eec4f,", - "dashboard-colors.divergent.tertiary.negative.fill-2": "S:d32e38d4ef535d054d66cd341ddee6ffbda28db4,", - "dashboard-colors.divergent.tertiary.negative.fill-3": "S:d6799114e4e3a21e3ea35a0b7a6cc2660a19ceb9,", - "dashboard-colors.gap.core.border": "S:0f294e72a3a69b59e0ce7e3388dd91e082cae1bd,", - "dashboard-colors.gap.core.fill": "S:5badce1c1a4f3253c44c4ebb00c9d56626e0dd2c,", - "dashboard-colors.gap.neutral.border": "S:5262e92f37632f29e00000f13cd4d32b3cb5d218,", - "dashboard-colors.gap.neutral.fill": "S:aaee7656c7e9a8758f20b8cecc73921a812418fb,", - "dashboard-colors.gap.primary.positive.border": "S:65bdc5cbba5bcf77e292dbe97d909c5fc7e993a2,", - "dashboard-colors.gap.primary.positive.fill": "S:96ded9c6095cb2ca5ea0822f8ad1e3ea89cbe9af,", - "dashboard-colors.gap.primary.negative.border": "S:f7bf31ca032c6cefa7f12dba223857219a9efb33,", - "dashboard-colors.gap.primary.negative.fill": "S:08bc6b25bf42c909ef0918dcacbcb3e387d47d55,", - "dashboard-colors.gap.secondary.positive.border": "S:ad32ee96749d7cc8c3b2b136030c237681859aea,", - "dashboard-colors.gap.secondary.positive.fill": "S:c7d96e0fd1bbf654e3ca6a93d88ef45dd2982cd6,", - "dashboard-colors.gap.secondary.negative.border": "S:0d1f98f591106091efcdd21fb678485bfa8a7ce3,", - "dashboard-colors.gap.secondary.negative.fill": "S:e24ddca40934d2025ca781adcc54a496c4b04676,", - "dashboard-colors.gap.tertiary.positive.border": "S:0db315e7078adebe4e54d4f258241637ae1b9d54,", - "dashboard-colors.gap.tertiary.positive.fill": "S:0dacf9e66b71ae58cbfc7c29adf5bed46e69cf2c,", - "dashboard-colors.gap.tertiary.negative.border": "S:834c69b8675b9f1528e9f27e4111ebc70354fac4,", - "dashboard-colors.gap.tertiary.negative.fill": "S:376cd7ce5e7ee47c075ede74ad0b40e941b65809,", - "dashboard-colors.progressive.positive.border": "S:f257866050783a07fa3a83ee2711e6b6a6271257,", - "dashboard-colors.progressive.positive.fill": "S:ee05b825fca68848ad065aa53576dd246ec6895a,", - "dashboard-colors.progressive.neutral.border": "S:ad83c4e39e67c73d50445b6a96f536de2e78dfc5,", - "dashboard-colors.progressive.neutral.fill": "S:5d575c5380384f95ac4f93c320f2c5d85760d9de,", - "dashboard-colors.progressive.negative.border": "S:7a977ffb3a8ef15fdf40890ac3e06169b4e60fbe,", - "dashboard-colors.progressive.negative.fill": "S:71cfabfdca297462360b4cfdc4f05438baf16257,", - "dashboard-colors.qualitative.fill-1": "S:491c8f310dbbbce9ddd6aaf94bef5d6c8b920218,", - "dashboard-colors.qualitative.fill-2": "S:4def042d631c921d0cbd7f9f28ae7d290e416487,", - "dashboard-colors.qualitative.fill-3": "S:c9d436fbeb05c29c8ff4f77538fd8ecc21f3bf2a,", - "dashboard-colors.qualitative.fill-4": "S:9e75dc5ef02ccaacd0b1c6e25c61be97fb716969,", - "dashboard-colors.qualitative.fill-5": "S:974a26c2660c95409b0d76717c12fccf0540aa40,", - "dashboard-colors.sequential.core.fill-1": "S:af64d8877e0aaa1024ea7670398d07fb915ca488,", - "dashboard-colors.sequential.core.fill-2": "S:2680fadbd8c0c4cd9208dbdb8cfbd09eec8f03bf,", - "dashboard-colors.sequential.core.fill-3": "S:fc99db9fd6aee163c9868a65e00abeebae340020,", - "dashboard-colors.sequential.core.fill-4": "S:11225315de989e970098b5bd658a67f3b6128080,", - "dashboard-colors.sequential.core.fill-5": "S:5a2644d4f9e55083ba385bb471f2ee0e11d8ebf3,", - "dashboard-colors.sequential.core.fill-6": "S:9603d99568982a0bef9e3aa9328b2f2c9c20d705,", - "dashboard-colors.sequential.neutral.fill-1": "S:2268d8dc940e80ee7ae35ebe08ec44248a161f8a,", - "dashboard-colors.sequential.neutral.fill-2": "S:b92148867fa04f8df3927baced43ee2c9735dab8,", - "dashboard-colors.sequential.neutral.fill-3": "S:23a55d6403d7c2a88cb1aea982d4c9becef4ee19,", - "dashboard-colors.sequential.neutral.fill-4": "S:1533a1615125b42a3e220064866faf746709941a,", - "dashboard-colors.sequential.neutral.fill-5": "S:d4fcdf755f7c786f2a03f9b24a8c1bc48757f1fd,", - "dashboard-colors.sequential.neutral.fill-6": "S:3db6faf4e68aec81e755abc73c543d5c2733e3d7,", - "dashboard-colors.sequential.primary.positive.fill-1": "S:945731d6d35ad4a729f7bb3a67026a8e3cd0a376,", - "dashboard-colors.sequential.primary.positive.fill-2": "S:e9b0fa7be6ef03672d704a4fc585dedfafbbafb9,", - "dashboard-colors.sequential.primary.positive.fill-3": "S:e60debd733115d60a2700df174fd00b94e63fb43,", - "dashboard-colors.sequential.primary.positive.fill-4": "S:27db723afe1d0db3409ab4ca83956805135b86d3,", - "dashboard-colors.sequential.primary.positive.fill-5": "S:84e873490c7c8c4cf502ddcf5a3cc9323035889e,", - "dashboard-colors.sequential.primary.positive.fill-6": "S:e6344e54119baa920d9c81ca370ff703f191fade,", - "dashboard-colors.sequential.primary.negative.fill-1": "S:c67298c9196443a56be4d7167eef688db8906b41,", - "dashboard-colors.sequential.primary.negative.fill-2": "S:7e0a9efd5cf934dea90a2395096e4225c6ca3302,", - "dashboard-colors.sequential.primary.negative.fill-3": "S:9f12feaa8bfd37e7685adacefc65e9c7590f2711,", - "dashboard-colors.sequential.primary.negative.fill-4": "S:08ef9f4d160c1082f5566f95c3c335d8d5b27c89,", - "dashboard-colors.sequential.primary.negative.fill-5": "S:85250a7b8e457e8b483864bc20a5bbf69a12c8d6,", - "dashboard-colors.sequential.primary.negative.fill-6": "S:0e5d38dc403b882a25262f42812f70f8e58eab52,", - "dashboard-colors.sequential.secondary.positive.fill-1": "S:7225758c12e53af413a5a4e1f82e7bbe6cbe8f86,", - "dashboard-colors.sequential.secondary.positive.fill-2": "S:be27a3e53e9dbf416d128cdc764e2fef28c6f063,", - "dashboard-colors.sequential.secondary.positive.fill-3": "S:12c5e73f1f1b833f1d1d0ab8a80aa181ae604433,", - "dashboard-colors.sequential.secondary.positive.fill-4": "S:1527be5fefda109ae6c759759c074db314b08964,", - "dashboard-colors.sequential.secondary.positive.fill-5": "S:68b64ecfde3fc2533c5ac6315ae67ab9b473e36b,", - "dashboard-colors.sequential.secondary.positive.fill-6": "S:698da2c8af895c8f320d8cb25d436a7c8ba97ecf,", - "dashboard-colors.sequential.secondary.negative.fill-1": "S:4974fc2b37d9a417a90808104fcd9607dbcab648,", - "dashboard-colors.sequential.secondary.negative.fill-2": "S:494e6d0c2b568265b709ee8d42def6fef0734072,", - "dashboard-colors.sequential.secondary.negative.fill-3": "S:595502e9f77b3e3c4af17cb76df80c47f148feda,", - "dashboard-colors.sequential.secondary.negative.fill-4": "S:4e236190ee7e3a5ce2431c0f168384a9b66940e9,", - "dashboard-colors.sequential.secondary.negative.fill-5": "S:9861a6ad2db2f1c687c17a78bb6a21aed6e91347,", - "dashboard-colors.sequential.secondary.negative.fill-6": "S:e3054a8bfc50206aa5388d3735a4ee159947e2bd,", - "dashboard-colors.sequential.tertiary.positive.fill-1": "S:36a0038c1d83f073ef820ed54b095759559a2724,", - "dashboard-colors.sequential.tertiary.positive.fill-2": "S:db34b697a4235bb8c82c0f9976b976927d2ff24c,", - "dashboard-colors.sequential.tertiary.positive.fill-3": "S:0fdf5bde7ddccd2b41ba7dc997ccd75519fd5e7e,", - "dashboard-colors.sequential.tertiary.positive.fill-4": "S:f4a7cbe6907abe59926cd8d71e0a525b3b5079c9,", - "dashboard-colors.sequential.tertiary.positive.fill-5": "S:8dd6ed00c7f097df18043019f23cd1de65d978bc,", - "dashboard-colors.sequential.tertiary.positive.fill-6": "S:773de724dd3f0e299785631cb449a47a91942da2,", - "dashboard-colors.sequential.tertiary.negative.fill-1": "S:539ea2cad50efef624a1a1d5da5555c5f5f8744f,", - "dashboard-colors.sequential.tertiary.negative.fill-2": "S:519e342ce097300bd98fdc77a22b9a6d921b4556,", - "dashboard-colors.sequential.tertiary.negative.fill-3": "S:9556110c20cb29765491ef69134b2256abcb78ce,", - "dashboard-colors.sequential.tertiary.negative.fill-4": "S:29db4b98562e1a0cbcc2a00ceea59ffef7cbe775,", - "dashboard-colors.sequential.tertiary.negative.fill-5": "S:03e01854f9e7198b73b39f7d45c78443452fb92b,", - "dashboard-colors.sequential.tertiary.negative.fill-6": "S:691fdf1920ccf22c27ddc282e16010f46f7827d5,", - "background.surface": "S:d808838b047898a3db215124aead3904519645a2,", - "background.neutral": "S:03c66c80459a570204677a4bd8f8f1937ee70523,", - "text.primary": "S:56a06a5f7d52430b8cfca7a4370498caed7c8bf8,", - "callout": "S:0c54055f94d9f02d12508ffb8786b91f0c07b716,", - "comparative.core.fill-1": "S:f0dffbf325b2759606e004e19d000ca57bcd53d6,", - "comparative.core.fill-2": "S:ede440204d92b42c297d12ed5cb03b5b91314af3,", - "comparative.neutral.fill-1": "S:09303039a10d80cb54228a9a205f456ecf6fe6fc,", - "comparative.neutral.fill-2": "S:9f5137bf2c7b68e69ec7a435691388c8ff0ad7a2,", - "comparative.primary.positive.fill-1": "S:50c25b3c614d1e2cb288a8699cccb81ad77ad45d,", - "comparative.primary.positive.fill-2": "S:f3595b8e982ea6c352c8ab096616025249e72c27,", - "comparative.primary.negative.fill-1": "S:92bb47ec9a569e4b4a69f5dee5c28f2f9044f9ae,", - "comparative.primary.negative.fill-2": "S:d6eaf0007e8628d8632fd94631c5dd5030d9a8df,", - "comparative.secondary.positive.fill-1": "S:05bfa8b89775cb5095e67a2e3a3891ee1c306859,", - "comparative.secondary.positive.fill-2": "S:77e33e86e4ab6100efc4dad92c06b8e8b2cee188,", - "comparative.secondary.negative.fill-1": "S:030182fcf1c0230448cc1f9bc627de7c63c3832a,", - "comparative.secondary.negative.fill-2": "S:646bd112d12f8b39bd09f0f74e667aaadbb4fbe0,", - "comparative.tertiary.positive.fill-1": "S:e16deda30a3d37de15f91fcdb31724c2887f676a,", - "comparative.tertiary.positive.fill-2": "S:1f8f76a07547304ea4004335e9f89f4a813b9d05,", - "comparative.tertiary.negative.fill-1": "S:f0cb045ef53e863678814c6acd26af83dbc5c65f,", - "comparative.tertiary.negative.fill-2": "S:5f659295c9322eea7ff6e4db761fa2d5b2839354,", - "divergent.primary.positive.fill-1": "S:101a2d2aca30e0bb90c5449a53dcf78b3293b45a,", - "divergent.primary.positive.fill-2": "S:871ed30707cb161fa27d4d25f753a69a03f0952a,", - "divergent.primary.positive.fill-3": "S:e59f75a17d5cee96fe3abe4e2004ec178da36523,", - "divergent.primary.negative.fill-1": "S:437bb5c994eef638d35d739fbfb89f5991653057,", - "divergent.primary.negative.fill-2": "S:1de518a305670d9ae21f4ae727a26ee43dd532e9,", - "divergent.primary.negative.fill-3": "S:74907c2325a3e9d0bc139716210be2e69ac7e54b,", - "divergent.secondary.positive.fill-1": "S:f2836af519a0c2e75bc691282437ff92165841bd,", - "divergent.secondary.positive.fill-2": "S:c49c426c07a60222d9d9d491c2624a575e180fcf,", - "divergent.secondary.positive.fill-3": "S:f9e1efeee274e0df19499e28f2c21a014b235d76,", - "divergent.secondary.negative.fill-1": "S:516b50c48b913d9150df2aee47f1d72a9736e52b,", - "divergent.secondary.negative.fill-2": "S:3c3ca9436398ad4d657d433a440c8d6fe2f7258e,", - "divergent.secondary.negative.fill-3": "S:faacd9d9277eac93d2b8400f925137d2a7c38026,", - "divergent.tertiary.positive.fill-1": "S:ef7a8378c3fc093b93a7192d2d8ed7d0ea04f9e7,", - "divergent.tertiary.positive.fill-2": "S:a009f5820f594a74025335c2d15259ba61a5f12b,", - "divergent.tertiary.positive.fill-3": "S:23e6a859b6895bfe5aed3d1a8adf25b21eba2539,", - "divergent.tertiary.negative.fill-1": "S:f58457adf5c7f0f97a61abffc83e3725dd5a5135,", - "divergent.tertiary.negative.fill-2": "S:e97d8521bfe8b608df1b54be84cc497ae759001c,", - "divergent.tertiary.negative.fill-3": "S:361e2a1e491c2e5ad294b7f5a098ff45fa8ba57f,", - "gap.core.border": "S:accdf3551ec60ffca7ff39132601caf0a55cca8f,", - "gap.neutral.border": "S:afb9bbb6314d9b56fd41d98efa83dfdb8ca53af2,", - "gap.primary.positive.border": "S:632181265818a75eb13f0b38990fe27ea768fa33,", - "gap.primary.negative.border": "S:817158316d59c93def03e449fd3e1fa813bc1926,", - "gap.secondary.positive.border": "S:060e22142f2a442f3f64e0515e7af7b5694b9964,", - "gap.secondary.negative.border": "S:81160a0778ac5f157acc3575683d1cb2fd71c714,", - "gap.tertiary.positive.border": "S:5263fb535efd68af33f600f01eb6d4978733a318,", - "gap.tertiary.negative.border": "S:c8ccacaa3348695a5c10e0032123bf0ece576db8,", - "progressive.positive.border": "S:3c806337951ba46f8e1cdfe8302197179945d796,", - "progressive.positive.fill": "S:f0e8af14051796bc2d39ea3e1659b8946d1b5e69,", - "progressive.neutral.border": "S:cf78970b2f354bff0064e20e0ba4050b37d22101,", - "progressive.neutral.fill": "S:9ebaf0a4fb6bbdd04575246cba836f5ae0ca0087,", - "progressive.negative.border": "S:74736a527df77bd89fb3f00c97047f0080d66ffb,", - "progressive.negative.fill": "S:770c304a93670a92806e256fbe4e6db7c55c5fd3,", - "qualitative.fill-1": "S:26aa5deb9aba0c2e78b08cf49c90ed385b089af6,", - "qualitative.fill-2": "S:5205ed77c9e209d687ab2d6dff18aee0172a8c30,", - "qualitative.fill-3": "S:8ab25d2cc17d1b5989a088ef70c807e9b9bb1e84,", - "qualitative.fill-4": "S:3497efb3bd6706933689d63abb184a90473bf398,", - "qualitative.fill-5": "S:45f2c5f61a34c3370b453c7b5d2be3aa6fd75f79,", - "sequential.core.fill-1": "S:752154f8cb8dc700a030c3c2cc3c32ff1b3bf853,", - "sequential.core.fill-2": "S:4789ded2b748f80ab3e620a43712ecef2f1a5fb3,", - "sequential.core.fill-3": "S:8214f968aca4c9a8df0f2f712e850431d5d4cef5,", - "sequential.core.fill-4": "S:5d6ad3db0a127cbe101375d3346512f876fc35f3,", - "sequential.core.fill-5": "S:25ffe1196704bda23f7d6416f7966c4a9dabef62,", - "sequential.core.fill-6": "S:180334f12d4241cc15eeb6b29bcbe0adf22e1aef,", - "sequential.neutral.fill-1": "S:286e26000ee2d0edb64fadc737db448fea5858f7,", - "sequential.neutral.fill-2": "S:44ab5338d72028c0c846ae5daa2abaf7ecd9192c,", - "sequential.neutral.fill-3": "S:4849dbba653a4475fe4d68d9f72724df44561aa0,", - "sequential.neutral.fill-4": "S:9154b01c1e6b9eee06c47c062d419a92c968a598,", - "sequential.neutral.fill-5": "S:c4212c8cc9fb790b4b7624222fe94f74625c8f5b,", - "sequential.neutral.fill-6": "S:03d5fd0f5512baefa289c73f3d6000b57e7ff87a,", - "sequential.primary.positive.fill-1": "S:31acf2a957794ae6d7a8529f850ec13f2f806d60,", - "sequential.primary.positive.fill-2": "S:50c9e747b04e1ab6e5129cf2d1cb660d4a9c4933,", - "sequential.primary.positive.fill-3": "S:5df5b6c1f3c1c50e945351f84b5fd74902f4d3b7,", - "sequential.primary.positive.fill-4": "S:af49c1bc7c4ab28fbba72e9477e874d82ffe69d0,", - "sequential.primary.positive.fill-5": "S:63399e645316725b5d7d07f11bc98fb81c9808d6,", - "sequential.primary.positive.fill-6": "S:13a21a02b09f2afefe7bd250d7c42c46aa81f934,", - "sequential.primary.negative.fill-1": "S:247e5b083c1abfda36a856e4d175ae6cf35697f5,", - "sequential.primary.negative.fill-2": "S:3585451c7f43a4311a92473b63126c0fbf6f11a5,", - "sequential.primary.negative.fill-3": "S:eab3ee185707b228419bd14ba65b9de208aa7b59,", - "sequential.primary.negative.fill-4": "S:ec196ac4a08d7983b4a037b4c28e9ea1c9b0b9f7,", - "sequential.primary.negative.fill-5": "S:987f15c3eee4c25a40bdcc21cccaada699e6fada,", - "sequential.primary.negative.fill-6": "S:9f78795498dd9b8225e7f59553750c290953b15b,", - "sequential.secondary.positive.fill-1": "S:650ae563acc6561b665fb8c9789445c9cc7561a6,", - "sequential.secondary.positive.fill-2": "S:01ccdce56b0cf00fe5563f31abf5050211c0c8d5,", - "sequential.secondary.positive.fill-3": "S:f06a009861ae30b31eab6ae85e8d919cd93f6d50,", - "sequential.secondary.positive.fill-4": "S:c8c0dc0f73bdb0643069e0b60bb422b9aa5b01ac,", - "sequential.secondary.positive.fill-5": "S:8750858acd8aa93ac135cb1146529dc46a266a0b,", - "sequential.secondary.positive.fill-6": "S:7228ff10f3eb5af0209d4515126eadf3787b36fa,", - "sequential.secondary.negative.fill-1": "S:7d2addabd5cf2ebc8fe8653c044be50373d3dd06,", - "sequential.secondary.negative.fill-2": "S:90f14a8ddc4ea01606bb2ab88de4ab8a946a9284,", - "sequential.secondary.negative.fill-3": "S:d6acece9baa8bdf2dc3bc0f5647483ad4a7c70e3,", - "sequential.secondary.negative.fill-4": "S:ff2be8856dfdc1b378f6205ddfc408b6d0443f3e,", - "sequential.secondary.negative.fill-5": "S:b5cfe6a1f3539b6b91c62e9c18a4f2346f050426,", - "sequential.secondary.negative.fill-6": "S:203ce7ed35ced4f80a1a955c1228da4976b39911,", - "sequential.tertiary.positive.fill-1": "S:f905b3225af569f9a3c16e0136a7df5639008164,", - "sequential.tertiary.positive.fill-2": "S:785c2bdc624041ea847bcdc033abfbf6f0aca2db,", - "sequential.tertiary.positive.fill-3": "S:839f7223e89ae1efdf281bab4b685951be3b26cc,", - "sequential.tertiary.positive.fill-4": "S:5024f68468a842f2b201a2442e18dc6d91e4730f,", - "sequential.tertiary.positive.fill-5": "S:b22c4342d979aef70d4a0454e9b8d5a8ffb98ea2,", - "sequential.tertiary.positive.fill-6": "S:fbc8e5b1910362bc2ea832fbfc79470d6599520a,", - "sequential.tertiary.negative.fill-1": "S:aba7df69bfcbb2bf42b89fc88a9105da7a91eaee,", - "sequential.tertiary.negative.fill-2": "S:6d8025f06003d9877e6fce228f750038a435ecfc,", - "sequential.tertiary.negative.fill-3": "S:0c050a1d79489966d5b63f1699d5da08faa47f25,", - "sequential.tertiary.negative.fill-4": "S:7ab3d6750ef71e07626b1590e1f2a06b7e8774da,", - "sequential.tertiary.negative.fill-5": "S:86441877e727545877aa261ab678f88d424c51fe,", - "sequential.tertiary.negative.fill-6": "S:d599f2a07d17c3ebedd90d74f07ba4b9dc673ff2,", - "text.secondary": "S:0643877c501d81deb6271141d9dde494bb9ec429,", - "gap.primary.positive.fill-2": "S:2048b20660fad10dae998bec0cf054aca44fdd3d,", - "gap.core.fill-2": "S:501378a0eff03b5c8ad3cb22f1258bc6688d95e7,", - "gap.neutral.fill-2": "S:3b96d4ef77d738bfac4c70c2c4b5b2d624449bdc,", - "gap.primary.negative.fill-2": "S:a0501c0735834ebffb2ed1fead32311d247a853f,", - "gap.secondary.positive.fill-2": "S:7bf4a7ef478e9e2f4c25f704bcd1eccb08f4d7bd,", - "gap.secondary.negative.fill-2": "S:2d6366b21805b4b38dd3078ad15af9fdda69bcd5,", - "gap.tertiary.positive.fill-2": "S:2f14b2580a4eca2a293874091345ba076156d230,", - "gap.tertiary.negative.fill-2": "S:26383e13a182be3fc1e2f1883895dc4d9b66a51e,", - "text.tertiary": "S:192779706f871c0e43e586c778d5cff44ea54f67,", - "gap.core.fill-1": "S:a80c9d9a052d5daad657fa5d1532dc865755d6a3,", - "gap.neutral.fill-1": "S:1a461416c23c2a4f363c81d5df229e9f96270e32,", - "gap.primary.positive.fill-1": "S:056fba45f42f134aa1d3bcc2e3389f0b4d14824d,", - "gap.primary.negative.fill-1": "S:1a623fd6fe7a305f8c7ee123f75e2ba276f61712,", - "gap.secondary.positive.fill-1": "S:24ca1421d128c296826f32e8246f2a0c728e51ca,", - "gap.secondary.negative.fill-1": "S:1c3e7c41b7d8d0b10e3766ae3294b117d0964c5a,", - "gap.tertiary.positive.fill-1": "S:dc9ebf4593f5fefa581ad75a2d5e482e3514e6c7,", - "gap.tertiary.negative.fill-1": "S:dead8ab3266c3790c460727e05f394070bce3a8e," - } - }, - { - "id": "b58e4e15178134e91973c47a7abe9eb044c71880", - "name": "DS components", - "selectedTokenSets": { - "base": "enabled", - "origin": "source" - }, - "$figmaStyleReferences": { - "typography.accordion.title.m": "S:e8a88003262047d14deb45333b5000f161c5f276,", - "typography.accordion.title.s": "S:be6b477013a270e57e5b3459392a94369c7f5f42,", - "typography.accordion.subtitle.m": "S:55a56bef2a1ee464ba69e6d2644c6e21d991dcf7,", - "typography.accordion.subtitle.s": "S:bdadf148186ce954d13eb07b156a1d0962f8ea3b,", - "typography.accordion.paragraph.m": "S:4cd1b2e66abf091acecad956eb818c84b90ccd46,", - "typography.accordion.paragraph.s": "S:558964e54a73e5573258ba11247aac8d3c27ca23,", - "typography.actionPopover.menuItem.m": "S:95f50439048875a27fbc29c48ed3f5d6ce882efa,", - "typography.anchorNav.label.m": "S:e28a6697c96ddafd73d5a460dd3bb191ef5e2569,", - "typography.badge.label.m": "S:0de025abba9ffef182cb1346edbed6a0a8da5a14,", - "typography.breadcrumb.separator.m": "S:0bd8f3d8ba7517a5f36de610ec64513a276843d9,", - "typography.breadcrumb.currentPage.m": "S:a33ec3ede7189ab7a73a39787b83dfe34c35ce18,", - "typography.button.label.s": "S:918c21f19a5ed62b1f9ccbfaf2cbca445694c0b4,", - "typography.button.label.m": "S:b08b479a5870dec88a5f8d4cba5cc5d6088a479e,", - "typography.button.label.l": "S:805b4a8219ad957399db7e9f8164a9ab31f24ce5,", - "typography.card.paragraph.m": "S:41bee27a6c93bdcd35bc7bc6566c02d75dcd35c4,", - "typography.cardSelect.title.m": "S:5f599a6c3c06b481bcf267425e6d772257c9c946,", - "typography.cardSelect.subtitle.m": "S:731b8fca3d3aba49aaa1575d982962c5cd6437c4,", - "typography.cardSelect.paragraph.m": "S:43d4dcd601e26df1ae0303d018c6fd289c8ddc8e,", - "typography.cardSelect.footer.m": "S:2933d475470f5f4c0defe683a9487700641e485d,", - "typography.datePicker.calendar.date.m": "S:05c1986841994d39472c7ac258c82ddf4dc6ce59,", - "typography.datePicker.calendar.day.m": "S:64fc82ff8d2912043beb580d106ea8e0410444a8,", - "typography.datePicker.calendar.month.m": "S:5c7a0eb7687df791bdbafa374550dd2ce0c37f49,", - "typography.dialog.title.xs": "S:f634407530b78dfb45c5dd04ef7db3dfb6af230d,", - "typography.dialog.title.s": "S:f002881da5078395946fd8cff0c567008393acbc,", - "typography.dialog.title.ms": "S:396a7a999a99b57c71198beea831a1dcd23f4505,", - "typography.dialog.title.m": "S:36d4f65c4c601f5a9d1d811cf6d8d8caa29b9ac1,", - "typography.dialog.title.ml": "S:9fd4b9b6e460ce803f8f9f2a4e331a81ef33cb38,", - "typography.dialog.title.l": "S:7f1bf6b9c04334d85be0c237dad8f417a0f87a41,", - "typography.dialog.title.xl": "S:3111f8f4e1adfc1113fa52bb33aa81d790fda787,", - "typography.dialog.title.xxl": "S:02719d7f10ee2ce93acc38738b6c609082e5d55f,", - "typography.dialog.paragraph.xs": "S:042f9558611959b528a8f81b227535a69bed3839,", - "typography.dialog.paragraph.s": "S:0706f485bc9a752ba9e78c06bfdb044480424939,", - "typography.dialog.paragraph.ms": "S:9f1560a7ae490c3a24be7042a08afd099ecd5bd1,", - "typography.dialog.paragraph.m": "S:6ededfdb13b89984bf4bd8339bab251363cffb20,", - "typography.dialog.paragraph.ml": "S:27aa8a27d3a60b7e6eb1d6690bd45aa0e8d8f33c,", - "typography.dialog.paragraph.l": "S:b565a8b3ff5c374a744b4a8fa2083f1f7ea8a1de,", - "typography.dialog.paragraph.xl": "S:3b7d8bcd08ac80aa061bd38497bb7b2643dcbfd8,", - "typography.dialog.paragraph.xxl": "S:7bd2df727e5009aa9e36d58bfc7660db83cec4f7,", - "typography.drawer.title.m": "S:6dc9e4ff68decc26a0705a9a65ee7ae99fe5c850,", - "typography.drawer.paragraph.m": "S:38c195913abd0aa066c5908eb1052ec0d0982182,", - "typography.flash.text.m": "S:7aeb20472ed555761687e88cb6f55c415800b751,", - "typography.flash.text.l": "S:afcdb3dbf5a7912faa7e3db49e09d7b27ec224c3,", - "typography.formField.label.xs": "S:486c2a5fd57ac5e6a0a5fffcb128e877e4f539b1,", - "typography.formField.label.s": "S:cf62682f1b0ad7509f0a4c0a1a2653d25cd65018,", - "typography.formField.label.m": "S:8b403edd32cb2f5f1eae698b6de4d801b46103ea,", - "typography.formField.label.l": "S:5a63ff867076c24b43fb1ea1fa8a3d48d8da862a,", - "typography.formField.hintText.xs": "S:16d25c6f1255089ca40d717ff9d03ed5dc105c59,", - "typography.formField.hintText.s": "S:36540c9b3560348a2f853e41b7d9ce7af1fe8c7a,", - "typography.formField.hintText.m": "S:fc98d25e2a3df56eb774e6546e73aad24deebaf5,", - "typography.formField.hintText.l": "S:fb794fb42c7e4d00db04c90e39378246a97ac081,", - "typography.formField.errorMessage.xs": "S:266aa430fdae9e5c243abf1483b795661d8b3497,", - "typography.formField.errorMessage.s": "S:74d9b3cecb0dcacf2e40d5f073b9ee56dbdbc60a,", - "typography.formField.errorMessage.m": "S:ac785abbedbf71b78024bf5a5552549ea819d939,", - "typography.formField.errorMessage.l": "S:91f2cae0ee2900c2c787c3cd9fcdf9e70c956393,", - "typography.formField.cautionMessage.xs": "S:f362d4aacb281d736d2449e07fe0a39c65b4aeaf,", - "typography.formField.cautionMessage.s": "S:8a4d6098b89a195cfc8f7536792f911a84cb50f9,", - "typography.formField.cautionMessage.m": "S:32edb99a3c7cf192e45612344a65cf7fbecfa796,", - "typography.formField.cautionMessage.l": "S:ce0cb5fb5ecb04bf755310701fdaf2eb37b73c6a,", - "typography.formField.inputText.xs": "S:289319acef506346f37a1ca50b0f30e65e45f81c,", - "typography.formField.inputText.s": "S:f79a8ebd540ad4091cc456706ba4864dde5de852,", - "typography.formField.inputText.m": "S:af3b8985c9fb22acabb13a3ff8551f9015236471,", - "typography.formField.inputText.l": "S:4d5e38d2b5a4e716ac903f131e54c6f480392763,", - "typography.formField.dropdownOptions.xs": "S:abc4ad56962393aeb43ec7f700855c28f33f1781,", - "typography.formField.dropdownOptions.s": "S:7bfcca0949c953ff01f5a7fbce1f4ab8c9c07725,", - "typography.formField.dropdownOptions.m": "S:d6fd012cbe29259484e9b844b7c8bb3cd816377f,", - "typography.formField.dropdownOptions.l": "S:d486e3031e710d0cefc222bdabb36631e207d18e,", - "typography.formField.secondLabel.xs": "S:3594a3acf12e932f7861d06b79ea0fc071292d30,", - "typography.formField.secondLabel.s": "S:f7494fd2d4dbbe5f9c15aa259f80aac99f35423a,", - "typography.formField.secondLabel.m": "S:9bf12745c777330705b39bdf8589b2fc80ed8596,", - "typography.formField.secondLabel.l": "S:7086b73ba38dc8693cc505ea02c77b995d205962,", - "typography.formField.characterCount.xs": "S:7956fff736163af9cfe29970a65daf84e675f055,", - "typography.formField.characterCount.s": "S:6f55a05e320fcf7dc89e27071f9da7eadef1fe50,", - "typography.formField.characterCount.m": "S:ce88e2bdf0157bf1edad475fc049616966b11d7d,", - "typography.formField.characterCount.l": "S:7ee028172ecba56052dbeb5db00dcab1d2066950,", - "typography.link.text.s": "S:e9dad9a5388a0dfbf133c492e35f985f0c13cf42,", - "typography.link.text.m": "S:64c255d50ce470a2a0611775ffda0bfe3afc33ba,", - "typography.link.text.l": "S:62a8628e48385d1b51f63be13344852910cbc1f8,", - "typography.menu.label.m": "S:c5d222b76c5fc65fe3d2a38826416bc527cd5712,", - "typography.menu.label.l": "S:802c017d038ba7119f32a94cd21be0969729c49c,", - "typography.menu.segmentTitle.m": "S:c0aff68d3a292d97c37edf6ac11149854b9ed6dc,", - "typography.message.heading.m": "S:19544be7dd295e71e72428d7d0d76cfd32868e25,", - "typography.message.heading.l": "S:5ce9e6c705fdf6ab38f13497f3effb2ef2365722,", - "typography.message.text.m": "S:0c058b0562dda66d39707d7fa9492dc8c0499a1b,", - "typography.message.text.l": "S:468570c70befb448865a1323b3e93dc7e8d36a72,", - "typography.pageState.title.m": "S:8309d6fb596da2e7d56ff2ced0946b6bcd6ef96f,", - "typography.pageState.subtitle.m": "S:80ad13e77cc220d293da93aa96e1110ecb520075,", - "typography.pageState.paragraph.m": "S:00bed04438d74dda45a11caf76f5561758c4587b,", - "typography.pagination.label.m": "S:131ff455139828f76dc9c8c2c5ad96cd5ae7a6a4,", - "typography.pill.label.s": "S:36b0a11dd4e18133426152df42b4b7b6b9a47845,", - "typography.pill.label.m": "S:04bd0ca30feeec79a07f812f8834e0562623641c,", - "typography.pill.label.l": "S:3e8cc0660454de3df505eec51bb22a43a88f106d,", - "typography.pill.label.xl": "S:71d4c7f03851dc9143d31a15b1b3a416e8a3effc,", - "typography.profile.emailText.s": "S:bda467298125fc327a8b0580e14ae99b71eb552c,", - "typography.profile.emailText.m": "S:16b8a3eb6145fbfa7ab2b6ebb88d98242f269d60,", - "typography.profile.emailText.ml": "S:fe9ed08c9b0cc919f1666d2e011afa4041b0e26e,", - "typography.profile.emailText.l": "S:fc1b836352badc24e81857c7908bf50883237505,", - "typography.profile.emailText.xl": "S:7a726a3adc9474b05a341a68cb425c43da759408,", - "typography.profile.emailText.xxl": "S:614653cf7a13061ec690f0935c54b79cb05ef4c3,", - "typography.profile.emailLink.s": "S:10ec7db4f27917378e88f524d0f12d416eaaf6de,", - "typography.profile.emailLink.m": "S:27996610bd443fb5269f264986f5eebd536fd4f1,", - "typography.profile.emailLink.ml": "S:6c52015318fe90c5ac76cc8f243f40ee1f24cd8f,", - "typography.profile.emailLink.l": "S:b13e8851fe3860ff48cd7635b3fd458158a79a28,", - "typography.profile.emailLink.xl": "S:8a95fe2fac9acf6b68f9dfa1ed2df85f5e30e101,", - "typography.profile.emailLink.xxl": "S:09ae6eeb6ab59eff378f456373193ae6e33737a5,", - "typography.profile.initials.s": "S:7dc3030a9f9b13e2b20db3d6c322612b77f353f5,", - "typography.profile.initials.m": "S:9943e458aa10e8963c5ee9545964a01049c21ccb,", - "typography.profile.initials.ml": "S:d620104c49be2e36b1673dc0ee52fb7aff0553e0,", - "typography.profile.initials.l": "S:404e57a3340ba7c047ac30811e2e22a01465854e,", - "typography.profile.initials.xl": "S:a13240c39d61098a698eaeda37ee40b8a6e0537a,", - "typography.profile.initials.xxl": "S:1a46816b26a501c9c5955c182fcc3dc683b0a563,", - "typography.profile.name.s": "S:c9689a0606bbcbe67d01f1b816df6b14e0a9ec5c,", - "typography.profile.name.m": "S:937367fb4397122a30bacd13cb9453838021e141,", - "typography.profile.name.ml": "S:ff1cfdf64a628d321e7fe09f5609adad8cf5e5d4,", - "typography.profile.name.l": "S:180530ed38d888c249901c324e291116b8ddb5e0,", - "typography.profile.name.xl": "S:5e82e0232b7d4406d30f570377e2a140fb9a2ccb,", - "typography.profile.name.xxl": "S:83fd0dbf930ccb3382fb9829bfb7bc78463e7610,", - "typography.progressTracker.valueLabel.s": "S:dae99fd53d32ce4fbf1f41b6ff43c2a578c26e7e,", - "typography.progressTracker.valueLabel.m": "S:3292df150135dd966d6e855391e9c183e946ca9d,", - "typography.progressTracker.valueLabel.l": "S:cecbe1971b41256eca6a862fc1fef569c997c2c4,", - "typography.sidebar.title.xs": "S:7771a0683fd179daeb483b6e1200d4f18ac5110d,", - "typography.sidebar.title.s": "S:e2d0bddd3fdbdc1f3ff088988354d7ae4c7b7a39,", - "typography.sidebar.title.ms": "S:7cdedd137a2732bd3fa6254abf3d1dbe6b5948e4,", - "typography.sidebar.title.m": "S:84cdc43560aa1b52b41eab383797472c84d41710,", - "typography.sidebar.title.ml": "S:f4fbcea736d4102e024f135e7b0ab3729361c519,", - "typography.sidebar.title.l": "S:4d9e6f4717f596a06d8c7264bd831b62d1ed38b3,", - "typography.sidebar.title.xl": "S:7735bdee8a9ecc908dd8638d4da0000da5bc52b7,", - "typography.sidebar.paragraph.xs": "S:f4da5b8104d39102dd8c5a324cb7f7e647f7675f,", - "typography.sidebar.paragraph.s": "S:a50c96705d87fbe6ebbb8f88fc36cbf2e35d5b3a,", - "typography.sidebar.paragraph.ms": "S:6744bb777b3e72d3a65b36fa4c4a3b0b70d56907,", - "typography.sidebar.paragraph.m": "S:5b20001cbd14d168cffd54513943e8eaf90f649d,", - "typography.sidebar.paragraph.ml": "S:1645104c2f77233d1be5d17f58f0ee2ced6e89bc,", - "typography.sidebar.paragraph.l": "S:2a84007750100c5ff55db0e631b2822f0c1f8ff3,", - "typography.sidebar.paragraph.xl": "S:0bcf4dcbd29e122c026ede6fd21d4ea92539f98a,", - "typography.stepFlow.completeLabel.m": "S:98ab60b6db1f1ca505220c83f1022b66ae4059ca,", - "typography.stepFlow.currentLabel.m": "S:740830c6866b54d738a8b1de63e3531f6ea640fc,", - "typography.stepFlow.incompleteLabel.m": "S:d35d7676925e69d43c3e5a285ae554a0b7e813e1,", - "typography.switch.optionLabel.m": "S:597c7aba2fcf096930020c13db9d59849f27b035,", - "typography.switch.optionLabel.l": "S:9c757fa8fe2dd73073a901cdd66a3f8cf777ec13,", - "typography.table.headerText.xs": "S:c61192a277a335eabb114dce55ae24d192140594,", - "typography.table.headerText.s": "S:521592888a98e03e4f0e0aa3624e530516414093,", - "typography.table.headerText.m": "S:1382bafe67b4cebee1e7c6b536e72cf80ea416bf,", - "typography.table.headerText.l": "S:205ffe7d3804fee5013a0d05d3e51af850cb963f,", - "typography.table.headerText.xl": "S:0f6a3fa135897b1b4b2031a5b8116220645d358d,", - "typography.table.cellText.xs": "S:4d877b3ea1feb598b6e25873ddfdce9e54a12576,", - "typography.table.cellText.s": "S:c812f974bd204cb436312f1c681258dabd95897e,", - "typography.table.cellText.m": "S:175dbab9936213f5430b1911c5d3a8d7e34b6325,", - "typography.table.cellText.l": "S:552ed11250d0573effde32a4a161978f98bd5267,", - "typography.table.cellText.xl": "S:69879866916c137a0a1ef8e5f903b6390afc9e49,", - "typography.tile.paragraph.m": "S:1bc038b8672883b4888d34a5000f53213d40fc5e,", - "typography.tooltip.text.m": "S:46dee48325ad0d5799b3997582ae5d10372a9883,", - "typography.tooltip.text.l": "S:71d5a4fdcd502f052fbd248b8d6459165e81b826,", - "colors.utility.major.100": "S:d2e2b6454d5189ec09abab0cf8c8b66822cf88d0,", - "colors.utility.major.150": "S:5bd75b1c4f6d052a812f50c5d6e9dfe261e352fa,", - "colors.utility.major.200": "S:5e087cb75e07ee4e6a1c7351bcf296dd29a900f9,", - "colors.utility.major.300": "S:d8914946a405549f6c3fc10c53f8a3c26dfc266f,", - "colors.utility.major.400": "S:2c496d5ca2759a0a9044cf10b7c54309538e0122,", - "colors.utility.major.450": "S:27dd9b9e19ff9e6af6284f2c9f9b44578733be9c,", - "colors.utility.major.500": "S:337d1b287a79c2d3fd17e6589626c772c8a6a75f,", - "colors.utility.major.800": "S:c625c8248175f3a8c78f5b3c22cf27d9ef635d70,", - "colors.utility.major.025": "S:ca43615aa0a581263748a93c313993538f0868f9,", - "colors.utility.major.010": "S:4101ea80dd45fd25e33064274e53d71ea92ebae7,", - "colors.utility.major.040": "S:20165162de8035f1b0abe7d7df020b08cfaccfee,", - "colors.utility.major.050": "S:9d52a3debc91ce88b09f1c1687e0bb196ef3f352,", - "colors.utility.major.075": "S:c9ce414ee8102f245cf54398986cf75440605162,", - "colors.utility.major.transparent": "S:dbf6e5c4a33ea430ef36132a980e992cbffcca48,", - "colors.utility.yin.100": "S:1162ae6b5cf67ff0dfdd30290c2da02bfd9a3eee,", - "colors.utility.yin.030": "S:bb211ea19502a6ef2a508348a51ab11eb89fe4df,", - "colors.utility.yin.055": "S:4247309e436e399c4d3d20cf60193b7a79e2dedf,", - "colors.utility.yin.065": "S:da4d050b227e40677b68b75f19a00100e28ec07a,", - "colors.utility.yin.090": "S:702505e2f949a0a84b67f04d00cff7a8ba5b8b9d,", - "colors.utility.yang.100": "S:1539df62ee4fcb042eab227a6b971018085b44c1,", - "colors.utility.disabled.400": "S:3b4ceec27202b92fab1ae05172d47dfe66172be2,", - "colors.utility.disabled.500": "S:af707f54b63c26ea0c98e9151120632c8ad2c4c9,", - "colors.utility.disabled.600": "S:d70fa105bf79656c85feb186a88e05feb5e8b1ec,", - "colors.utility.readOnly.400": "S:2effc818db97475d2c7c7547aed3ccdf1ba48ba2,", - "colors.utility.readOnly.500": "S:c3109d4823b21ffd0513ef353500f6773206d3d5,", - "colors.utility.readOnly.600": "S:d11494746b32e053af523bdc1157ae510c006e31,", - "colors.action.major.150": "S:c53ceb8513f8bf2148abc387a0ddd3d95ee7f8ad,", - "colors.action.major.350": "S:1640feb058773a22746c115cccab4cea08ff1d4e,", - "colors.action.major.450": "S:d36a321cc8303b781d3860e909a339c4b6116bfc,", - "colors.action.major.500": "S:58c023c610c4296fc4d6c68f3c08ba9002dfa073,", - "colors.action.major.600": "S:ee9ddf6b29de8cf1be0d17fe9d45c78affa44a16,", - "colors.action.major.700": "S:ac8d866dbe3df198a8bee38835863b074a437d5a,", - "colors.action.major.025": "S:fe84ccb3d2a83e9afc9e69eb86b3df98dbaa0b51,", - "colors.action.major.transparent": "S:1d6a9806678185abedfa15a807599887c1b5b0fe,", - "colors.action.major.yin.030": "S:6e50819a333853bc46c4a034167b759236cdceed,", - "colors.action.major.yin.055": "S:c186853f041bbe8134e25b0856e3a57c0d663744,", - "colors.action.major.yin.065": "S:c6afa0259c03077ae06a4bd4e883264923f661ae,", - "colors.action.major.yin.090": "S:302c0db4f4b1e6b2b48b626e3a965afb65644a2a,", - "colors.action.major.yang.100": "S:6f76a910a5c9b4d99c0014db4e3699439db19665,", - "colors.action.major.yang.030": "S:c64d5ab2b66ec6c0ff7e105a18236e2718c95e73,", - "colors.action.minor.100": "S:98c2261b20bc6b8a1bbfbdf8a9c37f050b2556f6,", - "colors.action.minor.150": "S:752ed7ee0adc22edf35d9565634576c820bd8a82,", - "colors.action.minor.200": "S:fae22f65af4edfb3a3f18da5667701e7386d88b6,", - "colors.action.minor.250": "S:8b0d3e4d6d8b824bf5fa8fac0cc9d86ce262f3c6,", - "colors.action.minor.300": "S:73b6d252f845d7e5f7132e32d9b92b4f52c7ef67,", - "colors.action.minor.400": "S:23636d1974ff2fbff4344c4acc8688aaa18f6736,", - "colors.action.minor.500": "S:9ba70d70f0804a0b1e4f6d7ebe2aff3d32771200,", - "colors.action.minor.550": "S:e1753e762d848eafeff25a5c2630e4fe36af1f8d,", - "colors.action.minor.600": "S:f02c57033f518aaf50fa85eb39e900d59ec40ed6,", - "colors.action.minor.850": "S:6cc52d9d3f4097b35af6dcbd9447000dc36ea29c,", - "colors.action.minor.900": "S:4bef2da85513e4558c62c2c71878bf0a78b3027d,", - "colors.action.minor.025": "S:96e8aa7d1caa9c6975053b3002b39cd775890987,", - "colors.action.minor.050": "S:b14da3f91f9a992dceb44049fcadc7db7529dfef,", - "colors.action.minor.transparent": "S:d49c9c12a881803dba050fee86f2fd056cd180d6,", - "colors.action.minor.yin.030": "S:51bb091918fcf173fba68d654c72b5e78b3f9ff1,", - "colors.action.minor.yin.055": "S:0a446e0793e3e4cbb1cf47cf67f070da29274fc2,", - "colors.action.minor.yin.065": "S:6e0c80a2cfafaa3c8ffbd4e68b59282ab88fba72,", - "colors.action.minor.yin.090": "S:1d1bc2d002fa28f39659a2ea93393829eecd02ae,", - "colors.action.minor.yang.100": "S:b4a9bed1913751ee31bb2820acff1942ac15795e,", - "colors.action.disabled.400": "S:ea5886cf4bc2ffb15db36bd27be11dbc90b75c96,", - "colors.action.disabled.500": "S:a444280b3196b86aea6671144617d3b16fc85278,", - "colors.action.disabled.600": "S:3d8eabaa8311bd87199b6b11a5261245fd6b34af,", - "colors.action.readOnly.400": "S:a381159e46ffc3b4c29f693e463f5292e1798308,", - "colors.action.readOnly.500": "S:d26e4ed0cf873d85fbd5ef50f2b935754b4fa412,", - "colors.action.readOnly.600": "S:ca933b227ac2636841c0e4d789bb9430ce10254c,", - "colors.semantic.neutral.200": "S:7bd7393e8a1c1402d0bebb19c2f50573b6c555da,", - "colors.semantic.neutral.500": "S:fd2bafa42de646dc058cc3927a3fa6d3b1aae7e0,", - "colors.semantic.neutral.600": "S:ff26b4c5991a1fc3180f77c632ea11b074631a1b,", - "colors.semantic.neutral.transparent": "S:56c26b97a45c231053e006dedb5c17c0b5ff29b5,", - "colors.semantic.neutral.yin.030": "S:4cb41ce62ac748a67f723d1f3bee86f9a25e9dad,", - "colors.semantic.neutral.yin.055": "S:64beafd10087eaf415d21ec710701e31454cefa8,", - "colors.semantic.neutral.yin.065": "S:1a381d60b1d9968b2e3fbe5dc136b918d387aed4,", - "colors.semantic.neutral.yin.090": "S:df06219e78eb21e9e69840da03922d924cfabd3b,", - "colors.semantic.neutral.yang.100": "S:6990777f69697f07225d3b8bb59db82ffa11c669,", - "colors.semantic.focus.250": "S:c34ec419b91c1fda112b0bcb8f3720821f3a72eb,", - "colors.semantic.focus.500": "S:d7d960ff6bbd381e29cd21c24625cc72aa841c91,", - "colors.semantic.focus.transparent": "S:bd2601d6902ee3bb466021578550f5e61d5c59b5,", - "colors.semantic.positive.500": "S:f95c6e6517ec21098fdc9c8e2282c39245dce761,", - "colors.semantic.positive.600": "S:5b0f215ff7216545bdc06485c52ac87e99d5d79b,", - "colors.semantic.positive.transparent": "S:da4573013efe0c5dfc2ab938d23ba787489ae13e,", - "colors.semantic.positive.yin.030": "S:30350f264e81e900561b6a2692c6317dcca00d3b,", - "colors.semantic.positive.yin.055": "S:6b0db560205791fabe756b750878161d8079b354,", - "colors.semantic.positive.yin.065": "S:8aaeb9ecb73fb8d1f37ebff435e0b5b6fd47809b,", - "colors.semantic.positive.yin.090": "S:3e028040c1dfee82c138df3677192f63ffa4bb68,", - "colors.semantic.positive.yang.100": "S:a6a26ecbfa5006ab8f02fa745fdf27503ff7cb2d,", - "colors.semantic.negative.350": "S:f7c99b5aee9a844b87dbf595a596704f9ee8ac9b,", - "colors.semantic.negative.450": "S:799f17193610fb46d78a32e798d245987c684777,", - "colors.semantic.negative.500": "S:a77881e796795778e76c8e4cf9973e84ce8db229,", - "colors.semantic.negative.600": "S:d064b7fcc1e2260f839a6196202fadef60e8a98a,", - "colors.semantic.negative.transparent": "S:241a8a0e25ee74c44b886da71b5cfb0bd067f4e5,", - "colors.semantic.negative.yin.030": "S:de2a98d3cc679d70a8ce800549eeacbc97b6e88f,", - "colors.semantic.negative.yin.055": "S:b1b2eda3b987ef4d52e1bb07916aa502c47bc704,", - "colors.semantic.negative.yin.065": "S:dba4137189a443703601de17b89336f19cfe8375,", - "colors.semantic.negative.yin.090": "S:0da74c012466c3053fdfdea6d724383f7064a4b6,", - "colors.semantic.negative.yang.100": "S:272527d14a41af375bcd9b7a0ef7dfd799130b0f,", - "colors.semantic.caution.400": "S:dfa81b83095e1a1b9d1f328168b5896447d7da5f,", - "colors.semantic.caution.500": "S:c3528daa978fdabcce488e0138a10a891c2014e9,", - "colors.semantic.caution.600": "S:7c55e3c56ca28f290cc16ebaa8ac3a05e3f16570,", - "colors.semantic.caution.650": "S:38f6e1b7f8e78720103fdc0a670eed102195405e,", - "colors.semantic.caution.transparent": "S:6284cb96cd4b5b83d8f0fbbd5bcdb6a1cf4e7165,", - "colors.semantic.caution.yin.030": "S:edb3a2e816c9f7d8de151857ef0047ee5b4c9e84,", - "colors.semantic.caution.yin.055": "S:f79a73c78245cc86c1f6d0c93fab840a1778c2a3,", - "colors.semantic.caution.yin.065": "S:3f1e55476ff1f248e0833e06e2b7ab814f5769da,", - "colors.semantic.caution.yin.090": "S:e6deac466b724bf90d4b592373ffebc7aef4a176,", - "colors.semantic.caution.yang.100": "S:70f47fc5bf8b75060fe7e072cfd45a7d074e7c5d,", - "colors.semantic.info.150": "S:01bd5eadfb59f337fc2f4415234e60f9c347016a,", - "colors.semantic.info.500": "S:4c0a57690d976e723ca498f8a6d41941b28093b7,", - "colors.semantic.info.600": "S:c7d88a994e038d7a6aa22d6a17cd29d9f589def8,", - "colors.semantic.info.transparent": "S:298d1698819d7ee8d7c0afc8ca547d21efdc964e,", - "colors.semantic.info.yin.030": "S:6f06fbf7acb494372e462f1fbce2a9b93150486b,", - "colors.semantic.info.yin.055": "S:c803bf05091b547184b3cb058dbf55426d18d858,", - "colors.semantic.info.yin.065": "S:58a99213aa3ee75fcfcd1cf4a127ba98bbc87540,", - "colors.semantic.info.yin.090": "S:caa1d8b38c8366b6dba3cb2b786bfe81d68a1a15,", - "colors.semantic.info.yang.100": "S:42c13e91ff751b1748b0e295ded7f47dfebab52f,", - "colors.logo": "S:4783f86a9056fe5ae8b5e22aeeda065e991f99de,", - "colors.transparent": "S:62a2d364e442471001aae57721822b946f781bd8,", - "colors.yin.100": "S:c3253b3f54bd32046caa3fe18c796a6e52564ab3,", - "colors.yin.030": "S:a7f8fb967138f59bc75e094bc62c6ad405b999f9,", - "colors.yin.055": "S:2407fe4198ef75cfb086fe683b111cc2246e9ad5,", - "colors.yin.065": "S:0f2d3ec52192c1b11a97d3a23b83bfea06199dc8,", - "colors.yin.075": "S:7b2b680a729cba2f62ee19a4b2b46773ce94fd7e,", - "colors.yin.090": "S:331c4360cda2d3508b2087c49726e7247217c4b2,", - "colors.yang.100": "S:107b8a715f1caef488bc8438c50ba2e33b017408,", - "colors.yang.030": "S:63c15792a0d33090499da98ad3ae0d7dfaf370c9,", - "colors.yang.080": "S:a8f1b86330267ac2bb3c9c3d3e5170e9751dcaae,", - "colors.gray.600": "S:8d3b40479200ecd23dfdb82880d5f1f6c53ca5eb,", - "colors.gray.700": "S:76f1b83a246dabed0764ee5d99dd838ad34b2fdb,", - "colors.gray.750": "S:b9b4417c979bd5a03b23f02fd0ed7a9aed9e60d5,", - "colors.gray.850": "S:2a20cc8deb7718271b8de88f933876a1d47f262a,", - "colors.gray.900": "S:44a6a48cb56bd5c3350712d449d1a2d063bb4a11,", - "colors.gray.1000": "S:b45e510540b166b87f4af21d7eb327ccd6cf0d86,", - "colors.gray.000": "S:9897652606c1bce5729aeccfe68a45b1ed1e1ce3,", - "colors.disabled.400": "S:1638f00b1cc8a69c66bdd9071ff243a26c51cebf,", - "colors.disabled.500": "S:5f4f8f732a2c19ea9dec475cddea6b5b86d1ee84,", - "colors.disabled.600": "S:fee41e106019766c7a19a8f7c9af0d225b23ba4f,", - "colors.readOnly.400": "S:d939ab694d38e0f9b8edb663b9a5e386ffdb141e,", - "colors.readOnly.500": "S:5c15d1cb4636318fc3a2e713ab8c97f233c113d3,", - "colors.readOnly.600": "S:a1beeadf712d3bb84abe1af4fb0676ae39581773,", - "colors.components.leftnav.winter.standard.background": "S:f74631967622ef99a149debda3c1a9201a22f53f,", - "colors.components.leftnav.winter.standard.hover": "S:881d5e00c584df874732972a6915887ec85328bf,", - "colors.components.leftnav.winter.standard.selected": "S:607c1fcf16a8d0bbe9b1c09df51b447cc1ec9445,", - "colors.components.leftnav.winter.standard.content": "S:0a23d6b20dbafd8ce1f7ce814c88dbf0f2508b24,", - "colors.components.menu.spring.standard.500": "S:312433e7fa845a68c323b1ccb611f181dbb53714,", - "colors.components.menu.spring.standard.600": "S:9221f71c019a6586c77583b21b99d0386072eb92,", - "colors.components.menu.spring.standard.700": "S:0de1c3ab9d548801c3f73addfb95f2f6194f1991,", - "colors.components.menu.spring.parent.500": "S:07fc019e694b44f1004abaec0c10ff49b73bffc9,", - "colors.components.menu.spring.parent.600": "S:75534caab5521aacc88c78afb0ab9f6bf591126c,", - "colors.components.menu.spring.parent.700": "S:48756c66925eee53c737392e05b926fa739bbb98,", - "colors.components.menu.spring.child.400": "S:07a733b20c1cb3f75c188cd0e720e9ca2569e36c,", - "colors.components.menu.spring.child.500": "S:a540e366f6d3605af04a45548d8b923c4a6d229c,", - "colors.components.menu.spring.child.600": "S:364202ff5405b378e8b1a63f5ff4bfab9b543222,", - "colors.components.menu.spring.childAlt.400": "S:27c94fce556e43ebd473fdaccbc850bdc0d41a8a,", - "colors.components.menu.spring.childAlt.500": "S:46ef108dd83c9a8a8993bf4cb4e4ba7e928436bb,", - "colors.components.menu.spring.childAlt.600": "S:9c3a58beb035b83550ec1f046984cff6e26868c4,", - "colors.components.menu.summer.standard.400": "S:459ce2e12e467c10e29ac420d13fb9cb8f5824be,", - "colors.components.menu.summer.standard.500": "S:1135d8f220ff68c912ce91a76c037f64f07fd36c,", - "colors.components.menu.summer.standard.600": "S:2079b94a17329e4c08c173aa7b2f1f6c8c85fe72,", - "colors.components.menu.summer.standard.700": "S:5782e84f39827dbf93664fa20e9f04d095c25917,", - "colors.components.menu.summer.standard.800": "S:73eb94575e9604a4dec67b875c9b7f8842a1bac5,", - "colors.components.menu.summer.parent.400": "S:e79a9a6e52009701da2c1bfb9bedb44433b2b86c,", - "colors.components.menu.summer.parent.500": "S:4b245c727e73f9f6bb9b39a29168728edbceb562,", - "colors.components.menu.summer.parent.600": "S:f69cb7948bb8320215bb53b01c6658fad54d1a43,", - "colors.components.menu.summer.parent.700": "S:1d48847faee7cfd5a1469fbf70b6d50482ad5fd2,", - "colors.components.menu.summer.parent.800": "S:1123b177cb752fc85f323183eb94efcd80855d25,", - "colors.components.menu.summer.child.300": "S:886e421fe59993bd1e6854041e9f770a0adab36e,", - "colors.components.menu.summer.child.400": "S:f058de729238ef89a687a3b8820bc53f3e20ce97,", - "colors.components.menu.summer.child.500": "S:d2fa940d34426807e689a6aac6376d835c59c3c1,", - "colors.components.menu.summer.child.600": "S:618a2f2dd3973f87f7eb28863314b7d47c7c7bfd,", - "colors.components.menu.summer.child.700": "S:44398f1f33f8b7661ac1fac37c8dd75339acf65b,", - "colors.components.menu.summer.child.800": "S:f706a6a4b8dadd3c958c3b597d61fcedd2dfa604,", - "colors.components.menu.summer.childAlt.300": "S:3199b3b6ee3b6d7f2c4326ff70537750d1237ac9,", - "colors.components.menu.summer.childAlt.400": "S:b18dd525e221dc83e58162e9356f032604127dbd,", - "colors.components.menu.summer.childAlt.500": "S:9b0127057bcd37b4a9bdd1975bf70356e0018247,", - "colors.components.menu.summer.childAlt.600": "S:13ddaba8cc0cddcbdbcfb77fefeb4ecac0e4599b,", - "colors.components.menu.summer.childAlt.700": "S:32fa2e066282b101dedaad6774dbc7df8c6ce0bb,", - "colors.components.menu.summer.childAlt.800": "S:88840edf93a536fe5abf88f1ed3296c946c043a5,", - "colors.components.menu.autumn.standard.500": "S:c9357deb9cdf631c9137a7f0f4742159a7db8206,", - "colors.components.menu.autumn.standard.600": "S:d28f68a4219ea91fc5b8e46b3ac0aa42ef1e77ec,", - "colors.components.menu.autumn.standard.700": "S:02a66d3e96ab68c20b2dace4dcc2374b2ad3f336,", - "colors.components.menu.autumn.parent.500": "S:49483b941f16ea45fa1f65f17790610741d10941,", - "colors.components.menu.autumn.parent.600": "S:fa6cfb592e1ad22f2bf5727c4d1bed98fcc11072,", - "colors.components.menu.autumn.parent.700": "S:08ee78967d56581ee38814784d1caacfa8efd45b,", - "colors.components.menu.autumn.child.400": "S:9140f0b91d68ee13d2bb2c0c3b3186e21dcb77d1,", - "colors.components.menu.autumn.child.500": "S:b4ba9f1113fee807668aae5823cea8db602d1847,", - "colors.components.menu.autumn.child.600": "S:12b9d0da1d0a2af2edfa3b79c7cc5c93c2b1ba59,", - "colors.components.menu.autumn.childAlt.400": "S:393323429fab04aee953bfdf87880509e1d74591,", - "colors.components.menu.autumn.childAlt.500": "S:e214da2eda68bc04b417dc0c136024da19eca862,", - "colors.components.menu.autumn.childAlt.600": "S:d26a246b8028666c236c5f929310e1fc8b60c7e0,", - "colors.components.menu.winter.standard.400": "S:43c7c9ed7b4f7c0c970da482055f47021e96bc70,", - "colors.components.menu.winter.standard.500": "S:cf427d967a0f8b6dfdf37c4e76b9e3578907cba9,", - "colors.components.menu.winter.standard.600": "S:1ae60e0c3fe94cb7572ba8cbaa32eceb9145b520,", - "colors.components.menu.winter.standard.700": "S:74765025e8111582c9fdd17339a5346900abd271,", - "colors.components.menu.winter.standard.800": "S:caf57407830e279df4a84e6790a3c5d2334ec693,", - "colors.components.menu.winter.parent.400": "S:dc09543b267dd3c243628fce991fdc16684c99de,", - "colors.components.menu.winter.parent.500": "S:990327952efbf1211229ba6d9219d49e6be2a24d,", - "colors.components.menu.winter.parent.600": "S:5f740d227c15f8e11f49431d20be7d768a8687b3,", - "colors.components.menu.winter.parent.700": "S:aff245ba442d25c1cb78865bd539eaef1b64d784,", - "colors.components.menu.winter.parent.800": "S:08daed2d2f18fb038994e5b619cd11e6620d9615,", - "colors.components.menu.winter.child.300": "S:3581bd9076cee7dc2a38ca2e5645b977a7ca18a4,", - "colors.components.menu.winter.child.400": "S:fbeb20ab071e556ca631d0a30d5005c025b29c8e,", - "colors.components.menu.winter.child.500": "S:8dfc0dd6200914f577020fba36d24a13c265e4c3,", - "colors.components.menu.winter.child.600": "S:2c3abc679a76560c4dea774a8b2da66879ea4796,", - "colors.components.menu.winter.child.700": "S:bcd10ea958d6b4f3286fda56b645871f876f33d3,", - "colors.components.menu.winter.child.800": "S:ef745891bc28c9951c223d05e753c5dec9149ffb,", - "colors.components.menu.winter.childAlt.300": "S:89eacc9b0c5d616e199e4d1bf75070bc2c6ed23c,", - "colors.components.menu.winter.childAlt.400": "S:a85efc0a54ba84d8763db0c5feea263c106e6a50,", - "colors.components.menu.winter.childAlt.500": "S:1134355f00e94a7d086acb46ab3d407d25c556ee,", - "colors.components.menu.winter.childAlt.600": "S:8d99ce5f72cc3a3da35586e69e5925cadd70a4e0,", - "colors.components.menu.winter.childAlt.700": "S:52800eea018abfbf633a8ca058c86c942210a66a,", - "colors.components.menu.winter.childAlt.800": "S:35bcb204afdb6f215a20d60def31fbd3661fef15,", - "colors.components.menu.yin.100": "S:436b9cff69711cc3b10cf09f6b482534299177d3,", - "colors.components.menu.yin.065": "S:e1d8e8f2030ae7579e0f9fa3526ae6f021790c46,", - "colors.components.menu.yin.090": "S:5e99264ee00a6c1e693c04ff6649f5ab7f57497b,", - "colors.components.menu.yang.100": "S:fb1eb627339f2f9c04fb312057c164fa26851a19,", - "colors.components.menu.yang.080": "S:65200d20ee87f82d63ca71cecb11d223164dbc30,", - "colors.components.menu.yang.030": "S:392ea4a852e27cf52535229e192e9ef73398e9b2,", - "colors.components.menu.transparent": "S:5157cebb7bb3637d2b0a48ce01db045da7d853ab,", - "boxShadow.100": "S:d74d65bbb18d8232bd73569178092e0717c1879d,", - "boxShadow.150": "S:29cb27d748c63a1991f5f6c6016b52b6c73ee152,", - "boxShadow.200": "S:da127411bbe26dac162e437663482184c20a6c44,", - "boxShadow.300": "S:f74836a8d1b2c2c012cd09794c5d2ba78a17a71b,", - "boxShadow.400": "S:48581ebb9b9db50475ecee2c27b7f3646bb6febf,", - "boxShadow.010": "S:6614ebbb1914db044a982cb97c24cf1acaac909a,", - "boxShadow.050": "S:695c175dac4a41e6affc05647d7cbe1afebcb1e7,", - "boxShadow.075": "S:37b52326a0a2de6019f2cbeb31312f26c9b7e234,", - "boxShadow.090": "S:cfd1a0f57b8c6442b493acff9548bf515fb3250e,", - "boxShadow.091": "S:fb5c738a7ceaf284bb7876b6353aa1d6d4f4f74f,", - "typography.tileSubscription.title.m": "S:4a128cf71a6251537440899a59bb2ad1f93acced,", - "typography.tileSubscription.paragraph.m": "S:52f9d43e3d7f3a36ce8c856e214a9df324c94d1d,", - "typography.tileSubscription.paragraphBold.m": "S:fe2d04cd5a411d3ade789953f537dba20675cce5,", - "typography.tileSubscription.price.m": "S:c879dee0b40bb2d7df28fdf60886ac687a455f5a,", - "colors.semantic.neutral.400": "S:76ae7ae4e86a609d7c39234edba2ae29cad1bb76,", - "colors.semantic.focus.1000": "S:3ccf5807de6a5228de2b0eaaf931f6fcab25277f,", - "colors.semantic.focus.000": "S:c1af44bbb577439469a4b750353234857590274d,", - "colors.semantic.info.400": "S:32d9ceaf50778c5e679aac52d2940dd0a9fd310c,", - "typography.link.textFocus.s": "S:2ca02e6523a733a8a00a9784d2d4f0ce3d03a91f,", - "typography.link.textFocus.m": "S:3c1e7164bd8ca9b983db9f2d93083d4b4e18d3ed,", - "typography.link.textFocus.l": "S:32bd466cb4793c4f8a109a3c01c781985367f537,", - "colors.utility.yang.080": "S:f81c38ad439689974aed9ac39885a9b0339aeb1c,", - "typography.note.editorName.m": "S:3a29bcee9cafe2acb0e3c083dc389c09e7283ad6,", - "typography.note.date.m": "S:54365fda8a8b58f8f34e6ce76670325535231def,", - "typography.note.paragraph.m": "S:4fefd90fcf73695068e1a7dc40c354fb838bd35b,", - "typography.note.paragraphList.m": "S:48ef2832cf98bf778b1b7220865bb95ded834261,", - "typography.note.title.m": "S:daf5a238944fbf51412a09f4ab8267bd9ca8df00,", - "colors.action.minor.700": "S:2cf7331e6668fabf1b610e3895014f2fa3af02b2,", - "colors.action.minor.gray.700": "S:0daa3a42362d71fde83d011e238da70f5994d20c,", - "colors.components.leftnav.winter.standard.background-child": "S:200eea5dacb46245235caed5262689363f5a2591,", - "colors.components.leftnav.winter.standard.divider-on-dark": "S:47fb10a8f7f0de38371aeb5ee134cc651bd7700e,", - "typography.loader.message.xs": "S:3392c087865a1331c7a9b90bf0ba5602e24d2a00,", - "typography.loader.message.s": "S:4a6572460940bd35cdd9b1e935834cc8a14545ae,", - "typography.loader.message.m": "S:a17fab112b1f11144f3e6dbd2a3add598464fa56,", - "typography.loader.message.l": "S:c84e8f784a534e8e7c232e59d001a6251c7c35bc,", - "typography.loader.message.xl": "S:eabf409acf6dda0aef4212f4b522a2e9c2f10dbf,", - "colors.semantic.positive.400": "S:96d6a2632dc536e74a6c463c78000812a0e611d0,", - "colors.semantic.notification.600": "S:931d063f6c754d2556d13c8cd5bb523c4c249abf,", - "colors.semantic.notification.transparent": "S:affc106bfa3f7cd6805d04f1385eefece4787aa6,", - "colors.semantic.notification.yin.100": "S:ed6fd804b2cbca522ce679d0af9347b84c0f093a,", - "colors.semantic.notification.yang.100": "S:71e56287d27095eaa8f32e53da5296c505e92f78,", - "typography.badge.label.s": "S:cae5a27986a182ed5f1bbb83a216c4ad879201fa,", - "typography.dialog.subtitle.m": "S:8a98612d6f1250ca9aef8acfcce454043c32fa57,", - "typography.dialog.subtitle.l": "S:bb990b1e610af5e0f402167e565df00b8cdece7e," - } - } - ], - "$metadata": { - "tokenSetOrder": [ - "origin", - "base", - "dashboard/lightMode", - "dashboard/darkMode" - ] - } -} \ No newline at end of file diff --git a/data/tokens/$metadata.json b/data/tokens/$metadata.json new file mode 100644 index 00000000..0cf3f81b --- /dev/null +++ b/data/tokens/$metadata.json @@ -0,0 +1,33 @@ +{ + "tokenSetOrder": [ + "primitives", + "global/borderwidth", + "global/shadow", + "global/radius", + "global/size", + "global/space", + "global/typography", + "modes/light", + "modes/dark", + "components/badge", + "components/button", + "components/container", + "components/focus", + "components/form", + "components/link", + "components/logo", + "components/nav", + "components/page", + "components/popover", + "components/progress", + "components/status", + "components/profile", + "components/tab", + "components/table", + "context/product", + "context/frozenproduct", + "context/marketing", + "screensize/large", + "screensize/small" + ] +} \ No newline at end of file diff --git a/data/tokens/$themes.json b/data/tokens/$themes.json new file mode 100644 index 00000000..03be33ec --- /dev/null +++ b/data/tokens/$themes.json @@ -0,0 +1,6031 @@ +[ + { + "id": "31a38b74a9a34550c4ce757a0cfe9168b336aafe", + "name": "All", + "$figmaStyleReferences": { + "primitives.box-shadow.downward.0": "S:34fa4d280f7a4b9ee1ce95af7b19d940758d41fc,", + "primitives.box-shadow.downward.1": "S:6fe11bedebac403345e3711a484c80188890fe2c,", + "primitives.box-shadow.downward.2": "S:09a90269e1b728bb523ab33c393593300c0edae9,", + "primitives.box-shadow.downward.3": "S:6f3064763ab0de55a558cb5b55365f9d5195bb6d,", + "primitives.box-shadow.upward.1": "S:31132508d9eec46a9b4d11ddcc65cc5067a8e859,", + "primitives.box-shadow.upward.3": "S:24d3774e13ab208ea1bc60ee4c868ec30105db2c,", + "primitives.box-shadow.solid.border": "S:0e617a74e88708f9a42c79404d12134a72dc91b1," + }, + "selectedTokenSets": { + "primitives": "enabled" + }, + "$figmaCollectionId": "VariableCollectionId:89700:2155", + "$figmaModeId": "89700:0", + "$figmaVariableReferences": { + "primitives.colors.black": "0216c0f2c0d90952c65061c313ff1e507bac727f", + "primitives.colors.blue": "8757ec647e8ed686326011344ad25091048b08dd", + "primitives.colors.blueBright": "0d572d1ef5b180f3379a44130e0a85eb43293491", + "primitives.colors.azure": "fe1f345ef1bf0061c308b028d451f0a95749c27b", + "primitives.colors.azureBurnt": "b650322740840be1a7ac4f05780ecfc20be4b8ab", + "primitives.colors.brilliantGreen": "5d343447fd57716fb12fa447a89f03f732cc8a88", + "primitives.colors.emerald": "3ece6b999afc363b080c5b35a68880f039f13558", + "primitives.colors.frozenJade": "87a7de84ab45496e6cc64ce21ab2766de414b4f8", + "primitives.colors.green": "ccfabc49d84361f0c1b861032382012684d51d68", + "primitives.colors.greenBright": "731fad9b65604c3e98088d9a0276be403087438b", + "primitives.colors.verdant": "237ad80532906e4bd73759747e1a8208adbfe4cf", + "primitives.colors.verdantBurnt": "df4bc3c2f5d1293cdb5c068bf52fbb12e47a8da8", + "primitives.colors.orange": "2989981124bbca5ab8af2c179292375e023ade7d", + "primitives.colors.orangeBright": "81589f6bdd03960ea9da029e575d1caa7b8b2220", + "primitives.colors.tangerine": "e262a080f58ed9c906c4173d0beb6b42b76fc1e3", + "primitives.colors.tangerineBurnt": "898fe3d17959735778288b4b1f92d538a05cb7a9", + "primitives.colors.gold": "4762627c147e50ab9ce5e5370c396fdcea712c08", + "primitives.colors.navy": "25970b9d32e4995c06c379d0e34c77ef2e905d86", + "primitives.colors.storm": "4ed2f48cb71dc9173e7a3f0f9ebffb142f1d2cfc", + "primitives.colors.stormBright": "a252f338415e56831741275c4af52c7e5a39944c", + "primitives.colors.smoke": "b366637073c6104648d14fb6baed9feefea1ad3f", + "primitives.colors.smokeBurnt": "9237e3420bfe7ca7b3984e00479b9d8ee8a073fc", + "primitives.colors.red": "ba8ac7a23d6d0ee7d4d2a486f2f9fb42c54d50ff", + "primitives.colors.redBright": "17282d7c7c670fa13a0cd57c11e44f365b7d277d", + "primitives.colors.blush": "0cccce853225197b81d36edf439f3f0803061e55", + "primitives.colors.blushBurnt": "58c939973e6ef02e13009f3afc87dea474eb8a9e", + "primitives.colors.teal": "8aeeac051d2090f517acc316b5b4c322f15146d5", + "primitives.colors.petrol": "79b5aa0675f46f0503fe19fad15f9e7f35b506c7", + "primitives.colors.transparent": "57f76d54061aae9606f2cf1d0d88243eb50ad5bb", + "primitives.colors.white": "a3268ed8484d6b98cdf246c8e4b795a99b3214d7", + "primitives.size.SCALE": "6c985945e680a0cf7e5e257f3b3d5092d45968a7", + "primitives.size.breakpoint.0": "cafa173526db1356d0aa8972fa812bae1940e703", + "primitives.size.breakpoint.320": "c84d70c4ca3370e9a7917b41080456a3161ed25a", + "primitives.size.breakpoint.480": "c6c787b816ce903d47656d9ab8926234aa5e5ae1", + "primitives.size.breakpoint.768": "fa9211ecdcb9d697113c6f2b8e9909e63d73f5c6", + "primitives.size.breakpoint.1024": "664aa2b6f8bf2274a8ab4bd107238af58fcfd407", + "primitives.size.breakpoint.1200": "7d385176bf9a962bd98950d5b4d1add803cabe75", + "primitives.size.breakpoint.1920": "0f277e1a7302010cb1441004486d11e6f9aa5392", + "primitives.dimension.0": "b6d75775fa3e6a17a08633ea931e45a5af983981", + "primitives.dimension.12": "6b6266536d900784075bdebec7586e437f9c241d", + "primitives.dimension.25": "7f716356ce2bf54da1bac77cae789055aabf8e94", + "primitives.dimension.38": "54caaeff108f91d3befaa7bec69070ab0f405290", + "primitives.dimension.50": "30ada94cec55efaadd5dd2472d3c3fba4a0cc9b3", + "primitives.dimension.62": "dce1cbfae296ce264fd316649f201e5c24386ed6", + "primitives.dimension.75": "a5299ea31d82c4a9a2aa598cdc863064e0bafdd7", + "primitives.dimension.100": "963a211dd8ad0a506a12c12c4d530db0d419c2ee", + "primitives.dimension.125": "832093902a64163600981786497d092035b6cf2d", + "primitives.dimension.150": "69ebecab8f771f851f2d4de84c617b31cba80089", + "primitives.dimension.175": "da06ae120250f9995107e2dbb4537fc7ed3904a8", + "primitives.dimension.200": "55d725e3949911c5cc5244d7f21bdd806b0b54c1", + "primitives.dimension.250": "34a2f278da224b00fe6260c0f4b66eeba9404db1", + "primitives.dimension.300": "28d1a4ca2ace1a9f4b25df424b5df9e45861e461", + "primitives.dimension.350": "3ce6015f6c2f66f2f3cde4e417893c4417f923c8", + "primitives.dimension.400": "87040fece4ae657a7aa15628e8ef7990c2bc199c", + "primitives.dimension.450": "8dcc9b8b7249b9af9b2ceaafe75a08ad92cdf8cf", + "primitives.dimension.500": "e5d77e45e105a0fe003a5d906e4eda9c7e39ab3a", + "primitives.dimension.550": "ff0944aa226ec11fcd4fa802532a03bed0aa5ff2", + "primitives.dimension.600": "cab6e767381a18b098cf036d61b4196df0af9a17", + "primitives.dimension.650": "e39b48bde9e58b915d3f4ac2e552df59d947fc72", + "primitives.dimension.700": "951c747f81a4d42b0e8ab9266485e222a83882a3", + "primitives.dimension.750": "b9c6ef1c50bb0d0a2c0a1ddb755e0ad926c239b3", + "primitives.dimension.800": "a4f4b0de66754e5c66692068f7e51a0f3aec1d24", + "primitives.dimension.850": "fd777390f46a0f31fef06b4578356eadf5da702b", + "primitives.dimension.900": "948ad3672f91199787587b151fff9eb8a722eaad", + "primitives.dimension.950": "6eb70c2b7e8fae73786e1ea7b7bee3ce3fa522db", + "primitives.dimension.1000": "3b6d98231d25fe98ffddbdb4deb789c7c29bb1b8", + "primitives.dimension.1300": "5de0ef467163eb4d7774024ef05995def7097d7c", + "primitives.dimension.1500": "d6e0038841cee376150a590cd86f7cf2a0d3620a", + "primitives.dimension.1600": "a188fed0b66be023b5e8f613f46db80ece66c5c5", + "primitives.dimension.2000": "25dba7fe47825223d7b8c87c1549c1dfb656a10f", + "primitives.dimension.2500": "cacbc86503a33d8ee84a635cd29ea8f91f16f773", + "primitives.dimension.3000": "81f64256278cbedf90f471dfefe5436ab4dc59f1", + "primitives.dimension.3600": "260adc4ccefb487a8773e0d3e7db57b3d060ddc2", + "primitives.dimension.4000": "5e5ac610fe15046835a1d8601361105345c094eb", + "primitives.dimension.7000": "95d9aefb9167c0cb830524dae37e7d9c8a600380", + "primitives.dimension.9500": "0db85ba157e63b3b2da30509c58a1e9aa420d450", + "primitives.dimension.base": "ff5708f6b3714a68f6da3a98fcf5fbc0d9b3fe3d", + "primitives.fontWeights.regular": "0aa7c424e85ee6ed9e82bf1ebbcd6f11b38fea2c", + "primitives.fontWeights.medium": "df54093ebe767f7a1bec04290d78805e3c2030f1", + "primitives.fontWeights.bold": "9b8e6bcd50f41a50fdffdd5cdd03539088295b0c", + "primitives.fontWeights.black": "df3982f3149b308b573dd5dda5325c360b4a3bf4", + "primitives.fontSize.responsive.product.step-2": "eb748c3898b287d319d3474ea5d7f5db7c8fe882", + "primitives.fontSize.responsive.product.step-1": "395030bf10db366ce81625d9a7dd6692717f1276", + "primitives.fontSize.responsive.product.step0": "12f1017d9038913a155c664395a2e7c07df0f377", + "primitives.fontSize.responsive.product.step1": "8a7c965cddcfd2f9fa7b57fe6b7bf254502f7d07", + "primitives.fontSize.responsive.product.step2": "a5e5abb13350f862af3f083f9f77814e2cdf9e5d", + "primitives.fontSize.responsive.product.step3": "2419b6febbc88d0b08bf15143f910170b09e6499", + "primitives.fontSize.responsive.product.step4": "d53ac6f0c6b431b3aa77c8748b90db5ea0482ba7", + "primitives.fontSize.responsive.product.step5": "de645650c71531409b7553c23de365e725af3879", + "primitives.fontSize.responsive.product.step6": "569722e634466215539da15d283c09dbf74f7255", + "primitives.fontSize.responsive.product.step7": "14795234ca53d6813274849fab9d461ef76056ed", + "primitives.fontSize.responsive.product.step8": "b158ad5d717e27d7a269097cd556f8f51142d70c", + "primitives.fontSize.responsive.product.step9": "330e3413a18d9f98edd30870fa3a39af405d1954", + "primitives.fontSize.responsive.product.step10": "7c534ebe522f5b14dd8dbdb61819cdf881045134", + "primitives.fontSize.responsive.marketing.step-2": "ada5a9f0c3f38685e18fc8d793fbf16739d81382", + "primitives.fontSize.responsive.marketing.step-1": "a9245785efbb9ee0a2f1970f05e5fd817b46b298", + "primitives.fontSize.responsive.marketing.step0": "485c7152ae8ebc1f022f7662f2f91f5758d91915", + "primitives.fontSize.responsive.marketing.step1": "2f9ef6908c161ba8e88dbcaf9dbc511c1b3b9871", + "primitives.fontSize.responsive.marketing.step2": "46b1e3156e4eb953263bbfed48f10ee8d0d8e083", + "primitives.fontSize.responsive.marketing.step3": "6493e497a1d4da4189764c1ca3ec4eba84801156", + "primitives.fontSize.responsive.marketing.step4": "50bb469b57f3a942230c2d8fe16aa62cd7bb6a19", + "primitives.fontSize.responsive.marketing.step5": "041a3b8142c0a0e8e7acd68a73101bd771f9d0d2", + "primitives.fontSize.responsive.marketing.step6": "615d3c566423991dc7ff88f2faf13d6c85ef2b7a", + "primitives.fontSize.responsive.marketing.step7": "8331a33b415d1887922ed8689adc42cb66534283", + "primitives.fontSize.responsive.marketing.step8": "94cca76bd75df25cf4e86ce0cadf5f6819d2dd25", + "primitives.fontSize.responsive.marketing.step9": "465245589ac6ea83bcdc7e11eb7bacf2438f260e", + "primitives.fontSize.responsive.marketing.step10": "780cee806aa6337d419fb2eca876132563181e11", + "primitives.fontSize.icon.step0": "2eb281aaf3f2c6ff496d3f1fbdc5f53195359354", + "primitives.paragraphSpacing.0": "a5b9a3e7fd607af56775374bdb70cbdb0e89cf73", + "primitives.paragraphSpacing.150": "e04a8a4e0fa1c4a331611e5f3928f11d0b6af750", + "primitives.paragraphSpacing.200": "41c8fedd49097d131f18c6610eed3427a930fc19", + "primitives.paragraphSpacing.250": "3cbb5fb2102d385f4b59f24598d16d5d01f36afe", + "primitives.paragraphSpacing.300": "acaf04a0f0ead8ac93770906674e9d8adb48b1e4", + "primitives.paragraphSpacing.400": "3e9f862cbe0eeb33e705127097593f80c5592f8b" + }, + "group": "Primitives" + }, + { + "id": "94c19922a4cf4e3c1fc44553cc9e5ae00d2aae70", + "name": "Light", + "$figmaStyleReferences": { + "tab.color.typical.border-active": "S:4af06f803d405d78c9ee30d0fd59eb545f793d3c,", + "tab.color.typical.border-enabled": "S:038a6074baa05095e4cf6490cb562d1a977319cd,", + "tab.color.typical.icon-enabled": "S:34f49e90fd649fc39adca4b2a6c2a470ce1819cb,", + "tab.color.typical.icon-hover": "S:b8ba492b96afc5260c5e9e7cd1198dff3c2e6247,", + "tab.color.typical.label-active": "S:9c53a6050eea1845743e23118d504208de9b4fd4,", + "tab.color.typical.icon-active": "S:e0e450b59e734cb8330afc256ed362d8b78bc5dc,", + "tab.color.typical.label-enabled": "S:4456b855a67cbd778c0ab6a659c4109fc66ef7b6,", + "tab.color.typical.label-hover": "S:0c0213e0cf378a37883955581a39f44cc901d142,", + "tab.color.typical.border-hover": "S:fa7995ecb9d94509b81320fa0f14a77f3c27149d,", + "logo.color.sage.standard.brand": "S:b601eda7447822b57a9f0c4f14209b13313f3b96,", + "logo.color.sage.standard.inverse": "S:c346555afbff9a6b20cb76447e906cf95802cf06,", + "logo.color.sage.standard.standard": "S:7669bd1ef1cd79cbeebf4c299951a275c776ba65,", + "feedback.color.standard.nudge.borderAi-horizontal": "S:3f0d6ff6139a45013e3eebf4c4323902aa9cf649,", + "feedback.color.standard.nudge.borderAi-vertical": "S:d38d6d8ca013a99dc2e1e4812c20a3ca9e289b97,", + "form.color.pop.bg-default": "S:6c83ab35b5f060f66c145a457a6fc5137a485590,", + "form.color.pop.bg-hover": "S:f6fb2fb2f2bd0d7f28bdeb709102963ec55037eb,", + "form.boxshadow.pop": "S:899e50f445a5ac9bcc40a15b00edaae74a78bcfe,", + "boxshadow.tab.previous": "S:58d53ce3cfdc9fb86bc8daafa77b0c7e306ff50b,", + "boxshadow.tab.next": "S:10fec0f95297faa36dd01f56b0364440c72ad615,", + "tab.color.typical.bg-hover": "S:85342cb3ee0af388a1745ee45839932cc1ed1af4,", + "tab.color.typical.navigation.bg-default": "S:5c76eed663f45a2b6f9c3ea3299eef9e9f64d13d,", + "logo.color.standard.AI.brand": "S:f620fddda054227db85a9f2e9a4e54e15abb985f,", + "logo.color.standard.AI.inverse": "S:ab3728be3d0aee60c1af7c4e86df4e828abb5ea2,", + "logo.color.inverse.sage.grayscale": "S:b9b4a70929c199bc8994a7bc0ab47b426265082f,", + "logo.color.standard.sage.standard": "S:b1980d8a8916b153b39b2c0eb92d212bd68c7aa3,", + "page.color.inverse.bg-alt": "S:b996b843cabfac7362f3fc120d38cbd17d787f23,", + "page.color.inverse.bg-default": "S:349fd81b9a1028c06a1a90ead5fc264d4f14105a,", + "button.color.typical.toggle.bg-activeDisabled": "S:c935ac63f2fa77f41b95e8488ea704239dffef1d," + }, + "selectedTokenSets": { + "modes/light": "enabled", + "primitives": "source" + }, + "$figmaCollectionId": "VariableCollectionId:89711:6927", + "$figmaModeId": "89711:0", + "$figmaVariableReferences": { + "modes.color.none": "f1a023bc3bbfc5335e65ade4b6d450f6f3191b1b", + "modes.color.brand.default": "94e67212e52b0a2ba01c97dc32dbea92f8e1601b", + "modes.color.brand.defaultAlt": "3cb3b5868bd6def2c7123c49437aaafed4ace887", + "modes.color.brand.withDefaultAlt": "36809d5c40f56404d81fbe4327a9cb427e77022a", + "modes.color.brand.copilot.AIIdentifier.default": "4c3f864d595cc83b34a71330e96363b6b7754eae", + "modes.color.brand.copilot.AIIdentifier.withDefault": "a9ffa309e0e6bf186f68fb17024a0e02cca6e8f0", + "modes.color.brand.copilot.noBg.S": "0ea6573db3b6cddae3584c7dd2a82bb899f5508c", + "modes.color.brand.copilot.noBg.star": "c9bdc0e31eab36c21cf750ed8c789c3f6f78016f", + "modes.color.brand.copilot.noBg.mono": "19888467fc8c8aa99475050ed369c2bd7daf1407", + "modes.color.brand.copilot.withBg.star": "f990f25e2b4a4afa3f72073a2995be1945ad80d3", + "modes.color.brand.copilot.withBg.bg": "281e72a2b5b20ab27f449399f9a1d689195c3468", + "modes.color.custom.default": "12e4ccc8df1dcccc92e71c4e215e42a3ac5cfe49", + "modes.color.custom.frozen": "4ad18ac1ad90650f3c33b64d050605fa4bd9f19d", + "modes.color.generic.bg.nought": "e28a5842ad93f9c83628fa9b247333193197d97f", + "modes.color.generic.bg.faint": "042e9ce16ad97cd71261ae564c3a72bbb64333fd", + "modes.color.generic.bg.delicate": "70e63935aea8dd8e91953514f0c2b6d0dca4acd4", + "modes.color.generic.bg.soft": "99472bff102d9a68dabd878046ab44cb8fecdb9f", + "modes.color.generic.bg.moderate": "4ba179718776a65a35e32344b118f645abd5ecf2", + "modes.color.generic.bg.firm": "79f755bdb2a95958ec3bae9cfbbd672e0bb8fb1c", + "modes.color.generic.bg.harsh": "6de0374e6de06c7ad98b41c5dfa4706e5b5e6a48", + "modes.color.generic.bg.severe": "549b7eab10cec9be9cf4cead9602c995d3b76ee9", + "modes.color.generic.bg.extreme": "b765f059b3f45865e9f4d699b7c96a262ae2eb7f", + "modes.color.generic.bg.frozen.delicate": "734254fa0b6378816450d533dd9732214f4e4387", + "modes.color.generic.bg.frozen.soft": "cf557d97fba8a96e53b129146331ac6df481a13e", + "modes.color.generic.content.extreme": "917607103ef9a925a368f98fca9d9d9d0fc7b284", + "modes.color.generic.content.harsh": "e79378d20e26a1643d4eecde76f20d03a8bf7b9d", + "modes.color.generic.content.firm": "96222be821f31a10345eebc3d789eefcb4d2c93f", + "modes.color.generic.content.moderate": "3634e1161f3aa65da43dcef1e4f603ffc3dcb370", + "modes.color.generic.content.muted": "6bdd0923c5b4d7d33c2ffc56cb96aa786bf8899a", + "modes.color.generic.content.soft": "db407062e982c6331eaa1a774289542f7c86b980", + "modes.color.generic.content.nought": "6fa93395f2124354cdc5ddf3694460e03677a2c7", + "modes.color.generic.fg.nought": "6fcf7b807f7ea51e9b8e20746fa8f94af3ed0193", + "modes.color.generic.fg.faint": "485a981c37ed535aad679ff471af2d6616b9b6f9", + "modes.color.generic.fg.delicate": "aa080dd0ff55c40d9a10d0db9735ee9d7eae1a00", + "modes.color.generic.fg.soft": "020c4ff926c7f5de410d3d50636f900e093b9b39", + "modes.color.generic.fg.moderate": "db80e0ce1e0c12ec08ffb10ff1cb08b8d9c7acf9", + "modes.color.generic.backdrop.nought": "ac75a1a5d4a4958ed297a4830bdae4dde4275366", + "modes.color.generic.backdrop.faint": "c6633f80c7203285118bf553fe81378e9ae689f0", + "modes.color.interactive.danger.active": "842599789add7bf5cfd5984400fd4fab1231dc7a", + "modes.color.interactive.danger.default": "3145ddef47eb42aa4bfa564a5d6c54e32f40f769", + "modes.color.interactive.danger.defaultAlt": "1e4ee330d7fbbb0dd33b6ab7de25005fcc76b3e3", + "modes.color.interactive.danger.hover": "4beb58c5254fbec3dd382d46c44215d3dd32ca3a", + "modes.color.interactive.danger.hoverAlt": "07013c2ce0950daf652f9f4f3d211f8f3cc628b8", + "modes.color.interactive.danger.hoverAlt2": "b6f0cfbae1e7a00e2f1a029c1021610e6d3374a4", + "modes.color.interactive.danger.withActive": "5174400729b7d6d1ce8cc5ef4116e8084265c318", + "modes.color.interactive.danger.withDefault": "9d87ed5c1360c66a5617b39a389ac566ed79234c", + "modes.color.interactive.dataEntry.default": "9eba9063394db1690f3e94d687baf2ba8fb1dcf6", + "modes.color.interactive.dataEntry.withActive": "08750027093b7170a0f5b5e89ce57290d3c5a510", + "modes.color.interactive.dataEntry.withActiveAlt": "2c5e4c74cd829cef92be03a56f3b67a53573b121", + "modes.color.interactive.dataEntry.withHover": "44843d1b63bd1f0d44fac60cee004b65fa9da660", + "modes.color.interactive.dataEntry.hoverAlt": "c1c5869110dc566992d113ba4177fef702c24191", + "modes.color.interactive.dataEntry.withDefault": "df63046867ebf61cf2aee869302e8ed8ad9f77ac", + "modes.color.interactive.dataEntry.defaultAlt": "231c9921acdfa4b275036533887dbf3b1acea851", + "modes.color.interactive.dataEntry.content": "b405958dc16d7317cca9a01fa5d39457a24e3e95", + "modes.color.interactive.dataEntry.contentAlt": "41071477d83386782a00d3086c68bf5b4b1bb79d", + "modes.color.interactive.dataEntry.frozen.withDefault": "8d8ea72c8c4e200759a2fe4b3517e2824def47d8", + "modes.color.interactive.focus.withDefault": "3bad52eec0fff62d34a991679f0d9746693b5062", + "modes.color.interactive.focus.content": "3a47f0004a3ec39d13f877dcb10e22404785ab9e", + "modes.color.interactive.focus.withDefaultAlt": "e32e836f84b17cf62f799c2acc67db412d758e42", + "modes.color.interactive.focus.default": "b464b9f17590d8247cd8653bf16180a145b7b17b", + "modes.color.interactive.inactive.default": "fe0c526aebe301f2a9bc59a0037905c3df617d6c", + "modes.color.interactive.inactive.mask": "00752df4e069f0c8f0e3add36cb620115c425a94", + "modes.color.interactive.inactive.defaultAlt": "8809f4865b3d792bdc614e60516bda28b7a9d45b", + "modes.color.interactive.inactive.content": "9959976523af1a688db998b067d231c269d50af2", + "modes.color.interactive.inactive.contentAlt": "1de5579a502a24e2c46151f81dbc715707d212b2", + "modes.color.interactive.inactive.icon": "ebc7e73e8922712256fc66143580f186e53c3cfb", + "modes.color.interactive.inactive.iconAlt": "5437a401cb92f6417374a66aae9cda65e38d8305", + "modes.color.interactive.inactive.frozen.defaultAlt": "d972e572f9efee5e80aa40ce24011bec25c6b1d9", + "modes.color.interactive.monochrome.frozen.active": "c2f7a7583e2f98699077df6e1d8f2f89245fc956", + "modes.color.interactive.monochrome.frozen.activeAlt": "88ec5826eb83ff215cdf7a86a485c924152b034b", + "modes.color.interactive.monochrome.frozen.default": "1eb7fb4dd6d6578f8125da2953ad1e6033715874", + "modes.color.interactive.monochrome.frozen.defaultAlt": "5edbe64b4a3c06f24ddbf98ffc566c21493d436c", + "modes.color.interactive.monochrome.frozen.hoverAlt": "aefe6356c87406e87d23f480460e115de4e7d60f", + "modes.color.interactive.monochrome.frozen.withActive": "a6d7e8d0837813abb73ec96e63f5beadacda9f2b", + "modes.color.interactive.monochrome.frozen.withHover": "cd2b7df92e8f00d93d803b86576e02d2ee0e8b95", + "modes.color.interactive.monochrome.frozen.withHoverAlt": "0eb8257a2cdb69b9208cb1eba4bcf0344a7478a4", + "modes.color.interactive.monochrome.generic.active": "439bb54c8db531063615e9e12cfb47905ea252a4", + "modes.color.interactive.monochrome.generic.activeAlt": "0d492c07f35a1c3a267fd6146c35adb13ac5567a", + "modes.color.interactive.monochrome.generic.default": "ded4c6aa5f7f2edd0d3fa2ed77ec9d7077e409df", + "modes.color.interactive.monochrome.generic.defaultAlt": "c7b7391aa602565f0251eb14be0fae29df4c4fdc", + "modes.color.interactive.monochrome.generic.hoverAlt": "09feeb0e8ad5d18cccdc6843160d4d8e14e9a079", + "modes.color.interactive.monochrome.generic.hover": "9fab741c2fd0388115eb335b7ab91f0dc4a628ab", + "modes.color.interactive.monochrome.generic.withActive": "887389d805161efbd1f2f90fbee941a9e0d5a6eb", + "modes.color.interactive.monochrome.generic.withActiveAlt": "d8ec92fae1f72eb5a3da4036c8429fdeaa094453", + "modes.color.interactive.monochrome.generic.withDefault": "e20ab26dc36d43d60f4874550bceefb3a6981b71", + "modes.color.interactive.monochrome.generic.withHover": "6010d79dc384cae6a1c7fb780e88ab15fb431c52", + "modes.color.interactive.monochrome.generic.frozen.active": "5b97046c0bde2c5eed575e59774f61e7443b0016", + "modes.color.interactive.monochrome.marketing.withActive": "e2f3afa487694c43068b7d71d50e598dee94f1f9", + "modes.color.interactive.monochrome.marketing.active": "89ed28924a24e1382d25810d4aab503b7ac116bd", + "modes.color.interactive.monochrome.subtle.defaultAlt": "faf188f63a785e581e56e9f117e3f9a82f9245ec", + "modes.color.interactive.monochrome.subtle.default": "c4f2d77b7d7840161f4727862eecb508033b05cc", + "modes.color.interactive.primary.active": "d9ad6b91dfbd141d672ad6bd5b1c74e24ea8f2a5", + "modes.color.interactive.primary.default": "15a7d0d6b132f565a79c64874c0bd825c8847b27", + "modes.color.interactive.primary.defaultAlt": "8014117e78d0f5ff5da146a8d5b6d5ed4aaf2291", + "modes.color.interactive.primary.hover": "355113a82fba89b2018345964a233846442541da", + "modes.color.interactive.primary.hoverAlt": "38297b67dc09226cd26389a94caf516aad5e67fe", + "modes.color.interactive.primary.withActive": "8ec5643b092fbf06f3703f57f602b04bfaf15bd0", + "modes.color.interactive.primary.withDefault": "2269fd481a514095909731e5af243f09f802bcdb", + "modes.color.interactive.primary.withHover": "41d9a824c9bcc7061b4f387119ae510fdd6df938", + "modes.color.interactive.primary.frozen.active": "06523d24606d799f33b925d093ce951741be732e", + "modes.color.interactive.primary.frozen.default": "d585ddc3d4f8cf11cbe896f6d0d5b194395d6fdc", + "modes.color.interactive.primary.frozen.defaultAlt": "927aba77e8cb9d59716e8a9b1522a5ddc29142cb", + "modes.color.interactive.primary.frozen.hover": "5e7bd4ad479760cc2329a7e6c06cd58b0e5bf99a", + "modes.color.interactive.primary.frozen.hoverAlt": "ae3a0d6b408c61742b29191019a7a0795456887d", + "modes.color.interactive.primary.frozen.nav.hover": "3bef775b0cb23f3d3ece15a597e852953e73a0ce", + "modes.color.interactive.primary.frozen.nav.label-hover": "add25b651fab7bce586a2864ccb0e6b0e92b50f2", + "modes.color.interactive.primary.frozen.table.default": "b8fc1ce429b89d25076d6b97c48bcc228f7c0c08", + "modes.color.interactive.progress.bg": "30c14cd0017e0a3a32be14e610f1bc84e528adad", + "modes.color.interactive.progress.bgAlt": "660ee5f53f893a98f65b03f5267c6657909b3e8a", + "modes.color.interactive.progress.frozen.bg": "e83414fdf9dda84fe762b07bdaefc152e709f055", + "modes.color.status.ai.default": "ceaacdb03620c4e36b8146280d3184eb8bbff8d2", + "modes.color.status.ai.defaultAlt": "b00eaa03c3766fa865821a37034c3e440107daf6", + "modes.color.status.generic.default": "55559de090799ef8c45e1cffc77e010c95a5c755", + "modes.color.status.caution.alt": "2f58e9421cb62473cb47df0472346c7a274b9395", + "modes.color.status.caution.default": "03afead0cd6f3af10ceb3699536600dfee498da5", + "modes.color.status.caution.defaultAlt": "f73fb33a2139620189cd6301e0fc7602e082ab42", + "modes.color.status.caution.hover": "69180cc0a150d04b5d781b749577af19573a4dfa", + "modes.color.status.caution.hoverAlt": "82c666d189c52b4c61c46462e762911c256dd819", + "modes.color.status.caution.text": "3a9d5af603968daec196498515dfcc1c7650a28f", + "modes.color.status.caution.frozen.default": "17a00342578d787abefb49a72f12eca36e42fcfd", + "modes.color.status.content.withDefault": "47b3d6384bd749a28eb32ea8ebe7133564739381", + "modes.color.status.content.withDefaultAlt": "08ac71f91a1fcfb91564b2c214ec07cb16fce429", + "modes.color.status.content.withHover": "92523de735de33186ba4c7e13274c712e24acacd", + "modes.color.status.content.withHoverAlt": "550d772ea9b89e5de0759850f9af62ddd7a117a4", + "modes.color.status.inactive.default": "fef0c621f6786f4ec59e81b17432a0cdc9d618e1", + "modes.color.status.inactive.withDefault": "7d45cb6d75f36c5fe8b6f01966d83c557f61abf3", + "modes.color.status.info.alt": "41897d3a66433a70a063ba116a4944b561fd6581", + "modes.color.status.info.default": "e0c361a99771ec7b9c9f54c254c570eea83b4466", + "modes.color.status.info.defaultAlt": "73134791411d491e0608c01cae6764b18e91b67e", + "modes.color.status.info.hover": "36a0b805f5431402dbc381a5eae064145d024102", + "modes.color.status.info.hoverAlt": "9c6be1b11d03c97d0447229bb0c1e201dbcabc75", + "modes.color.status.info.frozen.default": "8016081e6bd71419a5447a38dd1ea4d68283d4a5", + "modes.color.status.negative.alt": "1844cf4a9a22afda608d3079098825a566cccc06", + "modes.color.status.negative.default": "a8616fc8aff54b36ed861ae9118b44d66e754393", + "modes.color.status.negative.defaultAlt": "46edd7804a2955aeee2f8bbcc24b034ac67b1946", + "modes.color.status.negative.hover": "54db080afc61d960e4f6ad7f4d1dc5b370413266", + "modes.color.status.negative.hoverAlt": "99ace35cdeb1bc8ff9c6a70d0addd9e12dd65ef4", + "modes.color.status.negative.text": "c713aa2c5d7e60ab281e78fa2c3c34932f5dac8d", + "modes.color.status.neutral.alt": "4593accf1d91977a2786fa18ff7fdb08742afdb9", + "modes.color.status.neutral.default": "d060cb951a6c9985cc11545706c29a167c81f537", + "modes.color.status.neutral.defaultAlt": "11ba69ae67ca72528dcb8f4b2309b64017e9fad0", + "modes.color.status.neutral.hover": "75430d96876853c9540f0996eeae1f68068eb207", + "modes.color.status.neutral.hoverAlt": "6c8ad3d9bed5656800b181fff37e6bb54fe85be8", + "modes.color.status.neutral.frozen.default": "755f12aaa1435be3aa6b5222fada37205487a6bc", + "modes.color.status.neutral.frozen.hover": "dddcc80d07f460a5a2e06580c0231eaf9c026f4e", + "modes.color.status.positive.alt": "cda3cbff1550a8ef9b0f7fd07d9b6caf87fb0bc5", + "modes.color.status.positive.default": "33e57e77e60a7e032ba802856a3ca66896675570", + "modes.color.status.positive.defaultAlt": "487b50bfc92b5b1575081419b84bd3aafa16c49f", + "modes.color.status.positive.hover": "0705b821d04cdb73659c906462977dff185b1c0b", + "modes.color.status.positive.hoverAlt": "cc20b78be580143e3c48aa7a8bc0e78299c7cc23", + "modes.color.status.callout.defaultAlt": "71e207d65e4e4b2bc5278901e46fc1f32c75d514", + "modes.color.status.callout.hoverAlt": "535d142dc19f9fa3ded556e4c9f48a89bc731be0", + "modes.color.status.reviews.default": "9d192fd3843b352796d9b32f4a287ff2534079c3", + "modes.color.status.reviews.hover": "ba35bfc3dc5cc1e269c6d4840f8d3ba2668872c2", + "modes.color.status.reviews.frozen.default": "a8b5addf54a20e41a6a8390b224d756e90dbdb4d", + "modes.color.status.reviews.frozen.hover": "1e0ae01e18e2348df26bea4b5cee1d8d94072de8", + "modes.color.modifier.contrastLess": "7aca5a3b336cadb2696c48c5f7f69563fe0edd59", + "modes.color.modifier.contrastMore": "0088135ec931a1927de7ec7cc9c3b743cfdfe568" + }, + "group": "Mode" + }, + { + "id": "07891e7130a78045358223c4ec2c620fe164d5d6", + "name": "Dark", + "$figmaStyleReferences": {}, + "selectedTokenSets": { + "primitives": "source", + "modes/dark": "enabled" + }, + "$figmaCollectionId": "VariableCollectionId:89711:6927", + "$figmaModeId": "89711:1", + "$figmaVariableReferences": { + "modes.color.none": "f1a023bc3bbfc5335e65ade4b6d450f6f3191b1b", + "modes.color.brand.default": "94e67212e52b0a2ba01c97dc32dbea92f8e1601b", + "modes.color.brand.defaultAlt": "3cb3b5868bd6def2c7123c49437aaafed4ace887", + "modes.color.brand.withDefaultAlt": "36809d5c40f56404d81fbe4327a9cb427e77022a", + "modes.color.brand.copilot.AIIdentifier.default": "4c3f864d595cc83b34a71330e96363b6b7754eae", + "modes.color.brand.copilot.AIIdentifier.withDefault": "a9ffa309e0e6bf186f68fb17024a0e02cca6e8f0", + "modes.color.brand.copilot.noBg.star": "c9bdc0e31eab36c21cf750ed8c789c3f6f78016f", + "modes.color.brand.copilot.noBg.mono": "19888467fc8c8aa99475050ed369c2bd7daf1407", + "modes.color.brand.copilot.withBg.S": "5bc2ed51fe82549d64c11052157f8edfbf05b107", + "modes.color.brand.copilot.withBg.star": "f990f25e2b4a4afa3f72073a2995be1945ad80d3", + "modes.color.brand.copilot.withBg.bg": "281e72a2b5b20ab27f449399f9a1d689195c3468", + "modes.color.custom.default": "12e4ccc8df1dcccc92e71c4e215e42a3ac5cfe49", + "modes.color.custom.frozen": "4ad18ac1ad90650f3c33b64d050605fa4bd9f19d", + "modes.color.generic.bg.nought": "e28a5842ad93f9c83628fa9b247333193197d97f", + "modes.color.generic.bg.faint": "042e9ce16ad97cd71261ae564c3a72bbb64333fd", + "modes.color.generic.bg.delicate": "70e63935aea8dd8e91953514f0c2b6d0dca4acd4", + "modes.color.generic.bg.soft": "99472bff102d9a68dabd878046ab44cb8fecdb9f", + "modes.color.generic.bg.moderate": "4ba179718776a65a35e32344b118f645abd5ecf2", + "modes.color.generic.bg.firm": "79f755bdb2a95958ec3bae9cfbbd672e0bb8fb1c", + "modes.color.generic.bg.harsh": "6de0374e6de06c7ad98b41c5dfa4706e5b5e6a48", + "modes.color.generic.bg.severe": "549b7eab10cec9be9cf4cead9602c995d3b76ee9", + "modes.color.generic.bg.extreme": "b765f059b3f45865e9f4d699b7c96a262ae2eb7f", + "modes.color.generic.bg.frozen.soft": "cf557d97fba8a96e53b129146331ac6df481a13e", + "modes.color.generic.bg.frozen.delicate": "734254fa0b6378816450d533dd9732214f4e4387", + "modes.color.generic.content.extreme": "917607103ef9a925a368f98fca9d9d9d0fc7b284", + "modes.color.generic.content.harsh": "e79378d20e26a1643d4eecde76f20d03a8bf7b9d", + "modes.color.generic.content.firm": "96222be821f31a10345eebc3d789eefcb4d2c93f", + "modes.color.generic.content.moderate": "3634e1161f3aa65da43dcef1e4f603ffc3dcb370", + "modes.color.generic.content.muted": "6bdd0923c5b4d7d33c2ffc56cb96aa786bf8899a", + "modes.color.generic.content.soft": "db407062e982c6331eaa1a774289542f7c86b980", + "modes.color.generic.content.nought": "6fa93395f2124354cdc5ddf3694460e03677a2c7", + "modes.color.generic.fg.nought": "6fcf7b807f7ea51e9b8e20746fa8f94af3ed0193", + "modes.color.generic.fg.faint": "485a981c37ed535aad679ff471af2d6616b9b6f9", + "modes.color.generic.fg.delicate": "aa080dd0ff55c40d9a10d0db9735ee9d7eae1a00", + "modes.color.generic.fg.soft": "020c4ff926c7f5de410d3d50636f900e093b9b39", + "modes.color.generic.fg.moderate": "db80e0ce1e0c12ec08ffb10ff1cb08b8d9c7acf9", + "modes.color.generic.backdrop.nought": "ac75a1a5d4a4958ed297a4830bdae4dde4275366", + "modes.color.generic.backdrop.faint": "c6633f80c7203285118bf553fe81378e9ae689f0", + "modes.color.interactive.danger.active": "842599789add7bf5cfd5984400fd4fab1231dc7a", + "modes.color.interactive.danger.default": "3145ddef47eb42aa4bfa564a5d6c54e32f40f769", + "modes.color.interactive.danger.defaultAlt": "1e4ee330d7fbbb0dd33b6ab7de25005fcc76b3e3", + "modes.color.interactive.danger.hover": "4beb58c5254fbec3dd382d46c44215d3dd32ca3a", + "modes.color.interactive.danger.hoverAlt": "07013c2ce0950daf652f9f4f3d211f8f3cc628b8", + "modes.color.interactive.danger.hoverAlt2": "b6f0cfbae1e7a00e2f1a029c1021610e6d3374a4", + "modes.color.interactive.danger.withActive": "5174400729b7d6d1ce8cc5ef4116e8084265c318", + "modes.color.interactive.danger.withDefault": "9d87ed5c1360c66a5617b39a389ac566ed79234c", + "modes.color.interactive.dataEntry.default": "9eba9063394db1690f3e94d687baf2ba8fb1dcf6", + "modes.color.interactive.dataEntry.withActive": "08750027093b7170a0f5b5e89ce57290d3c5a510", + "modes.color.interactive.dataEntry.withActiveAlt": "2c5e4c74cd829cef92be03a56f3b67a53573b121", + "modes.color.interactive.dataEntry.withHover": "44843d1b63bd1f0d44fac60cee004b65fa9da660", + "modes.color.interactive.dataEntry.hoverAlt": "c1c5869110dc566992d113ba4177fef702c24191", + "modes.color.interactive.dataEntry.withDefault": "df63046867ebf61cf2aee869302e8ed8ad9f77ac", + "modes.color.interactive.dataEntry.defaultAlt": "231c9921acdfa4b275036533887dbf3b1acea851", + "modes.color.interactive.dataEntry.content": "b405958dc16d7317cca9a01fa5d39457a24e3e95", + "modes.color.interactive.dataEntry.contentAlt": "41071477d83386782a00d3086c68bf5b4b1bb79d", + "modes.color.interactive.dataEntry.frozen.withDefault": "8d8ea72c8c4e200759a2fe4b3517e2824def47d8", + "modes.color.interactive.focus.withDefault": "3bad52eec0fff62d34a991679f0d9746693b5062", + "modes.color.interactive.focus.withDefaultAlt": "e32e836f84b17cf62f799c2acc67db412d758e42", + "modes.color.interactive.focus.default": "b464b9f17590d8247cd8653bf16180a145b7b17b", + "modes.color.interactive.focus.content": "3a47f0004a3ec39d13f877dcb10e22404785ab9e", + "modes.color.interactive.inactive.default": "fe0c526aebe301f2a9bc59a0037905c3df617d6c", + "modes.color.interactive.inactive.mask": "00752df4e069f0c8f0e3add36cb620115c425a94", + "modes.color.interactive.inactive.defaultAlt": "8809f4865b3d792bdc614e60516bda28b7a9d45b", + "modes.color.interactive.inactive.content": "9959976523af1a688db998b067d231c269d50af2", + "modes.color.interactive.inactive.contentAlt": "1de5579a502a24e2c46151f81dbc715707d212b2", + "modes.color.interactive.inactive.icon": "ebc7e73e8922712256fc66143580f186e53c3cfb", + "modes.color.interactive.inactive.iconAlt": "5437a401cb92f6417374a66aae9cda65e38d8305", + "modes.color.interactive.inactive.frozen.defaultAlt": "d972e572f9efee5e80aa40ce24011bec25c6b1d9", + "modes.color.interactive.monochrome.frozen.active": "c2f7a7583e2f98699077df6e1d8f2f89245fc956", + "modes.color.interactive.monochrome.frozen.activeAlt": "88ec5826eb83ff215cdf7a86a485c924152b034b", + "modes.color.interactive.monochrome.frozen.default": "1eb7fb4dd6d6578f8125da2953ad1e6033715874", + "modes.color.interactive.monochrome.frozen.defaultAlt": "5edbe64b4a3c06f24ddbf98ffc566c21493d436c", + "modes.color.interactive.monochrome.frozen.hoverAlt": "aefe6356c87406e87d23f480460e115de4e7d60f", + "modes.color.interactive.monochrome.frozen.withActive": "a6d7e8d0837813abb73ec96e63f5beadacda9f2b", + "modes.color.interactive.monochrome.frozen.withHover": "cd2b7df92e8f00d93d803b86576e02d2ee0e8b95", + "modes.color.interactive.monochrome.frozen.withHoverAlt": "0eb8257a2cdb69b9208cb1eba4bcf0344a7478a4", + "modes.color.interactive.monochrome.generic.active": "439bb54c8db531063615e9e12cfb47905ea252a4", + "modes.color.interactive.monochrome.generic.activeAlt": "0d492c07f35a1c3a267fd6146c35adb13ac5567a", + "modes.color.interactive.monochrome.generic.default": "ded4c6aa5f7f2edd0d3fa2ed77ec9d7077e409df", + "modes.color.interactive.monochrome.generic.defaultAlt": "c7b7391aa602565f0251eb14be0fae29df4c4fdc", + "modes.color.interactive.monochrome.generic.hoverAlt": "09feeb0e8ad5d18cccdc6843160d4d8e14e9a079", + "modes.color.interactive.monochrome.generic.hover": "9fab741c2fd0388115eb335b7ab91f0dc4a628ab", + "modes.color.interactive.monochrome.generic.withActive": "887389d805161efbd1f2f90fbee941a9e0d5a6eb", + "modes.color.interactive.monochrome.generic.withActiveAlt": "d8ec92fae1f72eb5a3da4036c8429fdeaa094453", + "modes.color.interactive.monochrome.generic.withDefault": "e20ab26dc36d43d60f4874550bceefb3a6981b71", + "modes.color.interactive.monochrome.generic.withHover": "6010d79dc384cae6a1c7fb780e88ab15fb431c52", + "modes.color.interactive.monochrome.generic.frozen.active": "5b97046c0bde2c5eed575e59774f61e7443b0016", + "modes.color.interactive.monochrome.marketing.active": "89ed28924a24e1382d25810d4aab503b7ac116bd", + "modes.color.interactive.monochrome.marketing.withActive": "e2f3afa487694c43068b7d71d50e598dee94f1f9", + "modes.color.interactive.monochrome.subtle.defaultAlt": "faf188f63a785e581e56e9f117e3f9a82f9245ec", + "modes.color.interactive.monochrome.subtle.default": "c4f2d77b7d7840161f4727862eecb508033b05cc", + "modes.color.interactive.primary.active": "d9ad6b91dfbd141d672ad6bd5b1c74e24ea8f2a5", + "modes.color.interactive.primary.default": "15a7d0d6b132f565a79c64874c0bd825c8847b27", + "modes.color.interactive.primary.defaultAlt": "8014117e78d0f5ff5da146a8d5b6d5ed4aaf2291", + "modes.color.interactive.primary.hover": "355113a82fba89b2018345964a233846442541da", + "modes.color.interactive.primary.hoverAlt": "38297b67dc09226cd26389a94caf516aad5e67fe", + "modes.color.interactive.primary.withActive": "8ec5643b092fbf06f3703f57f602b04bfaf15bd0", + "modes.color.interactive.primary.withDefault": "2269fd481a514095909731e5af243f09f802bcdb", + "modes.color.interactive.primary.withHover": "41d9a824c9bcc7061b4f387119ae510fdd6df938", + "modes.color.interactive.primary.frozen.active": "06523d24606d799f33b925d093ce951741be732e", + "modes.color.interactive.primary.frozen.default": "d585ddc3d4f8cf11cbe896f6d0d5b194395d6fdc", + "modes.color.interactive.primary.frozen.defaultAlt": "927aba77e8cb9d59716e8a9b1522a5ddc29142cb", + "modes.color.interactive.primary.frozen.hover": "5e7bd4ad479760cc2329a7e6c06cd58b0e5bf99a", + "modes.color.interactive.primary.frozen.hoverAlt": "ae3a0d6b408c61742b29191019a7a0795456887d", + "modes.color.interactive.primary.frozen.nav.hover": "3bef775b0cb23f3d3ece15a597e852953e73a0ce", + "modes.color.interactive.primary.frozen.nav.label-hover": "add25b651fab7bce586a2864ccb0e6b0e92b50f2", + "modes.color.interactive.primary.frozen.table.default": "b8fc1ce429b89d25076d6b97c48bcc228f7c0c08", + "modes.color.interactive.progress.bg": "30c14cd0017e0a3a32be14e610f1bc84e528adad", + "modes.color.interactive.progress.bgAlt": "660ee5f53f893a98f65b03f5267c6657909b3e8a", + "modes.color.interactive.progress.frozen.bg": "e83414fdf9dda84fe762b07bdaefc152e709f055", + "modes.color.status.ai.default": "ceaacdb03620c4e36b8146280d3184eb8bbff8d2", + "modes.color.status.ai.defaultAlt": "b00eaa03c3766fa865821a37034c3e440107daf6", + "modes.color.status.generic.default": "55559de090799ef8c45e1cffc77e010c95a5c755", + "modes.color.status.caution.alt": "2f58e9421cb62473cb47df0472346c7a274b9395", + "modes.color.status.caution.default": "03afead0cd6f3af10ceb3699536600dfee498da5", + "modes.color.status.caution.defaultAlt": "f73fb33a2139620189cd6301e0fc7602e082ab42", + "modes.color.status.caution.hover": "69180cc0a150d04b5d781b749577af19573a4dfa", + "modes.color.status.caution.hoverAlt": "82c666d189c52b4c61c46462e762911c256dd819", + "modes.color.status.caution.text": "3a9d5af603968daec196498515dfcc1c7650a28f", + "modes.color.status.caution.frozen.default": "17a00342578d787abefb49a72f12eca36e42fcfd", + "modes.color.status.content.withDefault": "47b3d6384bd749a28eb32ea8ebe7133564739381", + "modes.color.status.content.withDefaultAlt": "08ac71f91a1fcfb91564b2c214ec07cb16fce429", + "modes.color.status.content.withHover": "92523de735de33186ba4c7e13274c712e24acacd", + "modes.color.status.content.withHoverAlt": "550d772ea9b89e5de0759850f9af62ddd7a117a4", + "modes.color.status.inactive.default": "fef0c621f6786f4ec59e81b17432a0cdc9d618e1", + "modes.color.status.inactive.withDefault": "7d45cb6d75f36c5fe8b6f01966d83c557f61abf3", + "modes.color.status.info.alt": "41897d3a66433a70a063ba116a4944b561fd6581", + "modes.color.status.info.default": "e0c361a99771ec7b9c9f54c254c570eea83b4466", + "modes.color.status.info.defaultAlt": "73134791411d491e0608c01cae6764b18e91b67e", + "modes.color.status.info.hover": "36a0b805f5431402dbc381a5eae064145d024102", + "modes.color.status.info.hoverAlt": "9c6be1b11d03c97d0447229bb0c1e201dbcabc75", + "modes.color.status.info.frozen.default": "8016081e6bd71419a5447a38dd1ea4d68283d4a5", + "modes.color.status.negative.alt": "1844cf4a9a22afda608d3079098825a566cccc06", + "modes.color.status.negative.default": "a8616fc8aff54b36ed861ae9118b44d66e754393", + "modes.color.status.negative.defaultAlt": "46edd7804a2955aeee2f8bbcc24b034ac67b1946", + "modes.color.status.negative.hover": "54db080afc61d960e4f6ad7f4d1dc5b370413266", + "modes.color.status.negative.hoverAlt": "99ace35cdeb1bc8ff9c6a70d0addd9e12dd65ef4", + "modes.color.status.negative.text": "c713aa2c5d7e60ab281e78fa2c3c34932f5dac8d", + "modes.color.status.neutral.alt": "4593accf1d91977a2786fa18ff7fdb08742afdb9", + "modes.color.status.neutral.default": "d060cb951a6c9985cc11545706c29a167c81f537", + "modes.color.status.neutral.defaultAlt": "11ba69ae67ca72528dcb8f4b2309b64017e9fad0", + "modes.color.status.neutral.hover": "75430d96876853c9540f0996eeae1f68068eb207", + "modes.color.status.neutral.hoverAlt": "6c8ad3d9bed5656800b181fff37e6bb54fe85be8", + "modes.color.status.neutral.frozen.default": "755f12aaa1435be3aa6b5222fada37205487a6bc", + "modes.color.status.neutral.frozen.hover": "dddcc80d07f460a5a2e06580c0231eaf9c026f4e", + "modes.color.status.positive.alt": "cda3cbff1550a8ef9b0f7fd07d9b6caf87fb0bc5", + "modes.color.status.positive.default": "33e57e77e60a7e032ba802856a3ca66896675570", + "modes.color.status.positive.defaultAlt": "487b50bfc92b5b1575081419b84bd3aafa16c49f", + "modes.color.status.positive.hover": "0705b821d04cdb73659c906462977dff185b1c0b", + "modes.color.status.positive.hoverAlt": "cc20b78be580143e3c48aa7a8bc0e78299c7cc23", + "modes.color.status.callout.defaultAlt": "71e207d65e4e4b2bc5278901e46fc1f32c75d514", + "modes.color.status.callout.hoverAlt": "535d142dc19f9fa3ded556e4c9f48a89bc731be0", + "modes.color.status.reviews.default": "9d192fd3843b352796d9b32f4a287ff2534079c3", + "modes.color.status.reviews.hover": "ba35bfc3dc5cc1e269c6d4840f8d3ba2668872c2", + "modes.color.status.reviews.frozen.default": "a8b5addf54a20e41a6a8390b224d756e90dbdb4d", + "modes.color.status.reviews.frozen.hover": "1e0ae01e18e2348df26bea4b5cee1d8d94072de8", + "modes.color.modifier.contrastLess": "7aca5a3b336cadb2696c48c5f7f69563fe0edd59", + "modes.color.modifier.contrastMore": "0088135ec931a1927de7ec7cc9c3b743cfdfe568" + }, + "group": "Mode" + }, + { + "id": "46b9f3e4ec7626959bf5dff2899f694fe13182aa", + "name": "Product-Large", + "$figmaStyleReferences": {}, + "selectedTokenSets": { + "screensize/large": "enabled", + "global/borderwidth": "enabled", + "global/radius": "enabled", + "global/size": "enabled", + "global/space": "enabled", + "global/shadow": "enabled", + "global/typography": "enabled", + "primitives": "source", + "components/badge": "enabled", + "components/button": "enabled", + "components/container": "enabled", + "components/focus": "enabled", + "components/form": "enabled", + "components/link": "enabled", + "components/logo": "enabled", + "components/nav": "enabled", + "components/page": "enabled", + "components/popover": "enabled", + "components/progress": "enabled", + "components/profile": "enabled", + "components/tab": "enabled", + "components/table": "enabled", + "context/product": "enabled", + "components/status": "enabled" + }, + "$figmaCollectionId": "VariableCollectionId:91874:43409", + "$figmaModeId": "91874:0", + "$figmaVariableReferences": { + "button.color.typical.primary.bg-active": "d73bba74a7bfcb13765ab2fd9bf5254f1a83a228", + "button.color.typical.primary.bg-enabled": "ecc071f8d0bd78a54c1388731b258c4ca0084520", + "button.color.typical.primary.bg-hover": "cb1aee06e73d3ee619602b44201d3463c961148d", + "button.color.typical.secondary.bg-active": "469ef15554a2981f40b84e6c2994150305e23891", + "button.color.typical.secondary.bg-hover": "b8590daeedee66cbb5b735906e870175f91f63c3", + "button.color.typical.secondary.border-active": "0972222e0dacc76147b5fa8221aea071e7aa98cf", + "button.color.typical.secondary.border-enabled": "87f162c000f633b14713b48e765d600e94315a3f", + "button.color.typical.secondary.border-hover": "008980bf3db89ad7235c926a1385413b917134ed", + "button.color.typical.secondary.label-enabled": "1f8682243adb9559d59612d257949a1bed567b9a", + "button.color.typical.secondary.label-hover": "aab193b37bfc5a742fabc59ee3a8e75eeb0b909b", + "button.color.typical.secondary.label-active": "2478dea8ee9f689b55a8a1b70ee605fe04d7b902", + "button.color.typical.subtle.bg-active": "de027f11704af79dae323a11a65eea1cf93a8dd3", + "button.color.typical.subtle.bg-hover": "45718803a7a6f5f5e3cdfdae372bcf399b2d611b", + "button.color.typical.subtle.label-active": "247fe156d7c62c661287785b902d37884351a18c", + "button.color.typical.subtle.label-enabled": "9072355014b5e96431ffd79d180b77363c4ac64a", + "button.color.typical.subtle.label-hover": "92c601518ccc7a750e60ac5a27016ccc8bcf4db5", + "button.color.typical.tertiary.bg-active": "0cdeec1baee884371690b794cf334c1c58798c63", + "button.color.typical.tertiary.bg-hover": "a72c2b52de96848da07176ecd79c1e3982df851d", + "button.color.typical.tertiary.border-active": "343304e18f39b2e5aa679c68f082cc54367ecca0", + "button.color.typical.tertiary.label-enabled": "af8918e7910c3a8732526c70197a178ae4c119ec", + "button.color.typical.tertiary.bg-enabled": "3dcb0d649cc7ee11ea3c88f011bcf726c897d449", + "button.color.typical.tertiary.label-hover": "beecf025dd3c88b151f351579f9bdecc245c52d4", + "button.color.typical.tertiary.label-active": "755faa1ea3687787885ab3d6eef6818b6b7fa4cf", + "button.color.typical.toggle.bg-active": "cd75b68b31addcb49478dafc72e0ab522dd36ba3", + "button.color.typical.toggle.bg-hover": "b2c265415e6713f05555ba660362d664be4a0c15", + "button.color.typical.toggle.border-enabled": "c56a31e3515daf36d770ea42453d550d3891ccaf", + "button.color.typical.toggle.label-active": "fb2b9da58241b710974fbcd0eea0550b4de12a0a", + "button.color.typical.toggle.label-enabled": "26b3dce982e71f456ba2f92c28227a5fede6c1c5", + "button.color.typical.toggle.label-hover": "4a4e47d595a2ab02a4cf2cde632fbafc05ed0a14", + "badge.color.notification.bg-default": "ad3b99b6645d78df0dd6958497783ead09a7e142", + "container.color.interactive.detailedicon.bg": "4b6f8eea2c965ba012603a55a04a04cae6aaf5e0", + "container.color.blockquote.border": "5db764470e64a30842ccd3f47cfa7dac6883c980", + "container.radius.card.moderate": "a85b4de7a53d1662eae6ecca1c08563e64e10a15", + "container.radius.card.curved": "2fb18e941f9fb54a7c2889f8b8ff41e4ae0ec3b8", + "container.radius.card.sweeping": "70ef3947b1bb16b305c286e0e7ee6e46f37e588c", + "container.radius.tile.moderate": "d0e6f493b132ee0f88d4934cecd273dd79f5c2b2", + "container.radius.tile.curved": "7db88544f369ed9a26549f25c1a65d13ad482fae", + "container.radius.tile.sweeping": "ef68353d8cedb18b027fcd7930d9f3edc0f80c13", + "container.radius.tileselect.moderate": "06d936df368eaaa8b79edc381feeb26c6500acf0", + "container.radius.tileselect.curved": "20e04cd4e2ecdb7ade63e3d664b7e26be07823a1", + "container.radius.tileselect.sweeping": "916146a71951437f4cd8c19cb23fe638bed5ab68", + "form.radius.checkbox": "eaec4ded50f994e7ceed299f5e737095b0050256", + "form.radius.texteditorfooter": "40d8db58a5be3a719ca2a0b0c3442be18942050a", + "form.radius.colorpicker": "0f42f5834874d05f2878c3129b47cae876487850", + "form.radius.dropdown": "f8b13cd84b8fab6c1611caa9b91fab95dc1df6d0", + "form.radius.fileupload": "505a977326b92e3d5d7294423fa54e3f4f8553a0", + "form.radius.fileselector": "5194653eb73c3dbdc8a9842198b063ce62375633", + "form.radius.input": "1b8cc21bdbdf9e0165cf3c07d70fc582ca5368e2", + "form.radius.validationbar": "d58c5bf1620aca7f5445956eab232c398a106e1d", + "form.color.calendar.bg-active": "4720658e790bd37e028977a7d01c2fc873fe2424", + "form.color.calendar.border-duration": "819172008382ab1d5059dd27fb8fcb451d921e55", + "form.color.calendar.bg-duration": "a16bff728a9a003402db04aec7b813fbb4bd6ce1", + "form.color.typical.border-enabled": "3029f124e1a5d4a703744dbd4fb34cb022aaec77", + "form.color.switch.bg-active": "ce1251804c65070fdaab00ed6621d61635ba51fc", + "form.color.switch.border-enabled": "aedb7374d5118ec49daa4b5963955e1191d9564f", + "form.color.switch.fg-enabled": "dbdd158d7af6257de31c7f45996e2d45bdb1baa5", + "link.color.typical.label-default": "e41145db82eaaf205570817a13b22dee3d02c04c", + "link.color.typical.label-hover": "cdf639c79cc2d78986a3f2792ac9f454a96c62c4", + "nav.color.item.bg-hover": "848af93c73466bf6a150c3586793016db77014a3", + "nav.color.item.label-hover": "012da2516033aa836529af960f93eab5d6906666", + "nav.radius.menumodal": "b14e6c31eadb905a0aada5cdb38819af475648bc", + "global.fontSize.adaptive.step-2": "44314edab6d687c6f1c2e69647563a7e56a2fcf4", + "global.fontSize.adaptive.step-1": "ca2cdba8c8e2dc9a016c91ffc96738b89c582c62", + "global.fontSize.adaptive.step0": "a30a868373f347e37b4df2d6a6ae7998d441e1f1", + "global.fontSize.adaptive.step1": "00ef09834b2e7ef9c0c4d030c4d24d92fe8ad5f2", + "global.fontSize.adaptive.step2": "1d778e97a6072f1ba14a5d9c4ed5ae9884e2f6f4", + "global.fontSize.adaptive.step3": "a0e0c9e912cb36ec0a6d255fed75f7608abc5dd2", + "global.fontSize.adaptive.step4": "099df81b8a94eea8a3faddf6c6382586b98f4da5", + "global.fontSize.adaptive.step5": "f5caab8d2233bfdf62d601912d0525a026598127", + "global.fontFamilies.sage-headline": "e7226ec79e2e57ce0559b2bdae66b517ec77e1d3", + "global.fontFamilies.sage-text": "ec8c3386dd01d0438a08401ce7e8a9eab0630519", + "popover.color.bg-active": "dc2dd96de119bc1a7b6cd7f3b2e2090f1d7831bc", + "popover.color.bg-activealt": "d01ba90620be933772db57b18c0e087a58985a98", + "popover.color.bg-hover": "2bb22e209751803082dfda2b4a5952e77aefe530", + "popover.color.label-activealt": "36a438d9fc6c524cc18008d28430c8c0aa301239", + "popover.color.label-hover": "65b11448c1cd42ddc62b7249fd146f9c78b81e9c", + "popover.color.label-enabled": "40060a0d39cd1441bd95e31c1e6a3fcfd43f3a32", + "progress.color.loader.bg-default": "9942537975dc6f8dab1b4373ad2997c7c39e8065", + "progress.color.loader.fg-default": "1228162d10254417ec4a275e91984409df44a3eb", + "status.color.label-default": "867ba5c4a8ed7434f3a481ed2e3266444b13eb1c", + "status.color.label-hover": "1502a4d36ca222ade1de748789a49394676b976a", + "status.color.error.bgAlt": "d148be733033e2b724188212ae7d78a6016426a9", + "status.color.info.bgAlt": "7623e995eddaf130e9e58bca59e85f25181633f0", + "status.color.info.bgAlt-default": "d8cc6951addc97749232bdfb2cb54c987fa57365", + "status.color.neutral.bgAlt": "52d65c07a7c2aa22badf56321b89620bc25f06f1", + "status.color.neutral.bg-default": "db13c51702081fc1df4b2430aebc10bf6ed26f7c", + "status.color.neutral.bg-hover": "354201f0b8988b103c2d959a65cdb3f4eab34982", + "status.color.neutral.border-default": "c0bfc43a5cf2437e5e3e58c640fc674012e4b11d", + "status.color.rating.bg-default": "2ca253f3c33b0595d3ca575eea21234d33ad293e", + "status.color.rating.bg-hover": "533b0fe14cc0883d889c1ecdbbe4edf1354ad210", + "status.color.rating.border-default": "5b3b0fe3ff286d065087b09e036bbdaafd855588", + "status.color.success.bgAlt": "82df6e2d686439ab70c610e52a36d8f9c9ab5939", + "status.color.warning.bgAlt": "d99551602e113bbb88150a5dfdf0867b6dadb8a8", + "status.color.warning.bgAlt-default": "9c9312936cc3637991d241bd3ee2922a3646f165", + "status.radius.pill": "ecfcbd56d1c07ba24b69f91f2f0a017a057ba3c0", + "tab.radius.M": "553fe1a26d9c1a1ccbff1a636c4fbee13279789f", + "tab.radius.L": "d0fa4522d4d623a7ca880177850c7db719af6a5c", + "tab.color.bg-active": "3d8c8eb4c47d4aea0477be5dc8229b42981f9383", + "tab.color.bg-hover": "5a423db0a74e578a55e9190169ed5706b8a008f4", + "tab.color.border-active": "a05b8f2c29911df079aaeb47c2ed00602fb849ed", + "tab.color.border-enabled": "ab9fa748bb5194e0fc3e265ea50d015bb014fd2d", + "tab.color.border-hover": "c5affbe1329789237c379a860684f3034b0933e7", + "table.color.header.harsh.bg-alt": "64381b36d62587948d8b25dbdde6fb153f3cfdc6", + "table.color.header.harsh.bg-default": "97a4973da1e0c7c897d51494939836e15c3dfe20", + "table.color.row.bg-activated": "b7f77b56ea065750a405344c81c2d76d55221676", + "table.color.row.bg-active": "a2acf7057139096c90e02dcc80013589ed8f1004", + "table.color.row.bg-alt": "0a82ad0f9ca42f2600b526896f0b316753996699", + "table.color.row.bg-hover": "50511c4672e130223031a2c62615d77a87d09ba8", + "table.color.row.label-active": "d981b9984ab6abb3bac19d34ecb48179566fc4fb", + "table.color.row.label-activated": "3014e365945e18a5ebc437d0ba7730577b496da1", + "button.color.video.primary.bg-enabled": "6f59ec78791cd546cd21a07051cb1156a2f131d5", + "button.color.video.primary.bg-hover": "92f977de52635d4af44834e4acf29c0d722b698d", + "button.color.video.primary.label-enabled": "e05763f4fb7fcad3939185e52c8fd69858ce7f34", + "button.color.video.primary.label-hover": "e8c1c7b438d0eb29a6a6bdfd54484281e0ffc166", + "button.borderwidth.tertiary": "91779584c898ee041c6a8dcd56270c93040b253f", + "button.space.tertiary.x.S": "5c16e064a29ca6eb4d720f4e228c0b7c82ec2585", + "button.space.tertiary.x.M": "9309b89573849935c91932d05db45dc9fc9934dc", + "button.space.tertiary.x.L": "886bae4c7441acebc39a030862bf84100010c35c", + "button.space.tertiary.icononly.x.S": "59fc4a4546d74708d665250bf7f8535ed5971fde", + "button.space.tertiary.icononly.x.M": "42d241456c4d6fb2dee9ee69a1e4f43e88cd66bc", + "button.space.tertiary.icononly.x.L": "55884e5ad5f702ac9957f4e37e2af4f7280f8f81", + "button.radius.tertiary.S": "649391cbf3256f38979214944de4292bd4900e1f", + "button.radius.tertiary.M": "deadd1076425b9fd520dbdddff289a636c35f839", + "button.radius.tertiary.L": "3cad80bb7d426572946410fcbc4be8f54c139883", + "form.color.switch.fg-active": "d4473ac50dea576c66c0c9620e915fc7f7bf5b18", + "progress.color.fg-default": "4533513cc279fa48e296b2a5bc8b54b527508322", + "global.fontSize.adaptive.step6": "15f234e1dd369afd59da5946c8e38d49f84c8b99", + "global.fontSize.adaptive.step7": "fe9d1662d81e3433ea60ea29e47bedcff6713d0d", + "global.fontSize.adaptive.step8": "ba568db17d2eaccf52fa6d763162d26fbe497b82", + "global.fontSize.adaptive.step9": "ef9f822c7c93c6bf692365b8a3f7c5c6051cad5d", + "global.fontSize.adaptive.step10": "7c1ccbb51f5bb73afc2c46f4ae18dd4663780742", + "global.size.breakpoint-min-width": "11fea4981ba36f253b7418d43fe449f5e804fc95", + "global.space.macroScale": "fbe65c255d4034d004dc832ca3070a12ce16722d", + "page.space.x.L": "61fe779fead2071bbfe86b64cf90c6cc8f13fee8", + "page.space.y.L": "ef8c2ba942d575097893e5a7b5938b5197e41243", + "global.borderwidth.scale": "6dac19533b6c095d2c97938020e7a45074cacacd", + "global.borderwidth.none": "43dbedf2a345872395a95d72965fbd8893624b40", + "global.borderwidth.XS": "b334b4b764fd28d2f3b57748f599cca99225d8e1", + "global.borderwidth.S": "dc9acc9cafc6f1f87c577ebc760b18e9f3f4d386", + "global.borderwidth.M": "659af74d1bb76b04607cc6f23ee446f65e64c0df", + "global.borderwidth.L": "48d631a3f574a5c9fc2ed14f6d78507963d0232c", + "global.borderwidth.XL": "cd4a33ccd30f5afda2a741606003e54392b8875c", + "global.radius.scale": "25779c0eb685464a505ccbca5e400285f3d54292", + "global.radius.none": "b9b0f28767800b7ea0b1b2148e460a589d568cf7", + "global.radius.circle": "063e41e495052e3b9cf91b390534ef49308d9cdf", + "global.radius.container.XXS": "e77774185cc4fab82d49a2b2f4d178fd7fc236d4", + "global.radius.container.XS": "763f699026c982de5143eb0d8fa955e1ab1334d6", + "global.radius.container.S": "b2443ec9b331090848c3de13fa1014335933633f", + "global.radius.container.SM": "288ddef9618d210349eb35cb830d77892ee923b3", + "global.radius.container.M": "7517affbc26c2f4f6c8e2458f7fff85e81aeb4c8", + "global.radius.container.L": "ab4c59c56c2f86db0ffbaf976f5d77f5da1883f0", + "global.radius.container.XL": "6dd677dc9ee68ab695ae573f42d07ac3aefee43d", + "global.radius.container.XXL": "233b05708e7dba549c493e33e0785244629f5f87", + "global.radius.container.XXXL": "1afaaf6df1728b16238f04c78fb5ba29202e6d46", + "global.radius.container.XXXXL": "a27988b005b603ceeb958bd96558145451f17aaf", + "global.radius.interactive.XS": "a5de21346396ccb19048941b7323fcb4d8ff1873", + "global.radius.interactive.XXS": "d8f4c931cfc3b7aa6534bf90346555fd7de8a10c", + "global.radius.interactive.S": "a546f7f00cb0a916e0b121663617a4c00355ecf2", + "global.radius.interactive.M": "e1070220ae5de5bfb3cb5e17022a430cbbfb5796", + "global.radius.interactive.L": "3b91adb09b8d945713a5fe026dd8a06446d9ef92", + "global.radius.interactive.XL": "3d7adc0e8cd4aedc86beb6cc76a303c951f02a3c", + "global.radius.interactive.XXL": "e8f8f2beb1260974c6d19b7d66dd785441b561ac", + "global.size.scale": "429f82853556b8b99d9d951fcde1d70de832f4a8", + "global.size.none": "788ed4fbcbe0d86bfe5b68fce34af566f261a5b7", + "global.size.container.M": "1f767617f85d97964506322bfa029084ba1b0b6d", + "global.size.container.L": "4d3d90d8b7cb9297526dda4b3aa1c04d4430106a", + "global.size.icon.S": "92fab08b49a7cc8eda3ccf37d96eae56f5f85183", + "global.size.icon.M": "8d6f69b0bce7bd6248a6f3ef1b898c0365d825e2", + "global.size.icon.L": "64e0984a734b9f342bacbfdd484cb561f6b519d2", + "global.size.icon.XL": "74ce4621432a5889f6e8097d45ad7a53ef680bc5", + "global.size.flex.XXS": "ba57c27ecf4ea90b8628302dc073a68ad99094dc", + "global.size.flex.XS": "9534663e81ea049e3d956c7714da841d4f8b6b11", + "global.size.flex.S": "7a942a3efadee9c0b578a0de9473ac04cdda1052", + "global.size.flex.M": "f6f1c27e6981c5f476acb2cede12d2f62a9afcc5", + "global.size.flex.L": "a8b3bfc84944cd8d7591d3286d8aa59114580c67", + "global.size.flex.XL": "2924690caf19c2ec628209e9cc89c7951020fa45", + "global.size.flex.XXL": "987572b3147b48554c11f2a6659d1a3d765b85ec", + "global.size.flex.XXXL": "03e1ad04caa5dda51ab34bad5c240ef9d5e2234b", + "global.size.flex.XXXXL": "3fff3daa5084309007fc64940ab30c5822962c16", + "global.size.macro.XXS": "3be3cb4c30c1f1697efe418954e0550c532cffac", + "global.size.macro.XS": "61761875b1984b99b1491d07d8023c254a64d22e", + "global.size.macro.S": "c9b49ed9f1b36288f027e6e6ab2676756ee7ac2a", + "global.size.macro.M": "cdfa9a15fac401deb393c07412c95cc4c2e9bbf3", + "global.size.macro.L": "7ead7e17739b897da5df8da3af0bde489bf2bd8f", + "global.size.macro.XL": "5f3951055bc1678971a3a4b1e98e08c428e35a1a", + "global.size.macro.XXL": "02992331be54fcd8f82d03b2c040c79b9c741cad", + "global.size.macro.XXXL": "9c01b469899ae2ca8d93ce6a60d6a388db1db9dd", + "global.size.macro.XXXXL": "1913e54d24adc465a37e252c8c1b8c989440fe97", + "global.size.micro.XXS": "d811dbc5fe238b9fe0d42ff02a892bafdde4b8bf", + "global.size.micro.XS": "b82ad5c50c4c8457b630d753bc6c4e72a4571629", + "global.size.micro.S": "d3ebfb028c5c71dc0c4e7dc2c291f4f71d68b27b", + "global.size.micro.M": "232d8c52997a8cf7c3bac23528b5a3d67929b0e8", + "global.size.micro.L": "4a175f79d95e038586891463b841c11cb9bc2db5", + "global.size.micro.XL": "24cb8a1d6b5845b347cec6e34b4b615aa783fc1d", + "global.size.micro.XXL": "2d1d82ac80a079ee3e8e346fce728e4ce3d0fc40", + "global.space.none": "7814806b844e49b11bc33c7eb77b3ea290ffd907", + "global.space.microScale": "21c974fd2b6732c069badf4911fa25d141d821f5", + "global.space.micro.XXS": "348b4bfdb0b33644bd7511d644fb49055254d4c3", + "global.space.micro.XS": "35f52473dd4b24fa53de48194543e62572aa82c3", + "global.space.micro.S": "5ac1a13bf46313fc46ffd6202fb1ef89b19a5c4c", + "global.space.micro.M": "42d8873786ff1e126f777dc5d9789e413a857ab1", + "global.space.micro.L": "482c2464cb12f38b75380247b938b192ddfa52cb", + "global.space.micro.XL": "6380be8a20655110c7033daad052c3b9276d9e78", + "global.space.micro.XXL": "d464676d7cc1d54cd3ab14dfc5deb037cf449aef", + "global.space.macro.XXXS": "be0af3b32d7138b608eeeb3945eeadba7df28f30", + "global.space.macro.XXS": "8dd747ab7b4188bc8c4d82257d81c92ad65bbaf0", + "global.space.macro.XS": "6ccbd3ba9220a0895722ebe83f2eb72d6da50afa", + "global.space.macro.S": "460f55b5bed55722b260d7c5b277a893c847cf46", + "global.space.macro.M": "c9f2e0e150ad79870a22a2ec444dced8024dba5c", + "global.space.macro.ML": "c3c318525df79ac16a8ab9ae91b98f47b0e63836", + "global.space.macro.L": "6faddc1bbf30654b9bdcbafbd7a7a881781b782f", + "global.space.macro.XL": "3d412117562afd0b1cba85f3155e95c3571506c7", + "global.space.macro.XXL": "648457b1a03a31a2867e74d641897bc403581e24", + "global.fontFamilies.sage-icons": "e5b555cde4f0a7e88c38140a232780b2424185c7", + "global.fontFamilies.sage-ui": "30919b14ac88218863209fb47395593ff6629af3", + "global.fontFamilies.other": "52d376e77553b95b6c69fdd78b91591469dd74fd", + "badge.color.notification.border-default": "a112681742f2249d163dbb838dc1e1609be39451", + "badge.color.notification.label-default": "9d8e60a759fca7de5b90b637aed4a5d68c4cfece", + "badge.size.micro.dot": "812a11d57aa383a35822500ca7657faaaeec29d3", + "badge.size.micro.numbered.min": "817e0a3632673afb20a2c9a80cc8f24981891073", + "badge.size.micro.numbered.max": "0cebf54f1d5344f8fdd77480d5327d73e9e90242", + "badge.size.standard.min": "8e3d70ec2d2f8550e3d5a2c8e356e1c038c1f2ff", + "badge.size.standard.max": "8d965fa8f86b65cc8a520022e3086c7552e05b45", + "badge.radius.badge": "042281b3fd62ead45e350e419c118ea99f1d16ea", + "badge.space.x.S": "c763e9bbcb3e7870a98acb898740bfb17f0a13fb", + "badge.space.x.M": "fa5c796dcba7fe25521398f4ec7239b7797f4159", + "badge.space.y.S": "fb1b5c2a1e237a284d8ca90d327ef345ab9854d4", + "badge.space.y.M": "2cddfb41a36ed866f1364799f1b6ea6416e807e4", + "badge.borderwidth.badge": "57799afadb737df720ebc873fe10f194254a8d4b", + "button.size.split": "a6fa6bccc775b666707c42e54301f7386c5e7c81", + "button.size.S": "376f27967d6659cffc7efa63715cc923214a8ec5", + "button.size.M": "7c3bdd4e536e6c1705cd824c4a32a90d841619b5", + "button.size.L": "7b1b9e2f2e2386ab069afaf86fa44de9e95f99a3", + "button.size.icon.M": "440ebdf983bfd9cf97471c0dfc45a15801538609", + "button.size.video.S": "da17d4255ccc4c1a290c45fdea28828d6ac7748f", + "button.size.video.M": "5f64da94c77e517d71c476e889f044584e3e6539", + "button.size.video.L": "9bc170e119e26918f16065685677bebb7bf8d657", + "button.space.none": "47782ce803e335647d0c0879e651830e83c2bada", + "button.space.bar.iconbutton.x.inner.M": "3a162b43c6fbed2b2101e9056aad8efb63a1a127", + "button.space.bar.iconbutton.x.inner.L": "d297d9d0580c106ee7f7ff9896a313871931c189", + "button.space.bar.iconbutton.x.outer.M": "a4518d47b09a75fbb9da3f3f3a8428b93495284a", + "button.space.bar.iconbutton.x.outer.L": "fc4ed5b9d7821cf15a72ff36ab350a6882a1bf12", + "button.space.FAB.child.x.M": "c1c4f0b45067cfe655531c70c4e9fd8158fd76a0", + "button.space.FAB.child.x.L": "c69dab68de9708add9dd7910ab1903928eb7d3b0", + "button.space.FAB.parent.x.M": "eaa172c41904bca4883e972caf68d9f3a9eff0f3", + "button.space.FAB.parent.xg.M": "eaebfd970ef95209888408eddcf8f269ed2b9f21", + "button.space.FAB.parent.y.M": "827599bbc7c44a673a6722ecd2cdff4c36260eea", + "button.space.layout.x.XS": "f401fa0af41c7d7caf12bc220f25b9812a91a030", + "button.space.layout.x.S": "3aefe2cd5aef81e2e26914ce8543081e04c51571", + "button.space.layout.x.M": "6d3230ca1c6bdfc71d39572f02cbf1912065c436", + "button.space.layout.x.L": "d2045174b3b6490937e36ac9927f104ff6bf68fa", + "button.space.layout.y.XS": "151ae59c9532fd7243c325b0b1e845b3ccdb953a", + "button.space.layout.y.S": "f92de0f043fb6ac4e5207586e15c4f5f723c14a9", + "button.space.layout.y.M": "3c24b189b35b556e834998bb3be1cb591f24a19b", + "button.space.layout.y.L": "90c6efe4ef5b42f19e14669f6ad014a09382470a", + "button.space.layout.xg.S": "f3977436e389c06d9ed54e9c28190b40e948c87e", + "button.space.layout.xg.M": "023db60f9af8a47df3fd447993426296825bdeaf", + "button.space.layout.xg.L": "bd6fa7fd98289d10c0c432c1e772463f184b54ec", + "button.space.layout.yg.S": "425ef10052560f0fa0429989953f4f7b764be0dd", + "button.space.layout.yg.M": "2d4e296af875ae9c487894ba753eb45d8d38ef7a", + "button.space.layout.yg.L": "f48c1905d5bfa67bf29d1849ddd8bf576607265b", + "button.space.primary.x.S": "2f95244cacdd39ed1a4708d4d7be41331c84ce90", + "button.space.primary.x.M": "ffece589187c548749e04f810594e187e3cb3e0a", + "button.space.primary.x.L": "941aee2d15bfd49cf5d067bd84d4965d1d627d27", + "button.space.primary.xg.S": "e0641d2fc0db750fce69ca77ecc84b3a3e2dedf8", + "button.space.primary.xg.M": "dbe379620d53de9b2e2f853a8b8d5e9b2e9dc901", + "button.space.primary.xg.L": "e02252971250b58c737dea81e23ad633fef8b15e", + "button.space.primary.y.S": "bd9560f9aa52d6c08de96fd3d0c5d8adb516395f", + "button.space.primary.y.M": "432280aaf7f16677426a2c2fff32bb453f38dfba", + "button.space.primary.y.L": "a0dda66b24d8a4d0709e20695c719d949018dfad", + "button.space.primary.icononly.x.S": "986ec2fcf82e2be81aef790caa0f171a12cc3bc2", + "button.space.primary.icononly.x.M": "e1077454fc003d134e559b8bf9a40f3adbf3b724", + "button.space.primary.icononly.x.L": "479b3cf789dd4a5aa9562d46c13ea47651c55352", + "button.space.secondary.x.S": "725160a5dbb41c111fe8461bb136680c32c0e90d", + "button.space.secondary.x.M": "5457899fe69c38c51d2efdf7a5af24a466dd8330", + "button.space.secondary.x.L": "265e2c84e720c37ccd5249a1e3c8bfb7e7ad1f54", + "button.space.secondary.xg.S": "2c24cc5b5eb3d101edc0d3d0f33da083e103abd8", + "button.space.secondary.xg.M": "73768a636c48e2f8b607390d2002e57448174ddc", + "button.space.secondary.xg.L": "1d474229e4e0a0e4a145b9f77462bd09b2d8b8ad", + "button.space.secondary.y.S": "223aa16348bc026ae0ac523d075b6a0f76305ca0", + "button.space.secondary.y.M": "d3282cc104082a1c89f4be8bfc54c0753ec5917c", + "button.space.secondary.y.L": "d3ae5fd316ed6d1f3d2c533bb327644af281ba51", + "button.space.secondary.icononly.x.S": "fcc51a5f1b67183bc7c9dccb497e7676cdcf76e0", + "button.space.secondary.icononly.x.M": "1c7ed5b517f16af62997d5df6aa5a0a2a3d2f40c", + "button.space.secondary.icononly.x.L": "0e2a6d40d7081ffbc12185c6568cf241de930cf1", + "button.space.subtle.x.S": "a0e2b5d28e194016b251c46e41084a5c783bb30e", + "button.space.subtle.x.M": "348a1773b8fc46197a30f4f3971528815d886170", + "button.space.subtle.x.L": "fc19c19790f10e9afa61ed1015efab450cc9310e", + "button.space.subtle.xg.S": "6823ca5b63c0cf6855a02b5f39388e688ef29079", + "button.space.subtle.xg.M": "c08b7b07c6b0ecea0f27a8fe5b5dcf1ff633b12c", + "button.space.subtle.xg.L": "5cd492904ee1f1a9a60959266b871a53fc565a61", + "button.space.subtle.y.S": "5a47de873c9cfcccdf99231c8b3a4de4aeddcece", + "button.space.subtle.y.M": "2089ee02b166b231a7c445e2c65da1e607ce36eb", + "button.space.subtle.y.L": "77b528df5059f29f06e19ad88afadb7a836bd042", + "button.space.tertiary.xg.S": "eeadffd3f2df9fe2be969041c3ddac49aced088a", + "button.space.tertiary.xg.M": "affba16f11e0c696819219aa32406580f04eabe1", + "button.space.tertiary.xg.L": "6965a5a93c84811204a91698b1b3e76a4ee46a51", + "button.space.tertiary.y.S": "37a42b6aaa3f46575dc0ba7ffab483c7212afbd4", + "button.space.tertiary.y.M": "e9cd76cfe572b97c967bc8f4aaf6357a8a79dfc7", + "button.space.tertiary.y.L": "ed5ae27ad698b45e1794004604b8299e85df7a96", + "button.space.toggle.button.x.M": "54f56ab25b7809db7d68873c01036a28ddabd925", + "button.space.toggle.button.x.L": "51a53c6c1cef0f35bbe06d5ae68a18df0c086d25", + "button.space.toggle.button.xg.M": "d082030b4a12a6c0a78d9caa0f0735cfb22786bd", + "button.space.toggle.button.xg.L": "b7554fa5ecf630c25359279f3e439e818ce80db4", + "button.space.toggle.button.y.M": "ece364062f42297ccf58152cc30f69a917b4a6fb", + "button.space.toggle.button.y.L": "bf08626110c187fa054c2cccb9409f8c2f5c71eb", + "button.space.toggle.container.x.M": "08bded32dea110523288ac576d3226298aca1780", + "button.space.toggle.container.x.L": "8b9dd58db99b355eefab4ff1cf78661e94241780", + "button.space.toggle.container.xg.M": "a1aa12239d6b70930ebeb03075942b7c78e3ead2", + "button.space.toggle.container.xg.L": "b4e82977dcc340c1bf6d3b4ce6604e4408008de9", + "button.space.toggle.container.y.M": "5d5f52880f2d123635c4e8992216b7e0ccc11d9e", + "button.space.toggle.container.y.L": "dc575dda72165a59c7c2152af821b1fd42070afc", + "button.space.video.x.S": "182b84c35e1f5bf05a77a97ae53bfaa73934fd07", + "button.space.video.x.M": "ab4e03c77b9bd2f56c31b646753fe85f5ab34350", + "button.space.video.x.L": "72f81aa0885b9a9850e2f069fb0f3dccee5e7b4b", + "button.color.none": "1343f8c4a6c1161424037a25e2e9d8e1ef61a9ad", + "button.color.ai.border-disabled": "c3727b67dd26b21d5a61a7f9c02ade19b3593f44", + "button.color.ai.label-active": "f6a962f5cc70d8e5a06b713848405abdcf9ed90e", + "button.color.ai.label-disabled": "f524fad75a65ac9175dea4ab3106b60ec03a7956", + "button.color.ai.label-enabled": "2ea18c0f07bad38760896d7170912f08f1cec322", + "button.color.ai.label-hover": "afc889b0c09b7f67f15674c68d6da23222fdbf35", + "button.color.destructive.primary.bg-disabled": "2e3e671c7f560ea11e8b16ea6ac83b0d111183d7", + "button.color.destructive.primary.bg-enabled": "7c32ad1bb367b5ffc0cf20b38570a73aa3d7c74b", + "button.color.destructive.primary.bg-hover": "9d9be0a13a971584f9343e9c8c05c2f21c86da70", + "button.color.destructive.primary.label-disabled": "5b83fd1a50a11ad2bd83962d0587659ee6cfe29c", + "button.color.destructive.primary.label-enabled": "9d53ebae4cae39c9cbe06f22f45d4afbf9de68eb", + "button.color.destructive.primary.label-hover": "58679abe68b52f09f2ef64968712cfd153995f8c", + "button.color.destructive.secondary.bg-hover": "1424f9b08e5926cd41d9b068a5bb62931c2f62e3", + "button.color.destructive.secondary.border-disabled": "94df9f985ad8ef519901eced75bcd1e970a83fad", + "button.color.destructive.secondary.border-enabled": "6fd585073fc7d6803eecf9907bd9061a1511882a", + "button.color.destructive.secondary.border-hover": "77ba31ea7574b234062b1e9f90bb2d7c8c2aa06f", + "button.color.destructive.secondary.label-disabled": "36cd91794ddfefc581f2a2fdbd27d59a912b5bee", + "button.color.destructive.secondary.label-enabled": "cd7e3fc76f55344516b871d27e8c4b59328e2f76", + "button.color.destructive.secondary.label-hover": "d098b09f798ef69d6749a41798b94a3079f283ae", + "button.color.typical.primary.bg-default": "aae39b0acbfbc6b205bea13d55b2f28fa78b8f23", + "button.color.typical.primary.bg-disabled": "fc7d3129bbbc5b244420d2ccde404c1e742ca144", + "button.color.typical.primary.label-active": "1e64b6da8861e4c59d04152a2f8777e277c4c0fe", + "button.color.typical.primary.label-disabled": "73814145185d2401ea3ae1f21721e0d21ac31649", + "button.color.typical.primary.label-enabled": "4cfb7445909549846f53977ba6e8f41d3bc6822e", + "button.color.typical.primary.label-hover": "0b4a82d3df53b362f6d5ea67af2aa355b50ec60c", + "button.color.typical.secondary.border-disabled": "01c350072575aa62a9295cbcfacdf465c01e6350", + "button.color.typical.secondary.label-disabled": "27c86ca327c3e6f4557dfb4ef0349a303d6cfa67", + "button.color.typical.subtle.label-disabled": "abf3e02aaab0fdee015db2435d7354caa55f0c34", + "button.color.typical.tertiary.bg-activeDisabled": "087fd421d6d09939aa8fb5121793a9b365a6248d", + "button.color.typical.tertiary.border-disabled": "130f4b8a0bb497d9086be10fff1a0f9c526130cf", + "button.color.typical.tertiary.label-active-copy": "33271ba1542cb0732ccac61203aa422df518bd8e", + "button.color.typical.tertiary.label-disabled": "55ac76cec8eb098dddc9c9c3738904d382c15dfa", + "button.color.typical.toggle.bg-activeDisabled": "04c4b9951628c3c4f7dc001b4cee82aabdd1c3b0", + "button.color.typical.toggle.label-activeDisabled": "04cad986dc6312e442d5bcbc854e1ba65609d8de", + "button.color.typical.toggle.label-disabled": "5c43829b0932c5e5af69a4430c0e9b1f561981ff", + "button.color.video.bg-blur": "5ca05788abdf06ed7e45adcfbadfcc2632382fa1", + "button.color.video.secondary.bg-hover": "b945538aa07596cbe037db6178a97af29066ac4f", + "button.color.video.secondary.border-enabled": "73aec28491cde9caefdc9109fbce49718951064f", + "button.color.video.secondary.border-hover": "91186232df4315b8142e0baf5859a93dea82d59e", + "button.color.video.secondary.label-enabled": "a345c8a809e497242dd8bab9ebdd4852254d246d", + "button.color.video.secondary.label-hover": "c49d9402a37b60510c340322c2072f3a2cadd6af", + "button.radius.none": "071afd09c52a1f7ea603c57ac8522635d7a3dde3", + "button.radius.S": "92af17292bcc0216e4566e354845633f74fcbf8e", + "button.radius.M": "904734c167590ad07a8fdfafb316df7b5ab3581a", + "button.radius.L": "3eb602a4cea6e9ca290e30158fa6504f2f6c7497", + "button.radius.chip": "7f8929bf1ab8df4555c1e2633cf6cff6b4f907a5", + "button.radius.FAB": "880461cef6d498c277c8d412bce74474bffd730b", + "button.radius.primary.S": "b3aae451125c794ecdd67e52da40d8d4d6112444", + "button.radius.primary.M": "8cf4ec9c22aae700ed48357a52deda4666cbe1e5", + "button.radius.primary.L": "32c95a1aa7d1d621f68dfd210ca214441e364610", + "button.radius.secondary.S": "1b088f1f1952d742dbcfd725b649b676a1c378b2", + "button.radius.secondary.M": "84a91c3101afcf357076be2871e956fd7feecccb", + "button.radius.secondary.L": "e0909c6832d8a1102b603569e78df1b1ebfe6495", + "button.radius.subtle.S": "b71f6eeabff5fbab72f69ebf3c29eeca0b55403a", + "button.radius.subtle.M": "3cb6ca7b2b2ff6cbfdff84dba8ef564f8c91adaa", + "button.radius.subtle.L": "7f49d16180a2abff05a3bbe92f079a8af2ba705b", + "button.borderwidth.none": "82a63463ed9f6fe332156aa11eb5ac9f98ed4965", + "button.borderwidth.chip": "94fd1b7fbda35bfa2b8197ce722c51859acad510", + "button.borderwidth.secondary": "b823c5e884cafbacbd75d60389fcd90041b01d9d", + "button.borderwidth.primary": "f68201875534451b1533e62b468376e01c9a13a4", + "button.borderwidth.togglecontainer": "cde8eee001f0916638716f591f920839de8ee1a3", + "button.dimension.video": "98242a320ed257b9025ed412ef4ce48475eadef8", + "container.color.standard.bg-alt": "0a163a71efd022b8f21f9a773b8975958546930d", + "container.color.standard.bg-default": "f5887df9e88801494c6539d448a69b495742e64a", + "container.color.standard.bgFooter-default": "ddd4d588d42c8d7b3527ea56c11662e5609bc358", + "container.color.standard.border-active": "334a84f7c4320c2694a050574e8b09d64476334f", + "container.color.standard.border-alt": "869e9dd30c2c63dacd7953fb560aa8a5f3760cb2", + "container.color.standard.border-default": "0c3e38f22885b4d1257a564e9419fb1c8cadbdf0", + "container.color.standard.dimmer": "4625c31b12d23c19742ebd1bf73493fe2a96090b", + "container.color.standard.icon": "1b4f40b119dc87ba170dd49da865f5bcbe04fe8f", + "container.color.standard.text-alt": "5ddf5dc6cf795c35ee85c83563dcb443766761cc", + "container.color.standard.text-default": "0688de7bc87943a33f29362987e04edd67f5b4a5", + "container.color.scrollbar.bg-default": "d2b90819bd31fa592079d5bc6fe52f4b5276c351", + "container.color.scrollbar.fg-default": "520b815222da25aa6b15e4f47933a8a7580b0b17", + "container.color.interactive.bgFooter-activated": "a7c8042badfadbfa5f9494267fcaf815863767aa", + "container.color.interactive.bgFooter-active": "4a989f9ae40ca51aa8b569413fc37c8e063b8302", + "container.color.interactive.border-activated": "f0db1dfc677cf097b555fec2de0f27e3b2c4894f", + "container.color.interactive.bgFooter-default": "b2088ab5fd723ecdd7372e0eb93ab1005e85c6c3", + "container.color.interactive.bg-enabled": "dbc42929e91e9f2bef8ee063ddebc6ed48ed2cfe", + "container.color.interactive.bg-disabled": "2ada241c5c6e4661de41ba725beddea5545202e8", + "container.color.interactive.bg-hover": "e6c4aab4bee58a628dc5f54a097cf79c584d049e", + "container.color.interactive.border-active": "7782b289774c6fbf975899eeae90be80282295be", + "container.color.interactive.border-alt": "77fcd09826f5c267bb3a86b2234f482198bb0ea2", + "container.color.interactive.borderalt-hover": "ad0eaec72bc05988dc4841925c21e6d0d8dab291", + "container.color.interactive.border-inactive": "5e374caa9e35ec0c36978d19b32b248ccbddb3d1", + "container.color.interactive.border-enabled": "1c23da485570906f3e9a3d4d88c6e56ec41be60a", + "container.color.interactive.icon-active": "87191fa386378f8f5eff497eacfc8b0066cf48be", + "container.color.interactive.icon-enabled": "fb91abf053b3e0cd9e910b8148b6103e390df2cd", + "container.color.interactive.iconAlt-enabled": "7a7278a3900a1f11a78aee66d5a0ada4551b4cd3", + "container.color.interactive.icon-hover": "03d893767bad772c8ca79ea60637b342a7ae6b4f", + "container.color.interactive.labelFooter-active": "58a9d563c623f87be31af8f81a3420ab82e1289d", + "container.color.interactive.labelFooter-activated": "213680506c9d8e5c8557d3fef1e5a5ba08354dc6", + "container.color.interactive.text-active": "5d8153fe07c54fe7422c089014933b0f479bc42d", + "container.color.interactive.text-disabled": "9eb7b5495a81ed583ab62a5c864524101109546f", + "container.color.interactive.text-enabled": "c164b95acb32dfcc5210bb5894504e11d5625509", + "container.color.interactive.textAlt-enabled": "aea2de8ee64006b9c5b11b8e0b596c85e354b3c4", + "container.color.interactive.text-hover": "758d3f77cc300bdf257f7bf836bd1dfdbffa30b3", + "container.size.none": "e0b0d89c5589466c31c9a4d8a6a1fa76ec276349", + "container.size.accordionstandard.chevron": "2e8208e7c57c23de8c158b86741968eda8955caa", + "container.size.quotebar.width": "e7cc52194ab4bb8401546c0644beb657ba2a530b", + "container.size.chatbubble.maxwidth": "98c7ff9abff97a012b85941133c72b62ff6d276e", + "container.size.carousel.mediaslide.minheight": "9fa279a3cfc6a2db48ed68f7093768ac6b3bddd5", + "container.size.copilot.emptystate.illustration": "5237382ad9a96dd0e2896827577242e274d66ce4", + "container.size.copilot.emptystate.content.maxwidth": "fbe31fc866e725b02c8975089eb373a516ceeca7", + "container.size.copilot.overlay.maxheight": "87891090ec333e820bb66269f4ebfd2e4cf67272", + "container.size.generic.emptystate.illustration.primary.S": "19cc264f16dae9acc27ffcfea23977d97b4b558a", + "container.size.generic.emptystate.illustration.primary.M": "d533b3c795c62ebb2eaf5f98f3bc494a31486fe9", + "container.size.generic.emptystate.illustration.primary.L": "c3084c6d5076c3e7d7b3604fbd080a8c41bc7d15", + "container.size.generic.emptystate.illustration.secondary": "0ebfbb98b525685fdbf570fa01507f06c6f78731", + "container.size.drawer.closed.M": "3648d151f5c6fae775acf90bfc4303546e9b6a97", + "container.size.footer.M": "807f7546731e52a81a0562de59f28e77d1ab959e", + "container.size.footer.L": "6d9a65595a1f09ae454d47c63c93401e450edc21", + "container.size.icon.S": "6949e299effb69aeacfedc1ec263aebf35c5412f", + "container.size.icon.M": "8cde7d61ed66bbbc427f545c6f128453d4649bf7", + "container.size.icon.L": "6455bf88d0f62405df82472524b8b6977c46d551", + "container.size.linkpreview.thumbnail.S": "28b77cdb90cea1f0f0da312a046a7e74353cff9d", + "container.size.linkpreview.thumbnail.M": "26042158f864e97890bd845c85313951bd995d16", + "container.size.linkpreview.thumbnail.L": "442af4f574cb2b79462a6e66d683ee37f64d94a6", + "container.size.linkpreview.headertext.S": "52568ef20de2caafedb8306caac6ea33360cdcc8", + "container.size.linkpreview.headertext.M": "31bfa35919f34e0e1b62838d43b9dbaefbd2f8e4", + "container.size.linkpreview.headertext.L": "21fbc45227d26baebe061b019311c4cd37f52fe0", + "container.size.linkpreview.descriptiontext.S": "57513ad1ec8efa434a490b28889e6bbe01aee699", + "container.size.linkpreview.descriptiontext.M": "91714ea689158ad95ece8ed2d3191ee239684a5c", + "container.size.linkpreview.descriptiontext.L": "0ca86f469b6694279b8f17edbf0bb8d67145bc2a", + "container.size.responsive.XXS": "99fd8bece9962097378214b53b22b741bacd64bb", + "container.size.responsive.XS": "3fe4977ce8b52e9a886a39ce49354693940a66d8", + "container.size.responsive.S": "fc5ed3406bfd1a5da5a3b1502b0d9fb6411eac08", + "container.size.responsive.M": "46ab0936266a94bdbb1057836314706034048ffa", + "container.size.responsive.L": "9410d597e2769cf5bef1e3758ea26ede9fb53f82", + "container.size.responsive.XL": "e26f6abf64cec9a1d5a11af311a7baee9e9f1c7e", + "container.size.responsive.XXL": "c997b08d022008974721c9ea22d6c1497263c911", + "container.size.responsive.XXXL": "7dde5913c205f48ef3e5b8c7a078d728b415baca", + "container.size.responsive.XXXXL": "3527462bb119bd3258dd1b5da368cf3c2504f0eb", + "container.size.scrollbar.container": "137cb558ccc9872f4ec06e7cb02f9d36a22a7934", + "container.size.sidebar.responsive.min": "8c9f41d13316a008fcc9b5be717a1d97a23183a9", + "container.size.sidebar.responsive.max": "b38354b7320bd8a4cf566ae66465778c8e707ad2", + "container.size.tileselect.footer": "cb4a909e7d9e9aad5b157dbfc7d57f0a229f9054", + "container.size.tileselect.productidentifier.M": "29f30666a4e90dfdc727aecd389db6b06cce0ca5", + "container.size.tileselect.productidentifier.L": "8143520e779fd32f8d12cc687525a75ca0211c2f", + "container.size.tooltipArrow.width": "223a1d580ff1d415725ef2010562e37744180a40", + "container.size.tooltipArrow.height": "4a4285c8c3a395ce01782c47920d4a32d962bdcd", + "container.size.uploadpreview.M": "1b26af045dea6a575c3a7a52d231b179e5586015", + "container.radius.none": "95fc25dfe43fbc9800a24c7d6d4798e60a3de5d1", + "container.radius.carouselslide": "44d695afff47d893d6c16f7bb5e7fb4e3f2d632c", + "container.radius.chatbubble": "23a94e78261019f464c3463fca25a068d3b8bed4", + "container.radius.colorpicker": "7fc2ec3c5e1b284f5087dbb241643e2a6050157a", + "container.radius.blockquote.bar": "20f004b5b872e4f34c372644f49fea202a5f74d8", + "container.radius.contacttile": "c75d2dfce498214c9ccc8d461cb8237dde77d9b1", + "container.radius.dialog": "e3cb52a832e46d849412f2d0c763caa36b34f2c8", + "container.radius.filepreview": "013ca1b598e465f94dbef8083c66d3f72ee07a00", + "container.radius.linkpreview": "206eb7b765404469201bdbec026ad8dcc2963087", + "container.radius.heroimage": "62806bef8f02a0d14b097c48ae56971226e20879", + "container.radius.note": "9ce0e1a85e1157285c62f3b68d37f69a169e5550", + "container.radius.scrollbar": "7b47488cb759ebea0876bf8c2aaf96acf0ffaff3", + "container.radius.texteditor": "acf98b5c424d55ff4e9b569523f064025800fb6c", + "container.radius.nudge": "b0ae7105e74105579874ac62b2ccadeb5ded890b", + "container.space.none": "be329bb1c26e528efba89ebe040b6909323b2e46", + "container.space.accordionsubtle.yg.M": "1c5e4b281710c03ea419179087e71312c9f6fd69", + "container.space.chatbubble.outer.x.M": "c498cdf72b5e769c313727706b5a547bd02fda8f", + "container.space.chatbubble.outer.x.L": "556dbe7affd752df38dae151fd1a142f6a862312", + "container.space.chatbubble.outer.y.M": "dea74b5832eb23a91aa76bd457b58f96eabd07b7", + "container.space.chatbubble.outer.yg.M": "719aae7fd65a49bbb6f2f227b21d2ad3920d30cf", + "container.space.chatbubble.inner.x.M": "3efd3e644d66464519cea65cc88bdc8ee5023e58", + "container.space.chatbubble.inner.xg.S": "93658a0bc5020f872d5f366ce0f87f19b9f750c1", + "container.space.chatbubble.inner.xg.M": "f52a5f33eb6808d2872886cf97169c3610bb8884", + "container.space.chatbubble.inner.Y.M": "51335312d83b3e0fa677ae214b9991ec534159cf", + "container.space.chatbubble.inner.yg.XS": "83c69d7a7a0338153b2d577c3daeeb09721dd360", + "container.space.chatbubble.inner.yg.S": "81d91769f5cdc1ae0743b3c2204f400958e1e557", + "container.space.chatbubble.inner.yg.M": "50aeaf536409783e753d02b437376f2854146110", + "container.space.chatbubble.inner.yg.L": "b39b5ce0f0c7dd844bda779bef2d46a6b889abcb", + "container.space.filepreview.preview.x.M": "40fa528868de55291f05f4b9cca7edaeb5c4054b", + "container.space.filepreview.preview.y.M": "f838756d3bd82ba0292ad6514ba24cc5ffc413cd", + "container.space.flex.xg.S": "fe7167aa4e8cc7ea91a5edf19461494df1483664", + "container.space.flex.xg.M": "3392bb387117be43cd2943508dbfe71b6039346b", + "container.space.flex.xg.L": "f59c4ac489d1ca8ce8a0a80839224f78b725092d", + "container.space.flex.yg.S": "dc8d4b4fac4229769a8c1c7e52412a1124e6d6bb", + "container.space.flex.yg.M": "3c1edbcedefa4aaa6e46cef9d2c98d0b0ab34634", + "container.space.flex.yg.L": "6e9ad98ef037aadf206c2b395bedd5a132cab28a", + "container.space.flex.item.x.S": "671ec9ecfff0de165f47d1a1a05a1bf01ddbabb6", + "container.space.flex.item.x.M": "de127456ff4c1fd921f2f31a92a8d39d763cebeb", + "container.space.flex.item.x.L": "784286548c73f6f8dbce0880d662e84fd9d7904c", + "container.space.flex.item.y.S": "d0c2cccf8600455e7c34e4619027b04f92f8cd03", + "container.space.flex.item.y.M": "8d72fa96128bc66caf4f789ed7ca46d7192a4175", + "container.space.flex.item.y.L": "b4ec6924da0a333af501d8b8ed6fc4a0da8bb026", + "container.space.generic.content.x.XS": "26d074ab6878ce00982e653c23b316c973489403", + "container.space.generic.content.x.S": "2d5a733bf00d40d675ad730d117534ca5bfe40cb", + "container.space.generic.content.x.M": "4c8ee695f6ed3154997d1ff524cb72f606702483", + "container.space.generic.content.x.L": "9bb4ef9174097b186da0df490f583aea6b1ec7e3", + "container.space.generic.content.y.XS": "68034cad7c691bffc9d904e5595eb9d7de355854", + "container.space.generic.content.y.S": "7836e0cf124723b7c15f5689dac82ca979cd15dc", + "container.space.generic.content.y.M": "3bac5366cf71cac12cba33f2e40d8aff12336727", + "container.space.generic.content.y.L": "64139f658dc4a8a7af507be9f9ef84e760a73e8d", + "container.space.generic.content.xg.XS": "ba8cc9b2cb3850dc6f45e58c1eaa1b6d6e05fbb5", + "container.space.generic.content.xg.S": "a18fd706b93271a16766fc5f94f468ac076f8f9a", + "container.space.generic.content.xg.M": "b6a6bd9c02ffbae62efa07d4aa00a610b808eb8d", + "container.space.generic.content.yg.S": "5ea000dff557e896fcc9604d9d1ffd70bf9ec382", + "container.space.generic.content.yg.M": "6da2c3be21bc6f50cb7af0328aeeba9b6bb7be67", + "container.space.generic.content.yg.L": "0bca2c6f9cdae911e46a6694efb5c078e5b3fb9a", + "container.space.generic.outer.x.M": "a99b56c21a708aa92bfd5560a3374ea65f7c5f4a", + "container.space.generic.outer.y.M": "034be3befe16c7e0b4f7023003e28d0111b837c1", + "container.space.generic.header.x.S": "d388aa381342ba3d093b4829c956a4548909cd23", + "container.space.generic.header.x.M": "afa608eaceb2a9066def5baca73604defb11478f", + "container.space.generic.header.y.XS": "2c69fd91632cfddf27ce721d4240f094de97c1eb", + "container.space.generic.header.y.S": "aabf6846d01605b0afe33a2fddb85dc762619f66", + "container.space.generic.header.y.M": "e35de349a6574d70e62502aee4690fa1c6bfcbd6", + "container.space.generic.header.xg.M": "6b14b3c1d8107741b6f8e2e1cf63f8c5685dde48", + "container.space.generic.header.yg.M": "fe82a92c9ae882b5c5b72ae03258d80d2e11ce7a", + "container.space.generic.header.yg.L": "689776820f58dc1ff39aaa7ba8227a29c9934ef1", + "container.space.generic.emptystate.y.M": "5af748ec9978cee414a78fa17717ad4334263847", + "container.space.generic.emptystate.y.L": "85ebc57d97c2605d97c6f6a9675401a9f5b9b356", + "container.space.generic.footer.x.M": "2676df780a07c145147a3d5466155b976b972e98", + "container.space.generic.footer.y.M": "cb1b917fc78b1a5d190f73475531c3fd83a82353", + "container.space.note.x.M": "04e23a100d70ed7f23c1ee40536ac513899d728a", + "container.space.note.xg.M": "00476db3889a49f03b2cdf7974cd5bf4a85468ce", + "container.space.note.timestamp.xg.M": "07f788430a2552b03bd496308c28b3fe129de350", + "container.space.note.timestamp.yg.M": "cb3cbd9eb2b803aa728964edf1c3e3a39fa0f419", + "container.space.note.y.M": "329df3d74fcdf14ff3e0efa814ae3ae4cd179d2a", + "container.space.note.yg.M": "f18b6fe652c0171bf550e504ee8f36ba747f8469", + "container.space.linkpreview.x.S": "e8c0c1f482ceb797b189f46b31cb3b80dd2a231a", + "container.space.linkpreview.x.M": "bf21d375aee7e1f2d5c6ae477afccb919f452206", + "container.space.linkpreview.x.L": "eedab203a11aaf82e4b1a5fec9d4a8591e974269", + "container.space.linkpreview.xg.S": "7b49beb8feb3f52f6b2a3b67a4936146e2599b1e", + "container.space.linkpreview.xg.M": "6edf4132c3f40c2a764ab0d3351204c8da454da7", + "container.space.linkpreview.xg.L": "5261c9392c8bcdb42d0789db9c9a5129794b59e4", + "container.space.linkpreview.y.S": "30b24ee2d293925b8ef02204697cdbb5b89bfb11", + "container.space.linkpreview.y.M": "337c48d2af760e44c0320566211ff3320b3c0e69", + "container.space.linkpreview.y.L": "aca7b62c21a87bd3b1ad7da4d6ff4d8f113fde9f", + "container.space.linkpreview.yg.S": "8db204ccbd94171fd105236f9cd97da2fd16febe", + "container.space.linkpreview.yg.M": "1960209614df9ea038391542a71575bdddcae9df", + "container.space.linkpreview.yg.L": "99dbe7ef6a4f3ff54cac046e912459a0af488781", + "container.space.pagination.xg.M": "f7401e4bae00d1e0572f2cbbca0485106d047ea6", + "container.space.pagination.xg.L": "87f9b72e4a0c13df3fb3f44dcfe7ec83a3b9e893", + "container.space.pagination.y.M": "c18ee7c1705ce8c11b15644ff384393c21247bff", + "container.space.pagination.x.M": "684845bb947245297cf3ee68bda17e74d8bb5207", + "container.space.scrollbar.y.inner": "17ab35fb62c19722dbbfc425c4a6b4b63ba15db4", + "container.space.scrollbar.y.outer": "128aa7fa02ef9944dc43e5c19645687484e1f4ca", + "container.space.summarylist.item.xg.M": "a976858bd40f2d45a330896799f58c7281334798", + "container.space.summarylist.item.y.M": "aefd65b9717ec54769d22b15abe54062dbda20e6", + "container.space.summarylist.title.xg.M": "03ac07fffe69ff40683b347adbcce0320c5e13b9", + "container.space.summarylist.title.y.M": "035cbf395ac2d466bb999432fe72824411c2295f", + "container.space.summarylist.title.y.L": "f2c39b9aebe757dfd547b2c4a1af0aa23611706c", + "container.space.tilecard.x.XS": "3283f6ae4c998faf6c1e9b26b01aa6cd97fb0ffd", + "container.space.tilecard.x.S": "4edf567e2114fc6f51f6e19fc11ce939ed97716c", + "container.space.tilecard.x.M": "09f40684de4660b882500d290d1e95b41fe44764", + "container.space.tilecard.x.L": "decc3db5689c857e10604432d77384aa6d9d4a36", + "container.space.tilecard.xg.M": "c3b33501f24129d53c82fc4e149639792848601e", + "container.space.tilecard.y.XS": "d7775f38dd579a5aeb25eb0cc277ba25addb61e7", + "container.space.tilecard.y.S": "70c991d9c7c6fcf19201fbd498b3d03f8e2159fe", + "container.space.tilecard.y.M": "fa719f2b6d1c4c526e0d39bcd999059fe895aef2", + "container.space.tilecard.y.L": "291614d909c72e6d0d8fbf1f8d8db119195e4948", + "container.space.tilecard.yg.S": "80765e14d12e1fbcecdfab6d7827a5d4677378fa", + "container.space.tileselect.x.S": "9ac954108d048ba106352901a717aa1fd210ef8a", + "container.space.tileselect.x.M": "13129788f18383f53315ae9ffddaede4c00973bf", + "container.space.tileselect.x.L": "2f145470dcc4437e73cd70b8acec3a92fcf82f24", + "container.space.tileselect.y.S": "e4752a3dd3580d871d188f2ded5b10df8e8f61f3", + "container.space.tileselect.y.M": "344bdf12b2b5aa1301956aef3da25ec4ae0a1943", + "container.space.tileselect.y.L": "8b3f2caddd7f853aa4e7dc6fc169a44b5abd641d", + "container.space.tileselect.yg.S": "465b502e05a7aa136aa6b09a71f6704cc579423e", + "container.space.tileselect.yg.M": "b4387c8bd5732a652773e291d5a47ef435785475", + "container.space.tileselect.yg.L": "23cfcfdbe1a90340ee5d9e316b98a979e394844c", + "container.space.tileselect.content.yg.M": "74af4102e4dd89f96c0645ebc671bb94f2e295f5", + "container.space.tileselect.header.xg.M": "23e89f079c7b9735035885a5ccabca0ae8d9aa57", + "container.space.tileselect.header.yg.S": "26a248b08c89a33bf44b084443a1bb0b630f6f12", + "container.space.tileselect.footer.y.M": "2acdcc0c65882173561d74bdc8b1dc8833c0db00", + "container.space.tileselect.footer.y.L": "c4121bf5e5d46fa3e4286649266fd1a300ed09e9", + "container.space.tileselect.footer.xg.S": "7058fb1a1771786c12438786a072506ccbc25a22", + "container.space.nudge.x.M": "881ba380d2e9b58526f0693ab27c3e6b087cd2f5", + "container.space.nudge.x.L": "09231020b5939a16e4472be96824013f057026a0", + "container.space.nudge.y.M": "96fa69d58526a7ecf613578d23289161be69acb0", + "container.space.nudge.y.L": "e02df078cad971764f28fbdec569ede9c45458f9", + "container.space.nudge.yg.M": "17aa929f49c123f4576cec00fa5438f3316b91b1", + "container.space.nudge.yg.L": "61d4764ee7909353cb094ba00fff88f4226c07c3", + "container.space.nudge.header.xg.M": "72eab2b86cf55ac666fb199a128cd66f96d2f56d", + "container.space.nudge.header.xg.L": "148a9633f182c58611e7f659071c1436bdc0ce4d", + "container.borderwidth.AIgradient": "8721dccf0158d40460a7f6e9b5d3f1ff2c7c364e", + "container.borderwidth.dialog": "ddb1fae4551b767b3eed1c08af9bd8d0eac20375", + "container.borderwidth.divider": "28637cb07641692ee469d8e8de36e2e0ceb09917", + "container.borderwidth.drawer": "9222d7f55f1eca4405b6a785b12c0c3fd13c9006", + "container.borderwidth.footer": "5e473037cc97313427e16741da2533a76eb1fc23", + "container.borderwidth.header": "b549bd1883474abaab1be28be7af4347be438fb4", + "container.borderwidth.linkpreview": "2d4207543a4ccebbe7348e69257d4542c7eca1f1", + "container.borderwidth.note": "e5c09cd6f6576d1dd5c00446eac331265f18544f", + "container.borderwidth.sidebar": "f8d884f90b73fdb524bbeca9c866e9e979e8ba56", + "container.borderwidth.summarylist": "620956eddce0cf6874f8eae0081b3afe405891a7", + "container.borderwidth.tile": "80bbcd315b7bca286f1998e9d7010e642a17aaee", + "container.borderwidth.accordion.standard": "fdb1ddef97f1c952cf28e11d8fb987180fd05904", + "container.borderwidth.accordion.subtle": "9611aeee0f5be73900f6b84d3e8e9e20711cd129", + "container.borderwidth.chatbubble.default": "a4666cca69d91fbc8d6f8700adc5d6cef40c6750", + "container.borderwidth.chatbubble.error": "b466eff09ad36fd05df6240a071bd1f9d06c55eb", + "container.borderwidth.chatbubble.success": "85b04e5492ec463bdac7ab9ab8fbd33753e3459e", + "container.borderwidth.filepreview.container": "420d1c6f8ad2e2e5137c4d220d102b10c226eb22", + "container.borderwidth.filepreview.enabled": "eba01ef609d4fc824b623b7dae0a6e433730408f", + "container.borderwidth.filepreview.active": "c247a326f96889ed037b21e3db070710bfdd7734", + "container.borderwidth.tileselect.active": "2109a8890a5390d87a7019031d749c52920bd4e8", + "container.borderwidth.tileselect.inactive": "b242a9ec9e1f6c5fc636d5be39f0e09120b34db0", + "container.borderwidth.tileselect.selected": "d2ffa34ec87980e4cd6540bdba81a2f07aeea12f", + "container.borderwidth.tileselect.unavailable": "0ac60b7893992b12d6208780ae2062e7eb7cd7b3", + "container.borderwidth.tileselect.enabled": "9198d05a4a2c6991c910b5253c69c9f72a35f878", + "container.borderwidth.nudge": "8305a4d3214762549af0b4c300df8dc22e85ba25", + "container.opacity.carousel.hidden": "5dd79d4b0a60f10c270a15455a4eba9d3519662b", + "container.opacity.dialog.dimmer": "a5698d9ca3db4c3e98d7233c18c0e2e05cfdbefe", + "focus.color.bg": "1a44c03b53d6bf59380e37568ffcfa5293e7efee", + "focus.color.borderalt": "4b1be039640d9fdbe9514997aede824c1ea88844", + "focus.color.border": "5436e4a8a8cf44ced6957d6882f29cfe9556860b", + "focus.color.label": "638ae4a548e6d3dca97aaf7000a1ad432068c3cd", + "focus.size.underline": "0e0191fc202e1e6d457d457ae8704ec4d55d02c0", + "focus.borderwidth.secondary": "116893f346a4701c4c2c60bcdf3884ca21f6933b", + "focus.borderwidth.inner": "338e68638f935322d838d9208cb90505ef0eb068", + "focus.borderwidth.outer": "671988bf2ba9e1f763ed7a961900ea72d8e4aad4", + "form.space.none": "b1fd57e584091c64906053f25aeaa2f9bf3c9231", + "form.space.calendar.x.M": "5fa820ebe0c359a7300148a782ed3482628d42d2", + "form.space.calendar.y.M": "dc6d7086ae18551f95a4a41bf5f487cec057ef2d", + "form.space.calendar.yg.M": "41a12cab386726cce4e12f35738d4f0322dc3608", + "form.space.chip.xg.M": "a1174533f772c367da95d9c8db3f4984af8cf592", + "form.space.chip.xg.L": "558b5ba94f068a3d01ed2a19b055c1f6e758908f", + "form.space.chip.yg.M": "69d8ab511d78cd96182a90e94262f5bfb1caf9a3", + "form.space.chip.yg.L": "63bae9330285befe052244134d5354eb94156098", + "form.space.checkradio.y.S": "4d563cd925e51fae1e85f5812a16d2a00e1d2e05", + "form.space.checkradio.y.L": "c628a9c1aecd2923eee80e553fc3ff8c686e51c9", + "form.space.colorpicker.x.M": "4827790370d3db68f2b98596251dea0666ef51ec", + "form.space.colorpicker.xg.M": "cda58aaadb49f08233da67ed822e26fffc335c13", + "form.space.colorpicker.y.M": "686b48a89257d43fbb7526005fd68189baeee57d", + "form.space.colorpicker.yg.M": "54b6ef6086a197246b4966df7c100b02361b6517", + "form.space.dropdown.button.x.S": "e1fe95750d24b1a11609e8a17920033236dffbae", + "form.space.dropdown.button.x.M": "85e59eab04a23e0a8258e46f7789ee15baadc44d", + "form.space.dropdown.button.x.L": "63554d10fdd63f35e396422328b7f060409e6887", + "form.space.dropdown.heading.pr.S": "8d03e7130ac12b749c3bca1eb569b6bd7ef8fbab", + "form.space.dropdown.heading.pr.M": "0286ce050a797c14ac1498770cac664157d6fd94", + "form.space.dropdown.heading.pr.L": "fb28f8f9608b07f460949438dd243312872702e8", + "form.space.dropdown.heading.pt.S": "6fd47ed0ec79144b5cfed63a7ef5c07b4a4bd76e", + "form.space.dropdown.heading.pt.M": "63761910ee65ab59654e57e8afd10d41a4437efd", + "form.space.dropdown.heading.pt.L": "18d6622fafdc1124c2df5157d04389d5c67f8edb", + "form.space.dropdown.heading.pl.S": "f1e8b01d95240bf6efb4a38a488c4ac025acdd75", + "form.space.dropdown.heading.pl.M": "8f3b7c864d838ba08a9284a447fe260d84115d6f", + "form.space.dropdown.heading.pl.L": "1d15ba5f2d2db5b809cc276e52e686940bcae4ec", + "form.space.dropdown.menu.y.S": "d63a93c8831b82d3a0bc9099643ddf150d9579ad", + "form.space.dropdown.menu.y.M": "e4b30936feb49bb962909fcb8342fbbfde58c804", + "form.space.dropdown.menu.y.L": "df75944353a6fd5f581f01ae7ff346a0b8e1365f", + "form.space.dropdown.menu.x.S": "b91ccac1e70f9231388ee3ba55566c938e52bc39", + "form.space.dropdown.menu.x.M": "969df9b6ae5a5f33ff876f91d1c37edf8994aa08", + "form.space.dropdown.menu.x.L": "4a0b9000b983e73dfc749c4e1b433c38e46988c1", + "form.space.dropdown.option.x.S": "0c328f54f85c018ec18a75fd6900fb35ae07ff8f", + "form.space.dropdown.option.x.M": "51b7bd2569868c122c5be1739f2b1066126ada7d", + "form.space.dropdown.option.x.L": "f9802cdd00bb3253272d5181c3cdf6ade6ae9ac9", + "form.space.dropdown.option.xg.S": "66782db52715d3db50d957c8af89eedb247e6161", + "form.space.dropdown.option.xg.M": "a65e3146fbd6a3b734df046cb722dac1272ef499", + "form.space.dropdown.option.xg.L": "25419ef1232a11de41152020ba3909a0e86164f1", + "form.space.dropdown.option.y.S": "9c8266887c2e85a14746effabbae1756aff6b55c", + "form.space.dropdown.option.y.M": "a6b9d5cef681ea85262b32d6e9badbc0e1f318b9", + "form.space.dropdown.option.y.L": "b53133482c01a9c35ae5f5de11aa96553ac416f9", + "form.space.dropdown.option.subtext.x.S": "1a80b5901ea8d520d7f22b40a6b99f7e1fa4d0dd", + "form.space.dropdown.option.subtext.x.M": "f18619a90021e05b674474603a850c41cc2a762d", + "form.space.dropdown.option.subtext.x.L": "011fdf02288d8cbc566ef976e1a43d276e895e10", + "form.space.dropdown.option.subtext.y.S": "b508fccd1cf1abdbf0999697bd4314a2a40268b9", + "form.space.dropdown.option.subtext.y.M": "8743acc41f04945708454253292cdcdc986deb4f", + "form.space.dropdown.option.subtext.y.L": "305ea318254cb45041c382848b39d970c18e279a", + "form.space.dropdown.pill.xg.S": "51de850412942cab19bfe4503ba0667ab0ed13c2", + "form.space.dropdown.pill.xg.M": "e038330094f7e2e8293306ed051d7350cfff96fd", + "form.space.dropdown.pill.xg.L": "4b51b181052763c62ba6cab2a1692e50ae7380c1", + "form.space.fileinput.status.xl.M": "ad90a20ae5bde6b7af9034c7558276f81c3d1690", + "form.space.fileinput.status.y.M": "19cf2a8934d72617c8f9d52e13392b46fc0bde32", + "form.space.fileinput.thumbnail.M": "94cc086c990e42ce1bb1989e035f6f9cc93a7c50", + "form.space.fileinput.preview.x.M": "6b2309e944cb982051b7a74db9dbeba414f8bee1", + "form.space.fileinput.preview.y.M": "da979e76bc95587a52dfdcfd4cf765e83e8ce77a", + "form.space.fileinput.dropzone.x.M": "e1cff262ba779224643ac5605e71071728417675", + "form.space.fileinput.dropzone.y.M": "62aca831ee3501ef16a5a43c88db124ef251febc", + "form.space.fileinput.dropzone.yg.M": "40da3fb809c57d45182a032a9987e81af1de4214", + "form.space.input.stack.S": "8f4b72a2e09cae700e6dff1f03981939bbc93907", + "form.space.input.stack.M": "1ae6b6a7a83e262d5c97af79b7182b3db065b0ec", + "form.space.input.stack.L": "24f88676fdbf5fd5ac0194403c220543cc3878a3", + "form.space.input.x.S": "38119cbf362c6cd302331138bb74cf400ee84e9f", + "form.space.input.x.M": "5eb0796ff5cfc8d295032eeb248019110e35c9a9", + "form.space.input.x.L": "7321208e7cd65508a25c9d6ae225a65ffeac939d", + "form.space.input.xg.S": "20c7f26b79c14166115dfa2ecbc4a4311fde2fd9", + "form.space.input.xg.M": "6095c460e09fd8ce848531628ad589a8a9a34cb0", + "form.space.input.xg.L": "26b92f37218b344e02da924bbfc981d53ad81fdc", + "form.space.input.y.S": "21b063ba7c3c019ec08bd9d9d8122b424b9af37d", + "form.space.input.y.M": "0cbbd11480d8fdbbbc72a5f12ddd1883df7128ef", + "form.space.input.y.L": "994ee5e836d4aeccfd2d1c245908614ccd9e859a", + "form.space.input.yg.S": "4ae8056788bcc62ae280515bffa1bbe6d7140de0", + "form.space.input.yg.M": "f3c15fd035959f8363ddf6ef264c16692d2eabc3", + "form.space.input.yg.L": "3e9b6593108da3e4eae71cb2733bd324c12f835f", + "form.space.integral.secondarylabel": "080b29c4968071426cb3c205c4ead30d5edf9640", + "form.space.integral.xg.S": "556041e65175d56ba2c3762e0329f31d0c5dc9b1", + "form.space.integral.xg.M": "ff8153950176e429c19a4edeb51ff13b8f84b1f6", + "form.space.integral.xg.L": "6731174fa660094ebf84d4215e351a6c68c87d69", + "form.space.integral.yg.S": "d024d095c8536c8f3ba425d50b78519df99de0e0", + "form.space.integral.yg.M": "0e2d41bedab20cac4f3ec79e42b39b116bc9444d", + "form.space.integral.yg.L": "8e540c4cecf9b9204c9f744aecd6bd5e5e85bdda", + "form.space.integral.progressive.x.S": "ea6797a633e7c317e8f87bf1bd96c5023cb16b2a", + "form.space.integral.progressive.x.M": "90fce66af60b1b71a89e227477456b440db600b1", + "form.space.integral.progressive.x.L": "b18b8d3c986e32ee332a764e283e70a8588edd11", + "form.space.integral.progressive.y.S": "64549fc04dfdff77c24bace01e7f2787004725a5", + "form.space.integral.progressive.y.M": "dd452cb8af2347d4f4a6682c05f9add008a21485", + "form.space.integral.progressive.y.L": "d1c1c90b9e3eff0131bfcf1f5bffd736eb186b84", + "form.space.integral.progressive.yg.S": "4c2f04d95b58dc635747e89ce5aaa94bb936325c", + "form.space.integral.progressive.yg.M": "fe9ceda0148aa0c79c56e76ae2a1ff77752329d8", + "form.space.integral.progressive.yg.L": "059b33af03212bc1a7d0fb1b1d84ed08574f7784", + "form.space.rating.xg.M": "c7a840326d81b1e4a47e1bd5d5a6800464c9ed51", + "form.space.rating.xg.L": "787e742e29939c331964fc992c0359a859aa4330", + "form.space.layout.stack.S": "1022abe4d9b7244b239553ec40450fa61849ad21", + "form.space.layout.stack.M": "8873242009cb737c39a0467e96f23267f993d027", + "form.space.layout.stack.L": "321ab742b4ddcf9945ae5159657f7e257fa827bf", + "form.space.switch.xg.M": "fdaea1d60ebe8e3b9cd30d8d47281aa881026d2f", + "form.space.switch.xg.L": "16dbc07b700d505929b89370d39e228462503780", + "form.space.switch.handleside.M": "6803d3c5096145afdf8591ae16f8cceeb5a2318a", + "form.space.switch.handleside.L": "4614875ba93fe3acea29bb131f602b3ffe5ef81b", + "form.space.switch.labelside.M": "4dfccd593833df8f067e262c78e54214a39b6fdf", + "form.space.switch.labelside.L": "e00850462e087712b8f5297147428b8d42af57c3", + "form.space.texteditor.y.S": "0db4a526eb132bf6abb89faaec1ae5daedd7af33", + "form.space.texteditor.y.M": "a3fb74b3271be2e301188d75d717c35ccb427773", + "form.space.texteditor.y.L": "c0fc5d47198a3a3512589f83f6973452d7b0433e", + "form.space.texteditor.yg.S": "88121735ac088e29ff0d4541cd7a5af0dd62c708", + "form.space.texteditor.yg.M": "c1929da381e57a8ad9300a175699cbc177bd75be", + "form.space.texteditor.yg.L": "af4f4f332e40d4d841c480a6aa93d1e9de9d9ceb", + "form.space.texteditor.x.S": "a7cc7de8ea0ea2324d89aabbea470d51a6834ac5", + "form.space.texteditor.x.M": "fafa7a052c8ab48ea5c284e1c4ff365222b76d48", + "form.space.texteditor.x.L": "ae7d3a188060e965204d86b53d9d0a8792ff7170", + "form.space.texteditor.processing.y.S": "12920318d8668a1f284662c82f5d6122a720ab8e", + "form.space.texteditor.processing.y.M": "f6afb8ea324c7d04f18ce9ead39f20519b49a0be", + "form.space.texteditor.processing.y.L": "03708f39433842b6431843f5d9b574b6082965f2", + "form.space.texteditor.processing.yg.S": "d7dbc527dd938a1bca77407623b4fd6b2ade65b6", + "form.space.texteditor.processing.yg.M": "fba2c5fbc12b168d3742c999cd9c830c20c340a8", + "form.space.texteditor.processing.yg.L": "7e1bab783e192d2547721c73e370ef1fc16a6b64", + "form.space.texteditor.processing.x.S": "a095668cb458f1e663877d95bc9bee71ba8601ff", + "form.space.texteditor.processing.x.M": "49cc40e2349c9941dd115ad96ddf321a0b0f2e0e", + "form.space.texteditor.processing.x.L": "6f08a3a298b41a2955ef1245cda1dd1f706a3525", + "form.space.password.requirement.xg.S": "bcf3e8ac532bdce1e04e46f53f77ca9c14a48bc2", + "form.space.password.requirement.xg.M": "4ae4844d2b3c71e7f2d8e5b54f515e4189f390b5", + "form.space.password.requirement.xg.L": "446da87e46cc7fc62e9fe309801f48117d70e1c4", + "form.space.password.requirement.x.S": "f77973b377870f4357d976470ed3a00771dc9db0", + "form.space.password.requirement.x.M": "d07c09743fcb7ad804a5ae7dcd649916bb11ae76", + "form.space.password.requirement.x.L": "cdba4349efa26a04a58a3a336b4a45ba790d9251", + "form.space.password.requirement.y.S": "4678e4cd191856caa0ea7429ac1d076391826eac", + "form.space.password.requirement.y.M": "c045202a20124d3beea7cbec865a5df18420fc06", + "form.space.password.requirement.y.L": "812f6d8ba4ae5c0b5c4634bfb04f67c92e3aff50", + "form.size.none": "a25b32b0405166743ea387d2ead26b827cc0fe07", + "form.size.calendar.date": "29b9df598124f24075088a9ae646a7c65c20940b", + "form.size.calendar.day": "ef6fd0e716a14a0b80eabb8a4f7044ace48d7262", + "form.size.calendar.month": "f5252bc5827e3d39aa8bfc3eba7faa14dfbb7740", + "form.size.calendar.year": "8190652e985a16d94afff669826f0f6b314952d8", + "form.size.calendar.today.width": "2d7fefcf2732eb5293f2f8e2278056c6f1047bff", + "form.size.calendar.today.height": "82b269d8945bc1036589ca37cf8e2bbd72a491b0", + "form.size.checkbox.S": "92ae99719d526f84cfaf935e610db7b647bf79ed", + "form.size.checkbox.M": "157049edab99b4ad6da56e652dd539593c296db0", + "form.size.checkbox.L": "60f7e5f522702fdbb34ec95f2ca9bd09d7b3eb12", + "form.size.colorpicker.swatch": "08691b83bfa0f90df9aca196219f4dd145f31541", + "form.size.colorpicker.swatchcontainer": "40eb48d2f860aee0581bb974401d5326d4543afd", + "form.size.dropdown.item.S": "4966a6029ada8a4be75a89847f492ee11318e2d7", + "form.size.dropdown.item.M": "bccd1a3803ed80eb166fc59ae4f9ce8b772107a2", + "form.size.dropdown.item.L": "5279f0e7c5b59389a1cca6f6330f2b70c09d4f06", + "form.size.dropdown.subtle.S": "c33122c9eddee89169150a60c23888bc9e1690c5", + "form.size.dropdown.subtle.M": "2c37e55db778f859d325bc8d04584805ee11705e", + "form.size.dropdown.subtle.L": "6a059f97feff902c6f0c06a7fa50c65d0115558b", + "form.size.fileinput.fileicon": "f1d773b434dd7c36a0fbd6b542e687687aebb44e", + "form.size.fileinput.preview": "851a6753c223131fefb26b6de9587031789ae2b8", + "form.size.icon.S": "0f336f8128eedf68a86e04a910a9c216079cd6ba", + "form.size.icon.M": "5d01d96aedbb4be1843e9dfaeeb2e9478bb59fa8", + "form.size.icon.L": "9b99a6aaab78d178f17aea1d4a0b70d88128583b", + "form.size.input.S": "591726a6514a7e76ca421665025c7a70cf616fb0", + "form.size.input.M": "720c134081f94b299c544622d862bcaf4dcec197", + "form.size.input.L": "d0d3b61c3a6282ffa61b3a1a5f14b5d330e49264", + "form.size.input.timeinput.S": "daed74a4563a5e50de74764e64a4dcc5c1b710be", + "form.size.input.timeinput.M": "afbad30b585b43478700c558a1fd0c2e9e143b2a", + "form.size.input.timeinput.L": "8b7edaa3072ec7f0783d54c7a942bbc7e068ec9e", + "form.size.radio.circle.S": "8c70a03381f5022950ac2792110618574d3d3a20", + "form.size.radio.circle.M": "a9c91ee56a4ce49ff3e325384e9dca2eb8544f0d", + "form.size.radio.circle.L": "521987d3019b99accb3a8c5deb6aa97f4a8e939b", + "form.size.radio.dot.S": "54d9076e4ecf8050284723683ce24ae03eea3dcf", + "form.size.radio.dot.M": "b2d52e717b995bd961349db92960f66f7a1410ea", + "form.size.radio.dot.L": "e468adf65121bd2e253011572cfb5638975896c6", + "form.size.switch.container.height.M": "419f0d0f231743bae4b5653417b06dbe3784307c", + "form.size.switch.container.height.L": "f8a4ef7bb8c3b0219002f907b4cd6c171115dbe0", + "form.size.switch.container.width.M": "91ba8391af717db47b59bd59a4dae4d7006a1338", + "form.size.switch.container.width.L": "d4c1a0516274919a2a19d5cb3ebc57804f68881a", + "form.size.switch.handle.M": "f4276929695f80e8b624292a038574af0c762f9c", + "form.size.switch.handle.L": "ce12fda524b7e168af3bcf57b5f1d5587855791d", + "form.size.switch.handle.icon.M": "ce04c4d7d575ea18e1a3900dba2eaf0719304ba0", + "form.size.switch.handle.icon.L": "c7a24b78fbeeef9d1212ba21f2a229bb86888b29", + "form.size.textarea.M": "e13aaf5fadf4de89aabcba16772aed03c8bf5ffc", + "form.size.validation.bar": "29b9786d6cfe6d92d686d948787aeced98b07cf9", + "form.size.rating.M": "9535faae8a6ad0f08b22dd8bf3db495f0793b76d", + "form.size.rating.L": "32958c33d5e7fd421cefeb3693bb30e6dc237f90", + "form.color.calendar.bg-disabled": "0cddb2bba3505dba0b7558fb35cb4aad3ea1a4e5", + "form.color.calendar.bg-hover": "b28c3339932b3133d2f89f236245d340f240b17b", + "form.color.calendar.text-active": "b2b4e56e248d12b4afd6b049be08180e63634996", + "form.color.calendar.text-alt": "05efde78b43249a1a16193b114b5e83f350662b7", + "form.color.calendar.text-disabled": "0912210ce9d116159dca2e72f5c00b78d62005f8", + "form.color.calendar.text-duration": "c50daa3b67d724a2e3a368c04a70fe3dd6f4cec6", + "form.color.calendar.text-enabled": "25ed564b1745fb9922760b61f42b737e0cb2b2c6", + "form.color.calendar.text-hover": "8ef0192e78320000efb043ea94085f6f42b510d0", + "form.color.calendar.textAlt-enabled": "46d378eea5fbaa9167216c01ef9e4de0ee725c94", + "form.color.dropdown.bg-hover": "27c7d168570136875396024c9d3f7a0f28bd4096", + "form.color.dropdown.label-active": "e2dea686190f9d3af8633a39db31d1019561e017", + "form.color.dropdown.label-alt": "6ccd9a01fdf697a7de8470cb706baffebb153918", + "form.color.dropdown.label-disabled": "d951ee9cbaad7ac43a3888c7a8ad239bee3c0302", + "form.color.dropdown.label-enabled": "c8cbc18ab6a590cdf6182b785b9498995b98e010", + "form.color.dropdown.label-hover": "a3a47b1037df4e8c7653471875e8b96872f7c20e", + "form.color.labelset.label-required": "92c81d82945c07dabf11c284540eee54c5a65eaf", + "form.color.labelset.label-default": "a7c58acb02f15c4527256035c766a1d158d72f7e", + "form.color.labelset.label-alt": "8d06bd5ac964ffd34d707f459cfe3ed7ab9949e7", + "form.color.labelset.label-disabled": "b0b8f92757cf04c270b4c525dfb43eee3c5c2e3a", + "form.color.labelset.label-readOnly": "834b3b7d08ab89b53346916ab33344214cab97f4", + "form.color.typical.bg-alt": "ace76ed809c8f2688120aeed143c7e8fcc534ebe", + "form.color.typical.bg-disabled": "0afdb433214497c689b86ead262e1c797330dc30", + "form.color.typical.bg-default": "b2d510cd0c82500cf194eb4456c34867ed93649d", + "form.color.typical.bg-enabled": "9414274c07f32d2921eda6729454954708b10350", + "form.color.typical.bg-hover": "a303f97d80723dd4185eed0cf4b06f2d11a1123e", + "form.color.typical.bg-readOnly": "ceaaef94fc3c401a8473ab41166a142c80f3590b", + "form.color.typical.border-alt": "673b9e3ccb7ab7e0a8f82693f4c6c24e0c0807e7", + "form.color.typical.border-disabled": "98f6123baf39be0014f0e6ab58550136deebe5ca", + "form.color.typical.border-hover": "3cf9b812a335e8ef7b27a4ea6037a583e12ac115", + "form.color.typical.border-readOnly": "0f23eb41b218b1a7f932a06ccf1d7e4d839eef86", + "form.color.typical.icon-active": "3a3cc48bf7fadbffb430eaad447af344532d19b7", + "form.color.typical.icon-default": "2dde958660d380ae37bbd51be3a3c04caa96bfd8", + "form.color.typical.icon-disabled": "f3ee2ea75e9cc0014fc8c3827f2aa9e3a4ed1807", + "form.color.typical.icon-enabled": "aa7ebd4dc20ba9744b3303d26e9ebf0fb21b0c92", + "form.color.typical.icon-hover": "25e65c45ed475d20c803cef85ae0683ebd9164ee", + "form.color.typical.icon-readOnly": "bb5cffb68a1fdfb3f8277e573b1517c12a9897e6", + "form.color.typical.iconAlt-active": "c39d35f3429b4cdc6eeeaac39b6cef4990ce44b9", + "form.color.typical.text-active": "3d7109d37cdc5921c14f8e5c1cca0f16f4dd4379", + "form.color.typical.text-alt": "53d8f41ace3fb1b6776858c286df14299d787d36", + "form.color.typical.text-default": "aef782a9f3a6b414c8d53cfa14219d71990e995d", + "form.color.typical.text-disabled": "911c7d74d03948bf027a6b08ad0c1c1106a75e73", + "form.color.typical.text-enabled": "51fde241983b83c80ed032d7d16fefdc2d532976", + "form.color.typical.text-hover": "18de3da295b46ad1e5173ca8396319832cdf9970", + "form.color.typical.text-readOnly": "d1bdcdf27cd2a4ebb7f9da68de614c3e20c0c092", + "form.color.switch.bg-activedisabled": "72e5bd0694f2861463a9ad71047b7f6189def26f", + "form.color.switch.bg-disabled": "bb6ccf9440160fc17af88258ae073843b9e04751", + "form.color.switch.bg-enabled": "c0a0a577b0b464b3b36c1f34e89cabca1b5ee173", + "form.color.switch.border-active": "d7deb138e7727c9ff1c3179556258e9f119f0f76", + "form.color.switch.border-activedisabled": "855cf342c908026b2b0db41bb632fdb2666e5089", + "form.color.switch.border-disabled": "0e09366c8f465d401f6de70c5212b67aaeeabd47", + "form.color.switch.fg-activedisabled": "f48fc8ee71a371a40f308362539f5c80a1467cf7", + "form.color.switch.fg-disabled": "6dd0fd768dfb7c669a6b6d76c4b557ffdd8e2acc", + "form.color.switch.label-active": "ae7fbd6d4e83d26dbebb663eaa8dc1f985241887", + "form.color.switch.label-activedisabled": "ac427591bced3611e52b1cdef5bbef3d17e93e1c", + "form.color.switch.label-disabled": "a4f9165079b47c3047318bf089f183d020966f01", + "form.color.switch.label-enabled": "d83db19500ac3382c2694b902172406b39afe070", + "form.color.switch.icon-enabled": "4d93d7b57adce6989b3def1218d12cd1c8ae87cd", + "form.color.validation.border-error": "93811a3c3877905ac43600332319635f70399ac1", + "form.color.validation.bar-error": "0ad75542195e5c719ee8db50327e4b0d7d7faf50", + "form.color.validation.bar-warning": "ed7ae9d160e8873fad771d4334afd7eaa9aa8784", + "form.color.validation.label-error": "c47f07276d7c743d528fa7ba75f35fda237b8e61", + "form.color.validation.label-success": "265920295c17bc684a24aa36dfa17e831a382410", + "form.color.validation.label-warning": "af7a0557dec877c8fa4d1d8acf2cbec03a52c326", + "form.radius.none": "553390582937aa18426aeb57ddb8048833412d63", + "form.radius.radio": "1ad384ae461fc69e1f94f191c33d24baf1a3402d", + "form.radius.switch": "9301ddc8cde111194559e0f51329f9d8cf45a47e", + "form.radius.calendar.none": "9adf531d2f751730c962b7b8e7d9f08385d803f1", + "form.radius.calendar.date": "f963ab2ee9fffcbd2d373c0f0d6bbbc8b493e942", + "form.radius.calendar.today": "b3940d174d962c799ffae46ed9486c2fb3dc1acb", + "form.borderwidth.colorpicker": "ce5daf13df514bf79cb715e8f59836e4ff8a0e05", + "form.borderwidth.caution": "7ce7ceff41e7c4c9db5202d0721431d2e7fac883", + "form.borderwidth.dragover": "b329dadf69e297470b98253da131395d99594cfc", + "form.borderwidth.ratingstar": "a51ba6ffcb474f0224356e3c0a750a018b8316fd", + "form.borderwidth.error": "2081772a2b64e60206abea44afebe3a886c2ca85", + "form.borderwidth.fileupload": "fa8260afcea8aff5ce59e0ec80b9bdf1ea246dd6", + "form.borderwidth.input": "94c2071bb327d64c5cbb050d75479f74655047a4", + "form.borderwidth.searchunderline": "0d1b03465ccf7258413c0813e562a7bc9538a5cb", + "form.borderwidth.switch": "c9208cb3207f634899d02795befa76207da0d390", + "form.borderwidth.tile": "49ca40d0865fef95add75d379711df160be7a036", + "form.borderwidth.calendar.duration": "2b6702c62513f9510110a88c5606dbce3d94ff2d", + "form.borderwidth.divider.item": "fc81eb88c3d213c1c856afc3b2d2c855b86ed68f", + "link.color.destructive.label-default": "8dcce49769a780c566ef8b38a43f383a1be0bd48", + "link.color.destructive.label-hover": "e175e5f083ce6387b542f69fcb9faee614a05cc8", + "link.color.subtle.label-default": "ecd3c05046e7f4f480d9ba9cbfd09f3ba3491008", + "link.color.subtle.label-hover": "787236eda81b352ba7c56fb1378a900e4a313193", + "link.size.skiplink.M": "cef755d34930794087fa471157a716d2cdeec6e8", + "link.size.icon.M": "a1fd5a05cfd06ee66f4d4e33ecbcea3740aeb968", + "link.radius.link": "f2b6536cb9b59e7dc268c8e1046b4bb2d464f7ac", + "link.radius.skiplink": "37714a050795008fde5278cd6ad602ad2dca49f7", + "link.space.integral.xg.M": "b5aa104ea2d857779276feef8f9e11c640e6f39c", + "link.space.integral.xg.L": "49dc05928b0d2aa16a983ef433045bee3fd11be6", + "link.space.skiplink.x": "d6ffce0abfe37a0aef20a33cd280a6432495bfb9", + "link.space.skiplink.y": "be233b0eafe89bc14ed3e5c05359dcfebd016d05", + "logo.color.sage.bg-default": "176fa4bdfdde2c1d90543d62f76c86a4210d33bf", + "logo.color.sage.bg-alt": "08a6379727481535a381a2ce3a86af9f9555ff37", + "logo.color.trust.bg-default": "d54eaa67a5b1054ecb788b2b7d0e1fc30fb5c381", + "logo.color.trust.outline": "a460c2cd601a494fe58a6b921226da2b3e7a5692", + "logo.color.copilot.noBg.bg-star": "da56b1e1732804d510f092d0f083dd07c48a0774", + "logo.color.copilot.noBg.fg-default": "395284d7da4f0c599691707823ec461336c43766", + "logo.color.copilot.withBg.bg-S": "51078746fc01ddc633f7f05563173b88681e860e", + "logo.color.copilot.withBg.bg-star": "4692ceb2d703ac16b5e6fa0da55ec679ebc5b22a", + "logo.color.copilot.withBg.bg-default": "2c46b6042a18b67af472e5daaf33a0e9563a408b", + "logo.color.AIIdentifier.bg-star": "c7503be9a3ba93460dd15d608e5553811558fae5", + "logo.color.AIIdentifier.bg-dot": "6aee04adc22efb6cdb8d60b830ea6fcba86c1603", + "logo.color.AIIdentifier.outline": "342bfc3643e5a916607236ddc4d6d1229addd8b3", + "logo.size.AI.M": "840ea6236181a2a446dd992b2f877f85211ec3f8", + "logo.space.AI.xg.M": "b9e01b0611dcee1c94b1f0f49527f17a1283e090", + "nav.color.bg-default": "c20289a3ebe37707383b8259b014d64a4f7a7ddc", + "nav.color.item.bg-active": "84b24aa4d93ef105e302668b30a444b4195a6f16", + "nav.color.item.bg-activealt": "0dffaf7378b5c4324ffa443024bc30c0f95164b2", + "nav.color.item.bg-enabled": "6ce9b15040a4e7e0bc0ebb68e13d99b9b8b7a936", + "nav.color.item.label-active": "982debe9801aca402461c3751f74903655f74024", + "nav.color.item.label-activealt": "9997faa11976bc9df560dc6a62f2e59ebe7ad331", + "nav.color.item.label-enabled": "f611e7397ac57fc44433798811bc913d71316c59", + "nav.color.item.label-alt": "98102be75a1b9e4d5587fded9ef31b78b0e72606", + "nav.color.menu.bg-default": "36906d3d6048072bcc384355439d189c5b190496", + "nav.color.menu.bg-alt": "649425622bfb76795abefd14e424ae291acd6cd7", + "nav.color.menu.bg-alt2": "1fda48e60c42278d289a8c0abd8a2d1f200a8b92", + "nav.color.menu.border-default": "277b1e7970c90781b74cf249e5582e9c739e1c0f", + "nav.radius.menu": "31d367e4dc424f9f54e3d1a0a262b0215203175f", + "nav.radius.menuitem": "aba07f4523958ab04e679d32b473cf797c34e9bc", + "nav.borderwidth.divider.item": "6aaf1770f1e207dd13457ee810d653232af5a4a9", + "nav.borderwidth.divider.menu": "3dafeb6edca38a3d36fe50f946d763562db9078f", + "nav.borderwidth.divider.segment": "9fb4fe7505b14ddbac5ebf7b60af731ea5b07e2b", + "nav.size.menu.content.y.M": "942012e158d3856451b48b2e37d509b0e3cb2aa9", + "nav.size.menu.content.icon.M": "5c917fed46e4c1e13916d988d6fbb5087c904423", + "nav.size.menu.content.icon.L": "80b9d270fe7d57964743c0efa7d2ef33112cc36c", + "nav.size.menu.option.x.M": "fb20d933b9d5268937def8122ad580dad84ed033", + "nav.size.menu.option.y.M": "393562fff0bdec75cdfd62a51bbf1a88273dd69d", + "nav.size.navbar.content.y.M": "0a11abbf3e77f117b4eeb1cac6a28476694d2bf5", + "nav.size.navbar.content.icon.M": "afd800569df32bbee2da6b7a228dfaee4f5edad2", + "nav.size.navbar.content.icon.L": "d0db3058571b922f86facd1f718d912e45f5e29d", + "nav.size.navbar.item.x.M": "f0897065bac5a8e24649eecb841f5a958d20c2c8", + "nav.size.navbar.item.y.M": "5a35367c060831557c5c14263c0fb66dd30cae3b", + "nav.space.menu.container.x.M": "9f5c8b684563dfbcef753a0b6f40a130a332a6d2", + "nav.space.menu.container.y.M": "ab85414194125a547c56b38b0dc4be2943475949", + "nav.space.menu.content.x.M": "1d27af3c95d7de7daba2cb3562a2e7ae68b82ca1", + "nav.space.menu.content.x.L": "3eff2ed7b2ab6b529e04975708c4b1015b00d0a7", + "nav.space.menu.content.xg.M": "ee5231965beee798a1177469cd59cbbd1f000a59", + "nav.space.menu.content.y.M": "674dbf98588f21f968d408b53388975b636ecab2", + "nav.space.menu.item.x.S": "67fdabf111fdbe417ac95b3cb01ff4f0f88349d5", + "nav.space.menu.item.x.M": "d4143a1aba4a7abba1b94fe9694dcd793eea9fc5", + "nav.space.menu.item.y.M": "37b87c075788b3d0762f5b7d320340375f9fabe2", + "nav.space.menu.item.yg.M": "6e4708446c1d2f38c66ede916882aa0789ec1ed5", + "nav.space.navbar.x.M": "fbd73e576c8ddcb440a97229a572b85418ec466f", + "nav.space.navbar.y.M": "261e47b33d2414979a298297f7b7f6df7ae3366c", + "nav.space.navbar.content.x.M": "370d6738ac0660c6cb50b2f2c341da9c2337a1bd", + "nav.space.navbar.content.xg.M": "dd47e82ab1d455f2e67ca924a9be8a0a07fc63ce", + "nav.space.navbar.content.y.M": "7bedeb9b16e8b1f78cc696a78e4a539e941dda47", + "nav.space.navbar.item.x.M": "1d41442744f93ab58f95d7555fded37216fe850c", + "nav.space.navbar.item.y.M": "5251981f0f7d56b2c979e62e6b0c553c8ec29fba", + "nav.space.navbar.logo.x.M": "ac4f27279757f6a7474484daec00a7895341d32c", + "nav.space.navbar.logo.xg.M": "4cfaac084b2030f951d1e9c83a7466300bc3aa6c", + "nav.space.navbar.logo.y.M": "16092018c77123c64370c1a21322056a4b613876", + "page.space.none": "4c3b1d33531aa051acf96da285583bfbb56d51e0", + "page.space.x.XXXS": "d9e44ce002e65094dc05f5ab1e25b04002e78ce5", + "page.space.x.XXS": "b181d3749404c4eda29e4ff1c28e50c1bea0b320", + "page.space.x.XS": "3d73f20f849ed903815095f73f9b7a9ced2ff482", + "page.space.x.S": "81ab31a6f63f9dd929e7616efef06763b51b65bc", + "page.space.x.M": "08cf6b0689a4bd69a780ac2ef9b6160a3d635241", + "page.space.x.XL": "9e85f994dcfb32cdcc693f96aba72f6c917c0274", + "page.space.xg.XXXS": "0cc7fec597950e8c11950ada8b00b8c6273e54dc", + "page.space.xg.XXS": "96e1d3b2cb81c97d70f69a429689cf2b35345f61", + "page.space.xg.XS": "f9ef3ec255923b69b382f3a9efcc30a964450659", + "page.space.xg.S": "cb148ad65dfe430eb6e6b7159659cbd016e8dbe7", + "page.space.xg.M": "3b7fb43efd6f09faad157d694c96da7a3f742bd2", + "page.space.xg.L": "420390fc1a966e10ef486c81612ea2a2f97c17a1", + "page.space.xg.XL": "ef68b0ca3ac96b7f088179740de87e217a61a519", + "page.space.yg.XXXS": "d0da23eb979ae1ae64b703503c913d7668992a99", + "page.space.yg.XXS": "a2d76a7d9ab1ca552139f6b47a0e2bfb5505e31b", + "page.space.yg.XS": "f022a3e9129bbd323416054cf432d286a8a4ea3a", + "page.space.yg.S": "f3248ef9a47b16da9ecacb10b9df4eb39e929795", + "page.space.yg.M": "9ffa9089546a78e13f107da0e4e9afc30c25b3d9", + "page.space.yg.L": "349ab3c9a2f5a494be1afbb77ce1bd1b65d825be", + "page.space.yg.XL": "9f0c1aaac5458bd5ca0da348d0181058284cb119", + "page.space.y.XXXS": "e7d791dc5fdf219e6fd0ceafd009b6a9e4820d12", + "page.space.y.XXS": "8cab384302574cbcb142d35881f527fb06d6953d", + "page.space.y.XS": "68adff5b5b0c2149494de6842f61065bf813e913", + "page.space.y.S": "b6bdad590640f1c7711c01d956c42a51e278f0ef", + "page.space.y.M": "2112d78b4489685af10369a375ec8ff3939dfde6", + "page.space.y.XL": "8c16739a1de56ae7327dcc9db683aad4f11fd4cf", + "page.color.bg-default": "eae7ab52ece29003fd4f1ee1e649948db9b2fb9d", + "page.color.bg-alt": "9d2bdbfea53b3117ef06aea16c6d8239c3da8a20", + "page.color.text-alt": "12bd9fd34f2d3ed55dbb950c2d4ac349e5804184", + "page.color.text-default": "c01d5636b677e0a153a5602be335f079d589b13a", + "popover.size.icon.M": "f1e9c8d331c9d8715b0f480caf5a4f02a94ebe16", + "popover.size.item.S": "d8234fc202ce5ea8d8bc88b6ac7cc9c910caf916", + "popover.size.item.M": "c7a9e930af9d14525a8538ed306374ed1a601e24", + "popover.size.item.L": "8eb7f63ce16544fe026cb8cf6c48150b963a8e88", + "popover.radius.none": "7729c38be03b17d7a72f3ef2488a25f36258fc2e", + "popover.radius.container": "578c9feaacae325df780131438ec70bec12524e3", + "popover.radius.optionfocus": "303e32e23b5a5f56a8e95980c95ba4659534bd69", + "popover.space.menu.y.S": "50b73e720a5597be532ceb1295ef18eb786ec92e", + "popover.space.menu.y.M": "c85554061edf75ae4257f0a25c3ebc1d22673f93", + "popover.space.menu.y.L": "3b7b459d9e42ca732af48542ed12b19c08540165", + "popover.space.menu.yg.S": "c272b3a7ad57d959cd235161529acec5357c51d8", + "popover.space.menu.yg.M": "c9caf8296369a978afd99c9f5e04abf1aa8846c1", + "popover.space.menu.yg.L": "a9d25b3b8d2280f1b8471228b2e9e6adfcc74a94", + "popover.space.option.x.S": "63c7a05c6b9cf59afc37a20603272ae9ec184e60", + "popover.space.option.x.M": "5393f01de920a6c525da46aa59fee40f3ab2ca02", + "popover.space.option.x.L": "79d1a94d3ad1ab83a30c5338c0d144ae4578fe54", + "popover.space.option.xg.S": "69b3ccc718ec1b18d594d53c4f27562826f3d128", + "popover.space.option.xg.M": "7b3c838ec86aaa7c49559784d3ec6f7e94ca85e0", + "popover.space.option.xg.L": "06cdad998a8286b9ab849433827f82b8146b6d58", + "popover.space.option.y.S": "c64c40c7885d19d27ad92ed70b04bd06e64bae4b", + "popover.space.option.y.M": "7df198f0f920b331336778885bd891a73e584e28", + "popover.space.option.y.L": "47b453141a88f6f893c67b6282f26f58562df30b", + "popover.space.submenu.x.S": "d2e9d4c590f08cea90b7ad8b52a4ce1fd7324896", + "popover.space.submenu.x.M": "14318f704975f1f2f61e7ec9cce4be1146e309f9", + "popover.space.submenu.x.L": "6958f71811269d5d19098e482c37c1b87d04a9f4", + "popover.color.bg-default": "d54f5f41bb3f96da788226c934b3f6e4ddff62d2", + "popover.color.label-active": "1bc8747c12ab03869fd608f9bf0695e493feaf7e", + "popover.color.label-disabled": "269f93595159514064400fcb11102e324dba42b2", + "popover.color.submenu.bg-default": "92f43758b455eb8c56a13c2f35767cfce851b9bb", + "progress.size.bar.S": "718ff61ac9c34247c0167f1de8938b54a188603f", + "progress.size.bar.M": "a3a0b404dbab8f3d47fa3d21118e8588d97b3e87", + "progress.size.bar.L": "cad9ee8d3fe0cc3ddb54e459524fe7331f8f5fa5", + "progress.size.carouselselector.dot.M": "f506f9668460afd0eb93e6add518be2a79ff540d", + "progress.size.carouselselector.activedot.M": "b144a670e2877553e6da4f88709016f518e6e60f", + "progress.size.carouselselector.hitarea.M": "4741b2a717cacca6733fc70e3676ca360feb7024", + "progress.size.carouselslide.x.M": "a4b62ee1d0976778d608451bb86e5926aed1988f", + "progress.size.ring.S": "6fa7e50552ddab3f075bcf4d8cd4da766cd02bdd", + "progress.size.ring.M": "324e650a3cd0935983afcc0adfca7a1b8f80778c", + "progress.size.ring.L": "c8c9f57b619801bce5c954556957574e82ca08dd", + "progress.size.skeleton.responsive.text.XS": "5025406aff7aa0df6213a62ec2a45fc77084b17d", + "progress.size.skeleton.responsive.text.S": "2357ca02ef6aa7e130944942fd92f92d09e12ee7", + "progress.size.skeleton.responsive.text.M": "fc229283f308f828831e8f634edbd6d4ce8f7bca", + "progress.size.skeleton.responsive.text.L": "ac8f9d8570ebfb88fa194cacfad91237be55d4b3", + "progress.size.skeleton.responsive.text.XL": "9ea1024c7fa863ee5a8320cdb9b5b1a1e85c17f3", + "progress.size.skeleton.adaptive.text.XS": "43fc98104ca60f86e3c5e3ca74c7c1003b129e31", + "progress.size.skeleton.adaptive.text.S": "8cf36a335453058f46f6cb6a70232bfba46ccea6", + "progress.size.skeleton.adaptive.text.M": "dceceacc00f9f184b7b4f87616c0f04726a36853", + "progress.size.skeleton.adaptive.text.L": "a4ccf5ff094e1e7688aa7a123960d3a51ccfd0c1", + "progress.size.skeleton.adaptive.text.XL": "9dec82266a84c60ded0de7a3c2ad2c0253833c48", + "progress.size.stepflow.M": "8a3c98b5b0d26aff62c467cf97cc0e74c534874c", + "progress.size.stepindicator.bar": "32ba5969e43b6f6ae6f0c00c9e35afb85a11ff9a", + "progress.size.stepindicator.stepcircle.S": "a55ad771c329b63941722e3c02386928ffc66e17", + "progress.size.stepindicator.stepcircle.M": "012d1e8bb5f6059059656ba2155948fed3d5b637", + "progress.color.bg-default": "5e5eef061675c09fdab6e25644d00bab18b0631b", + "progress.color.border-default": "249e7cb3fd86b29c8e4118e63aec7db5191da3cf", + "progress.color.fg-alt": "76af5855c09d2a52ae17f32994c24ac281e29efd", + "progress.color.fg-alt2": "6d0573162901106ecc6c6f6d31296e1fd6b530c7", + "progress.color.fg-caution": "984d8913bb57289f228380cd22231ed905467bfc", + "progress.color.fg-error": "a4b614c4575509cd2602b756abf2e33259fcfde2", + "progress.color.fg-info": "dedec29319a9567ce458e2f7fe5c50433c381bbb", + "progress.color.label-alt": "a0ffbafcc2a21f5f052097ecaa48a6e72f25f660", + "progress.color.label-default": "b2908ca5d930099cfe4b10d979f3b185730946e1", + "progress.color.datavis.fg-default": "cff357250b27f66dfcc0bccad7197995318948cd", + "progress.color.loader.bg-alt": "2fe7a47a838af6740e2b0a1c344ea05e9e3463e9", + "progress.color.loader.fg-alt": "ae49b86487e447c821d7d87d353485cf97ab4fda", + "progress.color.loader.fg-error": "5907505b88cfd15e7f81a97a65890103b54d9c2e", + "progress.color.loader.fg-complete": "10eb4d680e6e8941e0e1aa5b5d4140976ff7407d", + "progress.color.stepflow.bg-active": "3b2263e1e268c06ee76be6ec5642cfd98155a0b3", + "progress.color.stepflow.bg-complete": "95d4dbd98b93d22451be8ed5090d75aad5ea0346", + "progress.color.stepflow.bg-default": "99e3d23184bc00fb08fc9848e6ad052b2bb5f609", + "progress.color.stepflow.border-active-inner": "9d767b130df7bafc24195cdf32ce7ba5f6e1a9fa", + "progress.color.stepflow.border-active-outer": "9342d8803f700b405fb646a4b08298e74ceaed2d", + "progress.color.stepflow.border-default": "67a39d5779d7f7a1c30d3267349e6cac790608d5", + "progress.color.stepflow.label-alt": "5782a69592a11afce8ea4ff5c72584607936d4d1", + "progress.color.stepflow.label-default": "e25667a857893ab0de65321be72f2273adc83ed8", + "progress.color.stepindicator.bg-active": "5944da3ce78302ec598f620cb9f3b3676d90b6aa", + "progress.color.stepindicator.bg-complete": "8937aa1d8eebdcfd48c9d75f8e33e6a0735a7156", + "progress.color.stepindicator.border-active-outer": "b75affa668bbb742b6c82ea48093b3eeece1603d", + "progress.color.stepindicator.border-default": "60e3ef13b3b3da30a0dd4d52c7ed55c7cd583715", + "progress.color.stepindicator.border-success": "c58f46506d2e904311e9e1a9153d552b0cf2cd48", + "progress.color.stepindicator.label-active": "be75a9c37e7a4bb60cd71bf44062fe3bcfd88f21", + "progress.color.stepindicator.label-complete": "631d9322eb8cd5f33de85e1a3aae51ae574213de", + "progress.color.stepindicator.label-default": "a3852229c543f2d51a3cb512642f63f3cbbceb66", + "progress.radius.none": "bda42e81383e4990df0247a4c580c1861d0caf9d", + "progress.radius.stepflow": "bfbaaecb65fe01991b0024e9ce9449dc50b39abc", + "progress.radius.stepindicator": "cf19c74ac5ceb4057763707f4485f904e6162ecb", + "progress.radius.carouselselector": "dcf12a62af4951afbbf1ce0a55d3fdfad717476d", + "progress.radius.integrated": "a39fefabda84433e4a1a4a3dfd028ba60f7a4185", + "progress.radius.skeleton.moderate": "5e0a3a25af519fcb89eb36ad7f5922c40d577ee4", + "progress.radius.skeleton.curved": "b39b75ea413bda7056b4979573f38d0bbdfbd28d", + "progress.radius.skeleton.sweeping": "a8e8d5bce155977e798273e5f8fc7163ab1c4b7e", + "progress.radius.skeleton.circle": "139ea65b18c5c08cf05215ec64eabcf7d43c6f5d", + "progress.radius.bar.S": "c945032658574b4c7a65ae0671d08351f5a7719d", + "progress.radius.bar.M": "528e00bda573e8270114d7eb95c525d6467192b6", + "progress.radius.bar.L": "3bfcb32958c00aa771394e2c438a53839bcba933", + "progress.borderwidth.bar": "4e65a624a89edf7e8b43b71628e95e9acb14a616", + "progress.borderwidth.carouselector": "826aa32e36c1e01b7ab0ee9151cfd7bc9cd071fe", + "progress.borderwidth.integrated": "7c2489e8c13f4580660a5af4a8c82407724cc9c8", + "progress.borderwidth.stepflow.inner": "910e45c54fd09d3c054d1e98a8cbf81c7af140b1", + "progress.borderwidth.stepflow.active-inner": "736d75e48061efb5b107894840498b862673f499", + "progress.borderwidth.stepflow.active-outer": "1aa09bf55dd707af2b0d3eff4a62b3ea01aa2e8f", + "progress.borderwidth.stepindicator.S.active": "82aef748c35bf68bbae446b0e056cb7316e3ab53", + "progress.borderwidth.stepindicator.S.default": "a4dc15f692fac6b2780f1ee261d62ed5fdbcac75", + "progress.borderwidth.stepindicator.M.active": "62f7c6352918cac09bd310036e48af3333e33df2", + "progress.borderwidth.stepindicator.M.default": "18cd10085e0a53cda0e765c42eb717b6d5c3b2cb", + "progress.space.carouselselector.xg.M": "a2ebb3970ef72c7d0d9782bca09f90441efa2400", + "progress.space.carouselselector.y.M": "2affa450da4c7ef55c57610c43593a104138852a", + "progress.space.integral.x": "c3eb26de427594f7f1391b9cd41a341eefe9b502", + "progress.space.loader.yg.S": "edd76b7799ae5c0668fa1120329452b0555a507a", + "progress.space.loader.yg.M": "2be91b421179770189dc92016623dbcc0c72ab63", + "progress.space.loader.yg.L": "ae34dfe640814559eacc01aade838653cb0f5f99", + "progress.space.loader.xg.S": "1c27d60ab210dd6a39f4d29991e01110ad2d9985", + "progress.space.loader.xg.M": "4baf0e32569a06cc019ae0696fdc3de21a9db448", + "progress.space.loader.xg.L": "20c102f769dc9290a9229916def26af80588db38", + "progress.space.skeleton.multiline.yg.XS": "4a551e3434a9ba2d980f3a2083412febbcc87f8b", + "progress.space.skeleton.multiline.yg.S": "d57a61f477cd31f6ca36b3e49cc9f4d9dced3fd5", + "progress.space.skeleton.multiline.yg.M": "2e5a56f1d8e71d17c6ac11ccbcf2d75a0bf56442", + "progress.space.skeleton.multiline.yg.L": "b85445ed6a7a5263f7369405d04490dc241d48f3", + "progress.space.skeleton.multiline.yg.XL": "037a93ecebef64453bfb840f4b579d3adda6fae3", + "progress.space.skeleton.multiline.y.XS": "aa0bbb0216400616958fd53fe94a1e38b433d44e", + "progress.space.skeleton.multiline.y.S": "68f50063f16f9751ab267fc46ca89ad47cfeea47", + "progress.space.skeleton.multiline.y.M": "b75b44db441d2d769026af3eb594ee952409abca", + "progress.space.skeleton.multiline.y.L": "fe087813daad624ab8ed4b44c2041a887307116c", + "progress.space.skeleton.multiline.y.XL": "d7ad528e311d6b59789aa0c402cb1c803d0ded8c", + "progress.space.skeleton.singleline.xg.XS": "493fc312f3e6003e93c14da57d4195e4677318b1", + "progress.space.skeleton.singleline.xg.S": "65ea3bbee4f36b1b436963a476f3db149d730a71", + "progress.space.skeleton.singleline.xg.M": "3a6ac1b3190cca95b35a41e77677b6cdde32e0f6", + "progress.space.skeleton.singleline.xg.L": "2a07b9224053bf4b71dc3032a92aa45ab7b1ff61", + "progress.space.skeleton.singleline.xg.XL": "d3241ae7c4bc8ce975152e1d70be851bcb318c2c", + "progress.space.stepflow.y.M": "611c9b140308fa8c5e9a73d89d2b134b0f6ebfec", + "progress.space.stepflow.yg.M": "4be075065326964972d1f088f29088c7d16eac56", + "progress.space.stepflow.steps.xg.M": "e4388f9b8b7779bb41647cf61435135d81bac93e", + "progress.space.stepflow.steps.yg.M": "1c8de9f81b39115dd05cdb4e4fb1fe98705f3acb", + "progress.space.tracker.yg.S": "145d56f69edcbf89a1cb7b43ae1a5a1d51dedaa2", + "progress.space.tracker.yg.M": "7b04a95e5252c206693bf5bd0baf05bff909c007", + "progress.space.tracker.yg.L": "45c30204b1f9f26d01781a6c3c82841d59252321", + "progress.space.tracker.xg.M": "9065aaa75b2c0afeef9a45d1118f5f1209e25fed", + "progress.space.stepindicator.generic.g.S": "7d9a636331eca53cb448390ac4aea31c441dda64", + "progress.space.stepindicator.generic.g.M": "5cec4985bf7d1c3fac345f6f07a271e0f2cf4b09", + "progress.space.stepindicator.generic.text.yg.S": "24dff12de59074c4775c70003ecab0240af249ba", + "progress.space.stepindicator.generic.text.yg.M": "f932d1e9c9899322f3c68ce0720c6d0e7c438bbc", + "progress.space.stepindicator.generic.visual.g.S": "abf71f376abe229c9762cd64aeb2d47a1cf8dd06", + "progress.space.stepindicator.generic.visual.g.M": "e43247543186fc52c554fa94da206f5368211a8f", + "progress.space.stepindicator.vertical.y.S": "a45438edec4d0028d863b19b48664eda0266e5ca", + "progress.space.stepindicator.vertical.y.M": "dd87942b821bf1c403e6632ff4d9605f1f4211fa", + "progress.space.stepindicator.vertical.text.y.S": "b03dd820974943eb4c30d2e41b8fc2bd303e75f0", + "progress.space.stepindicator.horizontal.text.x.S": "4a5e19db2b691b8df3fe679f957373edcd2628e0", + "progress.space.stepindicator.horizontal.text.x.M": "b14368abd2dded129d441883d0e891fc30d4e8a9", + "progress.opacity.carousel.inactive": "e0b3e4d29dd18cf2d4f70ee5f73531832908dd62", + "status.color.none": "9c94b65013fe01b3c70b7f5cf23ada34e27778a8", + "status.color.bg-default": "c184c107cf5a72e530154b91bf164e6d6cafa328", + "status.color.bg-readonly": "b73ee7c05e253426392213fa70274974688df494", + "status.color.border-readonly": "04aa9addfd8a9781bd74a57b61954df24fd39f2a", + "status.color.icon-default": "d5d318b21e5a8ac2d64c1f6f277f439976ca8f73", + "status.color.label-readonly": "9e5639ef075944538de5db0f75c45eb711c64f6a", + "status.color.labelAlt-default": "02e16744312284bf87c9ab0e416c7f4194dddb5a", + "status.color.labelAlt-readonly": "74994d3486dd228288df3fb605fbbc79df0f1998", + "status.color.labelAlt-hover": "d49121e95982f4f273e696ae3ad963f16e44e465", + "status.color.text": "5109a6761f1ec09aaf554c427198b17277509876", + "status.color.AI.bg-default": "a733dde9f8730676a5a631311de0e8593cdca3b7", + "status.color.AI.border-default": "c77050b8329e7ac833fb51861416c2337122f6d9", + "status.color.callout.bgAlt": "03c5986c6c278e08afb58974513613ad14869697", + "status.color.callout.bgAlt-default": "e57268906bd6d63de73023a84ffe3786301da10b", + "status.color.callout.bgAlt-hover": "8f086adfadbe1db40b7738446ea9ca8242b53cdc", + "status.color.error.bg-default": "3c095141e9cf16be7b6e8fc906ac7464e417c891", + "status.color.error.bgAlt-hover": "36067b72a77c3e2cbe6397d4a1e1ccb9ad323797", + "status.color.error.bg-hover": "2414b93fd2a46099726dc9fb72c504d9271bd640", + "status.color.error.border-default": "c08c11acf8009e1b9b243898aeb8adf59c6a6bb3", + "status.color.error.icon": "06f30563c187ffeed814fbf87875c99b5f396112", + "status.color.info.bg-default": "d05753e2fcf4ba6d5db6e916ff467e6effb50282", + "status.color.info.bgAlt-hover": "34a0272faa1a09533e6b099170624479f1f801e5", + "status.color.info.bg-hover": "cb9604a097f597e71c657084a5c15c1716c69601", + "status.color.info.border-default": "92895f346ee23aa6a06051d4e1e8b408cef08f36", + "status.color.info.icon": "0e94147d48b643836766796212ca4ae269a22e7e", + "status.color.neutral.bgAlt-hover": "8e28c5e63d00216ac1d6c37b6f5cd77257e4ca97", + "status.color.neutral.icon": "705e83d3892a940e7d5b3ec982e4c1ba0fbac4d0", + "status.color.success.bg-default": "e54c25d09db045458101d4782b73227b4829ffb7", + "status.color.success.bgAlt-hover": "7729cd58cd03ce00cada450b218066586c6b7813", + "status.color.success.bg-hover": "517861aa1aac5082c40ae151a6a7a211bc02018e", + "status.color.success.border-default": "5096c1bd6d2564bdae49c91908af7058ab7bfe6d", + "status.color.success.icon": "21259cec864819900ee2c5a94e9f8bf6dcb37bb5", + "status.color.warning.bg-default": "00331f828ed3fc4946f76918b540719c4cc09270", + "status.color.warning.bgAlt-hover": "1202dbb1091770a5fc41468b0a71804f491b8c9a", + "status.color.warning.bg-hover": "6c1d23d8b776dee456a98f40f69bfe3f2aea93e9", + "status.color.warning.border-default": "8be0ca1ca4bffc234290465b7a0618ad3749a51d", + "status.color.warning.icon": "a48bc35271538d99f47f4a67602315c0bcbb922f", + "status.size.pill.S": "49a4c4ffd792ce1e04fe19db73d607e2bae11db9", + "status.size.pill.M": "18db39f595c930760c22617868173d86c5ad2b29", + "status.size.pill.L": "cae31fb2ad64308f26681c18e771178417dc4d77", + "status.size.message.statuscontainer.M": "a2b738cc725e38c1ac6b269b8f2b4cbacff767d3", + "status.size.message.statuscontainer.L": "ab69b82898963f1dc83074ee669b9d5ffd1f2193", + "status.size.message.messagecontent.maxwidth": "6ba184feaf45cc188c36c372065b344091976bc2", + "status.size.message.global.M": "707069a15f6a5bbc3e51aa10afc8ddd1f4a11260", + "status.size.icon.M": "d6e4c0a7fce258521c47205749c182e9e7cd959b", + "status.radius.none": "0e7313dbe9272c0e9999e4f4576ea43a0a23e996", + "status.radius.message": "666102b9edf21077e59815411ad1cfa13ded007c", + "status.borderwidth.pill": "f02569c412f76123b5a9672ebe6f57f9f8a9810c", + "status.borderwidth.message": "5abd8462f0b580e54576c4b9d2e3826d006fdccd", + "status.space.none": "11211d01586555a963246046507d8a6db8ed73e9", + "status.space.integral.x": "bf93216946abfe3513eecfdf843d205fb1902090", + "status.space.pill.x.S": "9ccb55d0a500eb9142c4482583acc3f99a4e054d", + "status.space.pill.x.M": "f7be2f73e6618d1ea8d1e8546e623b770b780b5c", + "status.space.pill.x.L": "8afeabf3d26a3fe5f416f81c38a266ba145e7fe9", + "status.space.tooltip.x": "d7413aeb32b01b49b1b5c6e87bb3104b9aa10b99", + "status.space.tooltip.y": "21e0fd429f76ea93e4446bc7e04ff05be6efcdf5", + "status.space.message.contextual.x.M": "97114ed8f477662443282a286381d97571ccf023", + "status.space.message.contextual.x.L": "2e0a653999577e917d5f9e8c4b415f8f4091596f", + "status.space.message.contextual.y.M": "1f0211e6d70fbb50ccb30be0aa98b1236d2fed68", + "status.space.message.contextual.y.L": "23b5ab65cb6bb46aaa6d002c8efe28b21fdc269e", + "status.space.message.contextual.xg.M": "5dfa9f1455c533f9d29ad51018f4007e6bbe82a1", + "status.space.message.contextual.xg.L": "e5aaefc294664a33f1e84474a0b0718cef2189a9", + "status.space.message.contextual.yg.M": "f01976ca2df1a233e4953aed28e25344b6a49258", + "status.space.message.contextual.yg.L": "8fbf6456ec5c998f18ff5e04916e5562e1b68158", + "status.space.message.contextual.subtle.iconwrapper.y.M": "ee90ecd83ac742f0090a49d7781bad646bc8bbaf", + "status.space.message.contextual.subtle.iconwrapper.y.L": "88e32a43145051d41e82c7ddf005dae69e409437", + "status.space.message.global.x.M": "6bc3c7214994b627785c269b52a8522e67be683d", + "status.space.message.global.y.M": "0c7c01dd50fad59461ac3077634aaaef77c26a18", + "status.space.message.global.xg.M": "a5b640bb24b1f43d849cc50d4b49acfe78873793", + "status.space.message.global.yg.M": "74b78c6f5373050214c063d8071ae513bfc29662", + "status.space.message.global.CTA.Y.M": "f08dd22ace9116dc5b1d62c2857e81c00232bc90", + "status.space.message.global.CTA.yg.M": "7d36f3ca4f30f5229d32fff8afdc4521c33d04df", + "status.space.message.global.iconwrapper.y.M": "942ff02363a89293193f0473e5b22ce1b6176d7b", + "profile.size.profileeditor": "b648e5eeccc41c7f3e49d8e9a108ddbefa678d74", + "profile.size.outside.XS": "7badefbbbcef4c3d9fea09fe0d39792cc77757f0", + "profile.size.outside.S": "b50c47531b9694117a5bcfd0c1b528e3e7544748", + "profile.size.outside.M": "af55ed8c67130e657a7106e18f410ce38465e2ba", + "profile.size.outside.ML": "0c569746e9104066ce3b9861cd651999b98abc59", + "profile.size.outside.L": "c8ea1532e8c61458133dec2c5acb75e150644d0c", + "profile.size.outside.XL": "d1af9f079edd04502226fdd44cd21f67dd63741a", + "profile.size.outside.XXL": "7b4696d90c9b62632de8202ad40ebd149015eaa5", + "profile.size.inside.XS": "b8796456ccbe74bcbcb3dd6f318350c9a04c2051", + "profile.size.inside.S": "342a44d729419e766a4bb454864d270964058bba", + "profile.size.inside.M": "f91f6e435f7d55bf249e3df1351b40624167d0b4", + "profile.size.inside.ML": "fa1bf4857cbff58a261889469465226101455cb5", + "profile.size.inside.L": "4b773c1bd32e28de70ce22af10de0033cda0c0e9", + "profile.size.inside.XL": "22b6259180298b5b6e1b5e6eff7c84127db7e561", + "profile.size.inside.XXL": "9e1766c9554ccbf69f60c2dcbe8f8903ad0733a9", + "profile.color.bg-alt": "ca050229c9ae3b24b810cd408ffeae2059602c47", + "profile.color.bg-default": "566353f2b24b9edd1bb531a9427c02d757c555ec", + "profile.color.border-default": "c78a3099f90c04c2452e353cdcdc488765c1a554", + "profile.color.label-default": "d829642b17ef204889c634e8800f4da4ca4246f4", + "profile.radius.portrait": "b258594cfe9452243d2f5f236e4da8be3b78b07b", + "profile.space.none": "44c9c6ecf7896e99fa32f412e5d258fc1f63f915", + "profile.space.x.S": "918e5c368b0c3951f2429cd093875c23aa7b8793", + "profile.space.x.M": "7e25ede9360210112c904f71a1cfcdf593852b51", + "profile.space.x.ML": "b0d5c61f52bf1fd3a9778c9c1780304879e13444", + "profile.space.x.L": "649fc1051931c85e3b221451a6124867ab817488", + "profile.space.x.XL": "2ea9898f8529a2f06a96d4903c0cd564459ecc43", + "profile.space.x.XXL": "962ae702c40b4198953fddbf73133eae16e4d887", + "profile.borderwidth.portrait": "e02100d66d5834f36b4659ca95aa25bf24df3937", + "tab.size.M": "e3b7a6c8ee37fe28327b01852aba97cfff7bd4f5", + "tab.size.L": "bad8373374528502aad7b1ce23f4dede815d37fd", + "tab.size.shadow.arrow": "1e1bc37b55b2dbec64cc6abbeea4e316198c30b2", + "tab.size.baseline.M": "cc7156e951796677aae84d1e0c4733e9c422453d", + "tab.size.baseline.L": "7f1c1a8253c11ebdfef314664b645b6fd94478d1", + "tab.size.icon.M": "fd6e846c110b477f48f7d6163264d75267e10a84", + "tab.size.icon.L": "9ea7e297076e2c111c6414ad56659d1607418caa", + "tab.size.indicator.M": "d897329601d630961e5da3e045ca6640c8a5c2dc", + "tab.size.indicator.L": "8a5b7f9f05ac3af7fea4de55792d60b03d18d584", + "tab.space.x.M": "9928d03f930c6b4fc41b225b7b487ee7819fabc4", + "tab.space.x.L": "cd32b0bb5959fa2fcdf3271fa893eca85468e570", + "tab.space.xg.M": "a144ff737265a5dad6bc6c0c8a6e5d71b16730e1", + "tab.space.xg.L": "0e6b384fd263cabd704c5e024522e2f636507864", + "tab.space.y.M": "e46b8ecc74fc97d3cb7198937e75e847a7f662c8", + "tab.space.y.L": "b48202864a16ed7b181715995183f6be9f73e3f2", + "tab.color.bg-enabled": "d8657e9dcf7dbaed6b4bfe081c520ab35e05a53d", + "tab.color.icon-enabled": "6d4c0c7c30992888d09c794ab70a3c3ce7b9baef", + "tab.color.icon-hover": "f6d224fe972b8d484006cd2b251b48e9c6f6144b", + "tab.color.label-active": "19d3a9036e6e2b1271ff32b81fa50191cbffa142", + "tab.color.icon-active": "a882447b658aa26b2694f1b6ebf26eaeb98d6e43", + "tab.color.label-enabled": "691226bda8fc13bcbfae1e7e409dd8aacfc9e44f", + "tab.color.label-hover": "f8c367d3dca0e458c0a4937e5d4a65b01d58ba26", + "tab.color.navigation.bg-default": "e3facc8423ab67d4d5beeae1562fece5da868d02", + "tab.color.validation.border-warning": "cf2e74be918f9b6ed3c2e2a2bd205c64cae48778", + "tab.color.validation.border-error": "f794f4e18be75e8014786527f9dc50e4f9301a29", + "tab.color.validation.icon-error": "2a84d8b14c0b61c8dedc46a7e132b387c0473e88", + "tab.color.validation.icon-warning": "d80c2c82b2874fc2e4991f1a16cb809bbd985bb4", + "tab.color.validation.label-error": "53a0ff785743de5a0ee37d5e13f09db2f830c9f9", + "tab.color.validation.label-warning": "8d1ee1f205e7b283b63136f83acd7870e20dca79", + "tab.radius.baseline.M": "837044670bca0637a7bbd2b1eac1095a693a5479", + "tab.radius.baseline.L": "5f8370d40ddb7f103454d930e67608ebd8d241f8", + "tab.radius.indicator.M": "8248855dae76de8c96aed35deccbf3d61323138a", + "tab.radius.indicator.L": "6886a7024199b08d4dc4dd808caec1d12367ede7", + "tab.radius.none": "6d620fe223712ad31413622bf9ce4b335d35ba0b", + "tab.borderwidth.navigation.bottom": "92d017bcb914d3845f9acc5f43316a19f909bac5", + "tab.borderwidth.navigation.side": "83f46aa396c87fc53ca29cdb4c94fce4cd0bb350", + "table.color.header.subtle.bg-alt": "a600e4e5f34f1597ea7be9338cff74f395fd4f1d", + "table.color.header.subtle.bg-default": "ed04ab8c95edea05ffca7ffa15d6965a1f0ddc86", + "table.color.header.subtle.bg-hover": "9e74bf051bae01ad69e984549b974db65f370372", + "table.color.header.subtle.border-default": "43e0fb1c5d6aef08b3565f341e78f23ff92fffbe", + "table.color.header.subtle.label-default": "0e9269b3c42f0be49bc23d396d6bfc0dfc4b2773", + "table.color.header.subtle.label-hover": "c709dd0ac0126cf28efddbbf1ce54cae18250de8", + "table.color.header.harsh.bg-hover": "5ed94709c903acfc9730564e1bb1648df15c1d6c", + "table.color.header.harsh.border-default": "1c718bc35afc40d9772c7ec7b2ad805e35c0b523", + "table.color.header.harsh.label-default": "d5806cc55e3bd7066985ba97e8a21229f8eb7921", + "table.color.header.harsh.label-hover": "d0168415e34266c945dd9b287a9080f03a3b152f", + "table.color.row.bg-default": "149ee0b272d956c7b1761eea8c6c1c461de60609", + "table.color.row.bg-alt2": "7eaf175c359eefd1f885ceed854207c6da1e0fb0", + "table.color.row.bg-alt3": "7efe4f4d39c0ca29fb4e2decc4df41602d827d68", + "table.color.row.border-default": "952e1585502d1c722ac02c92caddb76218a33be1", + "table.color.row.label-default": "9128246a4096ea7f3b9a19445f214222269e80e0", + "table.color.row.label-hover": "f91d62635fca55f4bb903c0c31b1ba407add9f2f", + "table.color.footer.bg-default": "1bc4224897894a2f47ddec3e2dcf92cd1a58a99e", + "table.color.footer.border-default": "9a1f5fc47e58f7b97cb1a562ae73f9c6d3ef8c79", + "table.color.footer.label-default": "7bb1734b6229e3c5a495862974a2ba0b9dcdb92c", + "table.radius.container": "0bfdd27dfe937826a557d23dada8a95a2dd3e8b8", + "table.borderwidth.thin": "fdaddf961eca81ce68139805b659fd121ef51a06", + "table.borderwidth.thick": "d6785095e0eea2049dc123958e1a794f5723db52", + "table.space.none": "6cc04478b8d835707a536a0a0d41cce9f8c0a03d", + "table.space.row.x.XS": "df54cf5ed34c8c95f3221d43ba054e6755022260", + "table.space.row.x.S": "00b382186f9a76ffac948738694f770e4185a0ab", + "table.space.row.x.M": "16d3a85562f70767535cc04dc59011a8e8f97e04", + "table.space.row.x.L": "3d5b5c3612012a76d555ff6d2c682fcd18e8911e", + "table.space.row.x.XL": "efe86ba5e9fc98918f18adbea60875660a911249", + "table.space.row.xg.XS": "02bb04a327ed90847138a6013ccdc83af888fa68", + "table.space.row.xg.S": "5672b068c09b4b7e0f5187333a95885f25830482", + "table.space.row.xg.M": "46e957e4f8951a26c57ab29aefeef1a72065c484", + "table.space.row.xg.L": "4fb2cc7e6ab8bfc773f695f590a0b9c90acb493e", + "table.space.row.xg.XL": "0dff80f899613661c2780eeb85d0f2154d544f1b", + "table.space.row.y.M": "a7b9d8d760d4ca785bd3fbb7e62e76f9c25a8281", + "table.space.row.yg.M": "a522b099f0210833890e59e5d0428af4f487fc66", + "table.space.rowchild.x.XS": "cff0d2b0fcf6d369f4f79c37c082dd8dc84bd810", + "table.space.rowchild.x.S": "1a3f71faeb61e919167d02452bb64c16b6abfcbd", + "table.space.rowchild.x.M": "096ad054c1d8c47d293321695a4bc03df65c7226", + "table.space.rowchild.x.L": "36edf4b358f765370e39df704244a7fd9ebf3c34", + "table.space.rowchild.x.XL": "02b44f02914572f126b10bba5f51225368f5b562", + "table.size.row.standard.XS": "1acacaa899d8849d924fe80c5b3b1e3b1a5608f1", + "table.size.row.standard.S": "e155f826118a9fbcf20abf22145bcf63f31042c8", + "table.size.row.standard.M": "5dfff3b5ae64ca98e4928aa50f4093884508df02", + "table.size.row.standard.L": "b960c0a3805ba4556d73a190155266f11234e72a", + "table.size.row.standard.XL": "acf25442f3693beae099a3af44402a039b08577e", + "table.size.row.doubleheight.XS": "c1d03013882d1f871f85d2b56f0b4aa7a364227d", + "table.size.row.doubleheight.S": "f09a6f2b056c91fc3efad18cec045c7d525e9752", + "table.size.row.doubleheight.M": "e6bf7a6b90d3bd843da049c06eccdfb6f68447d6", + "table.size.row.doubleheight.L": "5ebd337150cbd5bcbf8da9b6cd54bc2a0f30968e", + "table.size.row.doubleheight.XL": "ba6fd327183431cf35205c62348d082635dc8b0f", + "table.size.icon.M": "684d2c9437867a9c13d04fe77add732e0055ee8f" + }, + "group": "Context" + }, + { + "id": "4c49743da2ebc0f95ec1ec427f577a407f93d39c", + "name": "Product-Small", + "$figmaStyleReferences": {}, + "selectedTokenSets": { + "screensize/small": "enabled", + "global/borderwidth": "enabled", + "global/radius": "enabled", + "global/size": "enabled", + "global/space": "enabled", + "global/typography": "enabled", + "global/shadow": "enabled", + "primitives": "source", + "components/badge": "enabled", + "components/button": "enabled", + "components/container": "enabled", + "components/focus": "enabled", + "components/form": "enabled", + "components/link": "enabled", + "components/logo": "enabled", + "components/nav": "enabled", + "components/page": "enabled", + "components/popover": "enabled", + "components/progress": "enabled", + "components/profile": "enabled", + "components/tab": "enabled", + "components/table": "enabled", + "context/product": "enabled", + "components/status": "enabled" + }, + "$figmaCollectionId": "VariableCollectionId:91874:43409", + "$figmaModeId": "91874:1", + "$figmaVariableReferences": { + "button.color.typical.primary.bg-active": "d73bba74a7bfcb13765ab2fd9bf5254f1a83a228", + "button.color.typical.primary.bg-enabled": "ecc071f8d0bd78a54c1388731b258c4ca0084520", + "button.color.typical.primary.bg-hover": "cb1aee06e73d3ee619602b44201d3463c961148d", + "button.color.typical.secondary.bg-active": "469ef15554a2981f40b84e6c2994150305e23891", + "button.color.typical.secondary.bg-hover": "b8590daeedee66cbb5b735906e870175f91f63c3", + "button.color.typical.secondary.border-active": "0972222e0dacc76147b5fa8221aea071e7aa98cf", + "button.color.typical.secondary.border-enabled": "87f162c000f633b14713b48e765d600e94315a3f", + "button.color.typical.secondary.border-hover": "008980bf3db89ad7235c926a1385413b917134ed", + "button.color.typical.secondary.label-enabled": "1f8682243adb9559d59612d257949a1bed567b9a", + "button.color.typical.secondary.label-hover": "aab193b37bfc5a742fabc59ee3a8e75eeb0b909b", + "button.color.typical.secondary.label-active": "2478dea8ee9f689b55a8a1b70ee605fe04d7b902", + "button.color.typical.subtle.bg-active": "de027f11704af79dae323a11a65eea1cf93a8dd3", + "button.color.typical.subtle.bg-hover": "45718803a7a6f5f5e3cdfdae372bcf399b2d611b", + "button.color.typical.subtle.label-active": "247fe156d7c62c661287785b902d37884351a18c", + "button.color.typical.subtle.label-enabled": "9072355014b5e96431ffd79d180b77363c4ac64a", + "button.color.typical.subtle.label-hover": "92c601518ccc7a750e60ac5a27016ccc8bcf4db5", + "button.color.typical.tertiary.bg-active": "0cdeec1baee884371690b794cf334c1c58798c63", + "button.color.typical.tertiary.bg-hover": "a72c2b52de96848da07176ecd79c1e3982df851d", + "button.color.typical.tertiary.border-active": "343304e18f39b2e5aa679c68f082cc54367ecca0", + "button.color.typical.tertiary.label-enabled": "af8918e7910c3a8732526c70197a178ae4c119ec", + "button.color.typical.tertiary.bg-enabled": "3dcb0d649cc7ee11ea3c88f011bcf726c897d449", + "button.color.typical.tertiary.label-hover": "beecf025dd3c88b151f351579f9bdecc245c52d4", + "button.color.typical.tertiary.label-active": "755faa1ea3687787885ab3d6eef6818b6b7fa4cf", + "button.color.typical.toggle.bg-active": "cd75b68b31addcb49478dafc72e0ab522dd36ba3", + "button.color.typical.toggle.bg-hover": "b2c265415e6713f05555ba660362d664be4a0c15", + "button.color.typical.toggle.border-enabled": "c56a31e3515daf36d770ea42453d550d3891ccaf", + "button.color.typical.toggle.label-active": "fb2b9da58241b710974fbcd0eea0550b4de12a0a", + "button.color.typical.toggle.label-enabled": "26b3dce982e71f456ba2f92c28227a5fede6c1c5", + "button.color.typical.toggle.label-hover": "4a4e47d595a2ab02a4cf2cde632fbafc05ed0a14", + "badge.color.notification.bg-default": "ad3b99b6645d78df0dd6958497783ead09a7e142", + "container.color.interactive.detailedicon.bg": "4b6f8eea2c965ba012603a55a04a04cae6aaf5e0", + "container.color.blockquote.border": "5db764470e64a30842ccd3f47cfa7dac6883c980", + "container.radius.card.moderate": "a85b4de7a53d1662eae6ecca1c08563e64e10a15", + "container.radius.card.curved": "2fb18e941f9fb54a7c2889f8b8ff41e4ae0ec3b8", + "container.radius.card.sweeping": "70ef3947b1bb16b305c286e0e7ee6e46f37e588c", + "container.radius.tile.moderate": "d0e6f493b132ee0f88d4934cecd273dd79f5c2b2", + "container.radius.tile.curved": "7db88544f369ed9a26549f25c1a65d13ad482fae", + "container.radius.tile.sweeping": "ef68353d8cedb18b027fcd7930d9f3edc0f80c13", + "container.radius.tileselect.moderate": "06d936df368eaaa8b79edc381feeb26c6500acf0", + "container.radius.tileselect.curved": "20e04cd4e2ecdb7ade63e3d664b7e26be07823a1", + "container.radius.tileselect.sweeping": "916146a71951437f4cd8c19cb23fe638bed5ab68", + "form.radius.checkbox": "eaec4ded50f994e7ceed299f5e737095b0050256", + "form.radius.texteditorfooter": "40d8db58a5be3a719ca2a0b0c3442be18942050a", + "form.radius.colorpicker": "0f42f5834874d05f2878c3129b47cae876487850", + "form.radius.dropdown": "f8b13cd84b8fab6c1611caa9b91fab95dc1df6d0", + "form.radius.fileupload": "505a977326b92e3d5d7294423fa54e3f4f8553a0", + "form.radius.fileselector": "5194653eb73c3dbdc8a9842198b063ce62375633", + "form.radius.input": "1b8cc21bdbdf9e0165cf3c07d70fc582ca5368e2", + "form.radius.validationbar": "d58c5bf1620aca7f5445956eab232c398a106e1d", + "form.color.calendar.bg-active": "4720658e790bd37e028977a7d01c2fc873fe2424", + "form.color.calendar.border-duration": "819172008382ab1d5059dd27fb8fcb451d921e55", + "form.color.calendar.bg-duration": "a16bff728a9a003402db04aec7b813fbb4bd6ce1", + "form.color.typical.border-enabled": "3029f124e1a5d4a703744dbd4fb34cb022aaec77", + "form.color.switch.bg-active": "ce1251804c65070fdaab00ed6621d61635ba51fc", + "form.color.switch.border-enabled": "aedb7374d5118ec49daa4b5963955e1191d9564f", + "form.color.switch.fg-enabled": "dbdd158d7af6257de31c7f45996e2d45bdb1baa5", + "link.color.typical.label-default": "e41145db82eaaf205570817a13b22dee3d02c04c", + "link.color.typical.label-hover": "cdf639c79cc2d78986a3f2792ac9f454a96c62c4", + "nav.color.item.bg-hover": "848af93c73466bf6a150c3586793016db77014a3", + "nav.color.item.label-hover": "012da2516033aa836529af960f93eab5d6906666", + "nav.radius.menumodal": "b14e6c31eadb905a0aada5cdb38819af475648bc", + "global.fontSize.adaptive.step-2": "44314edab6d687c6f1c2e69647563a7e56a2fcf4", + "global.fontSize.adaptive.step-1": "ca2cdba8c8e2dc9a016c91ffc96738b89c582c62", + "global.fontSize.adaptive.step0": "a30a868373f347e37b4df2d6a6ae7998d441e1f1", + "global.fontSize.adaptive.step1": "00ef09834b2e7ef9c0c4d030c4d24d92fe8ad5f2", + "global.fontSize.adaptive.step2": "1d778e97a6072f1ba14a5d9c4ed5ae9884e2f6f4", + "global.fontSize.adaptive.step3": "a0e0c9e912cb36ec0a6d255fed75f7608abc5dd2", + "global.fontSize.adaptive.step4": "099df81b8a94eea8a3faddf6c6382586b98f4da5", + "global.fontSize.adaptive.step5": "f5caab8d2233bfdf62d601912d0525a026598127", + "global.fontFamilies.sage-headline": "e7226ec79e2e57ce0559b2bdae66b517ec77e1d3", + "global.fontFamilies.sage-text": "ec8c3386dd01d0438a08401ce7e8a9eab0630519", + "popover.color.bg-active": "dc2dd96de119bc1a7b6cd7f3b2e2090f1d7831bc", + "popover.color.bg-activealt": "d01ba90620be933772db57b18c0e087a58985a98", + "popover.color.bg-hover": "2bb22e209751803082dfda2b4a5952e77aefe530", + "popover.color.label-activealt": "36a438d9fc6c524cc18008d28430c8c0aa301239", + "popover.color.label-hover": "65b11448c1cd42ddc62b7249fd146f9c78b81e9c", + "popover.color.label-enabled": "40060a0d39cd1441bd95e31c1e6a3fcfd43f3a32", + "progress.color.loader.bg-default": "9942537975dc6f8dab1b4373ad2997c7c39e8065", + "progress.color.loader.fg-default": "1228162d10254417ec4a275e91984409df44a3eb", + "status.color.label-default": "867ba5c4a8ed7434f3a481ed2e3266444b13eb1c", + "status.color.label-hover": "1502a4d36ca222ade1de748789a49394676b976a", + "status.color.error.bgAlt": "d148be733033e2b724188212ae7d78a6016426a9", + "status.color.info.bgAlt": "7623e995eddaf130e9e58bca59e85f25181633f0", + "status.color.info.bgAlt-default": "d8cc6951addc97749232bdfb2cb54c987fa57365", + "status.color.neutral.bgAlt": "52d65c07a7c2aa22badf56321b89620bc25f06f1", + "status.color.neutral.bg-default": "db13c51702081fc1df4b2430aebc10bf6ed26f7c", + "status.color.neutral.bg-hover": "354201f0b8988b103c2d959a65cdb3f4eab34982", + "status.color.neutral.border-default": "c0bfc43a5cf2437e5e3e58c640fc674012e4b11d", + "status.color.rating.bg-default": "2ca253f3c33b0595d3ca575eea21234d33ad293e", + "status.color.rating.bg-hover": "533b0fe14cc0883d889c1ecdbbe4edf1354ad210", + "status.color.rating.border-default": "5b3b0fe3ff286d065087b09e036bbdaafd855588", + "status.color.success.bgAlt": "82df6e2d686439ab70c610e52a36d8f9c9ab5939", + "status.color.warning.bgAlt": "d99551602e113bbb88150a5dfdf0867b6dadb8a8", + "status.color.warning.bgAlt-default": "9c9312936cc3637991d241bd3ee2922a3646f165", + "status.radius.pill": "ecfcbd56d1c07ba24b69f91f2f0a017a057ba3c0", + "tab.radius.M": "553fe1a26d9c1a1ccbff1a636c4fbee13279789f", + "tab.radius.L": "d0fa4522d4d623a7ca880177850c7db719af6a5c", + "tab.color.bg-active": "3d8c8eb4c47d4aea0477be5dc8229b42981f9383", + "tab.color.bg-hover": "5a423db0a74e578a55e9190169ed5706b8a008f4", + "tab.color.border-active": "a05b8f2c29911df079aaeb47c2ed00602fb849ed", + "tab.color.border-enabled": "ab9fa748bb5194e0fc3e265ea50d015bb014fd2d", + "tab.color.border-hover": "c5affbe1329789237c379a860684f3034b0933e7", + "table.color.header.harsh.bg-alt": "64381b36d62587948d8b25dbdde6fb153f3cfdc6", + "table.color.header.harsh.bg-default": "97a4973da1e0c7c897d51494939836e15c3dfe20", + "table.color.row.bg-activated": "b7f77b56ea065750a405344c81c2d76d55221676", + "table.color.row.bg-active": "a2acf7057139096c90e02dcc80013589ed8f1004", + "table.color.row.bg-alt": "0a82ad0f9ca42f2600b526896f0b316753996699", + "table.color.row.bg-hover": "50511c4672e130223031a2c62615d77a87d09ba8", + "table.color.row.label-active": "d981b9984ab6abb3bac19d34ecb48179566fc4fb", + "table.color.row.label-activated": "3014e365945e18a5ebc437d0ba7730577b496da1", + "button.color.video.primary.bg-enabled": "6f59ec78791cd546cd21a07051cb1156a2f131d5", + "button.color.video.primary.bg-hover": "92f977de52635d4af44834e4acf29c0d722b698d", + "button.color.video.primary.label-enabled": "e05763f4fb7fcad3939185e52c8fd69858ce7f34", + "button.color.video.primary.label-hover": "e8c1c7b438d0eb29a6a6bdfd54484281e0ffc166", + "button.borderwidth.tertiary": "91779584c898ee041c6a8dcd56270c93040b253f", + "button.space.tertiary.x.S": "5c16e064a29ca6eb4d720f4e228c0b7c82ec2585", + "button.space.tertiary.x.M": "9309b89573849935c91932d05db45dc9fc9934dc", + "button.space.tertiary.x.L": "886bae4c7441acebc39a030862bf84100010c35c", + "button.space.tertiary.icononly.x.S": "59fc4a4546d74708d665250bf7f8535ed5971fde", + "button.space.tertiary.icononly.x.M": "42d241456c4d6fb2dee9ee69a1e4f43e88cd66bc", + "button.space.tertiary.icononly.x.L": "55884e5ad5f702ac9957f4e37e2af4f7280f8f81", + "button.radius.tertiary.S": "649391cbf3256f38979214944de4292bd4900e1f", + "button.radius.tertiary.M": "deadd1076425b9fd520dbdddff289a636c35f839", + "button.radius.tertiary.L": "3cad80bb7d426572946410fcbc4be8f54c139883", + "form.color.switch.fg-active": "d4473ac50dea576c66c0c9620e915fc7f7bf5b18", + "progress.color.fg-default": "4533513cc279fa48e296b2a5bc8b54b527508322", + "global.fontSize.adaptive.step6": "15f234e1dd369afd59da5946c8e38d49f84c8b99", + "global.fontSize.adaptive.step7": "fe9d1662d81e3433ea60ea29e47bedcff6713d0d", + "global.fontSize.adaptive.step8": "ba568db17d2eaccf52fa6d763162d26fbe497b82", + "global.fontSize.adaptive.step9": "ef9f822c7c93c6bf692365b8a3f7c5c6051cad5d", + "global.fontSize.adaptive.step10": "7c1ccbb51f5bb73afc2c46f4ae18dd4663780742", + "global.size.breakpoint-min-width": "11fea4981ba36f253b7418d43fe449f5e804fc95", + "global.space.macroScale": "fbe65c255d4034d004dc832ca3070a12ce16722d", + "global.borderwidth.scale": "6dac19533b6c095d2c97938020e7a45074cacacd", + "global.borderwidth.none": "43dbedf2a345872395a95d72965fbd8893624b40", + "global.borderwidth.XS": "b334b4b764fd28d2f3b57748f599cca99225d8e1", + "global.borderwidth.S": "dc9acc9cafc6f1f87c577ebc760b18e9f3f4d386", + "global.borderwidth.M": "659af74d1bb76b04607cc6f23ee446f65e64c0df", + "global.borderwidth.L": "48d631a3f574a5c9fc2ed14f6d78507963d0232c", + "global.borderwidth.XL": "cd4a33ccd30f5afda2a741606003e54392b8875c", + "global.radius.scale": "25779c0eb685464a505ccbca5e400285f3d54292", + "global.radius.none": "b9b0f28767800b7ea0b1b2148e460a589d568cf7", + "global.radius.circle": "063e41e495052e3b9cf91b390534ef49308d9cdf", + "global.radius.container.XXS": "e77774185cc4fab82d49a2b2f4d178fd7fc236d4", + "global.radius.container.XS": "763f699026c982de5143eb0d8fa955e1ab1334d6", + "global.radius.container.S": "b2443ec9b331090848c3de13fa1014335933633f", + "global.radius.container.SM": "288ddef9618d210349eb35cb830d77892ee923b3", + "global.radius.container.M": "7517affbc26c2f4f6c8e2458f7fff85e81aeb4c8", + "global.radius.container.L": "ab4c59c56c2f86db0ffbaf976f5d77f5da1883f0", + "global.radius.container.XL": "6dd677dc9ee68ab695ae573f42d07ac3aefee43d", + "global.radius.container.XXL": "233b05708e7dba549c493e33e0785244629f5f87", + "global.radius.container.XXXL": "1afaaf6df1728b16238f04c78fb5ba29202e6d46", + "global.radius.container.XXXXL": "a27988b005b603ceeb958bd96558145451f17aaf", + "global.radius.interactive.XS": "a5de21346396ccb19048941b7323fcb4d8ff1873", + "global.radius.interactive.XXS": "d8f4c931cfc3b7aa6534bf90346555fd7de8a10c", + "global.radius.interactive.S": "a546f7f00cb0a916e0b121663617a4c00355ecf2", + "global.radius.interactive.M": "e1070220ae5de5bfb3cb5e17022a430cbbfb5796", + "global.radius.interactive.L": "3b91adb09b8d945713a5fe026dd8a06446d9ef92", + "global.radius.interactive.XL": "3d7adc0e8cd4aedc86beb6cc76a303c951f02a3c", + "global.radius.interactive.XXL": "e8f8f2beb1260974c6d19b7d66dd785441b561ac", + "global.size.scale": "429f82853556b8b99d9d951fcde1d70de832f4a8", + "global.size.none": "788ed4fbcbe0d86bfe5b68fce34af566f261a5b7", + "global.size.container.M": "1f767617f85d97964506322bfa029084ba1b0b6d", + "global.size.container.L": "4d3d90d8b7cb9297526dda4b3aa1c04d4430106a", + "global.size.icon.S": "92fab08b49a7cc8eda3ccf37d96eae56f5f85183", + "global.size.icon.M": "8d6f69b0bce7bd6248a6f3ef1b898c0365d825e2", + "global.size.icon.L": "64e0984a734b9f342bacbfdd484cb561f6b519d2", + "global.size.icon.XL": "74ce4621432a5889f6e8097d45ad7a53ef680bc5", + "global.size.flex.XXS": "ba57c27ecf4ea90b8628302dc073a68ad99094dc", + "global.size.flex.XS": "9534663e81ea049e3d956c7714da841d4f8b6b11", + "global.size.flex.S": "7a942a3efadee9c0b578a0de9473ac04cdda1052", + "global.size.flex.M": "f6f1c27e6981c5f476acb2cede12d2f62a9afcc5", + "global.size.flex.L": "a8b3bfc84944cd8d7591d3286d8aa59114580c67", + "global.size.flex.XL": "2924690caf19c2ec628209e9cc89c7951020fa45", + "global.size.flex.XXL": "987572b3147b48554c11f2a6659d1a3d765b85ec", + "global.size.flex.XXXL": "03e1ad04caa5dda51ab34bad5c240ef9d5e2234b", + "global.size.flex.XXXXL": "3fff3daa5084309007fc64940ab30c5822962c16", + "global.size.macro.XXS": "3be3cb4c30c1f1697efe418954e0550c532cffac", + "global.size.macro.XS": "61761875b1984b99b1491d07d8023c254a64d22e", + "global.size.macro.S": "c9b49ed9f1b36288f027e6e6ab2676756ee7ac2a", + "global.size.macro.M": "cdfa9a15fac401deb393c07412c95cc4c2e9bbf3", + "global.size.macro.L": "7ead7e17739b897da5df8da3af0bde489bf2bd8f", + "global.size.macro.XL": "5f3951055bc1678971a3a4b1e98e08c428e35a1a", + "global.size.macro.XXL": "02992331be54fcd8f82d03b2c040c79b9c741cad", + "global.size.macro.XXXL": "9c01b469899ae2ca8d93ce6a60d6a388db1db9dd", + "global.size.macro.XXXXL": "1913e54d24adc465a37e252c8c1b8c989440fe97", + "global.size.micro.XXS": "d811dbc5fe238b9fe0d42ff02a892bafdde4b8bf", + "global.size.micro.XS": "b82ad5c50c4c8457b630d753bc6c4e72a4571629", + "global.size.micro.S": "d3ebfb028c5c71dc0c4e7dc2c291f4f71d68b27b", + "global.size.micro.M": "232d8c52997a8cf7c3bac23528b5a3d67929b0e8", + "global.size.micro.L": "4a175f79d95e038586891463b841c11cb9bc2db5", + "global.size.micro.XL": "24cb8a1d6b5845b347cec6e34b4b615aa783fc1d", + "global.size.micro.XXL": "2d1d82ac80a079ee3e8e346fce728e4ce3d0fc40", + "global.space.none": "7814806b844e49b11bc33c7eb77b3ea290ffd907", + "global.space.microScale": "21c974fd2b6732c069badf4911fa25d141d821f5", + "global.space.micro.XXS": "348b4bfdb0b33644bd7511d644fb49055254d4c3", + "global.space.micro.XS": "35f52473dd4b24fa53de48194543e62572aa82c3", + "global.space.micro.S": "5ac1a13bf46313fc46ffd6202fb1ef89b19a5c4c", + "global.space.micro.M": "42d8873786ff1e126f777dc5d9789e413a857ab1", + "global.space.micro.L": "482c2464cb12f38b75380247b938b192ddfa52cb", + "global.space.micro.XL": "6380be8a20655110c7033daad052c3b9276d9e78", + "global.space.micro.XXL": "d464676d7cc1d54cd3ab14dfc5deb037cf449aef", + "global.space.macro.XXXS": "be0af3b32d7138b608eeeb3945eeadba7df28f30", + "global.space.macro.XXS": "8dd747ab7b4188bc8c4d82257d81c92ad65bbaf0", + "global.space.macro.XS": "6ccbd3ba9220a0895722ebe83f2eb72d6da50afa", + "global.space.macro.S": "460f55b5bed55722b260d7c5b277a893c847cf46", + "global.space.macro.M": "c9f2e0e150ad79870a22a2ec444dced8024dba5c", + "global.space.macro.ML": "c3c318525df79ac16a8ab9ae91b98f47b0e63836", + "global.space.macro.L": "6faddc1bbf30654b9bdcbafbd7a7a881781b782f", + "global.space.macro.XL": "3d412117562afd0b1cba85f3155e95c3571506c7", + "global.space.macro.XXL": "648457b1a03a31a2867e74d641897bc403581e24", + "global.fontFamilies.sage-icons": "e5b555cde4f0a7e88c38140a232780b2424185c7", + "global.fontFamilies.sage-ui": "30919b14ac88218863209fb47395593ff6629af3", + "global.fontFamilies.other": "52d376e77553b95b6c69fdd78b91591469dd74fd", + "badge.color.notification.border-default": "a112681742f2249d163dbb838dc1e1609be39451", + "badge.color.notification.label-default": "9d8e60a759fca7de5b90b637aed4a5d68c4cfece", + "badge.size.micro.dot": "812a11d57aa383a35822500ca7657faaaeec29d3", + "badge.size.micro.numbered.min": "817e0a3632673afb20a2c9a80cc8f24981891073", + "badge.size.micro.numbered.max": "0cebf54f1d5344f8fdd77480d5327d73e9e90242", + "badge.size.standard.min": "8e3d70ec2d2f8550e3d5a2c8e356e1c038c1f2ff", + "badge.size.standard.max": "8d965fa8f86b65cc8a520022e3086c7552e05b45", + "badge.radius.badge": "042281b3fd62ead45e350e419c118ea99f1d16ea", + "badge.space.x.S": "c763e9bbcb3e7870a98acb898740bfb17f0a13fb", + "badge.space.x.M": "fa5c796dcba7fe25521398f4ec7239b7797f4159", + "badge.space.y.S": "fb1b5c2a1e237a284d8ca90d327ef345ab9854d4", + "badge.space.y.M": "2cddfb41a36ed866f1364799f1b6ea6416e807e4", + "badge.borderwidth.badge": "57799afadb737df720ebc873fe10f194254a8d4b", + "button.size.split": "a6fa6bccc775b666707c42e54301f7386c5e7c81", + "button.size.S": "376f27967d6659cffc7efa63715cc923214a8ec5", + "button.size.M": "7c3bdd4e536e6c1705cd824c4a32a90d841619b5", + "button.size.L": "7b1b9e2f2e2386ab069afaf86fa44de9e95f99a3", + "button.size.icon.M": "440ebdf983bfd9cf97471c0dfc45a15801538609", + "button.size.video.S": "da17d4255ccc4c1a290c45fdea28828d6ac7748f", + "button.size.video.M": "5f64da94c77e517d71c476e889f044584e3e6539", + "button.size.video.L": "9bc170e119e26918f16065685677bebb7bf8d657", + "button.space.none": "47782ce803e335647d0c0879e651830e83c2bada", + "button.space.bar.iconbutton.x.inner.M": "3a162b43c6fbed2b2101e9056aad8efb63a1a127", + "button.space.bar.iconbutton.x.inner.L": "d297d9d0580c106ee7f7ff9896a313871931c189", + "button.space.bar.iconbutton.x.outer.M": "a4518d47b09a75fbb9da3f3f3a8428b93495284a", + "button.space.bar.iconbutton.x.outer.L": "fc4ed5b9d7821cf15a72ff36ab350a6882a1bf12", + "button.space.FAB.child.x.M": "c1c4f0b45067cfe655531c70c4e9fd8158fd76a0", + "button.space.FAB.child.x.L": "c69dab68de9708add9dd7910ab1903928eb7d3b0", + "button.space.FAB.parent.x.M": "eaa172c41904bca4883e972caf68d9f3a9eff0f3", + "button.space.FAB.parent.xg.M": "eaebfd970ef95209888408eddcf8f269ed2b9f21", + "button.space.FAB.parent.y.M": "827599bbc7c44a673a6722ecd2cdff4c36260eea", + "button.space.layout.x.XS": "f401fa0af41c7d7caf12bc220f25b9812a91a030", + "button.space.layout.x.S": "3aefe2cd5aef81e2e26914ce8543081e04c51571", + "button.space.layout.x.M": "6d3230ca1c6bdfc71d39572f02cbf1912065c436", + "button.space.layout.x.L": "d2045174b3b6490937e36ac9927f104ff6bf68fa", + "button.space.layout.y.XS": "151ae59c9532fd7243c325b0b1e845b3ccdb953a", + "button.space.layout.y.S": "f92de0f043fb6ac4e5207586e15c4f5f723c14a9", + "button.space.layout.y.M": "3c24b189b35b556e834998bb3be1cb591f24a19b", + "button.space.layout.y.L": "90c6efe4ef5b42f19e14669f6ad014a09382470a", + "button.space.layout.xg.S": "f3977436e389c06d9ed54e9c28190b40e948c87e", + "button.space.layout.xg.M": "023db60f9af8a47df3fd447993426296825bdeaf", + "button.space.layout.xg.L": "bd6fa7fd98289d10c0c432c1e772463f184b54ec", + "button.space.layout.yg.S": "425ef10052560f0fa0429989953f4f7b764be0dd", + "button.space.layout.yg.M": "2d4e296af875ae9c487894ba753eb45d8d38ef7a", + "button.space.layout.yg.L": "f48c1905d5bfa67bf29d1849ddd8bf576607265b", + "button.space.primary.x.S": "2f95244cacdd39ed1a4708d4d7be41331c84ce90", + "button.space.primary.x.M": "ffece589187c548749e04f810594e187e3cb3e0a", + "button.space.primary.x.L": "941aee2d15bfd49cf5d067bd84d4965d1d627d27", + "button.space.primary.xg.S": "e0641d2fc0db750fce69ca77ecc84b3a3e2dedf8", + "button.space.primary.xg.M": "dbe379620d53de9b2e2f853a8b8d5e9b2e9dc901", + "button.space.primary.xg.L": "e02252971250b58c737dea81e23ad633fef8b15e", + "button.space.primary.y.S": "bd9560f9aa52d6c08de96fd3d0c5d8adb516395f", + "button.space.primary.y.M": "432280aaf7f16677426a2c2fff32bb453f38dfba", + "button.space.primary.y.L": "a0dda66b24d8a4d0709e20695c719d949018dfad", + "button.space.primary.icononly.x.S": "986ec2fcf82e2be81aef790caa0f171a12cc3bc2", + "button.space.primary.icononly.x.M": "e1077454fc003d134e559b8bf9a40f3adbf3b724", + "button.space.primary.icononly.x.L": "479b3cf789dd4a5aa9562d46c13ea47651c55352", + "button.space.secondary.x.S": "725160a5dbb41c111fe8461bb136680c32c0e90d", + "button.space.secondary.x.M": "5457899fe69c38c51d2efdf7a5af24a466dd8330", + "button.space.secondary.x.L": "265e2c84e720c37ccd5249a1e3c8bfb7e7ad1f54", + "button.space.secondary.xg.S": "2c24cc5b5eb3d101edc0d3d0f33da083e103abd8", + "button.space.secondary.xg.M": "73768a636c48e2f8b607390d2002e57448174ddc", + "button.space.secondary.xg.L": "1d474229e4e0a0e4a145b9f77462bd09b2d8b8ad", + "button.space.secondary.y.S": "223aa16348bc026ae0ac523d075b6a0f76305ca0", + "button.space.secondary.y.M": "d3282cc104082a1c89f4be8bfc54c0753ec5917c", + "button.space.secondary.y.L": "d3ae5fd316ed6d1f3d2c533bb327644af281ba51", + "button.space.secondary.icononly.x.S": "fcc51a5f1b67183bc7c9dccb497e7676cdcf76e0", + "button.space.secondary.icononly.x.M": "1c7ed5b517f16af62997d5df6aa5a0a2a3d2f40c", + "button.space.secondary.icononly.x.L": "0e2a6d40d7081ffbc12185c6568cf241de930cf1", + "button.space.subtle.x.S": "a0e2b5d28e194016b251c46e41084a5c783bb30e", + "button.space.subtle.x.M": "348a1773b8fc46197a30f4f3971528815d886170", + "button.space.subtle.x.L": "fc19c19790f10e9afa61ed1015efab450cc9310e", + "button.space.subtle.xg.S": "6823ca5b63c0cf6855a02b5f39388e688ef29079", + "button.space.subtle.xg.M": "c08b7b07c6b0ecea0f27a8fe5b5dcf1ff633b12c", + "button.space.subtle.xg.L": "5cd492904ee1f1a9a60959266b871a53fc565a61", + "button.space.subtle.y.S": "5a47de873c9cfcccdf99231c8b3a4de4aeddcece", + "button.space.subtle.y.M": "2089ee02b166b231a7c445e2c65da1e607ce36eb", + "button.space.subtle.y.L": "77b528df5059f29f06e19ad88afadb7a836bd042", + "button.space.tertiary.xg.S": "eeadffd3f2df9fe2be969041c3ddac49aced088a", + "button.space.tertiary.xg.M": "affba16f11e0c696819219aa32406580f04eabe1", + "button.space.tertiary.xg.L": "6965a5a93c84811204a91698b1b3e76a4ee46a51", + "button.space.tertiary.y.S": "37a42b6aaa3f46575dc0ba7ffab483c7212afbd4", + "button.space.tertiary.y.M": "e9cd76cfe572b97c967bc8f4aaf6357a8a79dfc7", + "button.space.tertiary.y.L": "ed5ae27ad698b45e1794004604b8299e85df7a96", + "button.space.toggle.button.x.M": "54f56ab25b7809db7d68873c01036a28ddabd925", + "button.space.toggle.button.x.L": "51a53c6c1cef0f35bbe06d5ae68a18df0c086d25", + "button.space.toggle.button.xg.M": "d082030b4a12a6c0a78d9caa0f0735cfb22786bd", + "button.space.toggle.button.xg.L": "b7554fa5ecf630c25359279f3e439e818ce80db4", + "button.space.toggle.button.y.M": "ece364062f42297ccf58152cc30f69a917b4a6fb", + "button.space.toggle.button.y.L": "bf08626110c187fa054c2cccb9409f8c2f5c71eb", + "button.space.toggle.container.x.M": "08bded32dea110523288ac576d3226298aca1780", + "button.space.toggle.container.x.L": "8b9dd58db99b355eefab4ff1cf78661e94241780", + "button.space.toggle.container.xg.M": "a1aa12239d6b70930ebeb03075942b7c78e3ead2", + "button.space.toggle.container.xg.L": "b4e82977dcc340c1bf6d3b4ce6604e4408008de9", + "button.space.toggle.container.y.M": "5d5f52880f2d123635c4e8992216b7e0ccc11d9e", + "button.space.toggle.container.y.L": "dc575dda72165a59c7c2152af821b1fd42070afc", + "button.space.video.x.S": "182b84c35e1f5bf05a77a97ae53bfaa73934fd07", + "button.space.video.x.M": "ab4e03c77b9bd2f56c31b646753fe85f5ab34350", + "button.space.video.x.L": "72f81aa0885b9a9850e2f069fb0f3dccee5e7b4b", + "button.color.none": "1343f8c4a6c1161424037a25e2e9d8e1ef61a9ad", + "button.color.ai.border-disabled": "c3727b67dd26b21d5a61a7f9c02ade19b3593f44", + "button.color.ai.label-active": "f6a962f5cc70d8e5a06b713848405abdcf9ed90e", + "button.color.ai.label-disabled": "f524fad75a65ac9175dea4ab3106b60ec03a7956", + "button.color.ai.label-enabled": "2ea18c0f07bad38760896d7170912f08f1cec322", + "button.color.ai.label-hover": "afc889b0c09b7f67f15674c68d6da23222fdbf35", + "button.color.destructive.primary.bg-disabled": "2e3e671c7f560ea11e8b16ea6ac83b0d111183d7", + "button.color.destructive.primary.bg-enabled": "7c32ad1bb367b5ffc0cf20b38570a73aa3d7c74b", + "button.color.destructive.primary.bg-hover": "9d9be0a13a971584f9343e9c8c05c2f21c86da70", + "button.color.destructive.primary.label-disabled": "5b83fd1a50a11ad2bd83962d0587659ee6cfe29c", + "button.color.destructive.primary.label-enabled": "9d53ebae4cae39c9cbe06f22f45d4afbf9de68eb", + "button.color.destructive.primary.label-hover": "58679abe68b52f09f2ef64968712cfd153995f8c", + "button.color.destructive.secondary.bg-hover": "1424f9b08e5926cd41d9b068a5bb62931c2f62e3", + "button.color.destructive.secondary.border-disabled": "94df9f985ad8ef519901eced75bcd1e970a83fad", + "button.color.destructive.secondary.border-enabled": "6fd585073fc7d6803eecf9907bd9061a1511882a", + "button.color.destructive.secondary.border-hover": "77ba31ea7574b234062b1e9f90bb2d7c8c2aa06f", + "button.color.destructive.secondary.label-disabled": "36cd91794ddfefc581f2a2fdbd27d59a912b5bee", + "button.color.destructive.secondary.label-enabled": "cd7e3fc76f55344516b871d27e8c4b59328e2f76", + "button.color.destructive.secondary.label-hover": "d098b09f798ef69d6749a41798b94a3079f283ae", + "button.color.typical.primary.bg-default": "aae39b0acbfbc6b205bea13d55b2f28fa78b8f23", + "button.color.typical.primary.bg-disabled": "fc7d3129bbbc5b244420d2ccde404c1e742ca144", + "button.color.typical.primary.label-active": "1e64b6da8861e4c59d04152a2f8777e277c4c0fe", + "button.color.typical.primary.label-disabled": "73814145185d2401ea3ae1f21721e0d21ac31649", + "button.color.typical.primary.label-enabled": "4cfb7445909549846f53977ba6e8f41d3bc6822e", + "button.color.typical.primary.label-hover": "0b4a82d3df53b362f6d5ea67af2aa355b50ec60c", + "button.color.typical.secondary.border-disabled": "01c350072575aa62a9295cbcfacdf465c01e6350", + "button.color.typical.secondary.label-disabled": "27c86ca327c3e6f4557dfb4ef0349a303d6cfa67", + "button.color.typical.subtle.label-disabled": "abf3e02aaab0fdee015db2435d7354caa55f0c34", + "button.color.typical.tertiary.bg-activeDisabled": "087fd421d6d09939aa8fb5121793a9b365a6248d", + "button.color.typical.tertiary.border-disabled": "130f4b8a0bb497d9086be10fff1a0f9c526130cf", + "button.color.typical.tertiary.label-active-copy": "33271ba1542cb0732ccac61203aa422df518bd8e", + "button.color.typical.tertiary.label-disabled": "55ac76cec8eb098dddc9c9c3738904d382c15dfa", + "button.color.typical.toggle.bg-activeDisabled": "04c4b9951628c3c4f7dc001b4cee82aabdd1c3b0", + "button.color.typical.toggle.label-activeDisabled": "04cad986dc6312e442d5bcbc854e1ba65609d8de", + "button.color.typical.toggle.label-disabled": "5c43829b0932c5e5af69a4430c0e9b1f561981ff", + "button.color.video.bg-blur": "5ca05788abdf06ed7e45adcfbadfcc2632382fa1", + "button.color.video.secondary.bg-hover": "b945538aa07596cbe037db6178a97af29066ac4f", + "button.color.video.secondary.border-enabled": "73aec28491cde9caefdc9109fbce49718951064f", + "button.color.video.secondary.border-hover": "91186232df4315b8142e0baf5859a93dea82d59e", + "button.color.video.secondary.label-enabled": "a345c8a809e497242dd8bab9ebdd4852254d246d", + "button.color.video.secondary.label-hover": "c49d9402a37b60510c340322c2072f3a2cadd6af", + "button.radius.none": "071afd09c52a1f7ea603c57ac8522635d7a3dde3", + "button.radius.S": "92af17292bcc0216e4566e354845633f74fcbf8e", + "button.radius.M": "904734c167590ad07a8fdfafb316df7b5ab3581a", + "button.radius.L": "3eb602a4cea6e9ca290e30158fa6504f2f6c7497", + "button.radius.chip": "7f8929bf1ab8df4555c1e2633cf6cff6b4f907a5", + "button.radius.FAB": "880461cef6d498c277c8d412bce74474bffd730b", + "button.radius.primary.S": "b3aae451125c794ecdd67e52da40d8d4d6112444", + "button.radius.primary.M": "8cf4ec9c22aae700ed48357a52deda4666cbe1e5", + "button.radius.primary.L": "32c95a1aa7d1d621f68dfd210ca214441e364610", + "button.radius.secondary.S": "1b088f1f1952d742dbcfd725b649b676a1c378b2", + "button.radius.secondary.M": "84a91c3101afcf357076be2871e956fd7feecccb", + "button.radius.secondary.L": "e0909c6832d8a1102b603569e78df1b1ebfe6495", + "button.radius.subtle.S": "b71f6eeabff5fbab72f69ebf3c29eeca0b55403a", + "button.radius.subtle.M": "3cb6ca7b2b2ff6cbfdff84dba8ef564f8c91adaa", + "button.radius.subtle.L": "7f49d16180a2abff05a3bbe92f079a8af2ba705b", + "button.borderwidth.none": "82a63463ed9f6fe332156aa11eb5ac9f98ed4965", + "button.borderwidth.chip": "94fd1b7fbda35bfa2b8197ce722c51859acad510", + "button.borderwidth.secondary": "b823c5e884cafbacbd75d60389fcd90041b01d9d", + "button.borderwidth.primary": "f68201875534451b1533e62b468376e01c9a13a4", + "button.borderwidth.togglecontainer": "cde8eee001f0916638716f591f920839de8ee1a3", + "button.dimension.video": "98242a320ed257b9025ed412ef4ce48475eadef8", + "container.color.standard.bg-alt": "0a163a71efd022b8f21f9a773b8975958546930d", + "container.color.standard.bg-default": "f5887df9e88801494c6539d448a69b495742e64a", + "container.color.standard.bgFooter-default": "ddd4d588d42c8d7b3527ea56c11662e5609bc358", + "container.color.standard.border-active": "334a84f7c4320c2694a050574e8b09d64476334f", + "container.color.standard.border-alt": "869e9dd30c2c63dacd7953fb560aa8a5f3760cb2", + "container.color.standard.border-default": "0c3e38f22885b4d1257a564e9419fb1c8cadbdf0", + "container.color.standard.dimmer": "4625c31b12d23c19742ebd1bf73493fe2a96090b", + "container.color.standard.icon": "1b4f40b119dc87ba170dd49da865f5bcbe04fe8f", + "container.color.standard.text-alt": "5ddf5dc6cf795c35ee85c83563dcb443766761cc", + "container.color.standard.text-default": "0688de7bc87943a33f29362987e04edd67f5b4a5", + "container.color.scrollbar.bg-default": "d2b90819bd31fa592079d5bc6fe52f4b5276c351", + "container.color.scrollbar.fg-default": "520b815222da25aa6b15e4f47933a8a7580b0b17", + "container.color.interactive.bgFooter-activated": "a7c8042badfadbfa5f9494267fcaf815863767aa", + "container.color.interactive.bgFooter-active": "4a989f9ae40ca51aa8b569413fc37c8e063b8302", + "container.color.interactive.border-activated": "f0db1dfc677cf097b555fec2de0f27e3b2c4894f", + "container.color.interactive.bgFooter-default": "b2088ab5fd723ecdd7372e0eb93ab1005e85c6c3", + "container.color.interactive.bg-enabled": "dbc42929e91e9f2bef8ee063ddebc6ed48ed2cfe", + "container.color.interactive.bg-disabled": "2ada241c5c6e4661de41ba725beddea5545202e8", + "container.color.interactive.bg-hover": "e6c4aab4bee58a628dc5f54a097cf79c584d049e", + "container.color.interactive.border-active": "7782b289774c6fbf975899eeae90be80282295be", + "container.color.interactive.border-alt": "77fcd09826f5c267bb3a86b2234f482198bb0ea2", + "container.color.interactive.borderalt-hover": "ad0eaec72bc05988dc4841925c21e6d0d8dab291", + "container.color.interactive.border-inactive": "5e374caa9e35ec0c36978d19b32b248ccbddb3d1", + "container.color.interactive.border-enabled": "1c23da485570906f3e9a3d4d88c6e56ec41be60a", + "container.color.interactive.icon-active": "87191fa386378f8f5eff497eacfc8b0066cf48be", + "container.color.interactive.icon-enabled": "fb91abf053b3e0cd9e910b8148b6103e390df2cd", + "container.color.interactive.iconAlt-enabled": "7a7278a3900a1f11a78aee66d5a0ada4551b4cd3", + "container.color.interactive.icon-hover": "03d893767bad772c8ca79ea60637b342a7ae6b4f", + "container.color.interactive.labelFooter-active": "58a9d563c623f87be31af8f81a3420ab82e1289d", + "container.color.interactive.labelFooter-activated": "213680506c9d8e5c8557d3fef1e5a5ba08354dc6", + "container.color.interactive.text-active": "5d8153fe07c54fe7422c089014933b0f479bc42d", + "container.color.interactive.text-disabled": "9eb7b5495a81ed583ab62a5c864524101109546f", + "container.color.interactive.text-enabled": "c164b95acb32dfcc5210bb5894504e11d5625509", + "container.color.interactive.textAlt-enabled": "aea2de8ee64006b9c5b11b8e0b596c85e354b3c4", + "container.color.interactive.text-hover": "758d3f77cc300bdf257f7bf836bd1dfdbffa30b3", + "container.size.none": "e0b0d89c5589466c31c9a4d8a6a1fa76ec276349", + "container.size.accordionstandard.chevron": "2e8208e7c57c23de8c158b86741968eda8955caa", + "container.size.quotebar.width": "e7cc52194ab4bb8401546c0644beb657ba2a530b", + "container.size.chatbubble.maxwidth": "98c7ff9abff97a012b85941133c72b62ff6d276e", + "container.size.carousel.mediaslide.minheight": "9fa279a3cfc6a2db48ed68f7093768ac6b3bddd5", + "container.size.copilot.emptystate.illustration": "5237382ad9a96dd0e2896827577242e274d66ce4", + "container.size.copilot.emptystate.content.maxwidth": "fbe31fc866e725b02c8975089eb373a516ceeca7", + "container.size.copilot.overlay.maxheight": "87891090ec333e820bb66269f4ebfd2e4cf67272", + "container.size.generic.emptystate.illustration.primary.S": "19cc264f16dae9acc27ffcfea23977d97b4b558a", + "container.size.generic.emptystate.illustration.primary.M": "d533b3c795c62ebb2eaf5f98f3bc494a31486fe9", + "container.size.generic.emptystate.illustration.primary.L": "c3084c6d5076c3e7d7b3604fbd080a8c41bc7d15", + "container.size.generic.emptystate.illustration.secondary": "0ebfbb98b525685fdbf570fa01507f06c6f78731", + "container.size.drawer.closed.M": "3648d151f5c6fae775acf90bfc4303546e9b6a97", + "container.size.footer.M": "807f7546731e52a81a0562de59f28e77d1ab959e", + "container.size.footer.L": "6d9a65595a1f09ae454d47c63c93401e450edc21", + "container.size.icon.S": "6949e299effb69aeacfedc1ec263aebf35c5412f", + "container.size.icon.M": "8cde7d61ed66bbbc427f545c6f128453d4649bf7", + "container.size.icon.L": "6455bf88d0f62405df82472524b8b6977c46d551", + "container.size.linkpreview.thumbnail.S": "28b77cdb90cea1f0f0da312a046a7e74353cff9d", + "container.size.linkpreview.thumbnail.M": "26042158f864e97890bd845c85313951bd995d16", + "container.size.linkpreview.thumbnail.L": "442af4f574cb2b79462a6e66d683ee37f64d94a6", + "container.size.linkpreview.headertext.S": "52568ef20de2caafedb8306caac6ea33360cdcc8", + "container.size.linkpreview.headertext.M": "31bfa35919f34e0e1b62838d43b9dbaefbd2f8e4", + "container.size.linkpreview.headertext.L": "21fbc45227d26baebe061b019311c4cd37f52fe0", + "container.size.linkpreview.descriptiontext.S": "57513ad1ec8efa434a490b28889e6bbe01aee699", + "container.size.linkpreview.descriptiontext.M": "91714ea689158ad95ece8ed2d3191ee239684a5c", + "container.size.linkpreview.descriptiontext.L": "0ca86f469b6694279b8f17edbf0bb8d67145bc2a", + "container.size.responsive.XXS": "99fd8bece9962097378214b53b22b741bacd64bb", + "container.size.responsive.XS": "3fe4977ce8b52e9a886a39ce49354693940a66d8", + "container.size.responsive.S": "fc5ed3406bfd1a5da5a3b1502b0d9fb6411eac08", + "container.size.responsive.M": "46ab0936266a94bdbb1057836314706034048ffa", + "container.size.responsive.L": "9410d597e2769cf5bef1e3758ea26ede9fb53f82", + "container.size.responsive.XL": "e26f6abf64cec9a1d5a11af311a7baee9e9f1c7e", + "container.size.responsive.XXL": "c997b08d022008974721c9ea22d6c1497263c911", + "container.size.responsive.XXXL": "7dde5913c205f48ef3e5b8c7a078d728b415baca", + "container.size.responsive.XXXXL": "3527462bb119bd3258dd1b5da368cf3c2504f0eb", + "container.size.scrollbar.container": "137cb558ccc9872f4ec06e7cb02f9d36a22a7934", + "container.size.sidebar.responsive.min": "8c9f41d13316a008fcc9b5be717a1d97a23183a9", + "container.size.sidebar.responsive.max": "b38354b7320bd8a4cf566ae66465778c8e707ad2", + "container.size.tileselect.footer": "cb4a909e7d9e9aad5b157dbfc7d57f0a229f9054", + "container.size.tileselect.productidentifier.M": "29f30666a4e90dfdc727aecd389db6b06cce0ca5", + "container.size.tileselect.productidentifier.L": "8143520e779fd32f8d12cc687525a75ca0211c2f", + "container.size.tooltipArrow.width": "223a1d580ff1d415725ef2010562e37744180a40", + "container.size.tooltipArrow.height": "4a4285c8c3a395ce01782c47920d4a32d962bdcd", + "container.size.uploadpreview.M": "1b26af045dea6a575c3a7a52d231b179e5586015", + "container.radius.none": "95fc25dfe43fbc9800a24c7d6d4798e60a3de5d1", + "container.radius.carouselslide": "44d695afff47d893d6c16f7bb5e7fb4e3f2d632c", + "container.radius.chatbubble": "23a94e78261019f464c3463fca25a068d3b8bed4", + "container.radius.colorpicker": "7fc2ec3c5e1b284f5087dbb241643e2a6050157a", + "container.radius.blockquote.bar": "20f004b5b872e4f34c372644f49fea202a5f74d8", + "container.radius.contacttile": "c75d2dfce498214c9ccc8d461cb8237dde77d9b1", + "container.radius.dialog": "e3cb52a832e46d849412f2d0c763caa36b34f2c8", + "container.radius.filepreview": "013ca1b598e465f94dbef8083c66d3f72ee07a00", + "container.radius.linkpreview": "206eb7b765404469201bdbec026ad8dcc2963087", + "container.radius.heroimage": "62806bef8f02a0d14b097c48ae56971226e20879", + "container.radius.note": "9ce0e1a85e1157285c62f3b68d37f69a169e5550", + "container.radius.scrollbar": "7b47488cb759ebea0876bf8c2aaf96acf0ffaff3", + "container.radius.texteditor": "acf98b5c424d55ff4e9b569523f064025800fb6c", + "container.radius.nudge": "b0ae7105e74105579874ac62b2ccadeb5ded890b", + "container.space.none": "be329bb1c26e528efba89ebe040b6909323b2e46", + "container.space.accordionsubtle.yg.M": "1c5e4b281710c03ea419179087e71312c9f6fd69", + "container.space.chatbubble.outer.x.M": "c498cdf72b5e769c313727706b5a547bd02fda8f", + "container.space.chatbubble.outer.x.L": "556dbe7affd752df38dae151fd1a142f6a862312", + "container.space.chatbubble.outer.y.M": "dea74b5832eb23a91aa76bd457b58f96eabd07b7", + "container.space.chatbubble.outer.yg.M": "719aae7fd65a49bbb6f2f227b21d2ad3920d30cf", + "container.space.chatbubble.inner.x.M": "3efd3e644d66464519cea65cc88bdc8ee5023e58", + "container.space.chatbubble.inner.xg.S": "93658a0bc5020f872d5f366ce0f87f19b9f750c1", + "container.space.chatbubble.inner.xg.M": "f52a5f33eb6808d2872886cf97169c3610bb8884", + "container.space.chatbubble.inner.Y.M": "51335312d83b3e0fa677ae214b9991ec534159cf", + "container.space.chatbubble.inner.yg.XS": "83c69d7a7a0338153b2d577c3daeeb09721dd360", + "container.space.chatbubble.inner.yg.S": "81d91769f5cdc1ae0743b3c2204f400958e1e557", + "container.space.chatbubble.inner.yg.M": "50aeaf536409783e753d02b437376f2854146110", + "container.space.chatbubble.inner.yg.L": "b39b5ce0f0c7dd844bda779bef2d46a6b889abcb", + "container.space.filepreview.preview.x.M": "40fa528868de55291f05f4b9cca7edaeb5c4054b", + "container.space.filepreview.preview.y.M": "f838756d3bd82ba0292ad6514ba24cc5ffc413cd", + "container.space.flex.xg.S": "fe7167aa4e8cc7ea91a5edf19461494df1483664", + "container.space.flex.xg.M": "3392bb387117be43cd2943508dbfe71b6039346b", + "container.space.flex.xg.L": "f59c4ac489d1ca8ce8a0a80839224f78b725092d", + "container.space.flex.yg.S": "dc8d4b4fac4229769a8c1c7e52412a1124e6d6bb", + "container.space.flex.yg.M": "3c1edbcedefa4aaa6e46cef9d2c98d0b0ab34634", + "container.space.flex.yg.L": "6e9ad98ef037aadf206c2b395bedd5a132cab28a", + "container.space.flex.item.x.S": "671ec9ecfff0de165f47d1a1a05a1bf01ddbabb6", + "container.space.flex.item.x.M": "de127456ff4c1fd921f2f31a92a8d39d763cebeb", + "container.space.flex.item.x.L": "784286548c73f6f8dbce0880d662e84fd9d7904c", + "container.space.flex.item.y.S": "d0c2cccf8600455e7c34e4619027b04f92f8cd03", + "container.space.flex.item.y.M": "8d72fa96128bc66caf4f789ed7ca46d7192a4175", + "container.space.flex.item.y.L": "b4ec6924da0a333af501d8b8ed6fc4a0da8bb026", + "container.space.generic.content.x.XS": "26d074ab6878ce00982e653c23b316c973489403", + "container.space.generic.content.x.S": "2d5a733bf00d40d675ad730d117534ca5bfe40cb", + "container.space.generic.content.x.M": "4c8ee695f6ed3154997d1ff524cb72f606702483", + "container.space.generic.content.x.L": "9bb4ef9174097b186da0df490f583aea6b1ec7e3", + "container.space.generic.content.y.XS": "68034cad7c691bffc9d904e5595eb9d7de355854", + "container.space.generic.content.y.S": "7836e0cf124723b7c15f5689dac82ca979cd15dc", + "container.space.generic.content.y.M": "3bac5366cf71cac12cba33f2e40d8aff12336727", + "container.space.generic.content.y.L": "64139f658dc4a8a7af507be9f9ef84e760a73e8d", + "container.space.generic.content.xg.XS": "ba8cc9b2cb3850dc6f45e58c1eaa1b6d6e05fbb5", + "container.space.generic.content.xg.S": "a18fd706b93271a16766fc5f94f468ac076f8f9a", + "container.space.generic.content.xg.M": "b6a6bd9c02ffbae62efa07d4aa00a610b808eb8d", + "container.space.generic.content.yg.S": "5ea000dff557e896fcc9604d9d1ffd70bf9ec382", + "container.space.generic.content.yg.M": "6da2c3be21bc6f50cb7af0328aeeba9b6bb7be67", + "container.space.generic.content.yg.L": "0bca2c6f9cdae911e46a6694efb5c078e5b3fb9a", + "container.space.generic.outer.x.M": "a99b56c21a708aa92bfd5560a3374ea65f7c5f4a", + "container.space.generic.outer.y.M": "034be3befe16c7e0b4f7023003e28d0111b837c1", + "container.space.generic.header.x.S": "d388aa381342ba3d093b4829c956a4548909cd23", + "container.space.generic.header.x.M": "afa608eaceb2a9066def5baca73604defb11478f", + "container.space.generic.header.y.XS": "2c69fd91632cfddf27ce721d4240f094de97c1eb", + "container.space.generic.header.y.S": "aabf6846d01605b0afe33a2fddb85dc762619f66", + "container.space.generic.header.y.M": "e35de349a6574d70e62502aee4690fa1c6bfcbd6", + "container.space.generic.header.xg.M": "6b14b3c1d8107741b6f8e2e1cf63f8c5685dde48", + "container.space.generic.header.yg.M": "fe82a92c9ae882b5c5b72ae03258d80d2e11ce7a", + "container.space.generic.header.yg.L": "689776820f58dc1ff39aaa7ba8227a29c9934ef1", + "container.space.generic.emptystate.y.M": "5af748ec9978cee414a78fa17717ad4334263847", + "container.space.generic.emptystate.y.L": "85ebc57d97c2605d97c6f6a9675401a9f5b9b356", + "container.space.generic.footer.x.M": "2676df780a07c145147a3d5466155b976b972e98", + "container.space.generic.footer.y.M": "cb1b917fc78b1a5d190f73475531c3fd83a82353", + "container.space.note.x.M": "04e23a100d70ed7f23c1ee40536ac513899d728a", + "container.space.note.xg.M": "00476db3889a49f03b2cdf7974cd5bf4a85468ce", + "container.space.note.timestamp.xg.M": "07f788430a2552b03bd496308c28b3fe129de350", + "container.space.note.timestamp.yg.M": "cb3cbd9eb2b803aa728964edf1c3e3a39fa0f419", + "container.space.note.y.M": "329df3d74fcdf14ff3e0efa814ae3ae4cd179d2a", + "container.space.note.yg.M": "f18b6fe652c0171bf550e504ee8f36ba747f8469", + "container.space.linkpreview.x.S": "e8c0c1f482ceb797b189f46b31cb3b80dd2a231a", + "container.space.linkpreview.x.M": "bf21d375aee7e1f2d5c6ae477afccb919f452206", + "container.space.linkpreview.x.L": "eedab203a11aaf82e4b1a5fec9d4a8591e974269", + "container.space.linkpreview.xg.S": "7b49beb8feb3f52f6b2a3b67a4936146e2599b1e", + "container.space.linkpreview.xg.M": "6edf4132c3f40c2a764ab0d3351204c8da454da7", + "container.space.linkpreview.xg.L": "5261c9392c8bcdb42d0789db9c9a5129794b59e4", + "container.space.linkpreview.y.S": "30b24ee2d293925b8ef02204697cdbb5b89bfb11", + "container.space.linkpreview.y.M": "337c48d2af760e44c0320566211ff3320b3c0e69", + "container.space.linkpreview.y.L": "aca7b62c21a87bd3b1ad7da4d6ff4d8f113fde9f", + "container.space.linkpreview.yg.S": "8db204ccbd94171fd105236f9cd97da2fd16febe", + "container.space.linkpreview.yg.M": "1960209614df9ea038391542a71575bdddcae9df", + "container.space.linkpreview.yg.L": "99dbe7ef6a4f3ff54cac046e912459a0af488781", + "container.space.pagination.xg.M": "f7401e4bae00d1e0572f2cbbca0485106d047ea6", + "container.space.pagination.xg.L": "87f9b72e4a0c13df3fb3f44dcfe7ec83a3b9e893", + "container.space.pagination.y.M": "c18ee7c1705ce8c11b15644ff384393c21247bff", + "container.space.pagination.x.M": "684845bb947245297cf3ee68bda17e74d8bb5207", + "container.space.scrollbar.y.inner": "17ab35fb62c19722dbbfc425c4a6b4b63ba15db4", + "container.space.scrollbar.y.outer": "128aa7fa02ef9944dc43e5c19645687484e1f4ca", + "container.space.summarylist.item.xg.M": "a976858bd40f2d45a330896799f58c7281334798", + "container.space.summarylist.item.y.M": "aefd65b9717ec54769d22b15abe54062dbda20e6", + "container.space.summarylist.title.xg.M": "03ac07fffe69ff40683b347adbcce0320c5e13b9", + "container.space.summarylist.title.y.M": "035cbf395ac2d466bb999432fe72824411c2295f", + "container.space.summarylist.title.y.L": "f2c39b9aebe757dfd547b2c4a1af0aa23611706c", + "container.space.tilecard.x.XS": "3283f6ae4c998faf6c1e9b26b01aa6cd97fb0ffd", + "container.space.tilecard.x.S": "4edf567e2114fc6f51f6e19fc11ce939ed97716c", + "container.space.tilecard.x.M": "09f40684de4660b882500d290d1e95b41fe44764", + "container.space.tilecard.x.L": "decc3db5689c857e10604432d77384aa6d9d4a36", + "container.space.tilecard.xg.M": "c3b33501f24129d53c82fc4e149639792848601e", + "container.space.tilecard.y.XS": "d7775f38dd579a5aeb25eb0cc277ba25addb61e7", + "container.space.tilecard.y.S": "70c991d9c7c6fcf19201fbd498b3d03f8e2159fe", + "container.space.tilecard.y.M": "fa719f2b6d1c4c526e0d39bcd999059fe895aef2", + "container.space.tilecard.y.L": "291614d909c72e6d0d8fbf1f8d8db119195e4948", + "container.space.tilecard.yg.S": "80765e14d12e1fbcecdfab6d7827a5d4677378fa", + "container.space.tileselect.x.S": "9ac954108d048ba106352901a717aa1fd210ef8a", + "container.space.tileselect.x.M": "13129788f18383f53315ae9ffddaede4c00973bf", + "container.space.tileselect.x.L": "2f145470dcc4437e73cd70b8acec3a92fcf82f24", + "container.space.tileselect.y.S": "e4752a3dd3580d871d188f2ded5b10df8e8f61f3", + "container.space.tileselect.y.M": "344bdf12b2b5aa1301956aef3da25ec4ae0a1943", + "container.space.tileselect.y.L": "8b3f2caddd7f853aa4e7dc6fc169a44b5abd641d", + "container.space.tileselect.yg.S": "465b502e05a7aa136aa6b09a71f6704cc579423e", + "container.space.tileselect.yg.M": "b4387c8bd5732a652773e291d5a47ef435785475", + "container.space.tileselect.yg.L": "23cfcfdbe1a90340ee5d9e316b98a979e394844c", + "container.space.tileselect.content.yg.M": "74af4102e4dd89f96c0645ebc671bb94f2e295f5", + "container.space.tileselect.header.xg.M": "23e89f079c7b9735035885a5ccabca0ae8d9aa57", + "container.space.tileselect.header.yg.S": "26a248b08c89a33bf44b084443a1bb0b630f6f12", + "container.space.tileselect.footer.y.M": "2acdcc0c65882173561d74bdc8b1dc8833c0db00", + "container.space.tileselect.footer.y.L": "c4121bf5e5d46fa3e4286649266fd1a300ed09e9", + "container.space.tileselect.footer.xg.S": "7058fb1a1771786c12438786a072506ccbc25a22", + "container.space.nudge.x.M": "881ba380d2e9b58526f0693ab27c3e6b087cd2f5", + "container.space.nudge.x.L": "09231020b5939a16e4472be96824013f057026a0", + "container.space.nudge.y.M": "96fa69d58526a7ecf613578d23289161be69acb0", + "container.space.nudge.y.L": "e02df078cad971764f28fbdec569ede9c45458f9", + "container.space.nudge.yg.M": "17aa929f49c123f4576cec00fa5438f3316b91b1", + "container.space.nudge.yg.L": "61d4764ee7909353cb094ba00fff88f4226c07c3", + "container.space.nudge.header.xg.M": "72eab2b86cf55ac666fb199a128cd66f96d2f56d", + "container.space.nudge.header.xg.L": "148a9633f182c58611e7f659071c1436bdc0ce4d", + "container.borderwidth.AIgradient": "8721dccf0158d40460a7f6e9b5d3f1ff2c7c364e", + "container.borderwidth.dialog": "ddb1fae4551b767b3eed1c08af9bd8d0eac20375", + "container.borderwidth.divider": "28637cb07641692ee469d8e8de36e2e0ceb09917", + "container.borderwidth.drawer": "9222d7f55f1eca4405b6a785b12c0c3fd13c9006", + "container.borderwidth.footer": "5e473037cc97313427e16741da2533a76eb1fc23", + "container.borderwidth.header": "b549bd1883474abaab1be28be7af4347be438fb4", + "container.borderwidth.linkpreview": "2d4207543a4ccebbe7348e69257d4542c7eca1f1", + "container.borderwidth.note": "e5c09cd6f6576d1dd5c00446eac331265f18544f", + "container.borderwidth.sidebar": "f8d884f90b73fdb524bbeca9c866e9e979e8ba56", + "container.borderwidth.summarylist": "620956eddce0cf6874f8eae0081b3afe405891a7", + "container.borderwidth.tile": "80bbcd315b7bca286f1998e9d7010e642a17aaee", + "container.borderwidth.accordion.standard": "fdb1ddef97f1c952cf28e11d8fb987180fd05904", + "container.borderwidth.accordion.subtle": "9611aeee0f5be73900f6b84d3e8e9e20711cd129", + "container.borderwidth.chatbubble.default": "a4666cca69d91fbc8d6f8700adc5d6cef40c6750", + "container.borderwidth.chatbubble.error": "b466eff09ad36fd05df6240a071bd1f9d06c55eb", + "container.borderwidth.chatbubble.success": "85b04e5492ec463bdac7ab9ab8fbd33753e3459e", + "container.borderwidth.filepreview.container": "420d1c6f8ad2e2e5137c4d220d102b10c226eb22", + "container.borderwidth.filepreview.enabled": "eba01ef609d4fc824b623b7dae0a6e433730408f", + "container.borderwidth.filepreview.active": "c247a326f96889ed037b21e3db070710bfdd7734", + "container.borderwidth.tileselect.active": "2109a8890a5390d87a7019031d749c52920bd4e8", + "container.borderwidth.tileselect.inactive": "b242a9ec9e1f6c5fc636d5be39f0e09120b34db0", + "container.borderwidth.tileselect.selected": "d2ffa34ec87980e4cd6540bdba81a2f07aeea12f", + "container.borderwidth.tileselect.unavailable": "0ac60b7893992b12d6208780ae2062e7eb7cd7b3", + "container.borderwidth.tileselect.enabled": "9198d05a4a2c6991c910b5253c69c9f72a35f878", + "container.borderwidth.nudge": "8305a4d3214762549af0b4c300df8dc22e85ba25", + "container.opacity.carousel.hidden": "5dd79d4b0a60f10c270a15455a4eba9d3519662b", + "container.opacity.dialog.dimmer": "a5698d9ca3db4c3e98d7233c18c0e2e05cfdbefe", + "focus.color.bg": "1a44c03b53d6bf59380e37568ffcfa5293e7efee", + "focus.color.borderalt": "4b1be039640d9fdbe9514997aede824c1ea88844", + "focus.color.border": "5436e4a8a8cf44ced6957d6882f29cfe9556860b", + "focus.color.label": "638ae4a548e6d3dca97aaf7000a1ad432068c3cd", + "focus.size.underline": "0e0191fc202e1e6d457d457ae8704ec4d55d02c0", + "focus.borderwidth.secondary": "116893f346a4701c4c2c60bcdf3884ca21f6933b", + "focus.borderwidth.inner": "338e68638f935322d838d9208cb90505ef0eb068", + "focus.borderwidth.outer": "671988bf2ba9e1f763ed7a961900ea72d8e4aad4", + "form.space.none": "b1fd57e584091c64906053f25aeaa2f9bf3c9231", + "form.space.calendar.x.M": "5fa820ebe0c359a7300148a782ed3482628d42d2", + "form.space.calendar.y.M": "dc6d7086ae18551f95a4a41bf5f487cec057ef2d", + "form.space.calendar.yg.M": "41a12cab386726cce4e12f35738d4f0322dc3608", + "form.space.chip.xg.M": "a1174533f772c367da95d9c8db3f4984af8cf592", + "form.space.chip.xg.L": "558b5ba94f068a3d01ed2a19b055c1f6e758908f", + "form.space.chip.yg.M": "69d8ab511d78cd96182a90e94262f5bfb1caf9a3", + "form.space.chip.yg.L": "63bae9330285befe052244134d5354eb94156098", + "form.space.checkradio.y.S": "4d563cd925e51fae1e85f5812a16d2a00e1d2e05", + "form.space.checkradio.y.L": "c628a9c1aecd2923eee80e553fc3ff8c686e51c9", + "form.space.colorpicker.x.M": "4827790370d3db68f2b98596251dea0666ef51ec", + "form.space.colorpicker.xg.M": "cda58aaadb49f08233da67ed822e26fffc335c13", + "form.space.colorpicker.y.M": "686b48a89257d43fbb7526005fd68189baeee57d", + "form.space.colorpicker.yg.M": "54b6ef6086a197246b4966df7c100b02361b6517", + "form.space.dropdown.button.x.S": "e1fe95750d24b1a11609e8a17920033236dffbae", + "form.space.dropdown.button.x.M": "85e59eab04a23e0a8258e46f7789ee15baadc44d", + "form.space.dropdown.button.x.L": "63554d10fdd63f35e396422328b7f060409e6887", + "form.space.dropdown.heading.pr.S": "8d03e7130ac12b749c3bca1eb569b6bd7ef8fbab", + "form.space.dropdown.heading.pr.M": "0286ce050a797c14ac1498770cac664157d6fd94", + "form.space.dropdown.heading.pr.L": "fb28f8f9608b07f460949438dd243312872702e8", + "form.space.dropdown.heading.pt.S": "6fd47ed0ec79144b5cfed63a7ef5c07b4a4bd76e", + "form.space.dropdown.heading.pt.M": "63761910ee65ab59654e57e8afd10d41a4437efd", + "form.space.dropdown.heading.pt.L": "18d6622fafdc1124c2df5157d04389d5c67f8edb", + "form.space.dropdown.heading.pl.S": "f1e8b01d95240bf6efb4a38a488c4ac025acdd75", + "form.space.dropdown.heading.pl.M": "8f3b7c864d838ba08a9284a447fe260d84115d6f", + "form.space.dropdown.heading.pl.L": "1d15ba5f2d2db5b809cc276e52e686940bcae4ec", + "form.space.dropdown.menu.y.S": "d63a93c8831b82d3a0bc9099643ddf150d9579ad", + "form.space.dropdown.menu.y.M": "e4b30936feb49bb962909fcb8342fbbfde58c804", + "form.space.dropdown.menu.y.L": "df75944353a6fd5f581f01ae7ff346a0b8e1365f", + "form.space.dropdown.menu.x.S": "b91ccac1e70f9231388ee3ba55566c938e52bc39", + "form.space.dropdown.menu.x.M": "969df9b6ae5a5f33ff876f91d1c37edf8994aa08", + "form.space.dropdown.menu.x.L": "4a0b9000b983e73dfc749c4e1b433c38e46988c1", + "form.space.dropdown.option.x.S": "0c328f54f85c018ec18a75fd6900fb35ae07ff8f", + "form.space.dropdown.option.x.M": "51b7bd2569868c122c5be1739f2b1066126ada7d", + "form.space.dropdown.option.x.L": "f9802cdd00bb3253272d5181c3cdf6ade6ae9ac9", + "form.space.dropdown.option.xg.S": "66782db52715d3db50d957c8af89eedb247e6161", + "form.space.dropdown.option.xg.M": "a65e3146fbd6a3b734df046cb722dac1272ef499", + "form.space.dropdown.option.xg.L": "25419ef1232a11de41152020ba3909a0e86164f1", + "form.space.dropdown.option.y.S": "9c8266887c2e85a14746effabbae1756aff6b55c", + "form.space.dropdown.option.y.M": "a6b9d5cef681ea85262b32d6e9badbc0e1f318b9", + "form.space.dropdown.option.y.L": "b53133482c01a9c35ae5f5de11aa96553ac416f9", + "form.space.dropdown.option.subtext.x.S": "1a80b5901ea8d520d7f22b40a6b99f7e1fa4d0dd", + "form.space.dropdown.option.subtext.x.M": "f18619a90021e05b674474603a850c41cc2a762d", + "form.space.dropdown.option.subtext.x.L": "011fdf02288d8cbc566ef976e1a43d276e895e10", + "form.space.dropdown.option.subtext.y.S": "b508fccd1cf1abdbf0999697bd4314a2a40268b9", + "form.space.dropdown.option.subtext.y.M": "8743acc41f04945708454253292cdcdc986deb4f", + "form.space.dropdown.option.subtext.y.L": "305ea318254cb45041c382848b39d970c18e279a", + "form.space.dropdown.pill.xg.S": "51de850412942cab19bfe4503ba0667ab0ed13c2", + "form.space.dropdown.pill.xg.M": "e038330094f7e2e8293306ed051d7350cfff96fd", + "form.space.dropdown.pill.xg.L": "4b51b181052763c62ba6cab2a1692e50ae7380c1", + "form.space.fileinput.status.xl.M": "ad90a20ae5bde6b7af9034c7558276f81c3d1690", + "form.space.fileinput.status.y.M": "19cf2a8934d72617c8f9d52e13392b46fc0bde32", + "form.space.fileinput.thumbnail.M": "94cc086c990e42ce1bb1989e035f6f9cc93a7c50", + "form.space.fileinput.preview.x.M": "6b2309e944cb982051b7a74db9dbeba414f8bee1", + "form.space.fileinput.preview.y.M": "da979e76bc95587a52dfdcfd4cf765e83e8ce77a", + "form.space.fileinput.dropzone.x.M": "e1cff262ba779224643ac5605e71071728417675", + "form.space.fileinput.dropzone.y.M": "62aca831ee3501ef16a5a43c88db124ef251febc", + "form.space.fileinput.dropzone.yg.M": "40da3fb809c57d45182a032a9987e81af1de4214", + "form.space.input.stack.S": "8f4b72a2e09cae700e6dff1f03981939bbc93907", + "form.space.input.stack.M": "1ae6b6a7a83e262d5c97af79b7182b3db065b0ec", + "form.space.input.stack.L": "24f88676fdbf5fd5ac0194403c220543cc3878a3", + "form.space.input.x.S": "38119cbf362c6cd302331138bb74cf400ee84e9f", + "form.space.input.x.M": "5eb0796ff5cfc8d295032eeb248019110e35c9a9", + "form.space.input.x.L": "7321208e7cd65508a25c9d6ae225a65ffeac939d", + "form.space.input.xg.S": "20c7f26b79c14166115dfa2ecbc4a4311fde2fd9", + "form.space.input.xg.M": "6095c460e09fd8ce848531628ad589a8a9a34cb0", + "form.space.input.xg.L": "26b92f37218b344e02da924bbfc981d53ad81fdc", + "form.space.input.y.S": "21b063ba7c3c019ec08bd9d9d8122b424b9af37d", + "form.space.input.y.M": "0cbbd11480d8fdbbbc72a5f12ddd1883df7128ef", + "form.space.input.y.L": "994ee5e836d4aeccfd2d1c245908614ccd9e859a", + "form.space.input.yg.S": "4ae8056788bcc62ae280515bffa1bbe6d7140de0", + "form.space.input.yg.M": "f3c15fd035959f8363ddf6ef264c16692d2eabc3", + "form.space.input.yg.L": "3e9b6593108da3e4eae71cb2733bd324c12f835f", + "form.space.integral.secondarylabel": "080b29c4968071426cb3c205c4ead30d5edf9640", + "form.space.integral.xg.S": "556041e65175d56ba2c3762e0329f31d0c5dc9b1", + "form.space.integral.xg.M": "ff8153950176e429c19a4edeb51ff13b8f84b1f6", + "form.space.integral.xg.L": "6731174fa660094ebf84d4215e351a6c68c87d69", + "form.space.integral.yg.S": "d024d095c8536c8f3ba425d50b78519df99de0e0", + "form.space.integral.yg.M": "0e2d41bedab20cac4f3ec79e42b39b116bc9444d", + "form.space.integral.yg.L": "8e540c4cecf9b9204c9f744aecd6bd5e5e85bdda", + "form.space.integral.progressive.x.S": "ea6797a633e7c317e8f87bf1bd96c5023cb16b2a", + "form.space.integral.progressive.x.M": "90fce66af60b1b71a89e227477456b440db600b1", + "form.space.integral.progressive.x.L": "b18b8d3c986e32ee332a764e283e70a8588edd11", + "form.space.integral.progressive.y.S": "64549fc04dfdff77c24bace01e7f2787004725a5", + "form.space.integral.progressive.y.M": "dd452cb8af2347d4f4a6682c05f9add008a21485", + "form.space.integral.progressive.y.L": "d1c1c90b9e3eff0131bfcf1f5bffd736eb186b84", + "form.space.integral.progressive.yg.S": "4c2f04d95b58dc635747e89ce5aaa94bb936325c", + "form.space.integral.progressive.yg.M": "fe9ceda0148aa0c79c56e76ae2a1ff77752329d8", + "form.space.integral.progressive.yg.L": "059b33af03212bc1a7d0fb1b1d84ed08574f7784", + "form.space.rating.xg.M": "c7a840326d81b1e4a47e1bd5d5a6800464c9ed51", + "form.space.rating.xg.L": "787e742e29939c331964fc992c0359a859aa4330", + "form.space.layout.stack.S": "1022abe4d9b7244b239553ec40450fa61849ad21", + "form.space.layout.stack.M": "8873242009cb737c39a0467e96f23267f993d027", + "form.space.layout.stack.L": "321ab742b4ddcf9945ae5159657f7e257fa827bf", + "form.space.switch.xg.M": "fdaea1d60ebe8e3b9cd30d8d47281aa881026d2f", + "form.space.switch.xg.L": "16dbc07b700d505929b89370d39e228462503780", + "form.space.switch.handleside.M": "6803d3c5096145afdf8591ae16f8cceeb5a2318a", + "form.space.switch.handleside.L": "4614875ba93fe3acea29bb131f602b3ffe5ef81b", + "form.space.switch.labelside.M": "4dfccd593833df8f067e262c78e54214a39b6fdf", + "form.space.switch.labelside.L": "e00850462e087712b8f5297147428b8d42af57c3", + "form.space.texteditor.y.S": "0db4a526eb132bf6abb89faaec1ae5daedd7af33", + "form.space.texteditor.y.M": "a3fb74b3271be2e301188d75d717c35ccb427773", + "form.space.texteditor.y.L": "c0fc5d47198a3a3512589f83f6973452d7b0433e", + "form.space.texteditor.yg.S": "88121735ac088e29ff0d4541cd7a5af0dd62c708", + "form.space.texteditor.yg.M": "c1929da381e57a8ad9300a175699cbc177bd75be", + "form.space.texteditor.yg.L": "af4f4f332e40d4d841c480a6aa93d1e9de9d9ceb", + "form.space.texteditor.x.S": "a7cc7de8ea0ea2324d89aabbea470d51a6834ac5", + "form.space.texteditor.x.M": "fafa7a052c8ab48ea5c284e1c4ff365222b76d48", + "form.space.texteditor.x.L": "ae7d3a188060e965204d86b53d9d0a8792ff7170", + "form.space.texteditor.processing.y.S": "12920318d8668a1f284662c82f5d6122a720ab8e", + "form.space.texteditor.processing.y.M": "f6afb8ea324c7d04f18ce9ead39f20519b49a0be", + "form.space.texteditor.processing.y.L": "03708f39433842b6431843f5d9b574b6082965f2", + "form.space.texteditor.processing.yg.S": "d7dbc527dd938a1bca77407623b4fd6b2ade65b6", + "form.space.texteditor.processing.yg.M": "fba2c5fbc12b168d3742c999cd9c830c20c340a8", + "form.space.texteditor.processing.yg.L": "7e1bab783e192d2547721c73e370ef1fc16a6b64", + "form.space.texteditor.processing.x.S": "a095668cb458f1e663877d95bc9bee71ba8601ff", + "form.space.texteditor.processing.x.M": "49cc40e2349c9941dd115ad96ddf321a0b0f2e0e", + "form.space.texteditor.processing.x.L": "6f08a3a298b41a2955ef1245cda1dd1f706a3525", + "form.space.password.requirement.xg.S": "bcf3e8ac532bdce1e04e46f53f77ca9c14a48bc2", + "form.space.password.requirement.xg.M": "4ae4844d2b3c71e7f2d8e5b54f515e4189f390b5", + "form.space.password.requirement.xg.L": "446da87e46cc7fc62e9fe309801f48117d70e1c4", + "form.space.password.requirement.x.S": "f77973b377870f4357d976470ed3a00771dc9db0", + "form.space.password.requirement.x.M": "d07c09743fcb7ad804a5ae7dcd649916bb11ae76", + "form.space.password.requirement.x.L": "cdba4349efa26a04a58a3a336b4a45ba790d9251", + "form.space.password.requirement.y.S": "4678e4cd191856caa0ea7429ac1d076391826eac", + "form.space.password.requirement.y.M": "c045202a20124d3beea7cbec865a5df18420fc06", + "form.space.password.requirement.y.L": "812f6d8ba4ae5c0b5c4634bfb04f67c92e3aff50", + "form.size.none": "a25b32b0405166743ea387d2ead26b827cc0fe07", + "form.size.calendar.date": "29b9df598124f24075088a9ae646a7c65c20940b", + "form.size.calendar.day": "ef6fd0e716a14a0b80eabb8a4f7044ace48d7262", + "form.size.calendar.month": "f5252bc5827e3d39aa8bfc3eba7faa14dfbb7740", + "form.size.calendar.year": "8190652e985a16d94afff669826f0f6b314952d8", + "form.size.calendar.today.width": "2d7fefcf2732eb5293f2f8e2278056c6f1047bff", + "form.size.calendar.today.height": "82b269d8945bc1036589ca37cf8e2bbd72a491b0", + "form.size.checkbox.S": "92ae99719d526f84cfaf935e610db7b647bf79ed", + "form.size.checkbox.M": "157049edab99b4ad6da56e652dd539593c296db0", + "form.size.checkbox.L": "60f7e5f522702fdbb34ec95f2ca9bd09d7b3eb12", + "form.size.colorpicker.swatch": "08691b83bfa0f90df9aca196219f4dd145f31541", + "form.size.colorpicker.swatchcontainer": "40eb48d2f860aee0581bb974401d5326d4543afd", + "form.size.dropdown.item.S": "4966a6029ada8a4be75a89847f492ee11318e2d7", + "form.size.dropdown.item.M": "bccd1a3803ed80eb166fc59ae4f9ce8b772107a2", + "form.size.dropdown.item.L": "5279f0e7c5b59389a1cca6f6330f2b70c09d4f06", + "form.size.dropdown.subtle.S": "c33122c9eddee89169150a60c23888bc9e1690c5", + "form.size.dropdown.subtle.M": "2c37e55db778f859d325bc8d04584805ee11705e", + "form.size.dropdown.subtle.L": "6a059f97feff902c6f0c06a7fa50c65d0115558b", + "form.size.fileinput.fileicon": "f1d773b434dd7c36a0fbd6b542e687687aebb44e", + "form.size.fileinput.preview": "851a6753c223131fefb26b6de9587031789ae2b8", + "form.size.icon.S": "0f336f8128eedf68a86e04a910a9c216079cd6ba", + "form.size.icon.M": "5d01d96aedbb4be1843e9dfaeeb2e9478bb59fa8", + "form.size.icon.L": "9b99a6aaab78d178f17aea1d4a0b70d88128583b", + "form.size.input.S": "591726a6514a7e76ca421665025c7a70cf616fb0", + "form.size.input.M": "720c134081f94b299c544622d862bcaf4dcec197", + "form.size.input.L": "d0d3b61c3a6282ffa61b3a1a5f14b5d330e49264", + "form.size.input.timeinput.S": "daed74a4563a5e50de74764e64a4dcc5c1b710be", + "form.size.input.timeinput.M": "afbad30b585b43478700c558a1fd0c2e9e143b2a", + "form.size.input.timeinput.L": "8b7edaa3072ec7f0783d54c7a942bbc7e068ec9e", + "form.size.radio.circle.S": "8c70a03381f5022950ac2792110618574d3d3a20", + "form.size.radio.circle.M": "a9c91ee56a4ce49ff3e325384e9dca2eb8544f0d", + "form.size.radio.circle.L": "521987d3019b99accb3a8c5deb6aa97f4a8e939b", + "form.size.radio.dot.S": "54d9076e4ecf8050284723683ce24ae03eea3dcf", + "form.size.radio.dot.M": "b2d52e717b995bd961349db92960f66f7a1410ea", + "form.size.radio.dot.L": "e468adf65121bd2e253011572cfb5638975896c6", + "form.size.switch.container.height.M": "419f0d0f231743bae4b5653417b06dbe3784307c", + "form.size.switch.container.height.L": "f8a4ef7bb8c3b0219002f907b4cd6c171115dbe0", + "form.size.switch.container.width.M": "91ba8391af717db47b59bd59a4dae4d7006a1338", + "form.size.switch.container.width.L": "d4c1a0516274919a2a19d5cb3ebc57804f68881a", + "form.size.switch.handle.M": "f4276929695f80e8b624292a038574af0c762f9c", + "form.size.switch.handle.L": "ce12fda524b7e168af3bcf57b5f1d5587855791d", + "form.size.switch.handle.icon.M": "ce04c4d7d575ea18e1a3900dba2eaf0719304ba0", + "form.size.switch.handle.icon.L": "c7a24b78fbeeef9d1212ba21f2a229bb86888b29", + "form.size.textarea.M": "e13aaf5fadf4de89aabcba16772aed03c8bf5ffc", + "form.size.validation.bar": "29b9786d6cfe6d92d686d948787aeced98b07cf9", + "form.size.rating.M": "9535faae8a6ad0f08b22dd8bf3db495f0793b76d", + "form.size.rating.L": "32958c33d5e7fd421cefeb3693bb30e6dc237f90", + "form.color.calendar.bg-disabled": "0cddb2bba3505dba0b7558fb35cb4aad3ea1a4e5", + "form.color.calendar.bg-hover": "b28c3339932b3133d2f89f236245d340f240b17b", + "form.color.calendar.text-active": "b2b4e56e248d12b4afd6b049be08180e63634996", + "form.color.calendar.text-alt": "05efde78b43249a1a16193b114b5e83f350662b7", + "form.color.calendar.text-disabled": "0912210ce9d116159dca2e72f5c00b78d62005f8", + "form.color.calendar.text-duration": "c50daa3b67d724a2e3a368c04a70fe3dd6f4cec6", + "form.color.calendar.text-enabled": "25ed564b1745fb9922760b61f42b737e0cb2b2c6", + "form.color.calendar.text-hover": "8ef0192e78320000efb043ea94085f6f42b510d0", + "form.color.calendar.textAlt-enabled": "46d378eea5fbaa9167216c01ef9e4de0ee725c94", + "form.color.dropdown.bg-hover": "27c7d168570136875396024c9d3f7a0f28bd4096", + "form.color.dropdown.label-active": "e2dea686190f9d3af8633a39db31d1019561e017", + "form.color.dropdown.label-alt": "6ccd9a01fdf697a7de8470cb706baffebb153918", + "form.color.dropdown.label-disabled": "d951ee9cbaad7ac43a3888c7a8ad239bee3c0302", + "form.color.dropdown.label-enabled": "c8cbc18ab6a590cdf6182b785b9498995b98e010", + "form.color.dropdown.label-hover": "a3a47b1037df4e8c7653471875e8b96872f7c20e", + "form.color.labelset.label-required": "92c81d82945c07dabf11c284540eee54c5a65eaf", + "form.color.labelset.label-default": "a7c58acb02f15c4527256035c766a1d158d72f7e", + "form.color.labelset.label-alt": "8d06bd5ac964ffd34d707f459cfe3ed7ab9949e7", + "form.color.labelset.label-disabled": "b0b8f92757cf04c270b4c525dfb43eee3c5c2e3a", + "form.color.labelset.label-readOnly": "834b3b7d08ab89b53346916ab33344214cab97f4", + "form.color.typical.bg-alt": "ace76ed809c8f2688120aeed143c7e8fcc534ebe", + "form.color.typical.bg-disabled": "0afdb433214497c689b86ead262e1c797330dc30", + "form.color.typical.bg-default": "b2d510cd0c82500cf194eb4456c34867ed93649d", + "form.color.typical.bg-enabled": "9414274c07f32d2921eda6729454954708b10350", + "form.color.typical.bg-hover": "a303f97d80723dd4185eed0cf4b06f2d11a1123e", + "form.color.typical.bg-readOnly": "ceaaef94fc3c401a8473ab41166a142c80f3590b", + "form.color.typical.border-alt": "673b9e3ccb7ab7e0a8f82693f4c6c24e0c0807e7", + "form.color.typical.border-disabled": "98f6123baf39be0014f0e6ab58550136deebe5ca", + "form.color.typical.border-hover": "3cf9b812a335e8ef7b27a4ea6037a583e12ac115", + "form.color.typical.border-readOnly": "0f23eb41b218b1a7f932a06ccf1d7e4d839eef86", + "form.color.typical.icon-active": "3a3cc48bf7fadbffb430eaad447af344532d19b7", + "form.color.typical.icon-default": "2dde958660d380ae37bbd51be3a3c04caa96bfd8", + "form.color.typical.icon-disabled": "f3ee2ea75e9cc0014fc8c3827f2aa9e3a4ed1807", + "form.color.typical.icon-enabled": "aa7ebd4dc20ba9744b3303d26e9ebf0fb21b0c92", + "form.color.typical.icon-hover": "25e65c45ed475d20c803cef85ae0683ebd9164ee", + "form.color.typical.icon-readOnly": "bb5cffb68a1fdfb3f8277e573b1517c12a9897e6", + "form.color.typical.iconAlt-active": "c39d35f3429b4cdc6eeeaac39b6cef4990ce44b9", + "form.color.typical.text-active": "3d7109d37cdc5921c14f8e5c1cca0f16f4dd4379", + "form.color.typical.text-alt": "53d8f41ace3fb1b6776858c286df14299d787d36", + "form.color.typical.text-default": "aef782a9f3a6b414c8d53cfa14219d71990e995d", + "form.color.typical.text-disabled": "911c7d74d03948bf027a6b08ad0c1c1106a75e73", + "form.color.typical.text-enabled": "51fde241983b83c80ed032d7d16fefdc2d532976", + "form.color.typical.text-hover": "18de3da295b46ad1e5173ca8396319832cdf9970", + "form.color.typical.text-readOnly": "d1bdcdf27cd2a4ebb7f9da68de614c3e20c0c092", + "form.color.switch.bg-activedisabled": "72e5bd0694f2861463a9ad71047b7f6189def26f", + "form.color.switch.bg-disabled": "bb6ccf9440160fc17af88258ae073843b9e04751", + "form.color.switch.bg-enabled": "c0a0a577b0b464b3b36c1f34e89cabca1b5ee173", + "form.color.switch.border-active": "d7deb138e7727c9ff1c3179556258e9f119f0f76", + "form.color.switch.border-activedisabled": "855cf342c908026b2b0db41bb632fdb2666e5089", + "form.color.switch.border-disabled": "0e09366c8f465d401f6de70c5212b67aaeeabd47", + "form.color.switch.fg-activedisabled": "f48fc8ee71a371a40f308362539f5c80a1467cf7", + "form.color.switch.fg-disabled": "6dd0fd768dfb7c669a6b6d76c4b557ffdd8e2acc", + "form.color.switch.label-active": "ae7fbd6d4e83d26dbebb663eaa8dc1f985241887", + "form.color.switch.label-activedisabled": "ac427591bced3611e52b1cdef5bbef3d17e93e1c", + "form.color.switch.label-disabled": "a4f9165079b47c3047318bf089f183d020966f01", + "form.color.switch.label-enabled": "d83db19500ac3382c2694b902172406b39afe070", + "form.color.switch.icon-enabled": "4d93d7b57adce6989b3def1218d12cd1c8ae87cd", + "form.color.validation.border-error": "93811a3c3877905ac43600332319635f70399ac1", + "form.color.validation.bar-error": "0ad75542195e5c719ee8db50327e4b0d7d7faf50", + "form.color.validation.bar-warning": "ed7ae9d160e8873fad771d4334afd7eaa9aa8784", + "form.color.validation.label-error": "c47f07276d7c743d528fa7ba75f35fda237b8e61", + "form.color.validation.label-success": "265920295c17bc684a24aa36dfa17e831a382410", + "form.color.validation.label-warning": "af7a0557dec877c8fa4d1d8acf2cbec03a52c326", + "form.radius.none": "553390582937aa18426aeb57ddb8048833412d63", + "form.radius.radio": "1ad384ae461fc69e1f94f191c33d24baf1a3402d", + "form.radius.switch": "9301ddc8cde111194559e0f51329f9d8cf45a47e", + "form.radius.calendar.none": "9adf531d2f751730c962b7b8e7d9f08385d803f1", + "form.radius.calendar.date": "f963ab2ee9fffcbd2d373c0f0d6bbbc8b493e942", + "form.radius.calendar.today": "b3940d174d962c799ffae46ed9486c2fb3dc1acb", + "form.borderwidth.colorpicker": "ce5daf13df514bf79cb715e8f59836e4ff8a0e05", + "form.borderwidth.caution": "7ce7ceff41e7c4c9db5202d0721431d2e7fac883", + "form.borderwidth.dragover": "b329dadf69e297470b98253da131395d99594cfc", + "form.borderwidth.ratingstar": "a51ba6ffcb474f0224356e3c0a750a018b8316fd", + "form.borderwidth.error": "2081772a2b64e60206abea44afebe3a886c2ca85", + "form.borderwidth.fileupload": "fa8260afcea8aff5ce59e0ec80b9bdf1ea246dd6", + "form.borderwidth.input": "94c2071bb327d64c5cbb050d75479f74655047a4", + "form.borderwidth.searchunderline": "0d1b03465ccf7258413c0813e562a7bc9538a5cb", + "form.borderwidth.switch": "c9208cb3207f634899d02795befa76207da0d390", + "form.borderwidth.tile": "49ca40d0865fef95add75d379711df160be7a036", + "form.borderwidth.calendar.duration": "2b6702c62513f9510110a88c5606dbce3d94ff2d", + "form.borderwidth.divider.item": "fc81eb88c3d213c1c856afc3b2d2c855b86ed68f", + "link.color.destructive.label-default": "8dcce49769a780c566ef8b38a43f383a1be0bd48", + "link.color.destructive.label-hover": "e175e5f083ce6387b542f69fcb9faee614a05cc8", + "link.color.subtle.label-default": "ecd3c05046e7f4f480d9ba9cbfd09f3ba3491008", + "link.color.subtle.label-hover": "787236eda81b352ba7c56fb1378a900e4a313193", + "link.size.skiplink.M": "cef755d34930794087fa471157a716d2cdeec6e8", + "link.size.icon.M": "a1fd5a05cfd06ee66f4d4e33ecbcea3740aeb968", + "link.radius.link": "f2b6536cb9b59e7dc268c8e1046b4bb2d464f7ac", + "link.radius.skiplink": "37714a050795008fde5278cd6ad602ad2dca49f7", + "link.space.integral.xg.M": "b5aa104ea2d857779276feef8f9e11c640e6f39c", + "link.space.integral.xg.L": "49dc05928b0d2aa16a983ef433045bee3fd11be6", + "link.space.skiplink.x": "d6ffce0abfe37a0aef20a33cd280a6432495bfb9", + "link.space.skiplink.y": "be233b0eafe89bc14ed3e5c05359dcfebd016d05", + "logo.color.sage.bg-default": "176fa4bdfdde2c1d90543d62f76c86a4210d33bf", + "logo.color.sage.bg-alt": "08a6379727481535a381a2ce3a86af9f9555ff37", + "logo.color.trust.bg-default": "d54eaa67a5b1054ecb788b2b7d0e1fc30fb5c381", + "logo.color.trust.outline": "a460c2cd601a494fe58a6b921226da2b3e7a5692", + "logo.color.copilot.noBg.bg-star": "da56b1e1732804d510f092d0f083dd07c48a0774", + "logo.color.copilot.noBg.fg-default": "395284d7da4f0c599691707823ec461336c43766", + "logo.color.copilot.withBg.bg-S": "51078746fc01ddc633f7f05563173b88681e860e", + "logo.color.copilot.withBg.bg-star": "4692ceb2d703ac16b5e6fa0da55ec679ebc5b22a", + "logo.color.copilot.withBg.bg-default": "2c46b6042a18b67af472e5daaf33a0e9563a408b", + "logo.color.AIIdentifier.bg-star": "c7503be9a3ba93460dd15d608e5553811558fae5", + "logo.color.AIIdentifier.bg-dot": "6aee04adc22efb6cdb8d60b830ea6fcba86c1603", + "logo.color.AIIdentifier.outline": "342bfc3643e5a916607236ddc4d6d1229addd8b3", + "logo.size.AI.M": "840ea6236181a2a446dd992b2f877f85211ec3f8", + "logo.space.AI.xg.M": "b9e01b0611dcee1c94b1f0f49527f17a1283e090", + "nav.color.bg-default": "c20289a3ebe37707383b8259b014d64a4f7a7ddc", + "nav.color.item.bg-active": "84b24aa4d93ef105e302668b30a444b4195a6f16", + "nav.color.item.bg-activealt": "0dffaf7378b5c4324ffa443024bc30c0f95164b2", + "nav.color.item.bg-enabled": "6ce9b15040a4e7e0bc0ebb68e13d99b9b8b7a936", + "nav.color.item.label-active": "982debe9801aca402461c3751f74903655f74024", + "nav.color.item.label-activealt": "9997faa11976bc9df560dc6a62f2e59ebe7ad331", + "nav.color.item.label-enabled": "f611e7397ac57fc44433798811bc913d71316c59", + "nav.color.item.label-alt": "98102be75a1b9e4d5587fded9ef31b78b0e72606", + "nav.color.menu.bg-default": "36906d3d6048072bcc384355439d189c5b190496", + "nav.color.menu.bg-alt": "649425622bfb76795abefd14e424ae291acd6cd7", + "nav.color.menu.bg-alt2": "1fda48e60c42278d289a8c0abd8a2d1f200a8b92", + "nav.color.menu.border-default": "277b1e7970c90781b74cf249e5582e9c739e1c0f", + "nav.radius.menu": "31d367e4dc424f9f54e3d1a0a262b0215203175f", + "nav.radius.menuitem": "aba07f4523958ab04e679d32b473cf797c34e9bc", + "nav.borderwidth.divider.item": "6aaf1770f1e207dd13457ee810d653232af5a4a9", + "nav.borderwidth.divider.menu": "3dafeb6edca38a3d36fe50f946d763562db9078f", + "nav.borderwidth.divider.segment": "9fb4fe7505b14ddbac5ebf7b60af731ea5b07e2b", + "nav.size.menu.content.y.M": "942012e158d3856451b48b2e37d509b0e3cb2aa9", + "nav.size.menu.content.icon.M": "5c917fed46e4c1e13916d988d6fbb5087c904423", + "nav.size.menu.content.icon.L": "80b9d270fe7d57964743c0efa7d2ef33112cc36c", + "nav.size.menu.option.x.M": "fb20d933b9d5268937def8122ad580dad84ed033", + "nav.size.menu.option.y.M": "393562fff0bdec75cdfd62a51bbf1a88273dd69d", + "nav.size.navbar.content.y.M": "0a11abbf3e77f117b4eeb1cac6a28476694d2bf5", + "nav.size.navbar.content.icon.M": "afd800569df32bbee2da6b7a228dfaee4f5edad2", + "nav.size.navbar.content.icon.L": "d0db3058571b922f86facd1f718d912e45f5e29d", + "nav.size.navbar.item.x.M": "f0897065bac5a8e24649eecb841f5a958d20c2c8", + "nav.size.navbar.item.y.M": "5a35367c060831557c5c14263c0fb66dd30cae3b", + "nav.space.menu.container.x.M": "9f5c8b684563dfbcef753a0b6f40a130a332a6d2", + "nav.space.menu.container.y.M": "ab85414194125a547c56b38b0dc4be2943475949", + "nav.space.menu.content.x.M": "1d27af3c95d7de7daba2cb3562a2e7ae68b82ca1", + "nav.space.menu.content.x.L": "3eff2ed7b2ab6b529e04975708c4b1015b00d0a7", + "nav.space.menu.content.xg.M": "ee5231965beee798a1177469cd59cbbd1f000a59", + "nav.space.menu.content.y.M": "674dbf98588f21f968d408b53388975b636ecab2", + "nav.space.menu.item.x.S": "67fdabf111fdbe417ac95b3cb01ff4f0f88349d5", + "nav.space.menu.item.x.M": "d4143a1aba4a7abba1b94fe9694dcd793eea9fc5", + "nav.space.menu.item.y.M": "37b87c075788b3d0762f5b7d320340375f9fabe2", + "nav.space.menu.item.yg.M": "6e4708446c1d2f38c66ede916882aa0789ec1ed5", + "nav.space.navbar.x.M": "fbd73e576c8ddcb440a97229a572b85418ec466f", + "nav.space.navbar.y.M": "261e47b33d2414979a298297f7b7f6df7ae3366c", + "nav.space.navbar.content.x.M": "370d6738ac0660c6cb50b2f2c341da9c2337a1bd", + "nav.space.navbar.content.xg.M": "dd47e82ab1d455f2e67ca924a9be8a0a07fc63ce", + "nav.space.navbar.content.y.M": "7bedeb9b16e8b1f78cc696a78e4a539e941dda47", + "nav.space.navbar.item.x.M": "1d41442744f93ab58f95d7555fded37216fe850c", + "nav.space.navbar.item.y.M": "5251981f0f7d56b2c979e62e6b0c553c8ec29fba", + "nav.space.navbar.logo.x.M": "ac4f27279757f6a7474484daec00a7895341d32c", + "nav.space.navbar.logo.xg.M": "4cfaac084b2030f951d1e9c83a7466300bc3aa6c", + "nav.space.navbar.logo.y.M": "16092018c77123c64370c1a21322056a4b613876", + "page.space.none": "4c3b1d33531aa051acf96da285583bfbb56d51e0", + "page.space.x.XXXS": "d9e44ce002e65094dc05f5ab1e25b04002e78ce5", + "page.space.x.XXS": "b181d3749404c4eda29e4ff1c28e50c1bea0b320", + "page.space.x.XS": "3d73f20f849ed903815095f73f9b7a9ced2ff482", + "page.space.x.S": "81ab31a6f63f9dd929e7616efef06763b51b65bc", + "page.space.x.M": "08cf6b0689a4bd69a780ac2ef9b6160a3d635241", + "page.space.x.L": "61fe779fead2071bbfe86b64cf90c6cc8f13fee8", + "page.space.x.XL": "9e85f994dcfb32cdcc693f96aba72f6c917c0274", + "page.space.xg.XXXS": "0cc7fec597950e8c11950ada8b00b8c6273e54dc", + "page.space.xg.XXS": "96e1d3b2cb81c97d70f69a429689cf2b35345f61", + "page.space.xg.XS": "f9ef3ec255923b69b382f3a9efcc30a964450659", + "page.space.xg.S": "cb148ad65dfe430eb6e6b7159659cbd016e8dbe7", + "page.space.xg.M": "3b7fb43efd6f09faad157d694c96da7a3f742bd2", + "page.space.xg.L": "420390fc1a966e10ef486c81612ea2a2f97c17a1", + "page.space.xg.XL": "ef68b0ca3ac96b7f088179740de87e217a61a519", + "page.space.yg.XXXS": "d0da23eb979ae1ae64b703503c913d7668992a99", + "page.space.yg.XXS": "a2d76a7d9ab1ca552139f6b47a0e2bfb5505e31b", + "page.space.yg.XS": "f022a3e9129bbd323416054cf432d286a8a4ea3a", + "page.space.yg.S": "f3248ef9a47b16da9ecacb10b9df4eb39e929795", + "page.space.yg.M": "9ffa9089546a78e13f107da0e4e9afc30c25b3d9", + "page.space.yg.L": "349ab3c9a2f5a494be1afbb77ce1bd1b65d825be", + "page.space.yg.XL": "9f0c1aaac5458bd5ca0da348d0181058284cb119", + "page.space.y.XXXS": "e7d791dc5fdf219e6fd0ceafd009b6a9e4820d12", + "page.space.y.XXS": "8cab384302574cbcb142d35881f527fb06d6953d", + "page.space.y.XS": "68adff5b5b0c2149494de6842f61065bf813e913", + "page.space.y.S": "b6bdad590640f1c7711c01d956c42a51e278f0ef", + "page.space.y.M": "2112d78b4489685af10369a375ec8ff3939dfde6", + "page.space.y.L": "ef8c2ba942d575097893e5a7b5938b5197e41243", + "page.space.y.XL": "8c16739a1de56ae7327dcc9db683aad4f11fd4cf", + "page.color.bg-default": "eae7ab52ece29003fd4f1ee1e649948db9b2fb9d", + "page.color.bg-alt": "9d2bdbfea53b3117ef06aea16c6d8239c3da8a20", + "page.color.text-alt": "12bd9fd34f2d3ed55dbb950c2d4ac349e5804184", + "page.color.text-default": "c01d5636b677e0a153a5602be335f079d589b13a", + "popover.size.icon.M": "f1e9c8d331c9d8715b0f480caf5a4f02a94ebe16", + "popover.size.item.S": "d8234fc202ce5ea8d8bc88b6ac7cc9c910caf916", + "popover.size.item.M": "c7a9e930af9d14525a8538ed306374ed1a601e24", + "popover.size.item.L": "8eb7f63ce16544fe026cb8cf6c48150b963a8e88", + "popover.radius.none": "7729c38be03b17d7a72f3ef2488a25f36258fc2e", + "popover.radius.container": "578c9feaacae325df780131438ec70bec12524e3", + "popover.radius.optionfocus": "303e32e23b5a5f56a8e95980c95ba4659534bd69", + "popover.space.menu.y.S": "50b73e720a5597be532ceb1295ef18eb786ec92e", + "popover.space.menu.y.M": "c85554061edf75ae4257f0a25c3ebc1d22673f93", + "popover.space.menu.y.L": "3b7b459d9e42ca732af48542ed12b19c08540165", + "popover.space.menu.yg.S": "c272b3a7ad57d959cd235161529acec5357c51d8", + "popover.space.menu.yg.M": "c9caf8296369a978afd99c9f5e04abf1aa8846c1", + "popover.space.menu.yg.L": "a9d25b3b8d2280f1b8471228b2e9e6adfcc74a94", + "popover.space.option.x.S": "63c7a05c6b9cf59afc37a20603272ae9ec184e60", + "popover.space.option.x.M": "5393f01de920a6c525da46aa59fee40f3ab2ca02", + "popover.space.option.x.L": "79d1a94d3ad1ab83a30c5338c0d144ae4578fe54", + "popover.space.option.xg.S": "69b3ccc718ec1b18d594d53c4f27562826f3d128", + "popover.space.option.xg.M": "7b3c838ec86aaa7c49559784d3ec6f7e94ca85e0", + "popover.space.option.xg.L": "06cdad998a8286b9ab849433827f82b8146b6d58", + "popover.space.option.y.S": "c64c40c7885d19d27ad92ed70b04bd06e64bae4b", + "popover.space.option.y.M": "7df198f0f920b331336778885bd891a73e584e28", + "popover.space.option.y.L": "47b453141a88f6f893c67b6282f26f58562df30b", + "popover.space.submenu.x.S": "d2e9d4c590f08cea90b7ad8b52a4ce1fd7324896", + "popover.space.submenu.x.M": "14318f704975f1f2f61e7ec9cce4be1146e309f9", + "popover.space.submenu.x.L": "6958f71811269d5d19098e482c37c1b87d04a9f4", + "popover.color.bg-default": "d54f5f41bb3f96da788226c934b3f6e4ddff62d2", + "popover.color.label-active": "1bc8747c12ab03869fd608f9bf0695e493feaf7e", + "popover.color.label-disabled": "269f93595159514064400fcb11102e324dba42b2", + "popover.color.submenu.bg-default": "92f43758b455eb8c56a13c2f35767cfce851b9bb", + "progress.size.bar.S": "718ff61ac9c34247c0167f1de8938b54a188603f", + "progress.size.bar.M": "a3a0b404dbab8f3d47fa3d21118e8588d97b3e87", + "progress.size.bar.L": "cad9ee8d3fe0cc3ddb54e459524fe7331f8f5fa5", + "progress.size.carouselselector.dot.M": "f506f9668460afd0eb93e6add518be2a79ff540d", + "progress.size.carouselselector.activedot.M": "b144a670e2877553e6da4f88709016f518e6e60f", + "progress.size.carouselselector.hitarea.M": "4741b2a717cacca6733fc70e3676ca360feb7024", + "progress.size.carouselslide.x.M": "a4b62ee1d0976778d608451bb86e5926aed1988f", + "progress.size.ring.S": "6fa7e50552ddab3f075bcf4d8cd4da766cd02bdd", + "progress.size.ring.M": "324e650a3cd0935983afcc0adfca7a1b8f80778c", + "progress.size.ring.L": "c8c9f57b619801bce5c954556957574e82ca08dd", + "progress.size.skeleton.responsive.text.XS": "5025406aff7aa0df6213a62ec2a45fc77084b17d", + "progress.size.skeleton.responsive.text.S": "2357ca02ef6aa7e130944942fd92f92d09e12ee7", + "progress.size.skeleton.responsive.text.M": "fc229283f308f828831e8f634edbd6d4ce8f7bca", + "progress.size.skeleton.responsive.text.L": "ac8f9d8570ebfb88fa194cacfad91237be55d4b3", + "progress.size.skeleton.responsive.text.XL": "9ea1024c7fa863ee5a8320cdb9b5b1a1e85c17f3", + "progress.size.skeleton.adaptive.text.XS": "43fc98104ca60f86e3c5e3ca74c7c1003b129e31", + "progress.size.skeleton.adaptive.text.S": "8cf36a335453058f46f6cb6a70232bfba46ccea6", + "progress.size.skeleton.adaptive.text.M": "dceceacc00f9f184b7b4f87616c0f04726a36853", + "progress.size.skeleton.adaptive.text.L": "a4ccf5ff094e1e7688aa7a123960d3a51ccfd0c1", + "progress.size.skeleton.adaptive.text.XL": "9dec82266a84c60ded0de7a3c2ad2c0253833c48", + "progress.size.stepflow.M": "8a3c98b5b0d26aff62c467cf97cc0e74c534874c", + "progress.size.stepindicator.bar": "32ba5969e43b6f6ae6f0c00c9e35afb85a11ff9a", + "progress.size.stepindicator.stepcircle.S": "a55ad771c329b63941722e3c02386928ffc66e17", + "progress.size.stepindicator.stepcircle.M": "012d1e8bb5f6059059656ba2155948fed3d5b637", + "progress.color.bg-default": "5e5eef061675c09fdab6e25644d00bab18b0631b", + "progress.color.border-default": "249e7cb3fd86b29c8e4118e63aec7db5191da3cf", + "progress.color.fg-alt": "76af5855c09d2a52ae17f32994c24ac281e29efd", + "progress.color.fg-alt2": "6d0573162901106ecc6c6f6d31296e1fd6b530c7", + "progress.color.fg-caution": "984d8913bb57289f228380cd22231ed905467bfc", + "progress.color.fg-error": "a4b614c4575509cd2602b756abf2e33259fcfde2", + "progress.color.fg-info": "dedec29319a9567ce458e2f7fe5c50433c381bbb", + "progress.color.label-alt": "a0ffbafcc2a21f5f052097ecaa48a6e72f25f660", + "progress.color.label-default": "b2908ca5d930099cfe4b10d979f3b185730946e1", + "progress.color.datavis.fg-default": "cff357250b27f66dfcc0bccad7197995318948cd", + "progress.color.loader.bg-alt": "2fe7a47a838af6740e2b0a1c344ea05e9e3463e9", + "progress.color.loader.fg-alt": "ae49b86487e447c821d7d87d353485cf97ab4fda", + "progress.color.loader.fg-error": "5907505b88cfd15e7f81a97a65890103b54d9c2e", + "progress.color.loader.fg-complete": "10eb4d680e6e8941e0e1aa5b5d4140976ff7407d", + "progress.color.stepflow.bg-active": "3b2263e1e268c06ee76be6ec5642cfd98155a0b3", + "progress.color.stepflow.bg-complete": "95d4dbd98b93d22451be8ed5090d75aad5ea0346", + "progress.color.stepflow.bg-default": "99e3d23184bc00fb08fc9848e6ad052b2bb5f609", + "progress.color.stepflow.border-active-inner": "9d767b130df7bafc24195cdf32ce7ba5f6e1a9fa", + "progress.color.stepflow.border-active-outer": "9342d8803f700b405fb646a4b08298e74ceaed2d", + "progress.color.stepflow.border-default": "67a39d5779d7f7a1c30d3267349e6cac790608d5", + "progress.color.stepflow.label-alt": "5782a69592a11afce8ea4ff5c72584607936d4d1", + "progress.color.stepflow.label-default": "e25667a857893ab0de65321be72f2273adc83ed8", + "progress.color.stepindicator.bg-active": "5944da3ce78302ec598f620cb9f3b3676d90b6aa", + "progress.color.stepindicator.bg-complete": "8937aa1d8eebdcfd48c9d75f8e33e6a0735a7156", + "progress.color.stepindicator.border-active-outer": "b75affa668bbb742b6c82ea48093b3eeece1603d", + "progress.color.stepindicator.border-default": "60e3ef13b3b3da30a0dd4d52c7ed55c7cd583715", + "progress.color.stepindicator.border-success": "c58f46506d2e904311e9e1a9153d552b0cf2cd48", + "progress.color.stepindicator.label-active": "be75a9c37e7a4bb60cd71bf44062fe3bcfd88f21", + "progress.color.stepindicator.label-complete": "631d9322eb8cd5f33de85e1a3aae51ae574213de", + "progress.color.stepindicator.label-default": "a3852229c543f2d51a3cb512642f63f3cbbceb66", + "progress.radius.none": "bda42e81383e4990df0247a4c580c1861d0caf9d", + "progress.radius.stepflow": "bfbaaecb65fe01991b0024e9ce9449dc50b39abc", + "progress.radius.stepindicator": "cf19c74ac5ceb4057763707f4485f904e6162ecb", + "progress.radius.carouselselector": "dcf12a62af4951afbbf1ce0a55d3fdfad717476d", + "progress.radius.integrated": "a39fefabda84433e4a1a4a3dfd028ba60f7a4185", + "progress.radius.skeleton.moderate": "5e0a3a25af519fcb89eb36ad7f5922c40d577ee4", + "progress.radius.skeleton.curved": "b39b75ea413bda7056b4979573f38d0bbdfbd28d", + "progress.radius.skeleton.sweeping": "a8e8d5bce155977e798273e5f8fc7163ab1c4b7e", + "progress.radius.skeleton.circle": "139ea65b18c5c08cf05215ec64eabcf7d43c6f5d", + "progress.radius.bar.S": "c945032658574b4c7a65ae0671d08351f5a7719d", + "progress.radius.bar.M": "528e00bda573e8270114d7eb95c525d6467192b6", + "progress.radius.bar.L": "3bfcb32958c00aa771394e2c438a53839bcba933", + "progress.borderwidth.bar": "4e65a624a89edf7e8b43b71628e95e9acb14a616", + "progress.borderwidth.carouselector": "826aa32e36c1e01b7ab0ee9151cfd7bc9cd071fe", + "progress.borderwidth.integrated": "7c2489e8c13f4580660a5af4a8c82407724cc9c8", + "progress.borderwidth.stepflow.inner": "910e45c54fd09d3c054d1e98a8cbf81c7af140b1", + "progress.borderwidth.stepflow.active-inner": "736d75e48061efb5b107894840498b862673f499", + "progress.borderwidth.stepflow.active-outer": "1aa09bf55dd707af2b0d3eff4a62b3ea01aa2e8f", + "progress.borderwidth.stepindicator.S.active": "82aef748c35bf68bbae446b0e056cb7316e3ab53", + "progress.borderwidth.stepindicator.S.default": "a4dc15f692fac6b2780f1ee261d62ed5fdbcac75", + "progress.borderwidth.stepindicator.M.active": "62f7c6352918cac09bd310036e48af3333e33df2", + "progress.borderwidth.stepindicator.M.default": "18cd10085e0a53cda0e765c42eb717b6d5c3b2cb", + "progress.space.carouselselector.xg.M": "a2ebb3970ef72c7d0d9782bca09f90441efa2400", + "progress.space.carouselselector.y.M": "2affa450da4c7ef55c57610c43593a104138852a", + "progress.space.integral.x": "c3eb26de427594f7f1391b9cd41a341eefe9b502", + "progress.space.loader.yg.S": "edd76b7799ae5c0668fa1120329452b0555a507a", + "progress.space.loader.yg.M": "2be91b421179770189dc92016623dbcc0c72ab63", + "progress.space.loader.yg.L": "ae34dfe640814559eacc01aade838653cb0f5f99", + "progress.space.loader.xg.S": "1c27d60ab210dd6a39f4d29991e01110ad2d9985", + "progress.space.loader.xg.M": "4baf0e32569a06cc019ae0696fdc3de21a9db448", + "progress.space.loader.xg.L": "20c102f769dc9290a9229916def26af80588db38", + "progress.space.skeleton.multiline.yg.XS": "4a551e3434a9ba2d980f3a2083412febbcc87f8b", + "progress.space.skeleton.multiline.yg.S": "d57a61f477cd31f6ca36b3e49cc9f4d9dced3fd5", + "progress.space.skeleton.multiline.yg.M": "2e5a56f1d8e71d17c6ac11ccbcf2d75a0bf56442", + "progress.space.skeleton.multiline.yg.L": "b85445ed6a7a5263f7369405d04490dc241d48f3", + "progress.space.skeleton.multiline.yg.XL": "037a93ecebef64453bfb840f4b579d3adda6fae3", + "progress.space.skeleton.multiline.y.XS": "aa0bbb0216400616958fd53fe94a1e38b433d44e", + "progress.space.skeleton.multiline.y.S": "68f50063f16f9751ab267fc46ca89ad47cfeea47", + "progress.space.skeleton.multiline.y.M": "b75b44db441d2d769026af3eb594ee952409abca", + "progress.space.skeleton.multiline.y.L": "fe087813daad624ab8ed4b44c2041a887307116c", + "progress.space.skeleton.multiline.y.XL": "d7ad528e311d6b59789aa0c402cb1c803d0ded8c", + "progress.space.skeleton.singleline.xg.XS": "493fc312f3e6003e93c14da57d4195e4677318b1", + "progress.space.skeleton.singleline.xg.S": "65ea3bbee4f36b1b436963a476f3db149d730a71", + "progress.space.skeleton.singleline.xg.M": "3a6ac1b3190cca95b35a41e77677b6cdde32e0f6", + "progress.space.skeleton.singleline.xg.L": "2a07b9224053bf4b71dc3032a92aa45ab7b1ff61", + "progress.space.skeleton.singleline.xg.XL": "d3241ae7c4bc8ce975152e1d70be851bcb318c2c", + "progress.space.stepflow.y.M": "611c9b140308fa8c5e9a73d89d2b134b0f6ebfec", + "progress.space.stepflow.yg.M": "4be075065326964972d1f088f29088c7d16eac56", + "progress.space.stepflow.steps.xg.M": "e4388f9b8b7779bb41647cf61435135d81bac93e", + "progress.space.stepflow.steps.yg.M": "1c8de9f81b39115dd05cdb4e4fb1fe98705f3acb", + "progress.space.tracker.yg.S": "145d56f69edcbf89a1cb7b43ae1a5a1d51dedaa2", + "progress.space.tracker.yg.M": "7b04a95e5252c206693bf5bd0baf05bff909c007", + "progress.space.tracker.yg.L": "45c30204b1f9f26d01781a6c3c82841d59252321", + "progress.space.tracker.xg.M": "9065aaa75b2c0afeef9a45d1118f5f1209e25fed", + "progress.space.stepindicator.generic.g.S": "7d9a636331eca53cb448390ac4aea31c441dda64", + "progress.space.stepindicator.generic.g.M": "5cec4985bf7d1c3fac345f6f07a271e0f2cf4b09", + "progress.space.stepindicator.generic.text.yg.S": "24dff12de59074c4775c70003ecab0240af249ba", + "progress.space.stepindicator.generic.text.yg.M": "f932d1e9c9899322f3c68ce0720c6d0e7c438bbc", + "progress.space.stepindicator.generic.visual.g.S": "abf71f376abe229c9762cd64aeb2d47a1cf8dd06", + "progress.space.stepindicator.generic.visual.g.M": "e43247543186fc52c554fa94da206f5368211a8f", + "progress.space.stepindicator.vertical.y.S": "a45438edec4d0028d863b19b48664eda0266e5ca", + "progress.space.stepindicator.vertical.y.M": "dd87942b821bf1c403e6632ff4d9605f1f4211fa", + "progress.space.stepindicator.vertical.text.y.S": "b03dd820974943eb4c30d2e41b8fc2bd303e75f0", + "progress.space.stepindicator.horizontal.text.x.S": "4a5e19db2b691b8df3fe679f957373edcd2628e0", + "progress.space.stepindicator.horizontal.text.x.M": "b14368abd2dded129d441883d0e891fc30d4e8a9", + "progress.opacity.carousel.inactive": "e0b3e4d29dd18cf2d4f70ee5f73531832908dd62", + "status.color.none": "9c94b65013fe01b3c70b7f5cf23ada34e27778a8", + "status.color.bg-default": "c184c107cf5a72e530154b91bf164e6d6cafa328", + "status.color.bg-readonly": "b73ee7c05e253426392213fa70274974688df494", + "status.color.border-readonly": "04aa9addfd8a9781bd74a57b61954df24fd39f2a", + "status.color.icon-default": "d5d318b21e5a8ac2d64c1f6f277f439976ca8f73", + "status.color.label-readonly": "9e5639ef075944538de5db0f75c45eb711c64f6a", + "status.color.labelAlt-default": "02e16744312284bf87c9ab0e416c7f4194dddb5a", + "status.color.labelAlt-readonly": "74994d3486dd228288df3fb605fbbc79df0f1998", + "status.color.labelAlt-hover": "d49121e95982f4f273e696ae3ad963f16e44e465", + "status.color.text": "5109a6761f1ec09aaf554c427198b17277509876", + "status.color.AI.bg-default": "a733dde9f8730676a5a631311de0e8593cdca3b7", + "status.color.AI.border-default": "c77050b8329e7ac833fb51861416c2337122f6d9", + "status.color.callout.bgAlt": "03c5986c6c278e08afb58974513613ad14869697", + "status.color.callout.bgAlt-default": "e57268906bd6d63de73023a84ffe3786301da10b", + "status.color.callout.bgAlt-hover": "8f086adfadbe1db40b7738446ea9ca8242b53cdc", + "status.color.error.bg-default": "3c095141e9cf16be7b6e8fc906ac7464e417c891", + "status.color.error.bgAlt-hover": "36067b72a77c3e2cbe6397d4a1e1ccb9ad323797", + "status.color.error.bg-hover": "2414b93fd2a46099726dc9fb72c504d9271bd640", + "status.color.error.border-default": "c08c11acf8009e1b9b243898aeb8adf59c6a6bb3", + "status.color.error.icon": "06f30563c187ffeed814fbf87875c99b5f396112", + "status.color.info.bg-default": "d05753e2fcf4ba6d5db6e916ff467e6effb50282", + "status.color.info.bgAlt-hover": "34a0272faa1a09533e6b099170624479f1f801e5", + "status.color.info.bg-hover": "cb9604a097f597e71c657084a5c15c1716c69601", + "status.color.info.border-default": "92895f346ee23aa6a06051d4e1e8b408cef08f36", + "status.color.info.icon": "0e94147d48b643836766796212ca4ae269a22e7e", + "status.color.neutral.bgAlt-hover": "8e28c5e63d00216ac1d6c37b6f5cd77257e4ca97", + "status.color.neutral.icon": "705e83d3892a940e7d5b3ec982e4c1ba0fbac4d0", + "status.color.success.bg-default": "e54c25d09db045458101d4782b73227b4829ffb7", + "status.color.success.bgAlt-hover": "7729cd58cd03ce00cada450b218066586c6b7813", + "status.color.success.bg-hover": "517861aa1aac5082c40ae151a6a7a211bc02018e", + "status.color.success.border-default": "5096c1bd6d2564bdae49c91908af7058ab7bfe6d", + "status.color.success.icon": "21259cec864819900ee2c5a94e9f8bf6dcb37bb5", + "status.color.warning.bg-default": "00331f828ed3fc4946f76918b540719c4cc09270", + "status.color.warning.bgAlt-hover": "1202dbb1091770a5fc41468b0a71804f491b8c9a", + "status.color.warning.bg-hover": "6c1d23d8b776dee456a98f40f69bfe3f2aea93e9", + "status.color.warning.border-default": "8be0ca1ca4bffc234290465b7a0618ad3749a51d", + "status.color.warning.icon": "a48bc35271538d99f47f4a67602315c0bcbb922f", + "status.size.pill.S": "49a4c4ffd792ce1e04fe19db73d607e2bae11db9", + "status.size.pill.M": "18db39f595c930760c22617868173d86c5ad2b29", + "status.size.pill.L": "cae31fb2ad64308f26681c18e771178417dc4d77", + "status.size.message.statuscontainer.M": "a2b738cc725e38c1ac6b269b8f2b4cbacff767d3", + "status.size.message.statuscontainer.L": "ab69b82898963f1dc83074ee669b9d5ffd1f2193", + "status.size.message.messagecontent.maxwidth": "6ba184feaf45cc188c36c372065b344091976bc2", + "status.size.message.global.M": "707069a15f6a5bbc3e51aa10afc8ddd1f4a11260", + "status.size.icon.M": "d6e4c0a7fce258521c47205749c182e9e7cd959b", + "status.radius.none": "0e7313dbe9272c0e9999e4f4576ea43a0a23e996", + "status.radius.message": "666102b9edf21077e59815411ad1cfa13ded007c", + "status.borderwidth.pill": "f02569c412f76123b5a9672ebe6f57f9f8a9810c", + "status.borderwidth.message": "5abd8462f0b580e54576c4b9d2e3826d006fdccd", + "status.space.none": "11211d01586555a963246046507d8a6db8ed73e9", + "status.space.integral.x": "bf93216946abfe3513eecfdf843d205fb1902090", + "status.space.pill.x.S": "9ccb55d0a500eb9142c4482583acc3f99a4e054d", + "status.space.pill.x.M": "f7be2f73e6618d1ea8d1e8546e623b770b780b5c", + "status.space.pill.x.L": "8afeabf3d26a3fe5f416f81c38a266ba145e7fe9", + "status.space.tooltip.x": "d7413aeb32b01b49b1b5c6e87bb3104b9aa10b99", + "status.space.tooltip.y": "21e0fd429f76ea93e4446bc7e04ff05be6efcdf5", + "status.space.message.contextual.x.M": "97114ed8f477662443282a286381d97571ccf023", + "status.space.message.contextual.x.L": "2e0a653999577e917d5f9e8c4b415f8f4091596f", + "status.space.message.contextual.y.M": "1f0211e6d70fbb50ccb30be0aa98b1236d2fed68", + "status.space.message.contextual.y.L": "23b5ab65cb6bb46aaa6d002c8efe28b21fdc269e", + "status.space.message.contextual.xg.M": "5dfa9f1455c533f9d29ad51018f4007e6bbe82a1", + "status.space.message.contextual.xg.L": "e5aaefc294664a33f1e84474a0b0718cef2189a9", + "status.space.message.contextual.yg.M": "f01976ca2df1a233e4953aed28e25344b6a49258", + "status.space.message.contextual.yg.L": "8fbf6456ec5c998f18ff5e04916e5562e1b68158", + "status.space.message.contextual.subtle.iconwrapper.y.M": "ee90ecd83ac742f0090a49d7781bad646bc8bbaf", + "status.space.message.contextual.subtle.iconwrapper.y.L": "88e32a43145051d41e82c7ddf005dae69e409437", + "status.space.message.global.x.M": "6bc3c7214994b627785c269b52a8522e67be683d", + "status.space.message.global.y.M": "0c7c01dd50fad59461ac3077634aaaef77c26a18", + "status.space.message.global.xg.M": "a5b640bb24b1f43d849cc50d4b49acfe78873793", + "status.space.message.global.yg.M": "74b78c6f5373050214c063d8071ae513bfc29662", + "status.space.message.global.CTA.Y.M": "f08dd22ace9116dc5b1d62c2857e81c00232bc90", + "status.space.message.global.CTA.yg.M": "7d36f3ca4f30f5229d32fff8afdc4521c33d04df", + "status.space.message.global.iconwrapper.y.M": "942ff02363a89293193f0473e5b22ce1b6176d7b", + "profile.size.profileeditor": "b648e5eeccc41c7f3e49d8e9a108ddbefa678d74", + "profile.size.outside.XS": "7badefbbbcef4c3d9fea09fe0d39792cc77757f0", + "profile.size.outside.S": "b50c47531b9694117a5bcfd0c1b528e3e7544748", + "profile.size.outside.M": "af55ed8c67130e657a7106e18f410ce38465e2ba", + "profile.size.outside.ML": "0c569746e9104066ce3b9861cd651999b98abc59", + "profile.size.outside.L": "c8ea1532e8c61458133dec2c5acb75e150644d0c", + "profile.size.outside.XL": "d1af9f079edd04502226fdd44cd21f67dd63741a", + "profile.size.outside.XXL": "7b4696d90c9b62632de8202ad40ebd149015eaa5", + "profile.size.inside.XS": "b8796456ccbe74bcbcb3dd6f318350c9a04c2051", + "profile.size.inside.S": "342a44d729419e766a4bb454864d270964058bba", + "profile.size.inside.M": "f91f6e435f7d55bf249e3df1351b40624167d0b4", + "profile.size.inside.ML": "fa1bf4857cbff58a261889469465226101455cb5", + "profile.size.inside.L": "4b773c1bd32e28de70ce22af10de0033cda0c0e9", + "profile.size.inside.XL": "22b6259180298b5b6e1b5e6eff7c84127db7e561", + "profile.size.inside.XXL": "9e1766c9554ccbf69f60c2dcbe8f8903ad0733a9", + "profile.color.bg-alt": "ca050229c9ae3b24b810cd408ffeae2059602c47", + "profile.color.bg-default": "566353f2b24b9edd1bb531a9427c02d757c555ec", + "profile.color.border-default": "c78a3099f90c04c2452e353cdcdc488765c1a554", + "profile.color.label-default": "d829642b17ef204889c634e8800f4da4ca4246f4", + "profile.radius.portrait": "b258594cfe9452243d2f5f236e4da8be3b78b07b", + "profile.space.none": "44c9c6ecf7896e99fa32f412e5d258fc1f63f915", + "profile.space.x.S": "918e5c368b0c3951f2429cd093875c23aa7b8793", + "profile.space.x.M": "7e25ede9360210112c904f71a1cfcdf593852b51", + "profile.space.x.ML": "b0d5c61f52bf1fd3a9778c9c1780304879e13444", + "profile.space.x.L": "649fc1051931c85e3b221451a6124867ab817488", + "profile.space.x.XL": "2ea9898f8529a2f06a96d4903c0cd564459ecc43", + "profile.space.x.XXL": "962ae702c40b4198953fddbf73133eae16e4d887", + "profile.borderwidth.portrait": "e02100d66d5834f36b4659ca95aa25bf24df3937", + "tab.size.M": "e3b7a6c8ee37fe28327b01852aba97cfff7bd4f5", + "tab.size.L": "bad8373374528502aad7b1ce23f4dede815d37fd", + "tab.size.shadow.arrow": "1e1bc37b55b2dbec64cc6abbeea4e316198c30b2", + "tab.size.baseline.M": "cc7156e951796677aae84d1e0c4733e9c422453d", + "tab.size.baseline.L": "7f1c1a8253c11ebdfef314664b645b6fd94478d1", + "tab.size.icon.M": "fd6e846c110b477f48f7d6163264d75267e10a84", + "tab.size.icon.L": "9ea7e297076e2c111c6414ad56659d1607418caa", + "tab.size.indicator.M": "d897329601d630961e5da3e045ca6640c8a5c2dc", + "tab.size.indicator.L": "8a5b7f9f05ac3af7fea4de55792d60b03d18d584", + "tab.space.x.M": "9928d03f930c6b4fc41b225b7b487ee7819fabc4", + "tab.space.x.L": "cd32b0bb5959fa2fcdf3271fa893eca85468e570", + "tab.space.xg.M": "a144ff737265a5dad6bc6c0c8a6e5d71b16730e1", + "tab.space.xg.L": "0e6b384fd263cabd704c5e024522e2f636507864", + "tab.space.y.M": "e46b8ecc74fc97d3cb7198937e75e847a7f662c8", + "tab.space.y.L": "b48202864a16ed7b181715995183f6be9f73e3f2", + "tab.color.bg-enabled": "d8657e9dcf7dbaed6b4bfe081c520ab35e05a53d", + "tab.color.icon-enabled": "6d4c0c7c30992888d09c794ab70a3c3ce7b9baef", + "tab.color.icon-hover": "f6d224fe972b8d484006cd2b251b48e9c6f6144b", + "tab.color.label-active": "19d3a9036e6e2b1271ff32b81fa50191cbffa142", + "tab.color.icon-active": "a882447b658aa26b2694f1b6ebf26eaeb98d6e43", + "tab.color.label-enabled": "691226bda8fc13bcbfae1e7e409dd8aacfc9e44f", + "tab.color.label-hover": "f8c367d3dca0e458c0a4937e5d4a65b01d58ba26", + "tab.color.navigation.bg-default": "e3facc8423ab67d4d5beeae1562fece5da868d02", + "tab.color.validation.border-warning": "cf2e74be918f9b6ed3c2e2a2bd205c64cae48778", + "tab.color.validation.border-error": "f794f4e18be75e8014786527f9dc50e4f9301a29", + "tab.color.validation.icon-error": "2a84d8b14c0b61c8dedc46a7e132b387c0473e88", + "tab.color.validation.icon-warning": "d80c2c82b2874fc2e4991f1a16cb809bbd985bb4", + "tab.color.validation.label-error": "53a0ff785743de5a0ee37d5e13f09db2f830c9f9", + "tab.color.validation.label-warning": "8d1ee1f205e7b283b63136f83acd7870e20dca79", + "tab.radius.baseline.M": "837044670bca0637a7bbd2b1eac1095a693a5479", + "tab.radius.baseline.L": "5f8370d40ddb7f103454d930e67608ebd8d241f8", + "tab.radius.indicator.M": "8248855dae76de8c96aed35deccbf3d61323138a", + "tab.radius.indicator.L": "6886a7024199b08d4dc4dd808caec1d12367ede7", + "tab.radius.none": "6d620fe223712ad31413622bf9ce4b335d35ba0b", + "tab.borderwidth.navigation.bottom": "92d017bcb914d3845f9acc5f43316a19f909bac5", + "tab.borderwidth.navigation.side": "83f46aa396c87fc53ca29cdb4c94fce4cd0bb350", + "table.color.header.subtle.bg-alt": "a600e4e5f34f1597ea7be9338cff74f395fd4f1d", + "table.color.header.subtle.bg-default": "ed04ab8c95edea05ffca7ffa15d6965a1f0ddc86", + "table.color.header.subtle.bg-hover": "9e74bf051bae01ad69e984549b974db65f370372", + "table.color.header.subtle.border-default": "43e0fb1c5d6aef08b3565f341e78f23ff92fffbe", + "table.color.header.subtle.label-default": "0e9269b3c42f0be49bc23d396d6bfc0dfc4b2773", + "table.color.header.subtle.label-hover": "c709dd0ac0126cf28efddbbf1ce54cae18250de8", + "table.color.header.harsh.bg-hover": "5ed94709c903acfc9730564e1bb1648df15c1d6c", + "table.color.header.harsh.border-default": "1c718bc35afc40d9772c7ec7b2ad805e35c0b523", + "table.color.header.harsh.label-default": "d5806cc55e3bd7066985ba97e8a21229f8eb7921", + "table.color.header.harsh.label-hover": "d0168415e34266c945dd9b287a9080f03a3b152f", + "table.color.row.bg-default": "149ee0b272d956c7b1761eea8c6c1c461de60609", + "table.color.row.bg-alt2": "7eaf175c359eefd1f885ceed854207c6da1e0fb0", + "table.color.row.bg-alt3": "7efe4f4d39c0ca29fb4e2decc4df41602d827d68", + "table.color.row.border-default": "952e1585502d1c722ac02c92caddb76218a33be1", + "table.color.row.label-default": "9128246a4096ea7f3b9a19445f214222269e80e0", + "table.color.row.label-hover": "f91d62635fca55f4bb903c0c31b1ba407add9f2f", + "table.color.footer.bg-default": "1bc4224897894a2f47ddec3e2dcf92cd1a58a99e", + "table.color.footer.border-default": "9a1f5fc47e58f7b97cb1a562ae73f9c6d3ef8c79", + "table.color.footer.label-default": "7bb1734b6229e3c5a495862974a2ba0b9dcdb92c", + "table.radius.container": "0bfdd27dfe937826a557d23dada8a95a2dd3e8b8", + "table.borderwidth.thin": "fdaddf961eca81ce68139805b659fd121ef51a06", + "table.borderwidth.thick": "d6785095e0eea2049dc123958e1a794f5723db52", + "table.space.none": "6cc04478b8d835707a536a0a0d41cce9f8c0a03d", + "table.space.row.x.XS": "df54cf5ed34c8c95f3221d43ba054e6755022260", + "table.space.row.x.S": "00b382186f9a76ffac948738694f770e4185a0ab", + "table.space.row.x.M": "16d3a85562f70767535cc04dc59011a8e8f97e04", + "table.space.row.x.L": "3d5b5c3612012a76d555ff6d2c682fcd18e8911e", + "table.space.row.x.XL": "efe86ba5e9fc98918f18adbea60875660a911249", + "table.space.row.xg.XS": "02bb04a327ed90847138a6013ccdc83af888fa68", + "table.space.row.xg.S": "5672b068c09b4b7e0f5187333a95885f25830482", + "table.space.row.xg.M": "46e957e4f8951a26c57ab29aefeef1a72065c484", + "table.space.row.xg.L": "4fb2cc7e6ab8bfc773f695f590a0b9c90acb493e", + "table.space.row.xg.XL": "0dff80f899613661c2780eeb85d0f2154d544f1b", + "table.space.row.y.M": "a7b9d8d760d4ca785bd3fbb7e62e76f9c25a8281", + "table.space.row.yg.M": "a522b099f0210833890e59e5d0428af4f487fc66", + "table.space.rowchild.x.XS": "cff0d2b0fcf6d369f4f79c37c082dd8dc84bd810", + "table.space.rowchild.x.S": "1a3f71faeb61e919167d02452bb64c16b6abfcbd", + "table.space.rowchild.x.M": "096ad054c1d8c47d293321695a4bc03df65c7226", + "table.space.rowchild.x.L": "36edf4b358f765370e39df704244a7fd9ebf3c34", + "table.space.rowchild.x.XL": "02b44f02914572f126b10bba5f51225368f5b562", + "table.size.row.standard.XS": "1acacaa899d8849d924fe80c5b3b1e3b1a5608f1", + "table.size.row.standard.S": "e155f826118a9fbcf20abf22145bcf63f31042c8", + "table.size.row.standard.M": "5dfff3b5ae64ca98e4928aa50f4093884508df02", + "table.size.row.standard.L": "b960c0a3805ba4556d73a190155266f11234e72a", + "table.size.row.standard.XL": "acf25442f3693beae099a3af44402a039b08577e", + "table.size.row.doubleheight.XS": "c1d03013882d1f871f85d2b56f0b4aa7a364227d", + "table.size.row.doubleheight.S": "f09a6f2b056c91fc3efad18cec045c7d525e9752", + "table.size.row.doubleheight.M": "e6bf7a6b90d3bd843da049c06eccdfb6f68447d6", + "table.size.row.doubleheight.L": "5ebd337150cbd5bcbf8da9b6cd54bc2a0f30968e", + "table.size.row.doubleheight.XL": "ba6fd327183431cf35205c62348d082635dc8b0f", + "table.size.icon.M": "684d2c9437867a9c13d04fe77add732e0055ee8f" + }, + "group": "Context" + }, + { + "id": "61a2f7f63942025b4d6d92fe8ee80fc6d42fbcc2", + "name": "Frozen product", + "$figmaStyleReferences": { + "logo.color.inverse.sage.grayscale": "S:8f94fb918910f0366b11e4ef6d630d6a6881c6a6,", + "logo.color.standard.sage.standard": "S:70989b7dc06422248e8aace4c4a6413ac9ed80c9,", + "button.color.inverse.typical.tertiary-copy.bg-active": "S:e85f910e91d2ce31ab28603fe0fa4369bb29c344,", + "button.color.inverse.typical.tertiary-copy.bg-activeDisabled": "S:a6c84fa6faaf30fcfd31f438f4ba58687b06a012,", + "button.color.inverse.typical.tertiary-copy.bg-enabled": "S:bee820c0e9a4a925eb7a3ecf6995fe272b893cba,", + "button.color.inverse.typical.tertiary-copy.bg-hover": "S:015ada50651515c30fe1cea57aec51ecd4f38a0b,", + "button.color.inverse.typical.tertiary-copy.border-active": "S:9aeedde5a05a30751e1715b8b5a4f1811173ab62,", + "button.color.inverse.typical.tertiary-copy.border-disabled": "S:8fafd3e953574f8a0685fd2d0c1658d5a634aebf,", + "button.color.inverse.typical.tertiary-copy.border-enabled": "S:5b60cd675c6b0a3054f488b82524b5fb83c3a03c,", + "button.color.inverse.typical.tertiary-copy.border-hover": "S:e64cd4ae94e3e028227e6cffe7fed80d75a7dab7,", + "button.color.inverse.typical.tertiary-copy.label-active": "S:a084696367258975acf8bc7d6f4d4e8f1600f239,", + "button.color.inverse.typical.tertiary-copy.label-disabled": "S:47106ea52167f46a2d42780296de97f8a5b4d1a7,", + "button.color.inverse.typical.tertiary-copy.label-enabled": "S:4c030c3aa245a145a03eb7ed0ff44016a4256297,", + "button.color.inverse.typical.tertiary-copy.label-hover": "S:6f930849c1ae2f18c9a03d118b465f2490f337de,", + "button.color.standard.typical.tertiarys.bg-active": "S:5bd1ee01efcfc1149ad6f04a92c688af12fd8079,", + "button.color.standard.typical.tertiarys.bg-activeDisabled": "S:79f27103fee3684b77a33539307ae445d7aa8f4c,", + "button.color.standard.typical.tertiarys.bg-enabled": "S:bca80918b5130ca9c5d986fdbaf821fdb6614b04,", + "button.color.standard.typical.tertiarys.bg-hover": "S:f98a291a177b44db3bfae796bbe42c54d86deef1,", + "button.color.standard.typical.tertiarys.border-active": "S:a0edec5d2f73000ffaf0d2cc693ec3ff04d39ce8,", + "button.color.standard.typical.tertiarys.border-disabled": "S:8ba114625675a8c26a019101c211e86440ff1771,", + "button.color.standard.typical.tertiarys.border-enabled": "S:6f7a7b549622089f9cca17cb776c6540058fade4,", + "button.color.standard.typical.tertiarys.border-hover": "S:ed0949cf3affa33b56751bd512103036d4c14887,", + "button.color.standard.typical.tertiarys.label-active": "S:721d60d4e2b395bf4b82cda5cf94288af293b68e,", + "button.color.standard.typical.tertiarys.label-disabled": "S:a9ae5f2baec10a6fb7a7ef49bedcbd22d30420ed,", + "button.color.standard.typical.tertiarys.label-enabled": "S:c5e1cc72be90ed66f58177a8c900068a4f021cfd,", + "button.color.standard.typical.tertiarys.label-hover": "S:87cbd0dbd37be5e47a083961d34020354374dcae,", + "global.boxshadow.cleanedge.near": "S:d78dd45773985ccf6d25a1d48b79f1993891b324,", + "global.boxshadow.container.near": "S:04e15a4723c87c95ebc3c15c052ba713a95b9cb4,", + "global.boxshadow.container.far": "S:5f828a8333898d1c9d3466c55048ce9888c00682,", + "global.boxshadow.container.distant": "S:49e808037cd4b5c6f753c51dab6f0034f0824264,", + "global.boxshadow.container.sticky-footer": "S:4f6fbee6d314a393709d487459b359856ec7b427,", + "global.boxshadow.container.solid-border": "S:28514edef93be62606b192f40109e901876e508a,", + "global.boxshadow.interactive.enabled": "S:47e3335d4d6b522777b1eb841c0e3ce7e21690aa,", + "global.boxshadow.interactive.hover": "S:e62e6446ee6cdf01565a2f45a0ce58c27f4047c9,", + "global.boxshadow.interactive.drag": "S:fd1dcaed2768f70945e5fecdd949465040d5fea0,", + "container.boxshadow.card.enabled": "S:38f618b564dbd2c970812ccf83c3b658465d1c00,", + "container.boxshadow.card.hover": "S:52fb78361d6831df2ce2dda8e08bfbea9b8b4fcc,", + "container.boxshadow.card.drag": "S:c603858d2e7a1b841df3a602d6347831827c1af1,", + "container.boxshadow.carousel": "S:f6f41713bee76390af854489dab2a9d17a8fc474,", + "container.boxshadow.colorpicker": "S:76f65dd304328cdc70333aa533b003277be0c400,", + "container.boxshadow.dialog": "S:45e6982a6d78c558a267b005e4be1f99777c18d2,", + "container.boxshadow.filepreview": "S:431e3e95f4f59f464921fe3619276e12c4f15db5,", + "container.boxshadow.sidebar": "S:394ef4c6e4ae7e93b40e01d3c7553afecdca6c51,", + "container.boxshadow.stickyfooter": "S:1ba4f8bea5f6f18155dbe648535e4ef13a9667f1,", + "container.boxshadow.nudge": "S:93bfbea78a7a435badb60c7f901cc410b278c8b5,", + "form.boxshadow.dropdown": "S:7eb60a28c20c432dce99c9f2205717d490faa546,", + "link.boxshadow.skiplink": "S:53bb65daf4b65b6e4ef24946fb54d1ca9a6f7d50,", + "nav.boxshadow.menu": "S:7914b7880173284cffe02b97356f4445e773da55,", + "popover.boxshadow.container": "S:5944815c5793d1981214d50d301771474f233c26,", + "table.boxshadow.parentrow": "S:7f36a515d11be34f4a365dbf6756dca91ce2a603," + }, + "selectedTokenSets": { + "global/borderwidth": "enabled", + "global/shadow": "enabled", + "global/radius": "enabled", + "global/size": "enabled", + "global/space": "enabled", + "context/frozenproduct": "enabled", + "global/typography": "enabled", + "components/badge": "enabled", + "components/button": "enabled", + "components/container": "enabled", + "components/focus": "enabled", + "components/form": "enabled", + "components/link": "enabled", + "components/logo": "enabled", + "components/nav": "enabled", + "components/page": "enabled", + "components/popover": "enabled", + "components/progress": "enabled", + "components/profile": "enabled", + "components/tab": "enabled", + "components/table": "enabled", + "screensize/large": "enabled", + "primitives": "source", + "components/status": "enabled" + }, + "$figmaVariableReferences": { + "global.space.macroScale": "fbe65c255d4034d004dc832ca3070a12ce16722d", + "button.color.typical.toggle.label-active": "fb2b9da58241b710974fbcd0eea0550b4de12a0a", + "button.color.typical.tertiary.bg-enabled": "3dcb0d649cc7ee11ea3c88f011bcf726c897d449", + "button.color.video.primary.bg-enabled": "6f59ec78791cd546cd21a07051cb1156a2f131d5", + "button.color.video.primary.bg-hover": "92f977de52635d4af44834e4acf29c0d722b698d", + "button.color.video.primary.label-enabled": "e05763f4fb7fcad3939185e52c8fd69858ce7f34", + "button.color.video.primary.label-hover": "e8c1c7b438d0eb29a6a6bdfd54484281e0ffc166", + "button.borderwidth.tertiary": "91779584c898ee041c6a8dcd56270c93040b253f", + "button.space.tertiary.x.S": "5c16e064a29ca6eb4d720f4e228c0b7c82ec2585", + "button.space.tertiary.x.M": "9309b89573849935c91932d05db45dc9fc9934dc", + "button.space.tertiary.x.L": "886bae4c7441acebc39a030862bf84100010c35c", + "button.space.tertiary.icononly.x.S": "59fc4a4546d74708d665250bf7f8535ed5971fde", + "button.space.tertiary.icononly.x.M": "42d241456c4d6fb2dee9ee69a1e4f43e88cd66bc", + "button.space.tertiary.icononly.x.L": "55884e5ad5f702ac9957f4e37e2af4f7280f8f81", + "button.radius.tertiary.S": "649391cbf3256f38979214944de4292bd4900e1f", + "button.radius.tertiary.M": "deadd1076425b9fd520dbdddff289a636c35f839", + "button.radius.tertiary.L": "3cad80bb7d426572946410fcbc4be8f54c139883", + "form.color.switch.fg-active": "d4473ac50dea576c66c0c9620e915fc7f7bf5b18", + "form.color.switch.bg-active": "ce1251804c65070fdaab00ed6621d61635ba51fc", + "tab.color.border-active": "a05b8f2c29911df079aaeb47c2ed00602fb849ed", + "progress.color.fg-default": "4533513cc279fa48e296b2a5bc8b54b527508322", + "container.radius.card.moderate": "a85b4de7a53d1662eae6ecca1c08563e64e10a15", + "container.radius.card.curved": "2fb18e941f9fb54a7c2889f8b8ff41e4ae0ec3b8", + "container.radius.card.sweeping": "70ef3947b1bb16b305c286e0e7ee6e46f37e588c", + "container.radius.tile.moderate": "d0e6f493b132ee0f88d4934cecd273dd79f5c2b2", + "container.radius.tile.curved": "7db88544f369ed9a26549f25c1a65d13ad482fae", + "container.radius.tile.sweeping": "ef68353d8cedb18b027fcd7930d9f3edc0f80c13", + "container.radius.tileselect.moderate": "06d936df368eaaa8b79edc381feeb26c6500acf0", + "container.radius.tileselect.curved": "20e04cd4e2ecdb7ade63e3d664b7e26be07823a1", + "container.radius.tileselect.sweeping": "916146a71951437f4cd8c19cb23fe638bed5ab68", + "global.fontSize.adaptive.step-2": "44314edab6d687c6f1c2e69647563a7e56a2fcf4", + "global.fontSize.adaptive.step-1": "ca2cdba8c8e2dc9a016c91ffc96738b89c582c62", + "global.fontSize.adaptive.step0": "a30a868373f347e37b4df2d6a6ae7998d441e1f1", + "global.fontSize.adaptive.step1": "00ef09834b2e7ef9c0c4d030c4d24d92fe8ad5f2", + "global.fontSize.adaptive.step2": "1d778e97a6072f1ba14a5d9c4ed5ae9884e2f6f4", + "global.fontSize.adaptive.step3": "a0e0c9e912cb36ec0a6d255fed75f7608abc5dd2", + "global.fontSize.adaptive.step4": "099df81b8a94eea8a3faddf6c6382586b98f4da5", + "global.fontSize.adaptive.step5": "f5caab8d2233bfdf62d601912d0525a026598127", + "global.fontSize.adaptive.step6": "15f234e1dd369afd59da5946c8e38d49f84c8b99", + "global.fontSize.adaptive.step7": "fe9d1662d81e3433ea60ea29e47bedcff6713d0d", + "global.fontSize.adaptive.step8": "ba568db17d2eaccf52fa6d763162d26fbe497b82", + "global.fontSize.adaptive.step9": "ef9f822c7c93c6bf692365b8a3f7c5c6051cad5d", + "global.fontSize.adaptive.step10": "7c1ccbb51f5bb73afc2c46f4ae18dd4663780742", + "global.size.breakpoint-min-width": "11fea4981ba36f253b7418d43fe449f5e804fc95", + "page.space.x.L": "61fe779fead2071bbfe86b64cf90c6cc8f13fee8", + "page.space.y.L": "ef8c2ba942d575097893e5a7b5938b5197e41243", + "global.borderwidth.scale": "6dac19533b6c095d2c97938020e7a45074cacacd", + "global.borderwidth.none": "43dbedf2a345872395a95d72965fbd8893624b40", + "global.borderwidth.XS": "b334b4b764fd28d2f3b57748f599cca99225d8e1", + "global.borderwidth.S": "dc9acc9cafc6f1f87c577ebc760b18e9f3f4d386", + "global.borderwidth.M": "659af74d1bb76b04607cc6f23ee446f65e64c0df", + "global.borderwidth.L": "48d631a3f574a5c9fc2ed14f6d78507963d0232c", + "global.borderwidth.XL": "cd4a33ccd30f5afda2a741606003e54392b8875c", + "global.radius.scale": "25779c0eb685464a505ccbca5e400285f3d54292", + "global.radius.none": "b9b0f28767800b7ea0b1b2148e460a589d568cf7", + "global.radius.circle": "063e41e495052e3b9cf91b390534ef49308d9cdf", + "global.radius.container.XXS": "e77774185cc4fab82d49a2b2f4d178fd7fc236d4", + "global.radius.container.XS": "763f699026c982de5143eb0d8fa955e1ab1334d6", + "global.radius.container.S": "b2443ec9b331090848c3de13fa1014335933633f", + "global.radius.container.SM": "288ddef9618d210349eb35cb830d77892ee923b3", + "global.radius.container.M": "7517affbc26c2f4f6c8e2458f7fff85e81aeb4c8", + "global.radius.container.L": "ab4c59c56c2f86db0ffbaf976f5d77f5da1883f0", + "global.radius.container.XL": "6dd677dc9ee68ab695ae573f42d07ac3aefee43d", + "global.radius.container.XXL": "233b05708e7dba549c493e33e0785244629f5f87", + "global.radius.container.XXXL": "1afaaf6df1728b16238f04c78fb5ba29202e6d46", + "global.radius.container.XXXXL": "a27988b005b603ceeb958bd96558145451f17aaf", + "global.radius.interactive.XS": "a5de21346396ccb19048941b7323fcb4d8ff1873", + "global.radius.interactive.XXS": "d8f4c931cfc3b7aa6534bf90346555fd7de8a10c", + "global.radius.interactive.S": "a546f7f00cb0a916e0b121663617a4c00355ecf2", + "global.radius.interactive.M": "e1070220ae5de5bfb3cb5e17022a430cbbfb5796", + "global.radius.interactive.L": "3b91adb09b8d945713a5fe026dd8a06446d9ef92", + "global.radius.interactive.XL": "3d7adc0e8cd4aedc86beb6cc76a303c951f02a3c", + "global.radius.interactive.XXL": "e8f8f2beb1260974c6d19b7d66dd785441b561ac", + "global.size.scale": "429f82853556b8b99d9d951fcde1d70de832f4a8", + "global.size.none": "788ed4fbcbe0d86bfe5b68fce34af566f261a5b7", + "global.size.container.M": "1f767617f85d97964506322bfa029084ba1b0b6d", + "global.size.container.L": "4d3d90d8b7cb9297526dda4b3aa1c04d4430106a", + "global.size.icon.S": "92fab08b49a7cc8eda3ccf37d96eae56f5f85183", + "global.size.icon.M": "8d6f69b0bce7bd6248a6f3ef1b898c0365d825e2", + "global.size.icon.L": "64e0984a734b9f342bacbfdd484cb561f6b519d2", + "global.size.icon.XL": "74ce4621432a5889f6e8097d45ad7a53ef680bc5", + "global.size.flex.XXS": "ba57c27ecf4ea90b8628302dc073a68ad99094dc", + "global.size.flex.XS": "9534663e81ea049e3d956c7714da841d4f8b6b11", + "global.size.flex.S": "7a942a3efadee9c0b578a0de9473ac04cdda1052", + "global.size.flex.M": "f6f1c27e6981c5f476acb2cede12d2f62a9afcc5", + "global.size.flex.L": "a8b3bfc84944cd8d7591d3286d8aa59114580c67", + "global.size.flex.XL": "2924690caf19c2ec628209e9cc89c7951020fa45", + "global.size.flex.XXL": "987572b3147b48554c11f2a6659d1a3d765b85ec", + "global.size.flex.XXXL": "03e1ad04caa5dda51ab34bad5c240ef9d5e2234b", + "global.size.flex.XXXXL": "3fff3daa5084309007fc64940ab30c5822962c16", + "global.size.macro.XXS": "3be3cb4c30c1f1697efe418954e0550c532cffac", + "global.size.macro.XS": "61761875b1984b99b1491d07d8023c254a64d22e", + "global.size.macro.S": "c9b49ed9f1b36288f027e6e6ab2676756ee7ac2a", + "global.size.macro.M": "cdfa9a15fac401deb393c07412c95cc4c2e9bbf3", + "global.size.macro.L": "7ead7e17739b897da5df8da3af0bde489bf2bd8f", + "global.size.macro.XL": "5f3951055bc1678971a3a4b1e98e08c428e35a1a", + "global.size.macro.XXL": "02992331be54fcd8f82d03b2c040c79b9c741cad", + "global.size.macro.XXXL": "9c01b469899ae2ca8d93ce6a60d6a388db1db9dd", + "global.size.macro.XXXXL": "1913e54d24adc465a37e252c8c1b8c989440fe97", + "global.size.micro.XXS": "d811dbc5fe238b9fe0d42ff02a892bafdde4b8bf", + "global.size.micro.XS": "b82ad5c50c4c8457b630d753bc6c4e72a4571629", + "global.size.micro.S": "d3ebfb028c5c71dc0c4e7dc2c291f4f71d68b27b", + "global.size.micro.M": "232d8c52997a8cf7c3bac23528b5a3d67929b0e8", + "global.size.micro.L": "4a175f79d95e038586891463b841c11cb9bc2db5", + "global.size.micro.XL": "24cb8a1d6b5845b347cec6e34b4b615aa783fc1d", + "global.size.micro.XXL": "2d1d82ac80a079ee3e8e346fce728e4ce3d0fc40", + "global.space.none": "7814806b844e49b11bc33c7eb77b3ea290ffd907", + "global.space.microScale": "21c974fd2b6732c069badf4911fa25d141d821f5", + "global.space.micro.XXS": "348b4bfdb0b33644bd7511d644fb49055254d4c3", + "global.space.micro.XS": "35f52473dd4b24fa53de48194543e62572aa82c3", + "global.space.micro.S": "5ac1a13bf46313fc46ffd6202fb1ef89b19a5c4c", + "global.space.micro.M": "42d8873786ff1e126f777dc5d9789e413a857ab1", + "global.space.micro.L": "482c2464cb12f38b75380247b938b192ddfa52cb", + "global.space.micro.XL": "6380be8a20655110c7033daad052c3b9276d9e78", + "global.space.micro.XXL": "d464676d7cc1d54cd3ab14dfc5deb037cf449aef", + "global.space.macro.XXXS": "be0af3b32d7138b608eeeb3945eeadba7df28f30", + "global.space.macro.XXS": "8dd747ab7b4188bc8c4d82257d81c92ad65bbaf0", + "global.space.macro.XS": "6ccbd3ba9220a0895722ebe83f2eb72d6da50afa", + "global.space.macro.S": "460f55b5bed55722b260d7c5b277a893c847cf46", + "global.space.macro.M": "c9f2e0e150ad79870a22a2ec444dced8024dba5c", + "global.space.macro.ML": "c3c318525df79ac16a8ab9ae91b98f47b0e63836", + "global.space.macro.L": "6faddc1bbf30654b9bdcbafbd7a7a881781b782f", + "global.space.macro.XL": "3d412117562afd0b1cba85f3155e95c3571506c7", + "global.space.macro.XXL": "648457b1a03a31a2867e74d641897bc403581e24", + "global.fontFamilies.sage-icons": "e5b555cde4f0a7e88c38140a232780b2424185c7", + "global.fontFamilies.sage-headline": "e7226ec79e2e57ce0559b2bdae66b517ec77e1d3", + "global.fontFamilies.sage-ui": "30919b14ac88218863209fb47395593ff6629af3", + "global.fontFamilies.sage-text": "ec8c3386dd01d0438a08401ce7e8a9eab0630519", + "global.fontFamilies.other": "52d376e77553b95b6c69fdd78b91591469dd74fd", + "badge.color.notification.border-default": "a112681742f2249d163dbb838dc1e1609be39451", + "badge.color.notification.bg-default": "ad3b99b6645d78df0dd6958497783ead09a7e142", + "badge.color.notification.label-default": "9d8e60a759fca7de5b90b637aed4a5d68c4cfece", + "badge.size.micro.dot": "812a11d57aa383a35822500ca7657faaaeec29d3", + "badge.size.micro.numbered.min": "817e0a3632673afb20a2c9a80cc8f24981891073", + "badge.size.micro.numbered.max": "0cebf54f1d5344f8fdd77480d5327d73e9e90242", + "badge.size.standard.min": "8e3d70ec2d2f8550e3d5a2c8e356e1c038c1f2ff", + "badge.size.standard.max": "8d965fa8f86b65cc8a520022e3086c7552e05b45", + "badge.radius.badge": "042281b3fd62ead45e350e419c118ea99f1d16ea", + "badge.space.x.S": "c763e9bbcb3e7870a98acb898740bfb17f0a13fb", + "badge.space.x.M": "fa5c796dcba7fe25521398f4ec7239b7797f4159", + "badge.space.y.S": "fb1b5c2a1e237a284d8ca90d327ef345ab9854d4", + "badge.space.y.M": "2cddfb41a36ed866f1364799f1b6ea6416e807e4", + "badge.borderwidth.badge": "57799afadb737df720ebc873fe10f194254a8d4b", + "button.size.split": "a6fa6bccc775b666707c42e54301f7386c5e7c81", + "button.size.S": "376f27967d6659cffc7efa63715cc923214a8ec5", + "button.size.M": "7c3bdd4e536e6c1705cd824c4a32a90d841619b5", + "button.size.L": "7b1b9e2f2e2386ab069afaf86fa44de9e95f99a3", + "button.size.icon.M": "440ebdf983bfd9cf97471c0dfc45a15801538609", + "button.size.video.S": "da17d4255ccc4c1a290c45fdea28828d6ac7748f", + "button.size.video.M": "5f64da94c77e517d71c476e889f044584e3e6539", + "button.size.video.L": "9bc170e119e26918f16065685677bebb7bf8d657", + "button.space.none": "47782ce803e335647d0c0879e651830e83c2bada", + "button.space.bar.iconbutton.x.inner.M": "3a162b43c6fbed2b2101e9056aad8efb63a1a127", + "button.space.bar.iconbutton.x.inner.L": "d297d9d0580c106ee7f7ff9896a313871931c189", + "button.space.bar.iconbutton.x.outer.M": "a4518d47b09a75fbb9da3f3f3a8428b93495284a", + "button.space.bar.iconbutton.x.outer.L": "fc4ed5b9d7821cf15a72ff36ab350a6882a1bf12", + "button.space.FAB.child.x.M": "c1c4f0b45067cfe655531c70c4e9fd8158fd76a0", + "button.space.FAB.child.x.L": "c69dab68de9708add9dd7910ab1903928eb7d3b0", + "button.space.FAB.parent.x.M": "eaa172c41904bca4883e972caf68d9f3a9eff0f3", + "button.space.FAB.parent.xg.M": "eaebfd970ef95209888408eddcf8f269ed2b9f21", + "button.space.FAB.parent.y.M": "827599bbc7c44a673a6722ecd2cdff4c36260eea", + "button.space.layout.x.XS": "f401fa0af41c7d7caf12bc220f25b9812a91a030", + "button.space.layout.x.S": "3aefe2cd5aef81e2e26914ce8543081e04c51571", + "button.space.layout.x.M": "6d3230ca1c6bdfc71d39572f02cbf1912065c436", + "button.space.layout.x.L": "d2045174b3b6490937e36ac9927f104ff6bf68fa", + "button.space.layout.y.XS": "151ae59c9532fd7243c325b0b1e845b3ccdb953a", + "button.space.layout.y.S": "f92de0f043fb6ac4e5207586e15c4f5f723c14a9", + "button.space.layout.y.M": "3c24b189b35b556e834998bb3be1cb591f24a19b", + "button.space.layout.y.L": "90c6efe4ef5b42f19e14669f6ad014a09382470a", + "button.space.layout.xg.S": "f3977436e389c06d9ed54e9c28190b40e948c87e", + "button.space.layout.xg.M": "023db60f9af8a47df3fd447993426296825bdeaf", + "button.space.layout.xg.L": "bd6fa7fd98289d10c0c432c1e772463f184b54ec", + "button.space.layout.yg.S": "425ef10052560f0fa0429989953f4f7b764be0dd", + "button.space.layout.yg.M": "2d4e296af875ae9c487894ba753eb45d8d38ef7a", + "button.space.layout.yg.L": "f48c1905d5bfa67bf29d1849ddd8bf576607265b", + "button.space.primary.x.S": "2f95244cacdd39ed1a4708d4d7be41331c84ce90", + "button.space.primary.x.M": "ffece589187c548749e04f810594e187e3cb3e0a", + "button.space.primary.x.L": "941aee2d15bfd49cf5d067bd84d4965d1d627d27", + "button.space.primary.xg.S": "e0641d2fc0db750fce69ca77ecc84b3a3e2dedf8", + "button.space.primary.xg.M": "dbe379620d53de9b2e2f853a8b8d5e9b2e9dc901", + "button.space.primary.xg.L": "e02252971250b58c737dea81e23ad633fef8b15e", + "button.space.primary.y.S": "bd9560f9aa52d6c08de96fd3d0c5d8adb516395f", + "button.space.primary.y.M": "432280aaf7f16677426a2c2fff32bb453f38dfba", + "button.space.primary.y.L": "a0dda66b24d8a4d0709e20695c719d949018dfad", + "button.space.primary.icononly.x.S": "986ec2fcf82e2be81aef790caa0f171a12cc3bc2", + "button.space.primary.icononly.x.M": "e1077454fc003d134e559b8bf9a40f3adbf3b724", + "button.space.primary.icononly.x.L": "479b3cf789dd4a5aa9562d46c13ea47651c55352", + "button.space.secondary.x.S": "725160a5dbb41c111fe8461bb136680c32c0e90d", + "button.space.secondary.x.M": "5457899fe69c38c51d2efdf7a5af24a466dd8330", + "button.space.secondary.x.L": "265e2c84e720c37ccd5249a1e3c8bfb7e7ad1f54", + "button.space.secondary.xg.S": "2c24cc5b5eb3d101edc0d3d0f33da083e103abd8", + "button.space.secondary.xg.M": "73768a636c48e2f8b607390d2002e57448174ddc", + "button.space.secondary.xg.L": "1d474229e4e0a0e4a145b9f77462bd09b2d8b8ad", + "button.space.secondary.y.S": "223aa16348bc026ae0ac523d075b6a0f76305ca0", + "button.space.secondary.y.M": "d3282cc104082a1c89f4be8bfc54c0753ec5917c", + "button.space.secondary.y.L": "d3ae5fd316ed6d1f3d2c533bb327644af281ba51", + "button.space.secondary.icononly.x.S": "fcc51a5f1b67183bc7c9dccb497e7676cdcf76e0", + "button.space.secondary.icononly.x.M": "1c7ed5b517f16af62997d5df6aa5a0a2a3d2f40c", + "button.space.secondary.icononly.x.L": "0e2a6d40d7081ffbc12185c6568cf241de930cf1", + "button.space.subtle.x.S": "a0e2b5d28e194016b251c46e41084a5c783bb30e", + "button.space.subtle.x.M": "348a1773b8fc46197a30f4f3971528815d886170", + "button.space.subtle.x.L": "fc19c19790f10e9afa61ed1015efab450cc9310e", + "button.space.subtle.xg.S": "6823ca5b63c0cf6855a02b5f39388e688ef29079", + "button.space.subtle.xg.M": "c08b7b07c6b0ecea0f27a8fe5b5dcf1ff633b12c", + "button.space.subtle.xg.L": "5cd492904ee1f1a9a60959266b871a53fc565a61", + "button.space.subtle.y.S": "5a47de873c9cfcccdf99231c8b3a4de4aeddcece", + "button.space.subtle.y.M": "2089ee02b166b231a7c445e2c65da1e607ce36eb", + "button.space.subtle.y.L": "77b528df5059f29f06e19ad88afadb7a836bd042", + "button.space.tertiary.xg.S": "eeadffd3f2df9fe2be969041c3ddac49aced088a", + "button.space.tertiary.xg.M": "affba16f11e0c696819219aa32406580f04eabe1", + "button.space.tertiary.xg.L": "6965a5a93c84811204a91698b1b3e76a4ee46a51", + "button.space.tertiary.y.S": "37a42b6aaa3f46575dc0ba7ffab483c7212afbd4", + "button.space.tertiary.y.M": "e9cd76cfe572b97c967bc8f4aaf6357a8a79dfc7", + "button.space.tertiary.y.L": "ed5ae27ad698b45e1794004604b8299e85df7a96", + "button.space.toggle.button.x.M": "54f56ab25b7809db7d68873c01036a28ddabd925", + "button.space.toggle.button.x.L": "51a53c6c1cef0f35bbe06d5ae68a18df0c086d25", + "button.space.toggle.button.xg.M": "d082030b4a12a6c0a78d9caa0f0735cfb22786bd", + "button.space.toggle.button.xg.L": "b7554fa5ecf630c25359279f3e439e818ce80db4", + "button.space.toggle.button.y.M": "ece364062f42297ccf58152cc30f69a917b4a6fb", + "button.space.toggle.button.y.L": "bf08626110c187fa054c2cccb9409f8c2f5c71eb", + "button.space.toggle.container.x.M": "08bded32dea110523288ac576d3226298aca1780", + "button.space.toggle.container.x.L": "8b9dd58db99b355eefab4ff1cf78661e94241780", + "button.space.toggle.container.xg.M": "a1aa12239d6b70930ebeb03075942b7c78e3ead2", + "button.space.toggle.container.xg.L": "b4e82977dcc340c1bf6d3b4ce6604e4408008de9", + "button.space.toggle.container.y.M": "5d5f52880f2d123635c4e8992216b7e0ccc11d9e", + "button.space.toggle.container.y.L": "dc575dda72165a59c7c2152af821b1fd42070afc", + "button.space.video.x.S": "182b84c35e1f5bf05a77a97ae53bfaa73934fd07", + "button.space.video.x.M": "ab4e03c77b9bd2f56c31b646753fe85f5ab34350", + "button.space.video.x.L": "72f81aa0885b9a9850e2f069fb0f3dccee5e7b4b", + "button.color.none": "1343f8c4a6c1161424037a25e2e9d8e1ef61a9ad", + "button.color.ai.border-disabled": "c3727b67dd26b21d5a61a7f9c02ade19b3593f44", + "button.color.ai.label-active": "f6a962f5cc70d8e5a06b713848405abdcf9ed90e", + "button.color.ai.label-disabled": "f524fad75a65ac9175dea4ab3106b60ec03a7956", + "button.color.ai.label-enabled": "2ea18c0f07bad38760896d7170912f08f1cec322", + "button.color.ai.label-hover": "afc889b0c09b7f67f15674c68d6da23222fdbf35", + "button.color.destructive.primary.bg-disabled": "2e3e671c7f560ea11e8b16ea6ac83b0d111183d7", + "button.color.destructive.primary.bg-enabled": "7c32ad1bb367b5ffc0cf20b38570a73aa3d7c74b", + "button.color.destructive.primary.bg-hover": "9d9be0a13a971584f9343e9c8c05c2f21c86da70", + "button.color.destructive.primary.label-disabled": "5b83fd1a50a11ad2bd83962d0587659ee6cfe29c", + "button.color.destructive.primary.label-enabled": "9d53ebae4cae39c9cbe06f22f45d4afbf9de68eb", + "button.color.destructive.primary.label-hover": "58679abe68b52f09f2ef64968712cfd153995f8c", + "button.color.destructive.secondary.bg-hover": "1424f9b08e5926cd41d9b068a5bb62931c2f62e3", + "button.color.destructive.secondary.border-disabled": "94df9f985ad8ef519901eced75bcd1e970a83fad", + "button.color.destructive.secondary.border-enabled": "6fd585073fc7d6803eecf9907bd9061a1511882a", + "button.color.destructive.secondary.border-hover": "77ba31ea7574b234062b1e9f90bb2d7c8c2aa06f", + "button.color.destructive.secondary.label-disabled": "36cd91794ddfefc581f2a2fdbd27d59a912b5bee", + "button.color.destructive.secondary.label-enabled": "cd7e3fc76f55344516b871d27e8c4b59328e2f76", + "button.color.destructive.secondary.label-hover": "d098b09f798ef69d6749a41798b94a3079f283ae", + "button.color.typical.primary.bg-active": "d73bba74a7bfcb13765ab2fd9bf5254f1a83a228", + "button.color.typical.primary.bg-default": "aae39b0acbfbc6b205bea13d55b2f28fa78b8f23", + "button.color.typical.primary.bg-disabled": "fc7d3129bbbc5b244420d2ccde404c1e742ca144", + "button.color.typical.primary.bg-enabled": "ecc071f8d0bd78a54c1388731b258c4ca0084520", + "button.color.typical.primary.bg-hover": "cb1aee06e73d3ee619602b44201d3463c961148d", + "button.color.typical.primary.label-active": "1e64b6da8861e4c59d04152a2f8777e277c4c0fe", + "button.color.typical.primary.label-disabled": "73814145185d2401ea3ae1f21721e0d21ac31649", + "button.color.typical.primary.label-enabled": "4cfb7445909549846f53977ba6e8f41d3bc6822e", + "button.color.typical.primary.label-hover": "0b4a82d3df53b362f6d5ea67af2aa355b50ec60c", + "button.color.typical.secondary.bg-active": "469ef15554a2981f40b84e6c2994150305e23891", + "button.color.typical.secondary.bg-hover": "b8590daeedee66cbb5b735906e870175f91f63c3", + "button.color.typical.secondary.border-active": "0972222e0dacc76147b5fa8221aea071e7aa98cf", + "button.color.typical.secondary.border-disabled": "01c350072575aa62a9295cbcfacdf465c01e6350", + "button.color.typical.secondary.border-enabled": "87f162c000f633b14713b48e765d600e94315a3f", + "button.color.typical.secondary.border-hover": "008980bf3db89ad7235c926a1385413b917134ed", + "button.color.typical.secondary.label-active": "2478dea8ee9f689b55a8a1b70ee605fe04d7b902", + "button.color.typical.secondary.label-disabled": "27c86ca327c3e6f4557dfb4ef0349a303d6cfa67", + "button.color.typical.secondary.label-enabled": "1f8682243adb9559d59612d257949a1bed567b9a", + "button.color.typical.secondary.label-hover": "aab193b37bfc5a742fabc59ee3a8e75eeb0b909b", + "button.color.typical.subtle.bg-active": "de027f11704af79dae323a11a65eea1cf93a8dd3", + "button.color.typical.subtle.bg-hover": "45718803a7a6f5f5e3cdfdae372bcf399b2d611b", + "button.color.typical.subtle.label-active": "247fe156d7c62c661287785b902d37884351a18c", + "button.color.typical.subtle.label-disabled": "abf3e02aaab0fdee015db2435d7354caa55f0c34", + "button.color.typical.subtle.label-enabled": "9072355014b5e96431ffd79d180b77363c4ac64a", + "button.color.typical.subtle.label-hover": "92c601518ccc7a750e60ac5a27016ccc8bcf4db5", + "button.color.typical.tertiary.bg-active": "0cdeec1baee884371690b794cf334c1c58798c63", + "button.color.typical.tertiary.bg-activeDisabled": "087fd421d6d09939aa8fb5121793a9b365a6248d", + "button.color.typical.tertiary.bg-hover": "a72c2b52de96848da07176ecd79c1e3982df851d", + "button.color.typical.tertiary.border-active": "343304e18f39b2e5aa679c68f082cc54367ecca0", + "button.color.typical.tertiary.border-disabled": "130f4b8a0bb497d9086be10fff1a0f9c526130cf", + "button.color.typical.tertiary.label-active": "755faa1ea3687787885ab3d6eef6818b6b7fa4cf", + "button.color.typical.tertiary.label-active-copy": "33271ba1542cb0732ccac61203aa422df518bd8e", + "button.color.typical.tertiary.label-disabled": "55ac76cec8eb098dddc9c9c3738904d382c15dfa", + "button.color.typical.tertiary.label-enabled": "af8918e7910c3a8732526c70197a178ae4c119ec", + "button.color.typical.tertiary.label-hover": "beecf025dd3c88b151f351579f9bdecc245c52d4", + "button.color.typical.toggle.bg-activeDisabled": "04c4b9951628c3c4f7dc001b4cee82aabdd1c3b0", + "button.color.typical.toggle.label-activeDisabled": "04cad986dc6312e442d5bcbc854e1ba65609d8de", + "button.color.typical.toggle.bg-active": "cd75b68b31addcb49478dafc72e0ab522dd36ba3", + "button.color.typical.toggle.bg-hover": "b2c265415e6713f05555ba660362d664be4a0c15", + "button.color.typical.toggle.border-enabled": "c56a31e3515daf36d770ea42453d550d3891ccaf", + "button.color.typical.toggle.label-disabled": "5c43829b0932c5e5af69a4430c0e9b1f561981ff", + "button.color.typical.toggle.label-enabled": "26b3dce982e71f456ba2f92c28227a5fede6c1c5", + "button.color.typical.toggle.label-hover": "4a4e47d595a2ab02a4cf2cde632fbafc05ed0a14", + "button.color.video.bg-blur": "5ca05788abdf06ed7e45adcfbadfcc2632382fa1", + "button.color.video.secondary.bg-hover": "b945538aa07596cbe037db6178a97af29066ac4f", + "button.color.video.secondary.border-enabled": "73aec28491cde9caefdc9109fbce49718951064f", + "button.color.video.secondary.border-hover": "91186232df4315b8142e0baf5859a93dea82d59e", + "button.color.video.secondary.label-enabled": "a345c8a809e497242dd8bab9ebdd4852254d246d", + "button.color.video.secondary.label-hover": "c49d9402a37b60510c340322c2072f3a2cadd6af", + "button.radius.none": "071afd09c52a1f7ea603c57ac8522635d7a3dde3", + "button.radius.S": "92af17292bcc0216e4566e354845633f74fcbf8e", + "button.radius.M": "904734c167590ad07a8fdfafb316df7b5ab3581a", + "button.radius.L": "3eb602a4cea6e9ca290e30158fa6504f2f6c7497", + "button.radius.chip": "7f8929bf1ab8df4555c1e2633cf6cff6b4f907a5", + "button.radius.FAB": "880461cef6d498c277c8d412bce74474bffd730b", + "button.radius.primary.S": "b3aae451125c794ecdd67e52da40d8d4d6112444", + "button.radius.primary.M": "8cf4ec9c22aae700ed48357a52deda4666cbe1e5", + "button.radius.primary.L": "32c95a1aa7d1d621f68dfd210ca214441e364610", + "button.radius.secondary.S": "1b088f1f1952d742dbcfd725b649b676a1c378b2", + "button.radius.secondary.M": "84a91c3101afcf357076be2871e956fd7feecccb", + "button.radius.secondary.L": "e0909c6832d8a1102b603569e78df1b1ebfe6495", + "button.radius.subtle.S": "b71f6eeabff5fbab72f69ebf3c29eeca0b55403a", + "button.radius.subtle.M": "3cb6ca7b2b2ff6cbfdff84dba8ef564f8c91adaa", + "button.radius.subtle.L": "7f49d16180a2abff05a3bbe92f079a8af2ba705b", + "button.borderwidth.none": "82a63463ed9f6fe332156aa11eb5ac9f98ed4965", + "button.borderwidth.chip": "94fd1b7fbda35bfa2b8197ce722c51859acad510", + "button.borderwidth.secondary": "b823c5e884cafbacbd75d60389fcd90041b01d9d", + "button.borderwidth.primary": "f68201875534451b1533e62b468376e01c9a13a4", + "button.borderwidth.togglecontainer": "cde8eee001f0916638716f591f920839de8ee1a3", + "button.dimension.video": "98242a320ed257b9025ed412ef4ce48475eadef8", + "container.color.standard.bg-alt": "0a163a71efd022b8f21f9a773b8975958546930d", + "container.color.standard.bg-default": "f5887df9e88801494c6539d448a69b495742e64a", + "container.color.standard.bgFooter-default": "ddd4d588d42c8d7b3527ea56c11662e5609bc358", + "container.color.standard.border-active": "334a84f7c4320c2694a050574e8b09d64476334f", + "container.color.standard.border-alt": "869e9dd30c2c63dacd7953fb560aa8a5f3760cb2", + "container.color.standard.border-default": "0c3e38f22885b4d1257a564e9419fb1c8cadbdf0", + "container.color.standard.dimmer": "4625c31b12d23c19742ebd1bf73493fe2a96090b", + "container.color.standard.icon": "1b4f40b119dc87ba170dd49da865f5bcbe04fe8f", + "container.color.standard.text-alt": "5ddf5dc6cf795c35ee85c83563dcb443766761cc", + "container.color.standard.text-default": "0688de7bc87943a33f29362987e04edd67f5b4a5", + "container.color.scrollbar.bg-default": "d2b90819bd31fa592079d5bc6fe52f4b5276c351", + "container.color.scrollbar.fg-default": "520b815222da25aa6b15e4f47933a8a7580b0b17", + "container.color.interactive.detailedicon.bg": "4b6f8eea2c965ba012603a55a04a04cae6aaf5e0", + "container.color.interactive.bgFooter-activated": "a7c8042badfadbfa5f9494267fcaf815863767aa", + "container.color.interactive.bgFooter-active": "4a989f9ae40ca51aa8b569413fc37c8e063b8302", + "container.color.interactive.border-activated": "f0db1dfc677cf097b555fec2de0f27e3b2c4894f", + "container.color.interactive.bgFooter-default": "b2088ab5fd723ecdd7372e0eb93ab1005e85c6c3", + "container.color.interactive.bg-enabled": "dbc42929e91e9f2bef8ee063ddebc6ed48ed2cfe", + "container.color.interactive.bg-disabled": "2ada241c5c6e4661de41ba725beddea5545202e8", + "container.color.interactive.bg-hover": "e6c4aab4bee58a628dc5f54a097cf79c584d049e", + "container.color.interactive.border-active": "7782b289774c6fbf975899eeae90be80282295be", + "container.color.interactive.border-alt": "77fcd09826f5c267bb3a86b2234f482198bb0ea2", + "container.color.interactive.borderalt-hover": "ad0eaec72bc05988dc4841925c21e6d0d8dab291", + "container.color.interactive.border-inactive": "5e374caa9e35ec0c36978d19b32b248ccbddb3d1", + "container.color.interactive.border-enabled": "1c23da485570906f3e9a3d4d88c6e56ec41be60a", + "container.color.interactive.icon-active": "87191fa386378f8f5eff497eacfc8b0066cf48be", + "container.color.interactive.icon-enabled": "fb91abf053b3e0cd9e910b8148b6103e390df2cd", + "container.color.interactive.iconAlt-enabled": "7a7278a3900a1f11a78aee66d5a0ada4551b4cd3", + "container.color.interactive.icon-hover": "03d893767bad772c8ca79ea60637b342a7ae6b4f", + "container.color.interactive.labelFooter-active": "58a9d563c623f87be31af8f81a3420ab82e1289d", + "container.color.interactive.labelFooter-activated": "213680506c9d8e5c8557d3fef1e5a5ba08354dc6", + "container.color.interactive.text-active": "5d8153fe07c54fe7422c089014933b0f479bc42d", + "container.color.interactive.text-disabled": "9eb7b5495a81ed583ab62a5c864524101109546f", + "container.color.interactive.text-enabled": "c164b95acb32dfcc5210bb5894504e11d5625509", + "container.color.interactive.textAlt-enabled": "aea2de8ee64006b9c5b11b8e0b596c85e354b3c4", + "container.color.interactive.text-hover": "758d3f77cc300bdf257f7bf836bd1dfdbffa30b3", + "container.color.blockquote.border": "5db764470e64a30842ccd3f47cfa7dac6883c980", + "container.size.none": "e0b0d89c5589466c31c9a4d8a6a1fa76ec276349", + "container.size.accordionstandard.chevron": "2e8208e7c57c23de8c158b86741968eda8955caa", + "container.size.quotebar.width": "e7cc52194ab4bb8401546c0644beb657ba2a530b", + "container.size.chatbubble.maxwidth": "98c7ff9abff97a012b85941133c72b62ff6d276e", + "container.size.carousel.mediaslide.minheight": "9fa279a3cfc6a2db48ed68f7093768ac6b3bddd5", + "container.size.copilot.emptystate.illustration": "5237382ad9a96dd0e2896827577242e274d66ce4", + "container.size.copilot.emptystate.content.maxwidth": "fbe31fc866e725b02c8975089eb373a516ceeca7", + "container.size.copilot.overlay.maxheight": "87891090ec333e820bb66269f4ebfd2e4cf67272", + "container.size.generic.emptystate.illustration.primary.S": "19cc264f16dae9acc27ffcfea23977d97b4b558a", + "container.size.generic.emptystate.illustration.primary.M": "d533b3c795c62ebb2eaf5f98f3bc494a31486fe9", + "container.size.generic.emptystate.illustration.primary.L": "c3084c6d5076c3e7d7b3604fbd080a8c41bc7d15", + "container.size.generic.emptystate.illustration.secondary": "0ebfbb98b525685fdbf570fa01507f06c6f78731", + "container.size.drawer.closed.M": "3648d151f5c6fae775acf90bfc4303546e9b6a97", + "container.size.footer.M": "807f7546731e52a81a0562de59f28e77d1ab959e", + "container.size.footer.L": "6d9a65595a1f09ae454d47c63c93401e450edc21", + "container.size.icon.S": "6949e299effb69aeacfedc1ec263aebf35c5412f", + "container.size.icon.M": "8cde7d61ed66bbbc427f545c6f128453d4649bf7", + "container.size.icon.L": "6455bf88d0f62405df82472524b8b6977c46d551", + "container.size.linkpreview.thumbnail.S": "28b77cdb90cea1f0f0da312a046a7e74353cff9d", + "container.size.linkpreview.thumbnail.M": "26042158f864e97890bd845c85313951bd995d16", + "container.size.linkpreview.thumbnail.L": "442af4f574cb2b79462a6e66d683ee37f64d94a6", + "container.size.linkpreview.headertext.S": "52568ef20de2caafedb8306caac6ea33360cdcc8", + "container.size.linkpreview.headertext.M": "31bfa35919f34e0e1b62838d43b9dbaefbd2f8e4", + "container.size.linkpreview.headertext.L": "21fbc45227d26baebe061b019311c4cd37f52fe0", + "container.size.linkpreview.descriptiontext.S": "57513ad1ec8efa434a490b28889e6bbe01aee699", + "container.size.linkpreview.descriptiontext.M": "91714ea689158ad95ece8ed2d3191ee239684a5c", + "container.size.linkpreview.descriptiontext.L": "0ca86f469b6694279b8f17edbf0bb8d67145bc2a", + "container.size.responsive.XXS": "99fd8bece9962097378214b53b22b741bacd64bb", + "container.size.responsive.XS": "3fe4977ce8b52e9a886a39ce49354693940a66d8", + "container.size.responsive.S": "fc5ed3406bfd1a5da5a3b1502b0d9fb6411eac08", + "container.size.responsive.M": "46ab0936266a94bdbb1057836314706034048ffa", + "container.size.responsive.L": "9410d597e2769cf5bef1e3758ea26ede9fb53f82", + "container.size.responsive.XL": "e26f6abf64cec9a1d5a11af311a7baee9e9f1c7e", + "container.size.responsive.XXL": "c997b08d022008974721c9ea22d6c1497263c911", + "container.size.responsive.XXXL": "7dde5913c205f48ef3e5b8c7a078d728b415baca", + "container.size.responsive.XXXXL": "3527462bb119bd3258dd1b5da368cf3c2504f0eb", + "container.size.scrollbar.container": "137cb558ccc9872f4ec06e7cb02f9d36a22a7934", + "container.size.sidebar.responsive.min": "8c9f41d13316a008fcc9b5be717a1d97a23183a9", + "container.size.sidebar.responsive.max": "b38354b7320bd8a4cf566ae66465778c8e707ad2", + "container.size.tileselect.footer": "cb4a909e7d9e9aad5b157dbfc7d57f0a229f9054", + "container.size.tileselect.productidentifier.M": "29f30666a4e90dfdc727aecd389db6b06cce0ca5", + "container.size.tileselect.productidentifier.L": "8143520e779fd32f8d12cc687525a75ca0211c2f", + "container.size.tooltipArrow.width": "223a1d580ff1d415725ef2010562e37744180a40", + "container.size.tooltipArrow.height": "4a4285c8c3a395ce01782c47920d4a32d962bdcd", + "container.size.uploadpreview.M": "1b26af045dea6a575c3a7a52d231b179e5586015", + "container.radius.none": "95fc25dfe43fbc9800a24c7d6d4798e60a3de5d1", + "container.radius.carouselslide": "44d695afff47d893d6c16f7bb5e7fb4e3f2d632c", + "container.radius.chatbubble": "23a94e78261019f464c3463fca25a068d3b8bed4", + "container.radius.colorpicker": "7fc2ec3c5e1b284f5087dbb241643e2a6050157a", + "container.radius.blockquote.bar": "20f004b5b872e4f34c372644f49fea202a5f74d8", + "container.radius.contacttile": "c75d2dfce498214c9ccc8d461cb8237dde77d9b1", + "container.radius.dialog": "e3cb52a832e46d849412f2d0c763caa36b34f2c8", + "container.radius.filepreview": "013ca1b598e465f94dbef8083c66d3f72ee07a00", + "container.radius.linkpreview": "206eb7b765404469201bdbec026ad8dcc2963087", + "container.radius.heroimage": "62806bef8f02a0d14b097c48ae56971226e20879", + "container.radius.note": "9ce0e1a85e1157285c62f3b68d37f69a169e5550", + "container.radius.scrollbar": "7b47488cb759ebea0876bf8c2aaf96acf0ffaff3", + "container.radius.texteditor": "acf98b5c424d55ff4e9b569523f064025800fb6c", + "container.radius.nudge": "b0ae7105e74105579874ac62b2ccadeb5ded890b", + "container.space.none": "be329bb1c26e528efba89ebe040b6909323b2e46", + "container.space.accordionsubtle.yg.M": "1c5e4b281710c03ea419179087e71312c9f6fd69", + "container.space.chatbubble.outer.x.M": "c498cdf72b5e769c313727706b5a547bd02fda8f", + "container.space.chatbubble.outer.x.L": "556dbe7affd752df38dae151fd1a142f6a862312", + "container.space.chatbubble.outer.y.M": "dea74b5832eb23a91aa76bd457b58f96eabd07b7", + "container.space.chatbubble.outer.yg.M": "719aae7fd65a49bbb6f2f227b21d2ad3920d30cf", + "container.space.chatbubble.inner.x.M": "3efd3e644d66464519cea65cc88bdc8ee5023e58", + "container.space.chatbubble.inner.xg.S": "93658a0bc5020f872d5f366ce0f87f19b9f750c1", + "container.space.chatbubble.inner.xg.M": "f52a5f33eb6808d2872886cf97169c3610bb8884", + "container.space.chatbubble.inner.Y.M": "51335312d83b3e0fa677ae214b9991ec534159cf", + "container.space.chatbubble.inner.yg.XS": "83c69d7a7a0338153b2d577c3daeeb09721dd360", + "container.space.chatbubble.inner.yg.S": "81d91769f5cdc1ae0743b3c2204f400958e1e557", + "container.space.chatbubble.inner.yg.M": "50aeaf536409783e753d02b437376f2854146110", + "container.space.chatbubble.inner.yg.L": "b39b5ce0f0c7dd844bda779bef2d46a6b889abcb", + "container.space.filepreview.preview.x.M": "40fa528868de55291f05f4b9cca7edaeb5c4054b", + "container.space.filepreview.preview.y.M": "f838756d3bd82ba0292ad6514ba24cc5ffc413cd", + "container.space.flex.xg.S": "fe7167aa4e8cc7ea91a5edf19461494df1483664", + "container.space.flex.xg.M": "3392bb387117be43cd2943508dbfe71b6039346b", + "container.space.flex.xg.L": "f59c4ac489d1ca8ce8a0a80839224f78b725092d", + "container.space.flex.yg.S": "dc8d4b4fac4229769a8c1c7e52412a1124e6d6bb", + "container.space.flex.yg.M": "3c1edbcedefa4aaa6e46cef9d2c98d0b0ab34634", + "container.space.flex.yg.L": "6e9ad98ef037aadf206c2b395bedd5a132cab28a", + "container.space.flex.item.x.S": "671ec9ecfff0de165f47d1a1a05a1bf01ddbabb6", + "container.space.flex.item.x.M": "de127456ff4c1fd921f2f31a92a8d39d763cebeb", + "container.space.flex.item.x.L": "784286548c73f6f8dbce0880d662e84fd9d7904c", + "container.space.flex.item.y.S": "d0c2cccf8600455e7c34e4619027b04f92f8cd03", + "container.space.flex.item.y.M": "8d72fa96128bc66caf4f789ed7ca46d7192a4175", + "container.space.flex.item.y.L": "b4ec6924da0a333af501d8b8ed6fc4a0da8bb026", + "container.space.generic.content.x.XS": "26d074ab6878ce00982e653c23b316c973489403", + "container.space.generic.content.x.S": "2d5a733bf00d40d675ad730d117534ca5bfe40cb", + "container.space.generic.content.x.M": "4c8ee695f6ed3154997d1ff524cb72f606702483", + "container.space.generic.content.x.L": "9bb4ef9174097b186da0df490f583aea6b1ec7e3", + "container.space.generic.content.y.XS": "68034cad7c691bffc9d904e5595eb9d7de355854", + "container.space.generic.content.y.S": "7836e0cf124723b7c15f5689dac82ca979cd15dc", + "container.space.generic.content.y.M": "3bac5366cf71cac12cba33f2e40d8aff12336727", + "container.space.generic.content.y.L": "64139f658dc4a8a7af507be9f9ef84e760a73e8d", + "container.space.generic.content.xg.XS": "ba8cc9b2cb3850dc6f45e58c1eaa1b6d6e05fbb5", + "container.space.generic.content.xg.S": "a18fd706b93271a16766fc5f94f468ac076f8f9a", + "container.space.generic.content.xg.M": "b6a6bd9c02ffbae62efa07d4aa00a610b808eb8d", + "container.space.generic.content.yg.S": "5ea000dff557e896fcc9604d9d1ffd70bf9ec382", + "container.space.generic.content.yg.M": "6da2c3be21bc6f50cb7af0328aeeba9b6bb7be67", + "container.space.generic.content.yg.L": "0bca2c6f9cdae911e46a6694efb5c078e5b3fb9a", + "container.space.generic.outer.x.M": "a99b56c21a708aa92bfd5560a3374ea65f7c5f4a", + "container.space.generic.outer.y.M": "034be3befe16c7e0b4f7023003e28d0111b837c1", + "container.space.generic.header.x.S": "d388aa381342ba3d093b4829c956a4548909cd23", + "container.space.generic.header.x.M": "afa608eaceb2a9066def5baca73604defb11478f", + "container.space.generic.header.y.XS": "2c69fd91632cfddf27ce721d4240f094de97c1eb", + "container.space.generic.header.y.S": "aabf6846d01605b0afe33a2fddb85dc762619f66", + "container.space.generic.header.y.M": "e35de349a6574d70e62502aee4690fa1c6bfcbd6", + "container.space.generic.header.xg.M": "6b14b3c1d8107741b6f8e2e1cf63f8c5685dde48", + "container.space.generic.header.yg.M": "fe82a92c9ae882b5c5b72ae03258d80d2e11ce7a", + "container.space.generic.header.yg.L": "689776820f58dc1ff39aaa7ba8227a29c9934ef1", + "container.space.generic.emptystate.y.M": "5af748ec9978cee414a78fa17717ad4334263847", + "container.space.generic.emptystate.y.L": "85ebc57d97c2605d97c6f6a9675401a9f5b9b356", + "container.space.generic.footer.x.M": "2676df780a07c145147a3d5466155b976b972e98", + "container.space.generic.footer.y.M": "cb1b917fc78b1a5d190f73475531c3fd83a82353", + "container.space.note.x.M": "04e23a100d70ed7f23c1ee40536ac513899d728a", + "container.space.note.xg.M": "00476db3889a49f03b2cdf7974cd5bf4a85468ce", + "container.space.note.timestamp.xg.M": "07f788430a2552b03bd496308c28b3fe129de350", + "container.space.note.timestamp.yg.M": "cb3cbd9eb2b803aa728964edf1c3e3a39fa0f419", + "container.space.note.y.M": "329df3d74fcdf14ff3e0efa814ae3ae4cd179d2a", + "container.space.note.yg.M": "f18b6fe652c0171bf550e504ee8f36ba747f8469", + "container.space.linkpreview.x.S": "e8c0c1f482ceb797b189f46b31cb3b80dd2a231a", + "container.space.linkpreview.x.M": "bf21d375aee7e1f2d5c6ae477afccb919f452206", + "container.space.linkpreview.x.L": "eedab203a11aaf82e4b1a5fec9d4a8591e974269", + "container.space.linkpreview.xg.S": "7b49beb8feb3f52f6b2a3b67a4936146e2599b1e", + "container.space.linkpreview.xg.M": "6edf4132c3f40c2a764ab0d3351204c8da454da7", + "container.space.linkpreview.xg.L": "5261c9392c8bcdb42d0789db9c9a5129794b59e4", + "container.space.linkpreview.y.S": "30b24ee2d293925b8ef02204697cdbb5b89bfb11", + "container.space.linkpreview.y.M": "337c48d2af760e44c0320566211ff3320b3c0e69", + "container.space.linkpreview.y.L": "aca7b62c21a87bd3b1ad7da4d6ff4d8f113fde9f", + "container.space.linkpreview.yg.S": "8db204ccbd94171fd105236f9cd97da2fd16febe", + "container.space.linkpreview.yg.M": "1960209614df9ea038391542a71575bdddcae9df", + "container.space.linkpreview.yg.L": "99dbe7ef6a4f3ff54cac046e912459a0af488781", + "container.space.pagination.xg.M": "f7401e4bae00d1e0572f2cbbca0485106d047ea6", + "container.space.pagination.xg.L": "87f9b72e4a0c13df3fb3f44dcfe7ec83a3b9e893", + "container.space.pagination.y.M": "c18ee7c1705ce8c11b15644ff384393c21247bff", + "container.space.pagination.x.M": "684845bb947245297cf3ee68bda17e74d8bb5207", + "container.space.scrollbar.y.inner": "17ab35fb62c19722dbbfc425c4a6b4b63ba15db4", + "container.space.scrollbar.y.outer": "128aa7fa02ef9944dc43e5c19645687484e1f4ca", + "container.space.summarylist.item.xg.M": "a976858bd40f2d45a330896799f58c7281334798", + "container.space.summarylist.item.y.M": "aefd65b9717ec54769d22b15abe54062dbda20e6", + "container.space.summarylist.title.xg.M": "03ac07fffe69ff40683b347adbcce0320c5e13b9", + "container.space.summarylist.title.y.M": "035cbf395ac2d466bb999432fe72824411c2295f", + "container.space.summarylist.title.y.L": "f2c39b9aebe757dfd547b2c4a1af0aa23611706c", + "container.space.tilecard.x.XS": "3283f6ae4c998faf6c1e9b26b01aa6cd97fb0ffd", + "container.space.tilecard.x.S": "4edf567e2114fc6f51f6e19fc11ce939ed97716c", + "container.space.tilecard.x.M": "09f40684de4660b882500d290d1e95b41fe44764", + "container.space.tilecard.x.L": "decc3db5689c857e10604432d77384aa6d9d4a36", + "container.space.tilecard.xg.M": "c3b33501f24129d53c82fc4e149639792848601e", + "container.space.tilecard.y.XS": "d7775f38dd579a5aeb25eb0cc277ba25addb61e7", + "container.space.tilecard.y.S": "70c991d9c7c6fcf19201fbd498b3d03f8e2159fe", + "container.space.tilecard.y.M": "fa719f2b6d1c4c526e0d39bcd999059fe895aef2", + "container.space.tilecard.y.L": "291614d909c72e6d0d8fbf1f8d8db119195e4948", + "container.space.tilecard.yg.S": "80765e14d12e1fbcecdfab6d7827a5d4677378fa", + "container.space.tileselect.x.S": "9ac954108d048ba106352901a717aa1fd210ef8a", + "container.space.tileselect.x.M": "13129788f18383f53315ae9ffddaede4c00973bf", + "container.space.tileselect.x.L": "2f145470dcc4437e73cd70b8acec3a92fcf82f24", + "container.space.tileselect.y.S": "e4752a3dd3580d871d188f2ded5b10df8e8f61f3", + "container.space.tileselect.y.M": "344bdf12b2b5aa1301956aef3da25ec4ae0a1943", + "container.space.tileselect.y.L": "8b3f2caddd7f853aa4e7dc6fc169a44b5abd641d", + "container.space.tileselect.yg.S": "465b502e05a7aa136aa6b09a71f6704cc579423e", + "container.space.tileselect.yg.M": "b4387c8bd5732a652773e291d5a47ef435785475", + "container.space.tileselect.yg.L": "23cfcfdbe1a90340ee5d9e316b98a979e394844c", + "container.space.tileselect.content.yg.M": "74af4102e4dd89f96c0645ebc671bb94f2e295f5", + "container.space.tileselect.header.xg.M": "23e89f079c7b9735035885a5ccabca0ae8d9aa57", + "container.space.tileselect.header.yg.S": "26a248b08c89a33bf44b084443a1bb0b630f6f12", + "container.space.tileselect.footer.y.M": "2acdcc0c65882173561d74bdc8b1dc8833c0db00", + "container.space.tileselect.footer.y.L": "c4121bf5e5d46fa3e4286649266fd1a300ed09e9", + "container.space.tileselect.footer.xg.S": "7058fb1a1771786c12438786a072506ccbc25a22", + "container.space.nudge.x.M": "881ba380d2e9b58526f0693ab27c3e6b087cd2f5", + "container.space.nudge.x.L": "09231020b5939a16e4472be96824013f057026a0", + "container.space.nudge.y.M": "96fa69d58526a7ecf613578d23289161be69acb0", + "container.space.nudge.y.L": "e02df078cad971764f28fbdec569ede9c45458f9", + "container.space.nudge.yg.M": "17aa929f49c123f4576cec00fa5438f3316b91b1", + "container.space.nudge.yg.L": "61d4764ee7909353cb094ba00fff88f4226c07c3", + "container.space.nudge.header.xg.M": "72eab2b86cf55ac666fb199a128cd66f96d2f56d", + "container.space.nudge.header.xg.L": "148a9633f182c58611e7f659071c1436bdc0ce4d", + "container.borderwidth.AIgradient": "8721dccf0158d40460a7f6e9b5d3f1ff2c7c364e", + "container.borderwidth.dialog": "ddb1fae4551b767b3eed1c08af9bd8d0eac20375", + "container.borderwidth.divider": "28637cb07641692ee469d8e8de36e2e0ceb09917", + "container.borderwidth.drawer": "9222d7f55f1eca4405b6a785b12c0c3fd13c9006", + "container.borderwidth.footer": "5e473037cc97313427e16741da2533a76eb1fc23", + "container.borderwidth.header": "b549bd1883474abaab1be28be7af4347be438fb4", + "container.borderwidth.linkpreview": "2d4207543a4ccebbe7348e69257d4542c7eca1f1", + "container.borderwidth.note": "e5c09cd6f6576d1dd5c00446eac331265f18544f", + "container.borderwidth.sidebar": "f8d884f90b73fdb524bbeca9c866e9e979e8ba56", + "container.borderwidth.summarylist": "620956eddce0cf6874f8eae0081b3afe405891a7", + "container.borderwidth.tile": "80bbcd315b7bca286f1998e9d7010e642a17aaee", + "container.borderwidth.accordion.standard": "fdb1ddef97f1c952cf28e11d8fb987180fd05904", + "container.borderwidth.accordion.subtle": "9611aeee0f5be73900f6b84d3e8e9e20711cd129", + "container.borderwidth.chatbubble.default": "a4666cca69d91fbc8d6f8700adc5d6cef40c6750", + "container.borderwidth.chatbubble.error": "b466eff09ad36fd05df6240a071bd1f9d06c55eb", + "container.borderwidth.chatbubble.success": "85b04e5492ec463bdac7ab9ab8fbd33753e3459e", + "container.borderwidth.filepreview.container": "420d1c6f8ad2e2e5137c4d220d102b10c226eb22", + "container.borderwidth.filepreview.enabled": "eba01ef609d4fc824b623b7dae0a6e433730408f", + "container.borderwidth.filepreview.active": "c247a326f96889ed037b21e3db070710bfdd7734", + "container.borderwidth.tileselect.active": "2109a8890a5390d87a7019031d749c52920bd4e8", + "container.borderwidth.tileselect.inactive": "b242a9ec9e1f6c5fc636d5be39f0e09120b34db0", + "container.borderwidth.tileselect.selected": "d2ffa34ec87980e4cd6540bdba81a2f07aeea12f", + "container.borderwidth.tileselect.unavailable": "0ac60b7893992b12d6208780ae2062e7eb7cd7b3", + "container.borderwidth.tileselect.enabled": "9198d05a4a2c6991c910b5253c69c9f72a35f878", + "container.borderwidth.nudge": "8305a4d3214762549af0b4c300df8dc22e85ba25", + "container.opacity.carousel.hidden": "5dd79d4b0a60f10c270a15455a4eba9d3519662b", + "container.opacity.dialog.dimmer": "a5698d9ca3db4c3e98d7233c18c0e2e05cfdbefe", + "focus.color.bg": "1a44c03b53d6bf59380e37568ffcfa5293e7efee", + "focus.color.borderalt": "4b1be039640d9fdbe9514997aede824c1ea88844", + "focus.color.border": "5436e4a8a8cf44ced6957d6882f29cfe9556860b", + "focus.color.label": "638ae4a548e6d3dca97aaf7000a1ad432068c3cd", + "focus.size.underline": "0e0191fc202e1e6d457d457ae8704ec4d55d02c0", + "focus.borderwidth.secondary": "116893f346a4701c4c2c60bcdf3884ca21f6933b", + "focus.borderwidth.inner": "338e68638f935322d838d9208cb90505ef0eb068", + "focus.borderwidth.outer": "671988bf2ba9e1f763ed7a961900ea72d8e4aad4", + "form.space.none": "b1fd57e584091c64906053f25aeaa2f9bf3c9231", + "form.space.calendar.x.M": "5fa820ebe0c359a7300148a782ed3482628d42d2", + "form.space.calendar.y.M": "dc6d7086ae18551f95a4a41bf5f487cec057ef2d", + "form.space.calendar.yg.M": "41a12cab386726cce4e12f35738d4f0322dc3608", + "form.space.chip.xg.M": "a1174533f772c367da95d9c8db3f4984af8cf592", + "form.space.chip.xg.L": "558b5ba94f068a3d01ed2a19b055c1f6e758908f", + "form.space.chip.yg.M": "69d8ab511d78cd96182a90e94262f5bfb1caf9a3", + "form.space.chip.yg.L": "63bae9330285befe052244134d5354eb94156098", + "form.space.checkradio.y.S": "4d563cd925e51fae1e85f5812a16d2a00e1d2e05", + "form.space.checkradio.y.L": "c628a9c1aecd2923eee80e553fc3ff8c686e51c9", + "form.space.colorpicker.x.M": "4827790370d3db68f2b98596251dea0666ef51ec", + "form.space.colorpicker.xg.M": "cda58aaadb49f08233da67ed822e26fffc335c13", + "form.space.colorpicker.y.M": "686b48a89257d43fbb7526005fd68189baeee57d", + "form.space.colorpicker.yg.M": "54b6ef6086a197246b4966df7c100b02361b6517", + "form.space.dropdown.button.x.S": "e1fe95750d24b1a11609e8a17920033236dffbae", + "form.space.dropdown.button.x.M": "85e59eab04a23e0a8258e46f7789ee15baadc44d", + "form.space.dropdown.button.x.L": "63554d10fdd63f35e396422328b7f060409e6887", + "form.space.dropdown.heading.pr.S": "8d03e7130ac12b749c3bca1eb569b6bd7ef8fbab", + "form.space.dropdown.heading.pr.M": "0286ce050a797c14ac1498770cac664157d6fd94", + "form.space.dropdown.heading.pr.L": "fb28f8f9608b07f460949438dd243312872702e8", + "form.space.dropdown.heading.pt.S": "6fd47ed0ec79144b5cfed63a7ef5c07b4a4bd76e", + "form.space.dropdown.heading.pt.M": "63761910ee65ab59654e57e8afd10d41a4437efd", + "form.space.dropdown.heading.pt.L": "18d6622fafdc1124c2df5157d04389d5c67f8edb", + "form.space.dropdown.heading.pl.S": "f1e8b01d95240bf6efb4a38a488c4ac025acdd75", + "form.space.dropdown.heading.pl.M": "8f3b7c864d838ba08a9284a447fe260d84115d6f", + "form.space.dropdown.heading.pl.L": "1d15ba5f2d2db5b809cc276e52e686940bcae4ec", + "form.space.dropdown.menu.y.S": "d63a93c8831b82d3a0bc9099643ddf150d9579ad", + "form.space.dropdown.menu.y.M": "e4b30936feb49bb962909fcb8342fbbfde58c804", + "form.space.dropdown.menu.y.L": "df75944353a6fd5f581f01ae7ff346a0b8e1365f", + "form.space.dropdown.menu.x.S": "b91ccac1e70f9231388ee3ba55566c938e52bc39", + "form.space.dropdown.menu.x.M": "969df9b6ae5a5f33ff876f91d1c37edf8994aa08", + "form.space.dropdown.menu.x.L": "4a0b9000b983e73dfc749c4e1b433c38e46988c1", + "form.space.dropdown.option.x.S": "0c328f54f85c018ec18a75fd6900fb35ae07ff8f", + "form.space.dropdown.option.x.M": "51b7bd2569868c122c5be1739f2b1066126ada7d", + "form.space.dropdown.option.x.L": "f9802cdd00bb3253272d5181c3cdf6ade6ae9ac9", + "form.space.dropdown.option.xg.S": "66782db52715d3db50d957c8af89eedb247e6161", + "form.space.dropdown.option.xg.M": "a65e3146fbd6a3b734df046cb722dac1272ef499", + "form.space.dropdown.option.xg.L": "25419ef1232a11de41152020ba3909a0e86164f1", + "form.space.dropdown.option.y.S": "9c8266887c2e85a14746effabbae1756aff6b55c", + "form.space.dropdown.option.y.M": "a6b9d5cef681ea85262b32d6e9badbc0e1f318b9", + "form.space.dropdown.option.y.L": "b53133482c01a9c35ae5f5de11aa96553ac416f9", + "form.space.dropdown.option.subtext.x.S": "1a80b5901ea8d520d7f22b40a6b99f7e1fa4d0dd", + "form.space.dropdown.option.subtext.x.M": "f18619a90021e05b674474603a850c41cc2a762d", + "form.space.dropdown.option.subtext.x.L": "011fdf02288d8cbc566ef976e1a43d276e895e10", + "form.space.dropdown.option.subtext.y.S": "b508fccd1cf1abdbf0999697bd4314a2a40268b9", + "form.space.dropdown.option.subtext.y.M": "8743acc41f04945708454253292cdcdc986deb4f", + "form.space.dropdown.option.subtext.y.L": "305ea318254cb45041c382848b39d970c18e279a", + "form.space.dropdown.pill.xg.S": "51de850412942cab19bfe4503ba0667ab0ed13c2", + "form.space.dropdown.pill.xg.M": "e038330094f7e2e8293306ed051d7350cfff96fd", + "form.space.dropdown.pill.xg.L": "4b51b181052763c62ba6cab2a1692e50ae7380c1", + "form.space.fileinput.status.xl.M": "ad90a20ae5bde6b7af9034c7558276f81c3d1690", + "form.space.fileinput.status.y.M": "19cf2a8934d72617c8f9d52e13392b46fc0bde32", + "form.space.fileinput.thumbnail.M": "94cc086c990e42ce1bb1989e035f6f9cc93a7c50", + "form.space.fileinput.preview.x.M": "6b2309e944cb982051b7a74db9dbeba414f8bee1", + "form.space.fileinput.preview.y.M": "da979e76bc95587a52dfdcfd4cf765e83e8ce77a", + "form.space.fileinput.dropzone.x.M": "e1cff262ba779224643ac5605e71071728417675", + "form.space.fileinput.dropzone.y.M": "62aca831ee3501ef16a5a43c88db124ef251febc", + "form.space.fileinput.dropzone.yg.M": "40da3fb809c57d45182a032a9987e81af1de4214", + "form.space.input.stack.S": "8f4b72a2e09cae700e6dff1f03981939bbc93907", + "form.space.input.stack.M": "1ae6b6a7a83e262d5c97af79b7182b3db065b0ec", + "form.space.input.stack.L": "24f88676fdbf5fd5ac0194403c220543cc3878a3", + "form.space.input.x.S": "38119cbf362c6cd302331138bb74cf400ee84e9f", + "form.space.input.x.M": "5eb0796ff5cfc8d295032eeb248019110e35c9a9", + "form.space.input.x.L": "7321208e7cd65508a25c9d6ae225a65ffeac939d", + "form.space.input.xg.S": "20c7f26b79c14166115dfa2ecbc4a4311fde2fd9", + "form.space.input.xg.M": "6095c460e09fd8ce848531628ad589a8a9a34cb0", + "form.space.input.xg.L": "26b92f37218b344e02da924bbfc981d53ad81fdc", + "form.space.input.y.S": "21b063ba7c3c019ec08bd9d9d8122b424b9af37d", + "form.space.input.y.M": "0cbbd11480d8fdbbbc72a5f12ddd1883df7128ef", + "form.space.input.y.L": "994ee5e836d4aeccfd2d1c245908614ccd9e859a", + "form.space.input.yg.S": "4ae8056788bcc62ae280515bffa1bbe6d7140de0", + "form.space.input.yg.M": "f3c15fd035959f8363ddf6ef264c16692d2eabc3", + "form.space.input.yg.L": "3e9b6593108da3e4eae71cb2733bd324c12f835f", + "form.space.integral.secondarylabel": "080b29c4968071426cb3c205c4ead30d5edf9640", + "form.space.integral.xg.S": "556041e65175d56ba2c3762e0329f31d0c5dc9b1", + "form.space.integral.xg.M": "ff8153950176e429c19a4edeb51ff13b8f84b1f6", + "form.space.integral.xg.L": "6731174fa660094ebf84d4215e351a6c68c87d69", + "form.space.integral.yg.S": "d024d095c8536c8f3ba425d50b78519df99de0e0", + "form.space.integral.yg.M": "0e2d41bedab20cac4f3ec79e42b39b116bc9444d", + "form.space.integral.yg.L": "8e540c4cecf9b9204c9f744aecd6bd5e5e85bdda", + "form.space.integral.progressive.x.S": "ea6797a633e7c317e8f87bf1bd96c5023cb16b2a", + "form.space.integral.progressive.x.M": "90fce66af60b1b71a89e227477456b440db600b1", + "form.space.integral.progressive.x.L": "b18b8d3c986e32ee332a764e283e70a8588edd11", + "form.space.integral.progressive.y.S": "64549fc04dfdff77c24bace01e7f2787004725a5", + "form.space.integral.progressive.y.M": "dd452cb8af2347d4f4a6682c05f9add008a21485", + "form.space.integral.progressive.y.L": "d1c1c90b9e3eff0131bfcf1f5bffd736eb186b84", + "form.space.integral.progressive.yg.S": "4c2f04d95b58dc635747e89ce5aaa94bb936325c", + "form.space.integral.progressive.yg.M": "fe9ceda0148aa0c79c56e76ae2a1ff77752329d8", + "form.space.integral.progressive.yg.L": "059b33af03212bc1a7d0fb1b1d84ed08574f7784", + "form.space.rating.xg.M": "c7a840326d81b1e4a47e1bd5d5a6800464c9ed51", + "form.space.rating.xg.L": "787e742e29939c331964fc992c0359a859aa4330", + "form.space.layout.stack.S": "1022abe4d9b7244b239553ec40450fa61849ad21", + "form.space.layout.stack.M": "8873242009cb737c39a0467e96f23267f993d027", + "form.space.layout.stack.L": "321ab742b4ddcf9945ae5159657f7e257fa827bf", + "form.space.switch.xg.M": "fdaea1d60ebe8e3b9cd30d8d47281aa881026d2f", + "form.space.switch.xg.L": "16dbc07b700d505929b89370d39e228462503780", + "form.space.switch.handleside.M": "6803d3c5096145afdf8591ae16f8cceeb5a2318a", + "form.space.switch.handleside.L": "4614875ba93fe3acea29bb131f602b3ffe5ef81b", + "form.space.switch.labelside.M": "4dfccd593833df8f067e262c78e54214a39b6fdf", + "form.space.switch.labelside.L": "e00850462e087712b8f5297147428b8d42af57c3", + "form.space.texteditor.y.S": "0db4a526eb132bf6abb89faaec1ae5daedd7af33", + "form.space.texteditor.y.M": "a3fb74b3271be2e301188d75d717c35ccb427773", + "form.space.texteditor.y.L": "c0fc5d47198a3a3512589f83f6973452d7b0433e", + "form.space.texteditor.yg.S": "88121735ac088e29ff0d4541cd7a5af0dd62c708", + "form.space.texteditor.yg.M": "c1929da381e57a8ad9300a175699cbc177bd75be", + "form.space.texteditor.yg.L": "af4f4f332e40d4d841c480a6aa93d1e9de9d9ceb", + "form.space.texteditor.x.S": "a7cc7de8ea0ea2324d89aabbea470d51a6834ac5", + "form.space.texteditor.x.M": "fafa7a052c8ab48ea5c284e1c4ff365222b76d48", + "form.space.texteditor.x.L": "ae7d3a188060e965204d86b53d9d0a8792ff7170", + "form.space.texteditor.processing.y.S": "12920318d8668a1f284662c82f5d6122a720ab8e", + "form.space.texteditor.processing.y.M": "f6afb8ea324c7d04f18ce9ead39f20519b49a0be", + "form.space.texteditor.processing.y.L": "03708f39433842b6431843f5d9b574b6082965f2", + "form.space.texteditor.processing.yg.S": "d7dbc527dd938a1bca77407623b4fd6b2ade65b6", + "form.space.texteditor.processing.yg.M": "fba2c5fbc12b168d3742c999cd9c830c20c340a8", + "form.space.texteditor.processing.yg.L": "7e1bab783e192d2547721c73e370ef1fc16a6b64", + "form.space.texteditor.processing.x.S": "a095668cb458f1e663877d95bc9bee71ba8601ff", + "form.space.texteditor.processing.x.M": "49cc40e2349c9941dd115ad96ddf321a0b0f2e0e", + "form.space.texteditor.processing.x.L": "6f08a3a298b41a2955ef1245cda1dd1f706a3525", + "form.space.password.requirement.xg.S": "bcf3e8ac532bdce1e04e46f53f77ca9c14a48bc2", + "form.space.password.requirement.xg.M": "4ae4844d2b3c71e7f2d8e5b54f515e4189f390b5", + "form.space.password.requirement.xg.L": "446da87e46cc7fc62e9fe309801f48117d70e1c4", + "form.space.password.requirement.x.S": "f77973b377870f4357d976470ed3a00771dc9db0", + "form.space.password.requirement.x.M": "d07c09743fcb7ad804a5ae7dcd649916bb11ae76", + "form.space.password.requirement.x.L": "cdba4349efa26a04a58a3a336b4a45ba790d9251", + "form.space.password.requirement.y.S": "4678e4cd191856caa0ea7429ac1d076391826eac", + "form.space.password.requirement.y.M": "c045202a20124d3beea7cbec865a5df18420fc06", + "form.space.password.requirement.y.L": "812f6d8ba4ae5c0b5c4634bfb04f67c92e3aff50", + "form.size.none": "a25b32b0405166743ea387d2ead26b827cc0fe07", + "form.size.calendar.date": "29b9df598124f24075088a9ae646a7c65c20940b", + "form.size.calendar.day": "ef6fd0e716a14a0b80eabb8a4f7044ace48d7262", + "form.size.calendar.month": "f5252bc5827e3d39aa8bfc3eba7faa14dfbb7740", + "form.size.calendar.year": "8190652e985a16d94afff669826f0f6b314952d8", + "form.size.calendar.today.width": "2d7fefcf2732eb5293f2f8e2278056c6f1047bff", + "form.size.calendar.today.height": "82b269d8945bc1036589ca37cf8e2bbd72a491b0", + "form.size.checkbox.S": "92ae99719d526f84cfaf935e610db7b647bf79ed", + "form.size.checkbox.M": "157049edab99b4ad6da56e652dd539593c296db0", + "form.size.checkbox.L": "60f7e5f522702fdbb34ec95f2ca9bd09d7b3eb12", + "form.size.colorpicker.swatch": "08691b83bfa0f90df9aca196219f4dd145f31541", + "form.size.colorpicker.swatchcontainer": "40eb48d2f860aee0581bb974401d5326d4543afd", + "form.size.dropdown.item.S": "4966a6029ada8a4be75a89847f492ee11318e2d7", + "form.size.dropdown.item.M": "bccd1a3803ed80eb166fc59ae4f9ce8b772107a2", + "form.size.dropdown.item.L": "5279f0e7c5b59389a1cca6f6330f2b70c09d4f06", + "form.size.dropdown.subtle.S": "c33122c9eddee89169150a60c23888bc9e1690c5", + "form.size.dropdown.subtle.M": "2c37e55db778f859d325bc8d04584805ee11705e", + "form.size.dropdown.subtle.L": "6a059f97feff902c6f0c06a7fa50c65d0115558b", + "form.size.fileinput.fileicon": "f1d773b434dd7c36a0fbd6b542e687687aebb44e", + "form.size.fileinput.preview": "851a6753c223131fefb26b6de9587031789ae2b8", + "form.size.icon.S": "0f336f8128eedf68a86e04a910a9c216079cd6ba", + "form.size.icon.M": "5d01d96aedbb4be1843e9dfaeeb2e9478bb59fa8", + "form.size.icon.L": "9b99a6aaab78d178f17aea1d4a0b70d88128583b", + "form.size.input.S": "591726a6514a7e76ca421665025c7a70cf616fb0", + "form.size.input.M": "720c134081f94b299c544622d862bcaf4dcec197", + "form.size.input.L": "d0d3b61c3a6282ffa61b3a1a5f14b5d330e49264", + "form.size.input.timeinput.S": "daed74a4563a5e50de74764e64a4dcc5c1b710be", + "form.size.input.timeinput.M": "afbad30b585b43478700c558a1fd0c2e9e143b2a", + "form.size.input.timeinput.L": "8b7edaa3072ec7f0783d54c7a942bbc7e068ec9e", + "form.size.radio.circle.S": "8c70a03381f5022950ac2792110618574d3d3a20", + "form.size.radio.circle.M": "a9c91ee56a4ce49ff3e325384e9dca2eb8544f0d", + "form.size.radio.circle.L": "521987d3019b99accb3a8c5deb6aa97f4a8e939b", + "form.size.radio.dot.S": "54d9076e4ecf8050284723683ce24ae03eea3dcf", + "form.size.radio.dot.M": "b2d52e717b995bd961349db92960f66f7a1410ea", + "form.size.radio.dot.L": "e468adf65121bd2e253011572cfb5638975896c6", + "form.size.switch.container.height.M": "419f0d0f231743bae4b5653417b06dbe3784307c", + "form.size.switch.container.height.L": "f8a4ef7bb8c3b0219002f907b4cd6c171115dbe0", + "form.size.switch.container.width.M": "91ba8391af717db47b59bd59a4dae4d7006a1338", + "form.size.switch.container.width.L": "d4c1a0516274919a2a19d5cb3ebc57804f68881a", + "form.size.switch.handle.M": "f4276929695f80e8b624292a038574af0c762f9c", + "form.size.switch.handle.L": "ce12fda524b7e168af3bcf57b5f1d5587855791d", + "form.size.switch.handle.icon.M": "ce04c4d7d575ea18e1a3900dba2eaf0719304ba0", + "form.size.switch.handle.icon.L": "c7a24b78fbeeef9d1212ba21f2a229bb86888b29", + "form.size.textarea.M": "e13aaf5fadf4de89aabcba16772aed03c8bf5ffc", + "form.size.validation.bar": "29b9786d6cfe6d92d686d948787aeced98b07cf9", + "form.size.rating.M": "9535faae8a6ad0f08b22dd8bf3db495f0793b76d", + "form.size.rating.L": "32958c33d5e7fd421cefeb3693bb30e6dc237f90", + "form.color.calendar.bg-active": "4720658e790bd37e028977a7d01c2fc873fe2424", + "form.color.calendar.bg-disabled": "0cddb2bba3505dba0b7558fb35cb4aad3ea1a4e5", + "form.color.calendar.bg-duration": "a16bff728a9a003402db04aec7b813fbb4bd6ce1", + "form.color.calendar.bg-hover": "b28c3339932b3133d2f89f236245d340f240b17b", + "form.color.calendar.border-duration": "819172008382ab1d5059dd27fb8fcb451d921e55", + "form.color.calendar.text-active": "b2b4e56e248d12b4afd6b049be08180e63634996", + "form.color.calendar.text-alt": "05efde78b43249a1a16193b114b5e83f350662b7", + "form.color.calendar.text-disabled": "0912210ce9d116159dca2e72f5c00b78d62005f8", + "form.color.calendar.text-duration": "c50daa3b67d724a2e3a368c04a70fe3dd6f4cec6", + "form.color.calendar.text-enabled": "25ed564b1745fb9922760b61f42b737e0cb2b2c6", + "form.color.calendar.text-hover": "8ef0192e78320000efb043ea94085f6f42b510d0", + "form.color.calendar.textAlt-enabled": "46d378eea5fbaa9167216c01ef9e4de0ee725c94", + "form.color.dropdown.bg-hover": "27c7d168570136875396024c9d3f7a0f28bd4096", + "form.color.dropdown.label-active": "e2dea686190f9d3af8633a39db31d1019561e017", + "form.color.dropdown.label-alt": "6ccd9a01fdf697a7de8470cb706baffebb153918", + "form.color.dropdown.label-disabled": "d951ee9cbaad7ac43a3888c7a8ad239bee3c0302", + "form.color.dropdown.label-enabled": "c8cbc18ab6a590cdf6182b785b9498995b98e010", + "form.color.dropdown.label-hover": "a3a47b1037df4e8c7653471875e8b96872f7c20e", + "form.color.labelset.label-required": "92c81d82945c07dabf11c284540eee54c5a65eaf", + "form.color.labelset.label-default": "a7c58acb02f15c4527256035c766a1d158d72f7e", + "form.color.labelset.label-alt": "8d06bd5ac964ffd34d707f459cfe3ed7ab9949e7", + "form.color.labelset.label-disabled": "b0b8f92757cf04c270b4c525dfb43eee3c5c2e3a", + "form.color.labelset.label-readOnly": "834b3b7d08ab89b53346916ab33344214cab97f4", + "form.color.typical.bg-alt": "ace76ed809c8f2688120aeed143c7e8fcc534ebe", + "form.color.typical.bg-disabled": "0afdb433214497c689b86ead262e1c797330dc30", + "form.color.typical.bg-default": "b2d510cd0c82500cf194eb4456c34867ed93649d", + "form.color.typical.bg-enabled": "9414274c07f32d2921eda6729454954708b10350", + "form.color.typical.bg-hover": "a303f97d80723dd4185eed0cf4b06f2d11a1123e", + "form.color.typical.bg-readOnly": "ceaaef94fc3c401a8473ab41166a142c80f3590b", + "form.color.typical.border-alt": "673b9e3ccb7ab7e0a8f82693f4c6c24e0c0807e7", + "form.color.typical.border-enabled": "3029f124e1a5d4a703744dbd4fb34cb022aaec77", + "form.color.typical.border-disabled": "98f6123baf39be0014f0e6ab58550136deebe5ca", + "form.color.typical.border-hover": "3cf9b812a335e8ef7b27a4ea6037a583e12ac115", + "form.color.typical.border-readOnly": "0f23eb41b218b1a7f932a06ccf1d7e4d839eef86", + "form.color.typical.icon-active": "3a3cc48bf7fadbffb430eaad447af344532d19b7", + "form.color.typical.icon-default": "2dde958660d380ae37bbd51be3a3c04caa96bfd8", + "form.color.typical.icon-disabled": "f3ee2ea75e9cc0014fc8c3827f2aa9e3a4ed1807", + "form.color.typical.icon-enabled": "aa7ebd4dc20ba9744b3303d26e9ebf0fb21b0c92", + "form.color.typical.icon-hover": "25e65c45ed475d20c803cef85ae0683ebd9164ee", + "form.color.typical.icon-readOnly": "bb5cffb68a1fdfb3f8277e573b1517c12a9897e6", + "form.color.typical.iconAlt-active": "c39d35f3429b4cdc6eeeaac39b6cef4990ce44b9", + "form.color.typical.text-active": "3d7109d37cdc5921c14f8e5c1cca0f16f4dd4379", + "form.color.typical.text-alt": "53d8f41ace3fb1b6776858c286df14299d787d36", + "form.color.typical.text-default": "aef782a9f3a6b414c8d53cfa14219d71990e995d", + "form.color.typical.text-disabled": "911c7d74d03948bf027a6b08ad0c1c1106a75e73", + "form.color.typical.text-enabled": "51fde241983b83c80ed032d7d16fefdc2d532976", + "form.color.typical.text-hover": "18de3da295b46ad1e5173ca8396319832cdf9970", + "form.color.typical.text-readOnly": "d1bdcdf27cd2a4ebb7f9da68de614c3e20c0c092", + "form.color.switch.bg-activedisabled": "72e5bd0694f2861463a9ad71047b7f6189def26f", + "form.color.switch.bg-disabled": "bb6ccf9440160fc17af88258ae073843b9e04751", + "form.color.switch.bg-enabled": "c0a0a577b0b464b3b36c1f34e89cabca1b5ee173", + "form.color.switch.border-active": "d7deb138e7727c9ff1c3179556258e9f119f0f76", + "form.color.switch.border-activedisabled": "855cf342c908026b2b0db41bb632fdb2666e5089", + "form.color.switch.border-disabled": "0e09366c8f465d401f6de70c5212b67aaeeabd47", + "form.color.switch.border-enabled": "aedb7374d5118ec49daa4b5963955e1191d9564f", + "form.color.switch.fg-activedisabled": "f48fc8ee71a371a40f308362539f5c80a1467cf7", + "form.color.switch.fg-disabled": "6dd0fd768dfb7c669a6b6d76c4b557ffdd8e2acc", + "form.color.switch.fg-enabled": "dbdd158d7af6257de31c7f45996e2d45bdb1baa5", + "form.color.switch.label-active": "ae7fbd6d4e83d26dbebb663eaa8dc1f985241887", + "form.color.switch.label-activedisabled": "ac427591bced3611e52b1cdef5bbef3d17e93e1c", + "form.color.switch.label-disabled": "a4f9165079b47c3047318bf089f183d020966f01", + "form.color.switch.label-enabled": "d83db19500ac3382c2694b902172406b39afe070", + "form.color.switch.icon-enabled": "4d93d7b57adce6989b3def1218d12cd1c8ae87cd", + "form.color.validation.border-error": "93811a3c3877905ac43600332319635f70399ac1", + "form.color.validation.bar-error": "0ad75542195e5c719ee8db50327e4b0d7d7faf50", + "form.color.validation.bar-warning": "ed7ae9d160e8873fad771d4334afd7eaa9aa8784", + "form.color.validation.label-error": "c47f07276d7c743d528fa7ba75f35fda237b8e61", + "form.color.validation.label-success": "265920295c17bc684a24aa36dfa17e831a382410", + "form.color.validation.label-warning": "af7a0557dec877c8fa4d1d8acf2cbec03a52c326", + "form.radius.none": "553390582937aa18426aeb57ddb8048833412d63", + "form.radius.checkbox": "eaec4ded50f994e7ceed299f5e737095b0050256", + "form.radius.texteditorfooter": "40d8db58a5be3a719ca2a0b0c3442be18942050a", + "form.radius.colorpicker": "0f42f5834874d05f2878c3129b47cae876487850", + "form.radius.dropdown": "f8b13cd84b8fab6c1611caa9b91fab95dc1df6d0", + "form.radius.fileupload": "505a977326b92e3d5d7294423fa54e3f4f8553a0", + "form.radius.fileselector": "5194653eb73c3dbdc8a9842198b063ce62375633", + "form.radius.input": "1b8cc21bdbdf9e0165cf3c07d70fc582ca5368e2", + "form.radius.radio": "1ad384ae461fc69e1f94f191c33d24baf1a3402d", + "form.radius.switch": "9301ddc8cde111194559e0f51329f9d8cf45a47e", + "form.radius.validationbar": "d58c5bf1620aca7f5445956eab232c398a106e1d", + "form.radius.calendar.none": "9adf531d2f751730c962b7b8e7d9f08385d803f1", + "form.radius.calendar.date": "f963ab2ee9fffcbd2d373c0f0d6bbbc8b493e942", + "form.radius.calendar.today": "b3940d174d962c799ffae46ed9486c2fb3dc1acb", + "form.borderwidth.colorpicker": "ce5daf13df514bf79cb715e8f59836e4ff8a0e05", + "form.borderwidth.caution": "7ce7ceff41e7c4c9db5202d0721431d2e7fac883", + "form.borderwidth.dragover": "b329dadf69e297470b98253da131395d99594cfc", + "form.borderwidth.ratingstar": "a51ba6ffcb474f0224356e3c0a750a018b8316fd", + "form.borderwidth.error": "2081772a2b64e60206abea44afebe3a886c2ca85", + "form.borderwidth.fileupload": "fa8260afcea8aff5ce59e0ec80b9bdf1ea246dd6", + "form.borderwidth.input": "94c2071bb327d64c5cbb050d75479f74655047a4", + "form.borderwidth.searchunderline": "0d1b03465ccf7258413c0813e562a7bc9538a5cb", + "form.borderwidth.switch": "c9208cb3207f634899d02795befa76207da0d390", + "form.borderwidth.tile": "49ca40d0865fef95add75d379711df160be7a036", + "form.borderwidth.calendar.duration": "2b6702c62513f9510110a88c5606dbce3d94ff2d", + "form.borderwidth.divider.item": "fc81eb88c3d213c1c856afc3b2d2c855b86ed68f", + "link.color.destructive.label-default": "8dcce49769a780c566ef8b38a43f383a1be0bd48", + "link.color.destructive.label-hover": "e175e5f083ce6387b542f69fcb9faee614a05cc8", + "link.color.typical.label-default": "e41145db82eaaf205570817a13b22dee3d02c04c", + "link.color.typical.label-hover": "cdf639c79cc2d78986a3f2792ac9f454a96c62c4", + "link.color.subtle.label-default": "ecd3c05046e7f4f480d9ba9cbfd09f3ba3491008", + "link.color.subtle.label-hover": "787236eda81b352ba7c56fb1378a900e4a313193", + "link.size.skiplink.M": "cef755d34930794087fa471157a716d2cdeec6e8", + "link.size.icon.M": "a1fd5a05cfd06ee66f4d4e33ecbcea3740aeb968", + "link.radius.link": "f2b6536cb9b59e7dc268c8e1046b4bb2d464f7ac", + "link.radius.skiplink": "37714a050795008fde5278cd6ad602ad2dca49f7", + "link.space.integral.xg.M": "b5aa104ea2d857779276feef8f9e11c640e6f39c", + "link.space.integral.xg.L": "49dc05928b0d2aa16a983ef433045bee3fd11be6", + "link.space.skiplink.x": "d6ffce0abfe37a0aef20a33cd280a6432495bfb9", + "link.space.skiplink.y": "be233b0eafe89bc14ed3e5c05359dcfebd016d05", + "logo.color.sage.bg-default": "176fa4bdfdde2c1d90543d62f76c86a4210d33bf", + "logo.color.sage.bg-alt": "08a6379727481535a381a2ce3a86af9f9555ff37", + "logo.color.trust.bg-default": "d54eaa67a5b1054ecb788b2b7d0e1fc30fb5c381", + "logo.color.trust.outline": "a460c2cd601a494fe58a6b921226da2b3e7a5692", + "logo.color.copilot.noBg.bg-S": "5f6d957652db59b5d5ffaf16e9f9bb3f71d51563", + "logo.color.copilot.noBg.bg-star": "da56b1e1732804d510f092d0f083dd07c48a0774", + "logo.color.copilot.noBg.fg-default": "395284d7da4f0c599691707823ec461336c43766", + "logo.color.copilot.withBg.bg-star": "4692ceb2d703ac16b5e6fa0da55ec679ebc5b22a", + "logo.color.copilot.withBg.bg-default": "2c46b6042a18b67af472e5daaf33a0e9563a408b", + "logo.color.AIIdentifier.bg-star": "c7503be9a3ba93460dd15d608e5553811558fae5", + "logo.color.AIIdentifier.bg-dot": "6aee04adc22efb6cdb8d60b830ea6fcba86c1603", + "logo.color.AIIdentifier.outline": "342bfc3643e5a916607236ddc4d6d1229addd8b3", + "logo.size.AI.M": "840ea6236181a2a446dd992b2f877f85211ec3f8", + "logo.space.AI.xg.M": "b9e01b0611dcee1c94b1f0f49527f17a1283e090", + "nav.color.bg-default": "c20289a3ebe37707383b8259b014d64a4f7a7ddc", + "nav.color.item.bg-active": "84b24aa4d93ef105e302668b30a444b4195a6f16", + "nav.color.item.bg-activealt": "0dffaf7378b5c4324ffa443024bc30c0f95164b2", + "nav.color.item.bg-enabled": "6ce9b15040a4e7e0bc0ebb68e13d99b9b8b7a936", + "nav.color.item.bg-hover": "848af93c73466bf6a150c3586793016db77014a3", + "nav.color.item.label-active": "982debe9801aca402461c3751f74903655f74024", + "nav.color.item.label-activealt": "9997faa11976bc9df560dc6a62f2e59ebe7ad331", + "nav.color.item.label-enabled": "f611e7397ac57fc44433798811bc913d71316c59", + "nav.color.item.label-hover": "012da2516033aa836529af960f93eab5d6906666", + "nav.color.item.label-alt": "98102be75a1b9e4d5587fded9ef31b78b0e72606", + "nav.color.menu.bg-default": "36906d3d6048072bcc384355439d189c5b190496", + "nav.color.menu.bg-alt": "649425622bfb76795abefd14e424ae291acd6cd7", + "nav.color.menu.bg-alt2": "1fda48e60c42278d289a8c0abd8a2d1f200a8b92", + "nav.color.menu.border-default": "277b1e7970c90781b74cf249e5582e9c739e1c0f", + "nav.radius.menu": "31d367e4dc424f9f54e3d1a0a262b0215203175f", + "nav.radius.menuitem": "aba07f4523958ab04e679d32b473cf797c34e9bc", + "nav.radius.menumodal": "b14e6c31eadb905a0aada5cdb38819af475648bc", + "nav.borderwidth.divider.item": "6aaf1770f1e207dd13457ee810d653232af5a4a9", + "nav.borderwidth.divider.menu": "3dafeb6edca38a3d36fe50f946d763562db9078f", + "nav.borderwidth.divider.segment": "9fb4fe7505b14ddbac5ebf7b60af731ea5b07e2b", + "nav.size.menu.content.y.M": "942012e158d3856451b48b2e37d509b0e3cb2aa9", + "nav.size.menu.content.icon.M": "5c917fed46e4c1e13916d988d6fbb5087c904423", + "nav.size.menu.content.icon.L": "80b9d270fe7d57964743c0efa7d2ef33112cc36c", + "nav.size.menu.option.x.M": "fb20d933b9d5268937def8122ad580dad84ed033", + "nav.size.menu.option.y.M": "393562fff0bdec75cdfd62a51bbf1a88273dd69d", + "nav.size.navbar.content.y.M": "0a11abbf3e77f117b4eeb1cac6a28476694d2bf5", + "nav.size.navbar.content.icon.M": "afd800569df32bbee2da6b7a228dfaee4f5edad2", + "nav.size.navbar.content.icon.L": "d0db3058571b922f86facd1f718d912e45f5e29d", + "nav.size.navbar.item.x.M": "f0897065bac5a8e24649eecb841f5a958d20c2c8", + "nav.size.navbar.item.y.M": "5a35367c060831557c5c14263c0fb66dd30cae3b", + "nav.space.menu.container.x.M": "9f5c8b684563dfbcef753a0b6f40a130a332a6d2", + "nav.space.menu.container.y.M": "ab85414194125a547c56b38b0dc4be2943475949", + "nav.space.menu.content.x.M": "1d27af3c95d7de7daba2cb3562a2e7ae68b82ca1", + "nav.space.menu.content.x.L": "3eff2ed7b2ab6b529e04975708c4b1015b00d0a7", + "nav.space.menu.content.xg.M": "ee5231965beee798a1177469cd59cbbd1f000a59", + "nav.space.menu.content.y.M": "674dbf98588f21f968d408b53388975b636ecab2", + "nav.space.menu.item.x.S": "67fdabf111fdbe417ac95b3cb01ff4f0f88349d5", + "nav.space.menu.item.x.M": "d4143a1aba4a7abba1b94fe9694dcd793eea9fc5", + "nav.space.menu.item.y.M": "37b87c075788b3d0762f5b7d320340375f9fabe2", + "nav.space.menu.item.yg.M": "6e4708446c1d2f38c66ede916882aa0789ec1ed5", + "nav.space.navbar.x.M": "fbd73e576c8ddcb440a97229a572b85418ec466f", + "nav.space.navbar.y.M": "261e47b33d2414979a298297f7b7f6df7ae3366c", + "nav.space.navbar.content.x.M": "370d6738ac0660c6cb50b2f2c341da9c2337a1bd", + "nav.space.navbar.content.xg.M": "dd47e82ab1d455f2e67ca924a9be8a0a07fc63ce", + "nav.space.navbar.content.y.M": "7bedeb9b16e8b1f78cc696a78e4a539e941dda47", + "nav.space.navbar.item.x.M": "1d41442744f93ab58f95d7555fded37216fe850c", + "nav.space.navbar.item.y.M": "5251981f0f7d56b2c979e62e6b0c553c8ec29fba", + "nav.space.navbar.logo.x.M": "ac4f27279757f6a7474484daec00a7895341d32c", + "nav.space.navbar.logo.xg.M": "4cfaac084b2030f951d1e9c83a7466300bc3aa6c", + "nav.space.navbar.logo.y.M": "16092018c77123c64370c1a21322056a4b613876", + "page.space.none": "4c3b1d33531aa051acf96da285583bfbb56d51e0", + "page.space.x.XXXS": "d9e44ce002e65094dc05f5ab1e25b04002e78ce5", + "page.space.x.XXS": "b181d3749404c4eda29e4ff1c28e50c1bea0b320", + "page.space.x.XS": "3d73f20f849ed903815095f73f9b7a9ced2ff482", + "page.space.x.S": "81ab31a6f63f9dd929e7616efef06763b51b65bc", + "page.space.x.M": "08cf6b0689a4bd69a780ac2ef9b6160a3d635241", + "page.space.x.XL": "9e85f994dcfb32cdcc693f96aba72f6c917c0274", + "page.space.xg.XXXS": "0cc7fec597950e8c11950ada8b00b8c6273e54dc", + "page.space.xg.XXS": "96e1d3b2cb81c97d70f69a429689cf2b35345f61", + "page.space.xg.XS": "f9ef3ec255923b69b382f3a9efcc30a964450659", + "page.space.xg.S": "cb148ad65dfe430eb6e6b7159659cbd016e8dbe7", + "page.space.xg.M": "3b7fb43efd6f09faad157d694c96da7a3f742bd2", + "page.space.xg.L": "420390fc1a966e10ef486c81612ea2a2f97c17a1", + "page.space.xg.XL": "ef68b0ca3ac96b7f088179740de87e217a61a519", + "page.space.yg.XXXS": "d0da23eb979ae1ae64b703503c913d7668992a99", + "page.space.yg.XXS": "a2d76a7d9ab1ca552139f6b47a0e2bfb5505e31b", + "page.space.yg.XS": "f022a3e9129bbd323416054cf432d286a8a4ea3a", + "page.space.yg.S": "f3248ef9a47b16da9ecacb10b9df4eb39e929795", + "page.space.yg.M": "9ffa9089546a78e13f107da0e4e9afc30c25b3d9", + "page.space.yg.L": "349ab3c9a2f5a494be1afbb77ce1bd1b65d825be", + "page.space.yg.XL": "9f0c1aaac5458bd5ca0da348d0181058284cb119", + "page.space.y.XXXS": "e7d791dc5fdf219e6fd0ceafd009b6a9e4820d12", + "page.space.y.XXS": "8cab384302574cbcb142d35881f527fb06d6953d", + "page.space.y.XS": "68adff5b5b0c2149494de6842f61065bf813e913", + "page.space.y.S": "b6bdad590640f1c7711c01d956c42a51e278f0ef", + "page.space.y.M": "2112d78b4489685af10369a375ec8ff3939dfde6", + "page.space.y.XL": "8c16739a1de56ae7327dcc9db683aad4f11fd4cf", + "page.color.bg-default": "eae7ab52ece29003fd4f1ee1e649948db9b2fb9d", + "page.color.bg-alt": "9d2bdbfea53b3117ef06aea16c6d8239c3da8a20", + "page.color.text-alt": "12bd9fd34f2d3ed55dbb950c2d4ac349e5804184", + "page.color.text-default": "c01d5636b677e0a153a5602be335f079d589b13a", + "popover.size.icon.M": "f1e9c8d331c9d8715b0f480caf5a4f02a94ebe16", + "popover.size.item.S": "d8234fc202ce5ea8d8bc88b6ac7cc9c910caf916", + "popover.size.item.M": "c7a9e930af9d14525a8538ed306374ed1a601e24", + "popover.size.item.L": "8eb7f63ce16544fe026cb8cf6c48150b963a8e88", + "popover.radius.none": "7729c38be03b17d7a72f3ef2488a25f36258fc2e", + "popover.radius.container": "578c9feaacae325df780131438ec70bec12524e3", + "popover.radius.optionfocus": "303e32e23b5a5f56a8e95980c95ba4659534bd69", + "popover.space.menu.y.S": "50b73e720a5597be532ceb1295ef18eb786ec92e", + "popover.space.menu.y.M": "c85554061edf75ae4257f0a25c3ebc1d22673f93", + "popover.space.menu.y.L": "3b7b459d9e42ca732af48542ed12b19c08540165", + "popover.space.menu.yg.S": "c272b3a7ad57d959cd235161529acec5357c51d8", + "popover.space.menu.yg.M": "c9caf8296369a978afd99c9f5e04abf1aa8846c1", + "popover.space.menu.yg.L": "a9d25b3b8d2280f1b8471228b2e9e6adfcc74a94", + "popover.space.option.x.S": "63c7a05c6b9cf59afc37a20603272ae9ec184e60", + "popover.space.option.x.M": "5393f01de920a6c525da46aa59fee40f3ab2ca02", + "popover.space.option.x.L": "79d1a94d3ad1ab83a30c5338c0d144ae4578fe54", + "popover.space.option.xg.S": "69b3ccc718ec1b18d594d53c4f27562826f3d128", + "popover.space.option.xg.M": "7b3c838ec86aaa7c49559784d3ec6f7e94ca85e0", + "popover.space.option.xg.L": "06cdad998a8286b9ab849433827f82b8146b6d58", + "popover.space.option.y.S": "c64c40c7885d19d27ad92ed70b04bd06e64bae4b", + "popover.space.option.y.M": "7df198f0f920b331336778885bd891a73e584e28", + "popover.space.option.y.L": "47b453141a88f6f893c67b6282f26f58562df30b", + "popover.space.submenu.x.S": "d2e9d4c590f08cea90b7ad8b52a4ce1fd7324896", + "popover.space.submenu.x.M": "14318f704975f1f2f61e7ec9cce4be1146e309f9", + "popover.space.submenu.x.L": "6958f71811269d5d19098e482c37c1b87d04a9f4", + "popover.color.bg-active": "dc2dd96de119bc1a7b6cd7f3b2e2090f1d7831bc", + "popover.color.bg-activealt": "d01ba90620be933772db57b18c0e087a58985a98", + "popover.color.bg-default": "d54f5f41bb3f96da788226c934b3f6e4ddff62d2", + "popover.color.bg-hover": "2bb22e209751803082dfda2b4a5952e77aefe530", + "popover.color.label-active": "1bc8747c12ab03869fd608f9bf0695e493feaf7e", + "popover.color.label-activealt": "36a438d9fc6c524cc18008d28430c8c0aa301239", + "popover.color.label-disabled": "269f93595159514064400fcb11102e324dba42b2", + "popover.color.label-hover": "65b11448c1cd42ddc62b7249fd146f9c78b81e9c", + "popover.color.label-enabled": "40060a0d39cd1441bd95e31c1e6a3fcfd43f3a32", + "popover.color.submenu.bg-default": "92f43758b455eb8c56a13c2f35767cfce851b9bb", + "progress.size.bar.S": "718ff61ac9c34247c0167f1de8938b54a188603f", + "progress.size.bar.M": "a3a0b404dbab8f3d47fa3d21118e8588d97b3e87", + "progress.size.bar.L": "cad9ee8d3fe0cc3ddb54e459524fe7331f8f5fa5", + "progress.size.carouselselector.dot.M": "f506f9668460afd0eb93e6add518be2a79ff540d", + "progress.size.carouselselector.activedot.M": "b144a670e2877553e6da4f88709016f518e6e60f", + "progress.size.carouselselector.hitarea.M": "4741b2a717cacca6733fc70e3676ca360feb7024", + "progress.size.carouselslide.x.M": "a4b62ee1d0976778d608451bb86e5926aed1988f", + "progress.size.ring.S": "6fa7e50552ddab3f075bcf4d8cd4da766cd02bdd", + "progress.size.ring.M": "324e650a3cd0935983afcc0adfca7a1b8f80778c", + "progress.size.ring.L": "c8c9f57b619801bce5c954556957574e82ca08dd", + "progress.size.skeleton.responsive.text.XS": "5025406aff7aa0df6213a62ec2a45fc77084b17d", + "progress.size.skeleton.responsive.text.S": "2357ca02ef6aa7e130944942fd92f92d09e12ee7", + "progress.size.skeleton.responsive.text.M": "fc229283f308f828831e8f634edbd6d4ce8f7bca", + "progress.size.skeleton.responsive.text.L": "ac8f9d8570ebfb88fa194cacfad91237be55d4b3", + "progress.size.skeleton.responsive.text.XL": "9ea1024c7fa863ee5a8320cdb9b5b1a1e85c17f3", + "progress.size.skeleton.adaptive.text.XS": "43fc98104ca60f86e3c5e3ca74c7c1003b129e31", + "progress.size.skeleton.adaptive.text.S": "8cf36a335453058f46f6cb6a70232bfba46ccea6", + "progress.size.skeleton.adaptive.text.M": "dceceacc00f9f184b7b4f87616c0f04726a36853", + "progress.size.skeleton.adaptive.text.L": "a4ccf5ff094e1e7688aa7a123960d3a51ccfd0c1", + "progress.size.skeleton.adaptive.text.XL": "9dec82266a84c60ded0de7a3c2ad2c0253833c48", + "progress.size.stepflow.M": "8a3c98b5b0d26aff62c467cf97cc0e74c534874c", + "progress.size.stepindicator.bar": "32ba5969e43b6f6ae6f0c00c9e35afb85a11ff9a", + "progress.size.stepindicator.stepcircle.S": "a55ad771c329b63941722e3c02386928ffc66e17", + "progress.size.stepindicator.stepcircle.M": "012d1e8bb5f6059059656ba2155948fed3d5b637", + "progress.color.bg-default": "5e5eef061675c09fdab6e25644d00bab18b0631b", + "progress.color.border-default": "249e7cb3fd86b29c8e4118e63aec7db5191da3cf", + "progress.color.fg-alt": "76af5855c09d2a52ae17f32994c24ac281e29efd", + "progress.color.fg-alt2": "6d0573162901106ecc6c6f6d31296e1fd6b530c7", + "progress.color.fg-caution": "984d8913bb57289f228380cd22231ed905467bfc", + "progress.color.fg-error": "a4b614c4575509cd2602b756abf2e33259fcfde2", + "progress.color.fg-info": "dedec29319a9567ce458e2f7fe5c50433c381bbb", + "progress.color.label-alt": "a0ffbafcc2a21f5f052097ecaa48a6e72f25f660", + "progress.color.label-default": "b2908ca5d930099cfe4b10d979f3b185730946e1", + "progress.color.datavis.fg-default": "cff357250b27f66dfcc0bccad7197995318948cd", + "progress.color.loader.bg-default": "9942537975dc6f8dab1b4373ad2997c7c39e8065", + "progress.color.loader.bg-alt": "2fe7a47a838af6740e2b0a1c344ea05e9e3463e9", + "progress.color.loader.fg-default": "1228162d10254417ec4a275e91984409df44a3eb", + "progress.color.loader.fg-alt": "ae49b86487e447c821d7d87d353485cf97ab4fda", + "progress.color.loader.fg-error": "5907505b88cfd15e7f81a97a65890103b54d9c2e", + "progress.color.loader.fg-complete": "10eb4d680e6e8941e0e1aa5b5d4140976ff7407d", + "progress.color.stepflow.bg-active": "3b2263e1e268c06ee76be6ec5642cfd98155a0b3", + "progress.color.stepflow.bg-complete": "95d4dbd98b93d22451be8ed5090d75aad5ea0346", + "progress.color.stepflow.bg-default": "99e3d23184bc00fb08fc9848e6ad052b2bb5f609", + "progress.color.stepflow.border-active-inner": "9d767b130df7bafc24195cdf32ce7ba5f6e1a9fa", + "progress.color.stepflow.border-active-outer": "9342d8803f700b405fb646a4b08298e74ceaed2d", + "progress.color.stepflow.border-default": "67a39d5779d7f7a1c30d3267349e6cac790608d5", + "progress.color.stepflow.label-alt": "5782a69592a11afce8ea4ff5c72584607936d4d1", + "progress.color.stepflow.label-default": "e25667a857893ab0de65321be72f2273adc83ed8", + "progress.color.stepindicator.bg-active": "5944da3ce78302ec598f620cb9f3b3676d90b6aa", + "progress.color.stepindicator.bg-complete": "8937aa1d8eebdcfd48c9d75f8e33e6a0735a7156", + "progress.color.stepindicator.border-active-outer": "b75affa668bbb742b6c82ea48093b3eeece1603d", + "progress.color.stepindicator.border-default": "60e3ef13b3b3da30a0dd4d52c7ed55c7cd583715", + "progress.color.stepindicator.border-success": "c58f46506d2e904311e9e1a9153d552b0cf2cd48", + "progress.color.stepindicator.label-active": "be75a9c37e7a4bb60cd71bf44062fe3bcfd88f21", + "progress.color.stepindicator.label-complete": "631d9322eb8cd5f33de85e1a3aae51ae574213de", + "progress.color.stepindicator.label-default": "a3852229c543f2d51a3cb512642f63f3cbbceb66", + "progress.radius.none": "bda42e81383e4990df0247a4c580c1861d0caf9d", + "progress.radius.stepflow": "bfbaaecb65fe01991b0024e9ce9449dc50b39abc", + "progress.radius.stepindicator": "cf19c74ac5ceb4057763707f4485f904e6162ecb", + "progress.radius.carouselselector": "dcf12a62af4951afbbf1ce0a55d3fdfad717476d", + "progress.radius.integrated": "a39fefabda84433e4a1a4a3dfd028ba60f7a4185", + "progress.radius.skeleton.moderate": "5e0a3a25af519fcb89eb36ad7f5922c40d577ee4", + "progress.radius.skeleton.curved": "b39b75ea413bda7056b4979573f38d0bbdfbd28d", + "progress.radius.skeleton.sweeping": "a8e8d5bce155977e798273e5f8fc7163ab1c4b7e", + "progress.radius.skeleton.circle": "139ea65b18c5c08cf05215ec64eabcf7d43c6f5d", + "progress.radius.bar.S": "c945032658574b4c7a65ae0671d08351f5a7719d", + "progress.radius.bar.M": "528e00bda573e8270114d7eb95c525d6467192b6", + "progress.radius.bar.L": "3bfcb32958c00aa771394e2c438a53839bcba933", + "progress.borderwidth.bar": "4e65a624a89edf7e8b43b71628e95e9acb14a616", + "progress.borderwidth.carouselector": "826aa32e36c1e01b7ab0ee9151cfd7bc9cd071fe", + "progress.borderwidth.integrated": "7c2489e8c13f4580660a5af4a8c82407724cc9c8", + "progress.borderwidth.stepflow.inner": "910e45c54fd09d3c054d1e98a8cbf81c7af140b1", + "progress.borderwidth.stepflow.active-inner": "736d75e48061efb5b107894840498b862673f499", + "progress.borderwidth.stepflow.active-outer": "1aa09bf55dd707af2b0d3eff4a62b3ea01aa2e8f", + "progress.borderwidth.stepindicator.S.active": "82aef748c35bf68bbae446b0e056cb7316e3ab53", + "progress.borderwidth.stepindicator.S.default": "a4dc15f692fac6b2780f1ee261d62ed5fdbcac75", + "progress.borderwidth.stepindicator.M.active": "62f7c6352918cac09bd310036e48af3333e33df2", + "progress.borderwidth.stepindicator.M.default": "18cd10085e0a53cda0e765c42eb717b6d5c3b2cb", + "progress.space.carouselselector.xg.M": "a2ebb3970ef72c7d0d9782bca09f90441efa2400", + "progress.space.carouselselector.y.M": "2affa450da4c7ef55c57610c43593a104138852a", + "progress.space.integral.x": "c3eb26de427594f7f1391b9cd41a341eefe9b502", + "progress.space.loader.yg.S": "edd76b7799ae5c0668fa1120329452b0555a507a", + "progress.space.loader.yg.M": "2be91b421179770189dc92016623dbcc0c72ab63", + "progress.space.loader.yg.L": "ae34dfe640814559eacc01aade838653cb0f5f99", + "progress.space.loader.xg.S": "1c27d60ab210dd6a39f4d29991e01110ad2d9985", + "progress.space.loader.xg.M": "4baf0e32569a06cc019ae0696fdc3de21a9db448", + "progress.space.loader.xg.L": "20c102f769dc9290a9229916def26af80588db38", + "progress.space.skeleton.multiline.yg.XS": "4a551e3434a9ba2d980f3a2083412febbcc87f8b", + "progress.space.skeleton.multiline.yg.S": "d57a61f477cd31f6ca36b3e49cc9f4d9dced3fd5", + "progress.space.skeleton.multiline.yg.M": "2e5a56f1d8e71d17c6ac11ccbcf2d75a0bf56442", + "progress.space.skeleton.multiline.yg.L": "b85445ed6a7a5263f7369405d04490dc241d48f3", + "progress.space.skeleton.multiline.yg.XL": "037a93ecebef64453bfb840f4b579d3adda6fae3", + "progress.space.skeleton.multiline.y.XS": "aa0bbb0216400616958fd53fe94a1e38b433d44e", + "progress.space.skeleton.multiline.y.S": "68f50063f16f9751ab267fc46ca89ad47cfeea47", + "progress.space.skeleton.multiline.y.M": "b75b44db441d2d769026af3eb594ee952409abca", + "progress.space.skeleton.multiline.y.L": "fe087813daad624ab8ed4b44c2041a887307116c", + "progress.space.skeleton.multiline.y.XL": "d7ad528e311d6b59789aa0c402cb1c803d0ded8c", + "progress.space.skeleton.singleline.xg.XS": "493fc312f3e6003e93c14da57d4195e4677318b1", + "progress.space.skeleton.singleline.xg.S": "65ea3bbee4f36b1b436963a476f3db149d730a71", + "progress.space.skeleton.singleline.xg.M": "3a6ac1b3190cca95b35a41e77677b6cdde32e0f6", + "progress.space.skeleton.singleline.xg.L": "2a07b9224053bf4b71dc3032a92aa45ab7b1ff61", + "progress.space.skeleton.singleline.xg.XL": "d3241ae7c4bc8ce975152e1d70be851bcb318c2c", + "progress.space.stepflow.y.M": "611c9b140308fa8c5e9a73d89d2b134b0f6ebfec", + "progress.space.stepflow.yg.M": "4be075065326964972d1f088f29088c7d16eac56", + "progress.space.stepflow.steps.xg.M": "e4388f9b8b7779bb41647cf61435135d81bac93e", + "progress.space.stepflow.steps.yg.M": "1c8de9f81b39115dd05cdb4e4fb1fe98705f3acb", + "progress.space.tracker.yg.S": "145d56f69edcbf89a1cb7b43ae1a5a1d51dedaa2", + "progress.space.tracker.yg.M": "7b04a95e5252c206693bf5bd0baf05bff909c007", + "progress.space.tracker.yg.L": "45c30204b1f9f26d01781a6c3c82841d59252321", + "progress.space.tracker.xg.M": "9065aaa75b2c0afeef9a45d1118f5f1209e25fed", + "progress.space.stepindicator.generic.g.S": "7d9a636331eca53cb448390ac4aea31c441dda64", + "progress.space.stepindicator.generic.g.M": "5cec4985bf7d1c3fac345f6f07a271e0f2cf4b09", + "progress.space.stepindicator.generic.text.yg.S": "24dff12de59074c4775c70003ecab0240af249ba", + "progress.space.stepindicator.generic.text.yg.M": "f932d1e9c9899322f3c68ce0720c6d0e7c438bbc", + "progress.space.stepindicator.generic.visual.g.S": "abf71f376abe229c9762cd64aeb2d47a1cf8dd06", + "progress.space.stepindicator.generic.visual.g.M": "e43247543186fc52c554fa94da206f5368211a8f", + "progress.space.stepindicator.vertical.y.S": "a45438edec4d0028d863b19b48664eda0266e5ca", + "progress.space.stepindicator.vertical.y.M": "dd87942b821bf1c403e6632ff4d9605f1f4211fa", + "progress.space.stepindicator.vertical.text.y.S": "b03dd820974943eb4c30d2e41b8fc2bd303e75f0", + "progress.space.stepindicator.horizontal.text.x.S": "4a5e19db2b691b8df3fe679f957373edcd2628e0", + "progress.space.stepindicator.horizontal.text.x.M": "b14368abd2dded129d441883d0e891fc30d4e8a9", + "progress.opacity.carousel.inactive": "e0b3e4d29dd18cf2d4f70ee5f73531832908dd62", + "status.color.none": "9c94b65013fe01b3c70b7f5cf23ada34e27778a8", + "status.color.bg-default": "c184c107cf5a72e530154b91bf164e6d6cafa328", + "status.color.bg-readonly": "b73ee7c05e253426392213fa70274974688df494", + "status.color.border-readonly": "04aa9addfd8a9781bd74a57b61954df24fd39f2a", + "status.color.icon-default": "d5d318b21e5a8ac2d64c1f6f277f439976ca8f73", + "status.color.label-default": "867ba5c4a8ed7434f3a481ed2e3266444b13eb1c", + "status.color.label-readonly": "9e5639ef075944538de5db0f75c45eb711c64f6a", + "status.color.label-hover": "1502a4d36ca222ade1de748789a49394676b976a", + "status.color.labelAlt-default": "02e16744312284bf87c9ab0e416c7f4194dddb5a", + "status.color.labelAlt-readonly": "74994d3486dd228288df3fb605fbbc79df0f1998", + "status.color.labelAlt-hover": "d49121e95982f4f273e696ae3ad963f16e44e465", + "status.color.text": "5109a6761f1ec09aaf554c427198b17277509876", + "status.color.AI.bg-default": "a733dde9f8730676a5a631311de0e8593cdca3b7", + "status.color.AI.border-default": "c77050b8329e7ac833fb51861416c2337122f6d9", + "status.color.callout.bgAlt": "03c5986c6c278e08afb58974513613ad14869697", + "status.color.callout.bgAlt-default": "e57268906bd6d63de73023a84ffe3786301da10b", + "status.color.callout.bgAlt-hover": "8f086adfadbe1db40b7738446ea9ca8242b53cdc", + "status.color.error.bg-default": "3c095141e9cf16be7b6e8fc906ac7464e417c891", + "status.color.error.bgAlt": "d148be733033e2b724188212ae7d78a6016426a9", + "status.color.error.bgAlt-hover": "36067b72a77c3e2cbe6397d4a1e1ccb9ad323797", + "status.color.error.bg-hover": "2414b93fd2a46099726dc9fb72c504d9271bd640", + "status.color.error.border-default": "c08c11acf8009e1b9b243898aeb8adf59c6a6bb3", + "status.color.error.icon": "06f30563c187ffeed814fbf87875c99b5f396112", + "status.color.info.bg-default": "d05753e2fcf4ba6d5db6e916ff467e6effb50282", + "status.color.info.bgAlt": "7623e995eddaf130e9e58bca59e85f25181633f0", + "status.color.info.bgAlt-default": "d8cc6951addc97749232bdfb2cb54c987fa57365", + "status.color.info.bgAlt-hover": "34a0272faa1a09533e6b099170624479f1f801e5", + "status.color.info.bg-hover": "cb9604a097f597e71c657084a5c15c1716c69601", + "status.color.info.border-default": "92895f346ee23aa6a06051d4e1e8b408cef08f36", + "status.color.info.icon": "0e94147d48b643836766796212ca4ae269a22e7e", + "status.color.neutral.bg-default": "db13c51702081fc1df4b2430aebc10bf6ed26f7c", + "status.color.neutral.bgAlt": "52d65c07a7c2aa22badf56321b89620bc25f06f1", + "status.color.neutral.bgAlt-hover": "8e28c5e63d00216ac1d6c37b6f5cd77257e4ca97", + "status.color.neutral.bg-hover": "354201f0b8988b103c2d959a65cdb3f4eab34982", + "status.color.neutral.border-default": "c0bfc43a5cf2437e5e3e58c640fc674012e4b11d", + "status.color.neutral.icon": "705e83d3892a940e7d5b3ec982e4c1ba0fbac4d0", + "status.color.rating.bg-default": "2ca253f3c33b0595d3ca575eea21234d33ad293e", + "status.color.rating.bg-hover": "533b0fe14cc0883d889c1ecdbbe4edf1354ad210", + "status.color.rating.border-default": "5b3b0fe3ff286d065087b09e036bbdaafd855588", + "status.color.success.bg-default": "e54c25d09db045458101d4782b73227b4829ffb7", + "status.color.success.bgAlt": "82df6e2d686439ab70c610e52a36d8f9c9ab5939", + "status.color.success.bgAlt-hover": "7729cd58cd03ce00cada450b218066586c6b7813", + "status.color.success.bg-hover": "517861aa1aac5082c40ae151a6a7a211bc02018e", + "status.color.success.border-default": "5096c1bd6d2564bdae49c91908af7058ab7bfe6d", + "status.color.success.icon": "21259cec864819900ee2c5a94e9f8bf6dcb37bb5", + "status.color.warning.bg-default": "00331f828ed3fc4946f76918b540719c4cc09270", + "status.color.warning.bgAlt": "d99551602e113bbb88150a5dfdf0867b6dadb8a8", + "status.color.warning.bgAlt-default": "9c9312936cc3637991d241bd3ee2922a3646f165", + "status.color.warning.bgAlt-hover": "1202dbb1091770a5fc41468b0a71804f491b8c9a", + "status.color.warning.bg-hover": "6c1d23d8b776dee456a98f40f69bfe3f2aea93e9", + "status.color.warning.border-default": "8be0ca1ca4bffc234290465b7a0618ad3749a51d", + "status.color.warning.icon": "a48bc35271538d99f47f4a67602315c0bcbb922f", + "status.size.pill.S": "49a4c4ffd792ce1e04fe19db73d607e2bae11db9", + "status.size.pill.M": "18db39f595c930760c22617868173d86c5ad2b29", + "status.size.pill.L": "cae31fb2ad64308f26681c18e771178417dc4d77", + "status.size.message.statuscontainer.M": "a2b738cc725e38c1ac6b269b8f2b4cbacff767d3", + "status.size.message.statuscontainer.L": "ab69b82898963f1dc83074ee669b9d5ffd1f2193", + "status.size.message.messagecontent.maxwidth": "6ba184feaf45cc188c36c372065b344091976bc2", + "status.size.message.global.M": "707069a15f6a5bbc3e51aa10afc8ddd1f4a11260", + "status.size.icon.M": "d6e4c0a7fce258521c47205749c182e9e7cd959b", + "status.radius.none": "0e7313dbe9272c0e9999e4f4576ea43a0a23e996", + "status.radius.message": "666102b9edf21077e59815411ad1cfa13ded007c", + "status.radius.pill": "ecfcbd56d1c07ba24b69f91f2f0a017a057ba3c0", + "status.borderwidth.pill": "f02569c412f76123b5a9672ebe6f57f9f8a9810c", + "status.borderwidth.message": "5abd8462f0b580e54576c4b9d2e3826d006fdccd", + "status.space.none": "11211d01586555a963246046507d8a6db8ed73e9", + "status.space.integral.x": "bf93216946abfe3513eecfdf843d205fb1902090", + "status.space.pill.x.S": "9ccb55d0a500eb9142c4482583acc3f99a4e054d", + "status.space.pill.x.M": "f7be2f73e6618d1ea8d1e8546e623b770b780b5c", + "status.space.pill.x.L": "8afeabf3d26a3fe5f416f81c38a266ba145e7fe9", + "status.space.tooltip.x": "d7413aeb32b01b49b1b5c6e87bb3104b9aa10b99", + "status.space.tooltip.y": "21e0fd429f76ea93e4446bc7e04ff05be6efcdf5", + "status.space.message.contextual.x.M": "97114ed8f477662443282a286381d97571ccf023", + "status.space.message.contextual.x.L": "2e0a653999577e917d5f9e8c4b415f8f4091596f", + "status.space.message.contextual.y.M": "1f0211e6d70fbb50ccb30be0aa98b1236d2fed68", + "status.space.message.contextual.y.L": "23b5ab65cb6bb46aaa6d002c8efe28b21fdc269e", + "status.space.message.contextual.xg.M": "5dfa9f1455c533f9d29ad51018f4007e6bbe82a1", + "status.space.message.contextual.xg.L": "e5aaefc294664a33f1e84474a0b0718cef2189a9", + "status.space.message.contextual.yg.M": "f01976ca2df1a233e4953aed28e25344b6a49258", + "status.space.message.contextual.yg.L": "8fbf6456ec5c998f18ff5e04916e5562e1b68158", + "status.space.message.contextual.subtle.iconwrapper.y.M": "ee90ecd83ac742f0090a49d7781bad646bc8bbaf", + "status.space.message.contextual.subtle.iconwrapper.y.L": "88e32a43145051d41e82c7ddf005dae69e409437", + "status.space.message.global.x.M": "6bc3c7214994b627785c269b52a8522e67be683d", + "status.space.message.global.y.M": "0c7c01dd50fad59461ac3077634aaaef77c26a18", + "status.space.message.global.xg.M": "a5b640bb24b1f43d849cc50d4b49acfe78873793", + "status.space.message.global.yg.M": "74b78c6f5373050214c063d8071ae513bfc29662", + "status.space.message.global.CTA.Y.M": "f08dd22ace9116dc5b1d62c2857e81c00232bc90", + "status.space.message.global.CTA.yg.M": "7d36f3ca4f30f5229d32fff8afdc4521c33d04df", + "status.space.message.global.iconwrapper.y.M": "942ff02363a89293193f0473e5b22ce1b6176d7b", + "profile.size.profileeditor": "b648e5eeccc41c7f3e49d8e9a108ddbefa678d74", + "profile.size.outside.XS": "7badefbbbcef4c3d9fea09fe0d39792cc77757f0", + "profile.size.outside.S": "b50c47531b9694117a5bcfd0c1b528e3e7544748", + "profile.size.outside.M": "af55ed8c67130e657a7106e18f410ce38465e2ba", + "profile.size.outside.ML": "0c569746e9104066ce3b9861cd651999b98abc59", + "profile.size.outside.L": "c8ea1532e8c61458133dec2c5acb75e150644d0c", + "profile.size.outside.XL": "d1af9f079edd04502226fdd44cd21f67dd63741a", + "profile.size.outside.XXL": "7b4696d90c9b62632de8202ad40ebd149015eaa5", + "profile.size.inside.XS": "b8796456ccbe74bcbcb3dd6f318350c9a04c2051", + "profile.size.inside.S": "342a44d729419e766a4bb454864d270964058bba", + "profile.size.inside.M": "f91f6e435f7d55bf249e3df1351b40624167d0b4", + "profile.size.inside.ML": "fa1bf4857cbff58a261889469465226101455cb5", + "profile.size.inside.L": "4b773c1bd32e28de70ce22af10de0033cda0c0e9", + "profile.size.inside.XL": "22b6259180298b5b6e1b5e6eff7c84127db7e561", + "profile.size.inside.XXL": "9e1766c9554ccbf69f60c2dcbe8f8903ad0733a9", + "profile.color.bg-alt": "ca050229c9ae3b24b810cd408ffeae2059602c47", + "profile.color.bg-default": "566353f2b24b9edd1bb531a9427c02d757c555ec", + "profile.color.border-default": "c78a3099f90c04c2452e353cdcdc488765c1a554", + "profile.color.label-default": "d829642b17ef204889c634e8800f4da4ca4246f4", + "profile.radius.portrait": "b258594cfe9452243d2f5f236e4da8be3b78b07b", + "profile.space.none": "44c9c6ecf7896e99fa32f412e5d258fc1f63f915", + "profile.space.x.S": "918e5c368b0c3951f2429cd093875c23aa7b8793", + "profile.space.x.M": "7e25ede9360210112c904f71a1cfcdf593852b51", + "profile.space.x.ML": "b0d5c61f52bf1fd3a9778c9c1780304879e13444", + "profile.space.x.L": "649fc1051931c85e3b221451a6124867ab817488", + "profile.space.x.XL": "2ea9898f8529a2f06a96d4903c0cd564459ecc43", + "profile.space.x.XXL": "962ae702c40b4198953fddbf73133eae16e4d887", + "profile.borderwidth.portrait": "e02100d66d5834f36b4659ca95aa25bf24df3937", + "tab.size.M": "e3b7a6c8ee37fe28327b01852aba97cfff7bd4f5", + "tab.size.L": "bad8373374528502aad7b1ce23f4dede815d37fd", + "tab.size.shadow.arrow": "1e1bc37b55b2dbec64cc6abbeea4e316198c30b2", + "tab.size.baseline.M": "cc7156e951796677aae84d1e0c4733e9c422453d", + "tab.size.baseline.L": "7f1c1a8253c11ebdfef314664b645b6fd94478d1", + "tab.size.icon.M": "fd6e846c110b477f48f7d6163264d75267e10a84", + "tab.size.icon.L": "9ea7e297076e2c111c6414ad56659d1607418caa", + "tab.size.indicator.M": "d897329601d630961e5da3e045ca6640c8a5c2dc", + "tab.size.indicator.L": "8a5b7f9f05ac3af7fea4de55792d60b03d18d584", + "tab.space.x.M": "9928d03f930c6b4fc41b225b7b487ee7819fabc4", + "tab.space.x.L": "cd32b0bb5959fa2fcdf3271fa893eca85468e570", + "tab.space.xg.M": "a144ff737265a5dad6bc6c0c8a6e5d71b16730e1", + "tab.space.xg.L": "0e6b384fd263cabd704c5e024522e2f636507864", + "tab.space.y.M": "e46b8ecc74fc97d3cb7198937e75e847a7f662c8", + "tab.space.y.L": "b48202864a16ed7b181715995183f6be9f73e3f2", + "tab.color.bg-active": "3d8c8eb4c47d4aea0477be5dc8229b42981f9383", + "tab.color.bg-enabled": "d8657e9dcf7dbaed6b4bfe081c520ab35e05a53d", + "tab.color.bg-hover": "5a423db0a74e578a55e9190169ed5706b8a008f4", + "tab.color.border-enabled": "ab9fa748bb5194e0fc3e265ea50d015bb014fd2d", + "tab.color.border-hover": "c5affbe1329789237c379a860684f3034b0933e7", + "tab.color.icon-enabled": "6d4c0c7c30992888d09c794ab70a3c3ce7b9baef", + "tab.color.icon-hover": "f6d224fe972b8d484006cd2b251b48e9c6f6144b", + "tab.color.label-active": "19d3a9036e6e2b1271ff32b81fa50191cbffa142", + "tab.color.icon-active": "a882447b658aa26b2694f1b6ebf26eaeb98d6e43", + "tab.color.label-enabled": "691226bda8fc13bcbfae1e7e409dd8aacfc9e44f", + "tab.color.label-hover": "f8c367d3dca0e458c0a4937e5d4a65b01d58ba26", + "tab.color.navigation.bg-default": "e3facc8423ab67d4d5beeae1562fece5da868d02", + "tab.color.validation.border-warning": "cf2e74be918f9b6ed3c2e2a2bd205c64cae48778", + "tab.color.validation.border-error": "f794f4e18be75e8014786527f9dc50e4f9301a29", + "tab.color.validation.icon-error": "2a84d8b14c0b61c8dedc46a7e132b387c0473e88", + "tab.color.validation.icon-warning": "d80c2c82b2874fc2e4991f1a16cb809bbd985bb4", + "tab.color.validation.label-error": "53a0ff785743de5a0ee37d5e13f09db2f830c9f9", + "tab.color.validation.label-warning": "8d1ee1f205e7b283b63136f83acd7870e20dca79", + "tab.radius.M": "553fe1a26d9c1a1ccbff1a636c4fbee13279789f", + "tab.radius.L": "d0fa4522d4d623a7ca880177850c7db719af6a5c", + "tab.radius.baseline.M": "837044670bca0637a7bbd2b1eac1095a693a5479", + "tab.radius.baseline.L": "5f8370d40ddb7f103454d930e67608ebd8d241f8", + "tab.radius.indicator.M": "8248855dae76de8c96aed35deccbf3d61323138a", + "tab.radius.indicator.L": "6886a7024199b08d4dc4dd808caec1d12367ede7", + "tab.radius.none": "6d620fe223712ad31413622bf9ce4b335d35ba0b", + "tab.borderwidth.navigation.bottom": "92d017bcb914d3845f9acc5f43316a19f909bac5", + "tab.borderwidth.navigation.side": "83f46aa396c87fc53ca29cdb4c94fce4cd0bb350", + "table.color.header.subtle.bg-alt": "a600e4e5f34f1597ea7be9338cff74f395fd4f1d", + "table.color.header.subtle.bg-default": "ed04ab8c95edea05ffca7ffa15d6965a1f0ddc86", + "table.color.header.subtle.bg-hover": "9e74bf051bae01ad69e984549b974db65f370372", + "table.color.header.subtle.border-default": "43e0fb1c5d6aef08b3565f341e78f23ff92fffbe", + "table.color.header.subtle.label-default": "0e9269b3c42f0be49bc23d396d6bfc0dfc4b2773", + "table.color.header.subtle.label-hover": "c709dd0ac0126cf28efddbbf1ce54cae18250de8", + "table.color.header.harsh.bg-alt": "64381b36d62587948d8b25dbdde6fb153f3cfdc6", + "table.color.header.harsh.bg-default": "97a4973da1e0c7c897d51494939836e15c3dfe20", + "table.color.header.harsh.bg-hover": "5ed94709c903acfc9730564e1bb1648df15c1d6c", + "table.color.header.harsh.border-default": "1c718bc35afc40d9772c7ec7b2ad805e35c0b523", + "table.color.header.harsh.label-default": "d5806cc55e3bd7066985ba97e8a21229f8eb7921", + "table.color.header.harsh.label-hover": "d0168415e34266c945dd9b287a9080f03a3b152f", + "table.color.row.bg-activated": "b7f77b56ea065750a405344c81c2d76d55221676", + "table.color.row.bg-active": "a2acf7057139096c90e02dcc80013589ed8f1004", + "table.color.row.bg-default": "149ee0b272d956c7b1761eea8c6c1c461de60609", + "table.color.row.bg-alt": "0a82ad0f9ca42f2600b526896f0b316753996699", + "table.color.row.bg-alt2": "7eaf175c359eefd1f885ceed854207c6da1e0fb0", + "table.color.row.bg-alt3": "7efe4f4d39c0ca29fb4e2decc4df41602d827d68", + "table.color.row.bg-hover": "50511c4672e130223031a2c62615d77a87d09ba8", + "table.color.row.border-default": "952e1585502d1c722ac02c92caddb76218a33be1", + "table.color.row.label-activated": "3014e365945e18a5ebc437d0ba7730577b496da1", + "table.color.row.label-active": "d981b9984ab6abb3bac19d34ecb48179566fc4fb", + "table.color.row.label-default": "9128246a4096ea7f3b9a19445f214222269e80e0", + "table.color.row.label-hover": "f91d62635fca55f4bb903c0c31b1ba407add9f2f", + "table.color.footer.bg-default": "1bc4224897894a2f47ddec3e2dcf92cd1a58a99e", + "table.color.footer.border-default": "9a1f5fc47e58f7b97cb1a562ae73f9c6d3ef8c79", + "table.color.footer.label-default": "7bb1734b6229e3c5a495862974a2ba0b9dcdb92c", + "table.radius.container": "0bfdd27dfe937826a557d23dada8a95a2dd3e8b8", + "table.borderwidth.thin": "fdaddf961eca81ce68139805b659fd121ef51a06", + "table.borderwidth.thick": "d6785095e0eea2049dc123958e1a794f5723db52", + "table.space.none": "6cc04478b8d835707a536a0a0d41cce9f8c0a03d", + "table.space.row.x.XS": "df54cf5ed34c8c95f3221d43ba054e6755022260", + "table.space.row.x.S": "00b382186f9a76ffac948738694f770e4185a0ab", + "table.space.row.x.M": "16d3a85562f70767535cc04dc59011a8e8f97e04", + "table.space.row.x.L": "3d5b5c3612012a76d555ff6d2c682fcd18e8911e", + "table.space.row.x.XL": "efe86ba5e9fc98918f18adbea60875660a911249", + "table.space.row.xg.XS": "02bb04a327ed90847138a6013ccdc83af888fa68", + "table.space.row.xg.S": "5672b068c09b4b7e0f5187333a95885f25830482", + "table.space.row.xg.M": "46e957e4f8951a26c57ab29aefeef1a72065c484", + "table.space.row.xg.L": "4fb2cc7e6ab8bfc773f695f590a0b9c90acb493e", + "table.space.row.xg.XL": "0dff80f899613661c2780eeb85d0f2154d544f1b", + "table.space.row.y.M": "a7b9d8d760d4ca785bd3fbb7e62e76f9c25a8281", + "table.space.row.yg.M": "a522b099f0210833890e59e5d0428af4f487fc66", + "table.space.rowchild.x.XS": "cff0d2b0fcf6d369f4f79c37c082dd8dc84bd810", + "table.space.rowchild.x.S": "1a3f71faeb61e919167d02452bb64c16b6abfcbd", + "table.space.rowchild.x.M": "096ad054c1d8c47d293321695a4bc03df65c7226", + "table.space.rowchild.x.L": "36edf4b358f765370e39df704244a7fd9ebf3c34", + "table.space.rowchild.x.XL": "02b44f02914572f126b10bba5f51225368f5b562", + "table.size.row.standard.XS": "1acacaa899d8849d924fe80c5b3b1e3b1a5608f1", + "table.size.row.standard.S": "e155f826118a9fbcf20abf22145bcf63f31042c8", + "table.size.row.standard.M": "5dfff3b5ae64ca98e4928aa50f4093884508df02", + "table.size.row.standard.L": "b960c0a3805ba4556d73a190155266f11234e72a", + "table.size.row.standard.XL": "acf25442f3693beae099a3af44402a039b08577e", + "table.size.row.doubleheight.XS": "c1d03013882d1f871f85d2b56f0b4aa7a364227d", + "table.size.row.doubleheight.S": "f09a6f2b056c91fc3efad18cec045c7d525e9752", + "table.size.row.doubleheight.M": "e6bf7a6b90d3bd843da049c06eccdfb6f68447d6", + "table.size.row.doubleheight.L": "5ebd337150cbd5bcbf8da9b6cd54bc2a0f30968e", + "table.size.row.doubleheight.XL": "ba6fd327183431cf35205c62348d082635dc8b0f", + "table.size.icon.M": "684d2c9437867a9c13d04fe77add732e0055ee8f", + "button.color.typical.tertiary.border-enabled": "8c8aa2fc65b2be70f4823e3a95fd2dc4d5195c0b", + "button.color.typical.tertiary.border-hover": "029e278d58095e49c58033a476cfe98826375df5" + }, + "$figmaCollectionId": "VariableCollectionId:91874:43409", + "$figmaModeId": "91874:2", + "group": "Context" + }, + { + "id": "fccd50425902437f21175e4778be056261b6ae3f", + "name": "Marketing", + "$figmaStyleReferences": { + "feedback.typography.adaptive.label.S": "S:f2ed0f511d7cecd37cedad5ef92b116dda3cff7c,", + "feedback.typography.adaptive.label.M": "S:cafc11542d1df1c95237c04e0da01ed7a4754d5e,", + "feedback.typography.adaptive.label.L": "S:3564b813d492844634f1ab1941f5d3db744638b9,", + "feedback.typography.adaptive.default.S": "S:8bed33ca82c57ab7edf9460d450d33ed388b8d84,", + "feedback.typography.adaptive.default.M": "S:b866d1915cc95f9f759416fbd30cb3f4d7da2b52,", + "feedback.typography.adaptive.default.L": "S:e0bb6156ce7ca6113be0dcd624051c1959b04023,", + "feedback.typography.adaptive.heading.S": "S:b74aad7f8cc3de46c51a7eb5fd2b031dbd43b502,", + "feedback.typography.adaptive.heading.M": "S:08d1c42af018a1ba5bc5e53fe7a1af81a2445234,", + "feedback.typography.adaptive.heading.L": "S:70ba3aef18c50d53f203dff7e0f232b269d2e3b1,", + "feedback.typography.responsive.label.S": "S:852ccf4c4ecd72c8165901a9c3e38bf01a67f004,", + "feedback.typography.responsive.label.M": "S:b7eb8eaa1323a54bef9e9cc5a1ed7847a613f8a7,", + "feedback.typography.responsive.label.L": "S:591248bb249928e90197ca8f65539ced741e1190,", + "feedback.typography.responsive.default.S": "S:4d7b076a5dbe714775d9987968f85d1eb5afcee7,", + "feedback.typography.responsive.default.M": "S:8e6acf97e93a72a7bb906caa72fd8b62f9db726e,", + "feedback.typography.responsive.default.L": "S:a6c4beb00fe302c0a56a2c209fde8d6e35ab1142,", + "feedback.typography.responsive.heading.S": "S:7c66c6673c7051e9635e91ac4fb0359a625a6ff7,", + "feedback.typography.responsive.heading.M": "S:d043c94069339f7387693fc1cd12216a7e07a7b6,", + "feedback.typography.responsive.heading.L": "S:8027caeb11f3973ca963b7fcf203ed0b657ee91f,", + "global.boxshadow.cleanedge.near": "S:d78dd45773985ccf6d25a1d48b79f1993891b324,", + "global.boxshadow.container.near": "S:04e15a4723c87c95ebc3c15c052ba713a95b9cb4,", + "global.boxshadow.container.far": "S:5f828a8333898d1c9d3466c55048ce9888c00682,", + "global.boxshadow.container.distant": "S:49e808037cd4b5c6f753c51dab6f0034f0824264,", + "global.boxshadow.container.sticky-footer": "S:4f6fbee6d314a393709d487459b359856ec7b427,", + "global.boxshadow.container.solid-border": "S:28514edef93be62606b192f40109e901876e508a,", + "global.boxshadow.interactive.enabled": "S:47e3335d4d6b522777b1eb841c0e3ce7e21690aa,", + "global.boxshadow.interactive.hover": "S:e62e6446ee6cdf01565a2f45a0ce58c27f4047c9,", + "global.boxshadow.interactive.drag": "S:fd1dcaed2768f70945e5fecdd949465040d5fea0,", + "container.boxshadow.card.enabled": "S:38f618b564dbd2c970812ccf83c3b658465d1c00,", + "container.boxshadow.card.hover": "S:52fb78361d6831df2ce2dda8e08bfbea9b8b4fcc,", + "container.boxshadow.card.drag": "S:c603858d2e7a1b841df3a602d6347831827c1af1,", + "container.boxshadow.carousel": "S:f6f41713bee76390af854489dab2a9d17a8fc474,", + "container.boxshadow.colorpicker": "S:76f65dd304328cdc70333aa533b003277be0c400,", + "container.boxshadow.dialog": "S:45e6982a6d78c558a267b005e4be1f99777c18d2,", + "container.boxshadow.filepreview": "S:431e3e95f4f59f464921fe3619276e12c4f15db5,", + "container.boxshadow.sidebar": "S:394ef4c6e4ae7e93b40e01d3c7553afecdca6c51,", + "container.boxshadow.stickyfooter": "S:1ba4f8bea5f6f18155dbe648535e4ef13a9667f1,", + "feedback.boxshadow.nudge": "S:6cd7b3cd0655116c25edde0303097370d9050b15,", + "form.boxshadow.dropdown": "S:7eb60a28c20c432dce99c9f2205717d490faa546,", + "link.boxshadow.skiplink": "S:53bb65daf4b65b6e4ef24946fb54d1ca9a6f7d50,", + "nav.boxshadow.menu": "S:7914b7880173284cffe02b97356f4445e773da55,", + "popover.boxshadow.container": "S:5944815c5793d1981214d50d301771474f233c26,", + "table.boxshadow.parentrow": "S:7f36a515d11be34f4a365dbf6756dca91ce2a603,", + "container.boxshadow.nudge": "S:93bfbea78a7a435badb60c7f901cc410b278c8b5," + }, + "selectedTokenSets": { + "context/marketing": "enabled", + "global/space": "enabled", + "global/size": "enabled", + "global/radius": "enabled", + "global/shadow": "enabled", + "global/borderwidth": "enabled", + "global/typography": "enabled", + "components/badge": "enabled", + "components/button": "enabled", + "components/container": "enabled", + "components/focus": "enabled", + "components/form": "enabled", + "components/link": "enabled", + "components/logo": "enabled", + "components/nav": "enabled", + "components/page": "enabled", + "components/popover": "enabled", + "components/progress": "enabled", + "components/tab": "enabled", + "components/profile": "enabled", + "components/table": "enabled", + "screensize/large": "enabled", + "primitives": "source", + "components/status": "enabled" + }, + "$figmaCollectionId": "VariableCollectionId:91874:43409", + "$figmaModeId": "91874:3", + "$figmaVariableReferences": { + "global.space.macroScale": "fbe65c255d4034d004dc832ca3070a12ce16722d", + "button.color.typical.primary.bg-active": "d73bba74a7bfcb13765ab2fd9bf5254f1a83a228", + "button.color.typical.primary.bg-enabled": "ecc071f8d0bd78a54c1388731b258c4ca0084520", + "button.color.typical.primary.bg-hover": "cb1aee06e73d3ee619602b44201d3463c961148d", + "button.color.typical.secondary.bg-active": "469ef15554a2981f40b84e6c2994150305e23891", + "button.color.typical.secondary.bg-hover": "b8590daeedee66cbb5b735906e870175f91f63c3", + "button.color.typical.secondary.border-active": "0972222e0dacc76147b5fa8221aea071e7aa98cf", + "button.color.typical.secondary.border-enabled": "87f162c000f633b14713b48e765d600e94315a3f", + "button.color.typical.secondary.border-hover": "008980bf3db89ad7235c926a1385413b917134ed", + "button.color.typical.secondary.label-enabled": "1f8682243adb9559d59612d257949a1bed567b9a", + "button.color.typical.secondary.label-hover": "aab193b37bfc5a742fabc59ee3a8e75eeb0b909b", + "button.color.typical.secondary.label-active": "2478dea8ee9f689b55a8a1b70ee605fe04d7b902", + "button.color.typical.subtle.bg-active": "de027f11704af79dae323a11a65eea1cf93a8dd3", + "button.color.typical.subtle.bg-hover": "45718803a7a6f5f5e3cdfdae372bcf399b2d611b", + "button.color.typical.subtle.label-active": "247fe156d7c62c661287785b902d37884351a18c", + "button.color.typical.subtle.label-enabled": "9072355014b5e96431ffd79d180b77363c4ac64a", + "button.color.typical.subtle.label-hover": "92c601518ccc7a750e60ac5a27016ccc8bcf4db5", + "button.color.typical.tertiary.bg-active": "0cdeec1baee884371690b794cf334c1c58798c63", + "button.color.typical.tertiary.bg-hover": "a72c2b52de96848da07176ecd79c1e3982df851d", + "button.color.typical.tertiary.border-active": "343304e18f39b2e5aa679c68f082cc54367ecca0", + "button.color.typical.tertiary.label-enabled": "af8918e7910c3a8732526c70197a178ae4c119ec", + "button.color.typical.tertiary.bg-enabled": "3dcb0d649cc7ee11ea3c88f011bcf726c897d449", + "button.color.typical.tertiary.label-hover": "beecf025dd3c88b151f351579f9bdecc245c52d4", + "button.color.typical.tertiary.label-active": "755faa1ea3687787885ab3d6eef6818b6b7fa4cf", + "button.color.typical.toggle.bg-active": "cd75b68b31addcb49478dafc72e0ab522dd36ba3", + "button.color.typical.toggle.bg-hover": "b2c265415e6713f05555ba660362d664be4a0c15", + "button.color.typical.toggle.border-enabled": "c56a31e3515daf36d770ea42453d550d3891ccaf", + "button.color.typical.toggle.label-active": "fb2b9da58241b710974fbcd0eea0550b4de12a0a", + "button.color.typical.toggle.label-enabled": "26b3dce982e71f456ba2f92c28227a5fede6c1c5", + "button.color.typical.toggle.label-hover": "4a4e47d595a2ab02a4cf2cde632fbafc05ed0a14", + "badge.color.notification.bg-default": "ad3b99b6645d78df0dd6958497783ead09a7e142", + "container.color.interactive.detailedicon.bg": "4b6f8eea2c965ba012603a55a04a04cae6aaf5e0", + "container.color.blockquote.border": "5db764470e64a30842ccd3f47cfa7dac6883c980", + "container.radius.card.moderate": "a85b4de7a53d1662eae6ecca1c08563e64e10a15", + "container.radius.card.curved": "2fb18e941f9fb54a7c2889f8b8ff41e4ae0ec3b8", + "container.radius.card.sweeping": "70ef3947b1bb16b305c286e0e7ee6e46f37e588c", + "container.radius.tile.moderate": "d0e6f493b132ee0f88d4934cecd273dd79f5c2b2", + "container.radius.tile.curved": "7db88544f369ed9a26549f25c1a65d13ad482fae", + "container.radius.tile.sweeping": "ef68353d8cedb18b027fcd7930d9f3edc0f80c13", + "container.radius.tileselect.moderate": "06d936df368eaaa8b79edc381feeb26c6500acf0", + "container.radius.tileselect.curved": "20e04cd4e2ecdb7ade63e3d664b7e26be07823a1", + "container.radius.tileselect.sweeping": "916146a71951437f4cd8c19cb23fe638bed5ab68", + "form.radius.checkbox": "eaec4ded50f994e7ceed299f5e737095b0050256", + "form.radius.texteditorfooter": "40d8db58a5be3a719ca2a0b0c3442be18942050a", + "form.radius.colorpicker": "0f42f5834874d05f2878c3129b47cae876487850", + "form.radius.dropdown": "f8b13cd84b8fab6c1611caa9b91fab95dc1df6d0", + "form.radius.fileupload": "505a977326b92e3d5d7294423fa54e3f4f8553a0", + "form.radius.fileselector": "5194653eb73c3dbdc8a9842198b063ce62375633", + "form.radius.input": "1b8cc21bdbdf9e0165cf3c07d70fc582ca5368e2", + "form.radius.validationbar": "d58c5bf1620aca7f5445956eab232c398a106e1d", + "form.color.calendar.bg-active": "4720658e790bd37e028977a7d01c2fc873fe2424", + "form.color.calendar.border-duration": "819172008382ab1d5059dd27fb8fcb451d921e55", + "form.color.calendar.bg-duration": "a16bff728a9a003402db04aec7b813fbb4bd6ce1", + "form.color.typical.border-enabled": "3029f124e1a5d4a703744dbd4fb34cb022aaec77", + "form.color.switch.bg-active": "ce1251804c65070fdaab00ed6621d61635ba51fc", + "form.color.switch.border-enabled": "aedb7374d5118ec49daa4b5963955e1191d9564f", + "form.color.switch.fg-enabled": "dbdd158d7af6257de31c7f45996e2d45bdb1baa5", + "link.color.typical.label-default": "e41145db82eaaf205570817a13b22dee3d02c04c", + "link.color.typical.label-hover": "cdf639c79cc2d78986a3f2792ac9f454a96c62c4", + "nav.color.item.bg-hover": "848af93c73466bf6a150c3586793016db77014a3", + "nav.color.item.label-hover": "012da2516033aa836529af960f93eab5d6906666", + "nav.radius.menumodal": "b14e6c31eadb905a0aada5cdb38819af475648bc", + "global.fontSize.adaptive.step-2": "44314edab6d687c6f1c2e69647563a7e56a2fcf4", + "global.fontSize.adaptive.step-1": "ca2cdba8c8e2dc9a016c91ffc96738b89c582c62", + "global.fontSize.adaptive.step0": "a30a868373f347e37b4df2d6a6ae7998d441e1f1", + "global.fontSize.adaptive.step1": "00ef09834b2e7ef9c0c4d030c4d24d92fe8ad5f2", + "global.fontSize.adaptive.step2": "1d778e97a6072f1ba14a5d9c4ed5ae9884e2f6f4", + "global.fontSize.adaptive.step3": "a0e0c9e912cb36ec0a6d255fed75f7608abc5dd2", + "global.fontSize.adaptive.step4": "099df81b8a94eea8a3faddf6c6382586b98f4da5", + "global.fontSize.adaptive.step5": "f5caab8d2233bfdf62d601912d0525a026598127", + "global.fontFamilies.sage-headline": "e7226ec79e2e57ce0559b2bdae66b517ec77e1d3", + "global.fontFamilies.sage-text": "ec8c3386dd01d0438a08401ce7e8a9eab0630519", + "popover.color.bg-active": "dc2dd96de119bc1a7b6cd7f3b2e2090f1d7831bc", + "popover.color.bg-activealt": "d01ba90620be933772db57b18c0e087a58985a98", + "popover.color.bg-hover": "2bb22e209751803082dfda2b4a5952e77aefe530", + "popover.color.label-activealt": "36a438d9fc6c524cc18008d28430c8c0aa301239", + "popover.color.label-hover": "65b11448c1cd42ddc62b7249fd146f9c78b81e9c", + "popover.color.label-enabled": "40060a0d39cd1441bd95e31c1e6a3fcfd43f3a32", + "progress.color.loader.bg-default": "9942537975dc6f8dab1b4373ad2997c7c39e8065", + "progress.color.loader.fg-default": "1228162d10254417ec4a275e91984409df44a3eb", + "status.color.label-default": "867ba5c4a8ed7434f3a481ed2e3266444b13eb1c", + "status.color.label-hover": "1502a4d36ca222ade1de748789a49394676b976a", + "status.color.error.bgAlt": "d148be733033e2b724188212ae7d78a6016426a9", + "status.color.info.bgAlt": "7623e995eddaf130e9e58bca59e85f25181633f0", + "status.color.info.bgAlt-default": "d8cc6951addc97749232bdfb2cb54c987fa57365", + "status.color.neutral.bgAlt": "52d65c07a7c2aa22badf56321b89620bc25f06f1", + "status.color.neutral.bg-default": "db13c51702081fc1df4b2430aebc10bf6ed26f7c", + "status.color.neutral.bg-hover": "354201f0b8988b103c2d959a65cdb3f4eab34982", + "status.color.neutral.border-default": "c0bfc43a5cf2437e5e3e58c640fc674012e4b11d", + "status.color.rating.bg-default": "2ca253f3c33b0595d3ca575eea21234d33ad293e", + "status.color.rating.bg-hover": "533b0fe14cc0883d889c1ecdbbe4edf1354ad210", + "status.color.rating.border-default": "5b3b0fe3ff286d065087b09e036bbdaafd855588", + "status.color.success.bgAlt": "82df6e2d686439ab70c610e52a36d8f9c9ab5939", + "status.color.warning.bgAlt": "d99551602e113bbb88150a5dfdf0867b6dadb8a8", + "status.color.warning.bgAlt-default": "9c9312936cc3637991d241bd3ee2922a3646f165", + "status.radius.pill": "ecfcbd56d1c07ba24b69f91f2f0a017a057ba3c0", + "tab.radius.M": "553fe1a26d9c1a1ccbff1a636c4fbee13279789f", + "tab.radius.L": "d0fa4522d4d623a7ca880177850c7db719af6a5c", + "tab.color.bg-active": "3d8c8eb4c47d4aea0477be5dc8229b42981f9383", + "tab.color.bg-hover": "5a423db0a74e578a55e9190169ed5706b8a008f4", + "tab.color.border-active": "a05b8f2c29911df079aaeb47c2ed00602fb849ed", + "tab.color.border-enabled": "ab9fa748bb5194e0fc3e265ea50d015bb014fd2d", + "tab.color.border-hover": "c5affbe1329789237c379a860684f3034b0933e7", + "table.color.header.harsh.bg-alt": "64381b36d62587948d8b25dbdde6fb153f3cfdc6", + "table.color.header.harsh.bg-default": "97a4973da1e0c7c897d51494939836e15c3dfe20", + "table.color.row.bg-activated": "b7f77b56ea065750a405344c81c2d76d55221676", + "table.color.row.bg-active": "a2acf7057139096c90e02dcc80013589ed8f1004", + "table.color.row.bg-alt": "0a82ad0f9ca42f2600b526896f0b316753996699", + "table.color.row.bg-hover": "50511c4672e130223031a2c62615d77a87d09ba8", + "table.color.row.label-active": "d981b9984ab6abb3bac19d34ecb48179566fc4fb", + "table.color.row.label-activated": "3014e365945e18a5ebc437d0ba7730577b496da1", + "global.size.breakpoint-min-width": "11fea4981ba36f253b7418d43fe449f5e804fc95", + "global.fontSize.adaptive.step6": "15f234e1dd369afd59da5946c8e38d49f84c8b99", + "global.fontSize.adaptive.step7": "fe9d1662d81e3433ea60ea29e47bedcff6713d0d", + "global.fontSize.adaptive.step8": "ba568db17d2eaccf52fa6d763162d26fbe497b82", + "global.fontSize.adaptive.step9": "ef9f822c7c93c6bf692365b8a3f7c5c6051cad5d", + "global.fontSize.adaptive.step10": "7c1ccbb51f5bb73afc2c46f4ae18dd4663780742", + "page.space.x.L": "61fe779fead2071bbfe86b64cf90c6cc8f13fee8", + "page.space.y.L": "ef8c2ba942d575097893e5a7b5938b5197e41243", + "global.borderwidth.scale": "6dac19533b6c095d2c97938020e7a45074cacacd", + "global.borderwidth.none": "43dbedf2a345872395a95d72965fbd8893624b40", + "global.borderwidth.XS": "b334b4b764fd28d2f3b57748f599cca99225d8e1", + "global.borderwidth.S": "dc9acc9cafc6f1f87c577ebc760b18e9f3f4d386", + "global.borderwidth.M": "659af74d1bb76b04607cc6f23ee446f65e64c0df", + "global.borderwidth.L": "48d631a3f574a5c9fc2ed14f6d78507963d0232c", + "global.borderwidth.XL": "cd4a33ccd30f5afda2a741606003e54392b8875c", + "global.radius.scale": "25779c0eb685464a505ccbca5e400285f3d54292", + "global.radius.none": "b9b0f28767800b7ea0b1b2148e460a589d568cf7", + "global.radius.circle": "063e41e495052e3b9cf91b390534ef49308d9cdf", + "global.radius.container.XXS": "e77774185cc4fab82d49a2b2f4d178fd7fc236d4", + "global.radius.container.XS": "763f699026c982de5143eb0d8fa955e1ab1334d6", + "global.radius.container.S": "b2443ec9b331090848c3de13fa1014335933633f", + "global.radius.container.SM": "288ddef9618d210349eb35cb830d77892ee923b3", + "global.radius.container.M": "7517affbc26c2f4f6c8e2458f7fff85e81aeb4c8", + "global.radius.container.L": "ab4c59c56c2f86db0ffbaf976f5d77f5da1883f0", + "global.radius.container.XL": "6dd677dc9ee68ab695ae573f42d07ac3aefee43d", + "global.radius.container.XXL": "233b05708e7dba549c493e33e0785244629f5f87", + "global.radius.container.XXXL": "1afaaf6df1728b16238f04c78fb5ba29202e6d46", + "global.radius.container.XXXXL": "a27988b005b603ceeb958bd96558145451f17aaf", + "global.radius.interactive.XS": "a5de21346396ccb19048941b7323fcb4d8ff1873", + "global.radius.interactive.XXS": "d8f4c931cfc3b7aa6534bf90346555fd7de8a10c", + "global.radius.interactive.S": "a546f7f00cb0a916e0b121663617a4c00355ecf2", + "global.radius.interactive.M": "e1070220ae5de5bfb3cb5e17022a430cbbfb5796", + "global.radius.interactive.L": "3b91adb09b8d945713a5fe026dd8a06446d9ef92", + "global.radius.interactive.XL": "3d7adc0e8cd4aedc86beb6cc76a303c951f02a3c", + "global.radius.interactive.XXL": "e8f8f2beb1260974c6d19b7d66dd785441b561ac", + "global.size.scale": "429f82853556b8b99d9d951fcde1d70de832f4a8", + "global.size.none": "788ed4fbcbe0d86bfe5b68fce34af566f261a5b7", + "global.size.container.M": "1f767617f85d97964506322bfa029084ba1b0b6d", + "global.size.container.L": "4d3d90d8b7cb9297526dda4b3aa1c04d4430106a", + "global.size.icon.S": "92fab08b49a7cc8eda3ccf37d96eae56f5f85183", + "global.size.icon.M": "8d6f69b0bce7bd6248a6f3ef1b898c0365d825e2", + "global.size.icon.L": "64e0984a734b9f342bacbfdd484cb561f6b519d2", + "global.size.icon.XL": "74ce4621432a5889f6e8097d45ad7a53ef680bc5", + "global.size.flex.XXS": "ba57c27ecf4ea90b8628302dc073a68ad99094dc", + "global.size.flex.XS": "9534663e81ea049e3d956c7714da841d4f8b6b11", + "global.size.flex.S": "7a942a3efadee9c0b578a0de9473ac04cdda1052", + "global.size.flex.M": "f6f1c27e6981c5f476acb2cede12d2f62a9afcc5", + "global.size.flex.L": "a8b3bfc84944cd8d7591d3286d8aa59114580c67", + "global.size.flex.XL": "2924690caf19c2ec628209e9cc89c7951020fa45", + "global.size.flex.XXL": "987572b3147b48554c11f2a6659d1a3d765b85ec", + "global.size.flex.XXXL": "03e1ad04caa5dda51ab34bad5c240ef9d5e2234b", + "global.size.flex.XXXXL": "3fff3daa5084309007fc64940ab30c5822962c16", + "global.size.macro.XXS": "3be3cb4c30c1f1697efe418954e0550c532cffac", + "global.size.macro.XS": "61761875b1984b99b1491d07d8023c254a64d22e", + "global.size.macro.S": "c9b49ed9f1b36288f027e6e6ab2676756ee7ac2a", + "global.size.macro.M": "cdfa9a15fac401deb393c07412c95cc4c2e9bbf3", + "global.size.macro.L": "7ead7e17739b897da5df8da3af0bde489bf2bd8f", + "global.size.macro.XL": "5f3951055bc1678971a3a4b1e98e08c428e35a1a", + "global.size.macro.XXL": "02992331be54fcd8f82d03b2c040c79b9c741cad", + "global.size.macro.XXXL": "9c01b469899ae2ca8d93ce6a60d6a388db1db9dd", + "global.size.macro.XXXXL": "1913e54d24adc465a37e252c8c1b8c989440fe97", + "global.size.micro.XXS": "d811dbc5fe238b9fe0d42ff02a892bafdde4b8bf", + "global.size.micro.XS": "b82ad5c50c4c8457b630d753bc6c4e72a4571629", + "global.size.micro.S": "d3ebfb028c5c71dc0c4e7dc2c291f4f71d68b27b", + "global.size.micro.M": "232d8c52997a8cf7c3bac23528b5a3d67929b0e8", + "global.size.micro.L": "4a175f79d95e038586891463b841c11cb9bc2db5", + "global.size.micro.XL": "24cb8a1d6b5845b347cec6e34b4b615aa783fc1d", + "global.size.micro.XXL": "2d1d82ac80a079ee3e8e346fce728e4ce3d0fc40", + "global.space.none": "7814806b844e49b11bc33c7eb77b3ea290ffd907", + "global.space.microScale": "21c974fd2b6732c069badf4911fa25d141d821f5", + "global.space.micro.XXS": "348b4bfdb0b33644bd7511d644fb49055254d4c3", + "global.space.micro.XS": "35f52473dd4b24fa53de48194543e62572aa82c3", + "global.space.micro.S": "5ac1a13bf46313fc46ffd6202fb1ef89b19a5c4c", + "global.space.micro.M": "42d8873786ff1e126f777dc5d9789e413a857ab1", + "global.space.micro.L": "482c2464cb12f38b75380247b938b192ddfa52cb", + "global.space.micro.XL": "6380be8a20655110c7033daad052c3b9276d9e78", + "global.space.micro.XXL": "d464676d7cc1d54cd3ab14dfc5deb037cf449aef", + "global.space.macro.XXXS": "be0af3b32d7138b608eeeb3945eeadba7df28f30", + "global.space.macro.XXS": "8dd747ab7b4188bc8c4d82257d81c92ad65bbaf0", + "global.space.macro.XS": "6ccbd3ba9220a0895722ebe83f2eb72d6da50afa", + "global.space.macro.S": "460f55b5bed55722b260d7c5b277a893c847cf46", + "global.space.macro.M": "c9f2e0e150ad79870a22a2ec444dced8024dba5c", + "global.space.macro.ML": "c3c318525df79ac16a8ab9ae91b98f47b0e63836", + "global.space.macro.L": "6faddc1bbf30654b9bdcbafbd7a7a881781b782f", + "global.space.macro.XL": "3d412117562afd0b1cba85f3155e95c3571506c7", + "global.space.macro.XXL": "648457b1a03a31a2867e74d641897bc403581e24", + "global.fontFamilies.sage-icons": "e5b555cde4f0a7e88c38140a232780b2424185c7", + "global.fontFamilies.sage-ui": "30919b14ac88218863209fb47395593ff6629af3", + "global.fontFamilies.other": "52d376e77553b95b6c69fdd78b91591469dd74fd", + "badge.color.notification.border-default": "a112681742f2249d163dbb838dc1e1609be39451", + "badge.color.notification.label-default": "9d8e60a759fca7de5b90b637aed4a5d68c4cfece", + "badge.size.micro.dot": "812a11d57aa383a35822500ca7657faaaeec29d3", + "badge.size.micro.numbered.min": "817e0a3632673afb20a2c9a80cc8f24981891073", + "badge.size.micro.numbered.max": "0cebf54f1d5344f8fdd77480d5327d73e9e90242", + "badge.size.standard.min": "8e3d70ec2d2f8550e3d5a2c8e356e1c038c1f2ff", + "badge.size.standard.max": "8d965fa8f86b65cc8a520022e3086c7552e05b45", + "badge.radius.badge": "042281b3fd62ead45e350e419c118ea99f1d16ea", + "badge.space.x.S": "c763e9bbcb3e7870a98acb898740bfb17f0a13fb", + "badge.space.x.M": "fa5c796dcba7fe25521398f4ec7239b7797f4159", + "badge.space.y.S": "fb1b5c2a1e237a284d8ca90d327ef345ab9854d4", + "badge.space.y.M": "2cddfb41a36ed866f1364799f1b6ea6416e807e4", + "badge.borderwidth.badge": "57799afadb737df720ebc873fe10f194254a8d4b", + "button.size.split": "a6fa6bccc775b666707c42e54301f7386c5e7c81", + "button.size.S": "376f27967d6659cffc7efa63715cc923214a8ec5", + "button.size.M": "7c3bdd4e536e6c1705cd824c4a32a90d841619b5", + "button.size.L": "7b1b9e2f2e2386ab069afaf86fa44de9e95f99a3", + "button.size.icon.M": "440ebdf983bfd9cf97471c0dfc45a15801538609", + "button.size.video.S": "da17d4255ccc4c1a290c45fdea28828d6ac7748f", + "button.size.video.M": "5f64da94c77e517d71c476e889f044584e3e6539", + "button.size.video.L": "9bc170e119e26918f16065685677bebb7bf8d657", + "button.space.none": "47782ce803e335647d0c0879e651830e83c2bada", + "button.space.bar.iconbutton.x.inner.M": "3a162b43c6fbed2b2101e9056aad8efb63a1a127", + "button.space.bar.iconbutton.x.inner.L": "d297d9d0580c106ee7f7ff9896a313871931c189", + "button.space.bar.iconbutton.x.outer.M": "a4518d47b09a75fbb9da3f3f3a8428b93495284a", + "button.space.bar.iconbutton.x.outer.L": "fc4ed5b9d7821cf15a72ff36ab350a6882a1bf12", + "button.space.FAB.child.x.M": "c1c4f0b45067cfe655531c70c4e9fd8158fd76a0", + "button.space.FAB.child.x.L": "c69dab68de9708add9dd7910ab1903928eb7d3b0", + "button.space.FAB.parent.x.M": "eaa172c41904bca4883e972caf68d9f3a9eff0f3", + "button.space.FAB.parent.xg.M": "eaebfd970ef95209888408eddcf8f269ed2b9f21", + "button.space.FAB.parent.y.M": "827599bbc7c44a673a6722ecd2cdff4c36260eea", + "button.space.layout.x.XS": "f401fa0af41c7d7caf12bc220f25b9812a91a030", + "button.space.layout.x.S": "3aefe2cd5aef81e2e26914ce8543081e04c51571", + "button.space.layout.x.M": "6d3230ca1c6bdfc71d39572f02cbf1912065c436", + "button.space.layout.x.L": "d2045174b3b6490937e36ac9927f104ff6bf68fa", + "button.space.layout.y.XS": "151ae59c9532fd7243c325b0b1e845b3ccdb953a", + "button.space.layout.y.S": "f92de0f043fb6ac4e5207586e15c4f5f723c14a9", + "button.space.layout.y.M": "3c24b189b35b556e834998bb3be1cb591f24a19b", + "button.space.layout.y.L": "90c6efe4ef5b42f19e14669f6ad014a09382470a", + "button.space.layout.xg.S": "f3977436e389c06d9ed54e9c28190b40e948c87e", + "button.space.layout.xg.M": "023db60f9af8a47df3fd447993426296825bdeaf", + "button.space.layout.xg.L": "bd6fa7fd98289d10c0c432c1e772463f184b54ec", + "button.space.layout.yg.S": "425ef10052560f0fa0429989953f4f7b764be0dd", + "button.space.layout.yg.M": "2d4e296af875ae9c487894ba753eb45d8d38ef7a", + "button.space.layout.yg.L": "f48c1905d5bfa67bf29d1849ddd8bf576607265b", + "button.space.primary.x.S": "2f95244cacdd39ed1a4708d4d7be41331c84ce90", + "button.space.primary.x.M": "ffece589187c548749e04f810594e187e3cb3e0a", + "button.space.primary.x.L": "941aee2d15bfd49cf5d067bd84d4965d1d627d27", + "button.space.primary.xg.S": "e0641d2fc0db750fce69ca77ecc84b3a3e2dedf8", + "button.space.primary.xg.M": "dbe379620d53de9b2e2f853a8b8d5e9b2e9dc901", + "button.space.primary.xg.L": "e02252971250b58c737dea81e23ad633fef8b15e", + "button.space.primary.y.S": "bd9560f9aa52d6c08de96fd3d0c5d8adb516395f", + "button.space.primary.y.M": "432280aaf7f16677426a2c2fff32bb453f38dfba", + "button.space.primary.y.L": "a0dda66b24d8a4d0709e20695c719d949018dfad", + "button.space.primary.icononly.x.S": "986ec2fcf82e2be81aef790caa0f171a12cc3bc2", + "button.space.primary.icononly.x.M": "e1077454fc003d134e559b8bf9a40f3adbf3b724", + "button.space.primary.icononly.x.L": "479b3cf789dd4a5aa9562d46c13ea47651c55352", + "button.space.secondary.x.S": "725160a5dbb41c111fe8461bb136680c32c0e90d", + "button.space.secondary.x.M": "5457899fe69c38c51d2efdf7a5af24a466dd8330", + "button.space.secondary.x.L": "265e2c84e720c37ccd5249a1e3c8bfb7e7ad1f54", + "button.space.secondary.xg.S": "2c24cc5b5eb3d101edc0d3d0f33da083e103abd8", + "button.space.secondary.xg.M": "73768a636c48e2f8b607390d2002e57448174ddc", + "button.space.secondary.xg.L": "1d474229e4e0a0e4a145b9f77462bd09b2d8b8ad", + "button.space.secondary.y.S": "223aa16348bc026ae0ac523d075b6a0f76305ca0", + "button.space.secondary.y.M": "d3282cc104082a1c89f4be8bfc54c0753ec5917c", + "button.space.secondary.y.L": "d3ae5fd316ed6d1f3d2c533bb327644af281ba51", + "button.space.secondary.icononly.x.S": "fcc51a5f1b67183bc7c9dccb497e7676cdcf76e0", + "button.space.secondary.icononly.x.M": "1c7ed5b517f16af62997d5df6aa5a0a2a3d2f40c", + "button.space.secondary.icononly.x.L": "0e2a6d40d7081ffbc12185c6568cf241de930cf1", + "button.space.subtle.x.S": "a0e2b5d28e194016b251c46e41084a5c783bb30e", + "button.space.subtle.x.M": "348a1773b8fc46197a30f4f3971528815d886170", + "button.space.subtle.x.L": "fc19c19790f10e9afa61ed1015efab450cc9310e", + "button.space.subtle.xg.S": "6823ca5b63c0cf6855a02b5f39388e688ef29079", + "button.space.subtle.xg.M": "c08b7b07c6b0ecea0f27a8fe5b5dcf1ff633b12c", + "button.space.subtle.xg.L": "5cd492904ee1f1a9a60959266b871a53fc565a61", + "button.space.subtle.y.S": "5a47de873c9cfcccdf99231c8b3a4de4aeddcece", + "button.space.subtle.y.M": "2089ee02b166b231a7c445e2c65da1e607ce36eb", + "button.space.subtle.y.L": "77b528df5059f29f06e19ad88afadb7a836bd042", + "button.space.tertiary.x.S": "5c16e064a29ca6eb4d720f4e228c0b7c82ec2585", + "button.space.tertiary.x.M": "9309b89573849935c91932d05db45dc9fc9934dc", + "button.space.tertiary.x.L": "886bae4c7441acebc39a030862bf84100010c35c", + "button.space.tertiary.xg.S": "eeadffd3f2df9fe2be969041c3ddac49aced088a", + "button.space.tertiary.xg.M": "affba16f11e0c696819219aa32406580f04eabe1", + "button.space.tertiary.xg.L": "6965a5a93c84811204a91698b1b3e76a4ee46a51", + "button.space.tertiary.y.S": "37a42b6aaa3f46575dc0ba7ffab483c7212afbd4", + "button.space.tertiary.y.M": "e9cd76cfe572b97c967bc8f4aaf6357a8a79dfc7", + "button.space.tertiary.y.L": "ed5ae27ad698b45e1794004604b8299e85df7a96", + "button.space.tertiary.icononly.x.S": "59fc4a4546d74708d665250bf7f8535ed5971fde", + "button.space.tertiary.icononly.x.M": "42d241456c4d6fb2dee9ee69a1e4f43e88cd66bc", + "button.space.tertiary.icononly.x.L": "55884e5ad5f702ac9957f4e37e2af4f7280f8f81", + "button.space.toggle.button.x.M": "54f56ab25b7809db7d68873c01036a28ddabd925", + "button.space.toggle.button.x.L": "51a53c6c1cef0f35bbe06d5ae68a18df0c086d25", + "button.space.toggle.button.xg.M": "d082030b4a12a6c0a78d9caa0f0735cfb22786bd", + "button.space.toggle.button.xg.L": "b7554fa5ecf630c25359279f3e439e818ce80db4", + "button.space.toggle.button.y.M": "ece364062f42297ccf58152cc30f69a917b4a6fb", + "button.space.toggle.button.y.L": "bf08626110c187fa054c2cccb9409f8c2f5c71eb", + "button.space.toggle.container.x.M": "08bded32dea110523288ac576d3226298aca1780", + "button.space.toggle.container.x.L": "8b9dd58db99b355eefab4ff1cf78661e94241780", + "button.space.toggle.container.xg.M": "a1aa12239d6b70930ebeb03075942b7c78e3ead2", + "button.space.toggle.container.xg.L": "b4e82977dcc340c1bf6d3b4ce6604e4408008de9", + "button.space.toggle.container.y.M": "5d5f52880f2d123635c4e8992216b7e0ccc11d9e", + "button.space.toggle.container.y.L": "dc575dda72165a59c7c2152af821b1fd42070afc", + "button.space.video.x.S": "182b84c35e1f5bf05a77a97ae53bfaa73934fd07", + "button.space.video.x.M": "ab4e03c77b9bd2f56c31b646753fe85f5ab34350", + "button.space.video.x.L": "72f81aa0885b9a9850e2f069fb0f3dccee5e7b4b", + "button.color.none": "1343f8c4a6c1161424037a25e2e9d8e1ef61a9ad", + "button.color.ai.border-disabled": "c3727b67dd26b21d5a61a7f9c02ade19b3593f44", + "button.color.ai.label-active": "f6a962f5cc70d8e5a06b713848405abdcf9ed90e", + "button.color.ai.label-disabled": "f524fad75a65ac9175dea4ab3106b60ec03a7956", + "button.color.ai.label-enabled": "2ea18c0f07bad38760896d7170912f08f1cec322", + "button.color.ai.label-hover": "afc889b0c09b7f67f15674c68d6da23222fdbf35", + "button.color.destructive.primary.bg-disabled": "2e3e671c7f560ea11e8b16ea6ac83b0d111183d7", + "button.color.destructive.primary.bg-enabled": "7c32ad1bb367b5ffc0cf20b38570a73aa3d7c74b", + "button.color.destructive.primary.bg-hover": "9d9be0a13a971584f9343e9c8c05c2f21c86da70", + "button.color.destructive.primary.label-disabled": "5b83fd1a50a11ad2bd83962d0587659ee6cfe29c", + "button.color.destructive.primary.label-enabled": "9d53ebae4cae39c9cbe06f22f45d4afbf9de68eb", + "button.color.destructive.primary.label-hover": "58679abe68b52f09f2ef64968712cfd153995f8c", + "button.color.destructive.secondary.bg-hover": "1424f9b08e5926cd41d9b068a5bb62931c2f62e3", + "button.color.destructive.secondary.border-disabled": "94df9f985ad8ef519901eced75bcd1e970a83fad", + "button.color.destructive.secondary.border-enabled": "6fd585073fc7d6803eecf9907bd9061a1511882a", + "button.color.destructive.secondary.border-hover": "77ba31ea7574b234062b1e9f90bb2d7c8c2aa06f", + "button.color.destructive.secondary.label-disabled": "36cd91794ddfefc581f2a2fdbd27d59a912b5bee", + "button.color.destructive.secondary.label-enabled": "cd7e3fc76f55344516b871d27e8c4b59328e2f76", + "button.color.destructive.secondary.label-hover": "d098b09f798ef69d6749a41798b94a3079f283ae", + "button.color.typical.primary.bg-default": "aae39b0acbfbc6b205bea13d55b2f28fa78b8f23", + "button.color.typical.primary.bg-disabled": "fc7d3129bbbc5b244420d2ccde404c1e742ca144", + "button.color.typical.primary.label-active": "1e64b6da8861e4c59d04152a2f8777e277c4c0fe", + "button.color.typical.primary.label-disabled": "73814145185d2401ea3ae1f21721e0d21ac31649", + "button.color.typical.primary.label-enabled": "4cfb7445909549846f53977ba6e8f41d3bc6822e", + "button.color.typical.primary.label-hover": "0b4a82d3df53b362f6d5ea67af2aa355b50ec60c", + "button.color.typical.secondary.border-disabled": "01c350072575aa62a9295cbcfacdf465c01e6350", + "button.color.typical.secondary.label-disabled": "27c86ca327c3e6f4557dfb4ef0349a303d6cfa67", + "button.color.typical.subtle.label-disabled": "abf3e02aaab0fdee015db2435d7354caa55f0c34", + "button.color.typical.tertiary.bg-activeDisabled": "087fd421d6d09939aa8fb5121793a9b365a6248d", + "button.color.typical.tertiary.border-disabled": "130f4b8a0bb497d9086be10fff1a0f9c526130cf", + "button.color.typical.tertiary.label-active-copy": "33271ba1542cb0732ccac61203aa422df518bd8e", + "button.color.typical.tertiary.label-disabled": "55ac76cec8eb098dddc9c9c3738904d382c15dfa", + "button.color.typical.toggle.bg-activeDisabled": "04c4b9951628c3c4f7dc001b4cee82aabdd1c3b0", + "button.color.typical.toggle.label-activeDisabled": "04cad986dc6312e442d5bcbc854e1ba65609d8de", + "button.color.typical.toggle.label-disabled": "5c43829b0932c5e5af69a4430c0e9b1f561981ff", + "button.color.video.bg-blur": "5ca05788abdf06ed7e45adcfbadfcc2632382fa1", + "button.color.video.primary.bg-enabled": "6f59ec78791cd546cd21a07051cb1156a2f131d5", + "button.color.video.primary.bg-hover": "92f977de52635d4af44834e4acf29c0d722b698d", + "button.color.video.primary.label-enabled": "e05763f4fb7fcad3939185e52c8fd69858ce7f34", + "button.color.video.primary.label-hover": "e8c1c7b438d0eb29a6a6bdfd54484281e0ffc166", + "button.color.video.secondary.bg-hover": "b945538aa07596cbe037db6178a97af29066ac4f", + "button.color.video.secondary.border-enabled": "73aec28491cde9caefdc9109fbce49718951064f", + "button.color.video.secondary.border-hover": "91186232df4315b8142e0baf5859a93dea82d59e", + "button.color.video.secondary.label-enabled": "a345c8a809e497242dd8bab9ebdd4852254d246d", + "button.color.video.secondary.label-hover": "c49d9402a37b60510c340322c2072f3a2cadd6af", + "button.radius.none": "071afd09c52a1f7ea603c57ac8522635d7a3dde3", + "button.radius.S": "92af17292bcc0216e4566e354845633f74fcbf8e", + "button.radius.M": "904734c167590ad07a8fdfafb316df7b5ab3581a", + "button.radius.L": "3eb602a4cea6e9ca290e30158fa6504f2f6c7497", + "button.radius.chip": "7f8929bf1ab8df4555c1e2633cf6cff6b4f907a5", + "button.radius.FAB": "880461cef6d498c277c8d412bce74474bffd730b", + "button.radius.primary.S": "b3aae451125c794ecdd67e52da40d8d4d6112444", + "button.radius.primary.M": "8cf4ec9c22aae700ed48357a52deda4666cbe1e5", + "button.radius.primary.L": "32c95a1aa7d1d621f68dfd210ca214441e364610", + "button.radius.secondary.S": "1b088f1f1952d742dbcfd725b649b676a1c378b2", + "button.radius.secondary.M": "84a91c3101afcf357076be2871e956fd7feecccb", + "button.radius.secondary.L": "e0909c6832d8a1102b603569e78df1b1ebfe6495", + "button.radius.tertiary.S": "649391cbf3256f38979214944de4292bd4900e1f", + "button.radius.tertiary.M": "deadd1076425b9fd520dbdddff289a636c35f839", + "button.radius.tertiary.L": "3cad80bb7d426572946410fcbc4be8f54c139883", + "button.radius.subtle.S": "b71f6eeabff5fbab72f69ebf3c29eeca0b55403a", + "button.radius.subtle.M": "3cb6ca7b2b2ff6cbfdff84dba8ef564f8c91adaa", + "button.radius.subtle.L": "7f49d16180a2abff05a3bbe92f079a8af2ba705b", + "button.borderwidth.none": "82a63463ed9f6fe332156aa11eb5ac9f98ed4965", + "button.borderwidth.chip": "94fd1b7fbda35bfa2b8197ce722c51859acad510", + "button.borderwidth.secondary": "b823c5e884cafbacbd75d60389fcd90041b01d9d", + "button.borderwidth.tertiary": "91779584c898ee041c6a8dcd56270c93040b253f", + "button.borderwidth.primary": "f68201875534451b1533e62b468376e01c9a13a4", + "button.borderwidth.togglecontainer": "cde8eee001f0916638716f591f920839de8ee1a3", + "button.dimension.video": "98242a320ed257b9025ed412ef4ce48475eadef8", + "container.color.standard.bg-alt": "0a163a71efd022b8f21f9a773b8975958546930d", + "container.color.standard.bg-default": "f5887df9e88801494c6539d448a69b495742e64a", + "container.color.standard.bgFooter-default": "ddd4d588d42c8d7b3527ea56c11662e5609bc358", + "container.color.standard.border-active": "334a84f7c4320c2694a050574e8b09d64476334f", + "container.color.standard.border-alt": "869e9dd30c2c63dacd7953fb560aa8a5f3760cb2", + "container.color.standard.border-default": "0c3e38f22885b4d1257a564e9419fb1c8cadbdf0", + "container.color.standard.dimmer": "4625c31b12d23c19742ebd1bf73493fe2a96090b", + "container.color.standard.icon": "1b4f40b119dc87ba170dd49da865f5bcbe04fe8f", + "container.color.standard.text-alt": "5ddf5dc6cf795c35ee85c83563dcb443766761cc", + "container.color.standard.text-default": "0688de7bc87943a33f29362987e04edd67f5b4a5", + "container.color.scrollbar.bg-default": "d2b90819bd31fa592079d5bc6fe52f4b5276c351", + "container.color.scrollbar.fg-default": "520b815222da25aa6b15e4f47933a8a7580b0b17", + "container.color.interactive.bgFooter-activated": "a7c8042badfadbfa5f9494267fcaf815863767aa", + "container.color.interactive.bgFooter-active": "4a989f9ae40ca51aa8b569413fc37c8e063b8302", + "container.color.interactive.border-activated": "f0db1dfc677cf097b555fec2de0f27e3b2c4894f", + "container.color.interactive.bgFooter-default": "b2088ab5fd723ecdd7372e0eb93ab1005e85c6c3", + "container.color.interactive.bg-enabled": "dbc42929e91e9f2bef8ee063ddebc6ed48ed2cfe", + "container.color.interactive.bg-disabled": "2ada241c5c6e4661de41ba725beddea5545202e8", + "container.color.interactive.bg-hover": "e6c4aab4bee58a628dc5f54a097cf79c584d049e", + "container.color.interactive.border-active": "7782b289774c6fbf975899eeae90be80282295be", + "container.color.interactive.border-alt": "77fcd09826f5c267bb3a86b2234f482198bb0ea2", + "container.color.interactive.borderalt-hover": "ad0eaec72bc05988dc4841925c21e6d0d8dab291", + "container.color.interactive.border-inactive": "5e374caa9e35ec0c36978d19b32b248ccbddb3d1", + "container.color.interactive.border-enabled": "1c23da485570906f3e9a3d4d88c6e56ec41be60a", + "container.color.interactive.icon-active": "87191fa386378f8f5eff497eacfc8b0066cf48be", + "container.color.interactive.icon-enabled": "fb91abf053b3e0cd9e910b8148b6103e390df2cd", + "container.color.interactive.iconAlt-enabled": "7a7278a3900a1f11a78aee66d5a0ada4551b4cd3", + "container.color.interactive.icon-hover": "03d893767bad772c8ca79ea60637b342a7ae6b4f", + "container.color.interactive.labelFooter-active": "58a9d563c623f87be31af8f81a3420ab82e1289d", + "container.color.interactive.labelFooter-activated": "213680506c9d8e5c8557d3fef1e5a5ba08354dc6", + "container.color.interactive.text-active": "5d8153fe07c54fe7422c089014933b0f479bc42d", + "container.color.interactive.text-disabled": "9eb7b5495a81ed583ab62a5c864524101109546f", + "container.color.interactive.text-enabled": "c164b95acb32dfcc5210bb5894504e11d5625509", + "container.color.interactive.textAlt-enabled": "aea2de8ee64006b9c5b11b8e0b596c85e354b3c4", + "container.color.interactive.text-hover": "758d3f77cc300bdf257f7bf836bd1dfdbffa30b3", + "container.size.none": "e0b0d89c5589466c31c9a4d8a6a1fa76ec276349", + "container.size.accordionstandard.chevron": "2e8208e7c57c23de8c158b86741968eda8955caa", + "container.size.quotebar.width": "e7cc52194ab4bb8401546c0644beb657ba2a530b", + "container.size.chatbubble.maxwidth": "98c7ff9abff97a012b85941133c72b62ff6d276e", + "container.size.carousel.mediaslide.minheight": "9fa279a3cfc6a2db48ed68f7093768ac6b3bddd5", + "container.size.copilot.emptystate.illustration": "5237382ad9a96dd0e2896827577242e274d66ce4", + "container.size.copilot.emptystate.content.maxwidth": "fbe31fc866e725b02c8975089eb373a516ceeca7", + "container.size.copilot.overlay.maxheight": "87891090ec333e820bb66269f4ebfd2e4cf67272", + "container.size.generic.emptystate.illustration.primary.S": "19cc264f16dae9acc27ffcfea23977d97b4b558a", + "container.size.generic.emptystate.illustration.primary.M": "d533b3c795c62ebb2eaf5f98f3bc494a31486fe9", + "container.size.generic.emptystate.illustration.primary.L": "c3084c6d5076c3e7d7b3604fbd080a8c41bc7d15", + "container.size.generic.emptystate.illustration.secondary": "0ebfbb98b525685fdbf570fa01507f06c6f78731", + "container.size.drawer.closed.M": "3648d151f5c6fae775acf90bfc4303546e9b6a97", + "container.size.footer.M": "807f7546731e52a81a0562de59f28e77d1ab959e", + "container.size.footer.L": "6d9a65595a1f09ae454d47c63c93401e450edc21", + "container.size.icon.S": "6949e299effb69aeacfedc1ec263aebf35c5412f", + "container.size.icon.M": "8cde7d61ed66bbbc427f545c6f128453d4649bf7", + "container.size.icon.L": "6455bf88d0f62405df82472524b8b6977c46d551", + "container.size.linkpreview.thumbnail.S": "28b77cdb90cea1f0f0da312a046a7e74353cff9d", + "container.size.linkpreview.thumbnail.M": "26042158f864e97890bd845c85313951bd995d16", + "container.size.linkpreview.thumbnail.L": "442af4f574cb2b79462a6e66d683ee37f64d94a6", + "container.size.linkpreview.headertext.S": "52568ef20de2caafedb8306caac6ea33360cdcc8", + "container.size.linkpreview.headertext.M": "31bfa35919f34e0e1b62838d43b9dbaefbd2f8e4", + "container.size.linkpreview.headertext.L": "21fbc45227d26baebe061b019311c4cd37f52fe0", + "container.size.linkpreview.descriptiontext.S": "57513ad1ec8efa434a490b28889e6bbe01aee699", + "container.size.linkpreview.descriptiontext.M": "91714ea689158ad95ece8ed2d3191ee239684a5c", + "container.size.linkpreview.descriptiontext.L": "0ca86f469b6694279b8f17edbf0bb8d67145bc2a", + "container.size.responsive.XXS": "99fd8bece9962097378214b53b22b741bacd64bb", + "container.size.responsive.XS": "3fe4977ce8b52e9a886a39ce49354693940a66d8", + "container.size.responsive.S": "fc5ed3406bfd1a5da5a3b1502b0d9fb6411eac08", + "container.size.responsive.M": "46ab0936266a94bdbb1057836314706034048ffa", + "container.size.responsive.L": "9410d597e2769cf5bef1e3758ea26ede9fb53f82", + "container.size.responsive.XL": "e26f6abf64cec9a1d5a11af311a7baee9e9f1c7e", + "container.size.responsive.XXL": "c997b08d022008974721c9ea22d6c1497263c911", + "container.size.responsive.XXXL": "7dde5913c205f48ef3e5b8c7a078d728b415baca", + "container.size.responsive.XXXXL": "3527462bb119bd3258dd1b5da368cf3c2504f0eb", + "container.size.scrollbar.container": "137cb558ccc9872f4ec06e7cb02f9d36a22a7934", + "container.size.sidebar.responsive.min": "8c9f41d13316a008fcc9b5be717a1d97a23183a9", + "container.size.sidebar.responsive.max": "b38354b7320bd8a4cf566ae66465778c8e707ad2", + "container.size.tileselect.footer": "cb4a909e7d9e9aad5b157dbfc7d57f0a229f9054", + "container.size.tileselect.productidentifier.M": "29f30666a4e90dfdc727aecd389db6b06cce0ca5", + "container.size.tileselect.productidentifier.L": "8143520e779fd32f8d12cc687525a75ca0211c2f", + "container.size.tooltipArrow.width": "223a1d580ff1d415725ef2010562e37744180a40", + "container.size.tooltipArrow.height": "4a4285c8c3a395ce01782c47920d4a32d962bdcd", + "container.size.uploadpreview.M": "1b26af045dea6a575c3a7a52d231b179e5586015", + "container.radius.none": "95fc25dfe43fbc9800a24c7d6d4798e60a3de5d1", + "container.radius.carouselslide": "44d695afff47d893d6c16f7bb5e7fb4e3f2d632c", + "container.radius.chatbubble": "23a94e78261019f464c3463fca25a068d3b8bed4", + "container.radius.colorpicker": "7fc2ec3c5e1b284f5087dbb241643e2a6050157a", + "container.radius.blockquote.bar": "20f004b5b872e4f34c372644f49fea202a5f74d8", + "container.radius.contacttile": "c75d2dfce498214c9ccc8d461cb8237dde77d9b1", + "container.radius.dialog": "e3cb52a832e46d849412f2d0c763caa36b34f2c8", + "container.radius.filepreview": "013ca1b598e465f94dbef8083c66d3f72ee07a00", + "container.radius.linkpreview": "206eb7b765404469201bdbec026ad8dcc2963087", + "container.radius.heroimage": "62806bef8f02a0d14b097c48ae56971226e20879", + "container.radius.note": "9ce0e1a85e1157285c62f3b68d37f69a169e5550", + "container.radius.scrollbar": "7b47488cb759ebea0876bf8c2aaf96acf0ffaff3", + "container.radius.texteditor": "acf98b5c424d55ff4e9b569523f064025800fb6c", + "container.radius.nudge": "b0ae7105e74105579874ac62b2ccadeb5ded890b", + "container.space.none": "be329bb1c26e528efba89ebe040b6909323b2e46", + "container.space.accordionsubtle.yg.M": "1c5e4b281710c03ea419179087e71312c9f6fd69", + "container.space.chatbubble.outer.x.M": "c498cdf72b5e769c313727706b5a547bd02fda8f", + "container.space.chatbubble.outer.x.L": "556dbe7affd752df38dae151fd1a142f6a862312", + "container.space.chatbubble.outer.y.M": "dea74b5832eb23a91aa76bd457b58f96eabd07b7", + "container.space.chatbubble.outer.yg.M": "719aae7fd65a49bbb6f2f227b21d2ad3920d30cf", + "container.space.chatbubble.inner.x.M": "3efd3e644d66464519cea65cc88bdc8ee5023e58", + "container.space.chatbubble.inner.xg.S": "93658a0bc5020f872d5f366ce0f87f19b9f750c1", + "container.space.chatbubble.inner.xg.M": "f52a5f33eb6808d2872886cf97169c3610bb8884", + "container.space.chatbubble.inner.Y.M": "51335312d83b3e0fa677ae214b9991ec534159cf", + "container.space.chatbubble.inner.yg.XS": "83c69d7a7a0338153b2d577c3daeeb09721dd360", + "container.space.chatbubble.inner.yg.S": "81d91769f5cdc1ae0743b3c2204f400958e1e557", + "container.space.chatbubble.inner.yg.M": "50aeaf536409783e753d02b437376f2854146110", + "container.space.chatbubble.inner.yg.L": "b39b5ce0f0c7dd844bda779bef2d46a6b889abcb", + "container.space.filepreview.preview.x.M": "40fa528868de55291f05f4b9cca7edaeb5c4054b", + "container.space.filepreview.preview.y.M": "f838756d3bd82ba0292ad6514ba24cc5ffc413cd", + "container.space.flex.xg.S": "fe7167aa4e8cc7ea91a5edf19461494df1483664", + "container.space.flex.xg.M": "3392bb387117be43cd2943508dbfe71b6039346b", + "container.space.flex.xg.L": "f59c4ac489d1ca8ce8a0a80839224f78b725092d", + "container.space.flex.yg.S": "dc8d4b4fac4229769a8c1c7e52412a1124e6d6bb", + "container.space.flex.yg.M": "3c1edbcedefa4aaa6e46cef9d2c98d0b0ab34634", + "container.space.flex.yg.L": "6e9ad98ef037aadf206c2b395bedd5a132cab28a", + "container.space.flex.item.x.S": "671ec9ecfff0de165f47d1a1a05a1bf01ddbabb6", + "container.space.flex.item.x.M": "de127456ff4c1fd921f2f31a92a8d39d763cebeb", + "container.space.flex.item.x.L": "784286548c73f6f8dbce0880d662e84fd9d7904c", + "container.space.flex.item.y.S": "d0c2cccf8600455e7c34e4619027b04f92f8cd03", + "container.space.flex.item.y.M": "8d72fa96128bc66caf4f789ed7ca46d7192a4175", + "container.space.flex.item.y.L": "b4ec6924da0a333af501d8b8ed6fc4a0da8bb026", + "container.space.generic.content.x.XS": "26d074ab6878ce00982e653c23b316c973489403", + "container.space.generic.content.x.S": "2d5a733bf00d40d675ad730d117534ca5bfe40cb", + "container.space.generic.content.x.M": "4c8ee695f6ed3154997d1ff524cb72f606702483", + "container.space.generic.content.x.L": "9bb4ef9174097b186da0df490f583aea6b1ec7e3", + "container.space.generic.content.y.XS": "68034cad7c691bffc9d904e5595eb9d7de355854", + "container.space.generic.content.y.S": "7836e0cf124723b7c15f5689dac82ca979cd15dc", + "container.space.generic.content.y.M": "3bac5366cf71cac12cba33f2e40d8aff12336727", + "container.space.generic.content.y.L": "64139f658dc4a8a7af507be9f9ef84e760a73e8d", + "container.space.generic.content.xg.XS": "ba8cc9b2cb3850dc6f45e58c1eaa1b6d6e05fbb5", + "container.space.generic.content.xg.S": "a18fd706b93271a16766fc5f94f468ac076f8f9a", + "container.space.generic.content.xg.M": "b6a6bd9c02ffbae62efa07d4aa00a610b808eb8d", + "container.space.generic.content.yg.S": "5ea000dff557e896fcc9604d9d1ffd70bf9ec382", + "container.space.generic.content.yg.M": "6da2c3be21bc6f50cb7af0328aeeba9b6bb7be67", + "container.space.generic.content.yg.L": "0bca2c6f9cdae911e46a6694efb5c078e5b3fb9a", + "container.space.generic.outer.x.M": "a99b56c21a708aa92bfd5560a3374ea65f7c5f4a", + "container.space.generic.outer.y.M": "034be3befe16c7e0b4f7023003e28d0111b837c1", + "container.space.generic.header.x.S": "d388aa381342ba3d093b4829c956a4548909cd23", + "container.space.generic.header.x.M": "afa608eaceb2a9066def5baca73604defb11478f", + "container.space.generic.header.y.XS": "2c69fd91632cfddf27ce721d4240f094de97c1eb", + "container.space.generic.header.y.S": "aabf6846d01605b0afe33a2fddb85dc762619f66", + "container.space.generic.header.y.M": "e35de349a6574d70e62502aee4690fa1c6bfcbd6", + "container.space.generic.header.xg.M": "6b14b3c1d8107741b6f8e2e1cf63f8c5685dde48", + "container.space.generic.header.yg.M": "fe82a92c9ae882b5c5b72ae03258d80d2e11ce7a", + "container.space.generic.header.yg.L": "689776820f58dc1ff39aaa7ba8227a29c9934ef1", + "container.space.generic.emptystate.y.M": "5af748ec9978cee414a78fa17717ad4334263847", + "container.space.generic.emptystate.y.L": "85ebc57d97c2605d97c6f6a9675401a9f5b9b356", + "container.space.generic.footer.x.M": "2676df780a07c145147a3d5466155b976b972e98", + "container.space.generic.footer.y.M": "cb1b917fc78b1a5d190f73475531c3fd83a82353", + "container.space.note.x.M": "04e23a100d70ed7f23c1ee40536ac513899d728a", + "container.space.note.xg.M": "00476db3889a49f03b2cdf7974cd5bf4a85468ce", + "container.space.note.timestamp.xg.M": "07f788430a2552b03bd496308c28b3fe129de350", + "container.space.note.timestamp.yg.M": "cb3cbd9eb2b803aa728964edf1c3e3a39fa0f419", + "container.space.note.y.M": "329df3d74fcdf14ff3e0efa814ae3ae4cd179d2a", + "container.space.note.yg.M": "f18b6fe652c0171bf550e504ee8f36ba747f8469", + "container.space.linkpreview.x.S": "e8c0c1f482ceb797b189f46b31cb3b80dd2a231a", + "container.space.linkpreview.x.M": "bf21d375aee7e1f2d5c6ae477afccb919f452206", + "container.space.linkpreview.x.L": "eedab203a11aaf82e4b1a5fec9d4a8591e974269", + "container.space.linkpreview.xg.S": "7b49beb8feb3f52f6b2a3b67a4936146e2599b1e", + "container.space.linkpreview.xg.M": "6edf4132c3f40c2a764ab0d3351204c8da454da7", + "container.space.linkpreview.xg.L": "5261c9392c8bcdb42d0789db9c9a5129794b59e4", + "container.space.linkpreview.y.S": "30b24ee2d293925b8ef02204697cdbb5b89bfb11", + "container.space.linkpreview.y.M": "337c48d2af760e44c0320566211ff3320b3c0e69", + "container.space.linkpreview.y.L": "aca7b62c21a87bd3b1ad7da4d6ff4d8f113fde9f", + "container.space.linkpreview.yg.S": "8db204ccbd94171fd105236f9cd97da2fd16febe", + "container.space.linkpreview.yg.M": "1960209614df9ea038391542a71575bdddcae9df", + "container.space.linkpreview.yg.L": "99dbe7ef6a4f3ff54cac046e912459a0af488781", + "container.space.pagination.xg.M": "f7401e4bae00d1e0572f2cbbca0485106d047ea6", + "container.space.pagination.xg.L": "87f9b72e4a0c13df3fb3f44dcfe7ec83a3b9e893", + "container.space.pagination.y.M": "c18ee7c1705ce8c11b15644ff384393c21247bff", + "container.space.pagination.x.M": "684845bb947245297cf3ee68bda17e74d8bb5207", + "container.space.scrollbar.y.inner": "17ab35fb62c19722dbbfc425c4a6b4b63ba15db4", + "container.space.scrollbar.y.outer": "128aa7fa02ef9944dc43e5c19645687484e1f4ca", + "container.space.summarylist.item.xg.M": "a976858bd40f2d45a330896799f58c7281334798", + "container.space.summarylist.item.y.M": "aefd65b9717ec54769d22b15abe54062dbda20e6", + "container.space.summarylist.title.xg.M": "03ac07fffe69ff40683b347adbcce0320c5e13b9", + "container.space.summarylist.title.y.M": "035cbf395ac2d466bb999432fe72824411c2295f", + "container.space.summarylist.title.y.L": "f2c39b9aebe757dfd547b2c4a1af0aa23611706c", + "container.space.tilecard.x.XS": "3283f6ae4c998faf6c1e9b26b01aa6cd97fb0ffd", + "container.space.tilecard.x.S": "4edf567e2114fc6f51f6e19fc11ce939ed97716c", + "container.space.tilecard.x.M": "09f40684de4660b882500d290d1e95b41fe44764", + "container.space.tilecard.x.L": "decc3db5689c857e10604432d77384aa6d9d4a36", + "container.space.tilecard.xg.M": "c3b33501f24129d53c82fc4e149639792848601e", + "container.space.tilecard.y.XS": "d7775f38dd579a5aeb25eb0cc277ba25addb61e7", + "container.space.tilecard.y.S": "70c991d9c7c6fcf19201fbd498b3d03f8e2159fe", + "container.space.tilecard.y.M": "fa719f2b6d1c4c526e0d39bcd999059fe895aef2", + "container.space.tilecard.y.L": "291614d909c72e6d0d8fbf1f8d8db119195e4948", + "container.space.tilecard.yg.S": "80765e14d12e1fbcecdfab6d7827a5d4677378fa", + "container.space.tileselect.x.S": "9ac954108d048ba106352901a717aa1fd210ef8a", + "container.space.tileselect.x.M": "13129788f18383f53315ae9ffddaede4c00973bf", + "container.space.tileselect.x.L": "2f145470dcc4437e73cd70b8acec3a92fcf82f24", + "container.space.tileselect.y.S": "e4752a3dd3580d871d188f2ded5b10df8e8f61f3", + "container.space.tileselect.y.M": "344bdf12b2b5aa1301956aef3da25ec4ae0a1943", + "container.space.tileselect.y.L": "8b3f2caddd7f853aa4e7dc6fc169a44b5abd641d", + "container.space.tileselect.yg.S": "465b502e05a7aa136aa6b09a71f6704cc579423e", + "container.space.tileselect.yg.M": "b4387c8bd5732a652773e291d5a47ef435785475", + "container.space.tileselect.yg.L": "23cfcfdbe1a90340ee5d9e316b98a979e394844c", + "container.space.tileselect.content.yg.M": "74af4102e4dd89f96c0645ebc671bb94f2e295f5", + "container.space.tileselect.header.xg.M": "23e89f079c7b9735035885a5ccabca0ae8d9aa57", + "container.space.tileselect.header.yg.S": "26a248b08c89a33bf44b084443a1bb0b630f6f12", + "container.space.tileselect.footer.y.M": "2acdcc0c65882173561d74bdc8b1dc8833c0db00", + "container.space.tileselect.footer.y.L": "c4121bf5e5d46fa3e4286649266fd1a300ed09e9", + "container.space.tileselect.footer.xg.S": "7058fb1a1771786c12438786a072506ccbc25a22", + "container.space.nudge.x.M": "881ba380d2e9b58526f0693ab27c3e6b087cd2f5", + "container.space.nudge.x.L": "09231020b5939a16e4472be96824013f057026a0", + "container.space.nudge.y.M": "96fa69d58526a7ecf613578d23289161be69acb0", + "container.space.nudge.y.L": "e02df078cad971764f28fbdec569ede9c45458f9", + "container.space.nudge.yg.M": "17aa929f49c123f4576cec00fa5438f3316b91b1", + "container.space.nudge.yg.L": "61d4764ee7909353cb094ba00fff88f4226c07c3", + "container.space.nudge.header.xg.M": "72eab2b86cf55ac666fb199a128cd66f96d2f56d", + "container.space.nudge.header.xg.L": "148a9633f182c58611e7f659071c1436bdc0ce4d", + "container.borderwidth.AIgradient": "8721dccf0158d40460a7f6e9b5d3f1ff2c7c364e", + "container.borderwidth.dialog": "ddb1fae4551b767b3eed1c08af9bd8d0eac20375", + "container.borderwidth.divider": "28637cb07641692ee469d8e8de36e2e0ceb09917", + "container.borderwidth.drawer": "9222d7f55f1eca4405b6a785b12c0c3fd13c9006", + "container.borderwidth.footer": "5e473037cc97313427e16741da2533a76eb1fc23", + "container.borderwidth.header": "b549bd1883474abaab1be28be7af4347be438fb4", + "container.borderwidth.linkpreview": "2d4207543a4ccebbe7348e69257d4542c7eca1f1", + "container.borderwidth.note": "e5c09cd6f6576d1dd5c00446eac331265f18544f", + "container.borderwidth.sidebar": "f8d884f90b73fdb524bbeca9c866e9e979e8ba56", + "container.borderwidth.summarylist": "620956eddce0cf6874f8eae0081b3afe405891a7", + "container.borderwidth.tile": "80bbcd315b7bca286f1998e9d7010e642a17aaee", + "container.borderwidth.accordion.standard": "fdb1ddef97f1c952cf28e11d8fb987180fd05904", + "container.borderwidth.accordion.subtle": "9611aeee0f5be73900f6b84d3e8e9e20711cd129", + "container.borderwidth.chatbubble.default": "a4666cca69d91fbc8d6f8700adc5d6cef40c6750", + "container.borderwidth.chatbubble.error": "b466eff09ad36fd05df6240a071bd1f9d06c55eb", + "container.borderwidth.chatbubble.success": "85b04e5492ec463bdac7ab9ab8fbd33753e3459e", + "container.borderwidth.filepreview.container": "420d1c6f8ad2e2e5137c4d220d102b10c226eb22", + "container.borderwidth.filepreview.enabled": "eba01ef609d4fc824b623b7dae0a6e433730408f", + "container.borderwidth.filepreview.active": "c247a326f96889ed037b21e3db070710bfdd7734", + "container.borderwidth.tileselect.active": "2109a8890a5390d87a7019031d749c52920bd4e8", + "container.borderwidth.tileselect.inactive": "b242a9ec9e1f6c5fc636d5be39f0e09120b34db0", + "container.borderwidth.tileselect.selected": "d2ffa34ec87980e4cd6540bdba81a2f07aeea12f", + "container.borderwidth.tileselect.unavailable": "0ac60b7893992b12d6208780ae2062e7eb7cd7b3", + "container.borderwidth.tileselect.enabled": "9198d05a4a2c6991c910b5253c69c9f72a35f878", + "container.borderwidth.nudge": "8305a4d3214762549af0b4c300df8dc22e85ba25", + "container.opacity.carousel.hidden": "5dd79d4b0a60f10c270a15455a4eba9d3519662b", + "container.opacity.dialog.dimmer": "a5698d9ca3db4c3e98d7233c18c0e2e05cfdbefe", + "focus.color.bg": "1a44c03b53d6bf59380e37568ffcfa5293e7efee", + "focus.color.borderalt": "4b1be039640d9fdbe9514997aede824c1ea88844", + "focus.color.border": "5436e4a8a8cf44ced6957d6882f29cfe9556860b", + "focus.color.label": "638ae4a548e6d3dca97aaf7000a1ad432068c3cd", + "focus.size.underline": "0e0191fc202e1e6d457d457ae8704ec4d55d02c0", + "focus.borderwidth.secondary": "116893f346a4701c4c2c60bcdf3884ca21f6933b", + "focus.borderwidth.inner": "338e68638f935322d838d9208cb90505ef0eb068", + "focus.borderwidth.outer": "671988bf2ba9e1f763ed7a961900ea72d8e4aad4", + "form.space.none": "b1fd57e584091c64906053f25aeaa2f9bf3c9231", + "form.space.calendar.x.M": "5fa820ebe0c359a7300148a782ed3482628d42d2", + "form.space.calendar.y.M": "dc6d7086ae18551f95a4a41bf5f487cec057ef2d", + "form.space.calendar.yg.M": "41a12cab386726cce4e12f35738d4f0322dc3608", + "form.space.chip.xg.M": "a1174533f772c367da95d9c8db3f4984af8cf592", + "form.space.chip.xg.L": "558b5ba94f068a3d01ed2a19b055c1f6e758908f", + "form.space.chip.yg.M": "69d8ab511d78cd96182a90e94262f5bfb1caf9a3", + "form.space.chip.yg.L": "63bae9330285befe052244134d5354eb94156098", + "form.space.checkradio.y.S": "4d563cd925e51fae1e85f5812a16d2a00e1d2e05", + "form.space.checkradio.y.L": "c628a9c1aecd2923eee80e553fc3ff8c686e51c9", + "form.space.colorpicker.x.M": "4827790370d3db68f2b98596251dea0666ef51ec", + "form.space.colorpicker.xg.M": "cda58aaadb49f08233da67ed822e26fffc335c13", + "form.space.colorpicker.y.M": "686b48a89257d43fbb7526005fd68189baeee57d", + "form.space.colorpicker.yg.M": "54b6ef6086a197246b4966df7c100b02361b6517", + "form.space.dropdown.button.x.S": "e1fe95750d24b1a11609e8a17920033236dffbae", + "form.space.dropdown.button.x.M": "85e59eab04a23e0a8258e46f7789ee15baadc44d", + "form.space.dropdown.button.x.L": "63554d10fdd63f35e396422328b7f060409e6887", + "form.space.dropdown.heading.pr.S": "8d03e7130ac12b749c3bca1eb569b6bd7ef8fbab", + "form.space.dropdown.heading.pr.M": "0286ce050a797c14ac1498770cac664157d6fd94", + "form.space.dropdown.heading.pr.L": "fb28f8f9608b07f460949438dd243312872702e8", + "form.space.dropdown.heading.pt.S": "6fd47ed0ec79144b5cfed63a7ef5c07b4a4bd76e", + "form.space.dropdown.heading.pt.M": "63761910ee65ab59654e57e8afd10d41a4437efd", + "form.space.dropdown.heading.pt.L": "18d6622fafdc1124c2df5157d04389d5c67f8edb", + "form.space.dropdown.heading.pl.S": "f1e8b01d95240bf6efb4a38a488c4ac025acdd75", + "form.space.dropdown.heading.pl.M": "8f3b7c864d838ba08a9284a447fe260d84115d6f", + "form.space.dropdown.heading.pl.L": "1d15ba5f2d2db5b809cc276e52e686940bcae4ec", + "form.space.dropdown.menu.y.S": "d63a93c8831b82d3a0bc9099643ddf150d9579ad", + "form.space.dropdown.menu.y.M": "e4b30936feb49bb962909fcb8342fbbfde58c804", + "form.space.dropdown.menu.y.L": "df75944353a6fd5f581f01ae7ff346a0b8e1365f", + "form.space.dropdown.menu.x.S": "b91ccac1e70f9231388ee3ba55566c938e52bc39", + "form.space.dropdown.menu.x.M": "969df9b6ae5a5f33ff876f91d1c37edf8994aa08", + "form.space.dropdown.menu.x.L": "4a0b9000b983e73dfc749c4e1b433c38e46988c1", + "form.space.dropdown.option.x.S": "0c328f54f85c018ec18a75fd6900fb35ae07ff8f", + "form.space.dropdown.option.x.M": "51b7bd2569868c122c5be1739f2b1066126ada7d", + "form.space.dropdown.option.x.L": "f9802cdd00bb3253272d5181c3cdf6ade6ae9ac9", + "form.space.dropdown.option.xg.S": "66782db52715d3db50d957c8af89eedb247e6161", + "form.space.dropdown.option.xg.M": "a65e3146fbd6a3b734df046cb722dac1272ef499", + "form.space.dropdown.option.xg.L": "25419ef1232a11de41152020ba3909a0e86164f1", + "form.space.dropdown.option.y.S": "9c8266887c2e85a14746effabbae1756aff6b55c", + "form.space.dropdown.option.y.M": "a6b9d5cef681ea85262b32d6e9badbc0e1f318b9", + "form.space.dropdown.option.y.L": "b53133482c01a9c35ae5f5de11aa96553ac416f9", + "form.space.dropdown.option.subtext.x.S": "1a80b5901ea8d520d7f22b40a6b99f7e1fa4d0dd", + "form.space.dropdown.option.subtext.x.M": "f18619a90021e05b674474603a850c41cc2a762d", + "form.space.dropdown.option.subtext.x.L": "011fdf02288d8cbc566ef976e1a43d276e895e10", + "form.space.dropdown.option.subtext.y.S": "b508fccd1cf1abdbf0999697bd4314a2a40268b9", + "form.space.dropdown.option.subtext.y.M": "8743acc41f04945708454253292cdcdc986deb4f", + "form.space.dropdown.option.subtext.y.L": "305ea318254cb45041c382848b39d970c18e279a", + "form.space.dropdown.pill.xg.S": "51de850412942cab19bfe4503ba0667ab0ed13c2", + "form.space.dropdown.pill.xg.M": "e038330094f7e2e8293306ed051d7350cfff96fd", + "form.space.dropdown.pill.xg.L": "4b51b181052763c62ba6cab2a1692e50ae7380c1", + "form.space.fileinput.status.xl.M": "ad90a20ae5bde6b7af9034c7558276f81c3d1690", + "form.space.fileinput.status.y.M": "19cf2a8934d72617c8f9d52e13392b46fc0bde32", + "form.space.fileinput.thumbnail.M": "94cc086c990e42ce1bb1989e035f6f9cc93a7c50", + "form.space.fileinput.preview.x.M": "6b2309e944cb982051b7a74db9dbeba414f8bee1", + "form.space.fileinput.preview.y.M": "da979e76bc95587a52dfdcfd4cf765e83e8ce77a", + "form.space.fileinput.dropzone.x.M": "e1cff262ba779224643ac5605e71071728417675", + "form.space.fileinput.dropzone.y.M": "62aca831ee3501ef16a5a43c88db124ef251febc", + "form.space.fileinput.dropzone.yg.M": "40da3fb809c57d45182a032a9987e81af1de4214", + "form.space.input.stack.S": "8f4b72a2e09cae700e6dff1f03981939bbc93907", + "form.space.input.stack.M": "1ae6b6a7a83e262d5c97af79b7182b3db065b0ec", + "form.space.input.stack.L": "24f88676fdbf5fd5ac0194403c220543cc3878a3", + "form.space.input.x.S": "38119cbf362c6cd302331138bb74cf400ee84e9f", + "form.space.input.x.M": "5eb0796ff5cfc8d295032eeb248019110e35c9a9", + "form.space.input.x.L": "7321208e7cd65508a25c9d6ae225a65ffeac939d", + "form.space.input.xg.S": "20c7f26b79c14166115dfa2ecbc4a4311fde2fd9", + "form.space.input.xg.M": "6095c460e09fd8ce848531628ad589a8a9a34cb0", + "form.space.input.xg.L": "26b92f37218b344e02da924bbfc981d53ad81fdc", + "form.space.input.y.S": "21b063ba7c3c019ec08bd9d9d8122b424b9af37d", + "form.space.input.y.M": "0cbbd11480d8fdbbbc72a5f12ddd1883df7128ef", + "form.space.input.y.L": "994ee5e836d4aeccfd2d1c245908614ccd9e859a", + "form.space.input.yg.S": "4ae8056788bcc62ae280515bffa1bbe6d7140de0", + "form.space.input.yg.M": "f3c15fd035959f8363ddf6ef264c16692d2eabc3", + "form.space.input.yg.L": "3e9b6593108da3e4eae71cb2733bd324c12f835f", + "form.space.integral.secondarylabel": "080b29c4968071426cb3c205c4ead30d5edf9640", + "form.space.integral.xg.S": "556041e65175d56ba2c3762e0329f31d0c5dc9b1", + "form.space.integral.xg.M": "ff8153950176e429c19a4edeb51ff13b8f84b1f6", + "form.space.integral.xg.L": "6731174fa660094ebf84d4215e351a6c68c87d69", + "form.space.integral.yg.S": "d024d095c8536c8f3ba425d50b78519df99de0e0", + "form.space.integral.yg.M": "0e2d41bedab20cac4f3ec79e42b39b116bc9444d", + "form.space.integral.yg.L": "8e540c4cecf9b9204c9f744aecd6bd5e5e85bdda", + "form.space.integral.progressive.x.S": "ea6797a633e7c317e8f87bf1bd96c5023cb16b2a", + "form.space.integral.progressive.x.M": "90fce66af60b1b71a89e227477456b440db600b1", + "form.space.integral.progressive.x.L": "b18b8d3c986e32ee332a764e283e70a8588edd11", + "form.space.integral.progressive.y.S": "64549fc04dfdff77c24bace01e7f2787004725a5", + "form.space.integral.progressive.y.M": "dd452cb8af2347d4f4a6682c05f9add008a21485", + "form.space.integral.progressive.y.L": "d1c1c90b9e3eff0131bfcf1f5bffd736eb186b84", + "form.space.integral.progressive.yg.S": "4c2f04d95b58dc635747e89ce5aaa94bb936325c", + "form.space.integral.progressive.yg.M": "fe9ceda0148aa0c79c56e76ae2a1ff77752329d8", + "form.space.integral.progressive.yg.L": "059b33af03212bc1a7d0fb1b1d84ed08574f7784", + "form.space.rating.xg.M": "c7a840326d81b1e4a47e1bd5d5a6800464c9ed51", + "form.space.rating.xg.L": "787e742e29939c331964fc992c0359a859aa4330", + "form.space.layout.stack.S": "1022abe4d9b7244b239553ec40450fa61849ad21", + "form.space.layout.stack.M": "8873242009cb737c39a0467e96f23267f993d027", + "form.space.layout.stack.L": "321ab742b4ddcf9945ae5159657f7e257fa827bf", + "form.space.switch.xg.M": "fdaea1d60ebe8e3b9cd30d8d47281aa881026d2f", + "form.space.switch.xg.L": "16dbc07b700d505929b89370d39e228462503780", + "form.space.switch.handleside.M": "6803d3c5096145afdf8591ae16f8cceeb5a2318a", + "form.space.switch.handleside.L": "4614875ba93fe3acea29bb131f602b3ffe5ef81b", + "form.space.switch.labelside.M": "4dfccd593833df8f067e262c78e54214a39b6fdf", + "form.space.switch.labelside.L": "e00850462e087712b8f5297147428b8d42af57c3", + "form.space.texteditor.y.S": "0db4a526eb132bf6abb89faaec1ae5daedd7af33", + "form.space.texteditor.y.M": "a3fb74b3271be2e301188d75d717c35ccb427773", + "form.space.texteditor.y.L": "c0fc5d47198a3a3512589f83f6973452d7b0433e", + "form.space.texteditor.yg.S": "88121735ac088e29ff0d4541cd7a5af0dd62c708", + "form.space.texteditor.yg.M": "c1929da381e57a8ad9300a175699cbc177bd75be", + "form.space.texteditor.yg.L": "af4f4f332e40d4d841c480a6aa93d1e9de9d9ceb", + "form.space.texteditor.x.S": "a7cc7de8ea0ea2324d89aabbea470d51a6834ac5", + "form.space.texteditor.x.M": "fafa7a052c8ab48ea5c284e1c4ff365222b76d48", + "form.space.texteditor.x.L": "ae7d3a188060e965204d86b53d9d0a8792ff7170", + "form.space.texteditor.processing.y.S": "12920318d8668a1f284662c82f5d6122a720ab8e", + "form.space.texteditor.processing.y.M": "f6afb8ea324c7d04f18ce9ead39f20519b49a0be", + "form.space.texteditor.processing.y.L": "03708f39433842b6431843f5d9b574b6082965f2", + "form.space.texteditor.processing.yg.S": "d7dbc527dd938a1bca77407623b4fd6b2ade65b6", + "form.space.texteditor.processing.yg.M": "fba2c5fbc12b168d3742c999cd9c830c20c340a8", + "form.space.texteditor.processing.yg.L": "7e1bab783e192d2547721c73e370ef1fc16a6b64", + "form.space.texteditor.processing.x.S": "a095668cb458f1e663877d95bc9bee71ba8601ff", + "form.space.texteditor.processing.x.M": "49cc40e2349c9941dd115ad96ddf321a0b0f2e0e", + "form.space.texteditor.processing.x.L": "6f08a3a298b41a2955ef1245cda1dd1f706a3525", + "form.space.password.requirement.xg.S": "bcf3e8ac532bdce1e04e46f53f77ca9c14a48bc2", + "form.space.password.requirement.xg.M": "4ae4844d2b3c71e7f2d8e5b54f515e4189f390b5", + "form.space.password.requirement.xg.L": "446da87e46cc7fc62e9fe309801f48117d70e1c4", + "form.space.password.requirement.x.S": "f77973b377870f4357d976470ed3a00771dc9db0", + "form.space.password.requirement.x.M": "d07c09743fcb7ad804a5ae7dcd649916bb11ae76", + "form.space.password.requirement.x.L": "cdba4349efa26a04a58a3a336b4a45ba790d9251", + "form.space.password.requirement.y.S": "4678e4cd191856caa0ea7429ac1d076391826eac", + "form.space.password.requirement.y.M": "c045202a20124d3beea7cbec865a5df18420fc06", + "form.space.password.requirement.y.L": "812f6d8ba4ae5c0b5c4634bfb04f67c92e3aff50", + "form.size.none": "a25b32b0405166743ea387d2ead26b827cc0fe07", + "form.size.calendar.date": "29b9df598124f24075088a9ae646a7c65c20940b", + "form.size.calendar.day": "ef6fd0e716a14a0b80eabb8a4f7044ace48d7262", + "form.size.calendar.month": "f5252bc5827e3d39aa8bfc3eba7faa14dfbb7740", + "form.size.calendar.year": "8190652e985a16d94afff669826f0f6b314952d8", + "form.size.calendar.today.width": "2d7fefcf2732eb5293f2f8e2278056c6f1047bff", + "form.size.calendar.today.height": "82b269d8945bc1036589ca37cf8e2bbd72a491b0", + "form.size.checkbox.S": "92ae99719d526f84cfaf935e610db7b647bf79ed", + "form.size.checkbox.M": "157049edab99b4ad6da56e652dd539593c296db0", + "form.size.checkbox.L": "60f7e5f522702fdbb34ec95f2ca9bd09d7b3eb12", + "form.size.colorpicker.swatch": "08691b83bfa0f90df9aca196219f4dd145f31541", + "form.size.colorpicker.swatchcontainer": "40eb48d2f860aee0581bb974401d5326d4543afd", + "form.size.dropdown.item.S": "4966a6029ada8a4be75a89847f492ee11318e2d7", + "form.size.dropdown.item.M": "bccd1a3803ed80eb166fc59ae4f9ce8b772107a2", + "form.size.dropdown.item.L": "5279f0e7c5b59389a1cca6f6330f2b70c09d4f06", + "form.size.dropdown.subtle.S": "c33122c9eddee89169150a60c23888bc9e1690c5", + "form.size.dropdown.subtle.M": "2c37e55db778f859d325bc8d04584805ee11705e", + "form.size.dropdown.subtle.L": "6a059f97feff902c6f0c06a7fa50c65d0115558b", + "form.size.fileinput.fileicon": "f1d773b434dd7c36a0fbd6b542e687687aebb44e", + "form.size.fileinput.preview": "851a6753c223131fefb26b6de9587031789ae2b8", + "form.size.icon.S": "0f336f8128eedf68a86e04a910a9c216079cd6ba", + "form.size.icon.M": "5d01d96aedbb4be1843e9dfaeeb2e9478bb59fa8", + "form.size.icon.L": "9b99a6aaab78d178f17aea1d4a0b70d88128583b", + "form.size.input.S": "591726a6514a7e76ca421665025c7a70cf616fb0", + "form.size.input.M": "720c134081f94b299c544622d862bcaf4dcec197", + "form.size.input.L": "d0d3b61c3a6282ffa61b3a1a5f14b5d330e49264", + "form.size.input.timeinput.S": "daed74a4563a5e50de74764e64a4dcc5c1b710be", + "form.size.input.timeinput.M": "afbad30b585b43478700c558a1fd0c2e9e143b2a", + "form.size.input.timeinput.L": "8b7edaa3072ec7f0783d54c7a942bbc7e068ec9e", + "form.size.radio.circle.S": "8c70a03381f5022950ac2792110618574d3d3a20", + "form.size.radio.circle.M": "a9c91ee56a4ce49ff3e325384e9dca2eb8544f0d", + "form.size.radio.circle.L": "521987d3019b99accb3a8c5deb6aa97f4a8e939b", + "form.size.radio.dot.S": "54d9076e4ecf8050284723683ce24ae03eea3dcf", + "form.size.radio.dot.M": "b2d52e717b995bd961349db92960f66f7a1410ea", + "form.size.radio.dot.L": "e468adf65121bd2e253011572cfb5638975896c6", + "form.size.switch.container.height.M": "419f0d0f231743bae4b5653417b06dbe3784307c", + "form.size.switch.container.height.L": "f8a4ef7bb8c3b0219002f907b4cd6c171115dbe0", + "form.size.switch.container.width.M": "91ba8391af717db47b59bd59a4dae4d7006a1338", + "form.size.switch.container.width.L": "d4c1a0516274919a2a19d5cb3ebc57804f68881a", + "form.size.switch.handle.M": "f4276929695f80e8b624292a038574af0c762f9c", + "form.size.switch.handle.L": "ce12fda524b7e168af3bcf57b5f1d5587855791d", + "form.size.switch.handle.icon.M": "ce04c4d7d575ea18e1a3900dba2eaf0719304ba0", + "form.size.switch.handle.icon.L": "c7a24b78fbeeef9d1212ba21f2a229bb86888b29", + "form.size.textarea.M": "e13aaf5fadf4de89aabcba16772aed03c8bf5ffc", + "form.size.validation.bar": "29b9786d6cfe6d92d686d948787aeced98b07cf9", + "form.size.rating.M": "9535faae8a6ad0f08b22dd8bf3db495f0793b76d", + "form.size.rating.L": "32958c33d5e7fd421cefeb3693bb30e6dc237f90", + "form.color.calendar.bg-disabled": "0cddb2bba3505dba0b7558fb35cb4aad3ea1a4e5", + "form.color.calendar.bg-hover": "b28c3339932b3133d2f89f236245d340f240b17b", + "form.color.calendar.text-active": "b2b4e56e248d12b4afd6b049be08180e63634996", + "form.color.calendar.text-alt": "05efde78b43249a1a16193b114b5e83f350662b7", + "form.color.calendar.text-disabled": "0912210ce9d116159dca2e72f5c00b78d62005f8", + "form.color.calendar.text-duration": "c50daa3b67d724a2e3a368c04a70fe3dd6f4cec6", + "form.color.calendar.text-enabled": "25ed564b1745fb9922760b61f42b737e0cb2b2c6", + "form.color.calendar.text-hover": "8ef0192e78320000efb043ea94085f6f42b510d0", + "form.color.calendar.textAlt-enabled": "46d378eea5fbaa9167216c01ef9e4de0ee725c94", + "form.color.dropdown.bg-hover": "27c7d168570136875396024c9d3f7a0f28bd4096", + "form.color.dropdown.label-active": "e2dea686190f9d3af8633a39db31d1019561e017", + "form.color.dropdown.label-alt": "6ccd9a01fdf697a7de8470cb706baffebb153918", + "form.color.dropdown.label-disabled": "d951ee9cbaad7ac43a3888c7a8ad239bee3c0302", + "form.color.dropdown.label-enabled": "c8cbc18ab6a590cdf6182b785b9498995b98e010", + "form.color.dropdown.label-hover": "a3a47b1037df4e8c7653471875e8b96872f7c20e", + "form.color.labelset.label-required": "92c81d82945c07dabf11c284540eee54c5a65eaf", + "form.color.labelset.label-default": "a7c58acb02f15c4527256035c766a1d158d72f7e", + "form.color.labelset.label-alt": "8d06bd5ac964ffd34d707f459cfe3ed7ab9949e7", + "form.color.labelset.label-disabled": "b0b8f92757cf04c270b4c525dfb43eee3c5c2e3a", + "form.color.labelset.label-readOnly": "834b3b7d08ab89b53346916ab33344214cab97f4", + "form.color.typical.bg-alt": "ace76ed809c8f2688120aeed143c7e8fcc534ebe", + "form.color.typical.bg-disabled": "0afdb433214497c689b86ead262e1c797330dc30", + "form.color.typical.bg-default": "b2d510cd0c82500cf194eb4456c34867ed93649d", + "form.color.typical.bg-enabled": "9414274c07f32d2921eda6729454954708b10350", + "form.color.typical.bg-hover": "a303f97d80723dd4185eed0cf4b06f2d11a1123e", + "form.color.typical.bg-readOnly": "ceaaef94fc3c401a8473ab41166a142c80f3590b", + "form.color.typical.border-alt": "673b9e3ccb7ab7e0a8f82693f4c6c24e0c0807e7", + "form.color.typical.border-disabled": "98f6123baf39be0014f0e6ab58550136deebe5ca", + "form.color.typical.border-hover": "3cf9b812a335e8ef7b27a4ea6037a583e12ac115", + "form.color.typical.border-readOnly": "0f23eb41b218b1a7f932a06ccf1d7e4d839eef86", + "form.color.typical.icon-active": "3a3cc48bf7fadbffb430eaad447af344532d19b7", + "form.color.typical.icon-default": "2dde958660d380ae37bbd51be3a3c04caa96bfd8", + "form.color.typical.icon-disabled": "f3ee2ea75e9cc0014fc8c3827f2aa9e3a4ed1807", + "form.color.typical.icon-enabled": "aa7ebd4dc20ba9744b3303d26e9ebf0fb21b0c92", + "form.color.typical.icon-hover": "25e65c45ed475d20c803cef85ae0683ebd9164ee", + "form.color.typical.icon-readOnly": "bb5cffb68a1fdfb3f8277e573b1517c12a9897e6", + "form.color.typical.iconAlt-active": "c39d35f3429b4cdc6eeeaac39b6cef4990ce44b9", + "form.color.typical.text-active": "3d7109d37cdc5921c14f8e5c1cca0f16f4dd4379", + "form.color.typical.text-alt": "53d8f41ace3fb1b6776858c286df14299d787d36", + "form.color.typical.text-default": "aef782a9f3a6b414c8d53cfa14219d71990e995d", + "form.color.typical.text-disabled": "911c7d74d03948bf027a6b08ad0c1c1106a75e73", + "form.color.typical.text-enabled": "51fde241983b83c80ed032d7d16fefdc2d532976", + "form.color.typical.text-hover": "18de3da295b46ad1e5173ca8396319832cdf9970", + "form.color.typical.text-readOnly": "d1bdcdf27cd2a4ebb7f9da68de614c3e20c0c092", + "form.color.switch.bg-activedisabled": "72e5bd0694f2861463a9ad71047b7f6189def26f", + "form.color.switch.bg-disabled": "bb6ccf9440160fc17af88258ae073843b9e04751", + "form.color.switch.bg-enabled": "c0a0a577b0b464b3b36c1f34e89cabca1b5ee173", + "form.color.switch.border-active": "d7deb138e7727c9ff1c3179556258e9f119f0f76", + "form.color.switch.border-activedisabled": "855cf342c908026b2b0db41bb632fdb2666e5089", + "form.color.switch.border-disabled": "0e09366c8f465d401f6de70c5212b67aaeeabd47", + "form.color.switch.fg-active": "d4473ac50dea576c66c0c9620e915fc7f7bf5b18", + "form.color.switch.fg-activedisabled": "f48fc8ee71a371a40f308362539f5c80a1467cf7", + "form.color.switch.fg-disabled": "6dd0fd768dfb7c669a6b6d76c4b557ffdd8e2acc", + "form.color.switch.label-active": "ae7fbd6d4e83d26dbebb663eaa8dc1f985241887", + "form.color.switch.label-activedisabled": "ac427591bced3611e52b1cdef5bbef3d17e93e1c", + "form.color.switch.label-disabled": "a4f9165079b47c3047318bf089f183d020966f01", + "form.color.switch.label-enabled": "d83db19500ac3382c2694b902172406b39afe070", + "form.color.switch.icon-enabled": "4d93d7b57adce6989b3def1218d12cd1c8ae87cd", + "form.color.validation.border-error": "93811a3c3877905ac43600332319635f70399ac1", + "form.color.validation.bar-error": "0ad75542195e5c719ee8db50327e4b0d7d7faf50", + "form.color.validation.bar-warning": "ed7ae9d160e8873fad771d4334afd7eaa9aa8784", + "form.color.validation.label-error": "c47f07276d7c743d528fa7ba75f35fda237b8e61", + "form.color.validation.label-success": "265920295c17bc684a24aa36dfa17e831a382410", + "form.color.validation.label-warning": "af7a0557dec877c8fa4d1d8acf2cbec03a52c326", + "form.radius.none": "553390582937aa18426aeb57ddb8048833412d63", + "form.radius.radio": "1ad384ae461fc69e1f94f191c33d24baf1a3402d", + "form.radius.switch": "9301ddc8cde111194559e0f51329f9d8cf45a47e", + "form.radius.calendar.none": "9adf531d2f751730c962b7b8e7d9f08385d803f1", + "form.radius.calendar.date": "f963ab2ee9fffcbd2d373c0f0d6bbbc8b493e942", + "form.radius.calendar.today": "b3940d174d962c799ffae46ed9486c2fb3dc1acb", + "form.borderwidth.colorpicker": "ce5daf13df514bf79cb715e8f59836e4ff8a0e05", + "form.borderwidth.caution": "7ce7ceff41e7c4c9db5202d0721431d2e7fac883", + "form.borderwidth.dragover": "b329dadf69e297470b98253da131395d99594cfc", + "form.borderwidth.ratingstar": "a51ba6ffcb474f0224356e3c0a750a018b8316fd", + "form.borderwidth.error": "2081772a2b64e60206abea44afebe3a886c2ca85", + "form.borderwidth.fileupload": "fa8260afcea8aff5ce59e0ec80b9bdf1ea246dd6", + "form.borderwidth.input": "94c2071bb327d64c5cbb050d75479f74655047a4", + "form.borderwidth.searchunderline": "0d1b03465ccf7258413c0813e562a7bc9538a5cb", + "form.borderwidth.switch": "c9208cb3207f634899d02795befa76207da0d390", + "form.borderwidth.tile": "49ca40d0865fef95add75d379711df160be7a036", + "form.borderwidth.calendar.duration": "2b6702c62513f9510110a88c5606dbce3d94ff2d", + "form.borderwidth.divider.item": "fc81eb88c3d213c1c856afc3b2d2c855b86ed68f", + "link.color.destructive.label-default": "8dcce49769a780c566ef8b38a43f383a1be0bd48", + "link.color.destructive.label-hover": "e175e5f083ce6387b542f69fcb9faee614a05cc8", + "link.color.subtle.label-default": "ecd3c05046e7f4f480d9ba9cbfd09f3ba3491008", + "link.color.subtle.label-hover": "787236eda81b352ba7c56fb1378a900e4a313193", + "link.size.skiplink.M": "cef755d34930794087fa471157a716d2cdeec6e8", + "link.size.icon.M": "a1fd5a05cfd06ee66f4d4e33ecbcea3740aeb968", + "link.radius.link": "f2b6536cb9b59e7dc268c8e1046b4bb2d464f7ac", + "link.radius.skiplink": "37714a050795008fde5278cd6ad602ad2dca49f7", + "link.space.integral.xg.M": "b5aa104ea2d857779276feef8f9e11c640e6f39c", + "link.space.integral.xg.L": "49dc05928b0d2aa16a983ef433045bee3fd11be6", + "link.space.skiplink.x": "d6ffce0abfe37a0aef20a33cd280a6432495bfb9", + "link.space.skiplink.y": "be233b0eafe89bc14ed3e5c05359dcfebd016d05", + "logo.color.sage.bg-default": "176fa4bdfdde2c1d90543d62f76c86a4210d33bf", + "logo.color.sage.bg-alt": "08a6379727481535a381a2ce3a86af9f9555ff37", + "logo.color.trust.bg-default": "d54eaa67a5b1054ecb788b2b7d0e1fc30fb5c381", + "logo.color.trust.outline": "a460c2cd601a494fe58a6b921226da2b3e7a5692", + "logo.color.copilot.noBg.bg-star": "da56b1e1732804d510f092d0f083dd07c48a0774", + "logo.color.copilot.noBg.fg-default": "395284d7da4f0c599691707823ec461336c43766", + "logo.color.copilot.withBg.bg-S": "51078746fc01ddc633f7f05563173b88681e860e", + "logo.color.copilot.withBg.bg-star": "4692ceb2d703ac16b5e6fa0da55ec679ebc5b22a", + "logo.color.copilot.withBg.bg-default": "2c46b6042a18b67af472e5daaf33a0e9563a408b", + "logo.color.AIIdentifier.bg-star": "c7503be9a3ba93460dd15d608e5553811558fae5", + "logo.color.AIIdentifier.bg-dot": "6aee04adc22efb6cdb8d60b830ea6fcba86c1603", + "logo.color.AIIdentifier.outline": "342bfc3643e5a916607236ddc4d6d1229addd8b3", + "logo.size.AI.M": "840ea6236181a2a446dd992b2f877f85211ec3f8", + "logo.space.AI.xg.M": "b9e01b0611dcee1c94b1f0f49527f17a1283e090", + "nav.color.bg-default": "c20289a3ebe37707383b8259b014d64a4f7a7ddc", + "nav.color.item.bg-active": "84b24aa4d93ef105e302668b30a444b4195a6f16", + "nav.color.item.bg-activealt": "0dffaf7378b5c4324ffa443024bc30c0f95164b2", + "nav.color.item.bg-enabled": "6ce9b15040a4e7e0bc0ebb68e13d99b9b8b7a936", + "nav.color.item.label-active": "982debe9801aca402461c3751f74903655f74024", + "nav.color.item.label-activealt": "9997faa11976bc9df560dc6a62f2e59ebe7ad331", + "nav.color.item.label-enabled": "f611e7397ac57fc44433798811bc913d71316c59", + "nav.color.item.label-alt": "98102be75a1b9e4d5587fded9ef31b78b0e72606", + "nav.color.menu.bg-default": "36906d3d6048072bcc384355439d189c5b190496", + "nav.color.menu.bg-alt": "649425622bfb76795abefd14e424ae291acd6cd7", + "nav.color.menu.bg-alt2": "1fda48e60c42278d289a8c0abd8a2d1f200a8b92", + "nav.color.menu.border-default": "277b1e7970c90781b74cf249e5582e9c739e1c0f", + "nav.radius.menu": "31d367e4dc424f9f54e3d1a0a262b0215203175f", + "nav.radius.menuitem": "aba07f4523958ab04e679d32b473cf797c34e9bc", + "nav.borderwidth.divider.item": "6aaf1770f1e207dd13457ee810d653232af5a4a9", + "nav.borderwidth.divider.menu": "3dafeb6edca38a3d36fe50f946d763562db9078f", + "nav.borderwidth.divider.segment": "9fb4fe7505b14ddbac5ebf7b60af731ea5b07e2b", + "nav.size.menu.content.y.M": "942012e158d3856451b48b2e37d509b0e3cb2aa9", + "nav.size.menu.content.icon.M": "5c917fed46e4c1e13916d988d6fbb5087c904423", + "nav.size.menu.content.icon.L": "80b9d270fe7d57964743c0efa7d2ef33112cc36c", + "nav.size.menu.option.x.M": "fb20d933b9d5268937def8122ad580dad84ed033", + "nav.size.menu.option.y.M": "393562fff0bdec75cdfd62a51bbf1a88273dd69d", + "nav.size.navbar.content.y.M": "0a11abbf3e77f117b4eeb1cac6a28476694d2bf5", + "nav.size.navbar.content.icon.M": "afd800569df32bbee2da6b7a228dfaee4f5edad2", + "nav.size.navbar.content.icon.L": "d0db3058571b922f86facd1f718d912e45f5e29d", + "nav.size.navbar.item.x.M": "f0897065bac5a8e24649eecb841f5a958d20c2c8", + "nav.size.navbar.item.y.M": "5a35367c060831557c5c14263c0fb66dd30cae3b", + "nav.space.menu.container.x.M": "9f5c8b684563dfbcef753a0b6f40a130a332a6d2", + "nav.space.menu.container.y.M": "ab85414194125a547c56b38b0dc4be2943475949", + "nav.space.menu.content.x.M": "1d27af3c95d7de7daba2cb3562a2e7ae68b82ca1", + "nav.space.menu.content.x.L": "3eff2ed7b2ab6b529e04975708c4b1015b00d0a7", + "nav.space.menu.content.xg.M": "ee5231965beee798a1177469cd59cbbd1f000a59", + "nav.space.menu.content.y.M": "674dbf98588f21f968d408b53388975b636ecab2", + "nav.space.menu.item.x.S": "67fdabf111fdbe417ac95b3cb01ff4f0f88349d5", + "nav.space.menu.item.x.M": "d4143a1aba4a7abba1b94fe9694dcd793eea9fc5", + "nav.space.menu.item.y.M": "37b87c075788b3d0762f5b7d320340375f9fabe2", + "nav.space.menu.item.yg.M": "6e4708446c1d2f38c66ede916882aa0789ec1ed5", + "nav.space.navbar.x.M": "fbd73e576c8ddcb440a97229a572b85418ec466f", + "nav.space.navbar.y.M": "261e47b33d2414979a298297f7b7f6df7ae3366c", + "nav.space.navbar.content.x.M": "370d6738ac0660c6cb50b2f2c341da9c2337a1bd", + "nav.space.navbar.content.xg.M": "dd47e82ab1d455f2e67ca924a9be8a0a07fc63ce", + "nav.space.navbar.content.y.M": "7bedeb9b16e8b1f78cc696a78e4a539e941dda47", + "nav.space.navbar.item.x.M": "1d41442744f93ab58f95d7555fded37216fe850c", + "nav.space.navbar.item.y.M": "5251981f0f7d56b2c979e62e6b0c553c8ec29fba", + "nav.space.navbar.logo.x.M": "ac4f27279757f6a7474484daec00a7895341d32c", + "nav.space.navbar.logo.xg.M": "4cfaac084b2030f951d1e9c83a7466300bc3aa6c", + "nav.space.navbar.logo.y.M": "16092018c77123c64370c1a21322056a4b613876", + "page.space.none": "4c3b1d33531aa051acf96da285583bfbb56d51e0", + "page.space.x.XXXS": "d9e44ce002e65094dc05f5ab1e25b04002e78ce5", + "page.space.x.XXS": "b181d3749404c4eda29e4ff1c28e50c1bea0b320", + "page.space.x.XS": "3d73f20f849ed903815095f73f9b7a9ced2ff482", + "page.space.x.S": "81ab31a6f63f9dd929e7616efef06763b51b65bc", + "page.space.x.M": "08cf6b0689a4bd69a780ac2ef9b6160a3d635241", + "page.space.x.XL": "9e85f994dcfb32cdcc693f96aba72f6c917c0274", + "page.space.xg.XXXS": "0cc7fec597950e8c11950ada8b00b8c6273e54dc", + "page.space.xg.XXS": "96e1d3b2cb81c97d70f69a429689cf2b35345f61", + "page.space.xg.XS": "f9ef3ec255923b69b382f3a9efcc30a964450659", + "page.space.xg.S": "cb148ad65dfe430eb6e6b7159659cbd016e8dbe7", + "page.space.xg.M": "3b7fb43efd6f09faad157d694c96da7a3f742bd2", + "page.space.xg.L": "420390fc1a966e10ef486c81612ea2a2f97c17a1", + "page.space.xg.XL": "ef68b0ca3ac96b7f088179740de87e217a61a519", + "page.space.yg.XXXS": "d0da23eb979ae1ae64b703503c913d7668992a99", + "page.space.yg.XXS": "a2d76a7d9ab1ca552139f6b47a0e2bfb5505e31b", + "page.space.yg.XS": "f022a3e9129bbd323416054cf432d286a8a4ea3a", + "page.space.yg.S": "f3248ef9a47b16da9ecacb10b9df4eb39e929795", + "page.space.yg.M": "9ffa9089546a78e13f107da0e4e9afc30c25b3d9", + "page.space.yg.L": "349ab3c9a2f5a494be1afbb77ce1bd1b65d825be", + "page.space.yg.XL": "9f0c1aaac5458bd5ca0da348d0181058284cb119", + "page.space.y.XXXS": "e7d791dc5fdf219e6fd0ceafd009b6a9e4820d12", + "page.space.y.XXS": "8cab384302574cbcb142d35881f527fb06d6953d", + "page.space.y.XS": "68adff5b5b0c2149494de6842f61065bf813e913", + "page.space.y.S": "b6bdad590640f1c7711c01d956c42a51e278f0ef", + "page.space.y.M": "2112d78b4489685af10369a375ec8ff3939dfde6", + "page.space.y.XL": "8c16739a1de56ae7327dcc9db683aad4f11fd4cf", + "page.color.bg-default": "eae7ab52ece29003fd4f1ee1e649948db9b2fb9d", + "page.color.bg-alt": "9d2bdbfea53b3117ef06aea16c6d8239c3da8a20", + "page.color.text-alt": "12bd9fd34f2d3ed55dbb950c2d4ac349e5804184", + "page.color.text-default": "c01d5636b677e0a153a5602be335f079d589b13a", + "popover.size.icon.M": "f1e9c8d331c9d8715b0f480caf5a4f02a94ebe16", + "popover.size.item.S": "d8234fc202ce5ea8d8bc88b6ac7cc9c910caf916", + "popover.size.item.M": "c7a9e930af9d14525a8538ed306374ed1a601e24", + "popover.size.item.L": "8eb7f63ce16544fe026cb8cf6c48150b963a8e88", + "popover.radius.none": "7729c38be03b17d7a72f3ef2488a25f36258fc2e", + "popover.radius.container": "578c9feaacae325df780131438ec70bec12524e3", + "popover.radius.optionfocus": "303e32e23b5a5f56a8e95980c95ba4659534bd69", + "popover.space.menu.y.S": "50b73e720a5597be532ceb1295ef18eb786ec92e", + "popover.space.menu.y.M": "c85554061edf75ae4257f0a25c3ebc1d22673f93", + "popover.space.menu.y.L": "3b7b459d9e42ca732af48542ed12b19c08540165", + "popover.space.menu.yg.S": "c272b3a7ad57d959cd235161529acec5357c51d8", + "popover.space.menu.yg.M": "c9caf8296369a978afd99c9f5e04abf1aa8846c1", + "popover.space.menu.yg.L": "a9d25b3b8d2280f1b8471228b2e9e6adfcc74a94", + "popover.space.option.x.S": "63c7a05c6b9cf59afc37a20603272ae9ec184e60", + "popover.space.option.x.M": "5393f01de920a6c525da46aa59fee40f3ab2ca02", + "popover.space.option.x.L": "79d1a94d3ad1ab83a30c5338c0d144ae4578fe54", + "popover.space.option.xg.S": "69b3ccc718ec1b18d594d53c4f27562826f3d128", + "popover.space.option.xg.M": "7b3c838ec86aaa7c49559784d3ec6f7e94ca85e0", + "popover.space.option.xg.L": "06cdad998a8286b9ab849433827f82b8146b6d58", + "popover.space.option.y.S": "c64c40c7885d19d27ad92ed70b04bd06e64bae4b", + "popover.space.option.y.M": "7df198f0f920b331336778885bd891a73e584e28", + "popover.space.option.y.L": "47b453141a88f6f893c67b6282f26f58562df30b", + "popover.space.submenu.x.S": "d2e9d4c590f08cea90b7ad8b52a4ce1fd7324896", + "popover.space.submenu.x.M": "14318f704975f1f2f61e7ec9cce4be1146e309f9", + "popover.space.submenu.x.L": "6958f71811269d5d19098e482c37c1b87d04a9f4", + "popover.color.bg-default": "d54f5f41bb3f96da788226c934b3f6e4ddff62d2", + "popover.color.label-active": "1bc8747c12ab03869fd608f9bf0695e493feaf7e", + "popover.color.label-disabled": "269f93595159514064400fcb11102e324dba42b2", + "popover.color.submenu.bg-default": "92f43758b455eb8c56a13c2f35767cfce851b9bb", + "progress.size.bar.S": "718ff61ac9c34247c0167f1de8938b54a188603f", + "progress.size.bar.M": "a3a0b404dbab8f3d47fa3d21118e8588d97b3e87", + "progress.size.bar.L": "cad9ee8d3fe0cc3ddb54e459524fe7331f8f5fa5", + "progress.size.carouselselector.dot.M": "f506f9668460afd0eb93e6add518be2a79ff540d", + "progress.size.carouselselector.activedot.M": "b144a670e2877553e6da4f88709016f518e6e60f", + "progress.size.carouselselector.hitarea.M": "4741b2a717cacca6733fc70e3676ca360feb7024", + "progress.size.carouselslide.x.M": "a4b62ee1d0976778d608451bb86e5926aed1988f", + "progress.size.ring.S": "6fa7e50552ddab3f075bcf4d8cd4da766cd02bdd", + "progress.size.ring.M": "324e650a3cd0935983afcc0adfca7a1b8f80778c", + "progress.size.ring.L": "c8c9f57b619801bce5c954556957574e82ca08dd", + "progress.size.skeleton.responsive.text.XS": "5025406aff7aa0df6213a62ec2a45fc77084b17d", + "progress.size.skeleton.responsive.text.S": "2357ca02ef6aa7e130944942fd92f92d09e12ee7", + "progress.size.skeleton.responsive.text.M": "fc229283f308f828831e8f634edbd6d4ce8f7bca", + "progress.size.skeleton.responsive.text.L": "ac8f9d8570ebfb88fa194cacfad91237be55d4b3", + "progress.size.skeleton.responsive.text.XL": "9ea1024c7fa863ee5a8320cdb9b5b1a1e85c17f3", + "progress.size.skeleton.adaptive.text.XS": "43fc98104ca60f86e3c5e3ca74c7c1003b129e31", + "progress.size.skeleton.adaptive.text.S": "8cf36a335453058f46f6cb6a70232bfba46ccea6", + "progress.size.skeleton.adaptive.text.M": "dceceacc00f9f184b7b4f87616c0f04726a36853", + "progress.size.skeleton.adaptive.text.L": "a4ccf5ff094e1e7688aa7a123960d3a51ccfd0c1", + "progress.size.skeleton.adaptive.text.XL": "9dec82266a84c60ded0de7a3c2ad2c0253833c48", + "progress.size.stepflow.M": "8a3c98b5b0d26aff62c467cf97cc0e74c534874c", + "progress.size.stepindicator.bar": "32ba5969e43b6f6ae6f0c00c9e35afb85a11ff9a", + "progress.size.stepindicator.stepcircle.S": "a55ad771c329b63941722e3c02386928ffc66e17", + "progress.size.stepindicator.stepcircle.M": "012d1e8bb5f6059059656ba2155948fed3d5b637", + "progress.color.bg-default": "5e5eef061675c09fdab6e25644d00bab18b0631b", + "progress.color.border-default": "249e7cb3fd86b29c8e4118e63aec7db5191da3cf", + "progress.color.fg-alt": "76af5855c09d2a52ae17f32994c24ac281e29efd", + "progress.color.fg-alt2": "6d0573162901106ecc6c6f6d31296e1fd6b530c7", + "progress.color.fg-caution": "984d8913bb57289f228380cd22231ed905467bfc", + "progress.color.fg-default": "4533513cc279fa48e296b2a5bc8b54b527508322", + "progress.color.fg-error": "a4b614c4575509cd2602b756abf2e33259fcfde2", + "progress.color.fg-info": "dedec29319a9567ce458e2f7fe5c50433c381bbb", + "progress.color.label-alt": "a0ffbafcc2a21f5f052097ecaa48a6e72f25f660", + "progress.color.label-default": "b2908ca5d930099cfe4b10d979f3b185730946e1", + "progress.color.datavis.fg-default": "cff357250b27f66dfcc0bccad7197995318948cd", + "progress.color.loader.bg-alt": "2fe7a47a838af6740e2b0a1c344ea05e9e3463e9", + "progress.color.loader.fg-alt": "ae49b86487e447c821d7d87d353485cf97ab4fda", + "progress.color.loader.fg-error": "5907505b88cfd15e7f81a97a65890103b54d9c2e", + "progress.color.loader.fg-complete": "10eb4d680e6e8941e0e1aa5b5d4140976ff7407d", + "progress.color.stepflow.bg-active": "3b2263e1e268c06ee76be6ec5642cfd98155a0b3", + "progress.color.stepflow.bg-complete": "95d4dbd98b93d22451be8ed5090d75aad5ea0346", + "progress.color.stepflow.bg-default": "99e3d23184bc00fb08fc9848e6ad052b2bb5f609", + "progress.color.stepflow.border-active-inner": "9d767b130df7bafc24195cdf32ce7ba5f6e1a9fa", + "progress.color.stepflow.border-active-outer": "9342d8803f700b405fb646a4b08298e74ceaed2d", + "progress.color.stepflow.border-default": "67a39d5779d7f7a1c30d3267349e6cac790608d5", + "progress.color.stepflow.label-alt": "5782a69592a11afce8ea4ff5c72584607936d4d1", + "progress.color.stepflow.label-default": "e25667a857893ab0de65321be72f2273adc83ed8", + "progress.color.stepindicator.bg-active": "5944da3ce78302ec598f620cb9f3b3676d90b6aa", + "progress.color.stepindicator.bg-complete": "8937aa1d8eebdcfd48c9d75f8e33e6a0735a7156", + "progress.color.stepindicator.border-active-outer": "b75affa668bbb742b6c82ea48093b3eeece1603d", + "progress.color.stepindicator.border-default": "60e3ef13b3b3da30a0dd4d52c7ed55c7cd583715", + "progress.color.stepindicator.border-success": "c58f46506d2e904311e9e1a9153d552b0cf2cd48", + "progress.color.stepindicator.label-active": "be75a9c37e7a4bb60cd71bf44062fe3bcfd88f21", + "progress.color.stepindicator.label-complete": "631d9322eb8cd5f33de85e1a3aae51ae574213de", + "progress.color.stepindicator.label-default": "a3852229c543f2d51a3cb512642f63f3cbbceb66", + "progress.radius.none": "bda42e81383e4990df0247a4c580c1861d0caf9d", + "progress.radius.stepflow": "bfbaaecb65fe01991b0024e9ce9449dc50b39abc", + "progress.radius.stepindicator": "cf19c74ac5ceb4057763707f4485f904e6162ecb", + "progress.radius.carouselselector": "dcf12a62af4951afbbf1ce0a55d3fdfad717476d", + "progress.radius.integrated": "a39fefabda84433e4a1a4a3dfd028ba60f7a4185", + "progress.radius.skeleton.moderate": "5e0a3a25af519fcb89eb36ad7f5922c40d577ee4", + "progress.radius.skeleton.curved": "b39b75ea413bda7056b4979573f38d0bbdfbd28d", + "progress.radius.skeleton.sweeping": "a8e8d5bce155977e798273e5f8fc7163ab1c4b7e", + "progress.radius.skeleton.circle": "139ea65b18c5c08cf05215ec64eabcf7d43c6f5d", + "progress.radius.bar.S": "c945032658574b4c7a65ae0671d08351f5a7719d", + "progress.radius.bar.M": "528e00bda573e8270114d7eb95c525d6467192b6", + "progress.radius.bar.L": "3bfcb32958c00aa771394e2c438a53839bcba933", + "progress.borderwidth.bar": "4e65a624a89edf7e8b43b71628e95e9acb14a616", + "progress.borderwidth.carouselector": "826aa32e36c1e01b7ab0ee9151cfd7bc9cd071fe", + "progress.borderwidth.integrated": "7c2489e8c13f4580660a5af4a8c82407724cc9c8", + "progress.borderwidth.stepflow.inner": "910e45c54fd09d3c054d1e98a8cbf81c7af140b1", + "progress.borderwidth.stepflow.active-inner": "736d75e48061efb5b107894840498b862673f499", + "progress.borderwidth.stepflow.active-outer": "1aa09bf55dd707af2b0d3eff4a62b3ea01aa2e8f", + "progress.borderwidth.stepindicator.S.active": "82aef748c35bf68bbae446b0e056cb7316e3ab53", + "progress.borderwidth.stepindicator.S.default": "a4dc15f692fac6b2780f1ee261d62ed5fdbcac75", + "progress.borderwidth.stepindicator.M.active": "62f7c6352918cac09bd310036e48af3333e33df2", + "progress.borderwidth.stepindicator.M.default": "18cd10085e0a53cda0e765c42eb717b6d5c3b2cb", + "progress.space.carouselselector.xg.M": "a2ebb3970ef72c7d0d9782bca09f90441efa2400", + "progress.space.carouselselector.y.M": "2affa450da4c7ef55c57610c43593a104138852a", + "progress.space.integral.x": "c3eb26de427594f7f1391b9cd41a341eefe9b502", + "progress.space.loader.yg.S": "edd76b7799ae5c0668fa1120329452b0555a507a", + "progress.space.loader.yg.M": "2be91b421179770189dc92016623dbcc0c72ab63", + "progress.space.loader.yg.L": "ae34dfe640814559eacc01aade838653cb0f5f99", + "progress.space.loader.xg.S": "1c27d60ab210dd6a39f4d29991e01110ad2d9985", + "progress.space.loader.xg.M": "4baf0e32569a06cc019ae0696fdc3de21a9db448", + "progress.space.loader.xg.L": "20c102f769dc9290a9229916def26af80588db38", + "progress.space.skeleton.multiline.yg.XS": "4a551e3434a9ba2d980f3a2083412febbcc87f8b", + "progress.space.skeleton.multiline.yg.S": "d57a61f477cd31f6ca36b3e49cc9f4d9dced3fd5", + "progress.space.skeleton.multiline.yg.M": "2e5a56f1d8e71d17c6ac11ccbcf2d75a0bf56442", + "progress.space.skeleton.multiline.yg.L": "b85445ed6a7a5263f7369405d04490dc241d48f3", + "progress.space.skeleton.multiline.yg.XL": "037a93ecebef64453bfb840f4b579d3adda6fae3", + "progress.space.skeleton.multiline.y.XS": "aa0bbb0216400616958fd53fe94a1e38b433d44e", + "progress.space.skeleton.multiline.y.S": "68f50063f16f9751ab267fc46ca89ad47cfeea47", + "progress.space.skeleton.multiline.y.M": "b75b44db441d2d769026af3eb594ee952409abca", + "progress.space.skeleton.multiline.y.L": "fe087813daad624ab8ed4b44c2041a887307116c", + "progress.space.skeleton.multiline.y.XL": "d7ad528e311d6b59789aa0c402cb1c803d0ded8c", + "progress.space.skeleton.singleline.xg.XS": "493fc312f3e6003e93c14da57d4195e4677318b1", + "progress.space.skeleton.singleline.xg.S": "65ea3bbee4f36b1b436963a476f3db149d730a71", + "progress.space.skeleton.singleline.xg.M": "3a6ac1b3190cca95b35a41e77677b6cdde32e0f6", + "progress.space.skeleton.singleline.xg.L": "2a07b9224053bf4b71dc3032a92aa45ab7b1ff61", + "progress.space.skeleton.singleline.xg.XL": "d3241ae7c4bc8ce975152e1d70be851bcb318c2c", + "progress.space.stepflow.y.M": "611c9b140308fa8c5e9a73d89d2b134b0f6ebfec", + "progress.space.stepflow.yg.M": "4be075065326964972d1f088f29088c7d16eac56", + "progress.space.stepflow.steps.xg.M": "e4388f9b8b7779bb41647cf61435135d81bac93e", + "progress.space.stepflow.steps.yg.M": "1c8de9f81b39115dd05cdb4e4fb1fe98705f3acb", + "progress.space.tracker.yg.S": "145d56f69edcbf89a1cb7b43ae1a5a1d51dedaa2", + "progress.space.tracker.yg.M": "7b04a95e5252c206693bf5bd0baf05bff909c007", + "progress.space.tracker.yg.L": "45c30204b1f9f26d01781a6c3c82841d59252321", + "progress.space.tracker.xg.M": "9065aaa75b2c0afeef9a45d1118f5f1209e25fed", + "progress.space.stepindicator.generic.g.S": "7d9a636331eca53cb448390ac4aea31c441dda64", + "progress.space.stepindicator.generic.g.M": "5cec4985bf7d1c3fac345f6f07a271e0f2cf4b09", + "progress.space.stepindicator.generic.text.yg.S": "24dff12de59074c4775c70003ecab0240af249ba", + "progress.space.stepindicator.generic.text.yg.M": "f932d1e9c9899322f3c68ce0720c6d0e7c438bbc", + "progress.space.stepindicator.generic.visual.g.S": "abf71f376abe229c9762cd64aeb2d47a1cf8dd06", + "progress.space.stepindicator.generic.visual.g.M": "e43247543186fc52c554fa94da206f5368211a8f", + "progress.space.stepindicator.vertical.y.S": "a45438edec4d0028d863b19b48664eda0266e5ca", + "progress.space.stepindicator.vertical.y.M": "dd87942b821bf1c403e6632ff4d9605f1f4211fa", + "progress.space.stepindicator.vertical.text.y.S": "b03dd820974943eb4c30d2e41b8fc2bd303e75f0", + "progress.space.stepindicator.horizontal.text.x.S": "4a5e19db2b691b8df3fe679f957373edcd2628e0", + "progress.space.stepindicator.horizontal.text.x.M": "b14368abd2dded129d441883d0e891fc30d4e8a9", + "progress.opacity.carousel.inactive": "e0b3e4d29dd18cf2d4f70ee5f73531832908dd62", + "status.color.none": "9c94b65013fe01b3c70b7f5cf23ada34e27778a8", + "status.color.bg-default": "c184c107cf5a72e530154b91bf164e6d6cafa328", + "status.color.bg-readonly": "b73ee7c05e253426392213fa70274974688df494", + "status.color.border-readonly": "04aa9addfd8a9781bd74a57b61954df24fd39f2a", + "status.color.icon-default": "d5d318b21e5a8ac2d64c1f6f277f439976ca8f73", + "status.color.label-readonly": "9e5639ef075944538de5db0f75c45eb711c64f6a", + "status.color.labelAlt-default": "02e16744312284bf87c9ab0e416c7f4194dddb5a", + "status.color.labelAlt-readonly": "74994d3486dd228288df3fb605fbbc79df0f1998", + "status.color.labelAlt-hover": "d49121e95982f4f273e696ae3ad963f16e44e465", + "status.color.text": "5109a6761f1ec09aaf554c427198b17277509876", + "status.color.AI.bg-default": "a733dde9f8730676a5a631311de0e8593cdca3b7", + "status.color.AI.border-default": "c77050b8329e7ac833fb51861416c2337122f6d9", + "status.color.callout.bgAlt": "03c5986c6c278e08afb58974513613ad14869697", + "status.color.callout.bgAlt-default": "e57268906bd6d63de73023a84ffe3786301da10b", + "status.color.callout.bgAlt-hover": "8f086adfadbe1db40b7738446ea9ca8242b53cdc", + "status.color.error.bg-default": "3c095141e9cf16be7b6e8fc906ac7464e417c891", + "status.color.error.bgAlt-hover": "36067b72a77c3e2cbe6397d4a1e1ccb9ad323797", + "status.color.error.bg-hover": "2414b93fd2a46099726dc9fb72c504d9271bd640", + "status.color.error.border-default": "c08c11acf8009e1b9b243898aeb8adf59c6a6bb3", + "status.color.error.icon": "06f30563c187ffeed814fbf87875c99b5f396112", + "status.color.info.bg-default": "d05753e2fcf4ba6d5db6e916ff467e6effb50282", + "status.color.info.bgAlt-hover": "34a0272faa1a09533e6b099170624479f1f801e5", + "status.color.info.bg-hover": "cb9604a097f597e71c657084a5c15c1716c69601", + "status.color.info.border-default": "92895f346ee23aa6a06051d4e1e8b408cef08f36", + "status.color.info.icon": "0e94147d48b643836766796212ca4ae269a22e7e", + "status.color.neutral.bgAlt-hover": "8e28c5e63d00216ac1d6c37b6f5cd77257e4ca97", + "status.color.neutral.icon": "705e83d3892a940e7d5b3ec982e4c1ba0fbac4d0", + "status.color.success.bg-default": "e54c25d09db045458101d4782b73227b4829ffb7", + "status.color.success.bgAlt-hover": "7729cd58cd03ce00cada450b218066586c6b7813", + "status.color.success.bg-hover": "517861aa1aac5082c40ae151a6a7a211bc02018e", + "status.color.success.border-default": "5096c1bd6d2564bdae49c91908af7058ab7bfe6d", + "status.color.success.icon": "21259cec864819900ee2c5a94e9f8bf6dcb37bb5", + "status.color.warning.bg-default": "00331f828ed3fc4946f76918b540719c4cc09270", + "status.color.warning.bgAlt-hover": "1202dbb1091770a5fc41468b0a71804f491b8c9a", + "status.color.warning.bg-hover": "6c1d23d8b776dee456a98f40f69bfe3f2aea93e9", + "status.color.warning.border-default": "8be0ca1ca4bffc234290465b7a0618ad3749a51d", + "status.color.warning.icon": "a48bc35271538d99f47f4a67602315c0bcbb922f", + "status.size.pill.S": "49a4c4ffd792ce1e04fe19db73d607e2bae11db9", + "status.size.pill.M": "18db39f595c930760c22617868173d86c5ad2b29", + "status.size.pill.L": "cae31fb2ad64308f26681c18e771178417dc4d77", + "status.size.message.statuscontainer.M": "a2b738cc725e38c1ac6b269b8f2b4cbacff767d3", + "status.size.message.statuscontainer.L": "ab69b82898963f1dc83074ee669b9d5ffd1f2193", + "status.size.message.messagecontent.maxwidth": "6ba184feaf45cc188c36c372065b344091976bc2", + "status.size.message.global.M": "707069a15f6a5bbc3e51aa10afc8ddd1f4a11260", + "status.size.icon.M": "d6e4c0a7fce258521c47205749c182e9e7cd959b", + "status.radius.none": "0e7313dbe9272c0e9999e4f4576ea43a0a23e996", + "status.radius.message": "666102b9edf21077e59815411ad1cfa13ded007c", + "status.borderwidth.pill": "f02569c412f76123b5a9672ebe6f57f9f8a9810c", + "status.borderwidth.message": "5abd8462f0b580e54576c4b9d2e3826d006fdccd", + "status.space.none": "11211d01586555a963246046507d8a6db8ed73e9", + "status.space.integral.x": "bf93216946abfe3513eecfdf843d205fb1902090", + "status.space.pill.x.S": "9ccb55d0a500eb9142c4482583acc3f99a4e054d", + "status.space.pill.x.M": "f7be2f73e6618d1ea8d1e8546e623b770b780b5c", + "status.space.pill.x.L": "8afeabf3d26a3fe5f416f81c38a266ba145e7fe9", + "status.space.tooltip.x": "d7413aeb32b01b49b1b5c6e87bb3104b9aa10b99", + "status.space.tooltip.y": "21e0fd429f76ea93e4446bc7e04ff05be6efcdf5", + "status.space.message.contextual.x.M": "97114ed8f477662443282a286381d97571ccf023", + "status.space.message.contextual.x.L": "2e0a653999577e917d5f9e8c4b415f8f4091596f", + "status.space.message.contextual.y.M": "1f0211e6d70fbb50ccb30be0aa98b1236d2fed68", + "status.space.message.contextual.y.L": "23b5ab65cb6bb46aaa6d002c8efe28b21fdc269e", + "status.space.message.contextual.xg.M": "5dfa9f1455c533f9d29ad51018f4007e6bbe82a1", + "status.space.message.contextual.xg.L": "e5aaefc294664a33f1e84474a0b0718cef2189a9", + "status.space.message.contextual.yg.M": "f01976ca2df1a233e4953aed28e25344b6a49258", + "status.space.message.contextual.yg.L": "8fbf6456ec5c998f18ff5e04916e5562e1b68158", + "status.space.message.contextual.subtle.iconwrapper.y.M": "ee90ecd83ac742f0090a49d7781bad646bc8bbaf", + "status.space.message.contextual.subtle.iconwrapper.y.L": "88e32a43145051d41e82c7ddf005dae69e409437", + "status.space.message.global.x.M": "6bc3c7214994b627785c269b52a8522e67be683d", + "status.space.message.global.y.M": "0c7c01dd50fad59461ac3077634aaaef77c26a18", + "status.space.message.global.xg.M": "a5b640bb24b1f43d849cc50d4b49acfe78873793", + "status.space.message.global.yg.M": "74b78c6f5373050214c063d8071ae513bfc29662", + "status.space.message.global.CTA.Y.M": "f08dd22ace9116dc5b1d62c2857e81c00232bc90", + "status.space.message.global.CTA.yg.M": "7d36f3ca4f30f5229d32fff8afdc4521c33d04df", + "status.space.message.global.iconwrapper.y.M": "942ff02363a89293193f0473e5b22ce1b6176d7b", + "profile.size.profileeditor": "b648e5eeccc41c7f3e49d8e9a108ddbefa678d74", + "profile.size.outside.XS": "7badefbbbcef4c3d9fea09fe0d39792cc77757f0", + "profile.size.outside.S": "b50c47531b9694117a5bcfd0c1b528e3e7544748", + "profile.size.outside.M": "af55ed8c67130e657a7106e18f410ce38465e2ba", + "profile.size.outside.ML": "0c569746e9104066ce3b9861cd651999b98abc59", + "profile.size.outside.L": "c8ea1532e8c61458133dec2c5acb75e150644d0c", + "profile.size.outside.XL": "d1af9f079edd04502226fdd44cd21f67dd63741a", + "profile.size.outside.XXL": "7b4696d90c9b62632de8202ad40ebd149015eaa5", + "profile.size.inside.XS": "b8796456ccbe74bcbcb3dd6f318350c9a04c2051", + "profile.size.inside.S": "342a44d729419e766a4bb454864d270964058bba", + "profile.size.inside.M": "f91f6e435f7d55bf249e3df1351b40624167d0b4", + "profile.size.inside.ML": "fa1bf4857cbff58a261889469465226101455cb5", + "profile.size.inside.L": "4b773c1bd32e28de70ce22af10de0033cda0c0e9", + "profile.size.inside.XL": "22b6259180298b5b6e1b5e6eff7c84127db7e561", + "profile.size.inside.XXL": "9e1766c9554ccbf69f60c2dcbe8f8903ad0733a9", + "profile.color.bg-alt": "ca050229c9ae3b24b810cd408ffeae2059602c47", + "profile.color.bg-default": "566353f2b24b9edd1bb531a9427c02d757c555ec", + "profile.color.border-default": "c78a3099f90c04c2452e353cdcdc488765c1a554", + "profile.color.label-default": "d829642b17ef204889c634e8800f4da4ca4246f4", + "profile.radius.portrait": "b258594cfe9452243d2f5f236e4da8be3b78b07b", + "profile.space.none": "44c9c6ecf7896e99fa32f412e5d258fc1f63f915", + "profile.space.x.S": "918e5c368b0c3951f2429cd093875c23aa7b8793", + "profile.space.x.M": "7e25ede9360210112c904f71a1cfcdf593852b51", + "profile.space.x.ML": "b0d5c61f52bf1fd3a9778c9c1780304879e13444", + "profile.space.x.L": "649fc1051931c85e3b221451a6124867ab817488", + "profile.space.x.XL": "2ea9898f8529a2f06a96d4903c0cd564459ecc43", + "profile.space.x.XXL": "962ae702c40b4198953fddbf73133eae16e4d887", + "profile.borderwidth.portrait": "e02100d66d5834f36b4659ca95aa25bf24df3937", + "tab.size.M": "e3b7a6c8ee37fe28327b01852aba97cfff7bd4f5", + "tab.size.L": "bad8373374528502aad7b1ce23f4dede815d37fd", + "tab.size.shadow.arrow": "1e1bc37b55b2dbec64cc6abbeea4e316198c30b2", + "tab.size.baseline.M": "cc7156e951796677aae84d1e0c4733e9c422453d", + "tab.size.baseline.L": "7f1c1a8253c11ebdfef314664b645b6fd94478d1", + "tab.size.icon.M": "fd6e846c110b477f48f7d6163264d75267e10a84", + "tab.size.icon.L": "9ea7e297076e2c111c6414ad56659d1607418caa", + "tab.size.indicator.M": "d897329601d630961e5da3e045ca6640c8a5c2dc", + "tab.size.indicator.L": "8a5b7f9f05ac3af7fea4de55792d60b03d18d584", + "tab.space.x.M": "9928d03f930c6b4fc41b225b7b487ee7819fabc4", + "tab.space.x.L": "cd32b0bb5959fa2fcdf3271fa893eca85468e570", + "tab.space.xg.M": "a144ff737265a5dad6bc6c0c8a6e5d71b16730e1", + "tab.space.xg.L": "0e6b384fd263cabd704c5e024522e2f636507864", + "tab.space.y.M": "e46b8ecc74fc97d3cb7198937e75e847a7f662c8", + "tab.space.y.L": "b48202864a16ed7b181715995183f6be9f73e3f2", + "tab.color.bg-enabled": "d8657e9dcf7dbaed6b4bfe081c520ab35e05a53d", + "tab.color.icon-enabled": "6d4c0c7c30992888d09c794ab70a3c3ce7b9baef", + "tab.color.icon-hover": "f6d224fe972b8d484006cd2b251b48e9c6f6144b", + "tab.color.label-active": "19d3a9036e6e2b1271ff32b81fa50191cbffa142", + "tab.color.icon-active": "a882447b658aa26b2694f1b6ebf26eaeb98d6e43", + "tab.color.label-enabled": "691226bda8fc13bcbfae1e7e409dd8aacfc9e44f", + "tab.color.label-hover": "f8c367d3dca0e458c0a4937e5d4a65b01d58ba26", + "tab.color.navigation.bg-default": "e3facc8423ab67d4d5beeae1562fece5da868d02", + "tab.color.validation.border-warning": "cf2e74be918f9b6ed3c2e2a2bd205c64cae48778", + "tab.color.validation.border-error": "f794f4e18be75e8014786527f9dc50e4f9301a29", + "tab.color.validation.icon-error": "2a84d8b14c0b61c8dedc46a7e132b387c0473e88", + "tab.color.validation.icon-warning": "d80c2c82b2874fc2e4991f1a16cb809bbd985bb4", + "tab.color.validation.label-error": "53a0ff785743de5a0ee37d5e13f09db2f830c9f9", + "tab.color.validation.label-warning": "8d1ee1f205e7b283b63136f83acd7870e20dca79", + "tab.radius.baseline.M": "837044670bca0637a7bbd2b1eac1095a693a5479", + "tab.radius.baseline.L": "5f8370d40ddb7f103454d930e67608ebd8d241f8", + "tab.radius.indicator.M": "8248855dae76de8c96aed35deccbf3d61323138a", + "tab.radius.indicator.L": "6886a7024199b08d4dc4dd808caec1d12367ede7", + "tab.radius.none": "6d620fe223712ad31413622bf9ce4b335d35ba0b", + "tab.borderwidth.navigation.bottom": "92d017bcb914d3845f9acc5f43316a19f909bac5", + "tab.borderwidth.navigation.side": "83f46aa396c87fc53ca29cdb4c94fce4cd0bb350", + "table.color.header.subtle.bg-alt": "a600e4e5f34f1597ea7be9338cff74f395fd4f1d", + "table.color.header.subtle.bg-default": "ed04ab8c95edea05ffca7ffa15d6965a1f0ddc86", + "table.color.header.subtle.bg-hover": "9e74bf051bae01ad69e984549b974db65f370372", + "table.color.header.subtle.border-default": "43e0fb1c5d6aef08b3565f341e78f23ff92fffbe", + "table.color.header.subtle.label-default": "0e9269b3c42f0be49bc23d396d6bfc0dfc4b2773", + "table.color.header.subtle.label-hover": "c709dd0ac0126cf28efddbbf1ce54cae18250de8", + "table.color.header.harsh.bg-hover": "5ed94709c903acfc9730564e1bb1648df15c1d6c", + "table.color.header.harsh.border-default": "1c718bc35afc40d9772c7ec7b2ad805e35c0b523", + "table.color.header.harsh.label-default": "d5806cc55e3bd7066985ba97e8a21229f8eb7921", + "table.color.header.harsh.label-hover": "d0168415e34266c945dd9b287a9080f03a3b152f", + "table.color.row.bg-default": "149ee0b272d956c7b1761eea8c6c1c461de60609", + "table.color.row.bg-alt2": "7eaf175c359eefd1f885ceed854207c6da1e0fb0", + "table.color.row.bg-alt3": "7efe4f4d39c0ca29fb4e2decc4df41602d827d68", + "table.color.row.border-default": "952e1585502d1c722ac02c92caddb76218a33be1", + "table.color.row.label-default": "9128246a4096ea7f3b9a19445f214222269e80e0", + "table.color.row.label-hover": "f91d62635fca55f4bb903c0c31b1ba407add9f2f", + "table.color.footer.bg-default": "1bc4224897894a2f47ddec3e2dcf92cd1a58a99e", + "table.color.footer.border-default": "9a1f5fc47e58f7b97cb1a562ae73f9c6d3ef8c79", + "table.color.footer.label-default": "7bb1734b6229e3c5a495862974a2ba0b9dcdb92c", + "table.radius.container": "0bfdd27dfe937826a557d23dada8a95a2dd3e8b8", + "table.borderwidth.thin": "fdaddf961eca81ce68139805b659fd121ef51a06", + "table.borderwidth.thick": "d6785095e0eea2049dc123958e1a794f5723db52", + "table.space.none": "6cc04478b8d835707a536a0a0d41cce9f8c0a03d", + "table.space.row.x.XS": "df54cf5ed34c8c95f3221d43ba054e6755022260", + "table.space.row.x.S": "00b382186f9a76ffac948738694f770e4185a0ab", + "table.space.row.x.M": "16d3a85562f70767535cc04dc59011a8e8f97e04", + "table.space.row.x.L": "3d5b5c3612012a76d555ff6d2c682fcd18e8911e", + "table.space.row.x.XL": "efe86ba5e9fc98918f18adbea60875660a911249", + "table.space.row.xg.XS": "02bb04a327ed90847138a6013ccdc83af888fa68", + "table.space.row.xg.S": "5672b068c09b4b7e0f5187333a95885f25830482", + "table.space.row.xg.M": "46e957e4f8951a26c57ab29aefeef1a72065c484", + "table.space.row.xg.L": "4fb2cc7e6ab8bfc773f695f590a0b9c90acb493e", + "table.space.row.xg.XL": "0dff80f899613661c2780eeb85d0f2154d544f1b", + "table.space.row.y.M": "a7b9d8d760d4ca785bd3fbb7e62e76f9c25a8281", + "table.space.row.yg.M": "a522b099f0210833890e59e5d0428af4f487fc66", + "table.space.rowchild.x.XS": "cff0d2b0fcf6d369f4f79c37c082dd8dc84bd810", + "table.space.rowchild.x.S": "1a3f71faeb61e919167d02452bb64c16b6abfcbd", + "table.space.rowchild.x.M": "096ad054c1d8c47d293321695a4bc03df65c7226", + "table.space.rowchild.x.L": "36edf4b358f765370e39df704244a7fd9ebf3c34", + "table.space.rowchild.x.XL": "02b44f02914572f126b10bba5f51225368f5b562", + "table.size.row.standard.XS": "1acacaa899d8849d924fe80c5b3b1e3b1a5608f1", + "table.size.row.standard.S": "e155f826118a9fbcf20abf22145bcf63f31042c8", + "table.size.row.standard.M": "5dfff3b5ae64ca98e4928aa50f4093884508df02", + "table.size.row.standard.L": "b960c0a3805ba4556d73a190155266f11234e72a", + "table.size.row.standard.XL": "acf25442f3693beae099a3af44402a039b08577e", + "table.size.row.doubleheight.XS": "c1d03013882d1f871f85d2b56f0b4aa7a364227d", + "table.size.row.doubleheight.S": "f09a6f2b056c91fc3efad18cec045c7d525e9752", + "table.size.row.doubleheight.M": "e6bf7a6b90d3bd843da049c06eccdfb6f68447d6", + "table.size.row.doubleheight.L": "5ebd337150cbd5bcbf8da9b6cd54bc2a0f30968e", + "table.size.row.doubleheight.XL": "ba6fd327183431cf35205c62348d082635dc8b0f", + "table.size.icon.M": "684d2c9437867a9c13d04fe77add732e0055ee8f" + }, + "group": "Context" + } +] \ No newline at end of file diff --git a/data/tokens/components/badge.json b/data/tokens/components/badge.json new file mode 100644 index 00000000..a70b3e96 --- /dev/null +++ b/data/tokens/components/badge.json @@ -0,0 +1,107 @@ +{ + "badge": { + "color": { + "notification": { + "border-default": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + }, + "bg-default": { + "value": "{modes.color.status.negative.alt}", + "type": "color" + }, + "label-default": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + } + } + }, + "size": { + "micro": { + "dot": { + "value": "{global.size.micro.M}", + "type": "sizing", + "description": "Micro dot badge size" + }, + "numbered": { + "min": { + "value": "{global.size.macro.XXS}", + "type": "sizing", + "description": "Micro dot badge size with numbering" + }, + "max": { + "value": "{global.size.macro.S}", + "type": "sizing", + "description": "Micro dot badge size max width" + } + } + }, + "standard": { + "min": { + "value": "{global.size.macro.XS}", + "type": "sizing", + "description": "standard badge size" + }, + "max": { + "value": "{global.size.macro.S} + {global.size.micro.XS}", + "type": "sizing", + "description": "Standard badge max-width" + } + } + }, + "radius": { + "badge": { + "value": "{global.radius.circle}", + "type": "borderRadius", + "description": "Badge" + } + }, + "space": { + "x": { + "S": { + "value": "{global.space.micro.XS}", + "type": "spacing", + "description": "horizontal padding on micro badges with numbering" + }, + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "horizontal padding on typical badge" + } + }, + "y": { + "S": { + "value": "{global.space.micro.XXS}", + "type": "spacing", + "description": "bottom padding on micro badge with number" + }, + "M": { + "value": "{global.space.micro.XXS}", + "type": "spacing", + "description": "bottom padding on typical badge" + } + } + }, + "borderwidth": { + "badge": { + "value": "{global.borderwidth.S}", + "type": "borderWidth", + "description": "Badge" + } + }, + "typography": { + "responsive": { + "M": { + "value": "{global.typography.responsive.component.notification.M}", + "type": "typography" + } + }, + "adaptive": { + "M": { + "value": "{global.typography.adaptive.component.notification.M}", + "type": "typography" + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/components/button.json b/data/tokens/components/button.json new file mode 100644 index 00000000..9649bb2f --- /dev/null +++ b/data/tokens/components/button.json @@ -0,0 +1,1171 @@ +{ + "button": { + "size": { + "split": { + "value": "{global.size.micro.XXS}", + "type": "sizing", + "description": "Split button (divider width)" + }, + "S": { + "value": "{global.size.macro.S}", + "type": "sizing", + "description": "min-height on S Buttons" + }, + "M": { + "value": "{global.size.macro.M}", + "type": "sizing", + "description": "min-height on M Buttons" + }, + "L": { + "value": "{global.size.macro.L}", + "type": "sizing", + "description": "min-height on L Buttons" + }, + "icon": { + "M": { + "value": "{global.size.icon.M}", + "type": "sizing" + } + }, + "video": { + "S": { + "value": "{global.size.macro.M}", + "type": "sizing" + }, + "M": { + "value": "{global.size.macro.XXL}", + "type": "sizing" + }, + "L": { + "value": "{global.size.macro.M} * 2", + "type": "sizing" + } + } + }, + "space": { + "none": { + "value": "0", + "type": "spacing", + "description": "top and bottom padding on small buttons" + }, + "bar": { + "iconbutton": { + "x": { + "inner": { + "M": { + "value": "{global.space.micro.XL}", + "type": "spacing", + "description": "Inner sides of all buttons. " + }, + "L": { + "value": "14px", + "type": "spacing", + "description": "Inner sides of all buttons. " + } + }, + "outer": { + "M": { + "value": "14px", + "type": "spacing", + "description": "Outer buttons, outer sides. " + }, + "L": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "Outer buttons, outer sides. " + } + } + } + } + }, + "FAB": { + "child": { + "x": { + "M": { + "value": "{global.space.macro.XXXS}", + "type": "spacing", + "description": "Left padding on FAB child container and text within FAB single " + }, + "L": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Right padding on FAB child container " + } + } + }, + "parent": { + "x": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Left and right padding on FAB parent container " + } + }, + "xg": { + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Item spacing inside buttons" + } + }, + "y": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Top and bottom padding on FAB parent container " + } + } + } + }, + "layout": { + "x": { + "XS": { + "value": "{global.space.macro.XXXS}", + "type": "spacing", + "description": "XS left and right padding" + }, + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Small left and right padding" + }, + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Medium left and right padding" + }, + "L": { + "value": "{global.space.macro.L}", + "type": "spacing", + "description": "Large left and right padding" + } + }, + "y": { + "XS": { + "value": "{global.space.macro.XXXS}", + "type": "spacing", + "description": "XS top and bottom padding" + }, + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Small top bottom padding" + }, + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Medium top bottom padding" + }, + "L": { + "value": "{global.space.macro.L}", + "type": "spacing", + "description": "Large top bottom padding" + } + }, + "xg": { + "S": { + "value": "{global.space.macro.XXXS}", + "type": "spacing", + "description": "Horizontal spacing between small buttons" + }, + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Horizontal spacing between medium buttons" + }, + "L": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Horizontal spacing between Large buttons" + } + }, + "yg": { + "S": { + "value": "{global.space.macro.XXXS}", + "type": "spacing", + "description": "Vertical spacing between small buttons" + }, + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Vertical spacing between medium buttons" + }, + "L": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Vertical spacing between Large buttons" + } + } + }, + "primary": { + "x": { + "S": { + "value": "{global.space.macro.XXS}", + "type": "spacing", + "description": "Left and right padding on small buttons" + }, + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Left and right padding on medium buttons" + }, + "L": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "Left and right padding on large buttons" + } + }, + "xg": { + "S": { + "value": "{global.space.macro.XXXS}", + "type": "spacing", + "description": "Item spacing inside buttons" + }, + "M": { + "value": "{global.space.macro.XS} / 2", + "type": "spacing", + "description": "Item spacing inside buttons" + }, + "L": { + "value": "{global.space.macro.XS} / 2", + "type": "spacing", + "description": "Item spacing inside buttons" + } + }, + "y": { + "S": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Bottom and top padding on small buttons." + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Top and bottom padding on medium buttons " + }, + "L": { + "value": "{global.space.micro.XL}", + "type": "spacing", + "description": "Top and bottom padding on Large buttons " + } + }, + "icononly": { + "x": { + "S": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Left and right padding on icon-only processing button " + }, + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Left and right padding on icon-only processing button " + }, + "L": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Left and right padding on icon-only processing button " + } + } + } + }, + "secondary": { + "x": { + "S": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Left and right padding on small buttons" + }, + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Left and right padding on medium buttons" + }, + "L": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "Left and right padding on large buttons" + } + }, + "xg": { + "S": { + "value": "{global.space.macro.XXXS}", + "type": "spacing", + "description": "Item spacing inside buttons" + }, + "M": { + "value": "{global.space.macro.XXXS}", + "type": "spacing", + "description": "Item spacing inside buttons" + }, + "L": { + "value": "{global.space.macro.XXXS}", + "type": "spacing", + "description": "Item spacing inside buttons" + } + }, + "y": { + "S": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Bottom and top padding on small buttons." + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Top and bottom padding on medium buttons " + }, + "L": { + "value": "{global.space.micro.XL}", + "type": "spacing", + "description": "Top and bottom padding on Large buttons " + } + }, + "icononly": { + "x": { + "S": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Left and right padding on icon-only processing button " + }, + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Left and right padding on icon-only processing button " + }, + "L": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Left and right padding on icon-only processing button " + } + } + } + }, + "subtle": { + "x": { + "S": { + "value": "{global.space.macro.XXXS}", + "type": "spacing", + "description": "left and right padding on subtle buttons" + }, + "M": { + "value": "{global.space.macro.XXXS}", + "type": "spacing", + "description": "left and right padding on subtle buttons" + }, + "L": { + "value": "{global.space.macro.XXXS}", + "type": "spacing", + "description": "left and right padding on subtle buttons" + } + }, + "xg": { + "S": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Item spacing inside buttons" + }, + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Item spacing inside buttons" + }, + "L": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Item spacing inside buttons" + } + }, + "y": { + "S": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Bottom and top padding on small buttons." + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Top and bottom padding on medium buttons " + }, + "L": { + "value": "{global.space.micro.XL}", + "type": "spacing", + "description": "Top and bottom padding on Large buttons " + } + } + }, + "tertiary": { + "x": { + "S": { + "value": "{global.space.macro.XXS}", + "type": "spacing", + "description": "Left and right padding on small buttons" + }, + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Left and right padding on medium buttons" + }, + "L": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "Left and right padding on large buttons" + } + }, + "xg": { + "S": { + "value": "{global.space.macro.XXXS}", + "type": "spacing", + "description": "Item spacing inside buttons" + }, + "M": { + "value": "{global.space.macro.XXXS}", + "type": "spacing", + "description": "Item spacing inside buttons" + }, + "L": { + "value": "{global.space.macro.XXXS}", + "type": "spacing", + "description": "Item spacing inside buttons" + } + }, + "y": { + "S": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Bottom and top padding on small buttons." + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Top and bottom padding on medium buttons " + }, + "L": { + "value": "{global.space.micro.XL}", + "type": "spacing", + "description": "Top and bottom padding on Large buttons " + } + }, + "icononly": { + "x": { + "S": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Left and right padding on icon-only processing button " + }, + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Left and right padding on icon-only processing button " + }, + "L": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Left and right padding on icon-only processing button " + } + } + } + }, + "toggle": { + "button": { + "x": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Left and right padding on medium toggle buttons" + }, + "L": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "Left and right padding on buttons" + } + }, + "xg": { + "M": { + "value": "{global.space.macro.XXXS}", + "type": "spacing", + "description": "Item spacing inside toggle buttons" + }, + "L": { + "value": "{global.space.macro.XXXS}", + "type": "spacing", + "description": "Item spacing inside toggle buttons" + } + }, + "y": { + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Top and bottom padding on toggle buttons " + }, + "L": { + "value": "{global.space.micro.M}", + "type": "spacing", + "description": "Top and bottom padding on toggle buttons " + } + } + }, + "container": { + "x": { + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Horizontal padding" + }, + "L": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Horizontal padding" + } + }, + "xg": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Spacing between buttons in Toggle. " + }, + "L": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Spacing between buttons in Toggle. " + } + }, + "y": { + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Vertical padding" + }, + "L": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Vertical padding" + } + } + } + }, + "video": { + "x": { + "S": { + "value": "{global.space.micro.XS}", + "type": "spacing", + "description": "Left padding on play icon in video button" + }, + "M": { + "value": "{global.space.micro.XS}", + "type": "spacing", + "description": "Left padding on play icon in video button" + }, + "L": { + "value": "{global.space.micro.XS}", + "type": "spacing", + "description": "Left padding on play icon in video button" + } + } + } + }, + "color": { + "none": { + "value": "{modes.color.none}", + "type": "color", + "description": "transparent override used for hiding colors when needed." + }, + "ai": { + "bg-active": { + "value": "{modes.color.interactive.ai.active}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.ai.hover}", + "type": "color" + }, + "border-active": { + "value": "{modes.color.interactive.ai.default}", + "type": "color" + }, + "border-disabled": { + "value": "{modes.color.interactive.inactive.default}", + "type": "color" + }, + "border-enabled": { + "value": "{modes.color.interactive.ai.default}", + "type": "color" + }, + "border-hover": { + "value": "{modes.color.interactive.ai.default}", + "type": "color" + }, + "label-active": { + "value": "{modes.color.interactive.monochrome.generic.withActiveAlt}", + "type": "color" + }, + "label-disabled": { + "value": "{modes.color.interactive.inactive.content}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.generic.withHover}", + "type": "color" + } + }, + "destructive": { + "primary": { + "bg-disabled": { + "value": "{modes.color.interactive.inactive.default}", + "type": "color" + }, + "bg-enabled": { + "value": "{modes.color.interactive.danger.default}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.danger.hover}", + "type": "color" + }, + "label-disabled": { + "value": "{modes.color.interactive.inactive.contentAlt}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.danger.withDefault}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.danger.withDefault}", + "type": "color" + } + }, + "secondary": { + "bg-hover": { + "value": "{modes.color.interactive.danger.hoverAlt}", + "type": "color" + }, + "border-disabled": { + "value": "{modes.color.interactive.inactive.default}", + "type": "color" + }, + "border-enabled": { + "value": "{modes.color.interactive.danger.default}", + "type": "color" + }, + "border-hover": { + "value": "{modes.color.interactive.danger.hover}", + "type": "color" + }, + "label-disabled": { + "value": "{modes.color.interactive.inactive.content}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.danger.default}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.danger.hover}", + "type": "color" + } + } + }, + "typical": { + "primary": { + "bg-active": { + "value": "{modes.color.interactive.primary.active}", + "type": "color" + }, + "bg-default": { + "value": "{modes.color.interactive.primary.withDefault}", + "type": "color", + "description": "For spacer in Split button" + }, + "bg-disabled": { + "value": "{modes.color.interactive.inactive.default}", + "type": "color" + }, + "bg-enabled": { + "value": "{modes.color.interactive.primary.default}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.primary.hover}", + "type": "color" + }, + "label-active": { + "value": "{modes.color.interactive.primary.withActive}", + "type": "color" + }, + "label-disabled": { + "value": "{modes.color.interactive.inactive.contentAlt}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.primary.withDefault}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.primary.withDefault}", + "type": "color" + } + }, + "secondary": { + "bg-active": { + "value": "{modes.color.interactive.monochrome.generic.activeAlt}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.monochrome.generic.hoverAlt}", + "type": "color" + }, + "border-active": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color" + }, + "border-disabled": { + "value": "{modes.color.interactive.inactive.default}", + "type": "color" + }, + "border-enabled": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + }, + "border-hover": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + }, + "label-active": { + "value": "{modes.color.interactive.monochrome.generic.withActiveAlt}", + "type": "color" + }, + "label-disabled": { + "value": "{modes.color.interactive.inactive.content}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.generic.withHover}", + "type": "color" + } + }, + "subtle": { + "bg-active": { + "value": "{modes.color.interactive.monochrome.generic.activeAlt}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.monochrome.generic.hoverAlt}", + "type": "color" + }, + "label-active": { + "value": "{modes.color.interactive.monochrome.generic.withActiveAlt}", + "type": "color" + }, + "label-disabled": { + "value": "{modes.color.interactive.inactive.content}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.monochrome.generic.defaultAlt}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.generic.withHover}", + "type": "color" + } + }, + "tertiary": { + "bg-active": { + "value": "{modes.color.interactive.monochrome.generic.activeAlt}", + "type": "color" + }, + "bg-activeDisabled": { + "value": "{modes.color.interactive.inactive.default}", + "type": "color" + }, + "bg-enabled": { + "value": "{modes.color.interactive.monochrome.subtle.default}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.monochrome.generic.hoverAlt}", + "type": "color" + }, + "border-active": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color" + }, + "border-disabled": { + "value": "{modes.color.interactive.inactive.default}", + "type": "color" + }, + "label-active": { + "value": "{modes.color.interactive.monochrome.generic.withActiveAlt}", + "type": "color" + }, + "label-active-copy": { + "value": "{modes.color.interactive.monochrome.frozen.withActive}", + "type": "color" + }, + "label-disabled": { + "value": "{modes.color.interactive.inactive.content}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.generic.withHover}", + "type": "color" + } + }, + "toggle": { + "bg-activeDisabled": { + "value": "{modes.color.interactive.inactive.default}", + "type": "color" + }, + "label-activeDisabled": { + "value": "{modes.color.interactive.inactive.contentAlt}", + "type": "color" + }, + "bg-active": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.monochrome.generic.hoverAlt}", + "type": "color" + }, + "border-enabled": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + }, + "label-active": { + "value": "{modes.color.interactive.monochrome.generic.withActive}", + "type": "color" + }, + "label-disabled": { + "value": "{modes.color.interactive.inactive.content}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.monochrome.generic.defaultAlt}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.generic.withHover}", + "type": "color" + } + } + }, + "video": { + "bg-blur": { + "value": "{modes.color.interactive.monochrome.generic.hoverAlt}", + "type": "color" + }, + "primary": { + "bg-enabled": { + "value": "{modes.color.interactive.monochrome.generic.withDefault}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.monochrome.generic.withDefault}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + } + }, + "secondary": { + "bg-hover": { + "value": "{modes.color.interactive.monochrome.generic.withDefault}", + "type": "color" + }, + "border-enabled": { + "value": "{modes.color.interactive.monochrome.generic.withDefault}", + "type": "color" + }, + "border-hover": { + "value": "{modes.color.interactive.monochrome.generic.withDefault}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.monochrome.generic.withDefault}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + } + } + } + }, + "radius": { + "none": { + "value": "{global.radius.none}", + "type": "borderRadius", + "description": "Button bar S, M, L (internal/adjacent corners), Search bar (button left corners)" + }, + "S": { + "value": "{global.radius.interactive.L}", + "type": "borderRadius", + "description": "Buttons S (typical and destructive, and inc bar, split and multi), Button toggle M (parent container)" + }, + "M": { + "value": "{global.radius.interactive.XL}", + "type": "borderRadius", + "description": "Buttons M (typical and destructive, and inc bar, split and multi), Button toggle L (parent container), Button toggle M (parent container)" + }, + "L": { + "value": "{global.radius.interactive.XXL}", + "type": "borderRadius", + "description": "Buttons L (typical and destructive, and inc bar, split and multi), Button toggle L (parent container)" + }, + "chip": { + "value": "{global.radius.interactive.M}", + "type": "borderRadius", + "description": "Buttons chip" + }, + "FAB": { + "value": "{global.radius.circle}", + "type": "borderRadius", + "description": "FAB Button radius" + }, + "primary": { + "S": { + "value": "{global.radius.interactive.L}", + "type": "borderRadius", + "description": "Buttons S (typical and destructive, and inc bar, split and multi), Button toggle M (parent container)" + }, + "M": { + "value": "{global.radius.interactive.XL}", + "type": "borderRadius", + "description": "Buttons M (typical and destructive, and inc bar, split and multi), Button toggle L (parent container), Button toggle M (parent container)" + }, + "L": { + "value": "{global.radius.interactive.XXL}", + "type": "borderRadius", + "description": "large tertiary button" + } + }, + "secondary": { + "S": { + "value": "{global.radius.interactive.L}", + "type": "borderRadius", + "description": "Buttons S (typical and destructive, and inc bar, split and multi), Button toggle M (parent container)" + }, + "M": { + "value": "{global.radius.interactive.XL}", + "type": "borderRadius", + "description": "Buttons M (typical and destructive, and inc bar, split and multi), Button toggle L (parent container), Button toggle M (parent container)" + }, + "L": { + "value": "{global.radius.interactive.XXL}", + "type": "borderRadius", + "description": "large tertiary button" + } + }, + "tertiary": { + "S": { + "value": "{global.radius.interactive.L}", + "type": "borderRadius", + "description": "Buttons S (typical and destructive, and inc bar, split and multi), Button toggle M (parent container)" + }, + "M": { + "value": "{global.radius.interactive.XL}", + "type": "borderRadius", + "description": "Buttons M (typical and destructive, and inc bar, split and multi), Button toggle L (parent container), Button toggle M (parent container)" + }, + "L": { + "value": "{global.radius.interactive.XXL}", + "type": "borderRadius", + "description": "large tertiary button" + } + }, + "subtle": { + "S": { + "value": "{global.radius.interactive.L}", + "type": "borderRadius", + "description": "Buttons S (typical and destructive, and inc bar, split and multi), Button toggle M (parent container)" + }, + "M": { + "value": "{global.radius.interactive.XL}", + "type": "borderRadius", + "description": "Buttons M (typical and destructive, and inc bar, split and multi), Button toggle L (parent container), Button toggle M (parent container)" + }, + "L": { + "value": "{global.radius.interactive.XXL}", + "type": "borderRadius", + "description": "large subtle button" + } + } + }, + "borderwidth": { + "none": { + "value": "{global.borderwidth.none}", + "type": "borderWidth", + "description": "Override on tertiary buttons within Button-toggle. " + }, + "chip": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "chip button border width" + }, + "secondary": { + "value": "{global.borderwidth.S}", + "type": "borderWidth", + "description": "Secondary button. " + }, + "tertiary": { + "value": "{global.borderwidth.none}", + "type": "borderWidth", + "description": "tertiary button border " + }, + "primary": { + "value": "{global.borderwidth.none}", + "type": "borderWidth", + "description": "primary button border " + }, + "togglecontainer": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Toggle container" + } + }, + "dimension": { + "video": { + "value": "40px", + "type": "dimension", + "description": "background blur on video" + } + }, + "typography": { + "adaptive": { + "primary": { + "S": { + "value": "{global.typography.adaptive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.firm.L}", + "type": "typography" + } + }, + "secondary": { + "S": { + "value": "{global.typography.adaptive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.firm.L}", + "type": "typography" + } + }, + "tertiary": { + "S": { + "value": "{global.typography.adaptive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.firm.L}", + "type": "typography" + } + }, + "subtle": { + "S": { + "value": "{global.typography.adaptive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.firm.L}", + "type": "typography" + } + } + }, + "responsive": { + "primary": { + "S": { + "value": "{global.typography.responsive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.firm.L}", + "type": "typography" + } + }, + "secondary": { + "S": { + "value": "{global.typography.responsive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.firm.L}", + "type": "typography" + } + }, + "tertiary": { + "S": { + "value": "{global.typography.responsive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.firm.L}", + "type": "typography" + } + }, + "subtle": { + "S": { + "value": "{global.typography.responsive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.firm.L}", + "type": "typography" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/components/container.json b/data/tokens/components/container.json new file mode 100644 index 00000000..92577823 --- /dev/null +++ b/data/tokens/components/container.json @@ -0,0 +1,1685 @@ +{ + "container": { + "color": { + "standard": { + "bg-alt": { + "value": "{modes.color.generic.bg.faint}", + "type": "color" + }, + "bg-default": { + "value": "{modes.color.generic.bg.nought}", + "type": "color" + }, + "bgFooter-default": { + "value": "{modes.color.generic.bg.faint}", + "type": "color", + "description": "tile footer bg color " + }, + "border-active": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color" + }, + "border-alt": { + "value": "{modes.color.generic.fg.soft}", + "type": "color" + }, + "border-default": { + "value": "{modes.color.generic.fg.faint}", + "type": "color" + }, + "dimmer": { + "value": "{modes.color.interactive.inactive.mask}", + "type": "color", + "description": "dimmed mask for dialogs" + }, + "icon": { + "value": "{modes.color.generic.fg.moderate}", + "type": "color", + "description": "Link preview image thumbnail" + }, + "text-alt": { + "value": "{modes.color.generic.content.moderate}", + "type": "color", + "description": "for subheadings etc" + }, + "text-default": { + "value": "{modes.color.generic.content.harsh}", + "type": "color", + "description": "for headings, paragraph text etc " + } + }, + "AI": { + "borderhorizontal": { + "value": "{modes.color.status.ai.default-horizontal}", + "type": "color", + "description": "top and bottom border for AI dialog component" + }, + "bordervertical": { + "value": "{modes.color.status.ai.default-vertical}", + "type": "color", + "description": "left and right border for dialog and insight bubbles." + }, + "nudge": { + "borderAi-horizontal": { + "value": "{modes.color.status.ai.default-horizontal}", + "type": "color", + "description": "top and bottom border for AI nudge message component" + }, + "borderAi-vertical": { + "value": "{modes.color.status.ai.default-vertical}", + "type": "color", + "description": "left and right border for AI nudge message component" + } + } + }, + "scrollbar": { + "bg-default": { + "value": "{modes.color.generic.bg.faint}", + "type": "color" + }, + "fg-default": { + "value": "{modes.color.generic.fg.moderate}", + "type": "color" + } + }, + "interactive": { + "detailedicon": { + "bg": { + "value": "{modes.color.custom.default}", + "type": "color", + "description": " " + } + }, + "bgFooter-activated": { + "value": "{modes.color.status.positive.alt}", + "type": "color", + "description": " " + }, + "bgFooter-active": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color" + }, + "border-activated": { + "value": "{modes.color.status.positive.alt}", + "type": "color" + }, + "bgFooter-default": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "description": "tile footer bg color " + }, + "bg-enabled": { + "value": "{modes.color.generic.bg.nought}", + "type": "color" + }, + "bg-disabled": { + "value": "{modes.color.interactive.inactive.defaultAlt}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.monochrome.generic.hoverAlt}", + "type": "color", + "description": "Used for accordion hover backgrounds " + }, + "border-active": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color" + }, + "border-alt": { + "value": "{modes.color.generic.fg.delicate}", + "type": "color", + "description": "Link preview. " + }, + "borderalt-hover": { + "value": "{container.color.interactive.border-alt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hover}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + }, + "description": "For hover border on Link preview." + }, + "border-inactive": { + "value": "{modes.color.generic.fg.soft}", + "type": "color" + }, + "border-enabled": { + "value": "{modes.color.generic.fg.moderate}", + "type": "color" + }, + "icon-active": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color", + "description": "Active chevron for any accordion." + }, + "icon-enabled": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color", + "description": "Enabled chevron for any accordion." + }, + "iconAlt-enabled": { + "value": "{modes.color.interactive.monochrome.generic.defaultAlt}", + "type": "color", + "description": "Enabled label for subtle accordion." + }, + "icon-hover": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color", + "description": "Hover chevron for any accordion." + }, + "labelFooter-active": { + "value": "{modes.color.interactive.monochrome.generic.withActive}", + "type": "color" + }, + "labelFooter-activated": { + "value": "{modes.color.interactive.monochrome.generic.withActive}", + "type": "color" + }, + "text-active": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color", + "description": "Active label for any accordion." + }, + "text-disabled": { + "value": "{modes.color.interactive.inactive.content}", + "type": "color" + }, + "text-enabled": { + "value": "{modes.color.generic.content.harsh}", + "type": "color", + "description": "Enabled label for standard accordion." + }, + "textAlt-enabled": { + "value": "{modes.color.generic.content.moderate}", + "type": "color", + "description": "Enabled label for subtle accordion." + }, + "text-hover": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color", + "description": "Hover label for any accordion." + } + }, + "blockquote": { + "border": { + "value": "{modes.color.interactive.primary.default}", + "type": "color" + } + } + }, + "size": { + "none": { + "value": "{global.size.none}", + "type": "sizing" + }, + "accordionstandard": { + "chevron": { + "value": "{global.size.icon.M}", + "type": "sizing", + "description": "Accordion chevron container" + } + }, + "quotebar": { + "width": { + "value": "{global.size.micro.M}", + "type": "sizing", + "description": "block quote bar width" + } + }, + "chatbubble": { + "maxwidth": { + "value": "{global.size.macro.XXXXL} * 5", + "type": "sizing", + "description": "max width for chat bubbles" + } + }, + "carousel": { + "mediaslide": { + "minheight": { + "value": "300", + "type": "sizing", + "description": "max height for media visual" + } + } + }, + "copilot": { + "emptystate": { + "illustration": { + "value": "{global.size.macro.M} * 5", + "type": "sizing", + "description": "Illustration size" + }, + "content": { + "maxwidth": { + "value": "{global.size.macro.XXXXL} * 5", + "type": "sizing", + "description": "max-width of the insight empty state content area" + } + } + }, + "overlay": { + "maxheight": { + "value": "{global.size.macro.XXXXL} * 8", + "type": "sizing", + "description": "max-height of the copilot container overlay " + } + } + }, + "generic": { + "emptystate": { + "illustration": { + "primary": { + "S": { + "value": "{global.size.macro.M} * 5", + "type": "sizing", + "description": "Illustration size for small error and empty states" + }, + "M": { + "value": "{global.size.macro.M} * 6", + "type": "sizing", + "description": "Illustration size for medium error and empty states" + }, + "L": { + "value": "{global.size.macro.M} * 8", + "type": "sizing", + "description": "Illustration size for large error and empty states" + } + }, + "secondary": { + "value": "{global.size.macro.M} + {button.size.icon.M}", + "type": "sizing", + "description": "Illustration size for secondary empty states" + } + } + } + }, + "drawer": { + "closed": { + "M": { + "value": "{global.size.macro.M}", + "type": "sizing", + "description": "width for the closed drawer state" + } + } + }, + "footer": { + "M": { + "value": "{global.size.macro.XL}", + "type": "sizing", + "description": "card and tile footers" + }, + "L": { + "value": "{global.size.macro.XS} * 3", + "type": "sizing", + "description": "Dialog, sidebar and drawer footer max-height" + } + }, + "icon": { + "S": { + "value": "{global.size.icon.M}", + "type": "sizing" + }, + "M": { + "value": "{global.size.icon.M}", + "type": "sizing" + }, + "L": { + "value": "{global.size.icon.M}", + "type": "sizing", + "description": "Deliberately referencing global M (20px). Accordion chevron." + } + }, + "linkpreview": { + "thumbnail": { + "S": { + "value": "{global.size.macro.XXXXL} - 3", + "type": "sizing", + "description": "Thumbnail height and width for small variant" + }, + "M": { + "value": "{global.size.macro.XXXXL} + {global.size.macro.XXS}", + "type": "sizing", + "description": "Thumbnail height and width for medium variant" + }, + "L": { + "value": "{global.size.macro.XXXXL} + {global.size.macro.L}", + "type": "sizing", + "description": "Thumbnail height and width for large variant" + } + }, + "headertext": { + "S": { + "value": "{global.size.macro.S}", + "type": "sizing", + "description": "fixed text layer size for small header" + }, + "M": { + "value": "{global.size.macro.S}", + "type": "sizing", + "description": "fixed text layer size for large header" + }, + "L": { + "value": "{global.size.macro.M}", + "type": "sizing", + "description": "fixed text layer size for small header" + } + }, + "descriptiontext": { + "S": { + "value": "{global.size.macro.M} + {global.size.micro.XS}", + "type": "sizing", + "description": "Fixed height for small note description text string" + }, + "M": { + "value": "{global.size.macro.L}", + "type": "sizing", + "description": "Fixed height for medium note description text string" + }, + "L": { + "value": "{global.size.macro.XL}", + "type": "sizing", + "description": "Fixed height for large note description text string" + } + } + }, + "responsive": { + "XXS": { + "value": "{global.size.flex.XXS}", + "type": "sizing", + "description": "min and max widths for responsive tile items" + }, + "XS": { + "value": "{global.size.flex.XS}", + "type": "sizing", + "description": "min and max widths for responsive tile items" + }, + "S": { + "value": "{global.size.flex.S}", + "type": "sizing", + "description": "min and max widths for responsive tile items. Min width for Tile select content wrapper." + }, + "M": { + "value": "{global.size.flex.M}", + "type": "sizing", + "description": "min and max widths for responsive tile items" + }, + "L": { + "value": "{global.size.flex.L}", + "type": "sizing", + "description": "min and max widths for responsive tile items" + }, + "XL": { + "value": "{global.size.flex.XL}", + "type": "sizing", + "description": "Small screen mid width inside page margins." + }, + "XXL": { + "value": "{global.size.flex.XXL}", + "type": "sizing", + "description": "Small screen full page width." + }, + "XXXL": { + "value": "{global.size.flex.XXXL}", + "type": "sizing", + "description": "min and max widths for responsive tile items" + }, + "XXXXL": { + "value": "{global.size.flex.XXXXL}", + "type": "sizing", + "description": "Max width for single line of text." + } + }, + "scrollbar": { + "container": { + "value": "{global.size.micro.XL}", + "type": "sizing", + "description": "Container that the scrollbar sits within " + } + }, + "sidebar": { + "responsive": { + "min": { + "value": "{global.size.flex.XL}", + "type": "sizing", + "description": "min-width for sidebar" + }, + "max": { + "value": "{global.size.flex.XXXXL}", + "type": "sizing", + "description": "max-width for sidebar" + } + } + }, + "tileselect": { + "footer": { + "value": "{global.size.macro.L}", + "type": "sizing", + "description": "Product identifier " + }, + "productidentifier": { + "M": { + "value": "{global.size.macro.S}", + "type": "sizing", + "description": "Product identifier " + }, + "L": { + "value": "{global.size.macro.L}", + "type": "sizing", + "description": "Product identifier " + } + } + }, + "tooltipArrow": { + "width": { + "value": "{global.size.micro.XXL}", + "type": "sizing", + "description": "tooltip arrow width" + }, + "height": { + "value": "{global.size.micro.M}", + "type": "sizing", + "description": "tooltip arrow height" + } + }, + "uploadpreview": { + "M": { + "value": "{global.size.macro.XXXL}", + "type": "sizing", + "description": "Thumbnail container" + } + } + }, + "radius": { + "none": { + "value": "{global.radius.none}", + "type": "borderRadius", + "description": "Card select (inner adjacent corners), Subscription tile footer top corners" + }, + "card": { + "moderate": { + "value": "{global.radius.container.L}", + "type": "borderRadius", + "description": "Card (less rounded)" + }, + "curved": { + "value": "{global.radius.container.XL}", + "type": "borderRadius", + "description": "Card (more rounded)" + }, + "sweeping": { + "value": "{global.radius.container.XXL}", + "type": "borderRadius", + "description": "Card largest rounded type" + } + }, + "carouselslide": { + "value": "{global.radius.container.L}", + "type": "borderRadius", + "description": "Carousel slides" + }, + "chatbubble": { + "value": "{global.radius.container.L}", + "type": "borderRadius" + }, + "colorpicker": { + "value": "{global.radius.container.L}", + "type": "borderRadius", + "description": "Color picker container radius" + }, + "blockquote": { + "bar": { + "value": "{global.radius.circle}", + "type": "borderRadius", + "description": "radius for blockquote bar" + } + }, + "contacttile": { + "value": "{global.radius.container.M}", + "type": "borderRadius" + }, + "dialog": { + "value": "{global.radius.container.XL}", + "type": "borderRadius", + "description": "Dialog" + }, + "filepreview": { + "value": "{global.radius.container.M}", + "type": "borderRadius", + "description": "File preview (parent container), " + }, + "linkpreview": { + "value": "{global.radius.interactive.S}", + "type": "borderRadius", + "description": "Link preview (outer corners)" + }, + "heroimage": { + "value": "{global.radius.container.XXXXL}", + "type": "borderRadius", + "description": "hero image radius" + }, + "note": { + "value": "{global.radius.container.M}", + "type": "borderRadius", + "description": "Note" + }, + "scrollbar": { + "value": "{global.radius.circle}", + "type": "borderRadius", + "description": "Scrollbar" + }, + "texteditor": { + "value": "{global.radius.container.M}", + "type": "borderRadius", + "description": "Text editor (footer bottom corners) " + }, + "tile": { + "moderate": { + "value": "{global.radius.container.L}", + "type": "borderRadius", + "description": "Tile (less rounded)" + }, + "curved": { + "value": "{global.radius.container.XL}", + "type": "borderRadius", + "description": "Tile (more rounded)" + }, + "sweeping": { + "value": "{global.radius.container.XXL}", + "type": "borderRadius", + "description": "Tile largest roundedness " + } + }, + "tileselect": { + "moderate": { + "value": "{global.radius.container.L}", + "type": "borderRadius", + "description": "Tile (less rounded)" + }, + "curved": { + "value": "{global.radius.container.XL}", + "type": "borderRadius", + "description": "Tile (more rounded)" + }, + "sweeping": { + "value": "{global.radius.container.XXL}", + "type": "borderRadius" + } + }, + "nudge": { + "value": "{global.radius.container.L}", + "type": "borderRadius", + "description": "nudge radius" + } + }, + "space": { + "none": { + "value": "{global.space.none}", + "type": "spacing" + }, + "accordionsubtle": { + "yg": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Gap between Accordion subtle trigger and content" + } + } + }, + "chatbubble": { + "outer": { + "x": { + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Left margin on AI response bubbles and right margin on user prompt bubbles." + }, + "L": { + "value": "{global.space.macro.XL} * 2", + "type": "spacing", + "description": "Right margin on AI response bubbles and left margin on user prompt bubbles." + } + }, + "y": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Top and bottom margin on all chat bubbles." + } + }, + "yg": { + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Gap between timestamp and chat bubble container. Also gap between give feedback button and container." + } + } + }, + "inner": { + "x": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Left and right padding inside chat bubbles." + } + }, + "xg": { + "S": { + "value": "{global.space.micro.L}", + "type": "spacing" + }, + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing" + } + }, + "Y": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Top and bottom padding inside chat bubbles." + } + }, + "yg": { + "XS": { + "value": "{global.space.micro.S}", + "type": "spacing" + }, + "S": { + "value": "{global.space.micro.L}", + "type": "spacing" + }, + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing" + }, + "L": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Vertical gap between inner blocks within a chat or insight bubble." + } + } + } + }, + "filepreview": { + "preview": { + "x": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Horizontal padding on large thumbnail image" + } + }, + "y": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Vertical padding on large thumbnail image." + } + } + } + }, + "flex": { + "xg": { + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Small horizontal item spacing" + }, + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Medium horizontal item spacing" + }, + "L": { + "value": "{global.space.macro.L}", + "type": "spacing", + "description": "Large horizontal item spacing" + } + }, + "yg": { + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Small row gap" + }, + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Medium row gap" + }, + "L": { + "value": "{global.space.macro.L}", + "type": "spacing", + "description": "Large row gap" + } + }, + "item": { + "x": { + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Small left and right padding on flex items" + }, + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Medium left and right padding on flex items" + }, + "L": { + "value": "{global.space.macro.L}", + "type": "spacing", + "description": "Large left and right padding on flex items" + } + }, + "y": { + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Small top bottom padding on flex items" + }, + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Medium top bottom padding on flex items" + }, + "L": { + "value": "{global.space.macro.L}", + "type": "spacing", + "description": "Large top bottom padding on flex items" + } + } + } + }, + "generic": { + "content": { + "x": { + "XS": { + "value": "{global.space.micro.L}", + "type": "spacing" + }, + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Left and right padding copilot chat history items, S accordions, S cards and S tiles" + }, + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Left and right padding on dialog, drawer, M cards, M tiles and sidebar" + }, + "L": { + "value": "{global.space.macro.L}", + "type": "spacing", + "description": "Left and right padding on large card and tile " + } + }, + "y": { + "XS": { + "value": "{global.space.micro.L}", + "type": "spacing" + }, + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Top and bottom padding S Accordions, S cards and S tiles" + }, + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Vertical padding on content in dialog, drawer, sidebar card and tile" + }, + "L": { + "value": "{global.space.macro.L}", + "type": "spacing" + } + }, + "xg": { + "XS": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Gap padding within timestamp in Note." + }, + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "gap padding between carousel tiles" + }, + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "gap padding between carousel tiles" + } + }, + "yg": { + "S": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Vertical gap between content items in Anchor nav quick links " + }, + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Vertical gap between content items in copilot content, dialog, drawer, sidebar, M card and M tile. " + }, + "L": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "vertical gap between block quote text and avatar" + } + } + }, + "outer": { + "x": { + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Left and right margins on dialog and sidebar in small screen full width contexts" + } + }, + "y": { + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Top and Bottom margins on dialog and sidebar in small screen full width contexts" + } + } + }, + "header": { + "x": { + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Left and right padding on accordion" + }, + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Left and right padding on copilot, dialog, drawer, M cards, M tiles and sidebar." + } + }, + "y": { + "XS": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Top and bottom padding copilot header and subheader." + }, + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Top and bottom padding on small accordion." + }, + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Vertical padding on accordion, dialog headers and on sub-page headers inside copilot (e.g insights and chat history)." + } + }, + "xg": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "horizontal space between dialog heading and icon" + } + }, + "yg": { + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "vertical space between heading and subheading in dialog, accordion and sub-pages inside copilot." + }, + "L": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "vertical space between heading and Powered By AI identifier in dialog header" + } + } + }, + "emptystate": { + "y": { + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Spacing between empty state heading and body copy below it." + }, + "L": { + "value": "{global.space.macro.XL}", + "type": "spacing", + "description": "Spacing between empty state roundel and heading below it." + } + } + }, + "footer": { + "x": { + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Left and right padding on copilot footer" + } + }, + "y": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Top and bottom padding on copilot footer" + } + } + } + }, + "note": { + "x": { + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Left and right padding on Note" + } + }, + "xg": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Gap between columns in editor detail in Note." + } + }, + "timestamp": { + "xg": { + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Gap between created and updated editor columns" + } + }, + "yg": { + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "gap between create or updated title and timestamp" + } + } + }, + "y": { + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Top bottom padding on Note" + } + }, + "yg": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Vertical gap on Note" + } + } + }, + "linkpreview": { + "x": { + "S": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Content horizontal padding for small variant" + }, + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Content horizontal padding for medium variant" + }, + "L": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Content horizontal padding for large variant" + } + }, + "xg": { + "S": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Content horizontal padding for small variant" + }, + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Content horizontal padding for medium variant" + }, + "L": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Content horizontal padding for large variant" + } + }, + "y": { + "S": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Content horizontal padding for small variant" + }, + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Content horizontal padding for medium variant" + }, + "L": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Content horizontal padding for large variant" + } + }, + "yg": { + "S": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Content horizontal padding for small variant" + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Content horizontal padding for medium variant" + }, + "L": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Content horizontal padding for large variant" + } + } + }, + "pagination": { + "xg": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "gap between elements in pagination" + }, + "L": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "gap between page nav buttons in pagination" + } + }, + "y": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "top and bottom padding inside pagination" + } + }, + "x": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "left and right padding inside pagination" + } + } + }, + "scrollbar": { + "y": { + "inner": { + "value": "{global.space.micro.XXS}", + "type": "spacing", + "description": "top and bottom padding around scrollbar handle." + }, + "outer": { + "value": "{global.space.micro.XS}", + "type": "spacing", + "description": "top and bottom padding inside scrollbar outer container" + } + } + }, + "summarylist": { + "item": { + "xg": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "gap between summary list item content" + } + }, + "y": { + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "top and bottom padding for each item " + } + } + }, + "title": { + "xg": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "gap between summary list title and edit link" + } + }, + "y": { + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "bottom padding for each section title" + }, + "L": { + "value": "{global.space.macro.L}", + "type": "spacing", + "description": "top padding for each section title" + } + } + } + }, + "tilecard": { + "x": { + "XS": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Left and right padding on Link preview" + }, + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Right left padding on Tile or Card." + }, + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Right left padding on drag wrapper" + }, + "L": { + "value": "{global.space.macro.L}", + "type": "spacing", + "description": "Right left padding on Tile or Card." + } + }, + "xg": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "horizontal gap between icons and text" + } + }, + "y": { + "XS": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Top bottom padding on Link preview and on card drag wrapper" + }, + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Top bottom padding on Tile or Card." + }, + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Top bottom padding on Tile or Card." + }, + "L": { + "value": "{global.space.macro.L}", + "type": "spacing", + "description": "Top bottom padding on Tile or Card." + } + }, + "yg": { + "S": { + "value": "{global.space.micro.S}", + "type": "spacing" + } + } + }, + "tileselect": { + "x": { + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Left and right padding on tile select container" + }, + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Left and right padding on tile select container" + }, + "L": { + "value": "{global.space.macro.L}", + "type": "spacing", + "description": "Left and right padding on tile select container" + } + }, + "y": { + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Top and bottom padding on tile select container" + }, + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Top bottom padding on tile select container" + }, + "L": { + "value": "{global.space.macro.L}", + "type": "spacing", + "description": "Top and bottom padding on tile select container" + } + }, + "yg": { + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Vertical gap between content blocks in Subscription tile." + }, + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Vertical gap between content blocks in Subscription tile." + }, + "L": { + "value": "{global.space.macro.L}", + "type": "spacing", + "description": "Vertical gap between content blocks in Subscription tile." + } + }, + "content": { + "yg": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Vertical gap between strings of text" + } + } + }, + "header": { + "xg": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "gap between identifier and header content" + } + }, + "yg": { + "S": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Vertical gap between header content wrapper items" + } + } + }, + "footer": { + "y": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Top bottom padding in footer." + }, + "L": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Top bottom margins on carousel dots" + } + }, + "xg": { + "S": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Gap between carousel dots" + } + } + } + }, + "nudge": { + "x": { + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Left and right padding on medium nudge" + }, + "L": { + "value": "{global.space.macro.L}", + "type": "spacing", + "description": "left and right padding on large nudge " + } + }, + "y": { + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Top and bottom padding on medium nudge" + }, + "L": { + "value": "{global.space.macro.L}", + "type": "spacing", + "description": "Top and bottom paddding on large nudge" + } + }, + "yg": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Gap between message elements" + }, + "L": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Gap between message elements" + } + }, + "header": { + "xg": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "gap between header and ai logo" + }, + "L": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "gap between header and ai logo" + } + } + } + } + }, + "boxshadow": { + "card": { + "enabled": { + "value": "{global.boxshadow.interactive.enabled}", + "type": "boxShadow", + "description": "Card (enabled)" + }, + "hover": { + "value": "{global.boxshadow.interactive.hover}", + "type": "boxShadow", + "description": "Card (hover state)" + }, + "drag": { + "value": "{global.boxshadow.interactive.drag}", + "type": "boxShadow", + "description": "Card (drag state)" + } + }, + "carousel": { + "value": "{global.boxshadow.container.distant}", + "type": "boxShadow", + "description": "Carousel " + }, + "colorpicker": { + "value": "{global.boxshadow.container.near}", + "type": "boxShadow", + "description": "Color picker (advanced) " + }, + "dialog": { + "value": "{global.boxshadow.container.distant}", + "type": "boxShadow", + "description": "Dialog " + }, + "filepreview": { + "value": "{global.boxshadow.container.distant}", + "type": "boxShadow", + "description": "File preview" + }, + "sidebar": { + "value": "{global.boxshadow.container.distant}", + "type": "boxShadow", + "description": "Sidebar" + }, + "stickyfooter": { + "value": "{global.boxshadow.container.sticky-footer}", + "type": "boxShadow", + "description": "Sticky footer in Dialog, Drawer, Sidebar." + }, + "nudge": { + "value": "{global.boxshadow.container.far}", + "type": "boxShadow", + "description": "nudge shadow" + } + }, + "borderwidth": { + "AIgradient": { + "value": "{global.borderwidth.XL}", + "type": "borderWidth", + "description": "AI gradient used on all containers such as dialog, chat bubbles etc" + }, + "dialog": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Dialog" + }, + "divider": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Divider" + }, + "drawer": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Drawer" + }, + "footer": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Footer (in Card, Dialog) " + }, + "header": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Global header (next to logo) " + }, + "linkpreview": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Link preview in Text editor and Note " + }, + "note": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Note " + }, + "sidebar": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Sidebar" + }, + "summarylist": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Summary list" + }, + "tile": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Tile" + }, + "accordion": { + "standard": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Accordion standard (top and bottom borders)" + }, + "subtle": { + "value": "{global.borderwidth.S}", + "type": "borderWidth", + "description": "Accordion subtle (content vertical line)" + } + }, + "chatbubble": { + "default": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth" + }, + "error": { + "value": "{global.borderwidth.S}", + "type": "borderWidth" + }, + "success": { + "value": "{global.borderwidth.S}", + "type": "borderWidth" + } + }, + "filepreview": { + "container": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "File preview (internal borders) " + }, + "enabled": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "File preview (file selector) " + }, + "active": { + "value": "{global.borderwidth.S}", + "type": "borderWidth", + "description": "File preview (file selector) " + } + }, + "tileselect": { + "active": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Subscription tile (active product)" + }, + "inactive": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Subscription tile (inactive product)" + }, + "selected": { + "value": "{global.borderwidth.S}", + "type": "borderWidth", + "description": "Tile select (selected tile)" + }, + "unavailable": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Subscription tile (unavailable product)" + }, + "enabled": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Tile select (enabled tile)" + } + }, + "nudge": { + "value": "{global.borderwidth.XL}", + "type": "borderWidth", + "description": "nudge AI message borders " + } + }, + "opacity": { + "carousel": { + "hidden": { + "value": "{modes.color.modifiers.input.disabledFg}", + "type": "opacity", + "description": "opacity applied to next and previous carousel slides" + } + }, + "dialog": { + "dimmer": { + "value": "0.4", + "type": "opacity", + "description": "dimmer opacity value" + } + } + }, + "typography": { + "adaptive": { + "heading": { + "M": { + "value": "{global.typography.adaptive.heading.S}", + "type": "typography", + "description": "Accordion, Subscription tile, Tile select and generic tile or card headings" + }, + "L": { + "value": "{global.typography.adaptive.heading.M}", + "type": "typography", + "description": "Dialog, drawer and sidebar headings" + } + }, + "subheading": { + "M": { + "value": "{global.typography.adaptive.subheading.M}", + "type": "typography", + "description": "Accordion subheading, Step flow subheading, tile select subheading, dialog, drawer and sidebar subheading" + } + }, + "label": { + "S": { + "value": "{global.typography.adaptive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.firm.L}", + "type": "typography" + } + }, + "paragraph": { + "S": { + "value": "{global.typography.adaptive.component.moderate.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.moderate.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.moderate.L}", + "type": "typography" + } + } + }, + "responsive": { + "heading": { + "M": { + "value": "{global.typography.responsive.heading.S}", + "type": "typography", + "description": "Accordion, Subscription tile, Tile select and generic tile or card headings" + }, + "L": { + "value": "{global.typography.responsive.heading.M}", + "type": "typography", + "description": "Dialog, drawer and sidebar headings" + } + }, + "subheading": { + "M": { + "value": "{global.typography.responsive.subheading.M}", + "type": "typography", + "description": "Accordion subheading, Step flow subheading, tile select subheading, dialog, drawer and sidebar subheading" + } + }, + "label": { + "S": { + "value": "{global.typography.responsive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.firm.L}", + "type": "typography" + } + }, + "paragraph": { + "S": { + "value": "{global.typography.responsive.component.moderate.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.moderate.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.moderate.L}", + "type": "typography" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/components/focus.json b/data/tokens/components/focus.json new file mode 100644 index 00000000..9c292a32 --- /dev/null +++ b/data/tokens/components/focus.json @@ -0,0 +1,46 @@ +{ + "focus": { + "color": { + "bg": { + "value": "{modes.color.interactive.focus.withDefaultAlt}", + "type": "color" + }, + "borderalt": { + "value": "{modes.color.interactive.focus.default}", + "type": "color" + }, + "border": { + "value": "{modes.color.interactive.focus.withDefault}", + "type": "color" + }, + "label": { + "value": "{modes.color.interactive.focus.content}", + "type": "color" + } + }, + "size": { + "underline": { + "value": "{global.size.micro.XS}", + "type": "sizing", + "description": "focus black underline on links and skiplink" + } + }, + "borderwidth": { + "secondary": { + "value": "{global.borderwidth.S}", + "type": "borderWidth", + "description": "Secondary focus (dropdown item)" + }, + "inner": { + "value": "{global.borderwidth.S}", + "type": "borderWidth", + "description": "Focus border (inner)" + }, + "outer": { + "value": "{global.borderwidth.L}", + "type": "borderWidth", + "description": "Focus border (outer)" + } + } + } +} \ No newline at end of file diff --git a/data/tokens/components/form.json b/data/tokens/components/form.json new file mode 100644 index 00000000..31ecac63 --- /dev/null +++ b/data/tokens/components/form.json @@ -0,0 +1,1585 @@ +{ + "form": { + "space": { + "none": { + "value": "{global.space.none}", + "type": "spacing" + }, + "calendar": { + "x": { + "M": { + "value": "{global.space.macro.M}", + "type": "spacing" + } + }, + "y": { + "M": { + "value": "{global.space.macro.M}", + "type": "spacing" + } + }, + "yg": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Space between date rows" + } + } + }, + "chip": { + "xg": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "gap between medium chip buttons" + }, + "L": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "gap between large chip buttons" + } + }, + "yg": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "gap between medium chip buttons" + }, + "L": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "gap between large chip buttons" + } + } + }, + "checkradio": { + "y": { + "S": { + "value": "{global.space.micro.M} / 2", + "type": "spacing", + "description": "Space above single checkbox/radio OR label to vertically centre checkbox and label." + }, + "L": { + "value": "{global.space.micro.XS}", + "type": "spacing", + "description": "Space above single checkbox/radio OR label to vertically centre checkbox and label." + } + } + }, + "colorpicker": { + "x": { + "M": { + "value": "{global.space.macro.M}", + "type": "spacing" + } + }, + "xg": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing" + } + }, + "y": { + "M": { + "value": "{global.space.macro.M}", + "type": "spacing" + } + }, + "yg": { + "M": { + "value": "{global.space.macro.M}", + "type": "spacing" + } + } + }, + "dropdown": { + "button": { + "x": { + "S": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "DD only, left right padding on footer button." + }, + "M": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "DD only, left right padding on footer button." + }, + "L": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "DD only, left right padding on footer button." + } + } + }, + "heading": { + "pr": { + "S": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "DD only, right padding." + }, + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "DD only, right padding." + }, + "L": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "DD only, right padding." + } + }, + "pt": { + "S": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "DD only, top padding." + }, + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "DD only, top padding." + }, + "L": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "DD only, top padding." + } + }, + "pl": { + "S": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "DD only, left padding." + }, + "M": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "DD only, left padding." + }, + "L": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "DD only, left padding." + } + } + }, + "menu": { + "y": { + "S": { + "value": "{popover.space.menu.y.S}", + "type": "spacing", + "description": "REF POPOVER. Top and bottom padding on container" + }, + "M": { + "value": "{popover.space.menu.y.M}", + "type": "spacing", + "description": "REF POPOVER. Top and bottom padding on container" + }, + "L": { + "value": "{popover.space.menu.y.L}", + "type": "spacing", + "description": "REF POPOVER. Top and bottom padding on container" + } + }, + "x": { + "S": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "left and right padding of menu parent container to make message content align with the option text" + }, + "M": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "left and right padding of menu parent container to make message content align with the option text" + }, + "L": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "left and right padding of menu parent container to make message content align with the option text" + } + } + }, + "option": { + "x": { + "S": { + "value": "{popover.space.option.x.S}", + "type": "spacing", + "description": "REF POPOVER. Right padding on option." + }, + "M": { + "value": "{popover.space.option.x.M}", + "type": "spacing", + "description": "REF POPOVER. Right padding on option." + }, + "L": { + "value": "{popover.space.option.x.L}", + "type": "spacing", + "description": "REF POPOVER. Right padding on option." + } + }, + "xg": { + "S": { + "value": "{global.space.micro.XS}", + "type": "spacing", + "description": "DD only. Space between optional icon, prefix, and label." + }, + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "DD only. Space between optional icon, prefix, and label." + }, + "L": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "DD only. Space between optional icon, prefix, and label." + } + }, + "y": { + "S": { + "value": "{popover.space.option.y.S}", + "type": "spacing", + "description": "REF POPOVER. Vertical padding on option." + }, + "M": { + "value": "{popover.space.option.y.M}", + "type": "spacing", + "description": "REF POPOVER. Vertical padding on option." + }, + "L": { + "value": "{popover.space.option.y.L}", + "type": "spacing", + "description": "REF POPOVER. Vertical padding on option." + } + }, + "subtext": { + "x": { + "S": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "used for left indentation on descriptive hint text underneath main option text" + }, + "M": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "used for left indentation on descriptive hint text underneath main option text" + }, + "L": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "used for left indentation on descriptive hint text underneath main option text" + } + }, + "y": { + "S": { + "value": "{global.space.micro.XS}", + "type": "spacing", + "description": "top padding for the subtext text underneath standard option text" + }, + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "top padding for the subtext text underneath standard option text" + }, + "L": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "top padding for the subtext text underneath standard option text" + } + } + } + }, + "pill": { + "xg": { + "S": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "space between pills inside pill wrapper" + }, + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "space between pills inside pill wrapper" + }, + "L": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "space between pills inside pill wrapper" + } + } + } + }, + "fileinput": { + "status": { + "xl": { + "M": { + "value": "{global.space.macro.ML}", + "type": "spacing", + "description": "Left padding in File input (no-thumbnail variant), status text." + } + }, + "y": { + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Vertical padding in status text." + } + } + }, + "thumbnail": { + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "All padding in File input (thumbnail container)." + } + }, + "preview": { + "x": { + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Right left padding in File input (preview container)." + } + }, + "y": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Top padding in file input (preview container)." + } + } + }, + "dropzone": { + "x": { + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Right left padding in File input (preview container)." + } + }, + "y": { + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Top padding in file input (preview container)." + } + }, + "yg": { + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Vertical gap in file input (input container)." + } + } + } + }, + "input": { + "stack": { + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Vertical gap on custom date range between the 2 inputs." + }, + "M": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "Vertical gap on custom date range between the 2 inputs. Horizontal gap between start and end date inputs in Date range." + }, + "L": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Vertical gap on custom date range between the 2 inputs." + } + }, + "x": { + "S": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Left right padding on input." + }, + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Left right padding on input. Right padding on dropdown option." + }, + "L": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Left right padding on input." + } + }, + "xg": { + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Horizontal gap between checkboxes and radios within a group, and between date or time inputs within a group." + }, + "M": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "Horizontal gap between checkboxes and radios within a group, and between date or time inputs within a group, and between elements in Pagination." + }, + "L": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Horizontal gap between checkboxes and radios within a group, and between date or time inputs within a group." + } + }, + "y": { + "S": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Top bottom padding on input." + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Top bottom padding on input." + }, + "L": { + "value": "{global.space.micro.XL}", + "type": "spacing", + "description": "Top bottom padding on input." + } + }, + "yg": { + "S": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Gap between rows of checkboxes or radios within a group." + }, + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Gap between rows of checkboxes or radios within a group. Gap betwen input text and file preview in Text editor. " + }, + "L": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Gap between rows of checkboxes or radios within a group." + } + } + }, + "integral": { + "secondarylabel": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Space between secondarylabel and input" + }, + "xg": { + "S": { + "value": "{global.space.micro.M}", + "type": "spacing", + "description": "Space between integral elements (ie checkbox&label, inputtext&icon,inputtext&button)" + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Space between integral elements (ie checkbox&label, inputtext&icon,inputtext&button, dropdown option icon and label), Switch and processing text." + }, + "L": { + "value": "{global.space.micro.XL}", + "type": "spacing", + "description": "Space between integral elements (ie checkbox&label, inputtext&icon,inputtext&button)" + } + }, + "yg": { + "S": { + "value": "{global.space.micro.M}", + "type": "spacing", + "description": "Space below labelset or error validation in form components" + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Space below labelset or error validation in form components" + }, + "L": { + "value": "{global.space.micro.XL}", + "type": "spacing", + "description": "Space below labelset or error validation in form components" + } + }, + "progressive": { + "x": { + "S": { + "value": "{global.space.macro.M} - {global.space.micro.XS}", + "type": "spacing", + "description": "Left padding on progressively shown form inputs on radio and checkbox" + }, + "M": { + "value": "{global.space.macro.L}", + "type": "spacing", + "description": "Left padding on progressively shown form inputs on radio and checkbox" + }, + "L": { + "value": "{global.space.macro.XL} + {global.space.micro.XS}", + "type": "spacing", + "description": "Left padding on progressively shown form inputs on radio and checkbox" + } + }, + "y": { + "S": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Top and bottom padding on progressively shown form inputs on radio and checkbox" + }, + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Top and bottom padding on progressively shown form inputs on radio and checkbox" + }, + "L": { + "value": "{global.space.micro.L} * 2", + "type": "spacing", + "description": "Top and bottom padding on progressively shown form inputs on radio and checkbox" + } + }, + "yg": { + "S": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Top and bottom padding on progressively shown form inputs on radio and checkbox" + }, + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Top and bottom padding on progressively shown form inputs on radio and checkbox" + }, + "L": { + "value": "{global.space.micro.L} * 2", + "type": "spacing", + "description": "Top and bottom padding on progressively shown form inputs on radio and checkbox" + } + } + } + }, + "rating": { + "xg": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "small gap between rating stars" + }, + "L": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "medium gap between rating stars" + } + } + }, + "layout": { + "stack": { + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Spacing between horizontal and vertical S form components" + }, + "M": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "Spacing between horizontal and vertical M form components" + }, + "L": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Spacing between horizontal and vertical L form components" + } + } + }, + "switch": { + "xg": { + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Space between elements within switch asset" + }, + "L": { + "value": "{global.space.micro.M}", + "type": "spacing", + "description": "Space between elements within switch asset" + } + }, + "handleside": { + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Padding on handle side." + }, + "L": { + "value": "{global.space.micro.M}", + "type": "spacing", + "description": "Padding on handle side." + } + }, + "labelside": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Padding on label side." + }, + "L": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Padding on label side." + } + } + }, + "texteditor": { + "y": { + "S": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Left right padding on input." + }, + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Left right padding on input. Right padding on dropdown option." + }, + "L": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Left right padding on input." + } + }, + "yg": { + "S": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Top bottom padding on input." + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Top bottom padding on input." + }, + "L": { + "value": "{global.space.micro.XL}", + "type": "spacing", + "description": "Top bottom padding on input." + } + }, + "x": { + "S": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Left right padding on input." + }, + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Left right padding on input. Right padding on dropdown option." + }, + "L": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Left right padding on input." + } + }, + "processing": { + "y": { + "S": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Left right padding on input." + }, + "M": { + "value": "{global.space.macro.L}", + "type": "spacing", + "description": "Left right padding on input. Right padding on dropdown option." + }, + "L": { + "value": "{global.space.macro.XL}", + "type": "spacing", + "description": "Left right padding on input." + } + }, + "yg": { + "S": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "padding between cancel and loader" + }, + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "padding between cancel and loader" + }, + "L": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "padding between cancel and loader" + } + }, + "x": { + "S": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Left right padding on input." + }, + "M": { + "value": "{global.space.macro.L}", + "type": "spacing", + "description": "Left right padding on input. Right padding on dropdown option." + }, + "L": { + "value": "{global.space.macro.XL}", + "type": "spacing", + "description": "Left right padding on input." + } + } + } + }, + "password": { + "requirement": { + "xg": { + "S": { + "value": "{global.space.micro.M}", + "type": "spacing" + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing" + }, + "L": { + "value": "{global.space.micro.XL}", + "type": "spacing" + } + }, + "x": { + "S": { + "value": "{global.space.micro.XS}", + "type": "spacing" + }, + "M": { + "value": "{global.space.micro.S}", + "type": "spacing" + }, + "L": { + "value": "{global.space.micro.S}", + "type": "spacing" + } + }, + "y": { + "S": { + "value": "{global.space.micro.XS}", + "type": "spacing" + }, + "M": { + "value": "{global.space.micro.S}", + "type": "spacing" + }, + "L": { + "value": "{global.space.micro.S}", + "type": "spacing" + } + } + } + } + }, + "size": { + "none": { + "value": "{global.size.none}", + "type": "sizing" + }, + "calendar": { + "date": { + "value": "{global.size.macro.M}", + "type": "sizing", + "description": "date buttons" + }, + "day": { + "value": "{global.size.macro.M}", + "type": "sizing", + "description": "day of the week HEIGHT" + }, + "month": { + "value": "{global.size.macro.XXXXL} + {global.size.macro.M}", + "type": "sizing", + "description": "Min width of month dropdown" + }, + "year": { + "value": "{global.size.macro.XXXL}", + "type": "sizing", + "description": "Min width of month dropdown" + }, + "today": { + "width": { + "value": "{global.size.macro.XXS}", + "type": "sizing", + "description": "today indicator" + }, + "height": { + "value": "{global.size.micro.XS}", + "type": "sizing", + "description": "today indicator" + } + } + }, + "checkbox": { + "S": { + "value": "{global.size.macro.XXS}", + "type": "sizing", + "description": "S checkboxes" + }, + "M": { + "value": "{global.size.macro.XS}", + "type": "sizing", + "description": "M checkboxes" + }, + "L": { + "value": "{global.size.macro.S}", + "type": "sizing", + "description": "L checkboxes" + } + }, + "colorpicker": { + "swatch": { + "value": "{global.size.macro.M}", + "type": "sizing", + "description": "width and height of color picker swatch " + }, + "swatchcontainer": { + "value": "{global.size.macro.XXXL} + {global.size.micro.M}", + "type": "sizing", + "description": "width of swatch parent container" + } + }, + "dropdown": { + "item": { + "S": { + "value": "{popover.size.item.S}", + "type": "sizing", + "description": "REF POPOVER. Menu item min height." + }, + "M": { + "value": "{popover.size.item.M}", + "type": "sizing", + "description": "REF POPOVER. Menu item min height." + }, + "L": { + "value": "{popover.size.item.L}", + "type": "sizing", + "description": "REF POPOVER. Menu item min height." + } + }, + "subtle": { + "S": { + "value": "{global.size.macro.M} * 2", + "type": "sizing", + "description": "Min width of subtle dropdown" + }, + "M": { + "value": "{global.size.macro.M} * 2", + "type": "sizing", + "description": "Min width of subtle dropdown" + }, + "L": { + "value": "{global.size.macro.M} * 2", + "type": "sizing", + "description": "Min width of subtle dropdown" + } + } + }, + "fileinput": { + "fileicon": { + "value": "{global.size.macro.S}", + "type": "sizing", + "description": "File input thumbnail icon" + }, + "preview": { + "value": "{global.size.macro.XXXL}", + "type": "sizing", + "description": "File input container for thumbnail, progress, or icon." + } + }, + "icon": { + "S": { + "value": "{global.size.icon.S}", + "type": "sizing", + "description": "Currently for checkbox S only." + }, + "M": { + "value": "{global.size.icon.M}", + "type": "sizing", + "description": "Used for all form icons except for checkbox S and L" + }, + "L": { + "value": "{global.size.icon.L}", + "type": "sizing", + "description": "Currently for checkbox L only." + } + }, + "input": { + "S": { + "value": "{global.size.macro.S}", + "type": "sizing", + "description": "min-height on S inputs" + }, + "M": { + "value": "{global.size.macro.M}", + "type": "sizing", + "description": "Min height on M Inputs and M Dropdowns. Fixed height on Calendar days" + }, + "L": { + "value": "{global.size.macro.L}", + "type": "sizing", + "description": "L Inputs, Color picker square" + }, + "timeinput": { + "S": { + "value": "{global.size.macro.XS} + {global.size.micro.L}", + "type": "sizing", + "description": "Min width for input field." + }, + "M": { + "value": "{global.size.macro.M} + {global.size.micro.XS}", + "type": "sizing", + "description": "Min width for input field." + }, + "L": { + "value": "{global.size.macro.XL}", + "type": "sizing", + "description": "Min width for input field." + } + } + }, + "radio": { + "circle": { + "S": { + "value": "{global.size.macro.XXS}", + "type": "sizing", + "description": "S radios" + }, + "M": { + "value": "{global.size.macro.XS}", + "type": "sizing", + "description": "M radios" + }, + "L": { + "value": "{global.size.macro.S}", + "type": "sizing", + "description": "L radios" + } + }, + "dot": { + "S": { + "value": "{global.size.micro.M}", + "type": "sizing", + "description": "S radio dot" + }, + "M": { + "value": "{global.size.micro.XL}", + "type": "sizing", + "description": "M radio dot" + }, + "L": { + "value": "{global.size.micro.XXL}", + "type": "sizing", + "description": "L radio dot" + } + } + }, + "switch": { + "container": { + "height": { + "M": { + "value": "{global.size.macro.XS}", + "type": "sizing", + "description": "Switch container height for medium" + }, + "L": { + "value": "{global.size.macro.M}", + "type": "sizing", + "description": "Switch container height for large" + } + }, + "width": { + "M": { + "value": "{global.size.macro.M}", + "type": "sizing", + "description": "Switch container width for medium" + }, + "L": { + "value": "{global.size.macro.XXXL}", + "type": "sizing", + "description": "Switch container width for large" + } + } + }, + "handle": { + "M": { + "value": "{global.size.macro.XXS}", + "type": "sizing", + "description": "S switch knob" + }, + "L": { + "value": "{global.size.macro.XS} + {global.size.micro.XS}", + "type": "sizing", + "description": "L switch knob" + }, + "icon": { + "M": { + "value": "{global.size.icon.S} - {global.size.micro.XS}", + "type": "sizing", + "description": "S switch knob" + }, + "L": { + "value": "{global.size.icon.M}", + "type": "sizing", + "description": "L switch icon inside knob" + } + } + } + }, + "textarea": { + "M": { + "value": "{global.size.macro.M} * 2", + "type": "sizing", + "description": "Min height for all text area sizes." + } + }, + "validation": { + "bar": { + "value": "{global.size.micro.XXS}", + "type": "sizing", + "description": "2px validation bar used on errors and warnings" + } + }, + "rating": { + "M": { + "value": "{global.size.icon.M}", + "type": "sizing", + "description": "medium rating stars" + }, + "L": { + "value": "{global.size.icon.XL}", + "type": "sizing", + "description": "large rating stars" + } + } + }, + "color": { + "calendar": { + "bg-active": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color" + }, + "bg-disabled": { + "value": "{modes.color.interactive.inactive.defaultAlt}", + "type": "color" + }, + "bg-duration": { + "value": "{modes.color.interactive.dataEntry.hoverAlt}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.monochrome.generic.hoverAlt}", + "type": "color" + }, + "border-duration": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color" + }, + "text-active": { + "value": "{modes.color.interactive.monochrome.generic.withActive}", + "type": "color" + }, + "text-alt": { + "value": "{modes.color.interactive.dataEntry.contentAlt}", + "type": "color", + "description": "Days of the week subheaders" + }, + "text-disabled": { + "value": "{modes.color.interactive.inactive.content}", + "type": "color" + }, + "text-duration": { + "value": "{modes.color.interactive.dataEntry.content}", + "type": "color" + }, + "text-enabled": { + "value": "{modes.color.interactive.dataEntry.content}", + "type": "color" + }, + "text-hover": { + "value": "{modes.color.interactive.monochrome.generic.withHover}", + "type": "color" + }, + "textAlt-enabled": { + "value": "{modes.color.interactive.dataEntry.contentAlt}", + "type": "color" + } + }, + "dropdown": { + "bg-hover": { + "value": "{popover.color.bg-hover}", + "type": "color", + "description": "REF POPOVER " + }, + "label-active": { + "value": "{modes.color.interactive.monochrome.generic.withActive}", + "type": "color" + }, + "label-alt": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + }, + "label-disabled": { + "value": "{modes.color.interactive.inactive.content}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.monochrome.generic.defaultAlt}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.generic.withHover}", + "type": "color" + } + }, + "labelset": { + "label-required": { + "value": "{modes.color.interactive.danger.default}", + "type": "color" + }, + "label-default": { + "value": "{modes.color.interactive.dataEntry.content}", + "type": "color" + }, + "label-alt": { + "value": "{modes.color.interactive.dataEntry.contentAlt}", + "type": "color", + "description": "used for '(optional)' text and hint text." + }, + "label-disabled": { + "value": "{modes.color.interactive.inactive.content}", + "type": "color" + }, + "label-readOnly": { + "value": "{modes.color.interactive.dataEntry.content}", + "type": "color" + } + }, + "typical": { + "bg-alt": { + "value": "{modes.color.interactive.dataEntry.defaultAlt}", + "type": "color", + "description": "progress bar bg, text editor preview and text editor footer" + }, + "bg-disabled": { + "value": "{modes.color.interactive.inactive.defaultAlt}", + "type": "color" + }, + "bg-default": { + "value": "{modes.color.interactive.dataEntry.default}", + "type": "color" + }, + "bg-enabled": { + "value": "{modes.color.interactive.dataEntry.default}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.dataEntry.hoverAlt}", + "type": "color" + }, + "bg-readOnly": { + "value": "{modes.color.interactive.inactive.defaultAlt}", + "type": "color" + }, + "border-alt": { + "value": "{modes.color.interactive.inactive.default}", + "type": "color" + }, + "border-enabled": { + "value": "{modes.color.interactive.dataEntry.withDefault}", + "type": "color" + }, + "border-disabled": { + "value": "{modes.color.interactive.inactive.default}", + "type": "color" + }, + "border-hover": { + "value": "{modes.color.interactive.dataEntry.withHover}", + "type": "color", + "description": "File input draggable border state" + }, + "border-readOnly": { + "value": "{modes.color.interactive.inactive.default}", + "type": "color" + }, + "icon-active": { + "value": "{modes.color.interactive.dataEntry.withActive}", + "type": "color", + "description": "used on tick in color picker and selected tick on dropdowns" + }, + "icon-default": { + "value": "{modes.color.interactive.dataEntry.content}", + "type": "color" + }, + "icon-disabled": { + "value": "{modes.color.interactive.inactive.icon}", + "type": "color" + }, + "icon-enabled": { + "value": "{modes.color.interactive.dataEntry.content}", + "type": "color" + }, + "icon-hover": { + "value": "{modes.color.interactive.dataEntry.withHover}", + "type": "color" + }, + "icon-readOnly": { + "value": "{modes.color.interactive.inactive.iconAlt}", + "type": "color" + }, + "iconAlt-active": { + "value": "{modes.color.interactive.dataEntry.withActiveAlt}", + "type": "color", + "description": "used on tick in color picker" + }, + "text-active": { + "value": "{modes.color.interactive.dataEntry.content}", + "type": "color" + }, + "text-alt": { + "value": "{modes.color.interactive.dataEntry.contentAlt}", + "type": "color" + }, + "text-default": { + "value": "{modes.color.interactive.dataEntry.content}", + "type": "color" + }, + "text-disabled": { + "value": "{modes.color.interactive.inactive.content}", + "type": "color" + }, + "text-enabled": { + "value": "{modes.color.interactive.dataEntry.content}", + "type": "color", + "description": "Dropdown text (subtle dropdown)." + }, + "text-hover": { + "value": "{modes.color.interactive.dataEntry.withHover}", + "type": "color", + "description": "text hover state when dragging a file over file input" + }, + "text-readOnly": { + "value": "{modes.color.generic.content.harsh}", + "type": "color" + } + }, + "switch": { + "bg-active": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color" + }, + "bg-activedisabled": { + "value": "{modes.color.interactive.inactive.default}", + "type": "color" + }, + "bg-disabled": { + "value": "{modes.color.interactive.inactive.defaultAlt}", + "type": "color", + "description": "for switch" + }, + "bg-enabled": { + "value": "{modes.color.interactive.dataEntry.default}", + "type": "color", + "description": "for switch" + }, + "border-active": { + "value": "transparent", + "type": "color" + }, + "border-activedisabled": { + "value": "transparent", + "type": "color" + }, + "border-disabled": { + "value": "{modes.color.interactive.inactive.default}", + "type": "color" + }, + "border-enabled": { + "value": "{modes.color.interactive.monochrome.subtle.defaultAlt}", + "type": "color" + }, + "fg-active": { + "value": "{modes.color.interactive.monochrome.generic.withActive}", + "type": "color" + }, + "fg-activedisabled": { + "value": "{modes.color.interactive.inactive.contentAlt}", + "type": "color" + }, + "fg-disabled": { + "value": "{modes.color.interactive.inactive.default}", + "type": "color" + }, + "fg-enabled": { + "value": "{modes.color.interactive.monochrome.subtle.defaultAlt}", + "type": "color" + }, + "label-active": { + "value": "{modes.color.interactive.dataEntry.content}", + "type": "color" + }, + "label-activedisabled": { + "value": "{modes.color.interactive.inactive.default}", + "type": "color" + }, + "label-disabled": { + "value": "{modes.color.interactive.inactive.default}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.dataEntry.contentAlt}", + "type": "color" + }, + "icon-enabled": { + "value": "{modes.color.interactive.dataEntry.contentAlt}", + "type": "color" + } + }, + "validation": { + "border-error": { + "value": "{modes.color.status.negative.alt}", + "type": "color" + }, + "bar-error": { + "value": "{modes.color.status.negative.alt}", + "type": "color", + "description": "error bar to left of inputs" + }, + "bar-warning": { + "value": "{modes.color.status.caution.alt}", + "type": "color", + "description": "warning bar to left of inputs" + }, + "label-error": { + "value": "{modes.color.status.negative.text}", + "type": "color" + }, + "label-success": { + "value": "{modes.color.status.positive.alt}", + "type": "color" + }, + "label-warning": { + "value": "{modes.color.status.caution.text}", + "type": "color" + } + } + }, + "radius": { + "none": { + "value": "{global.radius.none}", + "type": "borderRadius", + "description": "Text editor (internal corners)" + }, + "checkbox": { + "value": "{global.radius.interactive.S}", + "type": "borderRadius", + "description": "S and M checkbox" + }, + "texteditorfooter": { + "value": "{global.radius.interactive.S}", + "type": "borderRadius", + "description": "AI text editor footer" + }, + "colorpicker": { + "value": "{global.radius.circle}", + "type": "borderRadius", + "description": "Color picker (swatch container), " + }, + "dropdown": { + "value": "{popover.radius.container}", + "type": "borderRadius", + "description": "REF POPOVER. Popover container." + }, + "fileupload": { + "value": "{global.radius.container.M}", + "type": "borderRadius", + "description": "File input (file uploads)" + }, + "fileselector": { + "value": "{global.radius.container.M}", + "type": "borderRadius", + "description": "File preview (file selector asset)" + }, + "input": { + "value": "{global.radius.interactive.M}", + "type": "borderRadius", + "description": "Date picker input, Date range input, Dropdown select (trigger), Search, File input (draggable area), Text area, Text input" + }, + "radio": { + "value": "{global.radius.circle}", + "type": "borderRadius", + "description": "Radio button" + }, + "switch": { + "value": "{global.radius.circle}", + "type": "borderRadius", + "description": "Switch container and handle" + }, + "validationbar": { + "value": "{global.radius.interactive.XS}", + "type": "borderRadius", + "description": "Validation bar" + }, + "calendar": { + "none": { + "value": "{global.radius.none}", + "type": "borderRadius", + "description": "Calendar (start and end duration)" + }, + "date": { + "value": "{global.radius.circle}", + "type": "borderRadius", + "description": "Calendar date (hover & selected), " + }, + "today": { + "value": "{global.radius.container.XS}", + "type": "borderRadius", + "description": "Calendar (today indicator)" + } + } + }, + "borderwidth": { + "colorpicker": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "swatch border" + }, + "caution": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Caution border" + }, + "dragover": { + "value": "{global.borderwidth.S}", + "type": "borderWidth", + "description": "File upload (drag over state)" + }, + "ratingstar": { + "value": "{global.borderwidth.S}", + "type": "borderWidth", + "description": "empty rating star border width" + }, + "error": { + "value": "{global.borderwidth.S}", + "type": "borderWidth", + "description": "Error border" + }, + "fileupload": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "File input (file uploads)" + }, + "input": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Input border" + }, + "searchunderline": { + "value": "{global.borderwidth.S}", + "type": "borderWidth", + "description": "Search (without button variant)" + }, + "switch": { + "value": "{global.borderwidth.S}", + "type": "borderWidth", + "description": "Switch" + }, + "tile": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Tile border" + }, + "calendar": { + "duration": { + "value": "{global.borderwidth.S}", + "type": "borderWidth", + "description": "Calendar (duration date top and bottom borders)" + } + }, + "divider": { + "item": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Dropdown menu (item divider)" + } + } + }, + "boxshadow": { + "dropdown": { + "value": "{popover.boxshadow.container}", + "type": "boxShadow", + "description": "REF POPOVER. popover container" + } + }, + "typography": { + "adaptive": { + "label": { + "S": { + "value": "{global.typography.adaptive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.firm.L}", + "type": "typography" + } + }, + "default": { + "S": { + "value": "{global.typography.adaptive.component.moderate.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.moderate.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.moderate.L}", + "type": "typography" + } + } + }, + "responsive": { + "label": { + "S": { + "value": "{global.typography.responsive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.firm.L}", + "type": "typography" + } + }, + "default": { + "S": { + "value": "{global.typography.responsive.component.moderate.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.moderate.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.moderate.L}", + "type": "typography" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/components/link.json b/data/tokens/components/link.json new file mode 100644 index 00000000..47498139 --- /dev/null +++ b/data/tokens/components/link.json @@ -0,0 +1,162 @@ +{ + "link": { + "color": { + "destructive": { + "label-default": { + "value": "{modes.color.interactive.danger.defaultAlt}", + "type": "color", + "description": "." + }, + "label-hover": { + "value": "{modes.color.interactive.danger.hoverAlt2}", + "type": "color" + } + }, + "typical": { + "label-default": { + "value": "{modes.color.interactive.primary.defaultAlt}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.primary.hoverAlt}", + "type": "color" + } + }, + "subtle": { + "label-default": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color" + } + } + }, + "size": { + "skiplink": { + "M": { + "value": "{global.size.macro.M}", + "type": "sizing" + } + }, + "icon": { + "M": { + "value": "{global.size.icon.M}", + "type": "sizing" + } + } + }, + "radius": { + "link": { + "value": "{global.radius.interactive.XS}", + "type": "borderRadius", + "description": "Link (focus bg and bottom corners of focus underline)" + }, + "skiplink": { + "value": "{global.radius.interactive.M}", + "type": "borderRadius", + "description": "Skiplink (right corners of focus bg and border)" + } + }, + "space": { + "integral": { + "xg": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Space between icon and link text." + }, + "L": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Space between icon and link text." + } + } + }, + "skiplink": { + "x": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Skiplink container" + }, + "y": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Skiplink container" + } + } + }, + "boxshadow": { + "skiplink": { + "value": "{global.boxshadow.container.near}", + "type": "boxShadow" + } + }, + "typography": { + "responsive": { + "default": { + "S": { + "value": "{global.typography.responsive.component.underlined.moderate.S}", + "type": "typography", + "description": "Small Viewports: 14.81, Large Viewports: 13.79. Match token size to component size." + }, + "M": { + "value": "{global.typography.responsive.component.underlined.moderate.M}", + "type": "typography", + "description": "Small Viewports: 16, Large Viewports: 16. Match token size to component size." + }, + "L": { + "value": "{global.typography.responsive.component.underlined.moderate.L}", + "type": "typography", + "description": "Small Viewports: 17.28, Large Viewports: 18.56. Match token size to component size." + } + }, + "heading": { + "S": { + "value": "{global.typography.responsive.component.underlined.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.underlined.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.underlined.firm.L}", + "type": "typography" + } + } + }, + "adaptive": { + "default": { + "S": { + "value": "{global.typography.adaptive.component.underlined.moderate.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.underlined.moderate.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.underlined.moderate.L}", + "type": "typography" + } + }, + "heading": { + "S": { + "value": "{global.typography.adaptive.component.underlined.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.underlined.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.underlined.firm.L}", + "type": "typography" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/components/logo.json b/data/tokens/components/logo.json new file mode 100644 index 00000000..e03c361c --- /dev/null +++ b/data/tokens/components/logo.json @@ -0,0 +1,94 @@ +{ + "logo": { + "color": { + "sage": { + "bg-default": { + "value": "{modes.color.brand.default}", + "type": "color", + "description": "sage logo" + }, + "bg-alt": { + "value": "{modes.color.brand.defaultAlt}", + "type": "color" + } + }, + "trust": { + "bg-default": { + "value": "{modes.color.status.positive.alt}", + "type": "color", + "description": "filled" + }, + "outline": { + "value": "{modes.color.generic.content.extreme}", + "type": "color" + } + }, + "copilot": { + "noBg": { + "bg-S": { + "value": "{modes.color.brand.copilot.noBg.S}", + "type": "color" + }, + "bg-star": { + "value": "{modes.color.brand.copilot.noBg.star}", + "type": "color" + }, + "fg-default": { + "value": "{modes.color.brand.copilot.noBg.mono}", + "type": "color" + } + }, + "withBg": { + "bg-S": { + "value": "{modes.color.brand.copilot.withBg.S}", + "type": "color" + }, + "bg-star": { + "value": "{modes.color.brand.copilot.withBg.star}", + "type": "color" + }, + "bg-default": { + "value": "{modes.color.brand.copilot.withBg.bg}", + "type": "color" + } + } + }, + "AIIdentifier": { + "bg-star": { + "value": "{modes.color.brand.copilot.AIIdentifier.default}", + "type": "color", + "description": "star bg color" + }, + "bg-dot": { + "value": "{modes.color.brand.copilot.AIIdentifier.withDefault}", + "type": "color" + }, + "outline": { + "value": "{modes.color.brand.copilot.AIIdentifier.default}", + "type": "color", + "description": "star outline variant" + } + } + }, + "size": { + "AI": { + "M": { + "value": "14px", + "type": "sizing", + "description": "AI star" + } + } + }, + "space": { + "AI": { + "xg": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Space between star icon and text" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/components/nav.json b/data/tokens/components/nav.json new file mode 100644 index 00000000..c531a0b3 --- /dev/null +++ b/data/tokens/components/nav.json @@ -0,0 +1,409 @@ +{ + "nav": { + "color": { + "bg-default": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "description": "nav bar bg" + }, + "item": { + "bg-active": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color" + }, + "bg-activealt": { + "value": "{modes.color.interactive.monochrome.generic.hoverAlt}", + "type": "color" + }, + "bg-enabled": { + "value": "{modes.color.none}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.monochrome.generic.hoverAlt}", + "type": "color" + }, + "label-active": { + "value": "{modes.color.interactive.monochrome.generic.withActive}", + "type": "color" + }, + "label-activealt": { + "value": "{modes.color.interactive.monochrome.generic.withHover}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.generic.withHover}", + "type": "color" + }, + "label-alt": { + "value": "{modes.color.interactive.monochrome.generic.defaultAlt}", + "type": "color" + } + }, + "menu": { + "bg-default": { + "value": "{modes.color.generic.bg.faint}", + "type": "color", + "description": "menu (level 1) nav bg" + }, + "bg-alt": { + "value": "{modes.color.generic.bg.delicate}", + "type": "color", + "description": "level 2 nav bg" + }, + "bg-alt2": { + "value": "{modes.color.generic.bg.soft}", + "type": "color", + "description": "level 3 nav bg" + }, + "border-default": { + "value": "{modes.color.generic.fg.delicate}", + "type": "color", + "description": "level 1 border" + } + } + }, + "radius": { + "menu": { + "value": "{global.radius.interactive.M}", + "type": "borderRadius", + "description": "Drop list bottom corners, product popout list all corners" + }, + "menuitem": { + "value": "{global.radius.interactive.S}", + "type": "borderRadius", + "description": "Menu (menu item state bg shape), " + }, + "menumodal": { + "value": "{global.radius.interactive.L}", + "type": "borderRadius", + "description": "Menu on mobile" + } + }, + "boxshadow": { + "menu": { + "value": "{global.boxshadow.cleanedge.near}", + "type": "boxShadow", + "description": "Menu" + } + }, + "borderwidth": { + "divider": { + "item": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Menu (option divider)" + }, + "menu": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "level 1 border" + }, + "segment": { + "value": "{global.borderwidth.L}", + "type": "borderWidth", + "description": "Menu (segment divider)" + } + } + }, + "size": { + "menu": { + "content": { + "y": { + "M": { + "value": "{global.size.macro.S}", + "type": "sizing", + "description": "Min height of menu content" + } + }, + "icon": { + "M": { + "value": "{global.size.icon.M}", + "type": "sizing", + "description": "Icon size" + }, + "L": { + "value": "{global.size.icon.L}", + "type": "sizing", + "description": "Icon size" + } + } + }, + "option": { + "x": { + "M": { + "value": "{global.size.flex.M}", + "type": "sizing", + "description": "Min width of options" + } + }, + "y": { + "M": { + "value": "{global.size.macro.M}", + "type": "sizing", + "description": "Min height of menu option" + } + } + } + }, + "navbar": { + "content": { + "y": { + "M": { + "value": "{global.size.macro.S}", + "type": "sizing", + "description": "Min height of nav content" + } + }, + "icon": { + "M": { + "value": "{global.size.icon.M}", + "type": "sizing", + "description": "Chevron and caret icons" + }, + "L": { + "value": "{global.size.icon.L}", + "type": "sizing", + "description": "Icon size" + } + } + }, + "item": { + "x": { + "M": { + "value": "{global.size.flex.M}", + "type": "sizing", + "description": "Max width of nav item" + } + }, + "y": { + "M": { + "value": "{global.size.macro.M}", + "type": "sizing", + "description": "Min height of nav item" + } + } + } + } + }, + "space": { + "menu": { + "container": { + "x": { + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Horizontal space on menu complex and menu items wrapper in sidebar menu" + } + }, + "y": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Vertical space on mobile menu items" + } + } + }, + "content": { + "x": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Horizontal space on content within menu item" + }, + "L": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Left padding for indented content in options" + } + }, + "xg": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Space between content elements within menu item" + } + }, + "y": { + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Vertical space on content within menu item" + } + } + }, + "item": { + "x": { + "S": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Horizontal space on menu option complex, small screen option" + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Horizontal space on nav menu item" + } + }, + "y": { + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Vertical space on nav menu item" + } + }, + "yg": { + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Space between menu item and submenu" + } + } + } + }, + "navbar": { + "x": { + "M": { + "value": "{global.space.macro.M}", + "type": "spacing" + } + }, + "y": { + "M": { + "value": "{global.space.micro.XS}", + "type": "spacing", + "description": "Vertical padding on nav bar" + } + }, + "content": { + "x": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Horizontal space in content within nav item" + } + }, + "xg": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Gap between content elements within nav item" + } + }, + "y": { + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Vertical space in content within nav item" + } + } + }, + "item": { + "x": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Horizontal space in nav item" + } + }, + "y": { + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Vertical space in nav item" + } + } + }, + "logo": { + "x": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Horizontal space around logo" + } + }, + "xg": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Gap between logo and divider" + } + }, + "y": { + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Top padding on logo" + } + } + } + } + }, + "typography": { + "adaptive": { + "label": { + "S": { + "value": "{global.typography.adaptive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.firm.L}", + "type": "typography" + } + }, + "default": { + "S": { + "value": "{global.typography.adaptive.component.moderate.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.moderate.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.moderate.L}", + "type": "typography" + } + } + }, + "responsive": { + "label": { + "S": { + "value": "{global.typography.responsive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.firm.L}", + "type": "typography" + } + }, + "default": { + "S": { + "value": "{global.typography.responsive.component.moderate.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.moderate.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.moderate.L}", + "type": "typography" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/components/page.json b/data/tokens/components/page.json new file mode 100644 index 00000000..7bcebaa4 --- /dev/null +++ b/data/tokens/components/page.json @@ -0,0 +1,216 @@ +{ + "page": { + "space": { + "none": { + "value": "{global.space.none}", + "type": "spacing" + }, + "x": { + "XXXS": { + "value": "{global.space.macro.XS} / 4", + "type": "spacing" + }, + "XXS": { + "value": "{global.space.macro.XS} / 2", + "type": "spacing" + }, + "XS": { + "value": "{global.space.macro.XS}", + "type": "spacing" + }, + "S": { + "value": "{global.space.macro.M}", + "type": "spacing" + }, + "M": { + "value": "{global.space.macro.L}", + "type": "spacing" + }, + "L": { + "value": "{global.space.macro.XL}", + "type": "spacing" + }, + "XL": { + "value": "{global.space.macro.XL} * 2", + "type": "spacing" + } + }, + "xg": { + "XXXS": { + "value": "{global.space.macro.XS} / 4", + "type": "spacing" + }, + "XXS": { + "value": "{global.space.macro.XS} / 2", + "type": "spacing" + }, + "XS": { + "value": "{global.space.macro.XS}", + "type": "spacing" + }, + "S": { + "value": "{global.space.macro.M}", + "type": "spacing" + }, + "M": { + "value": "{global.space.macro.L}", + "type": "spacing" + }, + "L": { + "value": "{global.space.macro.XL}", + "type": "spacing" + }, + "XL": { + "value": "{global.space.macro.XL} * 2", + "type": "spacing" + } + }, + "yg": { + "XXXS": { + "value": "{global.space.macro.XS} / 4", + "type": "spacing" + }, + "XXS": { + "value": "{global.space.macro.XS} / 2", + "type": "spacing" + }, + "XS": { + "value": "{global.space.macro.XS}", + "type": "spacing" + }, + "S": { + "value": "{global.space.macro.M}", + "type": "spacing" + }, + "M": { + "value": "{global.space.macro.L}", + "type": "spacing" + }, + "L": { + "value": "{global.space.macro.XL}", + "type": "spacing" + }, + "XL": { + "value": "{global.space.macro.XL} * 2", + "type": "spacing" + } + }, + "y": { + "XXXS": { + "value": "{global.space.macro.XS} / 4", + "type": "spacing" + }, + "XXS": { + "value": "{global.space.macro.XS} / 2", + "type": "spacing" + }, + "XS": { + "value": "{global.space.macro.XS}", + "type": "spacing" + }, + "S": { + "value": "{global.space.macro.M}", + "type": "spacing" + }, + "M": { + "value": "{global.space.macro.L}", + "type": "spacing" + }, + "L": { + "value": "{global.space.macro.XL}", + "type": "spacing" + }, + "XL": { + "value": "{global.space.macro.XL} * 2", + "type": "spacing" + } + } + }, + "color": { + "bg-default": { + "value": "{modes.color.generic.backdrop.nought}", + "type": "color" + }, + "bg-alt": { + "value": "{modes.color.generic.backdrop.faint}", + "type": "color" + }, + "text-alt": { + "value": "{modes.color.generic.content.moderate}", + "type": "color", + "description": "for subheadings etc" + }, + "text-default": { + "value": "{modes.color.generic.content.harsh}", + "type": "color", + "description": "for headings, paragraph text etc " + } + }, + "typography": { + "responsive": { + "H1": { + "value": "{global.typography.responsive.heading.L}", + "type": "typography" + }, + "H2": { + "value": "{global.typography.responsive.heading.M}", + "type": "typography" + }, + "H3": { + "value": "{global.typography.responsive.heading.S}", + "type": "typography" + }, + "H4": { + "value": "{global.typography.responsive.subheading.L}", + "type": "typography" + }, + "H5": { + "value": "{global.typography.responsive.subheading.M}", + "type": "typography" + }, + "p": { + "typical": { + "value": "{global.typography.responsive.body.S}", + "type": "typography" + }, + "large": { + "value": "{global.typography.responsive.body.S}", + "type": "typography" + } + } + }, + "adaptive": { + "H1": { + "value": "{global.typography.adaptive.heading.L}", + "type": "typography" + }, + "H2": { + "value": "{global.typography.adaptive.heading.M}", + "type": "typography" + }, + "H3": { + "value": "{global.typography.adaptive.heading.S}", + "type": "typography" + }, + "H4": { + "value": "{global.typography.adaptive.subheading.L}", + "type": "typography" + }, + "H5": { + "value": "{global.typography.adaptive.subheading.M}", + "type": "typography" + }, + "p": { + "typical": { + "value": "{global.typography.adaptive.body.S}", + "type": "typography" + }, + "large": { + "value": "{global.typography.adaptive.body.S}", + "type": "typography" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/components/popover.json b/data/tokens/components/popover.json new file mode 100644 index 00000000..e730fbb5 --- /dev/null +++ b/data/tokens/components/popover.json @@ -0,0 +1,274 @@ +{ + "popover": { + "size": { + "icon": { + "M": { + "value": "{global.size.icon.M}", + "type": "sizing" + } + }, + "item": { + "S": { + "value": "{global.size.macro.S}", + "type": "sizing", + "description": "REF'D IN FORM. Menu item min height." + }, + "M": { + "value": "{global.size.macro.M}", + "type": "sizing", + "description": "REF'D IN FORM. Menu item min height." + }, + "L": { + "value": "{global.size.macro.L}", + "type": "sizing", + "description": "REF'D IN FORM. Menu item min height." + } + } + }, + "radius": { + "none": { + "value": "{global.radius.none}", + "type": "borderRadius", + "description": "Navigation menu top corners" + }, + "container": { + "value": "{global.radius.container.M}", + "type": "borderRadius", + "description": "REF'D IN FORM. Menu container." + }, + "optionfocus": { + "value": "{global.radius.container.M}", + "type": "borderRadius", + "description": "Popover menu option focus" + } + }, + "boxshadow": { + "container": { + "value": "{global.boxshadow.container.near}", + "type": "boxShadow", + "description": "REF'D IN FORM. Popover container for Button popover, Button split, (and Form calendar, color picker, dropdown) " + } + }, + "space": { + "menu": { + "y": { + "S": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "REF'D IN FORM. Top and bottom padding on popover menu container." + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "REF'D IN FORM. Top and bottom padding on popover menu container" + }, + "L": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "REF'D IN FORM. Top and bottom padding on popover menu container" + } + }, + "yg": { + "S": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Space between trigger and menu card." + }, + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Space between trigger and menu card." + }, + "L": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Space between trigger and menu card." + } + } + }, + "option": { + "x": { + "S": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "REF'D in FORM. Right left padding on popover option." + }, + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "REF'D in FORM. Right left padding on popover option." + }, + "L": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "REF'D in FORM. Right left padding on popover option." + } + }, + "xg": { + "S": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Gap between left icon and menu button label" + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Gap between left icon and menu button label" + }, + "L": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Gap between left icon and menu button label" + } + }, + "y": { + "S": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "REF'D in FORM. Vertical padding on popover option." + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "REF'D in FORM. Vertical padding on popover option." + }, + "L": { + "value": "{global.space.micro.XL}", + "type": "spacing", + "description": "REF'D in FORM. Vertical padding on popover option." + } + } + }, + "submenu": { + "x": { + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Right left padding on small screen submenu popover container." + }, + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Right left padding on small screen submenu popover container." + }, + "L": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Right left padding on small screen submenu popover container." + } + } + } + }, + "color": { + "bg-active": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color", + "description": "previously action minor 850" + }, + "bg-activealt": { + "value": "{modes.color.interactive.monochrome.generic.hoverAlt}", + "type": "color", + "description": "REF'D IN FORM. " + }, + "bg-default": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "description": "REF'D IN FORM. Popover container bg" + }, + "bg-hover": { + "value": "{modes.color.interactive.monochrome.generic.hoverAlt}", + "type": "color", + "description": "REF'D IN FORM. " + }, + "label-active": { + "value": "{modes.color.interactive.monochrome.generic.withActive}", + "type": "color" + }, + "label-activealt": { + "value": "{modes.color.interactive.monochrome.generic.withHover}", + "type": "color" + }, + "label-disabled": { + "value": "{modes.color.interactive.inactive.content}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.generic.withHover}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.monochrome.generic.defaultAlt}", + "type": "color" + }, + "submenu": { + "bg-default": { + "value": "{modes.color.generic.bg.faint}", + "type": "color", + "description": "popover small screen submenu container bg" + } + } + }, + "typography": { + "adaptive": { + "label": { + "S": { + "value": "{global.typography.adaptive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.firm.L}", + "type": "typography" + } + }, + "default": { + "S": { + "value": "{global.typography.adaptive.component.moderate.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.moderate.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.moderate.L}", + "type": "typography" + } + } + }, + "responsive": { + "label": { + "S": { + "value": "{global.typography.responsive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.firm.L}", + "type": "typography" + } + }, + "default": { + "S": { + "value": "{global.typography.responsive.component.moderate.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.moderate.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.moderate.L}", + "type": "typography" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/components/profile.json b/data/tokens/components/profile.json new file mode 100644 index 00000000..f29d8127 --- /dev/null +++ b/data/tokens/components/profile.json @@ -0,0 +1,332 @@ +{ + "profile": { + "size": { + "profileeditor": { + "value": "{global.size.macro.S} * 10", + "type": "sizing", + "description": "size of the circle inside the profile editor component" + }, + "outside": { + "XS": { + "value": "{global.size.macro.XS}", + "type": "sizing", + "description": "XS Portraits" + }, + "S": { + "value": "{global.size.macro.S}", + "type": "sizing", + "description": "S Portraits" + }, + "M": { + "value": "{global.size.macro.M}", + "type": "sizing", + "description": "M Portraits" + }, + "ML": { + "value": "{global.size.macro.XL}", + "type": "sizing", + "description": "L Portraits" + }, + "L": { + "value": "{global.size.macro.XS} * 3", + "type": "sizing", + "description": "XL Portraits" + }, + "XL": { + "value": "{global.size.micro.M} * 13", + "type": "sizing", + "description": "XL Portraits" + }, + "XXL": { + "value": "{global.size.macro.S} * 4", + "type": "sizing", + "description": "XXL Portraits" + } + }, + "inside": { + "XS": { + "value": "{global.size.micro.XL}", + "type": "sizing", + "description": "XS Portrait icons" + }, + "S": { + "value": "{global.size.macro.XXS}", + "type": "sizing", + "description": "S Portrait icons" + }, + "M": { + "value": "{global.size.macro.XS} - {global.size.micro.XS}", + "type": "sizing", + "description": "M Portrait icons" + }, + "ML": { + "value": "{global.size.macro.XS} + {global.size.micro.XS}", + "type": "sizing", + "description": "L Portrait icons" + }, + "L": { + "value": "{global.size.macro.M}", + "type": "sizing", + "description": "XL Portrait icons" + }, + "XL": { + "value": "{global.size.macro.XL}", + "type": "sizing", + "description": "XL Portrait icons" + }, + "XXL": { + "value": "{global.size.micro.M} * 13", + "type": "sizing", + "description": "XXL Portraits" + } + } + }, + "color": { + "bg-alt": { + "value": "{modes.color.generic.content.harsh}", + "type": "color", + "description": "For portrait image" + }, + "bg-default": { + "value": "{modes.color.generic.bg.faint}", + "type": "color" + }, + "border-default": { + "value": "{modes.color.generic.fg.delicate}", + "type": "color" + }, + "label-default": { + "value": "{modes.color.generic.content.harsh}", + "type": "color" + } + }, + "radius": { + "portrait": { + "value": "{global.radius.circle}", + "type": "borderRadius", + "description": "Portrait" + } + }, + "space": { + "none": { + "value": "{global.space.none}", + "type": "spacing" + }, + "x": { + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "gap between avatar and name" + }, + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "gap between avatar and name" + }, + "ML": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "gap between avatar and name" + }, + "L": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "gap between avatar and name" + }, + "XL": { + "value": "{global.space.macro.L}", + "type": "spacing", + "description": "gap between avatar and name" + }, + "XXL": { + "value": "{global.space.macro.XL}", + "type": "spacing", + "description": "gap between avatar and name" + } + } + }, + "borderwidth": { + "portrait": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Border thickness on portrait." + } + }, + "typography": { + "adaptive": { + "initials": { + "XS": { + "value": "{global.typography.adaptive.component.placeholdertext.XS}", + "type": "typography" + }, + "S": { + "value": "{global.typography.adaptive.component.placeholdertext.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.placeholdertext.M}", + "type": "typography" + }, + "ML": { + "value": "{global.typography.adaptive.component.placeholdertext.ML}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.placeholdertext.L}", + "type": "typography" + }, + "XL": { + "value": "{global.typography.adaptive.component.placeholdertext.XL}", + "type": "typography" + }, + "XXL": { + "value": "{global.typography.adaptive.component.placeholdertext.XXL}", + "type": "typography" + } + }, + "default": { + "S": { + "value": "{global.typography.adaptive.component.moderate.M}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.moderate.M}", + "type": "typography" + }, + "ML": { + "value": "{global.typography.adaptive.component.moderate.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.moderate.L}", + "type": "typography" + }, + "XL": { + "value": "{global.typography.adaptive.component.moderate.L}", + "type": "typography" + }, + "XXL": { + "value": "{global.typography.adaptive.component.moderate.L}", + "type": "typography" + } + }, + "heading": { + "S": { + "value": "{global.typography.adaptive.component.firm.M}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.subheading.L}", + "type": "typography" + }, + "ML": { + "value": "{global.typography.adaptive.subheading.L}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.subheading.L}", + "type": "typography" + }, + "XL": { + "value": "{global.typography.adaptive.subheading.L}", + "type": "typography" + }, + "XXL": { + "value": "{global.typography.adaptive.subheading.L}", + "type": "typography" + } + } + }, + "responsive": { + "initials": { + "XS": { + "value": "{global.typography.responsive.component.placeholdertext.XS}", + "type": "typography" + }, + "S": { + "value": "{global.typography.responsive.component.placeholdertext.S}", + "type": "typography", + "description": "Small Viewports: 16, Large Viewports: 16" + }, + "M": { + "value": "{global.typography.responsive.component.placeholdertext.M}", + "type": "typography", + "description": "Small Viewports: 18.66, Large Viewports: 21.53" + }, + "ML": { + "value": "{global.typography.responsive.component.placeholdertext.ML}", + "type": "typography", + "description": "Small Viewports: 21.77, Large Viewports: 28.97" + }, + "L": { + "value": "{global.typography.responsive.component.placeholdertext.L}", + "type": "typography", + "description": "Small Viewports: 25.39, Large Viewports: 38.98" + }, + "XL": { + "value": "{global.typography.responsive.component.placeholdertext.XL}", + "type": "typography", + "description": "Small Viewports: 29.61, Large Viewports: 52.45" + }, + "XXL": { + "value": "{global.typography.responsive.component.placeholdertext.XXL}", + "type": "typography", + "description": "Small Viewports: 34.54, Large Viewports: 70.58" + } + }, + "default": { + "S": { + "value": "{global.typography.responsive.component.moderate.M}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.moderate.M}", + "type": "typography" + }, + "ML": { + "value": "{global.typography.responsive.component.moderate.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.moderate.L}", + "type": "typography" + }, + "XL": { + "value": "{global.typography.responsive.component.moderate.L}", + "type": "typography" + }, + "XXL": { + "value": "{global.typography.responsive.component.moderate.L}", + "type": "typography" + } + }, + "heading": { + "S": { + "value": "{global.typography.responsive.component.firm.M}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.subheading.L}", + "type": "typography" + }, + "ML": { + "value": "{global.typography.responsive.subheading.L}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.subheading.L}", + "type": "typography" + }, + "XL": { + "value": "{global.typography.responsive.subheading.L}", + "type": "typography" + }, + "XXL": { + "value": "{global.typography.responsive.subheading.L}", + "type": "typography" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/components/progress.json b/data/tokens/components/progress.json new file mode 100644 index 00000000..afb48d8b --- /dev/null +++ b/data/tokens/components/progress.json @@ -0,0 +1,791 @@ +{ + "progress": { + "size": { + "bar": { + "S": { + "value": "{global.size.micro.XS}", + "type": "sizing", + "description": "S loader bar" + }, + "M": { + "value": "{global.size.micro.M}", + "type": "sizing", + "description": "M progress tracker bar, M loader bar" + }, + "L": { + "value": "{global.size.micro.XL}", + "type": "sizing", + "description": "L loader bar" + } + }, + "carouselselector": { + "dot": { + "M": { + "value": "{global.size.micro.L}", + "type": "sizing" + } + }, + "activedot": { + "M": { + "value": "{global.size.macro.XXS}", + "type": "sizing" + } + }, + "hitarea": { + "M": { + "value": "{global.size.macro.XS}", + "type": "sizing" + } + } + }, + "carouselslide": { + "x": { + "M": { + "value": "{global.size.macro.XL}", + "type": "sizing", + "description": "Inactive slide" + } + } + }, + "ring": { + "S": { + "value": "{global.size.macro.S}", + "type": "sizing", + "description": "Loader ring" + }, + "M": { + "value": "{global.size.macro.S} * 2", + "type": "sizing", + "description": "Loader ring" + }, + "L": { + "value": "{global.size.macro.XS} * 4", + "type": "sizing", + "description": "Loader ring" + } + }, + "skeleton": { + "responsive": { + "text": { + "XS": { + "value": "{primitives.fontSize.responsive.product.step0}", + "type": "sizing", + "description": "Skeleton paragraph and H5" + }, + "S": { + "value": "{primitives.fontSize.responsive.product.step2}", + "type": "sizing", + "description": "H4 Skeletons" + }, + "M": { + "value": "{primitives.fontSize.responsive.product.step2}", + "type": "sizing", + "description": "H3 Skeletons" + }, + "L": { + "value": "{primitives.fontSize.responsive.product.step3}", + "type": "sizing", + "description": "H2 Skeletons" + }, + "XL": { + "value": "{primitives.fontSize.responsive.product.step5}", + "type": "sizing", + "description": "H1 Skeletons" + } + } + }, + "adaptive": { + "text": { + "XS": { + "value": "{global.fontSize.adaptive.step0}", + "type": "sizing", + "description": "Skeleton paragraph and H5" + }, + "S": { + "value": "{global.fontSize.adaptive.step2}", + "type": "sizing", + "description": "H4 Skeletons" + }, + "M": { + "value": "{global.fontSize.adaptive.step2}", + "type": "sizing", + "description": "H3 Skeletons" + }, + "L": { + "value": "{global.fontSize.adaptive.step3}", + "type": "sizing", + "description": "H2 Skeletons" + }, + "XL": { + "value": "{global.fontSize.adaptive.step5}", + "type": "sizing", + "description": "H1 Skeletons" + } + } + } + }, + "stepflow": { + "M": { + "value": "{global.size.micro.M}", + "type": "sizing", + "description": "Step height" + } + }, + "stepindicator": { + "bar": { + "value": "{global.size.micro.XXS}", + "type": "sizing", + "description": "step indicator bar" + }, + "stepcircle": { + "S": { + "value": "{global.size.macro.XS}", + "type": "sizing", + "description": "M size step indicator" + }, + "M": { + "value": "{global.size.macro.S}", + "type": "sizing", + "description": "M size step indicator" + } + } + } + }, + "color": { + "bg-skeleton": { + "value": "{modes.color.status.content.loading}", + "type": "color" + }, + "bg-default": { + "value": "{modes.color.interactive.progress.bg}", + "type": "color" + }, + "border-default": { + "value": "{modes.color.generic.fg.soft}", + "type": "color" + }, + "fg-ai": { + "value": "{modes.color.interactive.ai.default}", + "type": "color", + "description": "For progress ring in ai buttons" + }, + "fg-alt": { + "value": "{modes.color.status.positive.alt}", + "type": "color" + }, + "fg-alt2": { + "value": "{modes.color.generic.content.firm}", + "type": "color" + }, + "fg-caution": { + "value": "{modes.color.status.caution.alt}", + "type": "color" + }, + "fg-default": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color" + }, + "fg-error": { + "value": "{modes.color.status.negative.alt}", + "type": "color" + }, + "fg-info": { + "value": "{modes.color.status.info.alt}", + "type": "color" + }, + "label-alt": { + "value": "{modes.color.generic.content.firm}", + "type": "color" + }, + "label-default": { + "value": "{modes.color.generic.content.harsh}", + "type": "color" + }, + "datavis": { + "fg-default": { + "value": "{modes.color.status.generic.default}", + "type": "color" + } + }, + "loader": { + "bg-default": { + "value": "{modes.color.interactive.progress.bg}", + "type": "color" + }, + "bg-alt": { + "value": "{modes.color.interactive.progress.bgAlt}", + "type": "color", + "description": "used for inverse loader bgs" + }, + "fg-default": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color", + "description": "used for loader standard loader spinner" + }, + "fg-alt": { + "value": "{modes.color.interactive.monochrome.generic.withActive}", + "type": "color", + "description": "used on inverse loading spinner" + }, + "fg-error": { + "value": "{modes.color.status.negative.alt}", + "type": "color" + }, + "fg-complete": { + "value": "{modes.color.status.positive.alt}", + "type": "color" + } + }, + "stepflow": { + "bg-active": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color" + }, + "bg-complete": { + "value": "{modes.color.status.positive.alt}", + "type": "color" + }, + "bg-default": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + }, + "border-active-inner": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + }, + "border-active-outer": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color" + }, + "border-default": { + "value": "{modes.color.generic.fg.soft}", + "type": "color" + }, + "label-alt": { + "value": "{modes.color.generic.content.firm}", + "type": "color" + }, + "label-default": { + "value": "{modes.color.generic.content.harsh}", + "type": "color" + } + }, + "stepindicator": { + "bg-active": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color" + }, + "bg-complete": { + "value": "{modes.color.status.positive.alt}", + "type": "color" + }, + "border-active-outer": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color" + }, + "border-default": { + "value": "{modes.color.generic.fg.soft}", + "type": "color" + }, + "border-success": { + "value": "{modes.color.status.positive.alt}", + "type": "color" + }, + "label-active": { + "value": "{modes.color.interactive.monochrome.generic.withActive}", + "type": "color" + }, + "label-complete": { + "value": "{modes.color.interactive.monochrome.generic.withActive}", + "type": "color" + }, + "label-default": { + "value": "{modes.color.generic.content.harsh}", + "type": "color" + } + } + }, + "radius": { + "none": { + "value": "{global.radius.none}", + "type": "borderRadius", + "description": "File input (top corners of integrated progress bar)," + }, + "stepflow": { + "value": "{global.radius.circle}", + "type": "borderRadius", + "description": "Step flow (step indicators)" + }, + "stepindicator": { + "value": "{global.radius.circle}", + "type": "borderRadius", + "description": "step indicator circles" + }, + "carouselselector": { + "value": "{global.radius.circle}", + "type": "borderRadius", + "description": "Carousel (selector dot)" + }, + "integrated": { + "value": "{global.radius.container.S}", + "type": "borderRadius", + "description": "File input (bottom corners of integrated status bar)" + }, + "skeleton": { + "moderate": { + "value": "{global.radius.container.M}", + "type": "borderRadius", + "description": "used to represent headings, inputs and text" + }, + "curved": { + "value": "{global.radius.container.L}", + "type": "borderRadius", + "description": "used to represent elements such as icons" + }, + "sweeping": { + "value": "{global.radius.container.XXL}", + "type": "borderRadius", + "description": "used to represent buttons" + }, + "circle": { + "value": "{global.radius.circle}", + "type": "borderRadius", + "description": "Used to represent circular elements such as profiles, badges etc" + } + }, + "bar": { + "S": { + "value": "{global.radius.container.XS}", + "type": "borderRadius", + "description": "Progress tracker S" + }, + "M": { + "value": "{global.radius.container.S}", + "type": "borderRadius", + "description": "File input (bottom corners of integrated status bar), Progress tracker M, " + }, + "L": { + "value": "{global.radius.container.SM}", + "type": "borderRadius", + "description": "Progress tracker L" + } + } + }, + "borderwidth": { + "bar": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Progress bar (all sizes) " + }, + "carouselector": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Carousel slide selector dots " + }, + "integrated": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Progress bar in File upload " + }, + "stepflow": { + "inner": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Step flow default (not started)" + }, + "active-inner": { + "value": "{global.borderwidth.S}", + "type": "borderWidth", + "description": "Step flow active step border outer" + }, + "active-outer": { + "value": "{global.borderwidth.L}", + "type": "borderWidth", + "description": "Step flow active step border outermost" + } + }, + "stepindicator": { + "S": { + "active": { + "value": "{global.borderwidth.S}", + "type": "borderWidth" + }, + "default": { + "value": "{global.borderwidth.S}", + "type": "borderWidth" + } + }, + "M": { + "active": { + "value": "{global.borderwidth.M}", + "type": "borderWidth" + }, + "default": { + "value": "{global.borderwidth.M}", + "type": "borderWidth" + } + } + } + }, + "space": { + "carouselselector": { + "xg": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Gap between selectors." + } + }, + "y": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Vertical padding on selector group." + } + } + }, + "integral": { + "x": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Little space between words in progress components" + } + }, + "loader": { + "yg": { + "S": { + "value": "{global.space.micro.M}", + "type": "spacing", + "description": "gap between loader visual and loading text" + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "gap between loader visual and loading text" + }, + "L": { + "value": "{global.space.micro.XL}", + "type": "spacing", + "description": "gap between loader visual and loading text" + } + }, + "xg": { + "S": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Gap between loader graphic and label." + }, + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Gap between loader graphic and label." + }, + "L": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Gap between loader graphic and label." + } + } + }, + "skeleton": { + "multiline": { + "yg": { + "XS": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "vertical gap between skeleton bars" + }, + "S": { + "value": "{global.space.micro.XL}", + "type": "spacing", + "description": "vertical gap between skeleton bars" + }, + "M": { + "value": "{global.space.micro.M}", + "type": "spacing", + "description": "vertical gap between skeleton bars" + }, + "L": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "vertical gap between skeleton bars" + }, + "XL": { + "value": "{global.space.micro.XL}", + "type": "spacing", + "description": "vertical gap between skeleton bars" + } + }, + "y": { + "XS": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Top bottom padding on grouped lines" + }, + "S": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Top bottom padding on grouped lines" + }, + "M": { + "value": "{global.space.micro.XS}", + "type": "spacing", + "description": "Top bottom padding on grouped lines" + }, + "L": { + "value": "{global.space.micro.XS}", + "type": "spacing", + "description": "Top bottom padding on grouped lines" + }, + "XL": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Top bottom padding on grouped lines" + } + } + }, + "singleline": { + "xg": { + "XS": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "horizontal gap between elements" + }, + "S": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "horizontal gap between elements" + }, + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "horizontal gap between elements" + }, + "L": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "horizontal gap between elements" + }, + "XL": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "horizontal gap between elements" + } + } + } + }, + "stepflow": { + "y": { + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Vertical padding around step indicators" + } + }, + "yg": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Gap between step heading and back link." + } + }, + "steps": { + "xg": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Gap between step indicators" + } + }, + "yg": { + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Gap between glow heading, step label and step indicators" + } + } + } + }, + "tracker": { + "yg": { + "S": { + "value": "{global.space.micro.M}", + "type": "spacing", + "description": "Space between bar and label" + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Space between bar and label" + }, + "L": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Space between bar and label" + } + }, + "xg": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Gap between tracker value text and description" + } + } + }, + "stepindicator": { + "generic": { + "g": { + "S": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "gap between timeline visual and text" + }, + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "gap between timeline visual and text" + } + }, + "text": { + "yg": { + "S": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "gap between label and subtext" + }, + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "gap between label and subtext" + } + } + }, + "visual": { + "g": { + "S": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "gap between step number and line" + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "gap between step number and line" + } + } + } + }, + "vertical": { + "y": { + "S": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Vertical variant top padding on parent container" + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Vertical variant top padding on parent container" + } + }, + "text": { + "y": { + "S": { + "value": "{global.space.micro.XS}", + "type": "spacing", + "description": "space above text and parent container on vertical variant" + } + } + } + }, + "horizontal": { + "text": { + "x": { + "S": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "horizontal variant left and right padding on text container" + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "horizontal variant left and right padding on text container" + } + } + } + } + } + }, + "opacity": { + "carousel": { + "inactive": { + "value": "0.3", + "type": "opacity", + "description": "Inactive slide IMAGE layer." + } + } + }, + "typography": { + "adaptive": { + "label": { + "S": { + "value": "{global.typography.adaptive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.firm.L}", + "type": "typography" + } + }, + "default": { + "S": { + "value": "{global.typography.adaptive.component.moderate.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.moderate.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.moderate.L}", + "type": "typography" + } + } + }, + "responsive": { + "label": { + "S": { + "value": "{global.typography.responsive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.firm.L}", + "type": "typography" + } + }, + "default": { + "S": { + "value": "{global.typography.responsive.component.moderate.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.moderate.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.moderate.L}", + "type": "typography" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/components/status.json b/data/tokens/components/status.json new file mode 100644 index 00000000..b1b1727b --- /dev/null +++ b/data/tokens/components/status.json @@ -0,0 +1,592 @@ +{ + "status": { + "color": { + "none": { + "value": "{modes.color.none}", + "type": "color", + "description": "transparent override used for hiding colors when needed." + }, + "bg-default": { + "value": "{modes.color.generic.bg.nought}", + "type": "color" + }, + "bg-readonly": { + "value": "{modes.color.status.inactive.default}", + "type": "color", + "description": "Pill (all types, readonly, when nested in disabled parent components)" + }, + "border-readonly": { + "value": "{modes.color.status.inactive.default}", + "type": "color", + "description": "Pill (all types, readonly, when nested in disabled parent components)" + }, + "icon-default": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "description": "Decorative message icons" + }, + "label-default": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + }, + "label-readonly": { + "value": "{modes.color.interactive.monochrome.generic.withDefault}", + "type": "color", + "description": "Pill (all types, readonly, when nested in disabled parent components)" + }, + "label-hover": { + "value": "{modes.color.status.content.withHoverAlt}", + "type": "color" + }, + "labelAlt-default": { + "value": "{modes.color.status.content.withDefaultAlt}", + "type": "color" + }, + "labelAlt-readonly": { + "value": "{modes.color.generic.content.firm}", + "type": "color", + "description": "Pill (all types, readonly, when nested in disabled parent components)" + }, + "labelAlt-hover": { + "value": "{modes.color.status.content.withHoverAlt}", + "type": "color" + }, + "text": { + "value": "{modes.color.status.content.withHoverAlt}", + "type": "color", + "description": "Message text." + }, + "AI": { + "bg-default": { + "value": "{modes.color.status.ai.defaultAlt}", + "type": "color" + }, + "border-default": { + "value": "{modes.color.status.ai.defaultAlt}", + "type": "color" + } + }, + "callout": { + "bgAlt": { + "value": "{modes.color.status.callout.defaultAlt}", + "type": "color", + "description": "Subtle message bg" + }, + "bgAlt-default": { + "value": "{modes.color.status.callout.defaultAlt}", + "type": "color", + "description": "Global message bg" + }, + "bgAlt-hover": { + "value": "{modes.color.status.callout.hoverAlt}", + "type": "color", + "description": "Subtle message bg" + } + }, + "error": { + "bg-default": { + "value": "{modes.color.status.negative.default}", + "type": "color" + }, + "bgAlt": { + "value": "{modes.color.status.negative.defaultAlt}", + "type": "color", + "description": "Subtle message bg" + }, + "bgAlt-hover": { + "value": "{modes.color.status.negative.hoverAlt}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.status.negative.hover}", + "type": "color" + }, + "border-default": { + "value": "{modes.color.status.negative.default}", + "type": "color" + }, + "icon": { + "value": "{modes.color.status.negative.alt}", + "type": "color", + "description": "Icon on tinted bgs" + } + }, + "info": { + "bg-default": { + "value": "{modes.color.status.info.default}", + "type": "color" + }, + "bgAlt": { + "value": "{modes.color.status.info.defaultAlt}", + "type": "color", + "description": "Subtle message bg" + }, + "bgAlt-default": { + "value": "{modes.color.status.info.defaultAlt}", + "type": "color", + "description": "Global message bg" + }, + "bgAlt-hover": { + "value": "{modes.color.status.info.hoverAlt}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.status.info.hover}", + "type": "color" + }, + "border-default": { + "value": "{modes.color.status.info.default}", + "type": "color" + }, + "icon": { + "value": "{modes.color.status.info.alt}", + "type": "color", + "description": "Icon on tinted bgs" + } + }, + "neutral": { + "bg-default": { + "value": "{modes.color.status.neutral.default}", + "type": "color" + }, + "bgAlt": { + "value": "{modes.color.status.neutral.defaultAlt}", + "type": "color", + "description": "Subtle message bg" + }, + "bgAlt-hover": { + "value": "{modes.color.status.neutral.hoverAlt}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.status.neutral.hover}", + "type": "color" + }, + "border-default": { + "value": "{modes.color.status.neutral.default}", + "type": "color" + }, + "icon": { + "value": "{modes.color.status.neutral.alt}", + "type": "color", + "description": "Icon on tinted bgs" + } + }, + "rating": { + "bg-default": { + "value": "{modes.color.status.reviews.default}", + "type": "color" + }, + "bg-defaultAlt": { + "value": "{modes.color.status.reviews.defaultAlt}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.status.reviews.hover}", + "type": "color" + }, + "border-default": { + "value": "{modes.color.status.reviews.default}", + "type": "color" + } + }, + "success": { + "bg-default": { + "value": "{modes.color.status.positive.default}", + "type": "color" + }, + "bgAlt": { + "value": "{modes.color.status.positive.defaultAlt}", + "type": "color", + "description": "Subtle message bg" + }, + "bgAlt-hover": { + "value": "{modes.color.status.positive.hoverAlt}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.status.positive.hover}", + "type": "color" + }, + "border-default": { + "value": "{modes.color.status.positive.default}", + "type": "color" + }, + "icon": { + "value": "{modes.color.status.positive.alt}", + "type": "color", + "description": "Icon on tinted bgs" + } + }, + "warning": { + "bg-default": { + "value": "{modes.color.status.caution.default}", + "type": "color" + }, + "bgAlt": { + "value": "{modes.color.status.caution.defaultAlt}", + "type": "color", + "description": "Subtle message bg" + }, + "bgAlt-default": { + "value": "{modes.color.status.caution.defaultAlt}", + "type": "color", + "description": "Global message bg" + }, + "bgAlt-hover": { + "value": "{modes.color.status.caution.hoverAlt}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.status.caution.hover}", + "type": "color" + }, + "border-default": { + "value": "{modes.color.status.caution.default}", + "type": "color" + }, + "icon": { + "value": "{modes.color.status.caution.alt}", + "type": "color", + "description": "Icon on tinted bgs" + } + } + }, + "size": { + "pill": { + "S": { + "value": "{global.size.macro.XS} - {global.size.micro.XS}", + "type": "sizing", + "description": "Min height" + }, + "M": { + "value": "{global.size.macro.XS}", + "type": "sizing", + "description": "Min height and removable button." + }, + "L": { + "value": "{global.size.macro.XS} + {global.size.micro.XS}", + "type": "sizing", + "description": "Min height and removable button" + } + }, + "message": { + "statuscontainer": { + "M": { + "value": "{global.size.macro.S}", + "type": "sizing", + "description": "message and toast icon container width" + }, + "L": { + "value": "{global.size.macro.M}", + "type": "sizing", + "description": "message and toast icon container width" + } + }, + "messagecontent": { + "maxwidth": { + "value": "{container.size.responsive.XXXL}", + "type": "sizing", + "description": "max width of content inside message to make sure there are roughly 12 works per line" + } + }, + "global": { + "M": { + "value": "{global.size.macro.M}", + "type": "sizing", + "description": "Global message minheight" + } + } + }, + "icon": { + "M": { + "value": "{global.size.icon.M}", + "type": "sizing" + } + } + }, + "radius": { + "none": { + "value": "{global.radius.none}", + "type": "borderRadius", + "description": "Pill (embedded element inner corners)" + }, + "message": { + "value": "{global.radius.container.M}", + "type": "borderRadius", + "description": "Message" + }, + "pill": { + "value": "{global.radius.container.M}", + "type": "borderRadius", + "description": "Pill (outer corners)" + } + }, + "borderwidth": { + "pill": { + "value": "{global.borderwidth.S}", + "type": "borderWidth", + "description": "Outlined Pill border" + }, + "message": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Contextual message and AI inline border" + } + }, + "space": { + "none": { + "value": "{global.space.none}", + "type": "spacing" + }, + "integral": { + "x": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Space between pill label and icon. Space between message text and link." + } + }, + "pill": { + "x": { + "S": { + "value": "{global.space.micro.S}", + "type": "spacing" + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing" + }, + "L": { + "value": "{global.space.micro.XXL}", + "type": "spacing" + } + } + }, + "tooltip": { + "x": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Right left padding. " + }, + "y": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Top bottom padding. " + } + }, + "message": { + "contextual": { + "x": { + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Left and right padding on Medium message" + }, + "L": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "Left and right paddding on Large Message" + } + }, + "y": { + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Top and bottom padding on Medium message" + }, + "L": { + "value": "{global.space.macro.S}", + "type": "spacing", + "description": "Top and bottom paddding on Large Message" + } + }, + "xg": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Gap between icon and text in subtle message, and between text and action button in typical message" + }, + "L": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Gap between icon and text in subtle message, and between text and action button in typical message" + } + }, + "yg": { + "M": { + "value": "{global.space.micro.XS}", + "type": "spacing", + "description": "Gap between heading and other content" + }, + "L": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Gap between heading and other content" + } + }, + "subtle": { + "iconwrapper": { + "y": { + "M": { + "value": "{global.space.micro.XS}", + "type": "spacing", + "description": "space above icon on subtle message for medium variant" + }, + "L": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "space above icon on subtle message for large variant" + } + } + } + } + }, + "global": { + "x": { + "M": { + "value": "{global.space.macro.L}", + "type": "spacing", + "description": "Left and right padding on global message" + } + }, + "y": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Top and bottom padding on global message." + } + }, + "xg": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Space between icon wrapper and text wrapper" + } + }, + "yg": { + "M": { + "value": "{global.space.micro.S}", + "type": "spacing", + "description": "Gap between heading and other content." + } + }, + "CTA": { + "Y": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Top and bottom padding on global message for countdown" + } + }, + "yg": { + "M": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Gap between countdown spacing for global message" + } + } + }, + "iconwrapper": { + "y": { + "M": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Top padding on global message icon wrapper." + } + } + } + } + } + }, + "typography": { + "adaptive": { + "label": { + "S": { + "value": "{global.typography.adaptive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.firm.L}", + "type": "typography" + } + }, + "default": { + "S": { + "value": "{global.typography.adaptive.component.moderate.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.moderate.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.moderate.L}", + "type": "typography" + } + }, + "heading": { + "S": { + "value": "{global.typography.adaptive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.firm.L}", + "type": "typography" + } + } + }, + "responsive": { + "label": { + "S": { + "value": "{global.typography.responsive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.firm.L}", + "type": "typography" + } + }, + "default": { + "S": { + "value": "{global.typography.responsive.component.moderate.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.moderate.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.moderate.L}", + "type": "typography" + } + }, + "heading": { + "S": { + "value": "{global.typography.responsive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.firm.L}", + "type": "typography" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/components/tab.json b/data/tokens/components/tab.json new file mode 100644 index 00000000..d5d70df3 --- /dev/null +++ b/data/tokens/components/tab.json @@ -0,0 +1,266 @@ +{ + "tab": { + "size": { + "M": { + "value": "{global.size.macro.M}", + "type": "sizing", + "description": "Anchor nav, M Tab" + }, + "L": { + "value": "{global.size.macro.L}", + "type": "sizing", + "description": "L tab" + }, + "shadow": { + "arrow": { + "value": "{global.size.micro.M}", + "type": "sizing", + "description": "Shadow width for linear gradient shadow on repsonsive tab arrows." + } + }, + "baseline": { + "M": { + "value": "{global.size.micro.XS}", + "type": "sizing", + "description": "Thickness of baseline." + }, + "L": { + "value": "{global.size.micro.XS}", + "type": "sizing", + "description": "Thickness of baseline." + } + }, + "icon": { + "M": { + "value": "{global.size.icon.M}", + "type": "sizing" + }, + "L": { + "value": "{global.size.icon.M}", + "type": "sizing" + } + }, + "indicator": { + "M": { + "value": "{global.size.micro.XS}", + "type": "sizing", + "description": "Thickness of indicator for active and hover." + }, + "L": { + "value": "{global.size.micro.XS}", + "type": "sizing", + "description": "Thickness of indicator for active and hover." + } + } + }, + "space": { + "x": { + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Left and right padding on Tab." + }, + "L": { + "value": "{global.space.macro.M}", + "type": "spacing", + "description": "Left and right padding on Tab." + } + }, + "xg": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Gap between elements in Tab." + }, + "L": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Gap between elements in Tab." + } + }, + "y": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Top bottom padding in Tab." + }, + "L": { + "value": "{global.space.micro.XXL}", + "type": "spacing", + "description": "Top bottom padding in Tab." + } + } + }, + "color": { + "bg-active": { + "value": "{modes.color.interactive.monochrome.generic.withActive}", + "type": "color" + }, + "bg-enabled": { + "value": "{modes.color.none}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.monochrome.generic.hoverAlt}", + "type": "color", + "description": "For anchor nav, not tab." + }, + "border-active": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color" + }, + "border-enabled": { + "value": "{modes.color.generic.fg.delicate}", + "type": "color" + }, + "border-hover": { + "value": "{modes.color.generic.fg.moderate}", + "type": "color" + }, + "icon-enabled": { + "value": "{modes.color.interactive.monochrome.generic.defaultAlt}", + "type": "color" + }, + "icon-hover": { + "value": "{modes.color.interactive.monochrome.generic.withHover}", + "type": "color" + }, + "label-active": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color" + }, + "icon-active": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.monochrome.generic.defaultAlt}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.generic.withHover}", + "type": "color" + }, + "navigation": { + "bg-default": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "description": "For previous/next buttons on responsive tabs" + } + }, + "validation": { + "border-warning": { + "value": "{modes.color.status.caution.alt}", + "type": "color" + }, + "border-error": { + "value": "{modes.color.status.negative.alt}", + "type": "color" + }, + "icon-error": { + "value": "{modes.color.status.negative.alt}", + "type": "color" + }, + "icon-warning": { + "value": "{modes.color.status.caution.alt}", + "type": "color" + }, + "label-error": { + "value": "{modes.color.interactive.monochrome.generic.defaultAlt}", + "type": "color" + }, + "label-warning": { + "value": "{modes.color.interactive.monochrome.generic.defaultAlt}", + "type": "color" + } + } + }, + "radius": { + "M": { + "value": "{global.radius.interactive.M}", + "type": "borderRadius", + "description": "Tab horizontal - top corners. Tab vertical - left corners." + }, + "L": { + "value": "{global.radius.interactive.M}", + "type": "borderRadius", + "description": "Tab horizontal - top corners. Tab vertical - left corners." + }, + "baseline": { + "M": { + "value": "{global.radius.interactive.XXS}", + "type": "borderRadius" + }, + "L": { + "value": "{global.radius.interactive.XXS}", + "type": "borderRadius" + } + }, + "indicator": { + "M": { + "value": "{global.radius.interactive.XS}", + "type": "borderRadius", + "description": "Indicator for hover and active." + }, + "L": { + "value": "{global.radius.interactive.XS}", + "type": "borderRadius", + "description": "Indicator for hover and active." + } + }, + "none": { + "value": "{button.radius.none}", + "type": "borderRadius", + "description": "For previous/next buttons" + } + }, + "borderwidth": { + "navigation": { + "bottom": { + "value": "{global.borderwidth.L}", + "type": "borderWidth", + "description": "Tab (enabled and hover bottom border)" + }, + "side": { + "value": "{global.borderwidth.S}", + "type": "borderWidth", + "description": "Tab (enabled and hover bottom border)" + } + } + }, + "typography": { + "adaptive": { + "label": { + "S": { + "value": "{global.typography.adaptive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.firm.L}", + "type": "typography" + } + } + }, + "responsive": { + "label": { + "S": { + "value": "{global.typography.responsive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.firm.L}", + "type": "typography" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/components/table.json b/data/tokens/components/table.json new file mode 100644 index 00000000..d89539b8 --- /dev/null +++ b/data/tokens/components/table.json @@ -0,0 +1,405 @@ +{ + "table": { + "color": { + "header": { + "subtle": { + "bg-alt": { + "value": "{modes.color.interactive.monochrome.subtle.default}", + "type": "color", + "description": "header alt" + }, + "bg-default": { + "value": "{modes.color.none}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.monochrome.generic.hover}", + "type": "color" + }, + "border-default": { + "value": "{modes.color.generic.fg.delicate}", + "type": "color", + "description": "Header borders" + }, + "label-default": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + } + }, + "harsh": { + "bg-alt": { + "value": "{modes.color.interactive.monochrome.generic.defaultAlt}", + "type": "color", + "description": "header alt" + }, + "bg-default": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.monochrome.generic.hover}", + "type": "color" + }, + "border-default": { + "value": "{modes.color.interactive.monochrome.subtle.defaultAlt}", + "type": "color" + }, + "label-default": { + "value": "{modes.color.interactive.monochrome.generic.withDefault}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + } + } + }, + "row": { + "bg-activated": { + "value": "{modes.color.interactive.primary.default}", + "type": "color" + }, + "bg-active": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color" + }, + "bg-default": { + "value": "{modes.color.generic.bg.nought}", + "type": "color" + }, + "bg-alt": { + "value": "{modes.color.generic.bg.delicate}", + "type": "color", + "description": "Zebra stripes" + }, + "bg-alt2": { + "value": "{modes.color.generic.bg.soft}", + "type": "color", + "description": "Zebra stripes combined with child rows." + }, + "bg-alt3": { + "value": "{modes.color.generic.bg.faint}", + "type": "color", + "description": "Child rows." + }, + "bg-hover": { + "value": "{modes.color.generic.bg.soft}", + "type": "color" + }, + "border-default": { + "value": "{modes.color.generic.fg.delicate}", + "type": "color" + }, + "label-activated": { + "value": "{modes.color.interactive.monochrome.generic.withActive}", + "type": "color" + }, + "label-active": { + "value": "{modes.color.interactive.monochrome.generic.withActive}", + "type": "color" + }, + "label-default": { + "value": "{modes.color.generic.content.harsh}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.generic.content.extreme}", + "type": "color" + } + }, + "footer": { + "bg-default": { + "value": "{modes.color.generic.bg.soft}", + "type": "color" + }, + "border-default": { + "value": "{modes.color.generic.fg.delicate}", + "type": "color", + "description": "Header borders" + }, + "label-default": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + } + } + }, + "radius": { + "container": { + "value": "{global.radius.container.M}", + "type": "borderRadius", + "description": "Table (parent container)" + } + }, + "boxshadow": { + "parentrow": { + "value": "{global.boxshadow.container.far}", + "type": "boxShadow" + } + }, + "borderwidth": { + "thin": { + "value": "{global.borderwidth.XS}", + "type": "borderWidth", + "description": "Table border" + }, + "thick": { + "value": "{global.borderwidth.S}", + "type": "borderWidth", + "description": "header border for subtle" + } + }, + "space": { + "none": { + "value": "{global.space.none}", + "type": "spacing" + }, + "row": { + "x": { + "XS": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "Left and right padding inside XS row cells" + }, + "S": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Left and right padding inside S row cells" + }, + "M": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Left and right padding inside M row cells" + }, + "L": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Left and right padding inside L row cells" + }, + "XL": { + "value": "{global.space.macro.XS}", + "type": "spacing", + "description": "Left and right padding inside XL row cells" + } + }, + "xg": { + "XS": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "internal spacing between text, checkboxes, icons etc" + }, + "S": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "internal spacing between text, checkboxes, icons etc" + }, + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "internal spacing between text, checkboxes, icons etc" + }, + "L": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "internal spacing between text, checkboxes, icons etc" + }, + "XL": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "internal spacing between text, checkboxes, icons etc" + } + }, + "y": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "top and bottom adding inside pagination" + } + }, + "yg": { + "M": { + "value": "{global.space.micro.L}", + "type": "spacing", + "description": "gap between table and pagination" + } + } + }, + "rowchild": { + "x": { + "XS": { + "value": "{global.space.macro.L} + {global.space.micro.S}", + "type": "spacing", + "description": "Left padding inside XS child row cells" + }, + "S": { + "value": "{global.space.macro.XL} + {global.space.micro.S}", + "type": "spacing", + "description": "Left padding inside S child row cells" + }, + "M": { + "value": "{global.space.macro.XL} + {global.space.micro.S}", + "type": "spacing", + "description": "Left padding inside M child row cells" + }, + "L": { + "value": "{global.space.macro.XL} + {global.space.micro.S}", + "type": "spacing", + "description": "Left padding inside L child row cells" + }, + "XL": { + "value": "{global.space.macro.XL} + {global.space.micro.S}", + "type": "spacing", + "description": "Left padding inside XL child row cells" + } + } + } + }, + "size": { + "row": { + "standard": { + "XS": { + "value": "{global.size.macro.XS}", + "type": "sizing" + }, + "S": { + "value": "{global.size.macro.S}", + "type": "sizing" + }, + "M": { + "value": "{global.size.macro.M}", + "type": "sizing" + }, + "L": { + "value": "{global.size.macro.L}", + "type": "sizing" + }, + "XL": { + "value": "{global.size.macro.XL} + {global.size.micro.M}", + "type": "sizing" + } + }, + "doubleheight": { + "XS": { + "value": "{table.size.row.standard.XS} * 2", + "type": "sizing" + }, + "S": { + "value": "{table.size.row.standard.S} * 2", + "type": "sizing" + }, + "M": { + "value": "{table.size.row.standard.M} * 2", + "type": "sizing" + }, + "L": { + "value": "{table.size.row.standard.L} * 2", + "type": "sizing" + }, + "XL": { + "value": "{table.size.row.standard.XL} * 2", + "type": "sizing" + } + } + }, + "icon": { + "M": { + "value": "{global.size.icon.M}", + "type": "sizing" + } + } + }, + "typography": { + "adaptive": { + "heading": { + "S": { + "value": "{global.typography.adaptive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.firm.L}", + "type": "typography" + } + }, + "default": { + "S": { + "value": "{global.typography.adaptive.component.moderate.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.moderate.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.moderate.L}", + "type": "typography" + } + }, + "label": { + "S": { + "value": "{global.typography.adaptive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.adaptive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.adaptive.component.firm.L}", + "type": "typography" + } + } + }, + "responsive": { + "heading": { + "S": { + "value": "{global.typography.responsive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.firm.L}", + "type": "typography" + } + }, + "default": { + "S": { + "value": "{global.typography.responsive.component.moderate.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.moderate.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.moderate.L}", + "type": "typography" + } + }, + "label": { + "S": { + "value": "{global.typography.responsive.component.firm.S}", + "type": "typography" + }, + "M": { + "value": "{global.typography.responsive.component.firm.M}", + "type": "typography" + }, + "L": { + "value": "{global.typography.responsive.component.firm.L}", + "type": "typography" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/context/frozenproduct.json b/data/tokens/context/frozenproduct.json new file mode 100644 index 00000000..d001cdf0 --- /dev/null +++ b/data/tokens/context/frozenproduct.json @@ -0,0 +1,603 @@ +{ + "button": { + "color": { + "typical": { + "primary": { + "bg-active": { + "value": "{modes.color.interactive.primary.frozen.active}", + "type": "color" + }, + "bg-enabled": { + "value": "{modes.color.interactive.primary.frozen.default}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.primary.frozen.hover}", + "type": "color" + } + }, + "secondary": { + "bg-active": { + "value": "{modes.color.interactive.primary.frozen.active}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.primary.frozen.hover}", + "type": "color" + }, + "border-active": { + "value": "{modes.color.interactive.primary.frozen.active}", + "type": "color" + }, + "border-enabled": { + "value": "{modes.color.interactive.primary.frozen.default}", + "type": "color" + }, + "border-hover": { + "value": "{modes.color.interactive.primary.frozen.hover}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.primary.frozen.default}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.frozen.withHoverAlt}", + "type": "color" + }, + "label-active": { + "value": "{modes.color.interactive.monochrome.frozen.withActive}", + "type": "color" + } + }, + "subtle": { + "bg-active": { + "value": "{modes.color.interactive.monochrome.frozen.activeAlt}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.monochrome.frozen.hoverAlt}", + "type": "color" + }, + "label-active": { + "value": "{modes.color.interactive.monochrome.frozen.active}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.monochrome.frozen.default}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.frozen.withHover}", + "type": "color" + } + }, + "tertiary": { + "bg-active": { + "value": "{modes.color.interactive.primary.frozen.active}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.primary.frozen.hover}", + "type": "color" + }, + "border-active": { + "value": "{modes.color.interactive.primary.frozen.active}", + "type": "color" + }, + "border-enabled": { + "value": "{modes.color.none}", + "type": "color" + }, + "border-hover": { + "value": "{modes.color.interactive.primary.frozen.hover}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.primary.frozen.default}", + "type": "color" + }, + "bg-enabled": { + "value": "{modes.color.none}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.frozen.withHoverAlt}", + "type": "color" + }, + "label-active": { + "value": "{modes.color.interactive.monochrome.frozen.withActive}", + "type": "color" + } + }, + "toggle": { + "bg-active": { + "value": "{modes.color.interactive.monochrome.frozen.active}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.monochrome.frozen.hoverAlt}", + "type": "color" + }, + "border-enabled": { + "value": "{modes.color.interactive.dataEntry.frozen.withDefault}", + "type": "color" + }, + "label-active": { + "value": "{modes.color.interactive.monochrome.frozen.withActive}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.monochrome.frozen.defaultAlt}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.frozen.withHover}", + "type": "color" + } + } + } + } + }, + "badge": { + "color": { + "notification": { + "bg-default": { + "value": "{modes.color.status.caution.alt}", + "type": "color" + } + } + } + }, + "container": { + "color": { + "interactive": { + "detailedicon": { + "bg": { + "value": "{modes.color.custom.frozen}", + "type": "color" + } + } + }, + "blockquote": { + "border": { + "value": "{modes.color.interactive.primary.frozen.default}", + "type": "color" + } + } + }, + "radius": { + "card": { + "moderate": { + "value": "{global.radius.container.M}", + "type": "borderRadius", + "description": "Card (less rounded)" + }, + "curved": { + "value": "{global.radius.container.L}", + "type": "borderRadius", + "description": "Card (more rounded)" + }, + "sweeping": { + "value": "{global.radius.container.XL}", + "type": "borderRadius", + "description": "Card largest rounded type" + } + }, + "tile": { + "moderate": { + "value": "{global.radius.container.M}", + "type": "borderRadius", + "description": "Tile (less rounded)" + }, + "curved": { + "value": "{global.radius.container.L}", + "type": "borderRadius", + "description": "Tile (more rounded)" + }, + "sweeping": { + "value": "{global.radius.container.XL}", + "type": "borderRadius", + "description": "Tile largest roundedness " + } + }, + "tileselect": { + "moderate": { + "value": "{global.radius.container.M}", + "type": "borderRadius", + "description": "Tile (less rounded)" + }, + "curved": { + "value": "{global.radius.container.L}", + "type": "borderRadius", + "description": "Tile (more rounded)" + }, + "sweeping": { + "value": "{global.radius.container.XL}", + "type": "borderRadius" + } + } + } + }, + "form": { + "radius": { + "checkbox": { + "value": "{global.radius.interactive.XS}", + "type": "borderRadius", + "description": "S and M checkbox" + }, + "texteditorfooter": { + "value": "{global.radius.interactive.S}", + "type": "borderRadius", + "description": "AI text editor footer" + }, + "colorpicker": { + "value": "{global.radius.interactive.L}", + "type": "borderRadius", + "description": "Color picker (swatch container)" + }, + "dropdown": { + "value": "{popover.radius.container}", + "type": "borderRadius", + "description": "REF POPOVER. Popover container." + }, + "fileupload": { + "value": "{global.radius.interactive.S}", + "type": "borderRadius", + "description": "File input (file uploads)" + }, + "fileselector": { + "value": "{global.radius.interactive.S}", + "type": "borderRadius", + "description": "File preview (file selector asset)" + }, + "input": { + "value": "{global.radius.interactive.S}", + "type": "borderRadius", + "description": "Date picker input, Date range input, Dropdown select (trigger), Search, File input (draggable area), Text area, Text input" + }, + "validationbar": { + "value": "{global.radius.interactive.XXS}", + "type": "borderRadius", + "description": "Validation bar" + } + }, + "color": { + "calendar": { + "bg-active": { + "value": "{modes.color.interactive.monochrome.frozen.active}", + "type": "color" + }, + "border-duration": { + "value": "{form.color.calendar.bg-active}", + "type": "color" + }, + "bg-duration": { + "value": "{modes.color.interactive.inactive.frozen.defaultAlt}", + "type": "color" + } + }, + "typical": { + "border-enabled": { + "value": "{modes.color.interactive.dataEntry.frozen.withDefault}", + "type": "color" + } + }, + "switch": { + "bg-active": { + "value": "{modes.color.interactive.monochrome.frozen.default}", + "type": "color" + }, + "border-enabled": { + "value": "{modes.color.interactive.dataEntry.frozen.withDefault}", + "type": "color" + }, + "fg-enabled": { + "value": "{modes.color.interactive.dataEntry.frozen.withDefault}", + "type": "color" + } + } + } + }, + "link": { + "color": { + "typical": { + "label-default": { + "value": "{modes.color.interactive.primary.frozen.defaultAlt}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.primary.frozen.hoverAlt}", + "type": "color" + } + } + } + }, + "nav": { + "color": { + "item": { + "bg-hover": { + "value": "{modes.color.interactive.primary.frozen.nav.hover}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.primary.frozen.nav.label-hover}", + "type": "color" + } + } + }, + "radius": { + "menumodal": { + "value": "{global.radius.interactive.M}", + "type": "borderRadius", + "description": "Menu on mobile" + } + } + }, + "global": { + "fontSize": { + "adaptive": { + "step-2": { + "value": "12", + "type": "fontSizes" + }, + "step-1": { + "value": "13", + "type": "fontSizes" + }, + "step0": { + "value": "14", + "type": "fontSizes" + }, + "step1": { + "value": "16", + "type": "fontSizes" + }, + "step2": { + "value": "18", + "type": "fontSizes" + }, + "step3": { + "value": "20", + "type": "fontSizes" + }, + "step4": { + "value": "22", + "type": "fontSizes" + }, + "step5": { + "value": "24", + "type": "fontSizes" + } + } + }, + "fontFamilies": { + "sage-headline": { + "value": "Sage UI", + "type": "fontFamilies", + "description": "override to make everything Sage UI" + }, + "sage-text": { + "value": "Sage UI", + "type": "fontFamilies", + "description": "override to make everything Sage UI" + } + } + }, + "popover": { + "color": { + "bg-active": { + "value": "{modes.color.interactive.monochrome.frozen.active}", + "type": "color" + }, + "bg-activealt": { + "value": "{modes.color.interactive.monochrome.frozen.hoverAlt}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.monochrome.frozen.hoverAlt}", + "type": "color" + }, + "label-activealt": { + "value": "{modes.color.interactive.monochrome.frozen.withHover}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + } + } + }, + "progress": { + "color": { + "loader": { + "bg-default": { + "value": "{modes.color.interactive.progress.frozen.bg}", + "type": "color" + }, + "fg-default": { + "value": "{modes.color.interactive.primary.frozen.default}", + "type": "color", + "description": "used for loader standard loader spinner" + } + } + } + }, + "status": { + "color": { + "label-default": { + "value": "{modes.color.interactive.monochrome.generic.withDefault}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.status.content.withHover}", + "type": "color" + }, + "error": { + "bgAlt": { + "value": "{status.color.none}", + "type": "color", + "description": "Subtle message bg" + } + }, + "info": { + "bgAlt": { + "value": "{status.color.none}", + "type": "color", + "description": "Subtle message bg" + }, + "bgAlt-default": { + "value": "{modes.color.status.info.frozen.default}", + "type": "color", + "description": "Global message bg" + } + }, + "neutral": { + "bgAlt": { + "value": "{status.color.none}", + "type": "color", + "description": "Subtle message bg" + }, + "bg-default": { + "value": "{modes.color.status.neutral.frozen.default}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.status.neutral.frozen.hover}", + "type": "color" + }, + "border-default": { + "value": "{modes.color.status.neutral.frozen.default}", + "type": "color" + } + }, + "rating": { + "bg-default": { + "value": "{modes.color.status.reviews.frozen.default}", + "type": "color" + }, + "bg-defaultAlt": { + "value": "{modes.color.status.reviews.frozen.defaultAlt}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.status.reviews.frozen.hover}", + "type": "color" + }, + "border-default": { + "value": "{modes.color.status.reviews.frozen.default}", + "type": "color" + } + }, + "success": { + "bgAlt": { + "value": "{status.color.none}", + "type": "color", + "description": "Subtle message bg" + } + }, + "warning": { + "bgAlt": { + "value": "{status.color.none}", + "type": "color", + "description": "Subtle message bg" + }, + "bgAlt-default": { + "value": "{modes.color.status.caution.frozen.default}", + "type": "color", + "description": "Global message bg" + } + } + }, + "radius": { + "pill": { + "value": "{global.radius.container.XS}", + "type": "borderRadius", + "description": "Pill (outer corners)" + } + } + }, + "tab": { + "radius": { + "M": { + "value": "{global.radius.interactive.S}", + "type": "borderRadius", + "description": "Tab horizontal - top corners. Tab vertical - left corners." + }, + "L": { + "value": "{global.radius.interactive.S}", + "type": "borderRadius", + "description": "Tab horizontal - top corners. Tab vertical - left corners." + } + }, + "color": { + "bg-active": { + "value": "{modes.color.interactive.monochrome.generic.withDefault}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.monochrome.frozen.hoverAlt}", + "type": "color", + "description": "For anchor nav, not tab." + }, + "border-active": { + "value": "{modes.color.interactive.primary.frozen.default}", + "type": "color" + }, + "border-enabled": { + "value": "{modes.color.interactive.monochrome.frozen.hoverAlt}", + "type": "color" + }, + "border-hover": { + "value": "{modes.color.interactive.monochrome.frozen.hoverAlt}", + "type": "color" + } + } + }, + "table": { + "color": { + "header": { + "harsh": { + "bg-alt": { + "value": "{modes.color.interactive.monochrome.frozen.defaultAlt}", + "type": "color" + }, + "bg-default": { + "value": "{modes.color.interactive.monochrome.frozen.default}", + "type": "color" + } + } + }, + "row": { + "bg-activated": { + "value": "{modes.color.interactive.primary.frozen.table.default}", + "type": "color" + }, + "bg-active": { + "value": "{modes.color.interactive.monochrome.generic.frozen.active}", + "type": "color" + }, + "bg-alt": { + "value": "{modes.color.generic.bg.frozen.delicate}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.generic.bg.frozen.soft}", + "type": "color" + }, + "label-active": { + "value": "{modes.color.interactive.monochrome.generic.withActiveAlt}", + "type": "color" + }, + "label-activated": { + "value": "{modes.color.interactive.monochrome.generic.withActiveAlt}", + "type": "color" + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/context/marketing.json b/data/tokens/context/marketing.json new file mode 100644 index 00000000..47790e08 --- /dev/null +++ b/data/tokens/context/marketing.json @@ -0,0 +1,428 @@ +{ + "button": { + "color": { + "typical": { + "toggle": { + "label-active": { + "value": "{modes.color.interactive.monochrome.marketing.withActive}", + "type": "color" + } + }, + "tertiary": { + "bg-enabled": { + "value": "{modes.color.none}", + "type": "color" + } + } + }, + "video": { + "primary": { + "bg-enabled": { + "value": "{modes.color.interactive.monochrome.marketing.withActive}", + "type": "color" + }, + "bg-hover": { + "value": "{modes.color.interactive.monochrome.marketing.withActive}", + "type": "color" + }, + "label-enabled": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + } + } + } + }, + "borderwidth": { + "tertiary": { + "value": "{global.borderwidth.S}", + "type": "borderWidth", + "description": "tertiary button border " + } + }, + "space": { + "tertiary": { + "x": { + "S": { + "value": "{global.space.none}", + "type": "spacing", + "description": "Left and right padding on small buttons" + }, + "M": { + "value": "{global.space.none}", + "type": "spacing", + "description": "Left and right padding on medium buttons" + }, + "L": { + "value": "{global.space.none}", + "type": "spacing", + "description": "Left and right padding on large buttons" + } + }, + "icononly": { + "x": { + "S": { + "value": "{global.space.none}", + "type": "spacing", + "description": "Left and right padding on icon-only processing button " + }, + "M": { + "value": "{global.space.none}", + "type": "spacing", + "description": "Left and right padding on icon-only processing button " + }, + "L": { + "value": "{global.space.none}", + "type": "spacing", + "description": "Left and right padding on icon-only processing button " + } + } + } + } + }, + "radius": { + "tertiary": { + "S": { + "value": "{global.radius.none}", + "type": "borderRadius", + "description": "tertiary button" + }, + "M": { + "value": "{global.radius.none}", + "type": "borderRadius", + "description": "tertiary button" + }, + "L": { + "value": "{global.radius.none}", + "type": "borderRadius", + "description": "tertiary button" + } + } + } + }, + "form": { + "color": { + "switch": { + "fg-active": { + "value": "{modes.color.interactive.monochrome.marketing.withActive}", + "type": "color" + }, + "bg-active": { + "value": "{modes.color.interactive.monochrome.marketing.active}", + "type": "color" + } + } + } + }, + "tab": { + "color": { + "border-active": { + "value": "{modes.color.interactive.monochrome.marketing.active}", + "type": "color" + } + } + }, + "progress": { + "color": { + "fg-default": { + "value": "{modes.color.interactive.monochrome.marketing.active}", + "type": "color" + } + } + }, + "container": { + "radius": { + "card": { + "moderate": { + "value": "{global.radius.container.XXL}", + "type": "borderRadius", + "description": "Card (less rounded)" + }, + "curved": { + "value": "{global.radius.container.XXXL}", + "type": "borderRadius", + "description": "Card (more rounded)" + }, + "sweeping": { + "value": "{global.radius.container.XXXXL}", + "type": "borderRadius", + "description": "Card largest rounded type" + } + }, + "tile": { + "moderate": { + "value": "{global.radius.container.XXL}", + "type": "borderRadius", + "description": "Tile (less rounded)" + }, + "curved": { + "value": "{global.radius.container.XXXL}", + "type": "borderRadius", + "description": "Tile (more rounded)" + }, + "sweeping": { + "value": "{global.radius.container.XXXXL}", + "type": "borderRadius", + "description": "Tile largest roundedness " + } + }, + "tileselect": { + "moderate": { + "value": "{global.radius.container.XXL}", + "type": "borderRadius", + "description": "Tile (less rounded)" + }, + "curved": { + "value": "{global.radius.container.XXXL}", + "type": "borderRadius", + "description": "Tile (more rounded)" + }, + "sweeping": { + "value": "{global.radius.container.XXXXL}", + "type": "borderRadius" + } + } + } + }, + "global": { + "typography": { + "responsive": { + "heading": { + "S": { + "value": { + "fontFamily": "{global.fontFamilies.sage-headline}", + "fontWeight": "{primitives.fontWeights.bold}", + "lineHeight": "{primitives.lineHeights.400}", + "fontSize": "{primitives.fontSize.responsive.marketing.step4}" + }, + "type": "typography", + "description": "Small Viewports: 18.66, Large Viewports: 21.53" + }, + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-headline}", + "fontWeight": "{primitives.fontWeights.bold}", + "lineHeight": "{primitives.lineHeights.400}", + "fontSize": "{primitives.fontSize.responsive.marketing.step5}" + }, + "type": "typography", + "description": "Small Viewports: 20.16, Large Viewports: 24.97" + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-headline}", + "fontWeight": "{primitives.fontWeights.bold}", + "lineHeight": "{primitives.lineHeights.400}", + "fontSize": "{primitives.fontSize.responsive.marketing.step7}" + }, + "type": "typography", + "description": "Small Viewports: 23.51, Large Viewports: 33.61" + } + }, + "subheading": { + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-headline}", + "fontWeight": "{primitives.fontWeights.bold}", + "lineHeight": "{primitives.lineHeights.400}", + "fontSize": "{primitives.fontSize.responsive.marketing.step0}" + }, + "type": "typography", + "description": "Small Viewports: 17.28, Large Viewports: 18.56" + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-headline}", + "fontWeight": "{primitives.fontWeights.bold}", + "lineHeight": "{primitives.lineHeights.400}", + "fontSize": "{primitives.fontSize.responsive.marketing.step2}" + }, + "type": "typography", + "description": "Small Viewports: 18.66, Large Viewports: 21.53" + } + }, + "body": { + "S": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.marketing.step-1}", + "paragraphSpacing": "{primitives.paragraphSpacing.200}" + }, + "type": "typography", + "description": "Small Viewports: 16, Large Viewports: 16" + }, + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.marketing.step0}", + "paragraphSpacing": "{primitives.paragraphSpacing.300}" + }, + "type": "typography", + "description": "Small Viewports: 17.28, Large Viewports: 18.56" + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.marketing.step1}", + "paragraphSpacing": "{primitives.paragraphSpacing.300}" + }, + "type": "typography", + "description": "Small Viewports: 17.28, Large Viewports: 18.56" + } + } + }, + "adaptive": { + "heading": { + "S": { + "value": { + "fontFamily": "{global.fontFamilies.sage-headline}", + "fontWeight": "{primitives.fontWeights.bold}", + "lineHeight": "{primitives.lineHeights.400}", + "fontSize": "{global.fontSize.adaptive.step4}" + }, + "type": "typography" + }, + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-headline}", + "fontWeight": "{primitives.fontWeights.bold}", + "lineHeight": "{primitives.lineHeights.400}", + "fontSize": "{global.fontSize.adaptive.step5}" + }, + "type": "typography" + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-headline}", + "fontWeight": "{primitives.fontWeights.bold}", + "lineHeight": "{primitives.lineHeights.400}", + "fontSize": "{global.fontSize.adaptive.step7}" + }, + "type": "typography" + } + }, + "subheading": { + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-headline}", + "fontWeight": "{primitives.fontWeights.bold}", + "lineHeight": "{primitives.lineHeights.400}", + "fontSize": "{global.fontSize.adaptive.step0}" + }, + "type": "typography" + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-headline}", + "fontWeight": "{primitives.fontWeights.bold}", + "lineHeight": "{primitives.lineHeights.400}", + "fontSize": "{global.fontSize.adaptive.step2}" + }, + "type": "typography", + "description": "Small Viewports: 18.66, Large Viewports: 21.53" + } + }, + "body": { + "S": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step-1}", + "paragraphSpacing": "{primitives.paragraphSpacing.200}" + }, + "type": "typography", + "description": "Small Viewports: 16, Large Viewports: 16" + }, + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step0}", + "paragraphSpacing": "{primitives.paragraphSpacing.300}" + }, + "type": "typography", + "description": "Small Viewports: 17.28, Large Viewports: 18.56" + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step1}", + "paragraphSpacing": "{primitives.paragraphSpacing.300}" + }, + "type": "typography", + "description": "Small Viewports: 17.28, Large Viewports: 18.56" + } + } + } + }, + "fontSize": { + "adaptive": { + "step-2": { + "value": "13.38", + "type": "fontSizes" + }, + "step-1": { + "value": "15.52", + "type": "fontSizes" + }, + "step0": { + "value": "18", + "type": "fontSizes" + }, + "step1": { + "value": "20.88", + "type": "fontSizes" + }, + "step2": { + "value": "24.22", + "type": "fontSizes" + }, + "step3": { + "value": "28.10", + "type": "fontSizes" + }, + "step4": { + "value": "32.59", + "type": "fontSizes" + }, + "step5": { + "value": "37.81", + "type": "fontSizes" + }, + "step6": { + "value": "43.86", + "type": "fontSizes" + }, + "step7": { + "value": "50.87", + "type": "fontSizes" + }, + "step8": { + "value": "59.01", + "type": "fontSizes" + }, + "step9": { + "value": "68.45", + "type": "fontSizes" + }, + "step10": { + "value": "79.41", + "type": "fontSizes" + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/context/product.json b/data/tokens/context/product.json new file mode 100644 index 00000000..f3546003 --- /dev/null +++ b/data/tokens/context/product.json @@ -0,0 +1,11 @@ +{ + "global": { + "space": { + "macroScale": { + "value": "1", + "type": "spacing", + "description": "included so that dev can build the product context token set (not needed for design purposes)" + } + } + } +} \ No newline at end of file diff --git a/data/tokens/global/borderwidth.json b/data/tokens/global/borderwidth.json new file mode 100644 index 00000000..bf1c895c --- /dev/null +++ b/data/tokens/global/borderwidth.json @@ -0,0 +1,39 @@ +{ + "global": { + "borderwidth": { + "scale": { + "value": "1", + "type": "borderWidth" + }, + "none": { + "value": "0", + "type": "borderWidth" + }, + "XS": { + "value": "{primitives.dimension.12} * {global.borderwidth.scale}", + "type": "borderWidth", + "description": "Buttons, Inputs. Dividing lines and container borders." + }, + "S": { + "value": "{primitives.dimension.25} * {global.borderwidth.scale}", + "type": "borderWidth", + "description": "Buttons. Step flow, Validation bars" + }, + "M": { + "value": "{primitives.dimension.38} * {global.borderwidth.scale}", + "type": "borderWidth", + "description": "Focus " + }, + "L": { + "value": "{primitives.dimension.50} * {global.borderwidth.scale}", + "type": "borderWidth", + "description": "Focus underline. Dividing lines. " + }, + "XL": { + "value": "{primitives.dimension.75} * {global.borderwidth.scale}", + "type": "borderWidth", + "description": "Double Focus Border" + } + } + } +} \ No newline at end of file diff --git a/data/tokens/global/radius.json b/data/tokens/global/radius.json new file mode 100644 index 00000000..748135db --- /dev/null +++ b/data/tokens/global/radius.json @@ -0,0 +1,108 @@ +{ + "global": { + "radius": { + "scale": { + "value": "1", + "type": "borderRadius", + "description": "We can override this to locally change the size of radius in the future if required." + }, + "none": { + "value": "0", + "type": "borderRadius", + "description": "Button groups (internal/adjacent corners), Card select group (internal/adjacent corners), File input (integrated base bar top corners)." + }, + "circle": { + "value": "999", + "type": "borderRadius", + "description": "CIRCLE. Badge, Calendar date (today indicator and selected), Carousel selector dots, Loader bar, Portrait, Progress tracker, Radio button, Step flow (step indicators), Switch, " + }, + "container": { + "XXS": { + "value": "{primitives.dimension.12} * {global.radius.scale}", + "type": "borderRadius", + "description": "Validation bar on input components" + }, + "XS": { + "value": "{primitives.dimension.25} * {global.radius.scale}", + "type": "borderRadius", + "description": "Pill" + }, + "S": { + "value": "{primitives.dimension.50} * {global.radius.scale}", + "type": "borderRadius" + }, + "SM": { + "value": "{primitives.dimension.75} * {global.radius.scale}", + "type": "borderRadius", + "description": "L size loader and tracker corners" + }, + "M": { + "value": "{primitives.dimension.100} * {global.radius.scale}", + "type": "borderRadius", + "description": "Card select group (outer corners), Card select (single), Color picker advanced (inner swatch container), File input (file uploads & integrated progress bar (bottom corners),  File preview (File selector assets on left), Link preview, Message, Note, Popover (menu container in Action popover, Button-split, Button-multi-action, Calendar, Dropdown), Subscription tile (currently a pattern), Table (parent container), Tile & Tile flexbox (less rounded), Toast, Tooltip" + }, + "L": { + "value": "{primitives.dimension.200} * {global.radius.scale}", + "type": "borderRadius", + "description": "Card (less rounded), Carousel (slides), Color picker advanced (parent container), File preview (parent container), Medium Tile & Tile flexbox, Medium Card." + }, + "XL": { + "value": "{primitives.dimension.300} * {global.radius.scale}", + "type": "borderRadius", + "description": "Card (more rounded), Copilot Container, Carousel (parent container), Dialog (not full screen), Large Tile & Tile flexbox, Large cards" + }, + "XXL": { + "value": "{primitives.dimension.400} * {global.radius.scale}", + "type": "borderRadius" + }, + "XXXL": { + "value": "{primitives.dimension.500} * {global.radius.scale}", + "type": "borderRadius", + "description": "marketing cards and tiles" + }, + "XXXXL": { + "value": "{primitives.dimension.1000} * {global.radius.scale}", + "type": "borderRadius", + "description": "marketing images " + } + }, + "interactive": { + "XS": { + "value": "{primitives.dimension.25} * {global.radius.scale}", + "type": "borderRadius", + "description": "Link (focus background and underline)" + }, + "XXS": { + "value": "{primitives.dimension.12} * {global.radius.scale}", + "type": "borderRadius", + "description": "Tab baseline." + }, + "S": { + "value": "{primitives.dimension.50} * {global.radius.scale}", + "type": "borderRadius", + "description": "S & M Checkboxes" + }, + "M": { + "value": "{primitives.dimension.100} * {global.radius.scale}", + "type": "borderRadius", + "description": "Button subtle, L Checkboxes, Date picker input, Date range input, Dropdown select (trigger), Search, File input (draggable area), Menu (bottom corners), Navigation: left (state bg shape), Skip focus, Tab, Text area, Text input," + }, + "L": { + "value": "{primitives.dimension.200} * {global.radius.scale}", + "type": "borderRadius", + "description": "Buttons S (typical and destructive, and inc bar, split and multi), Navigation left (collapsible Assets/Menu select top-right and bottom-right corners), " + }, + "XL": { + "value": "{primitives.dimension.250} * {global.radius.scale}", + "type": "borderRadius", + "description": "Buttons M (typical and destructive and inc bar split and multi), Button toggle M (parent container)" + }, + "XXL": { + "value": "{primitives.dimension.300} * {global.radius.scale}", + "type": "borderRadius", + "description": "Buttons L (typical and destructive and inc bar split and multi), Button toggle L (parent container)" + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/global/shadow.json b/data/tokens/global/shadow.json new file mode 100644 index 00000000..84a11e66 --- /dev/null +++ b/data/tokens/global/shadow.json @@ -0,0 +1,57 @@ +{ + "global": { + "boxshadow": { + "cleanedge": { + "near": { + "value": "{primitives.box-shadow.downward.0}", + "type": "boxShadow", + "description": "Popovers used in navigation" + } + }, + "container": { + "near": { + "value": "{primitives.box-shadow.downward.1}", + "type": "boxShadow", + "description": "Popover menus used on split, multiaction, dropdown and action popovers" + }, + "far": { + "value": "{primitives.box-shadow.downward.2}", + "type": "boxShadow", + "description": "Toasts" + }, + "distant": { + "value": "{primitives.box-shadow.downward.3}", + "type": "boxShadow", + "description": "Dialog, Menu, Sidebar " + }, + "sticky-footer": { + "value": "{primitives.box-shadow.upward.1}", + "type": "boxShadow", + "description": "Sticky footer on dialogs, drawer and sidebar" + }, + "solid-border": { + "value": "{primitives.box-shadow.solid.border}", + "type": "boxShadow", + "description": "Solid border using box shadow tokens when using the border property is not possible. " + } + }, + "interactive": { + "enabled": { + "value": "{primitives.box-shadow.downward.1}", + "type": "boxShadow", + "description": "Default card state" + }, + "hover": { + "value": "{primitives.box-shadow.downward.2}", + "type": "boxShadow", + "description": "Card hover state" + }, + "drag": { + "value": "{primitives.box-shadow.downward.3}", + "type": "boxShadow", + "description": "Card drag state" + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/global/size.json b/data/tokens/global/size.json new file mode 100644 index 00000000..e609c828 --- /dev/null +++ b/data/tokens/global/size.json @@ -0,0 +1,150 @@ +{ + "global": { + "size": { + "scale": { + "value": "1", + "type": "sizing" + }, + "none": { + "value": "{primitives.dimension.0}", + "type": "sizing" + }, + "container": { + "M": { + "value": "{primitives.dimension.3600}", + "type": "sizing", + "description": "Inside page margins full width component in smallest mobile screen." + }, + "L": { + "value": "{primitives.dimension.4000}", + "type": "sizing", + "description": "Full width component in smallest mobile screen." + } + }, + "icon": { + "S": { + "value": "{primitives.dimension.200} * {global.size.scale}", + "type": "sizing" + }, + "M": { + "value": "{primitives.dimension.250} * {global.size.scale}", + "type": "sizing" + }, + "L": { + "value": "{primitives.dimension.300} * {global.size.scale}", + "type": "sizing" + }, + "XL": { + "value": "{primitives.dimension.400} * {global.size.scale}", + "type": "sizing" + } + }, + "flex": { + "XXS": { + "value": "{primitives.dimension.1000}", + "type": "sizing" + }, + "XS": { + "value": "{primitives.dimension.1600}", + "type": "sizing" + }, + "S": { + "value": "{primitives.dimension.2000}", + "type": "sizing" + }, + "M": { + "value": "{primitives.dimension.2500}", + "type": "sizing" + }, + "L": { + "value": "{primitives.dimension.3000}", + "type": "sizing" + }, + "XL": { + "value": "{primitives.dimension.3600}", + "type": "sizing" + }, + "XXL": { + "value": "{primitives.dimension.4000}", + "type": "sizing" + }, + "XXXL": { + "value": "{primitives.dimension.7000}", + "type": "sizing" + }, + "XXXXL": { + "value": "{primitives.dimension.9500}", + "type": "sizing" + } + }, + "macro": { + "XXS": { + "value": "{primitives.dimension.200} * {global.size.scale}", + "type": "sizing" + }, + "XS": { + "value": "{primitives.dimension.300} * {global.size.scale}", + "type": "sizing" + }, + "S": { + "value": "{primitives.dimension.400} * {global.size.scale}", + "type": "sizing" + }, + "M": { + "value": "{primitives.dimension.500} * {global.size.scale}", + "type": "sizing" + }, + "L": { + "value": "{primitives.dimension.600} * {global.size.scale}", + "type": "sizing" + }, + "XL": { + "value": "{primitives.dimension.700} * {global.size.scale}", + "type": "sizing" + }, + "XXL": { + "value": "{primitives.dimension.800} * {global.size.scale}", + "type": "sizing" + }, + "XXXL": { + "value": "{primitives.dimension.900} * {global.size.scale}", + "type": "sizing" + }, + "XXXXL": { + "value": "{primitives.dimension.1500} * {global.size.scale}", + "type": "sizing" + } + }, + "micro": { + "XXS": { + "value": "{primitives.dimension.25} * {global.size.scale}", + "type": "sizing" + }, + "XS": { + "value": "{primitives.dimension.50} * {global.size.scale}", + "type": "sizing" + }, + "S": { + "value": "{primitives.dimension.75} * {global.size.scale}", + "type": "sizing" + }, + "M": { + "value": "{primitives.dimension.100} * {global.size.scale}", + "type": "sizing" + }, + "L": { + "value": "{primitives.dimension.125} * {global.size.scale}", + "type": "sizing" + }, + "XL": { + "value": "{primitives.dimension.150} * {global.size.scale}", + "type": "sizing" + }, + "XXL": { + "value": "{primitives.dimension.200} * {global.size.scale}", + "type": "sizing" + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/global/space.json b/data/tokens/global/space.json new file mode 100644 index 00000000..09025299 --- /dev/null +++ b/data/tokens/global/space.json @@ -0,0 +1,86 @@ +{ + "global": { + "space": { + "none": { + "value": "{primitives.dimension.0}", + "type": "spacing" + }, + "macroScale": { + "value": "1", + "type": "spacing" + }, + "microScale": { + "value": "1", + "type": "spacing" + }, + "micro": { + "XXS": { + "value": "{primitives.dimension.12} * {global.space.microScale}", + "type": "spacing" + }, + "XS": { + "value": "{primitives.dimension.25} * {global.space.microScale}", + "type": "spacing" + }, + "S": { + "value": "{primitives.dimension.50} * {global.space.microScale}", + "type": "spacing" + }, + "M": { + "value": "{primitives.dimension.75} * {global.space.microScale}", + "type": "spacing" + }, + "L": { + "value": "{primitives.dimension.100} * {global.space.microScale}", + "type": "spacing" + }, + "XL": { + "value": "{primitives.dimension.125} * {global.space.microScale}", + "type": "spacing" + }, + "XXL": { + "value": "{primitives.dimension.150} * {global.space.microScale}", + "type": "spacing" + } + }, + "macro": { + "XXXS": { + "value": "{primitives.dimension.100} * {global.space.macroScale}", + "type": "spacing" + }, + "XXS": { + "value": "{primitives.dimension.150} * {global.space.macroScale}", + "type": "spacing" + }, + "XS": { + "value": "{primitives.dimension.200} * {global.space.macroScale}", + "type": "spacing" + }, + "S": { + "value": "{primitives.dimension.250} * {global.space.macroScale}", + "type": "spacing" + }, + "M": { + "value": "{primitives.dimension.300} * {global.space.macroScale}", + "type": "spacing" + }, + "ML": { + "value": "{primitives.dimension.350} * {global.space.macroScale}", + "type": "spacing" + }, + "L": { + "value": "{primitives.dimension.400} * {global.space.macroScale}", + "type": "spacing" + }, + "XL": { + "value": "{primitives.dimension.500} * {global.space.macroScale}", + "type": "spacing" + }, + "XXL": { + "value": "{primitives.dimension.600} * {global.space.macroScale}", + "type": "spacing" + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/global/typography.json b/data/tokens/global/typography.json new file mode 100644 index 00000000..64f83d23 --- /dev/null +++ b/data/tokens/global/typography.json @@ -0,0 +1,852 @@ +{ + "global": { + "typography": { + "responsive": { + "heading": { + "S": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.bold}", + "lineHeight": "{primitives.lineHeights.400}", + "fontSize": "{primitives.fontSize.responsive.product.step2}" + }, + "type": "typography", + "description": "Small Viewports: 18.66, Large Viewports: 21.53" + }, + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.bold}", + "lineHeight": "{primitives.lineHeights.400}", + "fontSize": "{primitives.fontSize.responsive.product.step3}" + }, + "type": "typography", + "description": "Small Viewports: 20.16, Large Viewports: 24.97" + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.bold}", + "lineHeight": "{primitives.lineHeights.400}", + "fontSize": "{primitives.fontSize.responsive.product.step5}" + }, + "type": "typography", + "description": "Small Viewports: 23.51, Large Viewports: 33.61" + } + }, + "subheading": { + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step1}" + }, + "type": "typography", + "description": "Small Viewports: 17.28, Large Viewports: 18.56" + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step2}" + }, + "type": "typography", + "description": "Small Viewports: 18.66, Large Viewports: 21.53" + } + }, + "body": { + "S": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step0}", + "paragraphSpacing": "{primitives.paragraphSpacing.200}" + }, + "type": "typography", + "description": "Small Viewports: 16, Large Viewports: 16" + }, + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step1}", + "paragraphSpacing": "{primitives.paragraphSpacing.300}" + }, + "type": "typography", + "description": "Small Viewports: 17.28, Large Viewports: 18.56" + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step2}", + "paragraphSpacing": "{primitives.paragraphSpacing.300}" + }, + "type": "typography", + "description": "Small Viewports: 18.66, Large Viewports: 21.53" + } + }, + "component": { + "firm": { + "XS": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step-2}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 13.72, Large Viewports: 11.89" + }, + "S": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step-1}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 14.81, Large Viewports: 13.79. Match token size to component size." + }, + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step0}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 16, Large Viewports: 16. Match token size to component size." + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step1}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 17.28, Large Viewports: 18.56. Match token size to component size." + } + }, + "moderate": { + "XS": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step-1}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 13.72, Large Viewports: 11.89" + }, + "S": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step-1}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 14.81, Large Viewports: 13.79. Match token size to component size." + }, + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step0}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 16, Large Viewports: 16. Match token size to component size." + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step1}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 17.28, Large Viewports: 18.56. Match token size to component size." + } + }, + "icon": { + "S": { + "value": { + "fontSize": "{primitives.fontSize.icon.step0}", + "fontFamily": "{global.fontFamilies.sage-icons}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 20, Large Viewports: 20. " + }, + "M": { + "value": { + "fontSize": "{primitives.fontSize.icon.step0}", + "fontFamily": "{global.fontFamilies.sage-icons}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 20, Large Viewports: 20. " + }, + "L": { + "value": { + "fontSize": "{primitives.fontSize.icon.step0}", + "fontFamily": "{global.fontFamilies.sage-icons}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 20, Large Viewports: 20. " + } + }, + "underlined": { + "moderate": { + "S": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step-1}", + "textDecoration": "{primitives.textDecoration.underline}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 14.81, Large Viewports: 13.79. Match token size to component size." + }, + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step0}", + "textDecoration": "{primitives.textDecoration.underline}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 16, Large Viewports: 16. Match token size to component size." + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step1}", + "textDecoration": "{primitives.textDecoration.underline}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 17.28, Large Viewports: 18.56. Match token size to component size." + } + }, + "firm": { + "S": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step-1}", + "textDecoration": "{primitives.textDecoration.underline}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 14.81, Large Viewports: 13.79. Match token size to component size." + }, + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step0}", + "textDecoration": "{primitives.textDecoration.underline}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 16, Large Viewports: 16. Match token size to component size." + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step1}", + "textDecoration": "{primitives.textDecoration.underline}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 17.28, Large Viewports: 18.56. Match token size to component size." + } + } + }, + "placeholdertext": { + "XS": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step-2}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 13.72, Large Viewports: 11.89" + }, + "S": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step0}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 16, Large Viewports: 16" + }, + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step2}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 18.66, Large Viewports: 21.53" + }, + "ML": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step4}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 21.77, Large Viewports: 28.97" + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step6}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 25.39, Large Viewports: 38.98" + }, + "XL": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step8}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 29.61, Large Viewports: 52.45" + }, + "XXL": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{primitives.fontSize.responsive.product.step10}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 34.54, Large Viewports: 70.58" + } + }, + "notification": { + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.300}", + "fontSize": "{primitives.fontSize.responsive.product.step-2}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "used for badge text - notifications on buttons and in global nav" + } + } + } + }, + "adaptive": { + "heading": { + "S": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.bold}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step2}" + }, + "type": "typography" + }, + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.bold}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step3}" + }, + "type": "typography" + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.bold}", + "lineHeight": "{primitives.lineHeights.400}", + "fontSize": "{global.fontSize.adaptive.step5}" + }, + "type": "typography" + } + }, + "subheading": { + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step1}" + }, + "type": "typography" + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step2}" + }, + "type": "typography", + "description": "Small Viewports: 18.66, Large Viewports: 21.53" + } + }, + "body": { + "S": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step0}", + "paragraphSpacing": "{primitives.paragraphSpacing.200}" + }, + "type": "typography", + "description": "Small Viewports: 16, Large Viewports: 16" + }, + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step1}", + "paragraphSpacing": "{primitives.paragraphSpacing.300}" + }, + "type": "typography", + "description": "Small Viewports: 17.28, Large Viewports: 18.56" + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-text}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step2}", + "paragraphSpacing": "{primitives.paragraphSpacing.300}" + }, + "type": "typography", + "description": "Small Viewports: 18.66, Large Viewports: 21.53" + } + }, + "component": { + "firm": { + "XS": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step-2}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 13.72, Large Viewports: 11.89. Match token size to component size." + }, + "S": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step-1}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 14.81, Large Viewports: 13.79. Match token size to component size." + }, + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step0}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 16, Large Viewports: 16. Match token size to component size." + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step1}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 17.28, Large Viewports: 18.56. Match token size to component size." + } + }, + "moderate": { + "XS": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step-2}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 13.72, Large Viewports: 11.89. Match token size to component size." + }, + "S": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step-1}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 14.81, Large Viewports: 13.79. Match token size to component size." + }, + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step0}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 16, Large Viewports: 16. Match token size to component size." + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step1}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 17.28, Large Viewports: 18.56. Match token size to component size." + } + }, + "icon": { + "S": { + "value": { + "fontSize": "{primitives.fontSize.icon.step0}", + "fontFamily": "{global.fontFamilies.sage-icons}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 20, Large Viewports: 20. " + }, + "M": { + "value": { + "fontSize": "{primitives.fontSize.icon.step0}", + "fontFamily": "{global.fontFamilies.sage-icons}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 20, Large Viewports: 20. " + }, + "L": { + "value": { + "fontSize": "{primitives.fontSize.icon.step0}", + "fontFamily": "{global.fontFamilies.sage-icons}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 20, Large Viewports: 20. " + } + }, + "underlined": { + "moderate": { + "S": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step-1}", + "textDecoration": "{primitives.textDecoration.underline}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 14.81, Large Viewports: 13.79. Match token size to component size." + }, + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step0}", + "textDecoration": "{primitives.textDecoration.underline}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 16, Large Viewports: 16. Match token size to component size." + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.regular}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step1}", + "textDecoration": "{primitives.textDecoration.underline}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 17.28, Large Viewports: 18.56. Match token size to component size." + } + }, + "firm": { + "S": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step-1}", + "textDecoration": "{primitives.textDecoration.underline}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 14.81, Large Viewports: 13.79. Match token size to component size." + }, + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step0}", + "textDecoration": "{primitives.textDecoration.underline}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 16, Large Viewports: 16. Match token size to component size." + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step1}", + "textDecoration": "{primitives.textDecoration.underline}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 17.28, Large Viewports: 18.56. Match token size to component size." + } + } + }, + "placeholdertext": { + "XS": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step-2}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 13.72, Large Viewports: 11.89" + }, + "S": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step0}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 16, Large Viewports: 16" + }, + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step2}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 18.66, Large Viewports: 21.53" + }, + "ML": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step4}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 21.77, Large Viewports: 28.97" + }, + "L": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step6}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 25.39, Large Viewports: 38.98" + }, + "XL": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step8}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 29.61, Large Viewports: 52.45" + }, + "XXL": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.500}", + "fontSize": "{global.fontSize.adaptive.step10}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "Small Viewports: 34.54, Large Viewports: 70.58" + } + }, + "notification": { + "M": { + "value": { + "fontFamily": "{global.fontFamilies.sage-ui}", + "fontWeight": "{primitives.fontWeights.medium}", + "lineHeight": "{primitives.lineHeights.300}", + "fontSize": "{global.fontSize.adaptive.step-2}", + "paragraphSpacing": "{primitives.paragraphSpacing.0}" + }, + "type": "typography", + "description": "used for badge text - notifications on buttons and in global nav" + } + } + } + } + }, + "fontSize": { + "adaptive": { + "step-2": { + "value": "12", + "type": "fontSizes" + }, + "step-1": { + "value": "14", + "type": "fontSizes" + }, + "step0": { + "value": "16", + "type": "fontSizes" + }, + "step1": { + "value": "19", + "type": "fontSizes" + }, + "step2": { + "value": "22", + "type": "fontSizes" + }, + "step3": { + "value": "25", + "type": "fontSizes" + }, + "step4": { + "value": "29", + "type": "fontSizes" + }, + "step5": { + "value": "34", + "type": "fontSizes" + }, + "step6": { + "value": "39", + "type": "fontSizes" + }, + "step7": { + "value": "45", + "type": "fontSizes" + }, + "step8": { + "value": "52", + "type": "fontSizes" + }, + "step9": { + "value": "61", + "type": "fontSizes" + }, + "step10": { + "value": "71", + "type": "fontSizes" + } + } + }, + "fontFamilies": { + "sage-icons": { + "value": "sage-icons", + "type": "fontFamilies" + }, + "sage-headline": { + "value": "Sage Headline", + "type": "fontFamilies", + "description": "Used in only in marketing contexts for some headings." + }, + "sage-ui": { + "value": "Sage UI", + "type": "fontFamilies", + "description": "Used in componentry such as tables, buttons, inputs etc." + }, + "sage-text": { + "value": "Sage Text", + "type": "fontFamilies", + "description": "Used for Headings in product and in marketing contexts. Marketing also use it for their body copy." + }, + "other": { + "value": "Open Sans", + "type": "fontFamilies", + "description": "Fallback for when Sage fonts cannot load." + } + } + } +} \ No newline at end of file diff --git a/data/tokens/modes/dark.json b/data/tokens/modes/dark.json new file mode 100644 index 00000000..790a0163 --- /dev/null +++ b/data/tokens/modes/dark.json @@ -0,0 +1,1564 @@ +{ + "modes": { + "color": { + "none": { + "value": "{primitives.colors.white}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0", + "space": "lch" + } + } + } + }, + "brand": { + "default": { + "value": "{primitives.colors.brilliantGreen}", + "type": "color" + }, + "defaultAlt": { + "value": "{primitives.colors.white}", + "type": "color" + }, + "withDefaultAlt": { + "value": "{primitives.colors.black}", + "type": "color" + }, + "copilot": { + "AIIdentifier": { + "default": { + "value": "{primitives.colors.white}", + "type": "color" + }, + "withDefault": { + "value": "{primitives.colors.brilliantGreen}", + "type": "color" + } + }, + "noBg": { + "S": { + "value": "linear-gradient(191deg, #9D60FF 28.12%, #7C78F8 33.5%, #29B7E6 46.96%, #00D6DE 52.34%, #00D6DA 55.03%, #00D6D0 56.83%, #00D6C0 57.73%, #00D6A8 59.52%, #00D68A 60.42%, #00D665 62.21%, #00D639 63.11%)", + "type": "color" + }, + "star": { + "value": "radial-gradient(99.94% 104.1% at 8.01% 0.98%, #9D60FF 34%, #5A99F1 52%, #32B3E8 59%, #0DCCE0 68%, #00D6DE 72%, #00D6D7 74%, #00D6C6 77%, #00D6AA 81%, #00D682 84%, #00D650 88%, #00D639 90%)", + "type": "color" + }, + "mono": { + "value": "{primitives.colors.white}", + "type": "color" + } + }, + "withBg": { + "S": { + "value": "{primitives.colors.black}", + "type": "color" + }, + "star": { + "value": "{primitives.colors.black}", + "type": "color" + }, + "bg": { + "value": "{primitives.colors.white}", + "type": "color" + } + } + } + }, + "custom": { + "default": { + "value": "{primitives.colors.brilliantGreen}", + "type": "color", + "description": "This is the color to replace in white label products. Dark mode recommended luminosity for SAGE is 75.1 (tested), but above 51.9 should be ok. See hsluv.org to be AAA text on 000000 bgs." + }, + "frozen": { + "value": "{primitives.colors.brilliantGreen}", + "type": "color", + "description": "Replace this color in white label products that use the FROZEN theme. Ensure luminousity of custom color = 46.8 (see hsluv.org). AAA against FFFFFF bg." + } + }, + "generic": { + "bg": { + "nought": { + "value": "{primitives.colors.black}", + "type": "color" + }, + "faint": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.04", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + } + }, + "delicate": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.08", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + } + }, + "soft": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.117", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + } + }, + "moderate": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.16", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + } + }, + "firm": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.24", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + } + }, + "harsh": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.32", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + } + }, + "severe": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.40", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + } + }, + "extreme": { + "value": "{primitives.colors.white}", + "type": "color", + "description": "Consumed within generic monochrome, progress" + }, + "frozen": { + "delicate": { + "value": "{primitives.colors.navy}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.98", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + }, + "description": "Consumed within frozen table" + }, + "soft": { + "value": "{primitives.colors.navy}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.96", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + }, + "description": "Consumed within frozen table" + } + } + }, + "content": { + "extreme": { + "value": "{primitives.colors.white}", + "type": "color" + }, + "harsh": { + "value": "{modes.color.generic.content.extreme}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.95", + "space": "lch" + } + } + } + }, + "firm": { + "value": "{modes.color.generic.content.extreme}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.67", + "space": "lch" + } + } + } + }, + "moderate": { + "value": "{modes.color.generic.content.extreme}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.55", + "space": "lch" + } + } + }, + "description": "was 0.5. Increased to 0.55 so that we can use this for hint text etc too, and still be accessible." + }, + "muted": { + "value": "{modes.color.generic.content.extreme}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.42", + "space": "lch" + } + } + }, + "description": "accessible OBJECT against white." + }, + "soft": { + "value": "{modes.color.generic.content.extreme}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.3", + "space": "lch" + } + } + }, + "description": "Used for disabled text" + }, + "nought": { + "value": "{modes.color.modifier.contrastLess}", + "type": "color" + } + }, + "fg": { + "nought": { + "value": "{modes.color.modifier.contrastLess}", + "type": "color" + }, + "faint": { + "value": "{modes.color.generic.fg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.08", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + }, + "description": "table dividers and borders" + }, + "delicate": { + "value": "{modes.color.generic.fg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.16", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + }, + "description": "table dividers and borders" + }, + "soft": { + "value": "{modes.color.generic.fg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.32", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + } + }, + "moderate": { + "value": "{modes.color.generic.fg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.50", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + } + } + }, + "backdrop": { + "nought": { + "value": "{primitives.colors.black}", + "type": "color", + "description": "used on full page backgrounds" + }, + "faint": { + "value": "{primitives.colors.black}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.08", + "space": "lch", + "color": "{modes.color.modifier.contrastLess} " + } + } + }, + "description": "used on full page backgrounds as an alternative option" + } + } + }, + "interactive": { + "ai": { + "active": { + "value": "linear-gradient(90deg, #00D63926 0%, #00d6de26 40%, #9d60ff26 90%)", + "type": "color" + }, + "hover": { + "value": "linear-gradient(90deg, #00D63914 0%, #00d6de14 40%, #9d60ff14 90%)", + "type": "color" + }, + "default": { + "value": "{primitives.colors.lightAiH}", + "type": "color" + } + }, + "danger": { + "active": { + "value": "{modes.color.interactive.danger.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.active}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + }, + "description": "active button on dark" + }, + "default": { + "value": "{primitives.colors.blush}", + "type": "color" + }, + "defaultAlt": { + "value": "{modes.color.interactive.danger.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.12", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + }, + "description": "for links in datatables " + }, + "hover": { + "value": "{modes.color.interactive.danger.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hover} ", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + } + }, + "hoverAlt": { + "value": "{modes.color.interactive.danger.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "{modes.color.modifiers.button.hover} ", + "space": "lch" + } + } + }, + "description": "button hover on dark" + }, + "hoverAlt2": { + "value": "{modes.color.interactive.danger.defaultAlt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hoverAlt} ", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + }, + "description": "for links in datatables" + }, + "withActive": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + }, + "withDefault": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + } + }, + "dataEntry": { + "default": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "description": "Input backgrounds." + }, + "withActive": { + "value": "{modes.color.generic.content.extreme}", + "type": "color", + "description": "checkbox tick icon or radio handle" + }, + "withActiveAlt": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + }, + "withHover": { + "value": "{modes.color.generic.content.extreme}", + "type": "color", + "description": "text for draggable area on file input" + }, + "hoverAlt": { + "value": "{modes.color.interactive.dataEntry.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hoverAlt} ", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + }, + "description": "bg hover for draggable area on file input" + }, + "withDefault": { + "value": "{modes.color.generic.fg.moderate}", + "type": "color", + "description": "Input borders." + }, + "defaultAlt": { + "value": "{modes.color.generic.bg.faint}", + "type": "color", + "description": "Input footer bgs (e.g text editor)." + }, + "content": { + "value": "{modes.color.generic.content.harsh}", + "type": "color", + "description": "Input Text" + }, + "contentAlt": { + "value": "{modes.color.generic.content.moderate}", + "type": "color", + "description": "Hint text, placeholder text, character count etc" + }, + "frozen": { + "withDefault": { + "value": "{modes.color.generic.fg.moderate}", + "type": "color", + "description": "Input borders." + } + } + }, + "focus": { + "withDefault": { + "value": "{primitives.colors.black}", + "type": "color" + }, + "content": { + "value": "{modes.color.generic.content.extreme}", + "type": "color" + }, + "withDefaultAlt": { + "value": "{primitives.colors.gold}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.4", + "space": "lch", + "color": "{modes.color.modifier.contrastLess} " + } + } + } + }, + "default": { + "value": "{primitives.colors.gold}", + "type": "color" + } + }, + "inactive": { + "default": { + "value": "{modes.color.generic.fg.soft}", + "type": "color", + "description": "disabled buttons on dark" + }, + "mask": { + "value": "{modes.color.modifier.contrastMore}", + "type": "color", + "description": "full screen takeover token for modal dimmer" + }, + "defaultAlt": { + "value": "{modes.color.generic.bg.faint}", + "type": "color", + "description": "Disabled button backgrounds and borders ON DARK" + }, + "content": { + "value": "{modes.color.generic.content.soft}", + "type": "color", + "description": "Disabled text inside buttons" + }, + "contentAlt": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + }, + "icon": { + "value": "{modes.color.generic.content.soft}", + "type": "color", + "description": "Disabled icon inside buttons and form inputs." + }, + "iconAlt": { + "value": "{modes.color.generic.content.moderate}", + "type": "color", + "description": "Readonly icon inside form inputs. " + }, + "frozen": { + "defaultAlt": { + "value": "{modes.color.interactive.inactive.defaultAlt}", + "type": "color", + "description": "Disabled input and button backgrounds, button borders and input backgrounds." + } + } + }, + "monochrome": { + "frozen": { + "active": { + "value": "{primitives.colors.white}", + "type": "color" + }, + "activeAlt": { + "value": "{modes.color.interactive.monochrome.frozen.active}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "{modes.color.modifiers.button.activeAlt} ", + "space": "lch" + } + } + } + }, + "default": { + "value": "{modes.color.interactive.monochrome.frozen.active}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.9", + "space": "lch" + } + } + } + }, + "defaultAlt": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.67", + "space": "lch" + } + } + } + }, + "hoverAlt": { + "value": "{modes.color.interactive.monochrome.frozen.active}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "{modes.color.modifiers.button.hoverAlt} ", + "space": "lch" + } + } + } + }, + "withActive": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + }, + "withHover": { + "value": "{modes.color.interactive.monochrome.frozen.active}", + "type": "color" + }, + "withHoverAlt": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + } + }, + "generic": { + "active": { + "value": "{primitives.colors.white}", + "type": "color" + }, + "activeAlt": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "{modes.color.modifiers.button.activeAlt}", + "space": "lch" + } + } + } + }, + "default": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.9", + "space": "lch" + } + } + } + }, + "defaultAlt": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.67", + "space": "lch" + } + } + }, + "description": "subtle and toggle button text" + }, + "hoverAlt": { + "value": "{modes.color.generic.bg.extreme}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "{modes.color.modifiers.button.hoverAlt}", + "space": "lch" + } + } + }, + "description": "Accordion, secondary, tertiary, menu bg on hover" + }, + "hover": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "{modes.color.modifiers.button.hover} ", + "space": "lch" + } + } + }, + "description": "subtle table header hover" + }, + "withActive": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + }, + "withActiveAlt": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + }, + "withDefault": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + }, + "withHover": { + "value": "{modes.color.generic.content.extreme}", + "type": "color" + }, + "frozen": { + "active": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color", + "description": "Used within frozen table" + } + } + }, + "marketing": { + "withActive": { + "value": "{primitives.colors.black}", + "type": "color", + "description": "use for marketing overrides for switch handle on standard" + }, + "active": { + "value": "{primitives.colors.brilliantGreen}", + "type": "color", + "description": "needed for specific marketing usecase on light bg" + } + }, + "subtle": { + "defaultAlt": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.50", + "space": "lch" + } + } + }, + "description": "border color for off switches" + }, + "default": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.08", + "space": "lch" + } + } + }, + "description": "subtle table header hover" + } + } + }, + "primary": { + "active": { + "value": "{modes.color.interactive.primary.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.active} ", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + } + }, + "default": { + "value": "{modes.color.custom.default}", + "type": "color" + }, + "defaultAlt": { + "value": "{modes.color.interactive.primary.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.link.enabled}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + }, + "description": "for links" + }, + "hover": { + "value": "{modes.color.interactive.primary.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hover} ", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + } + }, + "hoverAlt": { + "value": "{modes.color.interactive.primary.defaultAlt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.link.hover}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + }, + "description": "for link hover " + }, + "withActive": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + }, + "withDefault": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + }, + "withHover": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + }, + "frozen": { + "active": { + "value": "{modes.color.interactive.primary.frozen.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.active} ", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + } + }, + "default": { + "value": "{modes.color.custom.default}", + "type": "color" + }, + "defaultAlt": { + "value": "{modes.color.interactive.primary.frozen.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.link.enabled}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + } + }, + "hover": { + "value": "{modes.color.interactive.primary.frozen.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hover} ", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + } + }, + "hoverAlt": { + "value": "{modes.color.interactive.primary.frozen.defaultAlt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.link.hover} ", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + }, + "description": "for link hover" + }, + "nav": { + "hover": { + "value": "{modes.color.interactive.monochrome.generic.withHover}", + "type": "color" + }, + "label-hover": { + "value": "{modes.color.interactive.monochrome.generic.withHover}", + "type": "color" + } + }, + "table": { + "default": { + "value": "{primitives.colors.navy}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.64", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + } + } + } + } + }, + "progress": { + "bg": { + "value": "{modes.color.generic.bg.extreme}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.08", + "space": "lch" + } + } + } + }, + "bgAlt": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.08", + "space": "lch" + } + } + } + }, + "frozen": { + "bg": { + "value": "{modes.color.interactive.progress.bg}", + "type": "color" + } + } + } + }, + "status": { + "ai": { + "default": { + "value": "{modes.color.generic.bg.nought}", + "type": "color" + }, + "defaultAlt": { + "value": "{modes.color.generic.bg.extreme}", + "type": "color", + "description": "bg for contextual message comp" + }, + "default-horizontal": { + "value": "{primitives.colors.lightAiH}", + "type": "color" + }, + "default-vertical": { + "value": "{primitives.colors.lightAiV}", + "type": "color" + } + }, + "generic": { + "default": { + "value": "{primitives.colors.petrol}", + "type": "color" + } + }, + "caution": { + "alt": { + "value": "{primitives.colors.tangerine}", + "type": "color" + }, + "default": { + "value": "{primitives.colors.tangerineBurnt}", + "type": "color" + }, + "defaultAlt": { + "value": "{primitives.colors.tangerineBurnt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.85", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + }, + "description": "Subtle message bg" + }, + "hover": { + "value": "{modes.color.status.caution.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hover}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states" + }, + "hoverAlt": { + "value": "{modes.color.status.caution.defaultAlt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hoverAlt}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states and message bg" + }, + "text": { + "value": "{primitives.colors.tangerine}", + "type": "color" + }, + "frozen": { + "default": { + "value": "{modes.color.status.caution.defaultAlt}", + "type": "color", + "description": "Global message bg" + } + } + }, + "content": { + "withDefault": { + "value": "{modes.color.generic.content.extreme}", + "type": "color" + }, + "withDefaultAlt": { + "value": "{modes.color.generic.content.harsh}", + "type": "color" + }, + "withHover": { + "value": "{modes.color.generic.content.nought}", + "type": "color" + }, + "withHoverAlt": { + "value": "{modes.color.generic.content.extreme}", + "type": "color" + }, + "loading": { + "value": "linear-gradient(135deg, #FFFFFF5C 0%, #FFFFFF0A 100%)", + "type": "color", + "description": "used on skeleton text" + } + }, + "inactive": { + "default": { + "value": "{modes.color.generic.fg.soft}", + "type": "color", + "description": "For readonly pill bg and border" + }, + "withDefault": { + "value": "{modes.color.generic.content.firm}", + "type": "color", + "description": "For readonly filled pill text" + } + }, + "info": { + "alt": { + "value": "{primitives.colors.azure}", + "type": "color" + }, + "default": { + "value": "{primitives.colors.azureBurnt}", + "type": "color" + }, + "defaultAlt": { + "value": "{primitives.colors.azureBurnt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.85", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + }, + "description": "Subtle message bg" + }, + "hover": { + "value": "{modes.color.status.info.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hover}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states" + }, + "hoverAlt": { + "value": "{modes.color.status.info.defaultAlt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hoverAlt} ", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states and message bg" + }, + "frozen": { + "default": { + "value": "{modes.color.status.info.defaultAlt}", + "type": "color", + "description": "Global message bg" + } + } + }, + "negative": { + "alt": { + "value": "{primitives.colors.blush}", + "type": "color" + }, + "default": { + "value": "{primitives.colors.blushBurnt}", + "type": "color" + }, + "defaultAlt": { + "value": "{primitives.colors.blushBurnt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.85", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + }, + "description": "Subtle message bg" + }, + "hover": { + "value": "{modes.color.status.negative.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hover}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states" + }, + "hoverAlt": { + "value": "{modes.color.status.negative.defaultAlt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hoverAlt} ", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states and message bg" + }, + "text": { + "value": "{primitives.colors.blush}", + "type": "color" + } + }, + "neutral": { + "alt": { + "value": "{primitives.colors.smoke}", + "type": "color" + }, + "default": { + "value": "{primitives.colors.smokeBurnt}", + "type": "color" + }, + "defaultAlt": { + "value": "{primitives.colors.smokeBurnt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.85", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + }, + "description": "Subtle message bg" + }, + "hover": { + "value": "{modes.color.status.neutral.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hover}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states" + }, + "hoverAlt": { + "value": "{modes.color.status.neutral.defaultAlt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hoverAlt} ", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states and message bg" + }, + "frozen": { + "default": { + "value": "{modes.color.status.neutral.alt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.27", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + } + }, + "hover": { + "value": "{modes.color.status.neutral.hover}", + "type": "color" + } + } + }, + "positive": { + "alt": { + "value": "{primitives.colors.verdant}", + "type": "color" + }, + "default": { + "value": "{primitives.colors.verdantBurnt}", + "type": "color" + }, + "defaultAlt": { + "value": "{primitives.colors.verdantBurnt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.85", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + }, + "description": "Subtle message bg" + }, + "hover": { + "value": "{modes.color.status.positive.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hoverAlt}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states" + }, + "hoverAlt": { + "value": "{modes.color.status.positive.defaultAlt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hoverAlt}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states and message bg" + } + }, + "callout": { + "defaultAlt": { + "value": "{modes.color.modifier.contrastLess}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.15", + "space": "lch", + "color": "{primitives.colors.brilliantGreen}" + } + } + }, + "description": "used for marketing banners" + }, + "hoverAlt": { + "value": "{modes.color.status.callout.defaultAlt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hoverAlt} ", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + }, + "description": "marketing banner hover" + } + }, + "reviews": { + "default": { + "value": "{modes.color.custom.default}", + "type": "color" + }, + "defaultAlt": { + "value": "linear-gradient(90deg, {modes.color.custom.default} 0%, {modes.color.custom.default} 50%, {modes.color.generic.bg.moderate} 50%, {modes.color.generic.bg.moderate} 100%)", + "type": "color" + }, + "hover": { + "value": "{modes.color.custom.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hover}", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + }, + "description": "used on pill hover states" + }, + "frozen": { + "default": { + "value": "{modes.color.custom.frozen}", + "type": "color" + }, + "defaultAlt": { + "value": "linear-gradient(90deg, {modes.color.custom.frozen} 0%, {modes.color.custom.frozen} 50%, {modes.color.generic.bg.moderate} 50%, {modes.color.generic.bg.moderate} 100%)", + "type": "color" + }, + "hover": { + "value": "{modes.color.custom.frozen}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hover}", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + }, + "description": "used on pill hover states" + } + } + } + }, + "modifier": { + "contrastLess": { + "value": "{primitives.colors.black}", + "type": "color" + }, + "contrastMore": { + "value": "{primitives.colors.white}", + "type": "color" + } + }, + "modifiers": { + "button": { + "active": { + "value": "0.32", + "type": "other", + "description": "Active modifier used when 16% hover is used" + }, + "activeAlt": { + "value": "0.16", + "type": "other", + "description": "Active appled when 8% hover is used" + }, + "hover": { + "value": "0.16", + "type": "other", + "description": "Hover used on primary buttons" + }, + "hoverAlt": { + "value": "0.08", + "type": "other", + "description": "Hover used on secondary and tertiary buttons" + } + }, + "input": { + "disabledBg": { + "value": "0.04", + "type": "other", + "description": "less contrast" + }, + "disabledFg": { + "value": "0.30", + "type": "other", + "description": "less contrast" + } + }, + "link": { + "enabled": { + "value": "0.12", + "type": "other", + "description": "for links - these need to be slightly darker than buttons for accessible contrast ratio in tables." + }, + "hover": { + "value": "{modes.color.modifiers.button.hoverAlt}", + "type": "other" + } + }, + "shadow": { + "standard": { + "value": "0.5", + "type": "other", + "description": "standard mixer for shadow" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/modes/light.json b/data/tokens/modes/light.json new file mode 100644 index 00000000..b1f17de3 --- /dev/null +++ b/data/tokens/modes/light.json @@ -0,0 +1,1621 @@ +{ + "modes": { + "color": { + "none": { + "value": "{primitives.colors.white}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0", + "space": "lch" + } + } + } + }, + "brand": { + "default": { + "value": "{primitives.colors.black}", + "type": "color" + }, + "defaultAlt": { + "value": "{primitives.colors.black}", + "type": "color" + }, + "withDefaultAlt": { + "value": "{primitives.colors.white}", + "type": "color" + }, + "copilot": { + "AIIdentifier": { + "default": { + "value": "{primitives.colors.black}", + "type": "color" + }, + "withDefault": { + "value": "{primitives.colors.brilliantGreen}", + "type": "color" + } + }, + "noBg": { + "S": { + "value": "{primitives.colors.black}", + "type": "color" + }, + "star": { + "value": "{primitives.colors.black}", + "type": "color" + }, + "mono": { + "value": "{primitives.colors.black}", + "type": "color" + } + }, + "withBg": { + "S": { + "value": "linear-gradient(191deg, #9D60FF 28.12%, #7C78F8 33.5%, #29B7E6 46.96%, #00D6DE 52.34%, #00D6DA 55.03%, #00D6D0 56.83%, #00D6C0 57.73%, #00D6A8 59.52%, #00D68A 60.42%, #00D665 62.21%, #00D639 63.11%)", + "type": "color" + }, + "star": { + "value": "radial-gradient(99.94% 104.1% at 8.01% 0.98%, #9D60FF 34%, #5A99F1 52%, #32B3E8 59%, #0DCCE0 68%, #00D6DE 72%, #00D6D7 74%, #00D6C6 77%, #00D6AA 81%, #00D682 84%, #00D650 88%, #00D639 90%)", + "type": "color" + }, + "bg": { + "value": "{primitives.colors.black}", + "type": "color" + } + } + } + }, + "custom": { + "default": { + "value": "{primitives.colors.emerald}", + "type": "color", + "description": "This is the color to replace in white label products. Ensure luminousity of custom color = 46.8 (see hsluv.org). AAA against FFFFFF bg. " + }, + "frozen": { + "value": "{primitives.colors.frozenJade}", + "type": "color", + "description": "This is a derivative of Jade, and is the color to replace in white label products that use the FROZEN theme. Ensure luminousity of custom color = 46.8 (see hsluv.org). AAA against FFFFFF bg." + } + }, + "generic": { + "bg": { + "nought": { + "value": "{primitives.colors.white}", + "type": "color" + }, + "faint": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.04", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + } + }, + "delicate": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.08", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + } + }, + "soft": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.117", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + } + }, + "moderate": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.16", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + } + }, + "firm": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.24", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + } + }, + "harsh": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.32", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + } + }, + "severe": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.40", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + } + }, + "extreme": { + "value": "{primitives.colors.black}", + "type": "color", + "description": "Consumed within generic monochrome, progress" + }, + "frozen": { + "soft": { + "value": "{primitives.colors.navy}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.94", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + }, + "description": "Consumed within frozen table" + }, + "delicate": { + "value": "{primitives.colors.navy}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.98", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + }, + "description": "Consumed within frozen table" + } + } + }, + "content": { + "extreme": { + "value": "{primitives.colors.black}", + "type": "color" + }, + "harsh": { + "value": "{modes.color.generic.content.extreme}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.95", + "space": "lch" + } + } + } + }, + "firm": { + "value": "{modes.color.generic.content.extreme}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.67", + "space": "lch" + } + } + } + }, + "moderate": { + "value": "{modes.color.generic.content.extreme}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.55", + "space": "lch" + } + } + }, + "description": "was 0.5. Increased to 0.55 so that we can use this for hint text etc too, and still be accessible." + }, + "muted": { + "value": "{modes.color.generic.content.extreme}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.42", + "space": "lch" + } + } + }, + "description": "accessible OBJECT against white." + }, + "soft": { + "value": "{modes.color.generic.content.extreme}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.32", + "space": "lch" + } + } + }, + "description": "Used for disabled text" + }, + "nought": { + "value": "{modes.color.modifier.contrastLess}", + "type": "color", + "description": "pill hover X" + } + }, + "fg": { + "nought": { + "value": "{modes.color.modifier.contrastLess}", + "type": "color" + }, + "faint": { + "value": "{modes.color.generic.fg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.08", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + }, + "description": "used for dividers" + }, + "delicate": { + "value": "{modes.color.generic.fg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.16", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + }, + "description": "table dividers and borders" + }, + "soft": { + "value": "{modes.color.generic.fg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.32", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + } + }, + "moderate": { + "value": "{modes.color.generic.fg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.50", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + } + } + }, + "backdrop": { + "nought": { + "value": "{primitives.colors.white}", + "type": "color", + "description": "used on full page backgrounds" + }, + "faint": { + "value": "{modes.color.generic.backdrop.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.04", + "space": "lch", + "color": "{primitives.colors.navy}" + } + } + }, + "description": "used on full page backgrounds as an alternative option" + } + } + }, + "interactive": { + "ai": { + "active": { + "value": "linear-gradient(90deg, #13A03826 0%, #14919726 40%, #a87cfb26 90%)", + "type": "color" + }, + "hover": { + "value": "linear-gradient(90deg, #13A03814 0%, #14919714 40%, #a87cfb14 90%)", + "type": "color" + }, + "default": { + "value": "{primitives.colors.aiH}", + "type": "color" + } + }, + "danger": { + "active": { + "value": "{modes.color.interactive.danger.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.active}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states" + }, + "default": { + "value": "{primitives.colors.red}", + "type": "color" + }, + "defaultAlt": { + "value": "{modes.color.interactive.danger.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.12", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "For links in datatables" + }, + "hover": { + "value": "{modes.color.interactive.danger.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hover} ", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on solid-pill and primary-button hover states" + }, + "hoverAlt": { + "value": "{modes.color.interactive.danger.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "{modes.color.modifiers.button.hover} ", + "space": "lch" + } + } + }, + "description": "used on outlined-pill and secondary-button hover states" + }, + "hoverAlt2": { + "value": "{modes.color.interactive.danger.defaultAlt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hoverAlt} ", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on link hover state" + }, + "withActive": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + }, + "withDefault": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + } + }, + "dataEntry": { + "default": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "description": "Input backgrounds." + }, + "withActive": { + "value": "{modes.color.generic.content.extreme}", + "type": "color", + "description": "checkbox tick icon or radio handle" + }, + "withActiveAlt": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + }, + "withHover": { + "value": "{modes.color.generic.content.extreme}", + "type": "color", + "description": "text for draggable area on file input" + }, + "hoverAlt": { + "value": "{modes.color.interactive.dataEntry.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hoverAlt} ", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "bg hover for draggable area on file input" + }, + "withDefault": { + "value": "{modes.color.generic.fg.moderate}", + "type": "color", + "description": "Input borders." + }, + "defaultAlt": { + "value": "{modes.color.generic.bg.faint}", + "type": "color", + "description": "Input footer bgs (e.g text editor)." + }, + "content": { + "value": "{modes.color.generic.content.harsh}", + "type": "color", + "description": "Input Text" + }, + "contentAlt": { + "value": "{modes.color.generic.content.moderate}", + "type": "color", + "description": "Hint text, placeholder text, character count etc" + }, + "frozen": { + "withDefault": { + "value": "{primitives.colors.navy}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.27", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + }, + "description": "Input borders." + } + } + }, + "focus": { + "withDefault": { + "value": "{primitives.colors.gold}", + "type": "color" + }, + "withDefaultAlt": { + "value": "{primitives.colors.gold}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.4", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + } + }, + "default": { + "value": "{primitives.colors.black}", + "type": "color" + }, + "content": { + "value": "{modes.color.generic.content.extreme}", + "type": "color" + } + }, + "inactive": { + "default": { + "value": "{modes.color.generic.fg.soft}", + "type": "color", + "description": "Disabled form input borders." + }, + "mask": { + "value": "{modes.color.generic.bg.extreme}", + "type": "color", + "description": "full screen takeover token for modal dimmer" + }, + "defaultAlt": { + "value": "{modes.color.generic.bg.faint}", + "type": "color", + "description": "Disabled input and button backgrounds, button borders and input backgrounds." + }, + "content": { + "value": "{modes.color.generic.content.muted}", + "type": "color", + "description": "Disabled text inside buttons and form inputs." + }, + "contentAlt": { + "value": "{modes.color.generic.fg.nought}", + "type": "color", + "description": " Disabled labels inside buttons and Switch." + }, + "icon": { + "value": "{modes.color.generic.content.soft}", + "type": "color", + "description": "Disabled icon inside buttons and form inputs." + }, + "iconAlt": { + "value": "{modes.color.generic.content.moderate}", + "type": "color", + "description": "Readonly icon inside form inputs. " + }, + "frozen": { + "defaultAlt": { + "value": "{primitives.colors.navy}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.88", + "space": "lch", + "color": "{modes.color.modifier.contrastLess} " + } + } + }, + "description": "Disabled input and button backgrounds, button borders and input backgrounds." + } + } + }, + "monochrome": { + "frozen": { + "active": { + "value": "{modes.color.interactive.monochrome.frozen.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.4", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + } + }, + "activeAlt": { + "value": "{modes.color.interactive.monochrome.frozen.active}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "{modes.color.modifiers.button.activeAlt} ", + "space": "lch" + } + } + } + }, + "default": { + "value": "{primitives.colors.navy}", + "type": "color" + }, + "defaultAlt": { + "value": "{modes.color.interactive.monochrome.frozen.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.1", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + } + }, + "hoverAlt": { + "value": "{modes.color.interactive.monochrome.frozen.active}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "{modes.color.modifiers.button.hoverAlt} ", + "space": "lch" + } + } + } + }, + "withActive": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + }, + "withHover": { + "value": "{modes.color.interactive.monochrome.frozen.active}", + "type": "color" + }, + "withHoverAlt": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + } + }, + "generic": { + "active": { + "value": "{modes.color.generic.bg.extreme}", + "type": "color" + }, + "activeAlt": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "{modes.color.modifiers.button.activeAlt} ", + "space": "lch" + } + } + } + }, + "default": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.9", + "space": "lch" + } + } + } + }, + "defaultAlt": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.67", + "space": "lch" + } + } + }, + "description": "subtle and toggle button text" + }, + "hoverAlt": { + "value": "{modes.color.generic.bg.extreme}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "{modes.color.modifiers.button.hoverAlt}", + "space": "lch" + } + } + }, + "description": "Accordion, secondary, tertiary, menu bg on hover" + }, + "hover": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "{modes.color.modifiers.button.hover} ", + "space": "lch" + } + } + }, + "description": "subtle table header hover" + }, + "withActive": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + }, + "withActiveAlt": { + "value": "{modes.color.interactive.monochrome.generic.default}", + "type": "color" + }, + "withDefault": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + }, + "withHover": { + "value": "{modes.color.generic.content.extreme}", + "type": "color", + "description": "maybe should be white to align with primary group logic" + }, + "frozen": { + "active": { + "value": "{primitives.colors.navy}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.90", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + }, + "description": "Used within frozen table" + } + } + }, + "marketing": { + "active": { + "value": "{primitives.colors.black}", + "type": "color", + "description": "needed for specific marketing usecase on light bg" + }, + "withActive": { + "value": "{primitives.colors.brilliantGreen}", + "type": "color", + "description": "needed for specific marketing usecase on light bg" + } + }, + "subtle": { + "defaultAlt": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.50", + "space": "lch" + } + } + }, + "description": "border color for off switches" + }, + "default": { + "value": "{modes.color.interactive.monochrome.generic.active}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.04", + "space": "lch" + } + } + }, + "description": "bg color for tertiary buttons and table headers" + } + } + }, + "primary": { + "active": { + "value": "{modes.color.interactive.primary.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.active} ", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + } + }, + "default": { + "value": "{modes.color.custom.default}", + "type": "color" + }, + "defaultAlt": { + "value": "{modes.color.interactive.primary.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.link.enabled}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "for links" + }, + "hover": { + "value": "{modes.color.interactive.primary.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hover} ", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + } + }, + "hoverAlt": { + "value": "{modes.color.interactive.primary.defaultAlt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.link.hover}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "for link hover" + }, + "withActive": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + }, + "withDefault": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + }, + "withHover": { + "value": "{modes.color.generic.fg.nought}", + "type": "color" + }, + "frozen": { + "active": { + "value": "{modes.color.interactive.primary.frozen.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.active} ", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + } + }, + "default": { + "value": "{modes.color.custom.frozen}", + "type": "color" + }, + "defaultAlt": { + "value": "{modes.color.interactive.primary.frozen.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.link.enabled}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "for links" + }, + "hover": { + "value": "{modes.color.interactive.primary.frozen.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hover} ", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + } + }, + "hoverAlt": { + "value": "{modes.color.interactive.primary.frozen.defaultAlt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.link.hover}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "for link hover" + }, + "nav": { + "hover": { + "value": "{modes.color.custom.frozen}", + "type": "color" + }, + "label-hover": { + "value": "{primitives.colors.white}", + "type": "color" + } + }, + "table": { + "default": { + "value": "{primitives.colors.navy}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.52", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + } + } + } + } + }, + "progress": { + "bg": { + "value": "{modes.color.generic.bg.extreme}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.08", + "space": "lch" + } + } + } + }, + "bgAlt": { + "value": "{modes.color.generic.bg.nought}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.08", + "space": "lch" + } + } + } + }, + "frozen": { + "bg": { + "value": "{primitives.colors.frozenJade}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0.08", + "space": "lch" + } + } + } + } + } + } + }, + "status": { + "ai": { + "default": { + "value": "{modes.color.generic.bg.nought}", + "type": "color" + }, + "defaultAlt": { + "value": "{modes.color.generic.bg.extreme}", + "type": "color", + "description": "bg for contextual message comp" + }, + "default-horizontal": { + "value": "{primitives.colors.aiH}", + "type": "color" + }, + "default-vertical": { + "value": "{primitives.colors.aiV}", + "type": "color" + } + }, + "generic": { + "default": { + "value": "{primitives.colors.teal}", + "type": "color", + "description": "used in progress bar " + } + }, + "caution": { + "alt": { + "value": "{primitives.colors.orange}", + "type": "color", + "description": "Used in form validation, progress bar, tab" + }, + "default": { + "value": "{primitives.colors.orangeBright}", + "type": "color", + "description": "For pills and messages. Not accessible with white TEXT." + }, + "defaultAlt": { + "value": "{primitives.colors.orangeBright}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.9", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + }, + "description": "Subtle message bg" + }, + "hover": { + "value": "{modes.color.status.caution.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hover}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states" + }, + "hoverAlt": { + "value": "{modes.color.status.caution.defaultAlt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.05", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states and message bg" + }, + "text": { + "value": "{primitives.colors.orange}", + "type": "color" + }, + "frozen": { + "default": { + "value": "#FF8629", + "type": "color", + "description": "used on global message bg" + } + } + }, + "content": { + "withDefault": { + "value": "{modes.color.generic.content.extreme}", + "type": "color" + }, + "withDefaultAlt": { + "value": "{modes.color.generic.content.harsh}", + "type": "color" + }, + "withHover": { + "value": "{modes.color.generic.content.nought}", + "type": "color", + "description": "for pill hover X" + }, + "withHoverAlt": { + "value": "{modes.color.generic.content.extreme}", + "type": "color", + "description": "for message text" + }, + "loading": { + "value": "linear-gradient(135deg, #6F6F6F5c 0%, #6F6F6F0A 100%)", + "type": "color", + "description": "used on skeleton text" + } + }, + "inactive": { + "default": { + "value": "{modes.color.generic.fg.soft}", + "type": "color", + "description": "For readonly pill bg and border" + }, + "withDefault": { + "value": "{modes.color.generic.content.firm}", + "type": "color", + "description": "For readonly filled pill text" + } + }, + "info": { + "alt": { + "value": "{primitives.colors.blue}", + "type": "color", + "description": "used in progress bar" + }, + "default": { + "value": "{primitives.colors.blueBright}", + "type": "color", + "description": "For pills and messages. Not accessible with white TEXT." + }, + "defaultAlt": { + "value": "{primitives.colors.blueBright}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.9", + "space": "lch", + "color": "{modes.color.modifier.contrastLess} " + } + } + }, + "description": "Subtle message bg" + }, + "hover": { + "value": "{modes.color.status.info.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hover}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states" + }, + "hoverAlt": { + "value": "{modes.color.status.info.defaultAlt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.05", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states and message bg" + }, + "frozen": { + "default": { + "value": "#65a9ff", + "type": "color", + "description": "used on global message bg" + } + } + }, + "negative": { + "alt": { + "value": "{primitives.colors.red}", + "type": "color", + "description": "used in badge, form validation, progress bar, tab" + }, + "default": { + "value": "{primitives.colors.redBright}", + "type": "color", + "description": "For pills and messages. Not accessible with white TEXT." + }, + "defaultAlt": { + "value": "{primitives.colors.redBright}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.9", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + }, + "description": "Subtle message bg" + }, + "hover": { + "value": "{modes.color.status.negative.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hover}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states" + }, + "hoverAlt": { + "value": "{modes.color.status.negative.defaultAlt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.05", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states and message bg" + }, + "text": { + "value": "{primitives.colors.red}", + "type": "color" + } + }, + "neutral": { + "alt": { + "value": "{primitives.colors.storm}", + "type": "color" + }, + "default": { + "value": "{primitives.colors.stormBright}", + "type": "color" + }, + "defaultAlt": { + "value": "{primitives.colors.stormBright}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.9", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + }, + "description": "Subtle message bg" + }, + "hover": { + "value": "{modes.color.status.neutral.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hover}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states" + }, + "hoverAlt": { + "value": "{modes.color.status.neutral.defaultAlt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.05", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states and message bg" + }, + "frozen": { + "default": { + "value": "{primitives.colors.navy}", + "type": "color" + }, + "hover": { + "value": "{primitives.colors.navy}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.47", + "space": "lch", + "color": "{modes.color.modifier.contrastMore} " + } + } + } + } + } + }, + "positive": { + "alt": { + "value": "{primitives.colors.green}", + "type": "color", + "description": "used in container interactive (eg in tile select), form validation, progress bar" + }, + "default": { + "value": "{primitives.colors.greenBright}", + "type": "color", + "description": "For pills and messages. Not accessible with white TEXT." + }, + "defaultAlt": { + "value": "{primitives.colors.greenBright}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.9", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + }, + "description": "Subtle message bg" + }, + "hover": { + "value": "{modes.color.status.positive.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hover}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states " + }, + "hoverAlt": { + "value": "{modes.color.status.positive.defaultAlt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.05", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used on pill hover states and message bg" + } + }, + "callout": { + "defaultAlt": { + "value": "{primitives.colors.brilliantGreen}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.85", + "space": "lch", + "color": "{modes.color.modifier.contrastLess}" + } + } + }, + "description": "used for marketing banners" + }, + "hoverAlt": { + "value": "{modes.color.status.callout.defaultAlt}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "0.05", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + }, + "description": "used for marketing banners" + } + }, + "reviews": { + "default": { + "value": "{modes.color.custom.default}", + "type": "color" + }, + "defaultAlt": { + "value": "linear-gradient(90deg, {modes.color.custom.default} 0%, {modes.color.custom.default} 50%, {modes.color.generic.bg.moderate} 50%, {modes.color.generic.bg.moderate} 100%)", + "type": "color", + "description": "half fill" + }, + "hover": { + "value": "{modes.color.custom.default}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hover}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + } + }, + "frozen": { + "default": { + "value": "{modes.color.custom.frozen}", + "type": "color" + }, + "defaultAlt": { + "value": "linear-gradient(90deg, {modes.color.custom.frozen} 0%, {modes.color.custom.frozen} 50%, {modes.color.generic.bg.moderate} 50%, {modes.color.generic.bg.moderate} 100%)", + "type": "color", + "description": "half fill" + }, + "hover": { + "value": "{modes.color.custom.frozen}", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "mix", + "value": "{modes.color.modifiers.button.hover}", + "space": "lch", + "color": "{modes.color.modifier.contrastMore}" + } + } + } + } + } + } + }, + "modifier": { + "contrastLess": { + "value": "{primitives.colors.white}", + "type": "color" + }, + "contrastMore": { + "value": "{primitives.colors.black}", + "type": "color" + } + }, + "modifiers": { + "button": { + "active": { + "value": "0.32", + "type": "other", + "description": "Actve modifier used when 16% hover is used" + }, + "activeAlt": { + "value": "0.16", + "type": "other", + "description": "Active appled when 8% hover is used" + }, + "hover": { + "value": "0.16", + "type": "other", + "description": "Hover used on primary buttons" + }, + "hoverAlt": { + "value": "0.08", + "type": "other", + "description": "Hover used on secondary and tertiary buttons" + } + }, + "input": { + "disabledBg": { + "value": "0.04", + "type": "other", + "description": "less contrast" + }, + "disabledFg": { + "value": "0.30", + "type": "other", + "description": "less contrast" + } + }, + "link": { + "enabled": { + "value": "0.12", + "type": "other", + "description": "for links - these need to be slightly darker than buttons for accessible contrast ratio in tables." + }, + "hover": { + "value": "{modes.color.modifiers.button.hoverAlt}", + "type": "other" + } + }, + "shadow": { + "standard": { + "value": "0.5", + "type": "other", + "description": "standard mixer for shadow" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/tokens/primitives.json b/data/tokens/primitives.json new file mode 100644 index 00000000..5c016398 --- /dev/null +++ b/data/tokens/primitives.json @@ -0,0 +1,740 @@ +{ + "primitives": { + "colors": { + "black": { + "value": "#000000", + "type": "color", + "description": "Base color for different text opacities. Used as a mixer in the mid theming layer for hover states, active states etc. Dividers and table headers. Base color for secondary, Tertiary and Subtle buttons. Base color for Input borders. Focus internal border." + }, + "blue": { + "value": "#0071c3", + "type": "color", + "description": "Base status color for light surface. AA text on white. Luminosity 46.8." + }, + "blueBright": { + "value": "#0093FB", + "type": "color", + "description": "Vibrant status color for light surfaces. AA shape on white. Must be used with black labels. Luminosity 59.8. " + }, + "azure": { + "value": "#007fda", + "type": "color", + "description": "Base status color for dark surfaces. AA text on dark. Luminosity 51.9." + }, + "azureBurnt": { + "value": "#005FA6", + "type": "color", + "description": "Vibrant status color for dark surfaces. AA shape on dark. Must be used with white labels. Luminosity 39.6. " + }, + "brilliantGreen": { + "value": "#00D639", + "type": "color", + "description": "Sage Logo color Primary buttons on dark backgrounds" + }, + "emerald": { + "value": "#00811F", + "type": "color", + "description": "Primary buttons on light backgrounds. Was #008047 Jade. Luminosity 46.8." + }, + "frozenJade": { + "value": "#008046", + "type": "color", + "description": "Legacy green used on old product theme" + }, + "green": { + "value": "#008047", + "type": "color", + "description": "Base status color for light surface. AA text on white. Luminosity 46.8." + }, + "greenBright": { + "value": "#00a65d", + "type": "color", + "description": "Vibrant status color for light surfaces. AA shape on white. Must be used with black labels. Luminosity 59.8. " + }, + "verdant": { + "value": "#008F50", + "type": "color", + "description": "Base status color for dark surfaces. AA text on dark. Luminosity 51.9." + }, + "verdantBurnt": { + "value": "#006C3B", + "type": "color", + "description": "Vibrant status color for dark surfaces. AA shape on dark. Must be used with white labels. Luminosity 39.6. " + }, + "orange": { + "value": "#BA4E00", + "type": "color", + "description": "Base status color for light surface. AA text on white. Luminosity 46.8." + }, + "orangeBright": { + "value": "#EE6700", + "type": "color", + "description": "Vibrant status color for light surfaces. AA shape on white. Must be used with black labels. Luminosity 59.8." + }, + "tangerine": { + "value": "#D05600", + "type": "color", + "description": "Base status color for dark surfaces. AA text on dark. Luminosity 51.9." + }, + "tangerineBurnt": { + "value": "#9B4300", + "type": "color", + "description": "Vibrant status color for dark surfaces. AA shape on dark. Must be used with white labels. Luminosity 39.6." + }, + "gold": { + "value": "#FFB500", + "type": "color", + "description": "Outer focus border." + }, + "navy": { + "value": "#335B70", + "type": "color", + "description": "old action minor 500. (Pure navy is #00293F)" + }, + "storm": { + "value": "#6f6f6f", + "type": "color", + "description": "Base status color for light surface. AA text on white. Luminosity 46.8." + }, + "stormBright": { + "value": "#909090", + "type": "color", + "description": "Vibrant status color for light surfaces. AA shape on white. Must be used with black labels. Luminosity 59.8." + }, + "smoke": { + "value": "#7C7C7C", + "type": "color", + "description": "Base status color for dark surfaces. AA text on dark. Luminosity 51.9." + }, + "smokeBurnt": { + "value": "#5D5D5D", + "type": "color", + "description": "Vibrant status color for dark surfaces. AA shape on dark. Must be used with white labels. Luminosity 39.6. " + }, + "red": { + "value": "#CB374B", + "type": "color", + "description": "Base status color for light surface. AA text on white. Luminosity 46.8." + }, + "redBright": { + "value": "#EA6472", + "type": "color", + "description": "Vibrant status color for light surfaces. AA shape on white. Must be used with black labels. Luminosity 59.8. " + }, + "blush": { + "value": "#e95164", + "type": "color", + "description": "Base status color for dark surfaces. AA text on dark. Luminosity 51.9." + }, + "blushBurnt": { + "value": "#AC2D3E", + "type": "color", + "description": "Vibrant status color for dark surfaces. AA shape on dark. Must be used with white labels. Luminosity 39.6. " + }, + "teal": { + "value": "#007c7b", + "type": "color", + "description": "Alternative colour with no semantic meaning. Used in progress tracker on light. Luminosity 46.8." + }, + "petrol": { + "value": "#008a89", + "type": "color", + "description": "Alternative colour with no semantic meaning. Used in progress tracker on dark. Luminosity 51.9" + }, + "transparent": { + "value": "rgba(0,0,0,0)", + "type": "color", + "$extensions": { + "studio.tokens": { + "modify": { + "type": "alpha", + "value": "0", + "space": "lch" + } + } + }, + "description": "For transparent backgrounds and borders." + }, + "white": { + "value": "#FFFFFF", + "type": "color", + "description": "Surface backgrounds. Text colors on buttons and on dark backgrounds. Used as a mixer in the mid theming layer for hover states, active states etc." + }, + "aiH": { + "value": "linear-gradient(90deg, #13A038 0%, #149197 40%, #A87CFB 90%)", + "type": "color", + "description": "AI buttons on light backgrounds." + }, + "aiV": { + "value": "linear-gradient(180deg, #13A038 0%, #149197 40%, #A87CFB 90%)", + "type": "color", + "description": "AI buttons on light backgrounds." + }, + "lightAiH": { + "value": "linear-gradient(90deg, #00D639 0%, #00D6DE 40%, #9D60FF 90%)", + "type": "color", + "description": "AI buttons on dark backgrounds." + }, + "lightAiV": { + "value": "linear-gradient(180deg, #00D639 0%, #00D6DE 40%, #9D60FF 90%)", + "type": "color", + "description": "Nudge message border" + } + }, + "size": { + "SCALE": { + "value": "8", + "type": "sizing", + "description": "SCALE is the base-scale of all size-related tokens (size, space, dimension). It's set to 8px as this is our default multiplier used across the majority of components. If you change it, it will change all size-related tokens." + }, + "breakpoint": { + "0": { + "value": "0", + "type": "sizing" + }, + "320": { + "value": "320", + "type": "sizing" + }, + "480": { + "value": "480", + "type": "sizing" + }, + "768": { + "value": "768", + "type": "sizing" + }, + "1024": { + "value": "1024", + "type": "sizing" + }, + "1200": { + "value": "1200", + "type": "sizing" + }, + "1920": { + "value": "1920", + "type": "sizing" + } + } + }, + "dimension": { + "0": { + "value": "{primitives.dimension.base} * 0", + "type": "dimension" + }, + "12": { + "value": "{primitives.dimension.base} * 12.5", + "type": "dimension" + }, + "25": { + "value": "{primitives.dimension.base} * 25", + "type": "dimension" + }, + "38": { + "value": "{primitives.dimension.base} * 37.5", + "type": "dimension" + }, + "50": { + "value": "{primitives.dimension.base} * 50", + "type": "dimension" + }, + "62": { + "value": "{primitives.dimension.base} * 62.5", + "type": "dimension" + }, + "75": { + "value": "{primitives.dimension.base} * 75", + "type": "dimension" + }, + "100": { + "value": "{primitives.dimension.base} * 100", + "type": "dimension" + }, + "125": { + "value": "{primitives.dimension.base} * 125", + "type": "dimension" + }, + "150": { + "value": "{primitives.dimension.base} * 150", + "type": "dimension" + }, + "175": { + "value": "{primitives.dimension.base} * 175", + "type": "dimension" + }, + "200": { + "value": "{primitives.dimension.base} * 200", + "type": "dimension" + }, + "250": { + "value": "{primitives.dimension.base} * 250", + "type": "dimension" + }, + "300": { + "value": "{primitives.dimension.base} * 300", + "type": "dimension" + }, + "350": { + "value": "{primitives.dimension.base} * 350", + "type": "dimension" + }, + "400": { + "value": "{primitives.dimension.base} * 400", + "type": "dimension" + }, + "450": { + "value": "{primitives.dimension.base} * 450", + "type": "dimension" + }, + "500": { + "value": "{primitives.dimension.base} * 500", + "type": "dimension" + }, + "550": { + "value": "{primitives.dimension.base} * 550", + "type": "dimension" + }, + "600": { + "value": "{primitives.dimension.base} * 600", + "type": "dimension" + }, + "650": { + "value": "{primitives.dimension.base} * 650", + "type": "dimension" + }, + "700": { + "value": "{primitives.dimension.base} * 700", + "type": "dimension" + }, + "750": { + "value": "{primitives.dimension.base} * 750", + "type": "dimension" + }, + "800": { + "value": "{primitives.dimension.base} * 800", + "type": "dimension" + }, + "850": { + "value": "{primitives.dimension.base} * 850", + "type": "dimension" + }, + "900": { + "value": "{primitives.dimension.base} * 900", + "type": "dimension" + }, + "950": { + "value": "{primitives.dimension.base} * 950", + "type": "dimension" + }, + "1000": { + "value": "{primitives.dimension.base} * 1000", + "type": "dimension" + }, + "1300": { + "value": "{primitives.dimension.base} * 1300", + "type": "dimension" + }, + "1500": { + "value": "{primitives.dimension.base} * 1500", + "type": "dimension" + }, + "1600": { + "value": "{primitives.dimension.base} * 1600", + "type": "dimension" + }, + "2000": { + "value": "{primitives.dimension.base} * 2000", + "type": "dimension" + }, + "2500": { + "value": "{primitives.dimension.base} * 2500", + "type": "dimension" + }, + "3000": { + "value": "{primitives.dimension.base} * 3000", + "type": "dimension" + }, + "3600": { + "value": "{primitives.dimension.base} * 3600", + "type": "dimension" + }, + "4000": { + "value": "{primitives.dimension.base} * 4000", + "type": "dimension" + }, + "7000": { + "value": "{primitives.dimension.base} * 7000", + "type": "dimension" + }, + "9500": { + "value": "{primitives.dimension.base} * 9500", + "type": "dimension" + }, + "base": { + "value": "{primitives.size.SCALE} / 100", + "type": "dimension" + } + }, + "fontWeights": { + "regular": { + "value": "Regular", + "type": "fontWeights" + }, + "medium": { + "value": "Medium", + "type": "fontWeights" + }, + "bold": { + "value": "Bold", + "type": "fontWeights" + }, + "black": { + "value": "Black", + "type": "fontWeights" + } + }, + "lineHeights": { + "300": { + "value": "100%", + "type": "lineHeights", + "description": "For components where space is tight" + }, + "400": { + "value": "125%", + "type": "lineHeights", + "description": "For headings" + }, + "500": { + "value": "150%", + "type": "lineHeights", + "description": "For body and components" + } + }, + "box-shadow": { + "downward": { + "0": { + "value": [ + { + "x": "0", + "y": "2", + "blur": "2", + "spread": "0", + "color": "{primitives.colors.black}1A", + "type": "dropShadow" + }, + { + "x": "2", + "y": "5", + "blur": "5", + "spread": "0", + "color": "{primitives.colors.black}1A", + "type": "dropShadow" + } + ], + "type": "boxShadow" + }, + "1": { + "value": [ + { + "x": "0", + "y": "1", + "blur": "2", + "spread": "0", + "color": "{primitives.colors.black}1A", + "type": "dropShadow" + }, + { + "x": "2", + "y": "2", + "blur": "10", + "spread": "0", + "color": "{primitives.colors.black}33", + "type": "dropShadow" + } + ], + "type": "boxShadow" + }, + "2": { + "value": [ + { + "x": "0", + "y": "2", + "blur": "3", + "spread": "0", + "color": "{primitives.colors.black}1A", + "type": "dropShadow" + }, + { + "x": "6", + "y": "6", + "blur": "30", + "spread": "0", + "color": "{primitives.colors.black}26", + "type": "dropShadow" + } + ], + "type": "boxShadow" + }, + "3": { + "value": [ + { + "x": "0", + "y": "3", + "blur": "4", + "spread": "0", + "color": "{primitives.colors.black}1A", + "type": "dropShadow" + }, + { + "x": "10", + "y": "10", + "blur": "60", + "spread": "0", + "color": "{primitives.colors.black}1A", + "type": "dropShadow" + } + ], + "type": "boxShadow" + } + }, + "upward": { + "1": { + "value": [ + { + "x": "0", + "y": "-1", + "blur": "2", + "spread": "0", + "color": "{primitives.colors.black}1A", + "type": "dropShadow" + }, + { + "x": "2", + "y": "-2", + "blur": "10", + "spread": "0", + "color": "{primitives.colors.black}33", + "type": "dropShadow" + } + ], + "type": "boxShadow" + }, + "3": { + "value": [ + { + "x": "0", + "y": "-3", + "blur": "4", + "spread": "0", + "color": "{primitives.colors.black}1A", + "type": "dropShadow" + }, + { + "x": "10", + "y": "-10", + "blur": "60", + "spread": "0", + "color": "{primitives.colors.black}1A", + "type": "dropShadow" + } + ], + "type": "boxShadow" + } + }, + "solid": { + "border": { + "value": [ + { + "x": "0", + "y": "-1", + "blur": "0", + "spread": "0", + "color": "{primitives.colors.black}4D", + "type": "innerShadow" + } + ], + "type": "boxShadow" + } + } + }, + "fontSize": { + "responsive": { + "product": { + "step-2": { + "value": "clamp(0.7431rem, 0.8804rem + -0.1144vw, 0.8575rem)", + "type": "fontSizes", + "description": "Small Viewports: 13.72, Large Viewports: 11.89" + }, + "step-1": { + "value": "clamp(0.8619rem, 0.9384rem + -0.0637vw, 0.9256rem)", + "type": "fontSizes", + "description": "Small Viewports: 14.81, Large Viewports: 13.79" + }, + "step0": { + "value": "clamp(1rem, 1rem + 0vw, 1rem)", + "type": "fontSizes", + "description": "Small Viewports: 16, Large Viewports: 16" + }, + "step1": { + "value": "clamp(1.08rem, 1.064rem + 0.08vw, 1.16rem)", + "type": "fontSizes", + "description": "Small Viewports: 17.28, Large Viewports: 18.56" + }, + "step2": { + "value": "clamp(1.1663rem, 1.1304rem + 0.1794vw, 1.3456rem)", + "type": "fontSizes", + "description": "Small Viewports: 18.66, Large Viewports: 21.53" + }, + "step3": { + "value": "clamp(1.26rem, 1.1999rem + 0.3006vw, 1.5606rem)", + "type": "fontSizes", + "description": "Small Viewports: 20.16, Large Viewports: 24.97" + }, + "step4": { + "value": "clamp(1.3606rem, 1.2706rem + 0.45vw, 1.8106rem)", + "type": "fontSizes", + "description": "Small Viewports: 21.77, Large Viewports: 28.97" + }, + "step5": { + "value": "clamp(1.4694rem, 1.3431rem + 0.6313vw, 2.1006rem)", + "type": "fontSizes", + "description": "Small Viewports: 23.51, Large Viewports: 33.61" + }, + "step6": { + "value": "clamp(1.5869rem, 1.417rem + 0.8494vw, 2.4363rem)", + "type": "fontSizes", + "description": "Small Viewports: 25.39, Large Viewports: 38.98" + }, + "step7": { + "value": "clamp(1.7138rem, 1.4913rem + 1.1125vw, 2.8263rem)", + "type": "fontSizes", + "description": "Small Viewports: 27.42, Large Viewports: 45.22" + }, + "step8": { + "value": "clamp(1.8506rem, 1.5651rem + 1.4275vw, 3.2781rem)", + "type": "fontSizes", + "description": "Small Viewports: 29.61, Large Viewports: 52.45" + }, + "step9": { + "value": "clamp(1.9988rem, 1.6379rem + 1.8044vw, 3.8031rem)", + "type": "fontSizes", + "description": "Small Viewports: 31.98, Large Viewports: 60.85" + }, + "step10": { + "value": "clamp(2.1588rem, 1.7083rem + 2.2525vw, 4.4113rem)", + "type": "fontSizes", + "description": "Small Viewports: 34.54, Large Viewports: 70.58" + } + }, + "marketing": { + "step-2": { + "value": "clamp(0.8264rem, 0.8237rem + 0.0118vw, 0.8361rem)", + "type": "fontSizes", + "description": "Small Viewports: 13.22, Large Viewports: 13.38" + }, + "step-1": { + "value": "clamp(0.9091rem, 0.8916rem + 0.0745vw, 0.9698rem)", + "type": "fontSizes", + "description": "Small Viewports: 14.55, Large Viewports: 15.52" + }, + "step0": { + "value": "clamp(1rem, 0.9641rem + 0.1533vw, 1.125rem)", + "type": "fontSizes", + "description": "Small Viewports: 16, Large Viewports: 18" + }, + "step1": { + "value": "clamp(1.1rem, 1.0411rem + 0.2513vw, 1.305rem)", + "type": "fontSizes", + "description": "Small Viewports: 17.60, Large Viewports: 20.88" + }, + "step2": { + "value": "clamp(1.21rem, 1.1227rem + 0.3725vw, 1.5138rem)", + "type": "fontSizes", + "description": "Small Viewports: 19.36, Large Viewports: 24.22" + }, + "step3": { + "value": "clamp(1.331rem, 1.2089rem + 0.5211vw, 1.756rem)", + "type": "fontSizes", + "description": "Small Viewports: 21.30, Large Viewports: 28.10" + }, + "step4": { + "value": "clamp(1.4641rem, 1.2995rem + 0.7024vw, 2.037rem)", + "type": "fontSizes", + "description": "Small Viewports: 23.43, Large Viewports: 32.59" + }, + "step5": { + "value": "clamp(1.6105rem, 1.3943rem + 0.9225vw, 2.3629rem)", + "type": "fontSizes", + "description": "Small Viewports: 25.77, Large Viewports: 37.81" + }, + "step6": { + "value": "clamp(1.7716rem, 1.493rem + 1.1885vw, 2.7409rem)", + "type": "fontSizes", + "description": "Small Viewports: 28.34, Large Viewports: 43.86" + }, + "step7": { + "value": "clamp(1.9487rem, 1.595rem + 1.509vw, 3.1795rem)", + "type": "fontSizes", + "description": "Small Viewports: 31.18, Large Viewports: 50.87" + }, + "step8": { + "value": "clamp(2.1436rem, 1.6997rem + 1.8938vw, 3.6882rem)", + "type": "fontSizes", + "description": "Small Viewports: 34.30, Large Viewports: 59.01" + }, + "step9": { + "value": "clamp(2.3579rem, 1.8061rem + 2.3545vw, 4.2783rem)", + "type": "fontSizes", + "description": "Small Viewports: 37.73, Large Viewports: 68.45" + }, + "step10": { + "value": "clamp(2.5937rem, 1.913rem + 2.9047vw, 4.9629rem)", + "type": "fontSizes", + "description": "Small Viewports: 41.50, Large Viewports: 79.41" + } + } + }, + "icon": { + "step0": { + "value": "20px", + "type": "fontSizes", + "description": "Small viewports: 20px, Large viewports: 20px." + } + } + }, + "textDecoration": { + "underline": { + "value": "underline", + "type": "textDecoration", + "description": "used for links" + } + }, + "paragraphSpacing": { + "0": { + "value": "0", + "type": "paragraphSpacing" + }, + "150": { + "value": "{primitives.dimension.150}", + "type": "paragraphSpacing" + }, + "200": { + "value": "{primitives.dimension.200}", + "type": "paragraphSpacing" + }, + "250": { + "value": "{primitives.dimension.250}", + "type": "paragraphSpacing" + }, + "300": { + "value": "{primitives.dimension.300}", + "type": "paragraphSpacing" + }, + "400": { + "value": "{primitives.dimension.400}", + "type": "paragraphSpacing" + } + } + } +} \ No newline at end of file diff --git a/data/tokens/screensize/large.json b/data/tokens/screensize/large.json new file mode 100644 index 00000000..f5f3f6d5 --- /dev/null +++ b/data/tokens/screensize/large.json @@ -0,0 +1,16 @@ +{ + "global": { + "size": { + "breakpoint-min-width": { + "value": "{primitives.size.breakpoint.1200}", + "type": "sizing" + } + }, + "space": { + "macroScale": { + "value": "1", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/data/tokens/screensize/small.json b/data/tokens/screensize/small.json new file mode 100644 index 00000000..8987dcd2 --- /dev/null +++ b/data/tokens/screensize/small.json @@ -0,0 +1,89 @@ +{ + "global": { + "size": { + "breakpoint-min-width": { + "value": "{primitives.size.breakpoint.0}", + "type": "sizing" + } + }, + "space": { + "macroScale": { + "value": "0.8", + "type": "spacing", + "description": "Spacing scale for small screens." + } + }, + "fontSize": { + "adaptive": { + "step-2": { + "value": "14", + "type": "fontSizes" + }, + "step-1": { + "value": "15", + "type": "fontSizes" + }, + "step0": { + "value": "16", + "type": "fontSizes" + }, + "step1": { + "value": "17", + "type": "fontSizes" + }, + "step2": { + "value": "19", + "type": "fontSizes" + }, + "step3": { + "value": "20", + "type": "fontSizes" + }, + "step4": { + "value": "22", + "type": "fontSizes" + }, + "step5": { + "value": "24", + "type": "fontSizes" + }, + "step6": { + "value": "25", + "type": "fontSizes" + }, + "step7": { + "value": "27", + "type": "fontSizes" + }, + "step8": { + "value": "30", + "type": "fontSizes" + }, + "step9": { + "value": "32", + "type": "fontSizes" + }, + "step10": { + "value": "35", + "type": "fontSizes" + } + } + } + }, + "page": { + "space": { + "x": { + "L": { + "value": "{global.space.macro.S}", + "type": "spacing" + } + }, + "y": { + "L": { + "value": "{global.space.macro.S}", + "type": "spacing" + } + } + } + } +} \ No newline at end of file diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index c0ee36aa..096f20b3 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,3 +1,1385 @@ +# [5.0.0-beta.32](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.31...v5.0.0-beta.32) (2025-01-03) + + +### Features + +* **data:** adding new type tokens to support step flow changes ([271a467](https://github.com/Sage/design-tokens/commit/271a4675d97458cd1eee1bdd10382b449138bc26)) +* **data:** relabelling a token to avoid breaking change ([51ad6ad](https://github.com/Sage/design-tokens/commit/51ad6ad745545646ad0bd97917b2e2c5e63ce266)) + +# [5.0.0-beta.31](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.30...v5.0.0-beta.31) (2025-01-03) + + +### Bug Fixes + +* remove extra newline characters in comments ([71f816e](https://github.com/Sage/design-tokens/commit/71f816eea9cf25ae191c50f3b2190d780309174d)) + + +### Features + +* **dark mode:** Add missing modes.color.status.positive.alt to dark mode. ([218806a](https://github.com/Sage/design-tokens/commit/218806ad40d1b10d5927a528b37ff130dcd2a0d9)) +* **dark mode:** Add modes.color.status.neutral.frozen to mirror light mode tokens already added. ([6516862](https://github.com/Sage/design-tokens/commit/6516862bbf1be0ef37d55548b3bd514c336a9e23)) +* **dark mode:** Again, add modes.color.status.info.alt for dark mode. ([30b6810](https://github.com/Sage/design-tokens/commit/30b681071afee7395f89e3c63c4fe52ba080d89d)) +* **data:** Remove unnecessary primitive navy tokens, adjust value of primitive navy and bright, and update values of light and dark mode frozen tokens. Correct value of modes.color.status.content in dark mode. ([1be2f1e](https://github.com/Sage/design-tokens/commit/1be2f1eb9c6045bc2282b30c20b5e0b8d913ef21)) +* **frozen product:** Add form.color.calendar.bg-active to frozen product theme. ([807fad6](https://github.com/Sage/design-tokens/commit/807fad6d0814dd9cb069b7e71928d5b529ae8551)) +* **frozen theme:** Add badge.color.notification.bg-default. ([90f3a37](https://github.com/Sage/design-tokens/commit/90f3a370e14c056062ee03d823639338eb105202)) +* **frozen theme:** Add status.color.label-default to frozen. ([f89a79f](https://github.com/Sage/design-tokens/commit/f89a79f8c34381ee54f64fb243558357aa1bc095)) +* **frozen theme:** Update status color tokens. ([c450f17](https://github.com/Sage/design-tokens/commit/c450f17e053b8fe5b1f31fc2484b2603a39d1a8b)) +* **frozen:** 1. Add to light and dark modes modes.color.interactive.primary.frozen.table.default, ([4be5fc9](https://github.com/Sage/design-tokens/commit/4be5fc90bcf1eb1d0425a9190c4242c6125e97b7)) +* **frozen:** 1. Update value of modes.color.status.neutral.frozen.default. ([cfa013d](https://github.com/Sage/design-tokens/commit/cfa013df9e58cb1dbf26f1ca9f592f4c4f8cddd4)) +* **frozen:** Add modes.color.interactive.primary.frozen.nav.label-hover. Update value of frozenproduct nav.color.item.label-hover. ([ad86455](https://github.com/Sage/design-tokens/commit/ad86455817b2986bd8a0495eea080faa06d18a23)) +* **frozen:** Add nav.color.item.bg-hover ([bd53d5f](https://github.com/Sage/design-tokens/commit/bd53d5f3f72c79b48fb130c4f880b857c1ab8c62)) +* **frozen:** Add status.color.label-hover to frozen theme. ([06add13](https://github.com/Sage/design-tokens/commit/06add135b7836b0ef2cab90049b9d290379a9e55)) +* **frozen:** Delete unnecessary tab.color.bg-enabled from frozen. ([1bc391c](https://github.com/Sage/design-tokens/commit/1bc391ca9be0c4f639335f5cb80ce26f76e5fc3d)) +* **frozenproduct:** Add status.color.neutral bg-default, bg-hover, and border-default. ([4ddcabe](https://github.com/Sage/design-tokens/commit/4ddcabeabc78f3b9b38c9a9a9bba743eb6d0d444)) +* **frozen:** Sync tokens and figma variables ([313cdaf](https://github.com/Sage/design-tokens/commit/313cdafd20511710a921be3ed731aaa5f121b558)) +* **frozen:** Update value of modes.color.interactive.primary.frozen.nav.hover. ([a4e1ce7](https://github.com/Sage/design-tokens/commit/a4e1ce7bd184ad494a4da4f9c9d8ae96be1465eb)) +* **light and dark modes:** Rename frozen tokens to match across modes. ([2c5be9f](https://github.com/Sage/design-tokens/commit/2c5be9f04e8207bf92c1df559034bcacb0ca2677)) +* **mode colors:** Adjusted a few colors in light mode, plus edited and added tokens in dark mode. ([65be767](https://github.com/Sage/design-tokens/commit/65be7672aaefa2aaea1493031e39f03d339eb34b)) +* **modes:** Add modes.color.generic.content.nought to light and dark themes. Update modes.color.status.content.withHoverAlt. ([43c395b](https://github.com/Sage/design-tokens/commit/43c395b1e99fe4a5ca165a49ac7799940275e9eb)) +* **modes:** add modes.color.interactive.primary.frozen.nav.hover ([0496cd1](https://github.com/Sage/design-tokens/commit/0496cd1808db986dcadb3d3dbd2fcf1222f7a288)) +* **primitive:** Recreate navy token which was buggy. ([689694d](https://github.com/Sage/design-tokens/commit/689694d2ca72db840f545f4a12473a1587240bb3)) +* **primitives and modes:** 1. Add ([438fc19](https://github.com/Sage/design-tokens/commit/438fc19f6a780a81243f35658ca88e11cbf2cb6c)) +* **primitives:** 1. Delete emeraldLight and redLight as not used. 2. Edit and add primitive colors for accessible colour contrast throughout light and dark mode tokens. ([4508115](https://github.com/Sage/design-tokens/commit/4508115301cbd5494b027f9320b729a656dcf98e)) +* **primitives:** Delete unused tokens and hope to fix buggy xxxBright tokens. ([29a2751](https://github.com/Sage/design-tokens/commit/29a275144422830f4027db9f2b2a7b1567ea6e99)) +* **status colors:** Add and amend status color tokens, for use in global and contextual messages. ([d29d73d](https://github.com/Sage/design-tokens/commit/d29d73d44eb2b0a5d15ad8e7473e5738d9243f26)) +* **status:** Add color tokens to mode status caution and info. Change values of frozen product status caution and info tokens. ([52ad63f](https://github.com/Sage/design-tokens/commit/52ad63f2869c8b9340f0b70d9c605a55cc9c2bca)) +* **status:** Add dark mode tokens for status caution and info. ([e3cdde9](https://github.com/Sage/design-tokens/commit/e3cdde9c8ef78de92140ec2f34962962c653b280)) +* **status:** Swap values of mode status default and alt colors. Add status icon color to contextual tokens. ([cf4673c](https://github.com/Sage/design-tokens/commit/cf4673cb79a3415cf42f6b6a890e1a193a845ce1)) +* **tab:** 1. Add tab.color.bg-active (white in frozen product theme, transparent in other themes). ([21124a4](https://github.com/Sage/design-tokens/commit/21124a409be7f0385f92411ea1d5271fc10e6bb5)) +* **theme:** Resync tokens and figma variables ([6c96420](https://github.com/Sage/design-tokens/commit/6c964200f33cc9eb0d08db55e9f0c1f8ad669850)) +* **themes:** More variable syncing... ([dc0d9af](https://github.com/Sage/design-tokens/commit/dc0d9af98c2063cc014ae86e7af35987950704f7)) +* **theme:** Sync tokens and figma variables again ([e5f8ccc](https://github.com/Sage/design-tokens/commit/e5f8ccc28e57efc57d34c1c9b37d4c4f95a725ba)) +* **theme:** Sync tokens and figma variables. ([8122793](https://github.com/Sage/design-tokens/commit/812279387a800cdd75466906ca2b2c4311f544b2)) +* **undo:** undo last change which threw an error ([35bbb8f](https://github.com/Sage/design-tokens/commit/35bbb8f9b832d2291cb2ca63157ca5140399e827)) + +# [5.0.0-beta.30](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.29...v5.0.0-beta.30) (2024-12-05) + + +### Features + +* **data:** Sync themes ([f27beca](https://github.com/Sage/design-tokens/commit/f27becada47dec42b257c68615a45fbf765a1b48)) +* **frozen dark:** Add modes.color.interactive.monochrome.frozen.defaultAlt ([ee66c85](https://github.com/Sage/design-tokens/commit/ee66c853ab4e3b2f739c9cbc25a5f4cfebbaf382)) +* **frozen status colors:** Add transparent token for subtle message bg. Plus re-order code in status to be alphabetical. ([7881bde](https://github.com/Sage/design-tokens/commit/7881bde6d5888b598726bb4af26e71c0c2f50208)) +* **frozen:** Add ([105ba1a](https://github.com/Sage/design-tokens/commit/105ba1aa484f7ae14248bbeb485ba8050cf91061)) +* **frozen:** Add button.color.typical.toggle tokens ([9a532f8](https://github.com/Sage/design-tokens/commit/9a532f8dcee10270470d29d6166fe056aa006e41)) + +# [5.0.0-beta.29](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.28...v5.0.0-beta.29) (2024-12-04) + + +### Features + +* **data:** Update description on primitives.colors.greenBright ([0f3f361](https://github.com/Sage/design-tokens/commit/0f3f361798047d062aac831cd0c62ff3fa933daa)) + +# [5.0.0-beta.28](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.27...v5.0.0-beta.28) (2024-12-04) + + +### Bug Fixes + +* **data:** remove new line characters ([63f575f](https://github.com/Sage/design-tokens/commit/63f575f1e9b54a43575f11fba207508ef1b0c0a1)) +* enable mocha ([e608b0c](https://github.com/Sage/design-tokens/commit/e608b0c69edd6a699036d4d33e822c2ac922ec53)) +* remove deprecated feedback data file ([8215876](https://github.com/Sage/design-tokens/commit/8215876a71662960026ac6b0119c44d7d2ad4fbe)) + +# [5.0.0-beta.27](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.26...v5.0.0-beta.27) (2024-12-03) + + +### Features + +* **data:** 2nd push ([5dc3fdc](https://github.com/Sage/design-tokens/commit/5dc3fdc947ed9c450f568ff97f2235b2f0cb589b)) +* **data:** Add form.color.switch for FROZENPRODUCT theme ([5535161](https://github.com/Sage/design-tokens/commit/5535161580792a45ba6d14dfcf6cb5a37d04724b)) +* **data:** adding color overrides for progress bar ([77bfecc](https://github.com/Sage/design-tokens/commit/77bfecc0a2161ff6fa0af9b9ea4e7bd178ae7b85)) +* **data:** adding tab frozen colors ([ae4b665](https://github.com/Sage/design-tokens/commit/ae4b665484330cb5cf48f51dd4a85fe77760da45)) +* **data:** Change code order in FROZENPRODUCT theme colours ([1a20919](https://github.com/Sage/design-tokens/commit/1a2091903e845c319af54e6b96cb7b1f8b69fc17)) +* **data:** correct FROZEN tertiary button enabled border value ([8ce493c](https://github.com/Sage/design-tokens/commit/8ce493cf03af8951b916f4b25eff52c2040f1c20)) +* **data:** DARK THEME Add modes.color.generic.bg.extreme. Update values of tokens referencing primitive black and white to reference generic colour tokens. ([acdcc09](https://github.com/Sage/design-tokens/commit/acdcc09f1a201fe15e081c9c08e1d7d43ec9e3de)) +* **data:** first set of changes relating to dark theme contrastMore and contrastLess values, along with changes to tokens that reference contrastMore and contrastLess ([db38739](https://github.com/Sage/design-tokens/commit/db38739f11802f6932d4c1dc2de93c4cafa9ce89)) +* **data:** fixing active and hover label breakages in frozen theme ([2516e22](https://github.com/Sage/design-tokens/commit/2516e22971346238342b0c994c7761dd1d478777)) +* **data:** fixing issues with popover component in frozen theme ([c1217e0](https://github.com/Sage/design-tokens/commit/c1217e0ea7845982dab6f9b9115003750c27b34d)) +* **data:** LIGHT THEME Add modes.color.generic.bg.extreme, and change all values that reference primitive white or black to reference generic colour tokens instead ([3728b06](https://github.com/Sage/design-tokens/commit/3728b06085d0be28d5c4a38542db8914d53eec8f)) +* **data:** LIGHT THEME: 1. Correct modes.color.status info and callout defaultAlt values. 2. Correct value of status.callout.hoverAlt. DARK THEME: 1. Correct all status defaultAlt tokens to use same mixes as light theme tokens, with slight modification to the mix amount: 0.2 in dark vs of 0.1 in light. 2. Correct value of status.succes.hoverAlt. ([3297228](https://github.com/Sage/design-tokens/commit/32972285048dcb5c1baa45c0b2158da532ba8a6b)) +* **data:** Reorder code for button colours. ([7142986](https://github.com/Sage/design-tokens/commit/714298604cf2c066b0a367b1e9e050793aff7c82)) +* **data:** Update value of modes.color.status.caution.hover ([d182ff8](https://github.com/Sage/design-tokens/commit/d182ff80a5b46129f3d6b39e401682352b4fc3e7)) +* **data:** update values of DARK THEME focus colours ([974f3c7](https://github.com/Sage/design-tokens/commit/974f3c71ca0c8029d4f07b21f7f61691f9a69277)) +* **data:** Update values of primitives shadows for [@dru](https://github.com/dru) ([04f4097](https://github.com/Sage/design-tokens/commit/04f40978b2c25032d429f1cc352902b28158624a)) + +# [5.0.0-beta.26](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.25...v5.0.0-beta.26) (2024-12-02) + + +### Bug Fixes + +* **data:** syntax errors ([3298a21](https://github.com/Sage/design-tokens/commit/3298a21b87f55d7ef107825fd3f3cb9bec09c6fc)) +* update tests ([a3f5764](https://github.com/Sage/design-tokens/commit/a3f5764d33ce0af1f3a9f1efc1b15e500289d344)) + +# [5.0.0-beta.25](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.24...v5.0.0-beta.25) (2024-12-02) + + +### Features + +* **data:** syncing themes ([ee340f6](https://github.com/Sage/design-tokens/commit/ee340f65fb267603a3c9c7cfdf7abd87e4bca89f)) +* **data:** Add modes.color.custom.frozen, and update modes.color.interactive.primary.frozen.active to reference that. ([fdf66c4](https://github.com/Sage/design-tokens/commit/fdf66c4ff6d709e734ab86f369dc5ef9d351b5d0)) +* **data:** Add modes.light.color.custom.frozen and update modes.color.interactive.primary.legacy tokens to reference that. ([c6fb180](https://github.com/Sage/design-tokens/commit/c6fb1804421b3d4db750d18e2f30d24cbd252bb3)) +* **data:** Add nav menu border colour and width ([2d0f45d](https://github.com/Sage/design-tokens/commit/2d0f45d88229d452489c0b3f05e52db6507e23b5)) +* **data:** Add primitives.colors.tealBright and modes.color.status.generic.default ([4188103](https://github.com/Sage/design-tokens/commit/41881035f273da849cdedb968b81c2c857c23906)) +* **data:** adding a brand mid layer color ([86023e3](https://github.com/Sage/design-tokens/commit/86023e3226b2716f3e4420cf3bb100d53761e611)) +* **data:** adding a large subtle radius token ([4d1b23a](https://github.com/Sage/design-tokens/commit/4d1b23a920651766b2337ef4584f9cd449e29a5a)) +* **data:** adding bg and bg alt progress colors ([cd51101](https://github.com/Sage/design-tokens/commit/cd511013e0264231f33f775c02f563589e3821ea)) +* **data:** adding copilot colors for foundations ([f850743](https://github.com/Sage/design-tokens/commit/f85074372ee4d11b4967dd008930c0cd7219887a)) +* **data:** adding dark colors for message subtle WIP ([c0c183a](https://github.com/Sage/design-tokens/commit/c0c183a7c6943b91c399521465bab5e7682a64c5)) +* **data:** adding dark theme subtle message colors ([2a98950](https://github.com/Sage/design-tokens/commit/2a989503f2ec78af41c0595ffd95a6625b03bc51)) +* **data:** adding marketing large screen tokens ([2e951b7](https://github.com/Sage/design-tokens/commit/2e951b7c05a4771c613811a110ce3bd628be2df7)) +* **data:** adding marketing overrides for semantic mid layer ([04ce276](https://github.com/Sage/design-tokens/commit/04ce276c55db25ad0331485c0646e3c7c35a56bb)) +* **data:** adding marketing primitive responsive step sizes ([5540ccb](https://github.com/Sage/design-tokens/commit/5540ccbe76f2fd2e113f84754ac53afc0edaf753)) +* **data:** adding max width token for message content ([3c6d37d](https://github.com/Sage/design-tokens/commit/3c6d37d747675813bca5807d88dbf7f957013a1d)) +* **data:** adding menu X tokens ([2b559b1](https://github.com/Sage/design-tokens/commit/2b559b1b1f08719a2c20d7fb86e1aa39d9523a0e)) +* **data:** adding remaining missing colors for our foundations icons ([3d1aeef](https://github.com/Sage/design-tokens/commit/3d1aeef4cbe609bfee282dc3233c024e788d5256)) +* **data:** adding space tokens for nikolay ([cfbe567](https://github.com/Sage/design-tokens/commit/cfbe567d8474ecfb9a363dbf6fd41671b61e2ef0)) +* **data:** adding subtext tokens underneath standard dropdown option set ([22285dd](https://github.com/Sage/design-tokens/commit/22285dd060802d636ce350117c96e77f612a4127)) +* **data:** adding success green for validation text on password checker ([3510371](https://github.com/Sage/design-tokens/commit/351037129cd15077e0aad512a33a6fe5310199a4)) +* **data:** adjusting baseline width to be 4px on tabs ([400085f](https://github.com/Sage/design-tokens/commit/400085fd79765ad827f81b9d8cfa8484ff31adf1)) +* **data:** adjusting color tokens for video button ([23f677c](https://github.com/Sage/design-tokens/commit/23f677cc78da1e77da189d9f78fea1f8f368e2f5)) +* **data:** adjusting large subtle button top padding ([c9b0495](https://github.com/Sage/design-tokens/commit/c9b049554c2b634691787e89a78805ef7634882f)) +* **data:** adjusting mid layer hover alt colors ([1cba6d0](https://github.com/Sage/design-tokens/commit/1cba6d00e11dc8b1c2f238cb22a1266dfe2d1c2c)) +* **data:** adjusting video button based on joseph's feedback ([f1e376b](https://github.com/Sage/design-tokens/commit/f1e376bdbd209e5338dd8a3db310abf0ccced41c)) +* **data:** changing password xg spacing to 6px ([14df34a](https://github.com/Sage/design-tokens/commit/14df34a458d3df13d2ff5bdabb1b29bbcb126dc2)) +* **data:** consolidating down adaptive fonts to make them work in figma variables once more ([a1d2087](https://github.com/Sage/design-tokens/commit/a1d2087f95134f25120ab55909b6875282de9d20)) +* **data:** Correct gradient values on color/interactive/ai active and hover, and on color/status/content/loading ([f45ddb3](https://github.com/Sage/design-tokens/commit/f45ddb3dca66cc535a8fe030590cbdb8a960929f)) +* **data:** Dark mode: Remove incorrect lines in alpha mixes: 1. "color": "{modes.color.modifier.contrastLess}" from lines 202, 257, 609. 2."color": "{modes.color.modifier.contrastMore}" from lines 424, 623, 701 ([e2c9a83](https://github.com/Sage/design-tokens/commit/e2c9a8372aeffb0acf0a21557cc5229fe1015517)) +* **data:** DARK THEME Correct gradient values on color/interactive/ai active and hover, and on color/status/content/loading ([c40b2c8](https://github.com/Sage/design-tokens/commit/c40b2c8625856a12e02264cd3ae214d201f3692a)) +* **data:** fixing border width on arrows for tab ([17a3e4f](https://github.com/Sage/design-tokens/commit/17a3e4f1d1271b846f392b4e5eac4c22ee2819b9)) +* **data:** fixing broken marketing typography overrides ([75aa581](https://github.com/Sage/design-tokens/commit/75aa581f36d0a4f09e3e413bcfd60d1d58a2be1c)) +* **data:** Fixing broken token aliases in progress file. ([3abd04b](https://github.com/Sage/design-tokens/commit/3abd04be337de76982d971aafbfdb809080bc03e)) +* **data:** further video button tweaks ([69632f3](https://github.com/Sage/design-tokens/commit/69632f3eb3935d4c7c12d80fd4bf124fab6ab6b9)) +* **data:** increasing border-width for step flow. Looked too small previously ([2fdf32d](https://github.com/Sage/design-tokens/commit/2fdf32da567e5ed91ee2293fd0cd09d43d3ba7f7)) +* **data:** Light mode: 1. Remove incorrect lines in alpha mixes: "color": "{modes.color.modifier.contrastMore}" from lines 425, 635, 713. 2. Remove incorrect line ""color": "{modes.color.modifier.contrastLess}" from lines 202, 257. ([57a71d3](https://github.com/Sage/design-tokens/commit/57a71d3062c281da3c8db0f791b23784303b4494)) +* **data:** lightening the page backdrop color ([31a7297](https://github.com/Sage/design-tokens/commit/31a72978cff1621dac092d712e943136541294fc)) +* **data:** making step minus one 13px frozen theme for copilot usecase ([8c04b23](https://github.com/Sage/design-tokens/commit/8c04b23dd4ee6001a46a36a07b3f4fea37022074)) +* **data:** pushing copilot identifier tokens ([123ee77](https://github.com/Sage/design-tokens/commit/123ee776ce81f4112725e0e4b876e0988c966741)) +* **data:** pushing wip logo work ([103afbe](https://github.com/Sage/design-tokens/commit/103afbef5bf15220ced25cd80c69d68486872356)) +* **data:** reducing 4px top padding on option subtext in dropdown menus to 2px ([d792ee8](https://github.com/Sage/design-tokens/commit/d792ee83f28e2ef8946919ad79997ba22d1bb242)) +* **data:** reducing pading top on summary list component ([2e22e1d](https://github.com/Sage/design-tokens/commit/2e22e1d1247328057cfd5e57cbbe1f05a5a106f6)) +* **data:** rename modes.color.interactive.dataEntry legacy to frozen ([fade76c](https://github.com/Sage/design-tokens/commit/fade76ce7d2f3cf22b1200b9842e22117e7e6f4a)) +* **data:** Rename modes.color.interactive.primary legacy to frozen. ([d9f29a9](https://github.com/Sage/design-tokens/commit/d9f29a9831ead05037fade0485764b5698160d1d)) +* **data:** Reorder code and add color.interactive.primary.frozen defaultAlt and hoverAlt to dark mode theme. ([08b5096](https://github.com/Sage/design-tokens/commit/08b509695ac2bc9cfdd38735f5ba0964d9fcac7b)) +* **data:** restructuring some mid layer tokens to make monochrome less of a mess ([52aad05](https://github.com/Sage/design-tokens/commit/52aad05f67c9cceb36eade844d550464e4014ceb)) +* **data:** simplifying mid layer type tokens ([522b2d5](https://github.com/Sage/design-tokens/commit/522b2d5cbb805c79407fed722ba9da183ac2f260)) +* **data:** sync to variables ([d31329f](https://github.com/Sage/design-tokens/commit/d31329fefc52a1d9facb82371ea9944408572617)) +* **data:** syncing themes ([c740ae4](https://github.com/Sage/design-tokens/commit/c740ae43d12cc7366067f7b8ad256c42c855a44f)) +* **data:** syncing themes ([2f6b54d](https://github.com/Sage/design-tokens/commit/2f6b54d88facae325736411fa5531fe0f1324c51)) +* **data:** syncing themes ([590e9d7](https://github.com/Sage/design-tokens/commit/590e9d7cdb4a82fa31c72ae8c208a3b32a44dfd6)) +* **data:** syncing themes ([b7a75f6](https://github.com/Sage/design-tokens/commit/b7a75f66cdda5f12458f916f2d14d936b9e0707b)) +* **data:** syncing themes ([ec12d32](https://github.com/Sage/design-tokens/commit/ec12d320212ebe5e30a163ea2fe3ed8f409cbbc6)) +* **data:** syncing themes ([1a70579](https://github.com/Sage/design-tokens/commit/1a705795a6a9ae1730da00c03ab9f666ded510f3)) +* **data:** syncing themes ([d84ee1f](https://github.com/Sage/design-tokens/commit/d84ee1fd2d517e72118dc8db8a8132a6996bd711)) +* **data:** syncing variables ([d6331a6](https://github.com/Sage/design-tokens/commit/d6331a6490faa16cc22826eb9a48b524a1c533e9)) +* **data:** theme syncing ([e35e444](https://github.com/Sage/design-tokens/commit/e35e4449818da10d2197093a8c7f8428fb570e45)) +* **data:** theme syncing ([ac68fe4](https://github.com/Sage/design-tokens/commit/ac68fe4b2eb8505e7901f0caadff966d238697ed)) +* **data:** theme syncing ([a966be1](https://github.com/Sage/design-tokens/commit/a966be102fc384c1eff0cf770b9d533f6aa8beed)) +* **data:** theme syncing ([0bcffe5](https://github.com/Sage/design-tokens/commit/0bcffe5f5549a576ab6a1144686949cb90e69c03)) +* **data:** theme syncing ([3654bb1](https://github.com/Sage/design-tokens/commit/3654bb102302cf0cf1ff4ca3cef47b7919dfdcb8)) +* **data:** theme syncing ([478830b](https://github.com/Sage/design-tokens/commit/478830bb55c4546ca58d800744e6d809e0d3e52d)) +* **data:** tweaking dark theme colors for messages ([63406b3](https://github.com/Sage/design-tokens/commit/63406b3d571fbd03a7680db0543f40fe62cc0641)) +* **data:** tweaking dark theme tertiary button colors ([12faa25](https://github.com/Sage/design-tokens/commit/12faa2555d312f9247980182023c2847e4e85ccd)) +* **data:** update light ratings colors ([d261b8b](https://github.com/Sage/design-tokens/commit/d261b8b96cdc17a57c972d9c585de0e9e5a1f508)) +* **data:** Update value of nav menu border ([8b1d09d](https://github.com/Sage/design-tokens/commit/8b1d09dfab41352234c4350f7551d271fdb55dfc)) +* **data:** updating buttons on tab to have 4px bottom border ([ade4e9d](https://github.com/Sage/design-tokens/commit/ade4e9dac5f02c60430d0278fd92bfc459e0dc26)) +* **data:** updating modifier color of link to reflect naming elsewhere. Updating hover color to not be same as active ([48000ea](https://github.com/Sage/design-tokens/commit/48000ea248745141a9d0bdfff93051416bb00715)) +* **data:** updating password checker spacing to use 8px multiplier ([154f048](https://github.com/Sage/design-tokens/commit/154f0483cdc19ca6ff002b5bfba8cad317be9fa9)) +* **data:** updating typography descriptions to be more accurate ([cd24748](https://github.com/Sage/design-tokens/commit/cd24748fb1d0509b0add5b8c5597e17bee35b2b9)) + +# [5.0.0-beta.24](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.23...v5.0.0-beta.24) (2024-10-08) + + +### Features + +* **data:** add an inverse color for bg alt ([1c0922f](https://github.com/Sage/design-tokens/commit/1c0922fa21d7a29e85bf559052fb187057ac00f1)) +* **data:** adding a size none for container group ([4c17be2](https://github.com/Sage/design-tokens/commit/4c17be2311adbdb47514a0770dcd65d507176692)) +* **data:** adding adaptive size tokens for skeleton ([e1c0621](https://github.com/Sage/design-tokens/commit/e1c0621115b111c40011990dcd3b832fb0edf641)) +* **data:** adding better page bg colors to make the ui feel more modern ([75f674f](https://github.com/Sage/design-tokens/commit/75f674f0fcd7da8aa8b63fb254f3b1e25c80dfff)) +* **data:** adding bold link tokens ([384774d](https://github.com/Sage/design-tokens/commit/384774d54fdc712d84f916c5eeff42f66ceead3e)) +* **data:** adding clamp responsive profile type tokens ([a5ca8a5](https://github.com/Sage/design-tokens/commit/a5ca8a57924d1d931af6745155d1235ae8ddc552)) +* **data:** adding H5 token for lisa ([a410bea](https://github.com/Sage/design-tokens/commit/a410beaee9c90e14341060b9633f1350da6a55c6)) +* **data:** adding heading mid layer tokens ([94c40f8](https://github.com/Sage/design-tokens/commit/94c40f89fef4158ac2cc13a6c9d2e71b9bfbcd79)) +* **data:** adding marketing roundedness overrides for card and tile ([d554a8b](https://github.com/Sage/design-tokens/commit/d554a8b36cba28a4f280b6aaeb37fb370c6865e2)) +* **data:** adding mid level backdrop colors for page level tokens ([94a564b](https://github.com/Sage/design-tokens/commit/94a564b5b0eee975e9c6bb2abf05d9a5550d97ac)) +* **data:** adding missing H5 token ([e7d5751](https://github.com/Sage/design-tokens/commit/e7d57511e72a34f18d12f530787ec55f6a53506f)) +* **data:** adding missing legacy tokens for input and popovers ([25979ed](https://github.com/Sage/design-tokens/commit/25979edc6b705577d512a9414ce91ff57922ceca)) +* **data:** adding missing pill wrapper tokens ([631c800](https://github.com/Sage/design-tokens/commit/631c800c8b0bf062886b08d73561ce98452dcb0d)) +* **data:** adding more legacy theme overrides ([125c97f](https://github.com/Sage/design-tokens/commit/125c97fe01660a4c4143775d2a26a083e1c9d448)) +* **data:** adding opacity token for progress spinner ([e58e4b9](https://github.com/Sage/design-tokens/commit/e58e4b9068e38943317b02bdbe2120a11423e329)) +* **data:** adding pill radius override to legacy theme ([8a97267](https://github.com/Sage/design-tokens/commit/8a972670e4143dca2d906ea35cd20f79fc86abc4)) +* **data:** adding profile type tokens ([472cdf3](https://github.com/Sage/design-tokens/commit/472cdf3e1d8beb2c510b7e5cb66ba30f2795caea)) +* **data:** adding rating tokens ([e34a901](https://github.com/Sage/design-tokens/commit/e34a901d723d579ee50e39c1addff911467a84fe)) +* **data:** adding small screen overrides for typography ([1288db5](https://github.com/Sage/design-tokens/commit/1288db58803345aaba6fd53df8f4583f37a942c3)) +* **data:** adding support for legacy navy subtle button ([c25d316](https://github.com/Sage/design-tokens/commit/c25d3165d91b5a3db12cb27b29e605d1a71a4d8d)) +* **data:** adding XS size for initials in ([892fb64](https://github.com/Sage/design-tokens/commit/892fb641d506f84aa0c7f0a250bcdf4e159abfb1)) +* **data:** adjusting color bg color for spinner bg ([a42e1c4](https://github.com/Sage/design-tokens/commit/a42e1c42c13eff6f643819a163ee2143177a6e43)) +* **data:** adjusting font sized for product default large paragraph text ([5db76c2](https://github.com/Sage/design-tokens/commit/5db76c2332d993a13a6b9798afaffcb9aeac94be)) +* **data:** attaching local variables ([be6fcc9](https://github.com/Sage/design-tokens/commit/be6fcc915afcbf96cd2f39e3c3738cc807d93fc0)) +* **data:** attempting to override small type tokens ([69f49e9](https://github.com/Sage/design-tokens/commit/69f49e9568da363771fcdad082733be35dc21139)) +* **data:** changing feedback group to be called status instead ([6e53b61](https://github.com/Sage/design-tokens/commit/6e53b61a732554eeb85942762af688066590687e)) +* **data:** changing paragraph name to be typical instead of standard ([ccb1dc4](https://github.com/Sage/design-tokens/commit/ccb1dc4951b377e424e60dcf9c5995ab8fd4a2e3)) +* **data:** changing the order of variable modes ([46c78b2](https://github.com/Sage/design-tokens/commit/46c78b24592a163604b54035be36b77c997eeb3e)) +* **data:** deleting a dupe token ([4855c9e](https://github.com/Sage/design-tokens/commit/4855c9eb7bdd4cd5cb1f2632af46302e1e182a06)) +* **data:** finalising type tokens for profile comp ([f64eb8d](https://github.com/Sage/design-tokens/commit/f64eb8dda3da00814468804192178624b86cfa6f)) +* **data:** fixing a typo ([754ad3b](https://github.com/Sage/design-tokens/commit/754ad3b6ae52c4b2bd7763d2131c36f12680c808)) +* **data:** fixing alias references where inverse was referenced inside standard groups ([f35c99e](https://github.com/Sage/design-tokens/commit/f35c99e1adb06be94997f1b56f23d024aa5033ae)) +* **data:** fixing aliases on popover component group. Previosly inverse was pointing to standard. ([7974ada](https://github.com/Sage/design-tokens/commit/7974adafd1eb8e10fd031639a83b3218c7d33e81)) +* **data:** fixing an alias token in page component specific layer ([d5a48f8](https://github.com/Sage/design-tokens/commit/d5a48f8f83e9ffdc1970b14609d371dfa764b7eb)) +* **data:** fixing bg colors for vas on rating ([2be5cb3](https://github.com/Sage/design-tokens/commit/2be5cb3e96e14a4199ede69e300eb787a53113d2)) +* **data:** fixing broken variables ([8bfce1b](https://github.com/Sage/design-tokens/commit/8bfce1b89d1a37a9571886e5c2cb48f76b477a55)) +* **data:** fixing container aliases to remove inverse references in standard groups ([65581c7](https://github.com/Sage/design-tokens/commit/65581c76b5d81d88149eaf9bf1bb69715824c2c2)) +* **data:** fixing dimmer token issues ([f02cf49](https://github.com/Sage/design-tokens/commit/f02cf49591e3c902d79371dc31d90c13164ac2f1)) +* **data:** fixing focus label color issue on dark theme ([2b095e3](https://github.com/Sage/design-tokens/commit/2b095e35e2eec17bb78fcdfb4ce5910ead5f6bb8)) +* **data:** fixing inverse bg color on nudge ([be47be4](https://github.com/Sage/design-tokens/commit/be47be4aaf612a1924d55d6e2ed35930dbe4a757)) +* **data:** fixing issue with status bg color on inverse ([5f9e5bd](https://github.com/Sage/design-tokens/commit/5f9e5bd1ac4d84e52afe27cf3adcc6726adf9258)) +* **data:** fixing lots of component large type sizes. They were pointing to small instead of large. ([c1e0631](https://github.com/Sage/design-tokens/commit/c1e06316e36fe450245989de445b0ef01defe231)) +* **data:** fixing mid layer discrepencies ([b3995f7](https://github.com/Sage/design-tokens/commit/b3995f7ae4c08e236a408ace17d5dcbd5f112367)) +* **data:** fixing responsive large subtle button where it accidentally pointed to small instead of large ([3d2f3e7](https://github.com/Sage/design-tokens/commit/3d2f3e7469503d5c0f568ee4e8e96ab8755cdab4)) +* **data:** fixing skeleton state mid layer aliases ([80f5f9c](https://github.com/Sage/design-tokens/commit/80f5f9cdb868126f9ca72b4af9675dc1def2d93e)) +* **data:** fixing skeleton state size ([806efb6](https://github.com/Sage/design-tokens/commit/806efb61f28c967694e3894c645ac007f39a3fbe)) +* **data:** fixing some of the issues withy file input tokens where mid layer was incorrectly set up ([978741e](https://github.com/Sage/design-tokens/commit/978741e567aa529f163d5ee837b66abeab6941ef)) +* **data:** fixing some sentancecase issues ([1ebdbdb](https://github.com/Sage/design-tokens/commit/1ebdbdb9f2cb4a5a822b1f44fd2249a0595ace8d)) +* **data:** fixing status alias issues ([bad7e72](https://github.com/Sage/design-tokens/commit/bad7e728c1b9ce6fdde8a9edac0e0c2a6ce467cd)) +* **data:** fixing table label colors ([25b4b0e](https://github.com/Sage/design-tokens/commit/25b4b0e447ac0243c62868de724b0584e4d87dc7)) +* **data:** fixing typo in the progress group ([2d2011c](https://github.com/Sage/design-tokens/commit/2d2011ce18fb8f4175fec7513f6a1c075c1b86a7)) +* **data:** improving table colors to make them more on brand ([8349cae](https://github.com/Sage/design-tokens/commit/8349cae0594b8fc7b3875b7b606e236cf8ff53ab)) +* **data:** making adaptive type play well with Figma ([23dbc28](https://github.com/Sage/design-tokens/commit/23dbc28c91471fc3d1aa22f0a3d0ac7bdd6ecde1)) +* **data:** making sure large button type sizes point to their large counterparts in the mid layer ([563e7ae](https://github.com/Sage/design-tokens/commit/563e7ae96501c10d90d6ac7e9d13d7de4ef74f4c)) +* **data:** moving nudge tokens to container instead of status ([150425b](https://github.com/Sage/design-tokens/commit/150425b1e1891e39733bd135a157ddf23b1d5337)) +* **data:** removing alias reference to standard groups that sit within inverse inside status component file ([ad4f054](https://github.com/Sage/design-tokens/commit/ad4f054f5e909d9344dcfc2ec898f95f17a4cf6e)) +* **data:** removing all reference to inverse tokens ([6369f3e](https://github.com/Sage/design-tokens/commit/6369f3e046759b4d19d69b5703ac134d70a1a95b)) +* **data:** removing any reference of standard in inverse for buttons and badges ([441eaf9](https://github.com/Sage/design-tokens/commit/441eaf9ac67234c7cf367182a3baf22bd77b9d01)) +* **data:** removing extra semicolons for linear gradients in the modes mid layer ([5371e2d](https://github.com/Sage/design-tokens/commit/5371e2d5f7eb9e2665ed0bdd3fab5dacc864986e)) +* **data:** removing token that breaks the things ([4cbb2b2](https://github.com/Sage/design-tokens/commit/4cbb2b290fc70c51b1b3e72fc805a2f28b93a887)) +* **data:** simplifying skeleton size tokens ([3a10a0a](https://github.com/Sage/design-tokens/commit/3a10a0abd4d76e675cbd552b371fff29c73ab269)) +* **data:** simplifying the type tokens so we can change font size via variables ([b7c5cde](https://github.com/Sage/design-tokens/commit/b7c5cdeba3cd182c7915d5003a45fbb39009f426)) +* **data:** syncing themes ([b2872b9](https://github.com/Sage/design-tokens/commit/b2872b9cefc244add9bbd34d329d3a8794d46644)) +* **data:** syncing themes ([3deb142](https://github.com/Sage/design-tokens/commit/3deb1420b5fe8900d20a06e461d8eb5ba04de763)) +* **data:** syncing themes ([11b8091](https://github.com/Sage/design-tokens/commit/11b8091d03107e52319ea5cef0c958994b4db37d)) +* **data:** syncing themes ([f1b6a2c](https://github.com/Sage/design-tokens/commit/f1b6a2c0f5a2034a1c1f4b818a4debf57bffbf16)) +* **data:** syncing themes ([d94994f](https://github.com/Sage/design-tokens/commit/d94994fcc38d00c8f38b3a2edca7dddf09157f5d)) +* **data:** syncing themes ([64a008b](https://github.com/Sage/design-tokens/commit/64a008ba67455dbe09f350157cfbfdeadd71512b)) +* **data:** syncing themes ([00c624e](https://github.com/Sage/design-tokens/commit/00c624e08c9be603aef6d778126ff2adb5445174)) +* **data:** syncing variables ([48bcfe9](https://github.com/Sage/design-tokens/commit/48bcfe95e4929dc1473274cf719f7e4ad81475e8)) +* **data:** syncing variables ([bda86ae](https://github.com/Sage/design-tokens/commit/bda86aebd58e0b6b2be301138eba21cbc4fe25ce)) +* **data:** tertiary button override ([192bc66](https://github.com/Sage/design-tokens/commit/192bc66bd747aa61ea48c5634648c8532c839f00)) +* **data:** theme syncing ([e2899b2](https://github.com/Sage/design-tokens/commit/e2899b22b7e58cec68b88b7a0c6b296583254a8e)) +* **data:** theme syncing ([2959e00](https://github.com/Sage/design-tokens/commit/2959e0096ca145e4b7c428436fb088e8276162aa)) +* **data:** theme syncing ([b1fbe5f](https://github.com/Sage/design-tokens/commit/b1fbe5f81dbe99a24032f161339393ed51884074)) +* **data:** theming sync ([bce0c2f](https://github.com/Sage/design-tokens/commit/bce0c2fa99438a98a1753121accb221277578533)) +* **data:** Update description of modes.color.brandreference.custom2. ([d779537](https://github.com/Sage/design-tokens/commit/d7795377bd8c76d1c78a4cd2b34e5b46bdee11a1)) +* **data:** Update lineheight values from 125 to 150 percent on responsive and adaptive tokens for headings XS and S, and subheadings S and M ([6e49beb](https://github.com/Sage/design-tokens/commit/6e49bebe20d1c093db553ed0aeb854bb490e9445)) +* **data:** Update values of logo sage colours to reference primitive instead of light mode colours ([55866f4](https://github.com/Sage/design-tokens/commit/55866f4766c09b3776439e68038c288075d5d4c7)) +* **data:** updating checkbox and radio handles to be correct color ([32f01f7](https://github.com/Sage/design-tokens/commit/32f01f7676336f71a109c52a2332eed441a81e02)) +* **data:** updating dark theme to be a true dark theme ([081fa64](https://github.com/Sage/design-tokens/commit/081fa64c0a6ac8ebeb82f5a500bc50b64d62dbe4)) +* **data:** updating inverse color token to be more readable ([fb06464](https://github.com/Sage/design-tokens/commit/fb064645dae761cffe1a9a9f0ea9da949a45505f)) +* **data:** updating marketing tokens to remove standard prefix ([766a82d](https://github.com/Sage/design-tokens/commit/766a82d15f20f9a07be260088ff9bdc523004fed)) +* **data:** updating page typography tokens to have additional hero options ([8e1c939](https://github.com/Sage/design-tokens/commit/8e1c9397f0e44bccb644878029367d55b63003fe)) +* **data:** updating progress bg color ([1af5b89](https://github.com/Sage/design-tokens/commit/1af5b89d7be64046d6749ac95275b11cdfbb3d44)) + +# [5.0.0-beta.23](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.22...v5.0.0-beta.23) (2024-09-20) + + +### Features + +* **data:** adding screensize dependant breakpoint-min-width token ([4b280c3](https://github.com/Sage/design-tokens/commit/4b280c3197149a593370569552bddfa1c7e32617)) + +# [5.0.0-beta.22](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.21...v5.0.0-beta.22) (2024-09-09) + + +### Features + +* **data:** adding a button goggle specific border ([6285e93](https://github.com/Sage/design-tokens/commit/6285e93ebf5bae4b36ca8ffb9803f96c9ce06737)) +* **data:** deleting out duplicate disabled color ([3b338c5](https://github.com/Sage/design-tokens/commit/3b338c57fed67351fb829fc279f239cba46da68c)) + +# [5.0.0-beta.21](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.20...v5.0.0-beta.21) (2024-09-06) + + +### Features + +* convert media-feature-range-notation to context ([99e93d6](https://github.com/Sage/design-tokens/commit/99e93d6d4e14d5abd7ae87adb09033dcb96a36fa)) + +# [5.0.0-beta.20](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.19...v5.0.0-beta.20) (2024-09-06) + + +### Features + +* **data:** feat(data): ([284ae70](https://github.com/Sage/design-tokens/commit/284ae7060c19e01a628ac412fc02bf976bcec453)) +* **data:** 1. Add base.color.generic.content.standard.moderate. 2. Update value of base.color.interactive.inactive.standard.iconAlt. ([59e2354](https://github.com/Sage/design-tokens/commit/59e23545ff8cbf5ca99aacc91ac6a298d4277680)) +* **data:** 1. Add form.space.calendar.yg.M. 2. Remove popover calendar tokens. ([3903f30](https://github.com/Sage/design-tokens/commit/3903f30d9424b86cbad27e746bc8721dd0f568e5)) +* **data:** 1. Add origin.colors.lightAiV. 2. Add base.color.status.ai.inverse.default-vertical. 3. Add feedback.color.inverse.AI.nudge tokens. 4. Add feedback.color.inverse.text. ([1a47a24](https://github.com/Sage/design-tokens/commit/1a47a24fa060f0973e16084371a58d527deea90b)) +* **data:** 1. Change progress.size. carouselselector to carousel.selector. 2. Change progress.space carouselslide carousel.slide. 3. Add progress.space.carousel.selector.y. 4. Reorder code alphabetically. ([08bdf3e](https://github.com/Sage/design-tokens/commit/08bdf3e3dbd82700280bbf492afb564910386d8f)) +* **data:** 1. Change token name of several form.color.switch tokens from activedisabled and to activedisabled. 2. Update value of form.color.switch.label-active for On label. 3. Update value of form.color.switch.label-activedisabled. ([a7c3655](https://github.com/Sage/design-tokens/commit/a7c3655704109ba24ccbb589bb5820f9ea8fb7fe)) +* **data:** 1. Create subsets in feedback.space.message tokens. 2. Add feedback.size.message.global tokens. ([771a8f3](https://github.com/Sage/design-tokens/commit/771a8f3e691730d1c00c330e0299e0cd1071b4b1)) +* **data:** 1. Delete form.size.filepreview.thumbnail. 2. Add form.space.filepreview.thumbnail tokens. ([a19b909](https://github.com/Sage/design-tokens/commit/a19b9098d770ba78c0f1f3a09483655e7c5c7bbb)) +* **data:** 1. Delete progress.space.loader.xg.xs. 2. Add progress.space.loader x, xg, and y tokens ([0b47dc4](https://github.com/Sage/design-tokens/commit/0b47dc458fd0c480b4ff310be0fb3b55222668fc)) +* **data:** 1. Move container.size.pagination tokens to progress.size.carouselselector. 2. Add progress.opacity.carousel.inactive. 3. Add progress.space.carouselslide.x. ([bbbde71](https://github.com/Sage/design-tokens/commit/bbbde71be88463e36bab8f5fb08586460f975cbf)) +* **data:** 1. Remove button.space.generic tokens. 2. Add button video colour tokens. 3. Update value of form.color.standard.calendar.text-hover. 4. Update values of modes.color.interactive.monochrome standard and inverse withDefault ([ecf4299](https://github.com/Sage/design-tokens/commit/ecf4299348944f334279a67416425fc764254ff7)) +* **data:** 1. Rename base.color.status.cool to base.color.status.generic. 2. Rename progress.color.standard fg-alt3 to datavis.fg-default. ([a35c46c](https://github.com/Sage/design-tokens/commit/a35c46c56ba9176bb3080a751f34db0a69c2166e)) +* **data:** 1. Rename radius colorswatch token to colorpicker. 2. Add calendar spacing tokens to Form. 3. Reorder Form tokens alphabetically. ([943b478](https://github.com/Sage/design-tokens/commit/943b47873b17bda6bb518588351f073c9790ee24)) +* **data:** 1. Temporary update to nav.color boder tokens. 2. Update value of nav.color.inverse.bg-alt. ([9c66e78](https://github.com/Sage/design-tokens/commit/9c66e78fb607c65c0bbb8cfedccf329cda543432)) +* **data:** 1. Update description of base.color.interactive.inactive.standard.contentAlt. 2. Add base.color.interactive.inactive.standard icon and iconAlt. 3. Update value of form.color.typical.icon- readOnly and disabled. ([87a5b94](https://github.com/Sage/design-tokens/commit/87a5b9404c786fe1902ff54da83b519f18299e0d)) +* **data:** 1. Update nav color names from subtle to standard, and from harsh to inverse. 2. Move popover colors into a standard parent folder. Create inverse popover colors. Update value of form.color.dropdown.bg-hover. 3. Add sage-icon font to global, and re-order font families. 4. Update value of global.typography.component.icon.M, and add S and L tokens. 5. Reorder typography code. ([9a9593f](https://github.com/Sage/design-tokens/commit/9a9593f7708aad8719b8a2b5120f5e211bfed146)) +* **data:** 1. Update progress skeleton space tokens. 2. Add container.radius.contacttile token. 3. Add container.color.inverse tokens. 4. Add container.radius.contacttile. ([7fb492d](https://github.com/Sage/design-tokens/commit/7fb492d5c395dffa01bf2c0220de2ca6db3a249d)) +* **data:** 1. Update value of form.radius.colorpicker. 2. Reorder Form radius and borderwidth tokens alphabetically. ([95080b6](https://github.com/Sage/design-tokens/commit/95080b682c57d6812517666d782541278bd46d64)) +* **data:** 1. Update value of global.size.icon S and L. 2. Update value of container.size.icon.L. 3. Add form.size.icon S and L. ([81eb80a](https://github.com/Sage/design-tokens/commit/81eb80a5ab80e76c79b559be25829e1327e086da)) +* **data:** 1. Update value of nav.size.horizontal.navbar.content.icon.M. 2. Update descriptions on progress.space.skeleton.singleline.xg tokens ([8f1a109](https://github.com/Sage/design-tokens/commit/8f1a109d1af20c8b536f0bb575a83b1a707ed233)) +* **data:** 1. Update values and descriptions of base.color.interactive.primary tokens. 2. Add base.color.modifiers.link tokens ([b66a85f](https://github.com/Sage/design-tokens/commit/b66a85f8699150cb12fcd79054b15d99e7e1f712)) +* **data:** 1. Update values of progress.space.stepsequence yg.M and xg.M. 2 Addprogress.color.stepsequence colors. ([557e518](https://github.com/Sage/design-tokens/commit/557e5181c69aa5129bad27bcbb0afc90050b83e8)) +* **data:** 1) Delete nav.color item.border active and default tokens. 2) Delete nav.radius.navigationleft ([61fe9df](https://github.com/Sage/design-tokens/commit/61fe9dfd11947feec8e998a6640f1f2017e0c3a0)) +* **data:** 2nd push ([2d725d0](https://github.com/Sage/design-tokens/commit/2d725d04fb830a4e961a84beeeb2cfb2d704805f)) +* **data:** 2nd push ([9913ac4](https://github.com/Sage/design-tokens/commit/9913ac44eba526e1be896f668af2d455e5a72157)) +* **data:** 2nd push ([d44bb3f](https://github.com/Sage/design-tokens/commit/d44bb3ffa033fb4bf0b8b48585141e29fac72cbe)) +* **data:** 2nd push ([fd33c65](https://github.com/Sage/design-tokens/commit/fd33c65f0509d5ec989365a1e52d0823e530a1ad)) +* **data:** 2nd push ([ce0578c](https://github.com/Sage/design-tokens/commit/ce0578c431931fb088057358fd829b9e435bcc6d)) +* **data:** 2nd push ([4b672cf](https://github.com/Sage/design-tokens/commit/4b672cf4ad405c4dcd75020b0110f8c19f3059bb)) +* **data:** 2nd push ([1575670](https://github.com/Sage/design-tokens/commit/15756705ae492aab0e28e157bc2d1e13627db922)) +* **data:** 2nd push ([9ffce0c](https://github.com/Sage/design-tokens/commit/9ffce0c6e43c59a5f56b26f778701f71ea54c957)) +* **data:** 2nd push ([d8046bb](https://github.com/Sage/design-tokens/commit/d8046bbcf3fb1ee627a389acbbd6041337ba4ff7)) +* **data:** 2nd push ([35f4e22](https://github.com/Sage/design-tokens/commit/35f4e22022e46d154fc1509e663cffa03ad9742d)) +* **data:** 2nd push ([a4cd3fe](https://github.com/Sage/design-tokens/commit/a4cd3fe44c753fb6faebae910b65f73c154b95e6)) +* **data:** 2nd push ([0986cb8](https://github.com/Sage/design-tokens/commit/0986cb883d11b0128e4ada87cfb2fd3bda7a75ea)) +* **data:** 2nd push ([af6de86](https://github.com/Sage/design-tokens/commit/af6de86419c7616b3e5db14af92745aa09d2beca)) +* **data:** actioning primary and secondary text color ratios ([4e1a804](https://github.com/Sage/design-tokens/commit/4e1a804c6eb05ab0b59b451483aced7b716d76c0)) +* **data:** add a higher contast subtle button ([cac153b](https://github.com/Sage/design-tokens/commit/cac153b1a4643e7d894cf39771e2f5101e5f9b5f)) +* **data:** Add activealt colours to navigation and popover. ([4b61001](https://github.com/Sage/design-tokens/commit/4b610017f46d8be85a3d4aace55209388451f6d9)) +* **data:** add ai border tokens ([2dda7e1](https://github.com/Sage/design-tokens/commit/2dda7e103c6ee502164bf78d736bd76f5a22a88e)) +* **data:** Add base and component tokens for logo colours. ([315b5e5](https://github.com/Sage/design-tokens/commit/315b5e567ce31042697dca4b9361c3ea1ac8b665)) +* **data:** Add base colour for status AI, add feedback colour for AI, and move nudge into AI. ([257a8ff](https://github.com/Sage/design-tokens/commit/257a8ff3299a9afca45b7df8aa23bc64ca150283)) +* **data:** Add base status cool colour, and add progress.color.standard.fg-alt3 (for progress tracker) ([f01188c](https://github.com/Sage/design-tokens/commit/f01188ca8fa16a7061c68d74ba6c9297823ee95c)) +* **data:** Add base.color.generic.bg.standard tokens. Update nav colour tokens. ([82b1829](https://github.com/Sage/design-tokens/commit/82b182929556e383ba93c3ccd15067c2bff2cfa5)) +* **data:** Add base.color.interactive.dataEntry.withActiveAlt and form.color.typical.iconAlt-active. ([ad5e41b](https://github.com/Sage/design-tokens/commit/ad5e41b858762f63d5fdeaaad0caf9ab4bb769f3)) +* **data:** Add base.color.status.ai.inverse.default-horizontal and update value of feedback inverse horizontal token ([5667887](https://github.com/Sage/design-tokens/commit/566788729e8bd62b617eb9d12bf998369deacd6c)) +* **data:** Add boxshadow for tab navigation ([f54613d](https://github.com/Sage/design-tokens/commit/f54613d6764325f4b4aa84e8cafac9212c831ce2)) +* **data:** Add button video.media colour and dimension tokens ([742c67d](https://github.com/Sage/design-tokens/commit/742c67db5a32f1991148d9c27326d6c6c41371a3)) +* **data:** Add button.space.bar.iconbutton ([cf6aa4b](https://github.com/Sage/design-tokens/commit/cf6aa4b92ac47810fb72daa99fbe641b63de95c1)) +* **data:** Add button.space.generic.icononly.x S, M and L tokens ([e8fabd9](https://github.com/Sage/design-tokens/commit/e8fabd999649acd1cfea530944973e9ac4f55d08)) +* **data:** Add container.radius.blockquote.bar ([e54efc5](https://github.com/Sage/design-tokens/commit/e54efc57d79082c33a1f07e9183f194828550276)) +* **data:** Add container.space.generic.content.yg.S back in ([9984861](https://github.com/Sage/design-tokens/commit/9984861ef384f41d45587a35f987e20fdda888a5)) +* **data:** Add container.space.linkpreview tokens. ([ba41994](https://github.com/Sage/design-tokens/commit/ba41994a915175060ca6ab681e846f0652d18d00)) +* **data:** Add container.space.stepflow.header.xg.M. Update a description. ([a7ee702](https://github.com/Sage/design-tokens/commit/a7ee702bbddccafd263383d073c15674954dc4b4)) +* **data:** Add feedback.color.none ([b2716d0](https://github.com/Sage/design-tokens/commit/b2716d0fc4c2c557265b3d6ac2683c843a304073)) +* **data:** Add feedback.color.standard.AI.border-default. ([e5e183a](https://github.com/Sage/design-tokens/commit/e5e183a7f229636bf83bbe20d5dedd16afe8c195)) +* **data:** Add feedback.color.standard.text ([bdf2bd0](https://github.com/Sage/design-tokens/commit/bdf2bd0ae34d8fd5bb73000a85a5fa2a43ecc194)) +* **data:** Add feedback.space.message.global.yg.M ([d10b2c7](https://github.com/Sage/design-tokens/commit/d10b2c7e856debe6fb30fa472dca356162e24b30)) +* **data:** Add feedback.space.message.nudge.yg tokens ([c975a93](https://github.com/Sage/design-tokens/commit/c975a9332b47fffe76aa09aa465f619e02de4a63)) +* **data:** Add form calendar size tokens. ([93857a2](https://github.com/Sage/design-tokens/commit/93857a2cad6aebf39bd96b036d6c092aa0b414fd)) +* **data:** Add form color dropdown tokens ([5e79f26](https://github.com/Sage/design-tokens/commit/5e79f267ccac1668079a0ad8a8aa7edc5a033061)) +* **data:** Add form.color.inverse.text-default. ([78dab84](https://github.com/Sage/design-tokens/commit/78dab842fc87154e8472fe9f67765ec7989a3f53)) +* **data:** Add form.size.checkbox.y. ([698d2ab](https://github.com/Sage/design-tokens/commit/698d2abfa01438c71c639d49fc7c680f2aefe7c0)) +* **data:** Add form.size.dropdown.subtle tokens for min width of subtle dropdown. ([3202996](https://github.com/Sage/design-tokens/commit/32029966bc97caae90352bf6661b269c1feef333)) +* **data:** Add form.size.fileinput.fileicon ([34f81b5](https://github.com/Sage/design-tokens/commit/34f81b57d6a191385ab002a266ac2342d1fb4575)) +* **data:** Add form.size.input.timeinput tokens ([fbb07bf](https://github.com/Sage/design-tokens/commit/fbb07bfc0bdee14522ea975c21aa2ef87cf375a2)) +* **data:** Add form.size.textarea.M. ([3e16365](https://github.com/Sage/design-tokens/commit/3e163651647bf552ca08876c45743624a7b098c8)) +* **data:** Add form.space.dropdown.button.x ([22cd15a](https://github.com/Sage/design-tokens/commit/22cd15ae14c826abd24eb28b17a1e890b3a09315)) +* **data:** Add form.space.dropdown.heading tokens. ([3e1fa45](https://github.com/Sage/design-tokens/commit/3e1fa45392084e1ab7e83ea2e9a1acc10913f0a6)) +* **data:** Add form.space.fileinput y.M and change M to xl.M. ([2c0d338](https://github.com/Sage/design-tokens/commit/2c0d3383e0321c2d9077e11c5a6faf1cded98b43)) +* **data:** Add form.space.switch.xg tokens ([f534285](https://github.com/Sage/design-tokens/commit/f534285cfa3a11a066c13291ad9e72749c70c2c1)) +* **data:** Add global.size.macro.XXL and button video size and space tokens ([1729308](https://github.com/Sage/design-tokens/commit/1729308cccd57fdd4842a403bf6b4fc805fcdfc2)) +* **data:** Add link.boxshadow.skiplink ([1a1b45e](https://github.com/Sage/design-tokens/commit/1a1b45ea69c0be6258d11002965bb7a5fe605f55)) +* **data:** add missing padding tokens for generic content padding container ([528496b](https://github.com/Sage/design-tokens/commit/528496b94f8e440373080753264106e46318eaaf)) +* **data:** Add nav.size.horizontal.menu.content.icon.M ([ff5e9e5](https://github.com/Sage/design-tokens/commit/ff5e9e53656807851b289318f498bf8b5e88b8b8)) +* **data:** Add nav.size.menu.content.icon.L ([cbd419f](https://github.com/Sage/design-tokens/commit/cbd419fcb1219eaab28e5223961eff8d58a808d2)) +* **data:** Add nav.size.menu.option.x.M ([e65064a](https://github.com/Sage/design-tokens/commit/e65064a4b50e30891c93d59e92f7bfa7afafd534)) +* **data:** Add nav.size.menu.option.x.M ([f77d5a4](https://github.com/Sage/design-tokens/commit/f77d5a4e6b6ac6d9b380d9c3f13fc19748075e87)) +* **data:** Add nav.size.navbar.content.icon.S ([01864aa](https://github.com/Sage/design-tokens/commit/01864aa28c69692d8dfa9af98ce26f14f2d771a6)) +* **data:** add nav.space.horizontal.menu.item.yg.M ([9823224](https://github.com/Sage/design-tokens/commit/98232245269ac64177c2eeda05a0b48145e98810)) +* **data:** Add nav.space.horizontal.menu.submenu.x.M ([3f24e8c](https://github.com/Sage/design-tokens/commit/3f24e8c858c3663c315d431bd70fcf8651f65181)) +* **data:** Add nav.space.horizontal.navbar.logo tokens ([6baa66d](https://github.com/Sage/design-tokens/commit/6baa66ddf8158e69da81307515640161916e9e0a)) +* **data:** Add nav.space.horizontal.navbar.logo.xg.M ([9cf3788](https://github.com/Sage/design-tokens/commit/9cf378894d83c24c1d2463dbcbbd05f5cd692b0f)) +* **data:** add nav.space.menu.content.x.L ([7bae097](https://github.com/Sage/design-tokens/commit/7bae0972c7d37003890790a8c2edb92132bfe396)) +* **data:** Add nav.space.menu.item.x.L ([6e385ec](https://github.com/Sage/design-tokens/commit/6e385ec0e2fd9c17e8f77126cffd85b8f9a3cdda)) +* **data:** Add new base tokens for status inactive, and update values of feedback readonly colour tokens. ([a4a6b98](https://github.com/Sage/design-tokens/commit/a4a6b98361c2f4db693dae9e511e58fcb89ce930)) +* **data:** Add new feedback.space.message.contextual.yg tokens ([15c41c7](https://github.com/Sage/design-tokens/commit/15c41c7c3919cedefaeb5ecef35eba5e09fc8ca5)) +* **data:** Add origin.box-shadow.downward.0 and global.boxshadow.cleanedge.top.near, and update value of nav.boxshadow.menu ([533942a](https://github.com/Sage/design-tokens/commit/533942a71ac03ac271f8c5dd5b61a9965e14bab1)) +* **data:** Add popover calendar and color picker spacing tokens. Delete form calendar spacing tokens. Re-order popover sizing and spacing tokens to be alphabetical. ([efcb0c6](https://github.com/Sage/design-tokens/commit/efcb0c697ea309fe6352d19dcde10e2f4d8962d3)) +* **data:** Add popover.radius.none. ([4f2cf37](https://github.com/Sage/design-tokens/commit/4f2cf3730f1a44837a8be21a7bf42064268028bb)) +* **data:** Add popover.space.menu.above.y.M. ([b88e183](https://github.com/Sage/design-tokens/commit/b88e183cbacd0d769165ba48a8018685aa94bf70)) +* **data:** Add popover.space.menu.yg S and L tokens ([c81d78d](https://github.com/Sage/design-tokens/commit/c81d78df9a81614a3ce7a04d2485062eea3584f5)) +* **data:** Add popover.space.option.xg.M. ([c082b85](https://github.com/Sage/design-tokens/commit/c082b85a08d6f053be6a3df69eac4859bc2c5e49)) +* **data:** Add profile.color bg-alt tokens. ([03f2954](https://github.com/Sage/design-tokens/commit/03f29541b4f3127f53a919457a9e2bd8b5750c15)) +* **data:** Add progress stepflow colour tokens. ([0e72e7e](https://github.com/Sage/design-tokens/commit/0e72e7ea78dc9fc373abb8548d75026e33bb628d)) +* **data:** Add progress stepflow tokens ([fd063f4](https://github.com/Sage/design-tokens/commit/fd063f43e180824957ba5fd57fae437eeb36206e)) +* **data:** Add progress.color.standard.fg-caution ([7571b25](https://github.com/Sage/design-tokens/commit/7571b250130713208902361aedda791decba86c9)) +* **data:** Add progress.color.standard.fg-info. ([69450c2](https://github.com/Sage/design-tokens/commit/69450c21076f1038b5f42ecfd858de4192992cc2)) +* **data:** Add progress.size.carouselslide.x.M. ([69279eb](https://github.com/Sage/design-tokens/commit/69279eb53e366b08fa4ca5087ac6e163bb7ed961)) +* **data:** Add progress.space.stepflow.y.M ([53d77e4](https://github.com/Sage/design-tokens/commit/53d77e4061f3fc17440f7ef886dc309e70ac92f7)) +* **data:** Add progress.space.tracker.xg.M. ([1e91b32](https://github.com/Sage/design-tokens/commit/1e91b3280d4da5bfa08c73dd36b64a02f3d52c9b)) +* **data:** Add S and L spacing tokens for popover ([db64042](https://github.com/Sage/design-tokens/commit/db640423281b5c052f87f8f5bbfb033141560449)) +* **data:** Add skiplink space tokens. ([c4adac9](https://github.com/Sage/design-tokens/commit/c4adac940b1a1c9732650c9644f5854f1dab765e)) +* **data:** Add small device size nav.space.horizontal tokens ([4c853ab](https://github.com/Sage/design-tokens/commit/4c853ab558fb8d854a336089e635fa5191b754e4)) +* **data:** Add tab.color.typical.bg-hover for anchor nav. ([d50fdc6](https://github.com/Sage/design-tokens/commit/d50fdc67b0887e2b488922499161fa7395b6377d)) +* **data:** Add tab.color.typical.navigation.bg-default back in. ([50beb14](https://github.com/Sage/design-tokens/commit/50beb14fe08aacbf390a63448fc8f2ab4d073726)) +* **data:** Add tab.radius.none ([e6e23e0](https://github.com/Sage/design-tokens/commit/e6e23e0552522e1581c11f9d7fc844005c8d1904)) +* **data:** Add typography token for icon. ([41dca6e](https://github.com/Sage/design-tokens/commit/41dca6ee1db20eb0645a5ab0b9a929bcb61b835b)) +* **data:** addding size tokens for empty state illustrations ([d362689](https://github.com/Sage/design-tokens/commit/d362689a466a078c280d041f43ced0dc501378ba)) +* **data:** added switch sizes for height and width ([511ed92](https://github.com/Sage/design-tokens/commit/511ed92dbff56c7b4c46b4853fa57696d5e4a0a5)) +* **data:** adding 'container.radius.blockquote.bar 4px' ([7ed26ca](https://github.com/Sage/design-tokens/commit/7ed26cae29df8d14aa0f76162b04baec0828a8d1)) +* **data:** adding 1 token to product theme to enable creation of color styles ([2adf9f4](https://github.com/Sage/design-tokens/commit/2adf9f4b05921c3272a30347e1bfeea37ae46e1f)) +* **data:** adding 2 identifier sizes for tile select ([2104d1f](https://github.com/Sage/design-tokens/commit/2104d1f4c5da082a3762c1aff8f538975a82c8af)) +* **data:** adding a 24px large spacing token for lisa to use within note ([5497828](https://github.com/Sage/design-tokens/commit/54978289c7db62ae72f1f3cb8a3d386222adddab)) +* **data:** adding a bg alt color to feedback ([52ed3af](https://github.com/Sage/design-tokens/commit/52ed3afa734ab3e577842fbaa60ac36b99990f54)) +* **data:** adding a gap token for FAB ([83791bd](https://github.com/Sage/design-tokens/commit/83791bdcfc964d81e588a6a6b3d3c0d4a2741222)) +* **data:** adding a marketing override for tabs bringing in brilliant green ([1def1f6](https://github.com/Sage/design-tokens/commit/1def1f61aecd8f4d88284698c8d127c6052f7e7e)) +* **data:** adding a navy override for monochrome ([eddb9db](https://github.com/Sage/design-tokens/commit/eddb9db9962c08020b054167fbabebfc95e86d9e)) +* **data:** adding a none value for page specific spacing ([f4763f2](https://github.com/Sage/design-tokens/commit/f4763f294194793d850bbff4585b95f34b64f2c8)) +* **data:** adding a size token for profile editor ([62b78d3](https://github.com/Sage/design-tokens/commit/62b78d371bfbb785afe92f51d6da971a45193fb1)) +* **data:** adding a specific color for button toggle border ([a0824c7](https://github.com/Sage/design-tokens/commit/a0824c71e5ca57198a1aee766d06617d0c1f3566)) +* **data:** adding a text alt color for inverse ([0ccdf6c](https://github.com/Sage/design-tokens/commit/0ccdf6cdc2144574e1376f6bcf4ced84223fd9b8)) +* **data:** adding a thick border for table ([801aa25](https://github.com/Sage/design-tokens/commit/801aa2534eddda61723f44a1e2eebf3582f3aba8)) +* **data:** adding a transparent tertiary bg color ([e3cf0ef](https://github.com/Sage/design-tokens/commit/e3cf0efb81ee386e43805902143ea1549fe7237d)) +* **data:** adding a video override for the brilliant green color on marketing theme ([6a0acf7](https://github.com/Sage/design-tokens/commit/6a0acf7637b51baee5d1c663afee6a2c13d0311c)) +* **data:** adding adaptive type tokens and changing origin name to primitives ([aadc8e8](https://github.com/Sage/design-tokens/commit/aadc8e8718dc920c2390f40417f0246aabfc55ef)) +* **data:** adding ai message tokens ([a22a99a](https://github.com/Sage/design-tokens/commit/a22a99ae6ec4c2d2fb4b7885cc4a537c196015f2)) +* **data:** adding AI tokens for the border in container ([e3f9103](https://github.com/Sage/design-tokens/commit/e3f91033bd5de29ced246b4ef66bdc9f894437e8)) +* **data:** adding alias mid layer tokens for skeleton state ([4f85acb](https://github.com/Sage/design-tokens/commit/4f85acbe94b2d5261bc742fce01271ddb3c1fe84)) +* **data:** adding an accordion bg color for inversed ([51f18a5](https://github.com/Sage/design-tokens/commit/51f18a5471f309db22eefb6e561ed1e6eef58945)) +* **data:** adding an activeAlt modifier for the activeAlt button state ([de71df2](https://github.com/Sage/design-tokens/commit/de71df2be8fb460925f0dc22a011d5dc58ddaa5d)) +* **data:** adding an inverse group for data vis ([650377b](https://github.com/Sage/design-tokens/commit/650377bec38b2c364cedf6f6a05599a642effe0a)) +* **data:** adding black bg color ([a24a876](https://github.com/Sage/design-tokens/commit/a24a8760f8e535ecc94e71d93852895a3670c691)) +* **data:** adding block quote tokens ([52872f7](https://github.com/Sage/design-tokens/commit/52872f713c5f4cf653e029ee1f3d335aade8f49b)) +* **data:** adding button specific tokens ([6d1c580](https://github.com/Sage/design-tokens/commit/6d1c580096e564929e35ea3d5c09ccd3088d3594)) +* **data:** adding button toggle active disabled state ([c8b8a38](https://github.com/Sage/design-tokens/commit/c8b8a38ed3f7d980186a6fc6fc3a02f866358eca)) +* **data:** adding callout color for subtle message type ([2580259](https://github.com/Sage/design-tokens/commit/25802591973128760baadbdc1223c813fcee93e5)) +* **data:** adding chip tokens ([f734649](https://github.com/Sage/design-tokens/commit/f73464943d6f2d74721508664d7410a6c10ad61b)) +* **data:** adding color tokens for page layouts ([6febb33](https://github.com/Sage/design-tokens/commit/6febb3304e42ec3795b8339698165e82bea9ed24)) +* **data:** adding dark theme mid layer ([3addf2f](https://github.com/Sage/design-tokens/commit/3addf2f03e14e47b552e0b82e2a2f729176038ba)) +* **data:** adding FAB child spacing tokens ([243b2cb](https://github.com/Sage/design-tokens/commit/243b2cbfb601a70fbc926edd3542e2261d99d96b)) +* **data:** adding FAB tokens ([42ec862](https://github.com/Sage/design-tokens/commit/42ec8622db03be4a868a210eb55c22e5f81ab5be)) +* **data:** adding first draft of breakpoint tokens ([6d1d2eb](https://github.com/Sage/design-tokens/commit/6d1d2ebed4d4650e4c01dc903f919d486aab046c)) +* **data:** adding fixed text sizes for lisa on note ([b2da796](https://github.com/Sage/design-tokens/commit/b2da7966e79b1cf723dbf0cf43e470370c50ec31)) +* **data:** adding gap token for use between table and pagination. ([3499691](https://github.com/Sage/design-tokens/commit/34996918487e16534aab349fbc93c2ecf187a8be)) +* **data:** adding gap tokens for tile select ([bbaacdb](https://github.com/Sage/design-tokens/commit/bbaacdb39d2568cd663b92ac4331acd0a628cc24)) +* **data:** adding height and spacing tokens for link preview ([90e5f7d](https://github.com/Sage/design-tokens/commit/90e5f7d102a25f7805353465be76c8df956ce69e)) +* **data:** adding hero image radius token ([96e4f03](https://github.com/Sage/design-tokens/commit/96e4f030a4adb589a5f82264e9963b56fde2fcab)) +* **data:** adding horizontal spacing tokens for step indicator ([b887d9f](https://github.com/Sage/design-tokens/commit/b887d9ffe0600f7c9ddcf9370965c02d90400ece)) +* **data:** adding icon sizes for switch ([86c144e](https://github.com/Sage/design-tokens/commit/86c144ebdc7612002ed5303b5dbe7ebccadfcf79)) +* **data:** adding in marketing color for block quote ([e6d8109](https://github.com/Sage/design-tokens/commit/e6d81093901a823b1fc3060281727cdb89218d61)) +* **data:** adding inverse accordion colors ([c617386](https://github.com/Sage/design-tokens/commit/c617386d8a2e55b0210d14fd6bf4a66abb1d582b)) +* **data:** adding inverse border color for interactive containers ([e074a6a](https://github.com/Sage/design-tokens/commit/e074a6ae1bcf842224bc62ca6e2cb99ceb64f9a0)) +* **data:** adding inverse skeleton state tokens ([d67144e](https://github.com/Sage/design-tokens/commit/d67144eaeba3dc16b8e6d3749ceef044bad6ad85)) +* **data:** adding inverse switch tokens ([f3ac5dd](https://github.com/Sage/design-tokens/commit/f3ac5dd027a3fb9b7afe51ad77c861610cd9e51b)) +* **data:** adding linear grad tokens for button shadows for tabs ([7ef6415](https://github.com/Sage/design-tokens/commit/7ef6415ae4b7c42babf5729a930bed000fb0db51)) +* **data:** adding marketing switch overrides ([58f4c3f](https://github.com/Sage/design-tokens/commit/58f4c3f799eb3c07533dc77e424418cac6da3b0b)) +* **data:** adding max width for chat bubbles ([96689fd](https://github.com/Sage/design-tokens/commit/96689fd3f2a50aecc92aa04df08a28cf4d4c9766)) +* **data:** adding maxheight token for copilot overlay ([da6ce8b](https://github.com/Sage/design-tokens/commit/da6ce8b1cd377e72974efd26a268eb52be98421d)) +* **data:** adding missing button stack tokens ([45d4350](https://github.com/Sage/design-tokens/commit/45d4350755af1638e5cbaab6e633164be4a99d4f)) +* **data:** adding missing spacing tokens for vas on chat bubble ([adf771e](https://github.com/Sage/design-tokens/commit/adf771ee1248a8ba36c0b31a876db995541afdb9)) +* **data:** adding missing tile select spacing tokens ([48cf683](https://github.com/Sage/design-tokens/commit/48cf683ed310c7f4a9a098b9bfb4b8a6e3dafce6)) +* **data:** adding missing tile select tokens ([9927da1](https://github.com/Sage/design-tokens/commit/9927da13a0cd512b58df79f222ae467a92ce52e6)) +* **data:** adding more color tokens for inverse accordion ([363c67d](https://github.com/Sage/design-tokens/commit/363c67d2bb135d9fde87044170089d3c14764907)) +* **data:** adding more missing chat bubble tokens ([f20573d](https://github.com/Sage/design-tokens/commit/f20573ddcfb4ef5a6124d3fc5fbb94f75b85f6d7)) +* **data:** adding more progress indicator tokens ([0b438de](https://github.com/Sage/design-tokens/commit/0b438dea320798941e04eb1511bbec4a78536f68)) +* **data:** adding more specific table type tokens ([918411d](https://github.com/Sage/design-tokens/commit/918411dfbfabf78cca3dbef0cee67e46c234a3d3)) +* **data:** adding more step indicator tokens ([58162c5](https://github.com/Sage/design-tokens/commit/58162c5869fceed20fbb16e56f9e29d98657e3ff)) +* **data:** adding navy color ([4792f78](https://github.com/Sage/design-tokens/commit/4792f783559e711739478929d463133b3f90f672)) +* **data:** adding new size tokens for badge ([c68adba](https://github.com/Sage/design-tokens/commit/c68adbaeb1da88f3aae06b9af4a12ca65589886a)) +* **data:** adding new tertiary button bg color ([ebaf676](https://github.com/Sage/design-tokens/commit/ebaf676392d84ecd55337cd2d49e0e6afe7d88ca)) +* **data:** adding nudge spacing tokens ([9f178e6](https://github.com/Sage/design-tokens/commit/9f178e608a785ca11cfb752d0911e36ccfab7a72)) +* **data:** adding option focus border radius for menu popover ([7880adb](https://github.com/Sage/design-tokens/commit/7880adbbf2d1d1c971d4d4cbd32d4dbffecdd9ca)) +* **data:** adding outer margin tokens for sidebar on small screen ([282514e](https://github.com/Sage/design-tokens/commit/282514ea85a8aeed96418fa397fbf20abb6e3394)) +* **data:** adding overlay max-height token ([f2e290c](https://github.com/Sage/design-tokens/commit/f2e290ce00cb56a1f461a80aeafb41db392fe690)) +* **data:** adding padding options for subtle contextual icons ([6248f79](https://github.com/Sage/design-tokens/commit/6248f7994afb6a2894db08a068a4fc154703bce0)) +* **data:** adding page layout tokens ([7680a99](https://github.com/Sage/design-tokens/commit/7680a99886b28178e8c9ee8e2c4b4dd6ac934327)) +* **data:** adding page level overrides for small screen ([64e62e3](https://github.com/Sage/design-tokens/commit/64e62e3a526783d51da27406e3dacd91ed5ed78d)) +* **data:** adding page specific text colors ([a88e850](https://github.com/Sage/design-tokens/commit/a88e8501acd4e75150367b7577cdcdf8b3ef974e)) +* **data:** adding processing spacing tokens ([b436a77](https://github.com/Sage/design-tokens/commit/b436a77dfabed4dc9690a3550730074bd6165da8)) +* **data:** adding progressively disclosed form item tokens ([7b53e51](https://github.com/Sage/design-tokens/commit/7b53e51746b461e776ed1e764084bfc073fe8ba8)) +* **data:** adding radius token for FAB ([b2a9029](https://github.com/Sage/design-tokens/commit/b2a90298132ddf9a1a8d371997941108bc3f601b)) +* **data:** adding rating star tokens for Vas ([87140fa](https://github.com/Sage/design-tokens/commit/87140fa4951fc046349aae4fb9672718ac1b19a0)) +* **data:** adding responsive prefix to sidebar min and max widths ([72b640e](https://github.com/Sage/design-tokens/commit/72b640e34b3876fbee39991d6496bc3a6d334a6b)) +* **data:** adding row gap and item gap tokens for flex ([87e7571](https://github.com/Sage/design-tokens/commit/87e757185523e84422c1c513f1d621dc34294e6a)) +* **data:** adding secondary and tertiary tokens for legacy theme ([b8d63a2](https://github.com/Sage/design-tokens/commit/b8d63a239267ca3ca1db2ef42fd5071191f614b2)) +* **data:** adding shadow width token for linear gradient shadow. ([d25c119](https://github.com/Sage/design-tokens/commit/d25c1193284c58287449a2c6ae2fcf1202b1068f)) +* **data:** adding size tokens for empty states in patterns ([eebeb28](https://github.com/Sage/design-tokens/commit/eebeb284f28a744b17b1ae0e9de40ddc382f5356)) +* **data:** adding sizing tokens for vas for copilot ([730a7a8](https://github.com/Sage/design-tokens/commit/730a7a8cfec60f2080e9587a2adc8889b94149fe)) +* **data:** adding skeleton tokens ([629752d](https://github.com/Sage/design-tokens/commit/629752d5a2c2e55387d84cd2cc067e2b5747378d)) +* **data:** adding small screen size adaptive overrides ([b4caa2e](https://github.com/Sage/design-tokens/commit/b4caa2e278860d9110d25fc946b2ae56d2aa4ff2)) +* **data:** adding small screen typography overrides ([0ae5649](https://github.com/Sage/design-tokens/commit/0ae5649793c175f265181649ee5ddb50b6cdcb6d)) +* **data:** adding some carousel specific tokens - opacity and increasing slide gap to 24px ([067d369](https://github.com/Sage/design-tokens/commit/067d3697a730690b5ae13576fcae7d01eb48e455)) +* **data:** adding some marketing specific border tokens ([57f5fa8](https://github.com/Sage/design-tokens/commit/57f5fa8c4eea8474d31c730879cf663f45a62032)) +* **data:** adding some marketing specific color overrides for button toggle ([746e9ba](https://github.com/Sage/design-tokens/commit/746e9ba2b09e83a984213e38921e26ade39f72fc)) +* **data:** adding spacing tokens for chat bubbles ([473013e](https://github.com/Sage/design-tokens/commit/473013e69e9b431f59db14d75f8cadfe9f6cce95)) +* **data:** adding spacing tokens for copilot ([579ced2](https://github.com/Sage/design-tokens/commit/579ced292af4aa4966a95f31954c8bc6d8cb7934)) +* **data:** adding spacing tokens for step indicator ([5c5e547](https://github.com/Sage/design-tokens/commit/5c5e5478b1b40104d9b80678aa92a71844f9711d)) +* **data:** adding standard prefix to form colors ([91b9097](https://github.com/Sage/design-tokens/commit/91b9097d55784f28572420461a37ca50469fd896)) +* **data:** adding step indicator color tokens ([ca3459f](https://github.com/Sage/design-tokens/commit/ca3459fc99ee07d391885604bee302ac5463fc44)) +* **data:** adding submenu bg color ([ac2c363](https://github.com/Sage/design-tokens/commit/ac2c36372456d231fd579bb1d57c160a4a3dde6c)) +* **data:** adding submenu container padding tokens for vas ([84cd967](https://github.com/Sage/design-tokens/commit/84cd967f712bb908b9e7b17cdf3112c11e003e8b)) +* **data:** adding support for context theming ([bfe67c8](https://github.com/Sage/design-tokens/commit/bfe67c804c4d1897d3e7f747db9c379471d57c83)) +* **data:** adding sweeping rad token for tile and card ([2431d09](https://github.com/Sage/design-tokens/commit/2431d09cd5e684b7b30f106d8e62d431fe55e5c9)) +* **data:** adding tertiary button tokens ([ad1ce66](https://github.com/Sage/design-tokens/commit/ad1ce6647d5a9a6267dbb34babd0f1e1696d5dea)) +* **data:** adding tertiary specific radious tokens ([72f118a](https://github.com/Sage/design-tokens/commit/72f118af79e05c09804957add3c696355ef90ad0)) +* **data:** adding tertiary specific tokens ([490b8cd](https://github.com/Sage/design-tokens/commit/490b8cd72f7db48514caecdf155fe2f130273642)) +* **data:** adding text editor tokens ([2daa7f5](https://github.com/Sage/design-tokens/commit/2daa7f5bc597557ebbcc4a19bb6ccc2ee7f4cff6)) +* **data:** adding texteditor spacing tokens. ([47bdff1](https://github.com/Sage/design-tokens/commit/47bdff134ae8976830ba09426b2626b23c0963f1)) +* **data:** adding toggle specific tokens ([4b2d8f6](https://github.com/Sage/design-tokens/commit/4b2d8f6a0909ba72a61a7e9b26cedb63da2748d0)) +* **data:** adding token for the AI gradient ([d3bbf36](https://github.com/Sage/design-tokens/commit/d3bbf360f240d9bcce3e1e9e6cc4c9095ea5b78e)) +* **data:** adding tokens for vas for carousel ([05b016e](https://github.com/Sage/design-tokens/commit/05b016ea2abfde69a17dbcd09e8a48f1cea265c4)) +* **data:** adding tokens for XG spacing for skeleton icon and text ([95f39bf](https://github.com/Sage/design-tokens/commit/95f39bf0187b97becc1336a276afaf71f43c7641)) +* **data:** adding transparent token for use on tertiary button themes ([a19e621](https://github.com/Sage/design-tokens/commit/a19e62198d727d3a832ddbe736134d78f57014f1)) +* **data:** adding trust identifier colors ([dc190b9](https://github.com/Sage/design-tokens/commit/dc190b9a99758b4591a07897e00e7f56fc7ad4f8)) +* **data:** adding type tokens for badge ([0617ed2](https://github.com/Sage/design-tokens/commit/0617ed291f34e10753ff27361ca68559f37feff8)) +* **data:** adding type tokens to all components ([a710de1](https://github.com/Sage/design-tokens/commit/a710de12b849fe6b3edbe93d91a242c4d99ccc70)) +* **data:** adding typography components to rest of the component specific pages ([23d6c48](https://github.com/Sage/design-tokens/commit/23d6c48ae22a7bb540335847d0433e43735b9f7d)) +* **data:** adding typography tokens to marketing theme ([77c0572](https://github.com/Sage/design-tokens/commit/77c05729749b90ba8c1e3303cc844fa8a4438754)) +* **data:** adding vertical and horizontal gap tokens for footer ([3fd1e21](https://github.com/Sage/design-tokens/commit/3fd1e214774525b58ee8870b988a0cd37ee479d0)) +* **data:** adding xg group of spacing tokens for skeleton ([6c4d795](https://github.com/Sage/design-tokens/commit/6c4d79597b8728264feb8df625071499c50b09a2)) +* **data:** adding XS spacing tokens on button layout ([0b483f9](https://github.com/Sage/design-tokens/commit/0b483f9e8acab2ae2de6d168e1535ab244be40c8)) +* **data:** adding XXXS page spacing token ([94265b9](https://github.com/Sage/design-tokens/commit/94265b91da2c8336ea4937f8db7d94d55e318761)) +* **data:** adding yg tokens for labelset ([a54e9b4](https://github.com/Sage/design-tokens/commit/a54e9b45a545c296a9ab162cd198cd11f730bdff)) +* **data:** adding yg tokens for link preview ([ba28fef](https://github.com/Sage/design-tokens/commit/ba28fef812e66e002f0d38473f7e5be3a851db25)) +* **data:** Adjust value of base status inactive colour tokens, and feedback readonly colour tokens, for readonly Pill. ([ab12087](https://github.com/Sage/design-tokens/commit/ab12087dc0355a314f640dab9ab2b0e358ab5668)) +* **data:** adjusting border ordering as discussed with claire and joseph ([583c23f](https://github.com/Sage/design-tokens/commit/583c23f664ec1fb164f3c083b0c1d2885f896733)) +* **data:** adjusting button border hover color ([f886ffe](https://github.com/Sage/design-tokens/commit/f886ffe4dfd193710b68e038ddce0dca0098c37b)) +* **data:** adjusting button colors based on product feedback ([230c829](https://github.com/Sage/design-tokens/commit/230c829df9f517e154a68ce8bb9d193ec2d7f450)) +* **data:** adjusting global message comp ([74cdd56](https://github.com/Sage/design-tokens/commit/74cdd56793a2dd4c751ead7c4444fe5cb8f93a55)) +* **data:** adjusting integral S spacing from 4px to 6 due to focus border overlapping ([8a5b49a](https://github.com/Sage/design-tokens/commit/8a5b49acea2f9fdd040077c6d27a1892615546e2)) +* **data:** adjusting menu top and bottom padding ([8c502cc](https://github.com/Sage/design-tokens/commit/8c502cc5228502c09184ac7052ffe08a3da21efe)) +* **data:** adjusting page typography standard name ([343a004](https://github.com/Sage/design-tokens/commit/343a00436b4560ca376ee0470a6c6d2228f1b43e)) +* **data:** adjusting the hover state of tertiary buttons ([5ea7266](https://github.com/Sage/design-tokens/commit/5ea726637b570e24c96c29b1ba6f9fd6905c8754)) +* **data:** adjusting theme variables ([79a2031](https://github.com/Sage/design-tokens/commit/79a20319cdbdd42b8da387a981be5e314d0e9bef)) +* **data:** adjusting theming ([bbeb7bb](https://github.com/Sage/design-tokens/commit/bbeb7bb23dae0ca6f29a851cdf67034de4b682a9)) +* **data:** adjustments to accordion tokens ([f5547a6](https://github.com/Sage/design-tokens/commit/f5547a677d88da0cd3009e4cb0dde42cffc4d9b8)) +* **data:** applying responsive overrides for mid and compoennt level POC ([05257f5](https://github.com/Sage/design-tokens/commit/05257f5664db9d4b88c60ac327afec0dbf7c0feb)) +* **data:** AtoZ reorder feedback colours. ([199989f](https://github.com/Sage/design-tokens/commit/199989f86140c794d408f5ca953ce16134f53ead)) +* **data:** attaching local styles ([eeaca17](https://github.com/Sage/design-tokens/commit/eeaca1734f62a7335301ffc92d4941ac956228c6)) +* **data:** Change form.size.checkbox.y tokens to form.space.checkbox.y tokens. ([fc0bd09](https://github.com/Sage/design-tokens/commit/fc0bd0969b155b02cc6afb0329cac568b732495c)) +* **data:** Change name of devicesize.small nav spacing ([4e640f5](https://github.com/Sage/design-tokens/commit/4e640f58523114d30dd821052b98c4ad95fc78bf)) +* **data:** Change name of popover.boxshadow popover to container, and edit description. ([5470183](https://github.com/Sage/design-tokens/commit/5470183d35db06b476bcc9c02b64c8e600b89a43)) +* **data:** Change nav.space.horizontal.menu.navbar to nav.space.horizontal.navbar ([ad1fe58](https://github.com/Sage/design-tokens/commit/ad1fe581064effa7b0dbba9308399b08ba9cd21c)) +* **data:** Change path to global.boxshadow.cleanedge.near ([68ec1e7](https://github.com/Sage/design-tokens/commit/68ec1e7885fa104f0711d32d0c72e9fc75ca1719)) +* **data:** Change values of container.color.inverse tokens. ([01c7392](https://github.com/Sage/design-tokens/commit/01c7392a38c91a52007f5dd62038abd8699ba427)) +* **data:** changing context name to be lowercase ([9ab1315](https://github.com/Sage/design-tokens/commit/9ab1315ad11bda7557bb9f61f974762072a189e4)) +* **data:** changing FAB radius to circle ([b9ed8ed](https://github.com/Sage/design-tokens/commit/b9ed8ed2cca3d60a890cbba66542e63cc402860a)) +* **data:** changing page file name to 'layout' ([8b6fef5](https://github.com/Sage/design-tokens/commit/8b6fef51c522e3aa2e540cec0fb0583263da6ba3)) +* **data:** changing skeleton spacing structure to be multi-line and single line ([2da52c8](https://github.com/Sage/design-tokens/commit/2da52c82c39214026b06013848c8b331823aebe3)) +* **data:** changing subscription prefix to tile select on radius and border width ([63f5887](https://github.com/Sage/design-tokens/commit/63f58879563306332ded0024ca2e86f9d1cf1539)) +* **data:** changing theme names to be consistent ([2cdeb1e](https://github.com/Sage/design-tokens/commit/2cdeb1e6f71cb09cec46aad4125b6c7601bf186d)) +* **data:** changing theme names to have consistent terminology ([58a03f2](https://github.com/Sage/design-tokens/commit/58a03f2c39dfd29ef92e641767db423a47241051)) +* **data:** changing themeing naming ([8c32f9d](https://github.com/Sage/design-tokens/commit/8c32f9d63bd64c5d4606b26a42c7d859ab3c735c)) +* **data:** container.space.stepflow ([0f429da](https://github.com/Sage/design-tokens/commit/0f429da8eaed55e38f023aae94ed5cc3b7eaa74f)) +* **data:** creating multi dimensional themes ([59b4690](https://github.com/Sage/design-tokens/commit/59b4690b625043126b39a8d58d4008f75cb97bb2)) +* **data:** Delete boxshadow.tab and shadow colour tokens ([f6583da](https://github.com/Sage/design-tokens/commit/f6583dac94ff9540087804beaca939856208a8ce)) +* **data:** Delete link disabled and readonly colour tokens. ([887ec20](https://github.com/Sage/design-tokens/commit/887ec204fa6d309cd6c19e0c4bdcb747ca242d95)) +* **data:** Delete nav.size.menu.option.x.M ([002ecf5](https://github.com/Sage/design-tokens/commit/002ecf5062d55a0cb9a5e562b94a98c846f2321c)) +* **data:** Delete nav.space.menu.item.x.L ([2f3d54d](https://github.com/Sage/design-tokens/commit/2f3d54d632433ddb35d4088ca33e547bddd66fdf)) +* **data:** Delete popover.borderwidth.divider.item. ([434edae](https://github.com/Sage/design-tokens/commit/434edae825371117fdbbd558ad3e6eb691adc9a1)) +* **data:** Delete progress stepsequence colour and borderwidth tokens. Add progress stepflow colour and borderwidth tokens. ([b776a48](https://github.com/Sage/design-tokens/commit/b776a48c787749f30838b65ca7ce97200350da45)) +* **data:** Delete unnecessary switch icon colour tokens ([de04a26](https://github.com/Sage/design-tokens/commit/de04a265d1c22806da054fb8d3883304b7b9e813)) +* **data:** deleting broken tertiary variable group ([c7213a3](https://github.com/Sage/design-tokens/commit/c7213a3bd39e730d9a0280ba0d8d53da1913974f)) +* **data:** Edit and add progress loading spacing tokens ([f6530c0](https://github.com/Sage/design-tokens/commit/f6530c07209722f361567df11724dd3a47e981da)) +* **data:** Edit progress carousel size and space tokens hierarchy. ([076141b](https://github.com/Sage/design-tokens/commit/076141b6304a60da18650f578e9b28a205609b63)) +* **data:** Edit value of popover.space.menu.yg.M ([2f8f62d](https://github.com/Sage/design-tokens/commit/2f8f62d3b6c378b539d68330e0b6ac7ab0f37cec)) +* **data:** Figma style sync ([4a531d3](https://github.com/Sage/design-tokens/commit/4a531d376400b9386ce0e9d5128669a9cb96509f)) +* **data:** Figma style sync ([34ef8f7](https://github.com/Sage/design-tokens/commit/34ef8f715674808d6a9874d8916d37f093cfc96c)) +* **data:** Figma style sync ([3c715bc](https://github.com/Sage/design-tokens/commit/3c715bcff86ae89f0ed7fa461e78e88788e14414)) +* **data:** Figma style sync ([c3571e4](https://github.com/Sage/design-tokens/commit/c3571e4e280d8f0fd22b376754d6729f207f817c)) +* **data:** Figma style sync ([4e8979b](https://github.com/Sage/design-tokens/commit/4e8979b197a5ad554bfc84e3c95f2e428810b62d)) +* **data:** Figma style sync ([e38150c](https://github.com/Sage/design-tokens/commit/e38150cba0f2b7037926ea054c1c763a17c80cfc)) +* **data:** Figma style sync. ([54b24ae](https://github.com/Sage/design-tokens/commit/54b24ae8de2a6308fc4b2fef990b5e4bb9f80f58)) +* **data:** Figma style sync. ([2bcf136](https://github.com/Sage/design-tokens/commit/2bcf136527550c7236cbc843a034044fbcdada39)) +* **data:** Figma style sync. ([b26ac39](https://github.com/Sage/design-tokens/commit/b26ac397530d925c93af2ff1771c4e75b5e1f13d)) +* **data:** finalising nudge component colors ([304a073](https://github.com/Sage/design-tokens/commit/304a0738c04d569822d394879c71e2791e2e9f76)) +* **data:** Fix value of container.space.linkpreview.yg.M (was referencing a deleted token) ([28d9c59](https://github.com/Sage/design-tokens/commit/28d9c5989751e1b213fc0ed30438bdfd7d17fcc4)) +* **data:** fixing a hover text color issue on container ([328bdc5](https://github.com/Sage/design-tokens/commit/328bdc517225765bd4243d06e6c400e2af493462)) +* **data:** fixing accordion colors ([fc6403f](https://github.com/Sage/design-tokens/commit/fc6403f262e2eae8131347c762bc442777a4e18c)) +* **data:** fixing accordion hover color ([11d3bb0](https://github.com/Sage/design-tokens/commit/11d3bb0063ab116e7725903322d140479f6a979f)) +* **data:** fixing accordion token ([119463a](https://github.com/Sage/design-tokens/commit/119463af04d2b3b073e9a9061458f7a7b222d157)) +* **data:** fixing boder width naming for profile ([dbd5059](https://github.com/Sage/design-tokens/commit/dbd505903386f1b45aeed46acb67e839b838ca36)) +* **data:** fixing body spacing as per claires recommendation in skeleton ([6e201f4](https://github.com/Sage/design-tokens/commit/6e201f4e524fd281ad46f2f58fd30f9c2736f021)) +* **data:** fixing broken button mid layer tokens ([7eeac4b](https://github.com/Sage/design-tokens/commit/7eeac4b7377d61e4055e1842c5ec5b2891e208dd)) +* **data:** fixing broken references where base is mentioned incorrectly. ([a0cfb40](https://github.com/Sage/design-tokens/commit/a0cfb400d847dbc4793da65f8b5a6ce2d2249713)) +* **data:** fixing broken theme tokens ([036496d](https://github.com/Sage/design-tokens/commit/036496d984dfdab8d452373a46cf77a650014923)) +* **data:** fixing build errors for dru ([9ba9ca5](https://github.com/Sage/design-tokens/commit/9ba9ca5f70d11341a13d99d65f244f00d221ea49)) +* **data:** fixing button colors ([7c8cadf](https://github.com/Sage/design-tokens/commit/7c8cadfa38f7cf849c37673487eae8ab38a63cf0)) +* **data:** fixing button toggle breakages ([f49b206](https://github.com/Sage/design-tokens/commit/f49b2062f2fb0a05fda8d0629034fd3e372e61d4)) +* **data:** fixing color mid layer issues ([6857865](https://github.com/Sage/design-tokens/commit/6857865ac4fe7c0c72ac927f5c25fe0dc8369a1a)) +* **data:** fixing dimmer color ([0cdb44d](https://github.com/Sage/design-tokens/commit/0cdb44def4813ae99e7bfdc673359bd801b1b37c)) +* **data:** fixing feedback ai stadnard color ([6c213b4](https://github.com/Sage/design-tokens/commit/6c213b4063aa9cf1d6a127c2790d4625a2d936ee)) +* **data:** fixing filled color issue on progress ([8c434da](https://github.com/Sage/design-tokens/commit/8c434daf04d1a69886a061a3f499cd69d820af89)) +* **data:** fixing hover color on dark theme for monochrome ([661b06a](https://github.com/Sage/design-tokens/commit/661b06a1401c9872cf29a83a0a452fb35dc999d6)) +* **data:** fixing issue with ai active text color ([1efbd2c](https://github.com/Sage/design-tokens/commit/1efbd2ce1b2f6ce84a2c67cd2ddde97c78ef002d)) +* **data:** fixing logo on dark color tokens ([f7e0110](https://github.com/Sage/design-tokens/commit/f7e0110fc0dc2789ab8bea2497a4341918123905)) +* **data:** fixing logo token naming ([0cf961c](https://github.com/Sage/design-tokens/commit/0cf961c63254301bb14bc244db89cf99e66e180c)) +* **data:** fixing mid layer color issues ([9849114](https://github.com/Sage/design-tokens/commit/9849114c4bbdd4fe938b78cf6c3de1cd17e0f08a)) +* **data:** fixing mid layer colors ([c14aefb](https://github.com/Sage/design-tokens/commit/c14aefb5873afdefc613d20311b8444b15deebbb)) +* **data:** fixing mid layer issues ([06192ef](https://github.com/Sage/design-tokens/commit/06192ef071d5e69c388dcc0fed2dd8d5ad92d9ba)) +* **data:** fixing mid layer issues ([454298b](https://github.com/Sage/design-tokens/commit/454298b9867e3e91d58f13ec43c2b24f9132153c)) +* **data:** fixing mid layer issues ([b05894c](https://github.com/Sage/design-tokens/commit/b05894cb072d2c1dee93d19194cab57620000bbb)) +* **data:** fixing nav color inverses ([c6ab546](https://github.com/Sage/design-tokens/commit/c6ab546f2fab8042af444fab07610bcae7687590)) +* **data:** fixing progress tokens ([000da00](https://github.com/Sage/design-tokens/commit/000da00f83fef5a20296451371ed6917facba07b)) +* **data:** fixing some broken button tokens ([eb2c1cc](https://github.com/Sage/design-tokens/commit/eb2c1cc6ef7cdcbb9cd96d46f787d0dbd7808888)) +* **data:** fixing some broken progress tokens ([d9f3041](https://github.com/Sage/design-tokens/commit/d9f3041873769e00f75b30434f22f7dec992c486)) +* **data:** fixing some button color breakages on active states ([c18ce94](https://github.com/Sage/design-tokens/commit/c18ce94df7bf0a9c5e9df55a5f3722c75e04a118)) +* **data:** fixing some inverse color tokens ([a61af39](https://github.com/Sage/design-tokens/commit/a61af39cd5c40aa4c91e97874476506f7739a693)) +* **data:** fixing some link inverse colors ([01edaf5](https://github.com/Sage/design-tokens/commit/01edaf55bedfe6d806cc86798b4c0e7e73f59909)) +* **data:** fixing step flow components ([4d8a705](https://github.com/Sage/design-tokens/commit/4d8a70532837470ba579f2f459e2410e2edb6f7c)) +* **data:** fixing switch tokens ([255beac](https://github.com/Sage/design-tokens/commit/255beac7ddab9f97dc06e4ef959684a1ede013b7)) +* **data:** fixing tab color issues ([f04b04b](https://github.com/Sage/design-tokens/commit/f04b04be3db2b7fc39852fc6db4082015fff1640)) +* **data:** fixing tabs ([d3de64d](https://github.com/Sage/design-tokens/commit/d3de64d02323cbc947d87dabd997f89127b062b0)) +* **data:** fixing variable sync ([d9aa450](https://github.com/Sage/design-tokens/commit/d9aa450946609d8ea02ca94b4d975ad316fe1e41)) +* **data:** improving contrast ratios of subtle buttons on dark ([bdb7cba](https://github.com/Sage/design-tokens/commit/bdb7cba43314776afafc27fabedfa0a19f187cda)) +* **data:** improving token structure for spacing on note ([24f51db](https://github.com/Sage/design-tokens/commit/24f51db5728e6e6358e5504245937d7acd0ad7aa)) +* **data:** increasing gap spacing for skeleton states ([040ca73](https://github.com/Sage/design-tokens/commit/040ca73f0e39cc7b2c1807961350d9946fbfc09b)) +* **data:** knocking back switch colors for default state ([2acd604](https://github.com/Sage/design-tokens/commit/2acd6044fd4d10ffcde4901e55d5c74f901cd63a)) +* **data:** Make all nav.color.inverse.menu colours one stop lighter ([365f037](https://github.com/Sage/design-tokens/commit/365f03700549b253c573ba8dded20d3430d4d9dc)) +* **data:** making a more subtle sticky footer shadow ([63958d6](https://github.com/Sage/design-tokens/commit/63958d6bcd780ef4e1c2f81fda1a3734d257bd76)) +* **data:** making all icon sizes 20px for now until we have clarity on larger icons needed ([155ac4e](https://github.com/Sage/design-tokens/commit/155ac4e85baefcfa85dbaf251aaa4aa005c77b47)) +* **data:** making pills more roundy ([8d757ab](https://github.com/Sage/design-tokens/commit/8d757abfb033d43d24b870077e628c78eace26e8)) +* **data:** making product and frozen have typography set as enabled ([efa8428](https://github.com/Sage/design-tokens/commit/efa8428298033edc6f34bf01fd424bed778dc424)) +* **data:** marketing tertiary overrides ([c590750](https://github.com/Sage/design-tokens/commit/c5907504cc2654f98c7e0c968747bb3102830ee0)) +* **data:** Move calendar size tokens from Popover to Form. ([fe9e81e](https://github.com/Sage/design-tokens/commit/fe9e81eeecf84ed72772cb450369cafbbb333101)) +* **data:** Move colorpicker spacing and boxshadow tokens from Popover to Form. ([94442ad](https://github.com/Sage/design-tokens/commit/94442ad53dca817c36c453870d6216aa0fff846d)) +* **data:** Move page.color tokens into standard category. Add inverse category tokens ([7f4ec56](https://github.com/Sage/design-tokens/commit/7f4ec56e4f578849595b88b0297f2d9dd2e1e83f)) +* **data:** new nav spacing token for claire ([63d1ed0](https://github.com/Sage/design-tokens/commit/63d1ed084a0b06e7acc0b77b3c1caa23932459d6)) +* **data:** Plugin lying again ([ac51276](https://github.com/Sage/design-tokens/commit/ac51276d058d9ba623a6a13ca321135f362a3908)) +* **data:** plugin still telling me I have changes to push ([b0740cc](https://github.com/Sage/design-tokens/commit/b0740cc4afefdab1c57db82e45cfa8e95e891274)) +* **data:** plugin telling me i have more changes... ([27f5d8e](https://github.com/Sage/design-tokens/commit/27f5d8ede723b337fb7e2f94acbe22709b4e8ef0)) +* **data:** Previous commit included alphabetical reordering of container token code ([ce87abf](https://github.com/Sage/design-tokens/commit/ce87abff8979b1ccf8e186812486a22a76812b75)) +* **data:** Previous push also included 1. Add new base.color.generic.standard.muted token, 2. Update base.color.interactive.inactive.standard.content and form labelset disabled colour values. 3. Update badge default colour values from caution to negative. ([33daaed](https://github.com/Sage/design-tokens/commit/33daaed6d5738be8c47e9db5ff28c88d57935fd0)) +* **data:** progressively pushing type updates. Adding comp specific tokens to link ([a31f578](https://github.com/Sage/design-tokens/commit/a31f578566495828fdc480053fd1c5815eb14527)) +* **data:** pushing as no matter how many times I pull, I'm still seeing changes to push ([c3abfca](https://github.com/Sage/design-tokens/commit/c3abfcab815f428e0a8fb7653efc173d51d7047b)) +* **data:** pushing up a slight tweak to tertiary button opacity ([9e78619](https://github.com/Sage/design-tokens/commit/9e78619f2550c32f46130f5ca879a68f3b3ffada)) +* **data:** pushing up accordion color changes ([1f22d84](https://github.com/Sage/design-tokens/commit/1f22d84b8fd884b4694abc984bd26d48e012b96a)) +* **data:** pushing up token tweak for lisa on yg padding for link preview ([79d209e](https://github.com/Sage/design-tokens/commit/79d209ea6c1b78b5a082506f6c845e488f18d0be)) +* **data:** pusing up inverse color token fix for pagination ([2890812](https://github.com/Sage/design-tokens/commit/2890812cf5851d9cb60696d1bbafa5bcbb6ae2b1)) +* **data:** rearranging container colors to make more semantic sense ([3ff3770](https://github.com/Sage/design-tokens/commit/3ff3770371bfbb54fd2e07232b284060a2d362c7)) +* **data:** Remove form.space.filepreview.thumbnail tokens, then add container.space.filepreview.thumbnail tokens ([0bf950a](https://github.com/Sage/design-tokens/commit/0bf950ae6992fd9c3ec1432a228bf7835fabc736)) +* **data:** Remove horizontal from filepath in nav.size and nav.space tokens ([7de742f](https://github.com/Sage/design-tokens/commit/7de742f54c54b2446d3c9a398d6d540ca7c9d58e)) +* **data:** remove nav.space.menu.submenu.x.M ([0bed3b5](https://github.com/Sage/design-tokens/commit/0bed3b5c6256fc7fab972b18993e51e50602e08c)) +* **data:** Remove progress stepflow colors. ([51309ca](https://github.com/Sage/design-tokens/commit/51309ca33085d09187191578a85017c814b26815)) +* **data:** removing extra curly bracket to fix the build ([6d9d57d](https://github.com/Sage/design-tokens/commit/6d9d57d66e154ddaa26ed8dd8997fd46bba3f956)) +* **data:** removing redundant accordion subtle tokens ([7a99831](https://github.com/Sage/design-tokens/commit/7a9983158a0c2efb1e47f13bf2047c47cbca9ff0)) +* **data:** removing redundant border tokens from toggle group ([cf54ac9](https://github.com/Sage/design-tokens/commit/cf54ac94b5ae902e3bae476c710c00b3a66d4abc)) +* **data:** removing redundant sizing tokens for scrollbar ([132667e](https://github.com/Sage/design-tokens/commit/132667e92f12e50b12b90999de910340970a9878)) +* **data:** removing redundant tertiary duplicated group ([cd3739a](https://github.com/Sage/design-tokens/commit/cd3739ad736614e1a4cf3819a99566dc69dc2331)) +* **data:** removing redundant text editor tokens ([301cedd](https://github.com/Sage/design-tokens/commit/301cedd5e14b47cafd6451d70c578152c4eb3f27)) +* **data:** removing two 40px XL tokens for flex ([39c9803](https://github.com/Sage/design-tokens/commit/39c9803cfb44ee14c8cff795e5abe8ffe3b815ac)) +* **data:** Rename badge.space.x.Y to badge.space.y ([8058d8a](https://github.com/Sage/design-tokens/commit/8058d8a2645089bee639fad57ea40c4a7f752007)) +* **data:** Rename container.space.filepreview thumbnail to preview. ([e056963](https://github.com/Sage/design-tokens/commit/e056963d1d840b8d3f80550e5cdeaf3e66f3c6e1)) +* **data:** Rename form pop to form dropdown. Re-order alphabetically. ([6d404af](https://github.com/Sage/design-tokens/commit/6d404af2c8fadc48f1bf8b3f9fab87ea705ae871)) +* **data:** Rename form.space checkbox to checkradio and adjust hierarchy. ([5decaee](https://github.com/Sage/design-tokens/commit/5decaee6cfb1a1d3046a9ac2c2cc4513542acccb)) +* **data:** Rename nav.size.navbar.content.icon M to L, and S to M. ([8f3831a](https://github.com/Sage/design-tokens/commit/8f3831af2575c315f73654173636211b1e41802e)) +* **data:** Rename scrollbar colour tokens. ([683fceb](https://github.com/Sage/design-tokens/commit/683fceba1cb3aea11fe953cddaf4760e00b7a0f2)) +* **data:** Rename typical tab colours to "standard". Nest validation colours within standard. Add inverse tab colours. ([1914308](https://github.com/Sage/design-tokens/commit/19143086e77371750fd7531baa7ee9e2cd86a2cc)) +* **data:** renaming sizing subscription tile group to tile select ([dbe7982](https://github.com/Sage/design-tokens/commit/dbe79823041f60285d895df0531b6c08295c7ddf)) +* **data:** reordering linkpreview tokens ([1475824](https://github.com/Sage/design-tokens/commit/14758249d02afd15a9eed0c39d783cefe753ca26)) +* **data:** reordering themes ([bbb0720](https://github.com/Sage/design-tokens/commit/bbb07202ca052252407886f2616c9e5da054d3b0)) +* **data:** restructuring the folder names for breakpoints ([5156b26](https://github.com/Sage/design-tokens/commit/5156b26bbfdc4053256538841f7ce35fb318b5de)) +* **data:** restructuring the linkpreview token group ([1eec716](https://github.com/Sage/design-tokens/commit/1eec7168bf498c042e18da8a1a092eff35251b05)) +* **data:** reverting monochrome colors to fix calendar and nav issues ([6a9cc4b](https://github.com/Sage/design-tokens/commit/6a9cc4b69685c796c9081d66f4b066acabd85825)) +* **data:** Set paragraphy spacing to 0 on all global.typography.component tokens. ([aacc3e2](https://github.com/Sage/design-tokens/commit/aacc3e281e45bb4edac877763a6ea2b7ae846622)) +* **data:** slightly adjusting the inverse hover color to be more obvious ([db8da4a](https://github.com/Sage/design-tokens/commit/db8da4a8608d78432104181fab438841f9980b2d)) +* **data:** stripping out extra reference token that slipped the net ([9d8f91a](https://github.com/Sage/design-tokens/commit/9d8f91ab2c98770d152436eb402c9816b6c8f05f)) +* **data:** Style sync ([2664803](https://github.com/Sage/design-tokens/commit/26648031d8c31cda30b0ed1a511a606a4f7b9fb4)) +* **data:** supporting 3 levels of border-rad for tileselect ([cd89812](https://github.com/Sage/design-tokens/commit/cd898120407f6596d147862502559cfb6ebc3bea)) +* **data:** swapping inverse and standard mid layer groups in dark mode ([1a9490d](https://github.com/Sage/design-tokens/commit/1a9490df47ccdc26f903b9d9c2fd081902f6e2d7)) +* **data:** sycing themes ([fdcdcc9](https://github.com/Sage/design-tokens/commit/fdcdcc900241ce6501dd7262c82ae133a3da83f7)) +* **data:** Sync figma styles ([72c526c](https://github.com/Sage/design-tokens/commit/72c526caab39ec302eaabe992880159cf99e1e80)) +* **data:** Sync Figma styles. ([98fe655](https://github.com/Sage/design-tokens/commit/98fe655f40c92cb2cd9f9f9c6ff1d8c920690e8f)) +* **data:** sync styles ([280d877](https://github.com/Sage/design-tokens/commit/280d877f38b71e3fbb04d4122f8b5648948ffbc7)) +* **data:** Sync styles ([4858fa9](https://github.com/Sage/design-tokens/commit/4858fa9c4d25190626b16c15fcd35ad3596f95e6)) +* **data:** syncing local variables ([c64a864](https://github.com/Sage/design-tokens/commit/c64a8643dbe32b1f76950b6df5f3f82809bbf919)) +* **data:** syncing styles ([4020ec3](https://github.com/Sage/design-tokens/commit/4020ec300aedd0ede429711166f51aae444703dd)) +* **data:** syncing styles ([34e2ef2](https://github.com/Sage/design-tokens/commit/34e2ef25e53f75964dc4b35c5ff6aa64f146838b)) +* **data:** syncing styles ([112cce2](https://github.com/Sage/design-tokens/commit/112cce23d09b96151ebc518556c2f35ed8f00e72)) +* **data:** syncing styles ([5eebdb4](https://github.com/Sage/design-tokens/commit/5eebdb46023c4dca0191a343dafbb6b08d4a9e12)) +* **data:** syncing theme file ([b5e6635](https://github.com/Sage/design-tokens/commit/b5e6635f01ead384a79b4c07930b6d0d930ebb43)) +* **data:** syncing themes ([849791c](https://github.com/Sage/design-tokens/commit/849791ce09793f02438b6f02e52c9889d7586e55)) +* **data:** syncing themes ([a341d99](https://github.com/Sage/design-tokens/commit/a341d992e87bc51dcd557b59857d97064a3009ed)) +* **data:** syncing themes ([40a64b3](https://github.com/Sage/design-tokens/commit/40a64b337340425ebfac31d7924ccee291ac4b66)) +* **data:** syncing themes ([74bcd12](https://github.com/Sage/design-tokens/commit/74bcd12feefe438c2108e5035d4b38090d7cd016)) +* **data:** syncing themes ([5353aed](https://github.com/Sage/design-tokens/commit/5353aedfb48b6ffacafe93ec8d5fafa085a9f9bb)) +* **data:** syncing themes ([12b8cb8](https://github.com/Sage/design-tokens/commit/12b8cb80e5cd129cbfd045ee703589924e09205f)) +* **data:** syncing themes ([e4b5c2a](https://github.com/Sage/design-tokens/commit/e4b5c2a82e98b67549c12605693ec51e68e72a2e)) +* **data:** syncing themes ([264e0ec](https://github.com/Sage/design-tokens/commit/264e0ece712d456ec9dc0da9f4603f9a6f813ca0)) +* **data:** syncing themes ([fd9b763](https://github.com/Sage/design-tokens/commit/fd9b763e062268d77806ca958ec7cd4c5af2686c)) +* **data:** syncing themes ([a177a7b](https://github.com/Sage/design-tokens/commit/a177a7b3856263de8adeede8d0e724bb0bbd0d72)) +* **data:** syncing themes ([5f24b01](https://github.com/Sage/design-tokens/commit/5f24b01bd0ec5981811ca4d7c922f226dd9d6b76)) +* **data:** syncing themes ([bbf9605](https://github.com/Sage/design-tokens/commit/bbf9605d839fa02ade6e046942b37336987dd777)) +* **data:** syncing themes ([3c7ce00](https://github.com/Sage/design-tokens/commit/3c7ce003e07b4562e46747ea7c21134e4d57af1e)) +* **data:** syncing themes ([9702918](https://github.com/Sage/design-tokens/commit/9702918a518003c402e96fafb607eeeb1b35dfe6)) +* **data:** syncing themes ([403c002](https://github.com/Sage/design-tokens/commit/403c0028d7364a5de7ecbe8420ed8a9652cc23c5)) +* **data:** syncing themes ([4908d43](https://github.com/Sage/design-tokens/commit/4908d43a6b0950d12744f1f8c78853c041ac4323)) +* **data:** syncing themes ([2c30f2c](https://github.com/Sage/design-tokens/commit/2c30f2ca54a426527c76f7b4b014ab9360c7fd46)) +* **data:** syncing themes ([86f6011](https://github.com/Sage/design-tokens/commit/86f6011a695e45584a694c6385b5303c7f9e6e64)) +* **data:** syncing themes ([2943d80](https://github.com/Sage/design-tokens/commit/2943d80138eb6045fde13db48e8c609dda74c24f)) +* **data:** syncing themes ([3abcfb6](https://github.com/Sage/design-tokens/commit/3abcfb601af9a49724bee3381ad5fd963288808c)) +* **data:** syncing themes ([0520140](https://github.com/Sage/design-tokens/commit/0520140907a4cc0c73f37e57ae9c8e63a7e126ce)) +* **data:** syncing themes ([4336886](https://github.com/Sage/design-tokens/commit/43368866407500c1ea236582068416529e825908)) +* **data:** syncing themes ([18a5878](https://github.com/Sage/design-tokens/commit/18a5878588818b6cbfd8c6d761fe92286d4e7632)) +* **data:** syncing themes ([c116ee6](https://github.com/Sage/design-tokens/commit/c116ee629fdc9d5a4dc3f4011be34662d9dd23b3)) +* **data:** syncing theming ([2510825](https://github.com/Sage/design-tokens/commit/2510825f1423ffa15f9d9e6e909073349b5d02c1)) +* **data:** syncing theming ([e69cc29](https://github.com/Sage/design-tokens/commit/e69cc299a90ca6fc5f386c9a0b5f6eb18dde304d)) +* **data:** syncing token themes ([4cf1ced](https://github.com/Sage/design-tokens/commit/4cf1cedf43dd43859260ab97935560992668ca60)) +* **data:** syncing token themes ([5d9b760](https://github.com/Sage/design-tokens/commit/5d9b760f7483206c636b96f23e1d51a0456fb4df)) +* **data:** syncing variables ([ef4463e](https://github.com/Sage/design-tokens/commit/ef4463e92ed0bed2f3357b6ed4b799159f06a823)) +* **data:** syncing variables ([292839f](https://github.com/Sage/design-tokens/commit/292839fe2c93665ce22e5657ec3c4dc698916652)) +* **data:** text editor footer border-rad token ([de226d6](https://github.com/Sage/design-tokens/commit/de226d674ce7aec0ba6784add316cc32d55901db)) +* **data:** Theme and style sync ([90188f6](https://github.com/Sage/design-tokens/commit/90188f65a027e0bd4f683a0d5fd8109ec004920d)) +* **data:** theme syncing ([8d22173](https://github.com/Sage/design-tokens/commit/8d2217337967f8a80c1a5d06f539aa01254d5555)) +* **data:** theme syncing ([fe3c353](https://github.com/Sage/design-tokens/commit/fe3c35360f1db3c8c907037298835f368195ef06)) +* **data:** token variable syncing ([7126424](https://github.com/Sage/design-tokens/commit/71264247f50b31b9904766c0bc9b3edaf1607ce2)) +* **data:** trying to fix JSON weirdness on logo file ([775386a](https://github.com/Sage/design-tokens/commit/775386afe65be52f7c7c78adc2ed83beb76d36a4)) +* **data:** Update a description ([9915a75](https://github.com/Sage/design-tokens/commit/9915a7587a326509feb159c5f271835cc1086bbd)) +* **data:** Update all nav size tokens ([a9dc716](https://github.com/Sage/design-tokens/commit/a9dc716548ee2152f745aa655ef1143c2f3dda62)) +* **data:** Update all nave space tokens ([9606659](https://github.com/Sage/design-tokens/commit/9606659258a0365ea1fbf3600c6649b5f8eef0be)) +* **data:** Update and remove some feedback.space.message.contextual tokens ([f597ce4](https://github.com/Sage/design-tokens/commit/f597ce4f5a1bb179dde05939aecf2b9dcac78e6a)) +* **data:** Update container scroll colour tokens. ([5ac9440](https://github.com/Sage/design-tokens/commit/5ac9440e8e396b1b2b6204c635ba07157bb6b6d0)) +* **data:** Update contextual message spacing tokens. ([09c87ef](https://github.com/Sage/design-tokens/commit/09c87ef5d1f95a1a43f041fe52ae1418e064b3ae)) +* **data:** Update description of form calendar year size token ([82c4b87](https://github.com/Sage/design-tokens/commit/82c4b872969f09a328bd13ad319785c7e7f71d39)) +* **data:** Update description of form.color.typical.icon-disabled, ([0eac7dc](https://github.com/Sage/design-tokens/commit/0eac7dcabc706750e83ca7f52afa0b4a934efaba)) +* **data:** Update description of progress.size.spinner tokens. ([b478b04](https://github.com/Sage/design-tokens/commit/b478b0498a7383576a1cd0d8ce3c60dbe417737c)) +* **data:** Update description on feedback.space.message.global.x.M ([9e8573c](https://github.com/Sage/design-tokens/commit/9e8573cdcc373ab7ebef646f4e8fa46efd037516)) +* **data:** Update description on form dropdown option xg tokens. ([3b76090](https://github.com/Sage/design-tokens/commit/3b760906e138fa270dbe7759c11ebd7da62b5495)) +* **data:** Update description on form.size.icon tokens. ([41389d3](https://github.com/Sage/design-tokens/commit/41389d37a665309c8dd4f3bb0447835d3070c45e)) +* **data:** Update description on form.size.icon. ([c4624dd](https://github.com/Sage/design-tokens/commit/c4624dd97ba5fe9f54cd5888157894eff09a420d)) +* **data:** update description on form.space.integral.secondarylabel ([3245917](https://github.com/Sage/design-tokens/commit/3245917e804eee67a7b01a097852cc92bf2c1db6)) +* **data:** Update descriptions on badge.space tokens, Add new badge.space Y tokens ([20f2aaf](https://github.com/Sage/design-tokens/commit/20f2aafc38459bed7647e20e0f8240266c51377a)) +* **data:** Update descriptions on form.size.icon tokens. ([d1b3911](https://github.com/Sage/design-tokens/commit/d1b3911879e5850402571724fc7d5cdbff5b330e)) +* **data:** Update descriptions on popover tokens. Add pop tokens to Form for Dropdown component. ([83c5bce](https://github.com/Sage/design-tokens/commit/83c5bcec974547658eddf292e85315e85ab26949)) +* **data:** Update feedback message spacing descriptions. ([c456b42](https://github.com/Sage/design-tokens/commit/c456b4239db427ccd475ab0d6e22a20b24659de7)) +* **data:** Update form.space.dropdown button and heading tokens. ([4f55a6b](https://github.com/Sage/design-tokens/commit/4f55a6be861c38c474df6d9018ebbb4b8d3d06b4)) +* **data:** Update logo color tokens. Sync Figma styles. ([b1f0a28](https://github.com/Sage/design-tokens/commit/b1f0a28540e0d180a08253c817823e3b15e8e52c)) +* **data:** Update logo colour tokens ([622caf9](https://github.com/Sage/design-tokens/commit/622caf9036ea993519118880c3602738242fd163)) +* **data:** update logo token name from bg to bg-default ([a635e0f](https://github.com/Sage/design-tokens/commit/a635e0fa2a743b2b04167100449422e6476ee8eb)) +* **data:** update names of progress.borderwidth.stepflow .active1 and .active2 to .active-inner and .active-outer ([02a1de1](https://github.com/Sage/design-tokens/commit/02a1de171ebb6f6477601cf96fa8d7b6a53beda5)) +* **data:** Update names of progress.color.stepflow.border -active1 and active2 to -inner and -outer ([035b554](https://github.com/Sage/design-tokens/commit/035b554ffaabce01ce94eea06ad202478507edd8)) +* **data:** Update names, values, and descriptions of origin colours. ([04a33ed](https://github.com/Sage/design-tokens/commit/04a33ed8da480057f12d1d9fcc7b9f8f213fcb02)) +* **data:** Update nav colors and sync to figma styles ([1a07aa5](https://github.com/Sage/design-tokens/commit/1a07aa5daa354160257127866b6ae8c16e510608)) +* **data:** update nav radius menu tokens ([256ccb3](https://github.com/Sage/design-tokens/commit/256ccb3db1dce1147289bb0681ce6f35060fff80)) +* **data:** Update nav.radius.menu tokens ([31c3dc9](https://github.com/Sage/design-tokens/commit/31c3dc96660a501a3c60d6a2ef56ec42bb64104d)) +* **data:** Update nav.space.horizontal tokens ([0a9e4ff](https://github.com/Sage/design-tokens/commit/0a9e4ff4a94bf81e3de85e1ff8326f06349cbf79)) +* **data:** Update order of base.color.generic.bg.standard tokens. Edit value of nav colour tokens. ([6f7ec06](https://github.com/Sage/design-tokens/commit/6f7ec06d8160776e560dc185a781a3ff23e4daf9)) +* **data:** Update popover color tokens, and sync styles to figma. ([98f10a8](https://github.com/Sage/design-tokens/commit/98f10a8b09a18e6165794a05c20863b588c115a3)) +* **data:** Update progress spinner sizing tokens and rename to ring. ([f1f87e9](https://github.com/Sage/design-tokens/commit/f1f87e9044d61f52c1164ed741d2130e1bbffb6c)) +* **data:** Update progress.space.stepflow tokens ([6e88733](https://github.com/Sage/design-tokens/commit/6e887336be5c9d681141a9774be823a5143f7129)) +* **data:** Update tab tokens for size, color, border radius, etc ([41aacee](https://github.com/Sage/design-tokens/commit/41aaceebec4164b5b735b24a37a881e27f72d65d)) +* **data:** update the active state color for text on ai ([63da8b0](https://github.com/Sage/design-tokens/commit/63da8b0b200d6cc3c19b220f9839d90f956f0574)) +* **data:** update to skeleton sizes ([afda3b4](https://github.com/Sage/design-tokens/commit/afda3b4c779c681bad4521b3566dea17df15bd56)) +* **data:** Update value of ([2fbc131](https://github.com/Sage/design-tokens/commit/2fbc13188e7e1b60cd3736b1ea85ff4310a5ed6e)) +* **data:** Update value of badge.space.x.Y.M ([a486d51](https://github.com/Sage/design-tokens/commit/a486d5153be331be12b73250cd6ba877c4982d05)) +* **data:** Update value of base.color.generic.content.standard.moderate and base.color.interactive.dataEntry.contentAlt ([e0c9860](https://github.com/Sage/design-tokens/commit/e0c98605b8fcb2b92b04a26649e2c227c69a4969)) +* **data:** Update value of base.color.interactive.danger standard and inverse hover tokens. ([437a849](https://github.com/Sage/design-tokens/commit/437a8491f95fa3cf8307f2a0264b55227cff7b13)) +* **data:** Update value of base.color.interactive.primary standard and inverse hover tokens. ([b7c98d8](https://github.com/Sage/design-tokens/commit/b7c98d89bfedb81b732f43e4e12acc4b72ec03f6)) +* **data:** Update value of base.color.status.content.inverse.withHoverAlt. ([737a0ff](https://github.com/Sage/design-tokens/commit/737a0ff7fc25cf84205da5306d4277194c19e6cb)) +* **data:** Update value of feedback.color.inverse.icon-default to be black instead of white. ([e03f531](https://github.com/Sage/design-tokens/commit/e03f5317e55b82b004714f4b7dbb7eaf41f8e49c)) +* **data:** Update value of form.color.switch.label-enabled ([1fcce64](https://github.com/Sage/design-tokens/commit/1fcce6418a9c0d4b35abf8dc62a653595b6c58de)) +* **data:** Update value of form.size.dropdown.subtle tokens ([5773c89](https://github.com/Sage/design-tokens/commit/5773c89cd6fcaf0cff672b364278a280f8f5b3fb)) +* **data:** Update value of form.space.input.y.L. ([5939d76](https://github.com/Sage/design-tokens/commit/5939d769dff567f50b33ef41726f47f697425745)) +* **data:** Update value of nav.boxshadow.menu ([c3d7a73](https://github.com/Sage/design-tokens/commit/c3d7a73ea3c2a54fd5878bd573341a60966d95e7)) +* **data:** Update value of nav.color.inverse.item.bg-hover. ([9340f5f](https://github.com/Sage/design-tokens/commit/9340f5fee0b47f4c0df1e2761d6510f0990c28c4)) +* **data:** Update value of nav.space.menu.container.y.M ([337e38d](https://github.com/Sage/design-tokens/commit/337e38d48095454946e2b94460a2b8c85c0b90d1)) +* **data:** Update value of nav.space.navbar.x.M from 16 to 24px ([1ef63c7](https://github.com/Sage/design-tokens/commit/1ef63c78ef30bcdb7e2d46d6e354a229b3e47bb5)) +* **data:** Update value of popover.space.option.y tokens (this impacts form.space.dropdown.option.y) ([827b257](https://github.com/Sage/design-tokens/commit/827b25745207c2676ed47df9f7a225aea2d2ce05)) +* **data:** Update value of profile.color.inverse.border-default. ([140c38d](https://github.com/Sage/design-tokens/commit/140c38d549ced396a0b256f64d4f56a7b32b14ed)) +* **data:** Update value of progress size stepflow token. ([94e19b1](https://github.com/Sage/design-tokens/commit/94e19b14c3b0dde5cefa77c8d857bcae64a42df8)) +* **data:** Update value of progress.space.loader.xg.M ([bccc4f9](https://github.com/Sage/design-tokens/commit/bccc4f9fbfb54984559c0ddafe65a8d753b4e8f1)) +* **data:** Update values and descriptions of progress spacing tokens. ([98c462f](https://github.com/Sage/design-tokens/commit/98c462f6186ef8f14679436e9ccb3e624ac5c318)) +* **data:** Update values of base.color.interactive.ai hover color tokens. ([7b45fc9](https://github.com/Sage/design-tokens/commit/7b45fc949764c5af029c519bc22c19192255ab23)) +* **data:** Update values of origin AI color gradients. ([1c50b15](https://github.com/Sage/design-tokens/commit/1c50b155736625cc19305de33b6e2346af0b489f)) +* **data:** Update video size tokens (remove hover tokens, and rename enabled tokens) ([66f462f](https://github.com/Sage/design-tokens/commit/66f462f2ebc88e6a877b4999ddb8524ce482d0fb)) +* **data:** updating adaptive mid layer type tokens ([8adf66a](https://github.com/Sage/design-tokens/commit/8adf66a2a0de4e5581dd350439fcb9fa6c4e73de)) +* **data:** updating badge token names to make more sense ([a447f02](https://github.com/Sage/design-tokens/commit/a447f0253ad2a7d2f047ee349c91014689fcfaaf)) +* **data:** updating badge type size to be 100% instead of 150% ([4cb35f3](https://github.com/Sage/design-tokens/commit/4cb35f369a992ab1aed725da5522680808b33de1)) +* **data:** updating border rad to 2 px for secondary ([30c8f86](https://github.com/Sage/design-tokens/commit/30c8f86d7dd3e0a541086531e784892c03e00648)) +* **data:** updating copilot header color to pure white ([1ed19be](https://github.com/Sage/design-tokens/commit/1ed19befa298bfca0c1f12279a92dec5e42224fa)) +* **data:** updating FAB descriptions ([786b428](https://github.com/Sage/design-tokens/commit/786b428e2f49ccb6f5f1ce966b3ef5121c4354f3)) +* **data:** updating fg color of switch to be 50% black ([910c02f](https://github.com/Sage/design-tokens/commit/910c02f7fc25a2bcefb7af0afc867e895af760bf)) +* **data:** updating flex item tokens for vertical to match horizontal ([f45e202](https://github.com/Sage/design-tokens/commit/f45e202a5aee835b340359349bb0b95a540bb0a2)) +* **data:** updating focus border size after feedback from joseph ([8978669](https://github.com/Sage/design-tokens/commit/8978669947ad396044a54fd28f02b3f5362d4d94)) +* **data:** updating global message spacing to give more breathing room. ([59e5f2c](https://github.com/Sage/design-tokens/commit/59e5f2cdfee7d46b7368faa5ce7e8f688acc3742)) +* **data:** updating global message to have 32px left and right padding ([a23df9c](https://github.com/Sage/design-tokens/commit/a23df9c1cda80cb00ebcaa0b0d8ee6b5452f3f92)) +* **data:** updating global message tokens based on joseph feedback ([ca8b568](https://github.com/Sage/design-tokens/commit/ca8b5684be2f4baaa493ca9bfc821981ca7b9cab)) +* **data:** updating hit area size of carousels ([fb013af](https://github.com/Sage/design-tokens/commit/fb013af7780b400404bb8d878d0cab80c191df3a)) +* **data:** updating integral spacing tokens to add more breathing room for checkbox and radio sizes ([49ff800](https://github.com/Sage/design-tokens/commit/49ff80082f3128d3879ae2136b4a030f6ee08b82)) +* **data:** updating marketing specific color overrides to mirror web DS ([56ac518](https://github.com/Sage/design-tokens/commit/56ac518c70373e1f22690c39909d822cc6ec9045)) +* **data:** updating mid layer color tokens based on feedback ([0c49bf1](https://github.com/Sage/design-tokens/commit/0c49bf11bccd40f498f0f53c918276ffb054707e)) +* **data:** updating min height token for vas ([6539555](https://github.com/Sage/design-tokens/commit/6539555b339815b3cb3c1418061fcaa854018d3e)) +* **data:** updating page layout tokens ([3c1beed](https://github.com/Sage/design-tokens/commit/3c1beed1ff183178d886ad503488bbe456ed95fc)) +* **data:** updating progress tokens ([156fcfc](https://github.com/Sage/design-tokens/commit/156fcfc931a4163ab56bba02f1a3067c22f55c66)) +* **data:** updating selected state colors for AI ([853b0ab](https://github.com/Sage/design-tokens/commit/853b0ab84f4cbf7c624093d4037a8202250a7b05)) +* **data:** updating skeleton spacing to match the type sizes ([889ee2f](https://github.com/Sage/design-tokens/commit/889ee2f28395ed9b19994654047a62057dc7e6eb)) +* **data:** updating status colors to use 95% instead of 100% black on outline pills ([ed4d369](https://github.com/Sage/design-tokens/commit/ed4d36924646a9c1d2a97f496dd71cb22e6fa8d2)) +* **data:** updating step flow colors to sit under the standard parent folder ([8c2de13](https://github.com/Sage/design-tokens/commit/8c2de139771dc4509ccc8a43b1b9ba7fda80b27a)) +* **data:** updating subscriptiontile token name to tileselect ([fcdebfb](https://github.com/Sage/design-tokens/commit/fcdebfbc847f81ae0c65748542a9ae2d78639ebf)) +* **data:** updating switch colors ([5001bf5](https://github.com/Sage/design-tokens/commit/5001bf560fa150caac98b4710f05cd0bff0b337c)) +* **data:** updating switch height to be 40px for large ([bfc7ca1](https://github.com/Sage/design-tokens/commit/bfc7ca13913e050da634e4c97a371a014e93e2df)) +* **data:** updating switch to have a knocked back off state ([9ec16ed](https://github.com/Sage/design-tokens/commit/9ec16ed72d5508e3d7378accd6684216e2fb9556)) +* **data:** updating the button layout spacing based on feedback from joseph K ([8004330](https://github.com/Sage/design-tokens/commit/80043305e6d071863b4bcdf46786f39690c0c341)) +* **data:** updating the skeleton yg sizes ([8324c89](https://github.com/Sage/design-tokens/commit/8324c89d6a6178ae0a9eee14a71e9fdc7fe9a2f9)) +* **data:** updating the subtitle color to be lighter for inverse container comps ([632f5c7](https://github.com/Sage/design-tokens/commit/632f5c7ed91b09dc30e5b2d06266a58e90233b82)) +* **data:** updating theme color attachments ([b8f32c3](https://github.com/Sage/design-tokens/commit/b8f32c3480edfb967c934f65946ccb4679cf7077)) +* **data:** updating theme meta file ([c6b9bad](https://github.com/Sage/design-tokens/commit/c6b9badb7c6defc9d179e61fa0de129b7294e8e6)) +* **data:** updating theme meta file ([eb16d8b](https://github.com/Sage/design-tokens/commit/eb16d8b87859c85a4568c91782cd1c55d9f4c5ab)) +* **data:** updating theme names ([18372d4](https://github.com/Sage/design-tokens/commit/18372d4019ee5f5cb64792f4577084e62275ff6b)) +* **data:** updating theme names ([2b92fe8](https://github.com/Sage/design-tokens/commit/2b92fe863c16fdb29c45c5f0b1a13a293ecefd9a)) +* **data:** updating tile select to have increased padding options ([fae5141](https://github.com/Sage/design-tokens/commit/fae5141bf32e43f534c2f86e8e8e82c8a1eef126)) +* **dat:** Delete tab.color.typical.navigation.bg-default. ([269a6b2](https://github.com/Sage/design-tokens/commit/269a6b29964ce7030f356eb370bb9d21022b4321)) +* **dat:** passing typography tokens into skeleton text sizes ([ec0a35d](https://github.com/Sage/design-tokens/commit/ec0a35d087bb103236d80673e3cf3a17b7020f7d)) +* **style:** attaching local styles ([eeb6c81](https://github.com/Sage/design-tokens/commit/eeb6c811a9aec3e0332675084b20c62373ffcb79)) +* **style:** removing space in frozen product file name ([feddfd6](https://github.com/Sage/design-tokens/commit/feddfd6389132b344a49b3dd667a4bd330ab1b47)) + +# [5.0.0-beta.19](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.18...v5.0.0-beta.19) (2024-04-15) + + +### Features + +* **data:** [4:02 PM] Denning, Claire ([a81a779](https://github.com/Sage/design-tokens/commit/a81a779d120a65c9312dfc625536c8fa99c31937)) +* **data:** 1. Add global.typography.heading.XXS. 2. Delete unused container.space.generic.content.pt.M. ([dd55ad6](https://github.com/Sage/design-tokens/commit/dd55ad6f574a9dd28720061f0388df1b4835078f)) +* **data:** 1. Add table.color.row.bg-alt3. 2. Update description of table.color.row.bg-alt2. ([e13ce08](https://github.com/Sage/design-tokens/commit/e13ce088419fb8b35aad5ceb3696812c6cf7212a)) +* **data:** 1. Change value of base.color.status standard.default from origin colours to origin BRIGHT colours, and update value of feedback.color.standard.label-default from white token to black token. 2. Add base.color.status standard.text colours for negative and caution. 3.. Update value of feedback.color inverse and standard label-disabled. 4. Change names of all base.color.status standard hoverAlt to alt, and update description. ([b357f8c](https://github.com/Sage/design-tokens/commit/b357f8c925517096c73161f879dcd6d8d4aa09cc)) +* **data:** 1. Change value of base.color.status.negative.standard.default from red to brightRed. 2. Change value of form.color.validation label tokens. ([b16a57b](https://github.com/Sage/design-tokens/commit/b16a57b3fe8d0319fa083d72aed0fe9a7a61c6be)) +* **data:** 1. Delete feedback.color label-disabled. 2. Add feedback.color label-readonly. ([3a9e877](https://github.com/Sage/design-tokens/commit/3a9e8774d7fb1bc1e5b61c307b98e14626eaaaaa)) +* **data:** 1. Re-order typography code. 2. Add typography component profile tokens. ([decd6dc](https://github.com/Sage/design-tokens/commit/decd6dcd0019d9730e6b580d3cc3c8416032e11f)) +* **data:** 1. Rename feedback bg and border disabled tokens to readonly, and update some of the values. ([d4b16bb](https://github.com/Sage/design-tokens/commit/d4b16bb9af244962d96ee5244f328c8c7255fffc)) +* **data:** 1. Rename global shadow tokens to boxshadow. 2. Change order of global tokens. 3. Rename component-specific borderradius tokens to radius. ([53259ce](https://github.com/Sage/design-tokens/commit/53259ce3610fa0acf41648de601e21a66ada80a8)) +* **data:** 1. Rename typical space tokens to generic. 2. Re-order code. ([b5a57b7](https://github.com/Sage/design-tokens/commit/b5a57b7dda3999c7481dc38cfca9c988ecda25ef)) +* **data:** 1. Revert value of base.color.status standard.default back to origin from origin Bright. 2. Revert the value of feedback.color.standard.label-default from black to white token. ([da5e637](https://github.com/Sage/design-tokens/commit/da5e637f2f06f699fe89542bbb3e22fc522dfa42)) +* **data:** 1. Update descriptions on origin reds. 2. Update values of button.space.layout.gap tokens. 3. Rename elevation tokens to shadow. 4. Rename borderradius tokens to radius. 5. Update description on global.borderradius.interactive.XS. 6. Update values of some base.color.interactive.danger tokens. ([1b550d0](https://github.com/Sage/design-tokens/commit/1b550d0aee54562cb7463c88b51c434323b8cd1f)) +* **data:** 1. Update value of fileinput.uploadpreview. 2. Add global.size.macro.XXXXL. 3. Add container.size.linkpreview.M. ([e16cb64](https://github.com/Sage/design-tokens/commit/e16cb643a333ac2a16aabcc457d403d7bb834a6b)) +* **data:** 1. Update value of global.space.scale. 2. Update value of button.space.typical.y.L. ([fa4cefd](https://github.com/Sage/design-tokens/commit/fa4cefd9b207fc089ae7795b8712fedb59faeaeb)) +* **data:** 1. Update values of tab.color.typical bg-active and bg-hover. ([402d9a2](https://github.com/Sage/design-tokens/commit/402d9a2dfa229c6fc889b2efe38393b2b57be31b)) +* **data:** 2nd push ([0179c31](https://github.com/Sage/design-tokens/commit/0179c31c54bf083def46bfdaaae0579a6ca58c50)) +* **data:** 2nd push ([741c50b](https://github.com/Sage/design-tokens/commit/741c50b41dcaa3133c15dd5a5109d2c5973ef84e)) +* **data:** 2nd push ([5bf9372](https://github.com/Sage/design-tokens/commit/5bf9372c2bd5c0e18369cee129d0341c5c8feb2d)) +* **data:** Add borderwidth.portrait token. ([376e79e](https://github.com/Sage/design-tokens/commit/376e79e5943cef4dc5fdcd816568cc44cb3cd11b)) +* **data:** Add container.color.standard.icon. ([0eb5f2c](https://github.com/Sage/design-tokens/commit/0eb5f2cb9449f6f86a52ed1e998982d6fcb3756d)) +* **data:** Add container.color.standard.interactive.borderalt-hover. ([70d07fa](https://github.com/Sage/design-tokens/commit/70d07fa3dae15a64cd5472ab0d427bac2a86eb7b)) +* **data:** Add container.size.icon.L. ([7759a7a](https://github.com/Sage/design-tokens/commit/7759a7aa055ba980a4ec9a783cc9fcca0430e0d0)) +* **data:** Add container.space.generic.content.xg.XS, ([1ff8e0a](https://github.com/Sage/design-tokens/commit/1ff8e0a2c898583fbe7f4d4e283b1c2eaf12aeba)) +* **data:** Add feedback.space.integral.x token. ([874b2fa](https://github.com/Sage/design-tokens/commit/874b2fa95def8fb78f69e1abb2bc557703c2fc2c)) +* **data:** Add global size token. Add container.size.scrollbar token. ([f2cf370](https://github.com/Sage/design-tokens/commit/f2cf3704819a45b7308f2ba03ce59756cf591171)) +* **data:** Add tab.color.typical.border-hover. ([907dc45](https://github.com/Sage/design-tokens/commit/907dc45152bff4f357472b35f2899a3cfde44844)) +* **data:** Add tab.radius.L and updated tab.radius.M description. ([f99258c](https://github.com/Sage/design-tokens/commit/f99258c4318924926c0abf4da94cc62da7c430e2)) +* **data:** added a callout color for marketing to consume on their banners ([782421b](https://github.com/Sage/design-tokens/commit/782421ba003f24de1b180ffd4c2b0bdc9950a879)) +* **data:** adding card drag state ([fb1bd9e](https://github.com/Sage/design-tokens/commit/fb1bd9e91dadb78ce42b8899380a7d3eead4d12b)) +* **data:** adding component specific icon tokens ([7a3e07e](https://github.com/Sage/design-tokens/commit/7a3e07ea8ef26d89090eb8d05e7ea84865980b25)) +* **data:** adding drag state to interactive card elevations ([df5f6b4](https://github.com/Sage/design-tokens/commit/df5f6b4b2b40c1cec562d412d2a6a8296b852452)) +* **data:** adding generic content padding tokens for popover content such as color picker and calendar ([c516e03](https://github.com/Sage/design-tokens/commit/c516e038cb459d8d41f147692b508bf9904d8096)) +* **data:** adding marketing minty jade color for phillip ([1da887f](https://github.com/Sage/design-tokens/commit/1da887f9bc46f7800596882a7edf247b1f117fa3)) +* **data:** adding more origin border-rad options for cards, dialogs and tiles ([73fd408](https://github.com/Sage/design-tokens/commit/73fd408426992a63f8b27e0607d98a7edf14f3d0)) +* **data:** adding new gap token for raf to use in his link preview component ([d6c1642](https://github.com/Sage/design-tokens/commit/d6c1642c43d113be2f59deb84d05d5020610a07e)) +* **data:** adding new icon colors for message comp ([8149ede](https://github.com/Sage/design-tokens/commit/8149edef8439863a2f3aa178504e7fd0cc61d1f8)) +* **data:** adding new token structure based off call with dru to support small and large screens ([77b814a](https://github.com/Sage/design-tokens/commit/77b814a2d6762c4074f514b4ec48fe1f4e383455)) +* **data:** adding spacing and sizing tokens for color picker ([4157616](https://github.com/Sage/design-tokens/commit/41576166fb6e7b641e78329b25bebf69779626e4)) +* **data:** adding the missing yg token for raf ([f5e0b4b](https://github.com/Sage/design-tokens/commit/f5e0b4bfd55c78da958379ba199477828646679d)) +* **data:** adding the subtle message bg colors. ([5154c83](https://github.com/Sage/design-tokens/commit/5154c837d1db17bdea96acf8dcee839e5f597d83)) +* **data:** adding underline styling origin token for typography ([e7392a5](https://github.com/Sage/design-tokens/commit/e7392a5b300a796a4f963ecfa606a6d8fe9b9a40)) +* **data:** adding XS heading for use on product tiles, cards etc ([bff3bb1](https://github.com/Sage/design-tokens/commit/bff3bb18a0b2fb4dda5e8b09b06e817c87c20d84)) +* **data:** adjusting dialog border radius to mirror what's been agreed with phillip ([16fffff](https://github.com/Sage/design-tokens/commit/16ffffffe905e67b523b59073ed165f3ee016c93)) +* **data:** apply white mixer for subtle message bgs ([a2532bd](https://github.com/Sage/design-tokens/commit/a2532bdf2e9e501980d00a37847cd9897d81d25b)) +* **data:** changing body token to be called paragraph ([e51916e](https://github.com/Sage/design-tokens/commit/e51916ecdd8862ca3363f1a7118d69dc2152520b)) +* **data:** changing card footer to be white ([810b208](https://github.com/Sage/design-tokens/commit/810b20816cb89cf2372185a12bd7e6bf435c3cf0)) +* **data:** changing hover origin token for cards ([52780e1](https://github.com/Sage/design-tokens/commit/52780e1b2ec58804337006e265cf816c30b8a9a9)) +* **data:** changing paragraph subheading to 'body' ([e987666](https://github.com/Sage/design-tokens/commit/e98766619b4cbc1b012e1cf2fd03a63ebd40a0ec)) +* **data:** cleaning up the amount of type sizes used. Deleting redundant ones to simplify based on foundations file. ([01e02f9](https://github.com/Sage/design-tokens/commit/01e02f98749edc821217441f711b2fe0d153b408)) +* **data:** deleting out redundant tokens that claire marked in pink ([8201be3](https://github.com/Sage/design-tokens/commit/8201be3cb29ffea13d6d2c08ea147dab7eebde8e)) +* **data:** editing some swatch container border-rad tokens ([f4e7efe](https://github.com/Sage/design-tokens/commit/f4e7efef9db1c5744ec136c678daaee7d47cbf3a)) +* **data:** Figma sync ([8cd83fe](https://github.com/Sage/design-tokens/commit/8cd83fe45a660a76c544ed561dfb66201e10567c)) +* **data:** Figma sync theme update ([904de59](https://github.com/Sage/design-tokens/commit/904de59515854dc7a93ca219b62aab02c54da380)) +* **data:** Figma theme update. ([79d5651](https://github.com/Sage/design-tokens/commit/79d56518feb3a90178f9871bfebf35448c25b4ae)) +* **data:** fix for large paragraph spacing issue ([c36b953](https://github.com/Sage/design-tokens/commit/c36b953e6f3b953987f07565346477875147b98b)) +* **data:** fixing spacing issue on large paragraph text ([b9c92a1](https://github.com/Sage/design-tokens/commit/b9c92a199a26f7c0dc1794e843bfb6dcbefbadb6)) +* **data:** making it so small screen spacing only affects macro spacing tokens ([18e1511](https://github.com/Sage/design-tokens/commit/18e1511c6eae937a17c033a7b57c6bd4f8108237)) +* **data:** moving light mode to global folder so that tokens can cascade better ([9a92e58](https://github.com/Sage/design-tokens/commit/9a92e5879e0671af2bf4e7799038ddd8bcc27415)) +* **data:** paragraph spacing origin to be number based ([719ab86](https://github.com/Sage/design-tokens/commit/719ab8675e7fff3f114e29de5bed583958149b82)) +* **data:** paragraph spacing origin tokens added ([c49e272](https://github.com/Sage/design-tokens/commit/c49e27260bf2df1a91ba5677fdcb955dc3a5f895)) +* **data:** Previous push was: 1. Rename form.space.fileinput x, y and yg to form.space.fileinput.preview x, y and yg. 2. Add form.space.fileinput.dropzone tokens. 3. Remove form.space.fileinput.preview.yg.M. ([2937065](https://github.com/Sage/design-tokens/commit/293706504aa8d086895a47d89fc09c63cb10687d)) +* **data:** pushing so i can create a PR ([cb6dc2b](https://github.com/Sage/design-tokens/commit/cb6dc2b91663fcccf0998a7feb659b24a49dbce5)) +* **data:** pushing up changes to the calendar spacing tokens ([57ab260](https://github.com/Sage/design-tokens/commit/57ab2602e4f2e76ccafd3a38c44c67102ae70622)) +* **data:** pushing up new red token that claire requested ([24b312d](https://github.com/Sage/design-tokens/commit/24b312ddb60f8c6e1d88b93234879f98e81e3af6)) +* **data:** removing redundant viewport tokens ([014f9a6](https://github.com/Sage/design-tokens/commit/014f9a651f7308a90d71cbfb5b3c3316b726b59f)) +* **data:** removing some unneeded container tokens ([498c63c](https://github.com/Sage/design-tokens/commit/498c63c486289a01dd50ce66d741b9b1534e6886)) +* **data:** Rename global.shadow to global.boxshadow, and reorder global tokens. ([9c35fc4](https://github.com/Sage/design-tokens/commit/9c35fc4d0382927de650681dbafc9e79230774c3)) +* **data:** Rename tokens global box-shadow to boxshadow, and borderradius to radius. ([a900232](https://github.com/Sage/design-tokens/commit/a9002325f42b3c1136484cc98236f26352418b95)) +* **data:** Reorder container.space code alphabetically. ([aa41221](https://github.com/Sage/design-tokens/commit/aa4122163f3409f06187fef545e5197ba3f376d3)) +* **data:** Reorder tilecard space token code. Add tilecard XS tokens for x and y. ([dcc0ae7](https://github.com/Sage/design-tokens/commit/dcc0ae7487ed401155380a84a072caf8ebfc9d85)) +* **data:** Revert feedback.color.standard.label-disabled back to point to a white instead of black token. ([f5bcce6](https://github.com/Sage/design-tokens/commit/f5bcce67fbc2ea8bfea3ba043b6084eafd8c6247)) +* **data:** simplifying the amount of spacing tokens needed for our popovers and providing a generic set. ([7b42bd7](https://github.com/Sage/design-tokens/commit/7b42bd70840f238d707e2680b6100caaee1207e6)) +* **data:** theme update - feedback default bg and default label colours. ([0136c0a](https://github.com/Sage/design-tokens/commit/0136c0a11e1917acaed9732741a393026d78c793)) +* **data:** Theme update to sync figma styles. ([595182b](https://github.com/Sage/design-tokens/commit/595182b8c8a1b311d370248db0b4a67d26f93b78)) +* **data:** Update base.color.status.content withDefaultAlt tokens to reference base.color.generic.content extreme instead of harsh. ([8c646fd](https://github.com/Sage/design-tokens/commit/8c646fdde3e41e782e64586cd22a6ba6e22723c4)) +* **data:** Update container.space.scrollbar tokens. ([7dfac6c](https://github.com/Sage/design-tokens/commit/7dfac6c490d1f6faf2e917b6de1c4951a3b65612)) +* **data:** Update Light Mode theme ([61b0fa0](https://github.com/Sage/design-tokens/commit/61b0fa0563c43dc54b3d06d3442cd212c6f050ca)) +* **data:** Update macro XXXL ([b02144a](https://github.com/Sage/design-tokens/commit/b02144ae5e75443e2968aa33cab0780dd23693d4)) +* **data:** Update theme settings to incorporate styles. ([9dc0eda](https://github.com/Sage/design-tokens/commit/9dc0eda1f63c73c3396cae20ab1b55d114314714)) +* **data:** Update value of feedback.color.standard.label-hover (changed from white to black token). ([cf0dc3a](https://github.com/Sage/design-tokens/commit/cf0dc3a25bb5ac893e297d012619213d7081aa43)) +* **data:** Update value of feedback.color.standard.label-hover from a black to a white. ([5804683](https://github.com/Sage/design-tokens/commit/580468356902b0887768626c7306080e20895c6d)) +* **data:** Update value of global.size.macro.XXXXL. ([afdd4bd](https://github.com/Sage/design-tokens/commit/afdd4bdd9ea2f6d7063e4ddd6e42c686bb34a204)) +* **data:** updating 16px paragraph text padding to 24px after chatting with phillip for review ([606c10a](https://github.com/Sage/design-tokens/commit/606c10a53b52d23479c257343e67ffeb8a68ccba)) +* **data:** updating bg alt colors for sublte message to be 10% opacity instead of 4% ([439fafc](https://github.com/Sage/design-tokens/commit/439fafc0cc6d217d74f81f754437a5281b9ebb15)) +* **data:** updating calendar popover tokens to allow for small viewport override to work ([fcd89f9](https://github.com/Sage/design-tokens/commit/fcd89f9d13fbb2fcde9053ab4ef5fb452667aefa)) +* **data:** updating cards and tiles to be more curvacious to reflect latest ruleset. ([5a5427b](https://github.com/Sage/design-tokens/commit/5a5427b433b4f877a39cc59f578f08719302ec79)) +* **data:** updating carousel token to support carousel slides ([61e8cd7](https://github.com/Sage/design-tokens/commit/61e8cd7fbea8b7ebf7085bb632545843d06737ae)) +* **data:** updating descriptions on radius ([69c957a](https://github.com/Sage/design-tokens/commit/69c957a410d9cba141148b1bcd045eb4ba801cdf)) +* **data:** updating input radius to be 8px instead of 4px. ([dc775f1](https://github.com/Sage/design-tokens/commit/dc775f104446548ecabc94c6e19a0828e7bd1444)) +* **data:** updating medium font size of 16px to have paragraph spacing of 20px ([0af7f76](https://github.com/Sage/design-tokens/commit/0af7f762f0d14d7d0e1da6bfeaa4049ed353ad8f)) +* **data:** updating message spacing tokens ([beb25b8](https://github.com/Sage/design-tokens/commit/beb25b89c7be0ed0a72884ab49735563e53c7ea9)) +* **data:** updating pill to be 4px ([d7e9817](https://github.com/Sage/design-tokens/commit/d7e9817397d3415996b35c72d1caa7da45586bf1)) +* **data:** updating radius descriptions ([7210c2a](https://github.com/Sage/design-tokens/commit/7210c2ac4654e9218089e2006004c9d74cd5432e)) +* **data:** updating shadow tokens for sticky footer ([b1960ba](https://github.com/Sage/design-tokens/commit/b1960ba0f4f13dd446b8b787f8a7f445c1f8c072)) +* **data:** updating shadows based on collab with phillip ([6f088fe](https://github.com/Sage/design-tokens/commit/6f088feba9953d16c1a510e0cda60ff3553bc5be)) +* **data:** updating spacing tokens for message component ([0a25d9e](https://github.com/Sage/design-tokens/commit/0a25d9ed12e940e74857583c9bb0d78c0e78c8ec)) +* **data:** updating token descriptions for sticky footer shadow and border box shadow. ([060b897](https://github.com/Sage/design-tokens/commit/060b8978ad5f63366fd8ab4657c9c8b7d2c203b2)) +* **data:** updating type paragraph styles based on discussions with claire ([fdd49da](https://github.com/Sage/design-tokens/commit/fdd49daed9fb5bd1b373079192f9612630ae6331)) +* **data:** updatng message components based of latest tweaks agreed with phillip and claire ([38263d0](https://github.com/Sage/design-tokens/commit/38263d07482b4c73ad7853bef3a724ecf426647b)) +* **style:** Update theme config ([d7e7086](https://github.com/Sage/design-tokens/commit/d7e708603b91e41911d98fa37cc2b6a10c2f8e09)) +* update build process to allow for platforms ([6245579](https://github.com/Sage/design-tokens/commit/62455796a13dd49a413be3ddd8072f2ec1e869a5)) + +# [5.0.0-beta.18](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.17...v5.0.0-beta.18) (2024-03-19) + + +### Features + +* **data:** 1. Add border radius tokens for badge, datatable, feedback, form, progress, nav. 2. Rename datatable to table. 3. Update button border radius token descriptions. ([bdc375e](https://github.com/Sage/design-tokens/commit/bdc375e40f8cb42d2540e85b942a59dd65684875)) +* **data:** 1. Add border radius tokens to the following component-specific tokens - button, popover, tab. 2. Update description on global.border-radius.interactive.M, global.border-radius.interactive.XL and global.border-radius.interactive.XXL. 3. Change global.border-radius.interactive.none to global.border-radius.none. ([40c72b8](https://github.com/Sage/design-tokens/commit/40c72b80861f9ab1aac991bee9691c7b4166ce3e)) +* **data:** 1. Add container sizing token for subscriptiontile.productidentifier. 2. Add spacing tokens for subscription tile. 3. Update description on feedback.size.pill tokens. 4. Remove form.color.calendar.bg-default. 5. Add form.space.calendar tokens. 6. Reorder form code to be alphabetical. ([86dc5f0](https://github.com/Sage/design-tokens/commit/86dc5f0f026d9d683558341c53345f8745c8f5be)) +* **data:** 1. Add form.size.icon token. 2. Add form.space targeted tokens for divider, input, fileinput, option and stack. 3. Add global.size.macro.XXXL token. 4. Add popover.space.menu.M.vertical token. ([2ccd723](https://github.com/Sage/design-tokens/commit/2ccd72318cd13726d54e1c6b3e9ac3b80c357fbf)) +* **data:** 1. Add gradient token for progress.color.standard.bg-skeleton. 2. Add container.color.scroll tokens. 3. Add progress.color.standard.fg-alt2 for step sequence. ([bc03dd4](https://github.com/Sage/design-tokens/commit/bc03dd4c546ebefc8ab790ae619a6846eb1b1eb3)) +* **data:** 1. Add typography pill tokens. 2. Edit and remove feedback pill tokens. 3. Update values of form.size.switch.container. 4. Add form.space.switch. 5. Reorder form code alphabetically. 6. Reorder global typography code alphabetically. ([87c4d9a](https://github.com/Sage/design-tokens/commit/87c4d9afa11277a9d827575df14dbf516a5f1052)) +* **data:** 1. Change global radius and elevation from active to source. Not sure if this will change any code... 2. Remove border-width from the global.size token set. Not sure if this will change any code... 3. Add global.borderwidth token set. 4. Add borderwidth tokens to container for accordion, button, container, feedback, focus, form, nav, tab, table. 5. Change value of button.color.standard.destructive.primary.label-disabled and button.color.standard.typical.primary.label-disabled to ([1755d49](https://github.com/Sage/design-tokens/commit/1755d498c4d7a8390cc1826704e7f9634f34554f)) +* **data:** 1. Change names of global.box-shadow.interactive tokens. 2. Add container.boxshadow for card, carousel, dialog, sidebar. 3. Delete container.borderradius.tooltip, and add feedback.borderradius.tooltip. 4. Add feedback.boxshadow tooltip & toast. 5. Add nav.boxshadow.menu. 6. Add popover.boxshadow.popover. 7. Add table.boxshadow.parentrow. ([38ea492](https://github.com/Sage/design-tokens/commit/38ea492689829c049cb09dd2fbeb2fe5460c1794)) +* **data:** 1. Change origin ai to aiH. 2. Add origin lightAiH. 3. Add base.color.interactive.ai.inverse. 4. Add button.color… .ai.bg-hover. 5. Add button.color.inverse tokens. 6. add progress.color... fg-ai tokens. 7. Update weight values of global.typography.web.component.firm XS and S to be medium not regular. ([b9876c6](https://github.com/Sage/design-tokens/commit/b9876c6a3d6c1ca03700c0e91aeb6fdf1b5255f3)) +* **data:** 1. Change popover.space.menu py to y. 2. Change tab.space tokens. 3. Add popover space tokens. ([f07cae2](https://github.com/Sage/design-tokens/commit/f07cae2a0ec18cc5fe2113631fceebf8ba2a1917)) +* **data:** 1. Change theme settings in plugin. 2. Add border width for badge. ([7584d60](https://github.com/Sage/design-tokens/commit/7584d602718405e29d2fd6785733a91d69d4066c)) +* **data:** 1. Combine global.borderwidth tokens into one group. 2. Update values of component borderwidth tokens. ([32ca311](https://github.com/Sage/design-tokens/commit/32ca311d8705dbba7d05c497bc28b3ee9d4da339)) +* **data:** 1. Move scrollbar tokens from progress to container. 2. Update container.size.scrollbar tokens. 3. Add button.space.toggle tokens. ([eba5680](https://github.com/Sage/design-tokens/commit/eba56802c2f6a7e4aaf25fab3377c0d255f9289a)) +* **data:** 1. Remove container.space.pagination tokens. 2. Add typography.web.component.link token. 3. Remove table.size.header tokens. ([01ca618](https://github.com/Sage/design-tokens/commit/01ca618766e60f7cae0a33d4a346383a76c1081b)) +* **data:** 1. Remove form.space.layout XS and WHAT IS THIS FOR. 2. Update form.space.layout token names. 3. Remove form.space. option tokens. 4. Add many form.space.integral tokens. ([29381d8](https://github.com/Sage/design-tokens/commit/29381d834391c050a80f6c2bbc54f19bff04a722)) +* **data:** 1. Rename global.box-shadow.interactive.enabled to ...near. 2. Rename global.box-shadow.interactive.hover to … distant. 3. Update description on global.border-radius tokens. 4. Create global.border-radius.interactive.XXL. ([7e94658](https://github.com/Sage/design-tokens/commit/7e946587d13f2ebcc0dcce5cceb6b19a30dd6db3)) +* **data:** 1. Update description of form.space.input.px.M and form.space.fileinput.inputgap.M. 2. Rename form.space.integral.pb.pb to form.space.integral.gap.pv. ([daf592c](https://github.com/Sage/design-tokens/commit/daf592c6a34d3f0e227b53f4148b4531cf633b5b)) +* **data:** 1. Update description on form space token. 2. Add container space token for tile content. ([2d55d1d](https://github.com/Sage/design-tokens/commit/2d55d1d0a886fdbf279f5def392c32ade28df44e)) +* **data:** 1. Update descriptions in varius border radius tokens. 2. Add new border radius tokens to container and form. 3. Remove portrait border radius token from form, and add to profile. 4. Remove link and skiplink border radius tokens from focus, and add them to link. 5. Rename badge border radius token from circle to badge. 6. Reorder various border radius tokens to be alphabetical. ([b672e39](https://github.com/Sage/design-tokens/commit/b672e39bbb6fb2cc4712c605a4b0bb7b62b8f3cf)) +* **data:** 1. Update descriptions on container space tokens. Add container space tokens. Reorder code alphabetically. 2. Add container.size.accordion token. ([58871a7](https://github.com/Sage/design-tokens/commit/58871a7f76858b1ca23f7f0fad7e3aad08176c5a)) +* **data:** 1. Update descriptions on global.border-radius tokens. 2. Add borderradius to container and form component tokens. 3. Move button, form, popover and tab borderRadius tokens into parent folder named borderradius. ([1ee7aa2](https://github.com/Sage/design-tokens/commit/1ee7aa233ed068488b139f5031750f63560fdfcc)) +* **data:** 1. Update form.space.input.xg.M description. 2. Add container.space.integral.timestamp token. ([b4f05cd](https://github.com/Sage/design-tokens/commit/b4f05cd0105fd8ef0ac7aee8bd711315194a723f)) +* **data:** 1. Update spacing tokens in container. ([2663ca2](https://github.com/Sage/design-tokens/commit/2663ca2752b7f357c26d8021dfa4086728e934c5)) +* **data:** 1. Update value of base.color.interactive.monochrome.standard.hover to origin.colors.black. Update value of base.color.interactive.monochrome.inverse.hover to origin.colors.white. 2. Move container.color.standard.interactive border and bg activated colours into container.color.standard. 3. Add container.color.standard.bgFooter-active, container.color.standard.bgFooter-activated, container.color.standard.border-active, and container.color.standard.border-activated. 4. Temporary change of container.color.standard.interactive.bgFooter-activated, container.color.standard.interactive.bgFooter-active, and container.color.standard.interactive.border-activated to FF00FF. They can probably be removed. ([344f698](https://github.com/Sage/design-tokens/commit/344f69875b1c9fbf8ee9af590218c150754a4f23)) +* **data:** 1. Update value of form.button.space…xg subtle.L to 4px, and typical.L to 8px. 2. Add spacing tokens to Link. 3. Update spacing tokens in Form. 4. Add global.space.macro.ML (for file input no-thumbnail). 5. Add feedback.space.tooltip tokens. 6. Maybe something else :) ([cbc8b3e](https://github.com/Sage/design-tokens/commit/cbc8b3e8f267f08cc7c50a5513229ae6b265e4b3)) +* **data:** 1. Update value of form.color.switch.border-enabled. 2. Add form.color.calendar.bg-duration. 3. Update value of form.color.calendar.bg-hover. ([fb6d1f0](https://github.com/Sage/design-tokens/commit/fb6d1f0613c646755ba5581b7f6907c1a23703ee)) +* **data:** 1. Update values of global.lineheights. ([36c6f49](https://github.com/Sage/design-tokens/commit/36c6f49e9b7314e86078acc7de681e2b12127a88)) +* **data:** 2nd push ([477919f](https://github.com/Sage/design-tokens/commit/477919f5027db66979809576d8c4a9a3d7ed5b72)) +* **data:** 2nd push ([abf6b38](https://github.com/Sage/design-tokens/commit/abf6b382356637c1d8075431fee5d90fe1825a8f)) +* **data:** 2nd push ([078325c](https://github.com/Sage/design-tokens/commit/078325cb6b51354cef6d03b36b656f9444e6102a)) +* **data:** 2nd push ([af46042](https://github.com/Sage/design-tokens/commit/af460425402c1772271b4bcd903d3c23b3c84d58)) +* **data:** 2nd push ([0e87bc2](https://github.com/Sage/design-tokens/commit/0e87bc2281cf93948067489593ee2696af4b735b)) +* **data:** 2nd push ([2c72262](https://github.com/Sage/design-tokens/commit/2c72262100cc6d9858c0356af1edbf1201c74185)) +* **data:** 2nd push ([0b4365f](https://github.com/Sage/design-tokens/commit/0b4365fff0fdd13bec71afeb012a956554941628)) +* **data:** 2nd push ([ac49754](https://github.com/Sage/design-tokens/commit/ac49754f06fcd5c259225a91ce740c7a3368e97b)) +* **data:** 2nd push ([5991a58](https://github.com/Sage/design-tokens/commit/5991a587fb7544eb621f888741fd77bbeaa0f37a)) +* **data:** 2nd push ([0d3e8dd](https://github.com/Sage/design-tokens/commit/0d3e8ddd3fe5fc7fbcef0ee80ca2d7f47ba0230c)) +* **data:** 2nd push - what changed? ([9c80626](https://github.com/Sage/design-tokens/commit/9c806268ef6672dced821319e4b9a77297f6a2b3)) +* **data:** 2nd push Update nav.space.menu tokens. ([a00d7f1](https://github.com/Sage/design-tokens/commit/a00d7f14251dfdbc68916dab6cde2b50cc337bf2)) +* **data:** 2nd push. ([d206eb7](https://github.com/Sage/design-tokens/commit/d206eb7741a0a418057d0598f52ca88714d50d0a)) +* **data:** 3rd push ([ab19ccc](https://github.com/Sage/design-tokens/commit/ab19ccc37f675ee1a89c95ffd35634de1b00e172)) +* **data:** 3rd push ([972d4cd](https://github.com/Sage/design-tokens/commit/972d4cd0303bd6cc5f255c05050f706005cacc3f)) +* **data:** 4th push ([72116d5](https://github.com/Sage/design-tokens/commit/72116d5d34c4d64bb0bed93d428bf4565e15c37c)) +* **data:** actioning QA feedback from claire on button tokens ([f4668dc](https://github.com/Sage/design-tokens/commit/f4668dca93dbaf2a5a67ed477a2f0b141d630c49)) +* **data:** Add button.color.standard.typical.primary.bg-default for split button spacer ([120f2f0](https://github.com/Sage/design-tokens/commit/120f2f0936f3306529642e98e36dad471b53599c)) +* **data:** add large spacing for pills ([df1d99a](https://github.com/Sage/design-tokens/commit/df1d99aa2a0d88f1672047746bdedab7f431f731)) +* **data:** Add popover.color.bg-default for popover container bg ([e027aa5](https://github.com/Sage/design-tokens/commit/e027aa5511892c881eeb83097012d49c40a62557)) +* **data:** add space and size tokens for message component ([1f63b9f](https://github.com/Sage/design-tokens/commit/1f63b9f15c220eb38b18827f0f95af2aaa522f30)) +* **data:** add tab spacing tokens ([14cfd8a](https://github.com/Sage/design-tokens/commit/14cfd8aa5223bd2c9a2a8a11e95c5e21b49e98fc)) +* **data:** Add temporary tokens for nav.space.navleft. ([8f35786](https://github.com/Sage/design-tokens/commit/8f357863d9bbaf9df986e9eca8517218ddc71b61)) +* **data:** adding 6px form spacing option ([e58b9d8](https://github.com/Sage/design-tokens/commit/e58b9d89c7fb61a7555f3bca3fdc540d99d66d3d)) +* **data:** adding a display variant token for marketing typography ([31d4908](https://github.com/Sage/design-tokens/commit/31d49087cf91e247aed2de25927dd8a6d4dd70ba)) +* **data:** adding a global border-rad for copilot container ([8a95256](https://github.com/Sage/design-tokens/commit/8a952566c195463f7a34a23f5bcd8dc60831852e)) +* **data:** adding a smaller dialog spacing token for y gap ([5e43509](https://github.com/Sage/design-tokens/commit/5e435099dad5ddb15e8d7405fc166b0f36bfadca)) +* **data:** adding component specific spacing tokens for buttons ([56e3036](https://github.com/Sage/design-tokens/commit/56e30362245d53a2dd93e123a491e713f1270b10)) +* **data:** adding extra origin type steps to accomodate display usecase from marketing ([c8b9dd3](https://github.com/Sage/design-tokens/commit/c8b9dd320603bccc3246400df7f88243e59c977d)) +* **data:** adding finalised global spacing tokens ([739ab8a](https://github.com/Sage/design-tokens/commit/739ab8ab0ff76b4e0277a855c592b7f5a755705b)) +* **data:** adding first pass of summary list tokens ([54fbbf8](https://github.com/Sage/design-tokens/commit/54fbbf8f855e471d64771b573db4e877a1cda18a)) +* **data:** adding form stack spacing options ([f020d8a](https://github.com/Sage/design-tokens/commit/f020d8a2f5da6f9e57e9a4a221f7f68b36a0935d)) +* **data:** adding missing subtle button spacing tokens ([a605a1e](https://github.com/Sage/design-tokens/commit/a605a1e3c4512fd9c9813cec5013e196971098bd)) +* **data:** adding none pixel tokens for container and inputs ([0732f39](https://github.com/Sage/design-tokens/commit/0732f394f3f20e028532ff1f2fd3bf7993384073)) +* **data:** adding padding token for section title ([5cfe7e9](https://github.com/Sage/design-tokens/commit/5cfe7e97fe1d505de57892e87c0d7e90aa299032)) +* **data:** adding scale multiplier to global size tokens to allow us easily override scaling for different themes in future ([b60df17](https://github.com/Sage/design-tokens/commit/b60df17d35aafd7f05dc6df057ea6d8b1a5ef0ec)) +* **data:** adding skeleton state border rad tokens ([7fa0a6b](https://github.com/Sage/design-tokens/commit/7fa0a6b29fd9caae371640e89c8c3aacbd77920a)) +* **data:** adding skeleton vertical gap sizes ([9110fc4](https://github.com/Sage/design-tokens/commit/9110fc4975baf15ebed76b2dbcdae8ba597cc5a3)) +* **data:** adding spacing tokens for loading spinners and bars ([16e1f51](https://github.com/Sage/design-tokens/commit/16e1f514b3483ba1eceb382262a56ff0fadc71fd)) +* **data:** adding spacing tokens for progress tracker ([86cea90](https://github.com/Sage/design-tokens/commit/86cea90c99237f0b217388a9a6931d945170ba8a)) +* **data:** adding stack spacing options for inputs ([d5ae5fe](https://github.com/Sage/design-tokens/commit/d5ae5fe764f1d9b76ec3096105e9b383beeef78a)) +* **data:** Additional typography token added for step flow ([babac20](https://github.com/Sage/design-tokens/commit/babac20cd6e1e58d5831ecef95604e733a0382f0)) +* **data:** adjusting badge sizing and spacing based on claire's feedback ([5a9187a](https://github.com/Sage/design-tokens/commit/5a9187a8c67bbba21cbdf4a77449b14f3215ae4a)) +* **data:** adjustments to the summary list padding tokens ([79e23e0](https://github.com/Sage/design-tokens/commit/79e23e01d5c8c2cd4b9e8cc4b24bbb8b6c84c035)) +* **data:** another temporary change to button destructive active borders as we think we don't need these tokens. Coloured FF00FF for now. Plan to remove these tokens later ([2fb1075](https://github.com/Sage/design-tokens/commit/2fb107592fbb994dce9ab7c78cee9e108fcc1979)) +* **data:** border-rad for color picker ([b0c1d95](https://github.com/Sage/design-tokens/commit/b0c1d957cda51c73ed2d9f3a96946999fcbdff41)) +* **data:** Change focus.color.border-alt to focus.color.borderalt ([c897d89](https://github.com/Sage/design-tokens/commit/c897d8997747d7568f8464c50f419c21eae90d83)) +* **data:** Change value of button.color.standard.destructive.primary.label-disabled and button.color.standard.typical.primary.label-disabled to {base.color.interactive.inactive.standard.content} ([7a6eed9](https://github.com/Sage/design-tokens/commit/7a6eed93d14ac10c9cd45434804c01edf4ec30b9)) +* **data:** change values of button.color.inverse.typical.tertiary.border-disabled and button.color.standard.typical.tertiary.border-disabled ([77a7d41](https://github.com/Sage/design-tokens/commit/77a7d41db7d73c51e21397020a42a8d0373e50c8)) +* **data:** changing badge and button to include claire's new schema ([55ced22](https://github.com/Sage/design-tokens/commit/55ced228b0058c7077974a7a91d3fbe14186c459)) +* **data:** consolidating container spacing tokens ([bd1355c](https://github.com/Sage/design-tokens/commit/bd1355cfa837a8016e9d8ba9cde151d0c4eff4e1)) +* **data:** Copilot tokens - 1. Add origin.colors.ai. 2. Add base.color.interactive.ai.standard. 3. Add button.color.standard.typical.ai tokens ([0812803](https://github.com/Sage/design-tokens/commit/0812803dbeebcaa3c765606537085d0934a2f507)) +* **data:** finalising summary list spacing tokens ([96941a7](https://github.com/Sage/design-tokens/commit/96941a729d692d6c984c6d627e7bfbb9bfc18a60)) +* **data:** first draft of container structure ([4e4c6dd](https://github.com/Sage/design-tokens/commit/4e4c6dda2342fc69c89e5b7ff7892a28ae141fd0)) +* **data:** first draft of table spacing tokens ([5412fe7](https://github.com/Sage/design-tokens/commit/5412fe7f2065807860ff99774d13a375123ff9d4)) +* **data:** further changes to buttons to follow claire's new structure ([f409601](https://github.com/Sage/design-tokens/commit/f4096012c497de26f8ab943eda6e4494ac00f470)) +* **data:** IMPORTANT fix to contrastMore and contrastLess string ([ccb2e6b](https://github.com/Sage/design-tokens/commit/ccb2e6b65b48dfa310101fd2d2afc53f7a71cfb1)) +* **data:** making sure no changes lost ([3e06c6b](https://github.com/Sage/design-tokens/commit/3e06c6b483129a1d7871092d1a5ebc93df61f9a5)) +* **data:** marketing token tweaks for phillip ([f972d3a](https://github.com/Sage/design-tokens/commit/f972d3a81273b6fa36a50a114b280d41a919c0de)) +* **data:** new container tokens added to support carousel ([814c431](https://github.com/Sage/design-tokens/commit/814c431b2c5dcc27e93ca29379770d1791dbfec8)) +* **data:** No token changes, just reapplying tokensin figma, so no idea why this needs committing :0 ([7629537](https://github.com/Sage/design-tokens/commit/7629537821b2867a86dfff9311ca94d068b7de76)) +* **data:** pagination spacing first draft ([a8914c9](https://github.com/Sage/design-tokens/commit/a8914c9246b5dd3ccf10b0fea5cffbd3d0d12eb1)) +* **data:** pills now use new space schema ([c57aed7](https://github.com/Sage/design-tokens/commit/c57aed76435977e2639f3b6474ba80ed6e09e14a)) +* **data:** Plugin has decided I have local changes :o ([d548810](https://github.com/Sage/design-tokens/commit/d548810dbb97fe5096aa6c777548dd0ea8223b86)) +* **data:** Plugin issues on the 2 previous pushes. Changes as follows... 1. Update button.space descriptions and toggle. Reorder categories alphabetically. 2. Add and update nav.space tokens. ([9fdbeee](https://github.com/Sage/design-tokens/commit/9fdbeee9b07249bfa95166c31f68f0fde2e10577)) +* **data:** PREVIOUS PUSH included 1. Remove table.space.header tokens again. 2. Add typography link L token. 3. Remove web from typography token path. 4. Update typography tokens. 5. Remove XS typography tokens. 6. Add typography component heading and subheading tokens. 7. Update button.space.toggle tokens. THIS PUSH includes 1. Add origin.dimension.4000 and origin.dimension.3600 for small viewport sizes. ([4e7a68c](https://github.com/Sage/design-tokens/commit/4e7a68c5a6439a0490e4d72e3153cb59b187356d)) +* **data:** Remove form.space divider tokens ([8463f1b](https://github.com/Sage/design-tokens/commit/8463f1b13b182de9bb5a22ef313fa86b9cee6739)) +* **data:** Rename form.space outer to layout, and rename button.space stack to layout. ([d768822](https://github.com/Sage/design-tokens/commit/d768822b0adef01c000f7fbb25014083667e64fd)) +* **data:** simplifying type tokens for marketing ([b4b95dd](https://github.com/Sage/design-tokens/commit/b4b95dd24fb12b4068906a131a0f63a05c7c5c0b)) +* **data:** starting to add pill spacing tokens ([f076b30](https://github.com/Sage/design-tokens/commit/f076b30661a064e66f3442d28f9ed77688158348)) +* **data:** temporary change to button destructive active colours as we think we don't need them. For now they are FF00FF. The plan is to delete these ([80c436b](https://github.com/Sage/design-tokens/commit/80c436b2c07f71dd6338df5c9a614dcc05501d1a)) +* **data:** The earier push named -2nd push- included these changes... 1. Add colour tokens tokens for disabled pills into feedback tokens. 2. Add focus.borderradius tokens for link and skiplink. 3. Reorder feedback borderradius tokens, and add message. 4. Rename progress.borderradius progressbar to standalone.M. Add S and L. Add progress.integrated. 5. Rename container.borderradius M to subscriptiontile, and add carousel. 6. Add container.borderradius carousel and skeleton tokens. 7. Add form.borderradius colorpicker, dialog, portrait, radio tokens. 8. Combine two global.border-radius... circle tokens into parent. Reorder code within global.borderradius. ([472ef17](https://github.com/Sage/design-tokens/commit/472ef17d2077137942c6c1ee9c603f62fe1d857d)) +* **data:** Update description on form.borderradius.input ([c8fed54](https://github.com/Sage/design-tokens/commit/c8fed544ec611f17e4e92d4cc72e0c9bd8c41700)) +* **data:** update file input thumbnail to have smaller radius so that hierarchy of radius makes more sense in preview comp. ([4bcb6cd](https://github.com/Sage/design-tokens/commit/4bcb6cdf52e5b1840251b8d48e43eb4b49b197eb)) +* **data:** Update form spacing tokens ([6c61baf](https://github.com/Sage/design-tokens/commit/6c61baf6894526ba86ec1634547d4ad524e49ed3)) +* **data:** Update form spacing tokens ([3cc3f5a](https://github.com/Sage/design-tokens/commit/3cc3f5ada4442e3bbe7304a53a1c5076c4ab20a3)) +* **data:** Update form.space.outer tokens and add form.space.labelset ([07e9d79](https://github.com/Sage/design-tokens/commit/07e9d79d72b981e3e5d328aa32090a2cf2dc7d4b)) +* **data:** Update nav.space.menu tokens. ([da72cbb](https://github.com/Sage/design-tokens/commit/da72cbbcfb333c34740fc3959ba18aa6bca90952)) +* **data:** Update value of form.size.fileinput.preview ([cb41e15](https://github.com/Sage/design-tokens/commit/cb41e15126bf04304b455b6e0d446cd5b9c08dce)) +* **data:** Update values of button.color.inverse.typical.primary.bg-disabled, button.color.inverse.typical.primary.label-disabled, button.color.standard.typical.primary.bg-disabled and button.color.standard.typical.primary.label-disabled ([c32c585](https://github.com/Sage/design-tokens/commit/c32c585ba042ae102826049f14c669fb7be76d42)) +* **data:** Updating button spacing tokens to match claire's latest schema ([2bda4dd](https://github.com/Sage/design-tokens/commit/2bda4dd4ad39225178c9e64c45abcdca6e9a54a2)) +* **data:** updating container spacing to be more generic ([1a50198](https://github.com/Sage/design-tokens/commit/1a501986b0daa02c48772b1f92490274dd4b9392)) +* **data:** updating container spacing tokens to have a group called generic - easier findability. ([e081008](https://github.com/Sage/design-tokens/commit/e0810088f5147cfbc4d03e11bdb61d0f3d873587)) +* **data:** updating file input padding to be 8px instead of 12px ([70ed81a](https://github.com/Sage/design-tokens/commit/70ed81a0f7286562b78294df77352aed359978d4)) +* **data:** updating neutral to become moderate and added a harsh (bold) variant of generic type ([5e6e1fb](https://github.com/Sage/design-tokens/commit/5e6e1fb1b8c746d51e838a7052241851a5dbfbd0)) +* **data:** updating origin colors to be more accessible. ([0ac1716](https://github.com/Sage/design-tokens/commit/0ac1716f332065fbcdec3984afe49aa5cd21ac37)) +* **data:** using latest schema for container spacing ([06b530b](https://github.com/Sage/design-tokens/commit/06b530b5ff38598172ca12dd9f4a036f7ffd2a1d)) +* **data:** uupdating pagination to contain a layout parent group for spacing ([96d21c8](https://github.com/Sage/design-tokens/commit/96d21c8b84c8daed5b26093ae87866f94388b3cc)) +* **data:** VARIOUS CHANGES FOR LINK AND TABLE including ([ac0bef2](https://github.com/Sage/design-tokens/commit/ac0bef2d9b9da4ad429a72ecea55ee6c0cad9c8f)) +* **data:** VARIOUS CHANGES FOR LINK AND TABLE including ([08f23b2](https://github.com/Sage/design-tokens/commit/08f23b27e8c01e10ed9c67737530f15f40df2cd7)) +* **update:** Update value of base.color.interactive.monochrome.standard.hover to origin.colors.black. Update value of base.color.interactive.monochrome.inverse.hover to origin.colors.white. This gives us independent control of 1. Update value of base.color.interactive.monochrome.standard.hover to origin.colors.black. Update value of base.color.interactive.monochrome.....default tokens. ([39d2fcc](https://github.com/Sage/design-tokens/commit/39d2fccf241112f63090de09132bf8e9219925da)) + +# [5.0.0-beta.17](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.16...v5.0.0-beta.17) (2024-03-12) + + +### Features + +* update component css selector ([7a8a6eb](https://github.com/Sage/design-tokens/commit/7a8a6eb0349300e5fbe96a4bb4319b53a130f8c4)) + +# [5.0.0-beta.16](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.15...v5.0.0-beta.16) (2024-03-08) + + +### Bug Fixes + +* maintain icon names as snake case ([e64fadc](https://github.com/Sage/design-tokens/commit/e64fadc94c04ee4420e0a2ed08942ca00105810e)) + +# [5.0.0-beta.15](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.14...v5.0.0-beta.15) (2024-01-23) + + +### Features + +* update component selector for css & scss references ([4b8007f](https://github.com/Sage/design-tokens/commit/4b8007f68c203117c6913cf8ccc68aa5ef14d31f)) + + +### BREAKING CHANGES + +* Token structure change + +# [5.0.0-beta.14](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.13...v5.0.0-beta.14) (2024-01-23) + + +### Features + +* split component tokens from modes for css & scss references ([6c4a304](https://github.com/Sage/design-tokens/commit/6c4a3043f645d254941390ddb9dc4f555b5d048a)) + + +### BREAKING CHANGES + +* Token structure change + +# [5.0.0-beta.13](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.12...v5.0.0-beta.13) (2024-01-23) + + +### Features + +* split global tokens from modes ([e52c23d](https://github.com/Sage/design-tokens/commit/e52c23dc5e76a26246f410c8d71dd0aa3d4ecfd8)) + + +### BREAKING CHANGES + +* Token structure change + +# [5.0.0-beta.12](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.11...v5.0.0-beta.12) (2024-01-17) + + +### Features + +* **data:** add pill sizes ([e674e38](https://github.com/Sage/design-tokens/commit/e674e38097f4801d420b37b9a19be7c98a06482f)) +* **data:** add typography group and fix on dark button green to be brill green ([69b38ab](https://github.com/Sage/design-tokens/commit/69b38ab15b77f6dade0b79595237d4ec667d9878)) +* **data:** adding flexbox item min and max sizes ([02dc63d](https://github.com/Sage/design-tokens/commit/02dc63dfe302671bccac0427bb5613287c54cba0)) +* **data:** adding nav sizes ([7eab9d6](https://github.com/Sage/design-tokens/commit/7eab9d606cb6ba64a3f73ebaa7068030e4114c90)) +* **data:** adding portrait sizes ([d569203](https://github.com/Sage/design-tokens/commit/d569203b6b76ed3c00e7dcb34206d657465dfcee)) +* **data:** adding sizing tokens for forms and buttons ([5ba0e70](https://github.com/Sage/design-tokens/commit/5ba0e70232b501650529c51648c949ba80faafa5)) +* **data:** adding table sizing tokens ([dc4c696](https://github.com/Sage/design-tokens/commit/dc4c696534e7ac5da014dfd699957c82b2a97bf6)) +* **data:** finalising first draft of all sizes needed ([7258d2e](https://github.com/Sage/design-tokens/commit/7258d2e2825cffb0dc4534c8c0a082acf1d49122)) + +# [5.0.0-beta.11](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.10...v5.0.0-beta.11) (2024-01-12) + + +### Bug Fixes + +* **data:** removing a token reference in the description value that was causing build to fail. ([4fb3e30](https://github.com/Sage/design-tokens/commit/4fb3e303224d6fb3931da850e9bf1ed0a56cb072)) + + +### Features + +* **data:** 2nd push for container.standard.text-alt and form.standard.border-alt ([7507f9c](https://github.com/Sage/design-tokens/commit/7507f9c854b8c699da4806dae7559267670ca439)) +* **data:** 2nd push for LOTS ([c4f1b91](https://github.com/Sage/design-tokens/commit/c4f1b91e67aaeff70253d48651ce42678fcd1f3c)) +* **data:** 2nd push on Add link.color.inverse.destructive tokens and profile.color tokens ([1b5293f](https://github.com/Sage/design-tokens/commit/1b5293fe450bf9f98d4881dd52d479d6c3141210)) +* **data:** 2nd push on badge ([899fa17](https://github.com/Sage/design-tokens/commit/899fa17b06bce8c06c90ec222d0b5ae4c9ecc921)) +* **data:** 2nd push on MANY ORIGIN and MIDLAYER changes including... ([19cb9cf](https://github.com/Sage/design-tokens/commit/19cb9cfd0f68718038dbebf5922b95a239df470b)) +* **data:** 2nd push on reordering code ([8bfc398](https://github.com/Sage/design-tokens/commit/8bfc398b4c043f740368b6a7e5dbdb26b57961b8)) +* **data:** 2nd push on tab ([5970c34](https://github.com/Sage/design-tokens/commit/5970c340e8524f73ec5a23e5f4992f3d73784510)) +* **data:** 3rd push for container.standard.text-alt and form.standard.border-alt ([1922f49](https://github.com/Sage/design-tokens/commit/1922f49773b0cdb0a85e6fd078220cf9dc234b06)) +* **data:** 3rd push for LOTS ([8dbd025](https://github.com/Sage/design-tokens/commit/8dbd0256307b7644e23a642b49f201bd8f13046d)) +* **data:** 3rd push on Add link.color.inverse.destructive tokens and profile.color tokens ([6cc9ee8](https://github.com/Sage/design-tokens/commit/6cc9ee89ce40eaa0ad9a2e0111cd7d50e8b19cb4)) +* **data:** 3rd push on button.color.standard ([7434427](https://github.com/Sage/design-tokens/commit/74344275e720b4834030824be8a9d5dc66db1939)) +* **data:** 3rd push on tab colours ([fe4609b](https://github.com/Sage/design-tokens/commit/fe4609b238b73c0d4d9bbed130cc900286663995)) +* **data:** Add base.interactive.danger.defaultAlt colour token ([60879b2](https://github.com/Sage/design-tokens/commit/60879b2b7565d5bfb9badd5dabd382e5d9f87b52)) +* **data:** add container.inverse.text-default token (for profile on dark surface) ([4e8af45](https://github.com/Sage/design-tokens/commit/4e8af45d43cf8c331710c5f9669e8d1e7b404dc4)) +* **data:** Add container.standard.bg-default colour token ([91314ce](https://github.com/Sage/design-tokens/commit/91314ce9805864576446a0abefbf8ccfcb94b881)) +* **data:** Add container.standard.text-alt and form.standard.border-alt colour tokens ([cd9025e](https://github.com/Sage/design-tokens/commit/cd9025e1c8eca3acc7a7b7ef4ea5cfe06aeb1570)) +* **data:** Add link.color.inverse.destructive tokens and profile.color tokens ([eaa4d12](https://github.com/Sage/design-tokens/commit/eaa4d123dc293ce834754e93567d6a0ccf7148c7)) +* **data:** Add new form.calendar.bg-default colour token. Re-order the form.standard tokens to be alphabetical ([b5dceaa](https://github.com/Sage/design-tokens/commit/b5dceaaf8cd82afc7a0041977bf6a959cc47c062)) +* **data:** Add origin.inverse.jade colour token, for use in links on dark bg ([37ea521](https://github.com/Sage/design-tokens/commit/37ea5216a6b8922a3a4399e461c40cac71440f5c)) +* **data:** adding component specific sizes ([72556d2](https://github.com/Sage/design-tokens/commit/72556d2ca1d7434099e365c4c47d59505657d8dd)) +* **data:** adding component-specific sizes ([e741c6b](https://github.com/Sage/design-tokens/commit/e741c6b98c853a3b384249567fe7919ee7373823)) +* **data:** adding generic global spacing tokens ([c5e375c](https://github.com/Sage/design-tokens/commit/c5e375c3f1c73803a634cfadc438449bd82b2053)) +* **data:** Another push on badge ([d17163c](https://github.com/Sage/design-tokens/commit/d17163ca5ec48abceb6208d994e2d1566907598f)) +* **data:** Change badge.color.typical to badge.color.standard.warning. And add badge.color.inverse tokens ([9fda233](https://github.com/Sage/design-tokens/commit/9fda23381831777c4a5a1250cc8a3d82bf0d7ab9)) +* **data:** Change button.color to button.color.standard ([8c42a1c](https://github.com/Sage/design-tokens/commit/8c42a1c7909036fc60a6b1024b64a5f94f68de39)) +* **data:** Change link.standard to link.typical. ([975f084](https://github.com/Sage/design-tokens/commit/975f08485d8a5503bb71bcedfc54f4534b5b9835)) +* **data:** changing name of typical global sizing to 'components' ([6be4a6c](https://github.com/Sage/design-tokens/commit/6be4a6ccabdd929c73d9e2ef5bd6d740ac90aaac)) +* **data:** changing naming to be more semantic for sizing ([053c6c4](https://github.com/Sage/design-tokens/commit/053c6c47f00a164966f010a515c555445b7a4d2d)) +* **data:** Fix for mid layer modifiers being broken ([0ed9a26](https://github.com/Sage/design-tokens/commit/0ed9a26994ca1666d2415e7a9bdad0e58a888043)) +* **data:** LOADS OF CHANGES, including ([56289d4](https://github.com/Sage/design-tokens/commit/56289d4b740892925cb3d4f94a2357d9f6e96923)) +* **data:** MANY CHANGES FOR BUTTONS ON DARK, including ([5e110c1](https://github.com/Sage/design-tokens/commit/5e110c1edfd20b81a899c2752ea1d261f057b966)) +* **data:** MANY ORIGIN and MIDLAYER changes including... ([068ec3d](https://github.com/Sage/design-tokens/commit/068ec3d623a20c5d0620f2e91b1357918b1840b6)) +* **data:** Not sure what changes ([41afdaf](https://github.com/Sage/design-tokens/commit/41afdaf8db25985fc8f90fb3d4f02ab54c61affa)) +* **data:** Remove obsolete descriptions from some nav tokens ([4029229](https://github.com/Sage/design-tokens/commit/40292299f7cdac013ead0b64cad6c3a56478d578)) +* **data:** removing redundant 0px sizing options from global. ([2b0e02f](https://github.com/Sage/design-tokens/commit/2b0e02f8a9db3630347e50a5feee4809762de18d)) +* **data:** rename tab.color.standard to tab.color.typical ([5c39855](https://github.com/Sage/design-tokens/commit/5c39855ce0bcd3ec9f5cfe7ae4de10fad56a7f77)) +* **data:** Reorder code to arrange folders in alphabetical order ([56b54f2](https://github.com/Sage/design-tokens/commit/56b54f2b9ef9299450156aebcb83dbb9658e8cf3)) +* **data:** Reset base.color.interactive.monochrome.inverse.hover back to previous value ([725f3e7](https://github.com/Sage/design-tokens/commit/725f3e764e6a7844e74b4f3624b548734b058f28)) +* **data:** Tiny tweak to value of origin red and Jade to be AAA accessible on FFFFFF bgs ([1a81540](https://github.com/Sage/design-tokens/commit/1a81540c9186620c06f3302d8e6c1d76c8b2ee6e)) +* **data:** update container.inverse token values ([0ac95c9](https://github.com/Sage/design-tokens/commit/0ac95c93bc8870b39f321eeca457c7ffe70ca805)) +* **data:** Update some nav colour token values to make all navigation components work better together ([3b11415](https://github.com/Sage/design-tokens/commit/3b11415f6ab79a56277304bd97f88af825d1bb2d)) +* **data:** Update value of link.inverse.label-readonly ([cc16ad1](https://github.com/Sage/design-tokens/commit/cc16ad11f4c3b2b38b0fb260f1bc0556fa062cce)) +* **data:** various inverse colour tokens added for jade green in origin, base, and link ([41ce987](https://github.com/Sage/design-tokens/commit/41ce98790a0e0ec6821094318f6fe3e898b8a2cd)) + +# [5.0.0-beta.10](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.9...v5.0.0-beta.10) (2024-01-10) + + +### Features + +* restructure output tokens and filter global and base ([32d43d7](https://github.com/Sage/design-tokens/commit/32d43d729ae83393660aa0b6da46bc71a05781aa)) + + +### BREAKING CHANGES + +* Restructure output tokens + +# [5.0.0-beta.9](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.8...v5.0.0-beta.9) (2024-01-10) + + +### Features + +* enable figma tokens to allow icon generation ([3c85bdb](https://github.com/Sage/design-tokens/commit/3c85bdb787bb78a92e89b4d1fa15c6c924176731)) + +# [5.0.0-beta.8](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.7...v5.0.0-beta.8) (2024-01-09) + + +### Features + +* include font and icon assets ([3b626fe](https://github.com/Sage/design-tokens/commit/3b626fe085d079604aa9d2d70f6010129e6284f8)) + +# [5.0.0-beta.7](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.6...v5.0.0-beta.7) (2024-01-09) + + +### Features + +* **data:** Add form.standard.bg-disabled colour token ([69c40d9](https://github.com/Sage/design-tokens/commit/69c40d904ac0a3823b9241ec3e7f1f42c3feb1ff)) + +# [5.0.0-beta.6](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.5...v5.0.0-beta.6) (2024-01-09) + + +### chore + +* update docs ([aecaa6e](https://github.com/Sage/design-tokens/commit/aecaa6e795f70bc9cbad208dc1d7ae1c55dfb15c)) + + +### BREAKING CHANGES + +* Force version bump on npmjs.com + +# [5.0.0-beta.5](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.4...v5.0.0-beta.5) (2024-01-09) + + +### chore + +* revert changelog ([ff63dba](https://github.com/Sage/design-tokens/commit/ff63dba285c8befaf4904fbee19e64677b814703)) + + +### Features + +* **data:** 2nd push on nav colour tokens ([ccbd0ee](https://github.com/Sage/design-tokens/commit/ccbd0eef178c1b0acf0f0281b608ed39157e95b4)) +* **data:** adding missing border size tokens and adding missing size tokens. ([fde80af](https://github.com/Sage/design-tokens/commit/fde80afab83010ca77ad37584a4b19064e700557)) +* **data:** changing component subfolder names to be more generic so that they better fit with their usecases. ([2a1b04b](https://github.com/Sage/design-tokens/commit/2a1b04b282b1ce3be75b0c2dfddd523545376bcd)) +* **data:** update badge.standard.label-default and add badge.standard.border-default ([eb25cd6](https://github.com/Sage/design-tokens/commit/eb25cd69b6a7d54ab038a8598f29a0115628d4e1)) +* **data:** update nav colours by moving the root colours to a menu folder, then adding 2 new colour tokens to nav.subtle and 2 new to the nav.harsh. ([9d5db77](https://github.com/Sage/design-tokens/commit/9d5db7782ba836cdb40b316c0e487a2ee79f5bce)) +* update css & scss component tokens to references ([855a9bd](https://github.com/Sage/design-tokens/commit/855a9bd194d8970beec74975588b5b355b44aa41)) + + +### BREAKING CHANGES + +* Force release after fixing tagging & version issue + +# [5.0.0-beta.4](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.3...v5.0.0-beta.4) (2024-01-08) + + +### Features + +* **data:** add XS font size for global component group of type sizes and also adding type sizes to descriptions ([bf46e85](https://github.com/Sage/design-tokens/commit/bf46e85c2df7c0f0df2caa1d13b883c750406306)) + +# [5.0.0-beta.3](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.2...v5.0.0-beta.3) (2024-01-08) + + +### Features + +* **data:** Adding descriptions to origin web fonts to explain what the clamp values are. Also added a subfolder for fonts to show these are for web only. ([449d0c3](https://github.com/Sage/design-tokens/commit/449d0c3b3c241fcd3087375d2a3da821bb145d51)) + +# [5.0.0-beta.2](https://github.com/Sage/design-tokens/compare/v5.0.0-beta.1...v5.0.0-beta.2) (2024-01-05) + + +### Features + +* **data:** 3rd push on datatable header tokens ([a602356](https://github.com/Sage/design-tokens/commit/a6023562d998a67a1cf9fa7dd8253894fa8822e3)) +* **data:** add bg-hover colour for button.standard.subtle ([a5ab7be](https://github.com/Sage/design-tokens/commit/a5ab7bed36bb117c89d3697b44cd0190969370fd)) +* **data:** add container.standard.border-alt token ([a76f601](https://github.com/Sage/design-tokens/commit/a76f601a300064321b7ea714dd6c64690a8775ed)) +* **data:** Change active standard primary button bg from dark green to black ([d776084](https://github.com/Sage/design-tokens/commit/d776084f15050b8e04943d9478d3fd8af97cd451)) +* **data:** finalising shadows for claire ([6127873](https://github.com/Sage/design-tokens/commit/612787342743fcf95366476f9b32de79b7a7b8e0)) +* **data:** fixing the mid layer bg standard tokens ([05d5a65](https://github.com/Sage/design-tokens/commit/05d5a65349a8e970e13b6ab5cb3174c22222e40f)) +* **data:** re-order button colour tokens to be alphabetical ([009d56d](https://github.com/Sage/design-tokens/commit/009d56d7be7cfcc56bced69e46de7a1ff31ff2a7)) +* **data:** rename datatable header tokens ([52ac948](https://github.com/Sage/design-tokens/commit/52ac9481270d17e6f8e13483a89774edc26be1a1)) +* **data:** Update values of container.interactive.border -enabled and -inactive, and add token for -alt ([7718785](https://github.com/Sage/design-tokens/commit/771878540acbf99744e1a67eace4737055fdb68f)) + +# [5.0.0-beta.1](https://github.com/Sage/design-tokens/compare/v4.34.0...v5.0.0-beta.1) (2024-01-05) + + +### chore + +* update docs ([0903b26](https://github.com/Sage/design-tokens/commit/0903b268998c2a5e461ce143ae4a5bd3c63e93cf)) + + +### Features + +* add component splits and docs pages ([19e3151](https://github.com/Sage/design-tokens/commit/19e315107627fcd03070ca43acebeaba145bcbde)) +* add multi mode and multi platform config ([3bb12c9](https://github.com/Sage/design-tokens/commit/3bb12c946107d21fb518aabd78db271bc63413d6)) +* add token splits for all formats ([2b2627e](https://github.com/Sage/design-tokens/commit/2b2627e4b1c6d572ed87780ba00d9a20636cb382)) +* **data:** ? ([e92c6fe](https://github.com/Sage/design-tokens/commit/e92c6fe8912f1ebb34f1f0613d1b99bc46a58b3e)) +* **data:** add alpha to inactive bg color. ([c4e266a](https://github.com/Sage/design-tokens/commit/c4e266a661ef3e24e25a27e46e85763fcf893652)) +* **data:** Add brightStorm to origin colors. Change value of neutral.inverse in midlayer. Change the status.inverse hover from contrastMore to contrastLess mix. Reorder status tokens alphabetically. Move switch tokens into components.form and add/edit tokens within that set. Reorder switch tokens alphabetically. ([73fdcc9](https://github.com/Sage/design-tokens/commit/73fdcc95968e8fe8741309c28e305dd935f31451)) +* **data:** add disabled colour tokens to link types ([8f16fb0](https://github.com/Sage/design-tokens/commit/8f16fb0fe8dbbd47db2c1eca93df7c81d5ec5caf)) +* **data:** add faint and whisper tokens to base.color.generic.bg.inverse ([0614adc](https://github.com/Sage/design-tokens/commit/0614adc47f57f41c177a9d75f764e77fda8af0f8)) +* **data:** Add form.switch label tokens ([a2faa49](https://github.com/Sage/design-tokens/commit/a2faa49568aeeff48beb2dfe792de7499d23bafc)) +* **data:** add progress.standard.label-alt token ([8f8bb43](https://github.com/Sage/design-tokens/commit/8f8bb4395221e136a10f9a1b7da0b6eb171a19cc)) +* **data:** added claire's latest treatment approach to mid layer and component layer for majors. ([9e181db](https://github.com/Sage/design-tokens/commit/9e181dbcc878563c20f2110007198bdb0f867d4c)) +* **data:** adding badge component-specific tokens ([77184ed](https://github.com/Sage/design-tokens/commit/77184ed47b7d08c61a622c36ea0960466cc3223a)) +* **data:** adding bar tokens to validation group. ([6d8cf25](https://github.com/Sage/design-tokens/commit/6d8cf25432cb71bc477672214f8d00528d3c42f8)) +* **data:** adding border active and activated tokens ([2f46dbc](https://github.com/Sage/design-tokens/commit/2f46dbc543f8d3b2d015bcce9412cb3b0f92c063)) +* **data:** adding calendar date states ([12535e8](https://github.com/Sage/design-tokens/commit/12535e883e45a846e34330207d86017976d2c397)) +* **data:** adding component specific tab / anchor nav tokens. ([6dde47d](https://github.com/Sage/design-tokens/commit/6dde47d104e84217dc8883ddd8dc1582afb864db)) +* **data:** adding content tokens back into mid layer ([9c1daa1](https://github.com/Sage/design-tokens/commit/9c1daa1e8afc632a5db5a6743f3d50bf3608b3f8)) +* **data:** adding correct prefixes to component specific tab file. ([1f7a284](https://github.com/Sage/design-tokens/commit/1f7a2842dcf365df9cd5c814d3001c9db17c498e)) +* **data:** adding data table header tokens ([a5995c7](https://github.com/Sage/design-tokens/commit/a5995c7722774b8ad07c3821dee48afade4c3db5)) +* **data:** adding fg tokens to status mid layer tokens. Also simplified origin tokens. ([25ca42e](https://github.com/Sage/design-tokens/commit/25ca42e4fd3591204c7147f3a5763fd06acbd50b)) +* **data:** adding focus group in component layer. ([386516a](https://github.com/Sage/design-tokens/commit/386516a9daf94f8f269dce4926a764a540a20471)) +* **data:** adding focus states to mid layer ([786a5f4](https://github.com/Sage/design-tokens/commit/786a5f4ee514679b018eccdf7286f122db31a344)) +* **data:** adding input hover token ([557b933](https://github.com/Sage/design-tokens/commit/557b93320f3ec9695ba44f64bf13b1c2977ec5c6)) +* **data:** adding input mid layer and adding 50% black component layer for inputs. ([b967bcc](https://github.com/Sage/design-tokens/commit/b967bcc55ea77d14e33105af6269eb5725b3aa77)) +* **data:** adding interactive container tokens. ([99db06b](https://github.com/Sage/design-tokens/commit/99db06bd80cef133acb81c444d4a5d75cce068d8)) +* **data:** adding latest typography tokens off the back of the collab work with Phillip. ([580362d](https://github.com/Sage/design-tokens/commit/580362dbf81895f7b78e50ac188f2ead5f7b4f28)) +* **data:** adding monochrome name instead of minor ([47df035](https://github.com/Sage/design-tokens/commit/47df03541b81120048e89fe22eca6bdb90d7384f)) +* **data:** adding rest of mid layer status colors ([cf1bcee](https://github.com/Sage/design-tokens/commit/cf1bcee6d9f2048a8d775fffc2bb563982c05423)) +* **data:** adding standard prefix to badge colors. ([38602c0](https://github.com/Sage/design-tokens/commit/38602c01c9fba1d00952913d6558f9def0cb920d)) +* **data:** adding subscription tile and selectable tile tokens ([af667e8](https://github.com/Sage/design-tokens/commit/af667e84d4761206cc5537a37b5d7743cd3ef61e)) +* **data:** adding subtle button set ([1ef50a9](https://github.com/Sage/design-tokens/commit/1ef50a9ad353d0ce29d87223e4d12d9a5d0eef7b)) +* **data:** adding tab tokens. ([2250dd1](https://github.com/Sage/design-tokens/commit/2250dd1af3023167b1b744229554ac131cec4f21)) +* **data:** adding text-alt for calendar form group ([79bc491](https://github.com/Sage/design-tokens/commit/79bc491d5c41cea6bde92a0ce43c78df1fd4b9a2)) +* **data:** adding text-enabled to form standard ([70a76a3](https://github.com/Sage/design-tokens/commit/70a76a3b021f414663fa4907f86cf5c97d4bb53d)) +* **data:** Adding the monochrome button group to mid layer. ([6f99d32](https://github.com/Sage/design-tokens/commit/6f99d327cc2bb83d86f846223f06580029b3038c)) +* **data:** adding upon the dataEntry mid layer ([d866094](https://github.com/Sage/design-tokens/commit/d866094689071cd699cb3effc5515ef18a55f1c3)) +* **data:** adding with active mid layer text and icon token ([9440760](https://github.com/Sage/design-tokens/commit/9440760aaceaeafd29a619b19f6293d265a79688)) +* **data:** adjusting all the light color hover colors to use the 16% modifier instead of 12%. ([9fbca96](https://github.com/Sage/design-tokens/commit/9fbca96af8ea1087d2d9103504ca7eb8de843bf2)) +* **data:** adjusting the disabled colors as per claire's exploration. ([228e79b](https://github.com/Sage/design-tokens/commit/228e79b4e658be4c8aee2ad813fc06b3f9919703)) +* **data:** alphabetising modifiers ([df4ebe2](https://github.com/Sage/design-tokens/commit/df4ebe29fee1335241b5b5e40d4b277c5b3067f4)) +* **data:** alphebatising major mid layer tokens ([cc4b6b4](https://github.com/Sage/design-tokens/commit/cc4b6b446d1e14dd8cd23771f5c5dcd13256e166)) +* **data:** applying changes to align with latest button proposal. ([0675f83](https://github.com/Sage/design-tokens/commit/0675f83f0c3a786eb3c9f78ef6332fc3e4e8c5df)) +* **data:** beginning to adjust button tokens based on claire's work. ([67e7cdf](https://github.com/Sage/design-tokens/commit/67e7cdf63196b208dc686391a0c18ef3ce2eebae)) +* **data:** changing bg-default on forms to enabled. ([a24e7eb](https://github.com/Sage/design-tokens/commit/a24e7ebce0710135c9dd81f1dc60b2f29123bb17)) +* **data:** changing the enabled to default suffix. ([8038e77](https://github.com/Sage/design-tokens/commit/8038e773f0944d826bd1097296720dcd721126ff)) +* **data:** changing the input mid layer group to 'data entry' ([f512ed9](https://github.com/Sage/design-tokens/commit/f512ed9e6b5db7333697c104cb348a42c755cd4c)) +* **data:** continuing to add our table tokens ([e0f040c](https://github.com/Sage/design-tokens/commit/e0f040c219ceac66c9a119a9091882fc6bc3773f)) +* **data:** Correct value of progress.standard.border-default token. ([7f89d50](https://github.com/Sage/design-tokens/commit/7f89d5016c6ebfdc8d3e48bfb50d7d1ac5d7997e)) +* **data:** decoupling interactive tokens with passive tokens. ([8c06478](https://github.com/Sage/design-tokens/commit/8c064789ee795b11b199540c18be7bc020cb41da)) +* **data:** first pass of nav tokens complete ([623b9a2](https://github.com/Sage/design-tokens/commit/623b9a224e3044303404130cd0d539821d645c26)) +* **data:** fixing hover token on action popover menu. ([b14dff4](https://github.com/Sage/design-tokens/commit/b14dff4960fef3c84a08bc36d5ae46eb4c1d9617)) +* **data:** fixing issues on the hover state for accordion ([8a18ff7](https://github.com/Sage/design-tokens/commit/8a18ff78a08158f416e5ae6121698cc5de9b4ecd)) +* **data:** fixing our current component-specific tokens ([751ff7a](https://github.com/Sage/design-tokens/commit/751ff7a7dc93e2c7752a31c6c90afccbb64e9c57)) +* **data:** fixing some border issues on container ([1b76cba](https://github.com/Sage/design-tokens/commit/1b76cba965521efd521ed49963c96b89dde6c4ef)) +* **data:** fixing some breakages on the mid layer from the modifier name changes ([fa1dfb7](https://github.com/Sage/design-tokens/commit/fa1dfb76fd60e23444035da3709bd1b2d06c0c86)) +* **data:** fixing some label colors as they were incorrectly pointing to validation colors on tabs. ([3c3844c](https://github.com/Sage/design-tokens/commit/3c3844c9c004e4ae2b8073a63f6db0158f233316)) +* **data:** made header alt token translucent ([35ba073](https://github.com/Sage/design-tokens/commit/35ba07311dc21004dd6e06db76de158cad04ae02)) +* **data:** merging global files into one file under modes parent group. ([37dfd51](https://github.com/Sage/design-tokens/commit/37dfd513a314176589ffff631b0dbf429092b17b)) +* **data:** new dataTable tokens ([df10943](https://github.com/Sage/design-tokens/commit/df10943fb5928b687a538eab3dfe81d0124994c0)) +* **data:** not sure what :o ([51ee117](https://github.com/Sage/design-tokens/commit/51ee117f2482d364ccb553d1232f3e73ee8d7544)) +* **data:** pushing up a first pass of data table. Tokens to be reviewed by claire ([ab0a831](https://github.com/Sage/design-tokens/commit/ab0a8312fa0b265e0f61740fee136bca09831892)) +* **data:** pushing up action component specific tokens. ([5807471](https://github.com/Sage/design-tokens/commit/5807471e01909a10ff99249384feafb6492c2f0b)) +* **data:** pushing up changes to mid layer structure ([8ce5288](https://github.com/Sage/design-tokens/commit/8ce5288d87f8221633caaac8b68207f298f41664)) +* **data:** pushing up everything i have before trying to consolidate content and backdrop. ([ea9e421](https://github.com/Sage/design-tokens/commit/ea9e421f67dd928972afaad59e89419787858db3)) +* **data:** pushing up fixed monochrome set for nav menus ([90fe25a](https://github.com/Sage/design-tokens/commit/90fe25aa3ce190c74993be3206e508e4b6344e54)) +* **data:** pushing up latest changes based on onboing discussions with claire ([cd36d67](https://github.com/Sage/design-tokens/commit/cd36d67aa3aae953963b938beabd54b3c643464c)) +* **data:** pushing up latest changes to hover colors. ([fc26be1](https://github.com/Sage/design-tokens/commit/fc26be1eed457611eac52795b0a198e51dfa02cc)) +* **data:** pushing up loatest changes to forms area ([0bfe337](https://github.com/Sage/design-tokens/commit/0bfe3375dd44918b9593f884ac6b63d06cb0794c)) +* **data:** pushing up progress component specific set ([b4704ff](https://github.com/Sage/design-tokens/commit/b4704fff4223d697cac2117ab51e6872714fe22f)) +* **data:** pushing up status tokens for pill hover states and message text. ([1d67f96](https://github.com/Sage/design-tokens/commit/1d67f96ccf6b77e0b0c883ec2310c83d30d38088)) +* **data:** Pushing up theme changes ([97777a7](https://github.com/Sage/design-tokens/commit/97777a7c90b6a5621e0f07f979d8f1df4839e02a)) +* **data:** remove dark mode token set ([4902084](https://github.com/Sage/design-tokens/commit/490208459681bbe204e2b7b4bb091596c25587a7)) +* **data:** remove Platform tokens ([4d3a016](https://github.com/Sage/design-tokens/commit/4d3a016084be39659f3d4f595764ba9d02a18363)) +* **data:** removing alhpa from the passive bgs and fgs. ([640edb2](https://github.com/Sage/design-tokens/commit/640edb2cab611f29d8810a0dfdb1a10e59af695f)) +* **data:** renamed minor set to monochrome and deleted monochrome set ([2937e93](https://github.com/Sage/design-tokens/commit/2937e93befab2f4ce074779d9a0f40f64da2c5a6)) +* **data:** reordering mid layer to be alphabetisised ([947f551](https://github.com/Sage/design-tokens/commit/947f551fca01864a291e19d94de7853a73993bd7)) +* **data:** Reorganise link token hierarchy. Rename action folder to link. Reorder several component token groups into alphabetical order ([2eccdc4](https://github.com/Sage/design-tokens/commit/2eccdc4ebe405418ba82196164b4727dcf45fbe3)) +* **data:** restructuring fedback mid layer tokens ([a0178bb](https://github.com/Sage/design-tokens/commit/a0178bb4ef818132c6847ce97fde0c6d15bba44c)) +* **data:** simplifying mid layer to consume less origins and instead rely on cascades ([beee9b7](https://github.com/Sage/design-tokens/commit/beee9b7a552636c8aa63d6289634d94416b73156)) +* **data:** simplifying passive tokens ([a8d5b04](https://github.com/Sage/design-tokens/commit/a8d5b041200efd72a3fcc87f16bad5054655ef2e)) +* **data:** tab fixes based off claire's comments ([554f7f5](https://github.com/Sage/design-tokens/commit/554f7f5fc7a04ccad36f261df6bafb6721c08332)) +* **data:** tidying up mid layer bgs and fgs and removing mixers from table layer ([cf74958](https://github.com/Sage/design-tokens/commit/cf74958b4fae81843b86ab7739815cf6bd392a4b)) +* **data:** tidying up the test tokens and applying them in the button specific area. ([3ddd6ff](https://github.com/Sage/design-tokens/commit/3ddd6ffd429ff7eed02c2a3d26f634ef0d692d80)) +* **data:** Update base.color.generic.fg.inverse token values for use in dataTable ([167086c](https://github.com/Sage/design-tokens/commit/167086cd64b96412b8a0e438e4032748a2553ee6)) +* **data:** Update neutral.inverse.hover value ([d2b3f78](https://github.com/Sage/design-tokens/commit/d2b3f78bcdc79436332239a66e41362efd155280)) +* **data:** updating feedback tokens to use brighter tones ([a15fe6c](https://github.com/Sage/design-tokens/commit/a15fe6c4f5a66003244a39f7875cbe59a648ba4a)) +* **data:** updating link colors to work on zebra stripes inside a table ([e6b7a63](https://github.com/Sage/design-tokens/commit/e6b7a6328d4b0d7bffec61b5d25a8381b6d81921)) +* **data:** updating mid layer to follow claire's latest hover and active state proposals ([74fe4ac](https://github.com/Sage/design-tokens/commit/74fe4acbb5a8744842f8bd941bbc226f2e9f4ea7)) +* **data:** updating mixers to match claire's 16, 32 and 48 percentages. ([e987c33](https://github.com/Sage/design-tokens/commit/e987c33b5baec9b9e874f5d53c886a638dcb6993)) +* **data:** updating table tokens based on latest agreed simplified colors ([73b3057](https://github.com/Sage/design-tokens/commit/73b3057be223aa74aec0dcf4715fd27ed5dce310)) +* **data:** updating terminology based on agreed on 'active' and 'actived' naming. ([25da648](https://github.com/Sage/design-tokens/commit/25da6484c2a58804dcefce082649e898e51503a6)) +* initial rewrite to new design token structure ([0213652](https://github.com/Sage/design-tokens/commit/02136522254baef0d06baeeab14987404c17955c)) +* remove duplicated/renamed files ([c304040](https://github.com/Sage/design-tokens/commit/c304040a1d688423ac9e8993cd40617cb8c5696d)) +* storybook POC ([60b2ab6](https://github.com/Sage/design-tokens/commit/60b2ab677c7f6689a9b829b770e6aa34c5f834b8)) +* testing with local sd-transforms package ([2fd96ed](https://github.com/Sage/design-tokens/commit/2fd96ed01b330986ba7899609b2b8cf11c8a6b9a)) +* tidy up build scripts ([cff0906](https://github.com/Sage/design-tokens/commit/cff0906782afbe23308e6515cbe94091174c8956)) +* update component split build script ([9f0c476](https://github.com/Sage/design-tokens/commit/9f0c47667964f74eabedc5376bcaff7baf45e589)) +* update to use colorModifier transform with options (requires changes to be merged within sd-transforms package) ([c82cdb8](https://github.com/Sage/design-tokens/commit/c82cdb8ac93f28bec9c18eed6dab64411727c298)) +* use updated sd-transforms package ([901bace](https://github.com/Sage/design-tokens/commit/901bace5fd269ca21139543beedaffb2f845137f)) + + +### BREAKING CHANGES + +* Restructure of design tokens and rewrite of build process + # [4.35.0](https://github.com/Sage/design-tokens/compare/v4.34.0...v4.35.0) (2024-05-24) diff --git a/docs/figma-github-workflow.md b/docs/figma-github-workflow.md deleted file mode 100644 index a7311c3d..00000000 --- a/docs/figma-github-workflow.md +++ /dev/null @@ -1,15 +0,0 @@ -# Figma Github Workflow - -Since Design Tokens are basically a design decisions, the ones that are responsible for taking them should be the Designers. - -We are fulfilling this idea by using [Figma Tokens plugin](https://www.figma.com/community/plugin/843461159747178978/Figma-Tokens). Thanks to this, Designers are able to maintain token names as well as references and values from the environment that they are most comfortable with. - -To store all their work, a plugin's feature called **Github Sync** is used. It allows designers to commit their changes directly to the github repository, straight from the simple Figma Tokens plugin UI. - -All Designer's work is kept at the `develop` branch. Merging this branch to master will cause a release of the new version of Design Tokens Library. - - -## Additional links: -[Figma Tokens plugin author's site](https://jansix.at/resources/figma-tokens) - -[Figma Tokens plugin documentation](https://docs.tokens.studio/) diff --git a/docs/pretransform-phase.md b/docs/pretransform-phase.md deleted file mode 100644 index 05849bcb..00000000 --- a/docs/pretransform-phase.md +++ /dev/null @@ -1,16 +0,0 @@ -# Pre-transform Phase - -Design Tokens JSON format provided by [Figma Tokens plugin](https://www.figma.com/community/plugin/843461159747178978/Figma-Tokens) does not meet our expectations. Plugin has few features that helps Designers maintenance of the tokens, however it produces values, that are not understandable tor `style-dictionary`, for example: -- Plugin accepts different formats of referencing - using `{}` brackets, and starting with dollar sign `$`, while `style-dictionary` uses only curly brackets. -- Plugin allows Designers to use references together with alpha channel, like `rgba($colors.major.500, 0.5)`, while `style-dictonary` does not understand such syntax. -- Complex tokens, like typography have multiple properties like `fontFamily`, `fontSize`, `fontWeight`. Using [token-transformer](https://www.npmjs.com/package/token-transformer) written by the author of the plugin creates separate token for each property, while what we consider typography token as a full definition of typography. - -Pre-transform phase was introduced to solve this issue. - -## omod -[Omod](https://www.npmjs.com/package/omod) package is used to transform the JSON object. Omod package has built in modifiers for figma tokens, so eventually the proper format is provided. Modifiers are pipeable, therefore you can add your own modifier if needed. - -It resolves all references, resolves and converts all color values to hex8 format and builds single `value` property for complex tokens. - -## Pretransformed tokens -Output file is written to `temp/tokens.json`. This is the entry point (not the `data/tokens.json`) for all further transforms. diff --git a/docs/tokens-documentation.md b/docs/tokens-documentation.md deleted file mode 100644 index c7ff1947..00000000 --- a/docs/tokens-documentation.md +++ /dev/null @@ -1,32 +0,0 @@ -# Design Tokens Documentation - -File: `./scripts/tokens-documentation.js` - -```bash -$ node ./scripts/tokens-documentation -``` - -```js -// script is executed on require, since it uses IIFE -require('./scripts/tokens-documentation') -``` - -## Disclaimer -Tokens documentation script generates documentation for all design tokens. It's necessary for documentation to be generated based on exat the same token names and values as the actual available ones in the library. That is why it uses style dictionary engine and our transforms underneath. Transformed data is then passed to the Handlebars engine and is transformed to proper HTML files. - -There are multiple files with different grouping of the tokens. -- General listing (`dist/docs/tokens/index.html`) - lists all available themes, categories and tokens. -- Theme listing (`dist/docs/tokens//index.html`) - lists all categories and tokens in given theme. -- Category listing (`dist/docs/tokens///index.html`) - lists all tokens in given category in given theme. - -Splitting documentation in separate files was introduced to help with embedding this documentation into iframes. - -There is also possible to add `?embedded=true` in address bar in web browser. This hides all unnecessary elements in the documentation. - -## Config - -| Name | Description | -|---|---| -| mainTemplate | Path to main template for documentation | -| docsPartials | Glob to partials for tokens documentation | -| docsDir | Output dir for generated documentation | diff --git a/docs/usage/README.md b/docs/usage/README.md new file mode 100644 index 00000000..31942fd7 --- /dev/null +++ b/docs/usage/README.md @@ -0,0 +1,26 @@ +# Usage + +The tokens are distributed in a number of different formats: + +- android +- css +- ios +- js +- json +- scss + +There is also an assets directory distributed for any physical files that are common across any of the above formats. + +Most of these formats distribute tokens exactly as provided to the build process and can therefore be used by consuming tools and processes accordingly. Any exceptions to this are listed below. + +## CSS + +Due to the nature of CSS and the requirement for browsers to consume styles directly an additional all.css file has been exposed in addition to the standard files provided that match other formats. This all.css file provides the following features: + +- Media query for large screen tokens +- Consolidation to remove any large screen tokens which are included and unchanged in the default small screen token set +- Formatter to rename light/dark mode token to add a suffix and include the light-dark function where ever used. This will allow consumers to switch to light/dark mode (or device specified) on a page or section level using the [`color-scheme`](https://web.dev/articles/light-dark) css property. + +See the associated index.html files provided in each of the distributed context directories for examples over how these tokens may be consumed. + +NOTE: Whilst there is good browser support for the [light-dark function](https://caniuse.com/?search=light-dark), you may want to use the [`postcss-preset-env`](https://www.npmjs.com/package/postcss-preset-env) postcss plugin alongside a [`.browserslistrc`](https://github.com/browserslist/browserslist) file to enhance support to the browsers required. diff --git a/docs/usage/index.html b/docs/usage/index.html new file mode 100644 index 00000000..566ae68a --- /dev/null +++ b/docs/usage/index.html @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + +

Light/dark mode demonstration

+
+

User selection

+

This section will change based on user preference.

+ + + +
+ +
+

Always dark

+

This section will always be dark.

+ +
+ +
+

Always light

+

This section will always be light.

+ +
+ +
+

Always inverted

+

This section will always be inverted.

+ +
+ + diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 154ad5aa..00000000 --- a/package-lock.json +++ /dev/null @@ -1,17886 +0,0 @@ -{ - "name": "@sage/design-tokens", - "version": "0.2.0", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "name": "@sage/design-tokens", - "version": "0.2.0", - "hasInstallScript": true, - "license": "SEE LICENSE IN https://github.com/Sage/design-tokens/blob/master/license", - "devDependencies": { - "@semantic-release/changelog": "^6.0.1", - "@semantic-release/commit-analyzer": "^9.0.2", - "@semantic-release/git": "^10.0.1", - "@semantic-release/github": "^8.0.2", - "@semantic-release/npm": "^9.0.0", - "@semantic-release/release-notes-generator": "^10.0.3", - "@types/glob": "^7.1.4", - "dotenv": "^16.0.0", - "eslint": "^7.25.0", - "eslint-config-standard": "^16.0.2", - "eslint-plugin-header": "^3.1.1", - "eslint-plugin-import": "^2.22.1", - "eslint-plugin-node": "^11.1.0", - "eslint-plugin-promise": "^4.3.1", - "fantasticon": "^1.2.3", - "figma-js": "^1.14.0", - "fs-extra": "^9.1.0", - "glob": "^7.1.7", - "handlebars": "^4.7.7", - "husky": "6", - "less": "^4.1.1", - "lodash": "^4.17.21", - "node-fetch": "2.6.7", - "node-typescript-compiler": "^2.2.1", - "nodemon": "^2.0.20", - "omod": "1.2.0", - "prettier": "^2.2.1", - "scss": "^0.2.4", - "style-dictionary": "^3.0.1", - "tinycolor2": "^1.4.2", - "typescript": "^4.6.2" - }, - "engines": { - "node": ">=16" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", - "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.16.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", - "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.16.10", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz", - "integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@eslint/eslintrc": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", - "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", - "dev": true, - "license": "MIT", - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.1.1", - "espree": "^7.3.0", - "globals": "^13.9.0", - "ignore": "^4.0.6", - "import-fresh": "^3.2.1", - "js-yaml": "^3.13.1", - "minimatch": "^3.0.4", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/@eslint/eslintrc/node_modules/ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/@eslint/eslintrc/node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@gar/promisify": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", - "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", - "dev": true, - "license": "MIT" - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@npmcli/fs": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", - "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "@gar/promisify": "^1.0.1", - "semver": "^7.3.5" - } - }, - "node_modules/@npmcli/move-file": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", - "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", - "dev": true, - "license": "MIT", - "dependencies": { - "mkdirp": "^1.0.4", - "rimraf": "^3.0.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@octokit/auth-token": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.5.0.tgz", - "integrity": "sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/types": "^6.0.3" - } - }, - "node_modules/@octokit/core": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/@octokit/core/-/core-3.5.1.tgz", - "integrity": "sha512-omncwpLVxMP+GLpLPgeGJBF6IWJFjXDS5flY5VbppePYX9XehevbDykRH9PdCdvqt9TS5AOTiDide7h0qrkHjw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/auth-token": "^2.4.4", - "@octokit/graphql": "^4.5.8", - "@octokit/request": "^5.6.0", - "@octokit/request-error": "^2.0.5", - "@octokit/types": "^6.0.3", - "before-after-hook": "^2.2.0", - "universal-user-agent": "^6.0.0" - } - }, - "node_modules/@octokit/endpoint": { - "version": "6.0.12", - "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.12.tgz", - "integrity": "sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/types": "^6.0.3", - "is-plain-object": "^5.0.0", - "universal-user-agent": "^6.0.0" - } - }, - "node_modules/@octokit/graphql": { - "version": "4.8.0", - "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.8.0.tgz", - "integrity": "sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/request": "^5.6.0", - "@octokit/types": "^6.0.3", - "universal-user-agent": "^6.0.0" - } - }, - "node_modules/@octokit/openapi-types": { - "version": "11.2.0", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-11.2.0.tgz", - "integrity": "sha512-PBsVO+15KSlGmiI8QAzaqvsNlZlrDlyAJYcrXBCvVUxCp7VnXjkwPoFHgjEJXx3WF9BAwkA6nfCUA7i9sODzKA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@octokit/plugin-paginate-rest": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.17.0.tgz", - "integrity": "sha512-tzMbrbnam2Mt4AhuyCHvpRkS0oZ5MvwwcQPYGtMv4tUa5kkzG58SVB0fcsLulOZQeRnOgdkZWkRUiyBlh0Bkyw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/types": "^6.34.0" - }, - "peerDependencies": { - "@octokit/core": ">=2" - } - }, - "node_modules/@octokit/plugin-request-log": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz", - "integrity": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==", - "dev": true, - "license": "MIT", - "peerDependencies": { - "@octokit/core": ">=3" - } - }, - "node_modules/@octokit/plugin-rest-endpoint-methods": { - "version": "5.13.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.13.0.tgz", - "integrity": "sha512-uJjMTkN1KaOIgNtUPMtIXDOjx6dGYysdIFhgA52x4xSadQCz3b/zJexvITDVpANnfKPW/+E0xkOvLntqMYpviA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/types": "^6.34.0", - "deprecation": "^2.3.1" - }, - "peerDependencies": { - "@octokit/core": ">=3" - } - }, - "node_modules/@octokit/request": { - "version": "5.6.3", - "resolved": "https://registry.npmjs.org/@octokit/request/-/request-5.6.3.tgz", - "integrity": "sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/endpoint": "^6.0.1", - "@octokit/request-error": "^2.1.0", - "@octokit/types": "^6.16.1", - "is-plain-object": "^5.0.0", - "node-fetch": "^2.6.7", - "universal-user-agent": "^6.0.0" - } - }, - "node_modules/@octokit/request-error": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.1.0.tgz", - "integrity": "sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/types": "^6.0.3", - "deprecation": "^2.0.0", - "once": "^1.4.0" - } - }, - "node_modules/@octokit/rest": { - "version": "18.12.0", - "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-18.12.0.tgz", - "integrity": "sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/core": "^3.5.1", - "@octokit/plugin-paginate-rest": "^2.16.8", - "@octokit/plugin-request-log": "^1.0.4", - "@octokit/plugin-rest-endpoint-methods": "^5.12.0" - } - }, - "node_modules/@octokit/types": { - "version": "6.34.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-6.34.0.tgz", - "integrity": "sha512-s1zLBjWhdEI2zwaoSgyOFoKSl109CUcVBCc7biPJ3aAf6LGLU6szDvi31JPU7bxfla2lqfhjbbg/5DdFNxOwHw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/openapi-types": "^11.2.0" - } - }, - "node_modules/@semantic-release/changelog": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@semantic-release/changelog/-/changelog-6.0.1.tgz", - "integrity": "sha512-FT+tAGdWHr0RCM3EpWegWnvXJ05LQtBkQUaQRIExONoXjVjLuOILNm4DEKNaV+GAQyJjbLRVs57ti//GypH6PA==", - "dev": true, - "dependencies": { - "@semantic-release/error": "^3.0.0", - "aggregate-error": "^3.0.0", - "fs-extra": "^9.0.0", - "lodash": "^4.17.4" - }, - "engines": { - "node": ">=14.17" - }, - "peerDependencies": { - "semantic-release": ">=18.0.0" - } - }, - "node_modules/@semantic-release/commit-analyzer": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-9.0.2.tgz", - "integrity": "sha512-E+dr6L+xIHZkX4zNMe6Rnwg4YQrWNXK+rNsvwOPpdFppvZO1olE2fIgWhv89TkQErygevbjsZFSIxp+u6w2e5g==", - "dev": true, - "dependencies": { - "conventional-changelog-angular": "^5.0.0", - "conventional-commits-filter": "^2.0.0", - "conventional-commits-parser": "^3.2.3", - "debug": "^4.0.0", - "import-from": "^4.0.0", - "lodash": "^4.17.4", - "micromatch": "^4.0.2" - }, - "engines": { - "node": ">=14.17" - }, - "peerDependencies": { - "semantic-release": ">=18.0.0-beta.1" - } - }, - "node_modules/@semantic-release/error": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-3.0.0.tgz", - "integrity": "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14.17" - } - }, - "node_modules/@semantic-release/git": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/@semantic-release/git/-/git-10.0.1.tgz", - "integrity": "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==", - "dev": true, - "dependencies": { - "@semantic-release/error": "^3.0.0", - "aggregate-error": "^3.0.0", - "debug": "^4.0.0", - "dir-glob": "^3.0.0", - "execa": "^5.0.0", - "lodash": "^4.17.4", - "micromatch": "^4.0.0", - "p-reduce": "^2.0.0" - }, - "engines": { - "node": ">=14.17" - }, - "peerDependencies": { - "semantic-release": ">=18.0.0" - } - }, - "node_modules/@semantic-release/github": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-8.0.2.tgz", - "integrity": "sha512-wIbfhOeuxlYzMTjtSAa2xgr54n7ZuPAS2gadyTWBpUt2PNAPgla7A6XxCXJnaKPgfVF0iFfSk3B+KlVKk6ByVg==", - "dev": true, - "dependencies": { - "@octokit/rest": "^18.0.0", - "@semantic-release/error": "^2.2.0", - "aggregate-error": "^3.0.0", - "bottleneck": "^2.18.1", - "debug": "^4.0.0", - "dir-glob": "^3.0.0", - "fs-extra": "^10.0.0", - "globby": "^11.0.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "issue-parser": "^6.0.0", - "lodash": "^4.17.4", - "mime": "^3.0.0", - "p-filter": "^2.0.0", - "p-retry": "^4.0.0", - "url-join": "^4.0.0" - }, - "engines": { - "node": ">=14.17" - }, - "peerDependencies": { - "semantic-release": ">=18.0.0-beta.1" - } - }, - "node_modules/@semantic-release/github/node_modules/@semantic-release/error": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-2.2.0.tgz", - "integrity": "sha512-9Tj/qn+y2j+sjCI3Jd+qseGtHjOAeg7dU2/lVcqIQ9TV3QDaDXDYXcoOHU+7o2Hwh8L8ymL4gfuO7KxDs3q2zg==", - "dev": true, - "license": "MIT" - }, - "node_modules/@semantic-release/github/node_modules/fs-extra": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.1.tgz", - "integrity": "sha512-NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag==", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@semantic-release/npm": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-9.0.1.tgz", - "integrity": "sha512-I5nVZklxBzfMFwemhRNbSrkiN/dsH3c7K9+KSk6jUnq0rdLFUuJt7EBsysq4Ir3moajQgFkfEryEHPqiKJj20g==", - "dev": true, - "dependencies": { - "@semantic-release/error": "^3.0.0", - "aggregate-error": "^3.0.0", - "execa": "^5.0.0", - "fs-extra": "^10.0.0", - "lodash": "^4.17.15", - "nerf-dart": "^1.0.0", - "normalize-url": "^6.0.0", - "npm": "^8.3.0", - "rc": "^1.2.8", - "read-pkg": "^5.0.0", - "registry-auth-token": "^4.0.0", - "semver": "^7.1.2", - "tempy": "^1.0.0" - }, - "engines": { - "node": ">=16 || ^14.17" - }, - "peerDependencies": { - "semantic-release": ">=19.0.0" - } - }, - "node_modules/@semantic-release/npm/node_modules/fs-extra": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.1.tgz", - "integrity": "sha512-NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag==", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@semantic-release/release-notes-generator": { - "version": "10.0.3", - "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-10.0.3.tgz", - "integrity": "sha512-k4x4VhIKneOWoBGHkx0qZogNjCldLPRiAjnIpMnlUh6PtaWXp/T+C9U7/TaNDDtgDa5HMbHl4WlREdxHio6/3w==", - "dev": true, - "dependencies": { - "conventional-changelog-angular": "^5.0.0", - "conventional-changelog-writer": "^5.0.0", - "conventional-commits-filter": "^2.0.0", - "conventional-commits-parser": "^3.2.3", - "debug": "^4.0.0", - "get-stream": "^6.0.0", - "import-from": "^4.0.0", - "into-stream": "^6.0.0", - "lodash": "^4.17.4", - "read-pkg-up": "^7.0.0" - }, - "engines": { - "node": ">=14.17" - }, - "peerDependencies": { - "semantic-release": ">=18.0.0-beta.1" - } - }, - "node_modules/@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/@types/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/minimatch": "*", - "@types/node": "*" - } - }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/minimatch": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", - "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/minimist": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", - "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/node": { - "version": "17.0.14", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/normalize-package-data": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", - "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", - "dev": true, - "peer": true - }, - "node_modules/@types/retry": { - "version": "0.12.1", - "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.1.tgz", - "integrity": "sha512-xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g==", - "dev": true, - "license": "MIT" - }, - "node_modules/@xmldom/xmldom": { - "version": "0.7.9", - "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.9.tgz", - "integrity": "sha512-yceMpm/xd4W2a85iqZyO09gTnHvXF6pyiWjD2jcOJs7hRoZtNNOO1eJlhHj1ixA+xip2hOyGn+LgcvLCMo5zXA==", - "dev": true, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true, - "license": "ISC" - }, - "node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "license": "MIT", - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/agentkeepalive": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz", - "integrity": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==", - "dev": true, - "license": "MIT", - "dependencies": { - "debug": "^4.1.0", - "depd": "^1.1.2", - "humanize-ms": "^1.2.1" - }, - "engines": { - "node": ">= 8.0.0" - } - }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "license": "MIT", - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ansi-colors": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", - "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/ansi-escapes": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-5.0.0.tgz", - "integrity": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==", - "dev": true, - "peer": true, - "dependencies": { - "type-fest": "^1.0.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-escapes/node_modules/type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", - "dev": true, - "peer": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/ansicolors": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz", - "integrity": "sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk=", - "dev": true, - "peer": true - }, - "node_modules/anymatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", - "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", - "dev": true, - "license": "ISC", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/are-we-there-yet": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.0.tgz", - "integrity": "sha512-0GWpv50YSOcLXaN6/FAKY3vfRbllXWV2xvfA/oKJF8pzFhWXPV+yjhJXDBbjscDYowv7Yw1A3uigpzn5iEGTyw==", - "dev": true, - "license": "ISC", - "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" - } - }, - "node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "license": "MIT", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/argv-formatter": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/argv-formatter/-/argv-formatter-1.0.0.tgz", - "integrity": "sha1-oMoMvCmltz6Dbuvhy/bF4OTrgvk=", - "dev": true, - "peer": true - }, - "node_modules/array-ify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", - "integrity": "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=", - "dev": true, - "license": "MIT" - }, - "node_modules/array-includes": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz", - "integrity": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1", - "get-intrinsic": "^1.1.1", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/array.prototype.flat": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz", - "integrity": "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/axios": { - "version": "0.21.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", - "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", - "dev": true, - "license": "MIT", - "dependencies": { - "follow-redirects": "^1.14.0" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true, - "license": "MIT" - }, - "node_modules/before-after-hook": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.2.tgz", - "integrity": "sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==", - "dev": true, - "license": "Apache-2.0" - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "file-uri-to-path": "1.0.0" - } - }, - "node_modules/bottleneck": { - "version": "2.19.5", - "resolved": "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz", - "integrity": "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==", - "dev": true, - "license": "MIT" - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "license": "MIT", - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/bufferstreams": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bufferstreams/-/bufferstreams-3.0.0.tgz", - "integrity": "sha512-Qg0ggJUWJq90vtg4lDsGN9CDWvzBMQxhiEkSOD/sJfYt6BLect3eV1/S6K7SCSKJ34n60rf6U5eUPmQENVE4UA==", - "dev": true, - "license": "MIT", - "dependencies": { - "readable-stream": "^3.4.0" - }, - "engines": { - "node": ">=8.12.0" - } - }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/camel-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", - "dev": true, - "license": "MIT", - "dependencies": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" - } - }, - "node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/camelcase-keys": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", - "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", - "dev": true, - "license": "MIT", - "dependencies": { - "camelcase": "^5.3.1", - "map-obj": "^4.0.0", - "quick-lru": "^4.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/capital-case": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", - "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", - "dev": true, - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "node_modules/cardinal": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz", - "integrity": "sha1-fMEFXYItISlU0HsIXeolHMe8VQU=", - "dev": true, - "peer": true, - "dependencies": { - "ansicolors": "~0.3.2", - "redeyed": "~2.1.0" - }, - "bin": { - "cdl": "bin/cdl.js" - } - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/change-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", - "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", - "dev": true, - "license": "MIT", - "dependencies": { - "camel-case": "^4.1.2", - "capital-case": "^1.0.4", - "constant-case": "^3.0.4", - "dot-case": "^3.0.4", - "header-case": "^2.0.4", - "no-case": "^3.0.4", - "param-case": "^3.0.4", - "pascal-case": "^3.1.2", - "path-case": "^3.0.4", - "sentence-case": "^3.0.4", - "snake-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=10" - } - }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/cli-color": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/cli-color/-/cli-color-2.0.1.tgz", - "integrity": "sha512-eBbxZF6fqPUNnf7CLAFOersUnyYzv83tHFLSlts+OAHsNendaqv2tHCq+/MO+b3Y+9JeoUlIvobyxG/Z8GNeOg==", - "dev": true, - "dependencies": { - "d": "^1.0.1", - "es5-ext": "^0.10.53", - "es6-iterator": "^2.0.3", - "memoizee": "^0.4.15", - "timers-ext": "^0.1.7" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/cli-color/node_modules/memoizee": { - "version": "0.4.15", - "resolved": "https://registry.npmjs.org/memoizee/-/memoizee-0.4.15.tgz", - "integrity": "sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==", - "dev": true, - "dependencies": { - "d": "^1.0.1", - "es5-ext": "^0.10.53", - "es6-weak-map": "^2.0.3", - "event-emitter": "^0.3.5", - "is-promise": "^2.2.2", - "lru-queue": "^0.1.0", - "next-tick": "^1.1.0", - "timers-ext": "^0.1.7" - } - }, - "node_modules/cli-color/node_modules/next-tick": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", - "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", - "dev": true - }, - "node_modules/cli-table3": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.1.tgz", - "integrity": "sha512-w0q/enDHhPLq44ovMGdQeeDLvwxwavsJX7oQGYt/LrBlYsyaxyDnp6z3QzFut/6kLLKnlcUVJLrpB7KBfgG/RA==", - "dev": true, - "peer": true, - "dependencies": { - "string-width": "^4.2.0" - }, - "engines": { - "node": "10.* || >= 12.*" - }, - "optionalDependencies": { - "colors": "1.4.0" - } - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "dev": true, - "license": "MIT" - }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true, - "license": "ISC", - "bin": { - "color-support": "bin.js" - } - }, - "node_modules/colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", - "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", - "dev": true, - "optional": true, - "peer": true, - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/commander": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", - "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/compare-func": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", - "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-ify": "^1.0.0", - "dot-prop": "^5.1.0" - } - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true, - "license": "MIT" - }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", - "dev": true, - "license": "ISC" - }, - "node_modules/constant-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", - "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case": "^2.0.2" - } - }, - "node_modules/conventional-changelog-angular": { - "version": "5.0.13", - "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz", - "integrity": "sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==", - "dev": true, - "license": "ISC", - "dependencies": { - "compare-func": "^2.0.0", - "q": "^1.5.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/conventional-changelog-writer": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz", - "integrity": "sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "conventional-commits-filter": "^2.0.7", - "dateformat": "^3.0.0", - "handlebars": "^4.7.7", - "json-stringify-safe": "^5.0.1", - "lodash": "^4.17.15", - "meow": "^8.0.0", - "semver": "^6.0.0", - "split": "^1.0.0", - "through2": "^4.0.0" - }, - "bin": { - "conventional-changelog-writer": "cli.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/conventional-changelog-writer/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/conventional-commits-filter": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz", - "integrity": "sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==", - "dev": true, - "license": "MIT", - "dependencies": { - "lodash.ismatch": "^4.4.0", - "modify-values": "^1.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/conventional-commits-parser": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz", - "integrity": "sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-text-path": "^1.0.1", - "JSONStream": "^1.0.4", - "lodash": "^4.17.15", - "meow": "^8.0.0", - "split2": "^3.0.0", - "through2": "^4.0.0" - }, - "bin": { - "conventional-commits-parser": "cli.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/copy-anything": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", - "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-what": "^3.14.1" - }, - "funding": { - "url": "https://github.com/sponsors/mesqueeb" - } - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/cosmiconfig": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", - "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", - "dev": true, - "peer": true, - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/crypto-random-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", - "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/cubic2quad": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/cubic2quad/-/cubic2quad-1.2.1.tgz", - "integrity": "sha512-wT5Y7mO8abrV16gnssKdmIhIbA9wSkeMzhh27jAguKrV82i24wER0vL5TGhUJ9dbJNDcigoRZ0IAHFEEEI4THQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/d": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", - "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", - "dev": true, - "dependencies": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" - } - }, - "node_modules/dateformat": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz", - "integrity": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": "*" - } - }, - "node_modules/debug": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", - "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/decamelize-keys": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz", - "integrity": "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=", - "dev": true, - "license": "MIT", - "dependencies": { - "decamelize": "^1.1.0", - "map-obj": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/decamelize-keys/node_modules/map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "object-keys": "^1.0.12" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/del": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/del/-/del-6.0.0.tgz", - "integrity": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "globby": "^11.0.1", - "graceful-fs": "^4.2.4", - "is-glob": "^4.0.1", - "is-path-cwd": "^2.2.0", - "is-path-inside": "^3.0.2", - "p-map": "^4.0.0", - "rimraf": "^3.0.2", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/del/node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", - "dev": true, - "license": "MIT" - }, - "node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/deprecation": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", - "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", - "dev": true, - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/dot-prop": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", - "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-obj": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/dotenv": { - "version": "16.0.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.0.tgz", - "integrity": "sha512-qD9WU0MPM4SWLPJy/r2Be+2WgQj8plChsyrCNQzW/0WjvcJQiKQJ9mH3ZgB3fxbUUxgc/11ZJ0Fi5KiimWGz2Q==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/duplexer2": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", - "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", - "dev": true, - "peer": true, - "dependencies": { - "readable-stream": "^2.0.2" - } - }, - "node_modules/duplexer2/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, - "peer": 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/duplexer2/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, - "peer": true - }, - "node_modules/duplexer2/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, - "peer": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true, - "license": "MIT" - }, - "node_modules/encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "iconv-lite": "^0.6.2" - } - }, - "node_modules/encoding/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-colors": "^4.1.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/env-ci": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/env-ci/-/env-ci-5.5.0.tgz", - "integrity": "sha512-o0JdWIbOLP+WJKIUt36hz1ImQQFuN92nhsfTkHHap+J8CiI8WgGpH/a9jEGHh4/TU5BUUGjlnKXNoDb57+ne+A==", - "dev": true, - "peer": true, - "dependencies": { - "execa": "^5.0.0", - "fromentries": "^1.3.2", - "java-properties": "^1.0.0" - }, - "engines": { - "node": ">=10.17" - } - }, - "node_modules/env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", - "dev": true, - "license": "MIT" - }, - "node_modules/errno": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", - "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "prr": "~1.0.1" - }, - "bin": { - "errno": "cli.js" - } - }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-arrayish": "^0.2.1" - } - }, - "node_modules/es-abstract": { - "version": "1.19.1", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", - "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "get-symbol-description": "^1.0.0", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "internal-slot": "^1.0.3", - "is-callable": "^1.2.4", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.1", - "is-string": "^1.0.7", - "is-weakref": "^1.0.1", - "object-inspect": "^1.11.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es5-ext": { - "version": "0.10.53", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", - "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", - "dev": true, - "dependencies": { - "es6-iterator": "~2.0.3", - "es6-symbol": "~3.1.3", - "next-tick": "~1.0.0" - } - }, - "node_modules/es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", - "dev": true, - "dependencies": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" - } - }, - "node_modules/es6-symbol": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", - "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", - "dev": true, - "dependencies": { - "d": "^1.0.1", - "ext": "^1.1.2" - } - }, - "node_modules/es6-weak-map": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", - "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", - "dev": true, - "dependencies": { - "d": "1", - "es5-ext": "^0.10.46", - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.1" - } - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true, - "peer": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/eslint": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.25.0.tgz", - "integrity": "sha512-TVpSovpvCNpLURIScDRB6g5CYu/ZFq9GfX2hLNIV4dSBKxIWojeDODvYl3t0k0VtMxYeR8OXPCFE5+oHMlGfhw==", - "dev": true, - "dependencies": { - "@babel/code-frame": "7.12.11", - "@eslint/eslintrc": "^0.4.0", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.0.1", - "doctrine": "^3.0.0", - "enquirer": "^2.3.5", - "eslint-scope": "^5.1.1", - "eslint-utils": "^2.1.0", - "eslint-visitor-keys": "^2.0.0", - "espree": "^7.3.1", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "file-entry-cache": "^6.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^5.0.0", - "globals": "^13.6.0", - "ignore": "^4.0.6", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "js-yaml": "^3.13.1", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash": "^4.17.21", - "minimatch": "^3.0.4", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "progress": "^2.0.0", - "regexpp": "^3.1.0", - "semver": "^7.2.1", - "strip-ansi": "^6.0.0", - "strip-json-comments": "^3.1.0", - "table": "^6.0.4", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-config-standard": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-16.0.3.tgz", - "integrity": "sha512-x4fmJL5hGqNJKGHSjnLdgA6U6h1YW/G2dW9fA+cyVur4SK6lyue8+UgNKWlZtUDTXvgKDD/Oa3GQjmB5kjtVvg==", - "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" - } - ], - "license": "MIT", - "peerDependencies": { - "eslint": "^7.12.1", - "eslint-plugin-import": "^2.22.1", - "eslint-plugin-node": "^11.1.0", - "eslint-plugin-promise": "^4.2.1 || ^5.0.0" - } - }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", - "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", - "dev": true, - "license": "MIT", - "dependencies": { - "debug": "^3.2.7", - "resolve": "^1.20.0" - } - }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-module-utils": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz", - "integrity": "sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "debug": "^3.2.7", - "find-up": "^2.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-module-utils/node_modules/find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-module-utils/node_modules/locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-module-utils/node_modules/p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-try": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-module-utils/node_modules/p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-module-utils/node_modules/p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-module-utils/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-plugin-es": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz", - "integrity": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "eslint-utils": "^2.0.0", - "regexpp": "^3.0.0" - }, - "engines": { - "node": ">=8.10.0" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=4.19.1" - } - }, - "node_modules/eslint-plugin-header": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-header/-/eslint-plugin-header-3.1.1.tgz", - "integrity": "sha512-9vlKxuJ4qf793CmeeSrZUvVClw6amtpghq3CuWcB5cUNnWHQhgcqy5eF8oVKFk1G3Y/CbchGfEaw3wiIJaNmVg==", - "dev": true, - "license": "MIT", - "peerDependencies": { - "eslint": ">=7.7.0" - } - }, - "node_modules/eslint-plugin-import": { - "version": "2.25.4", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.25.4.tgz", - "integrity": "sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-includes": "^3.1.4", - "array.prototype.flat": "^1.2.5", - "debug": "^2.6.9", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-module-utils": "^2.7.2", - "has": "^1.0.3", - "is-core-module": "^2.8.0", - "is-glob": "^4.0.3", - "minimatch": "^3.0.4", - "object.values": "^1.1.5", - "resolve": "^1.20.0", - "tsconfig-paths": "^3.12.0" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" - } - }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-import/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true, - "license": "MIT" - }, - "node_modules/eslint-plugin-node": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz", - "integrity": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==", - "dev": true, - "license": "MIT", - "dependencies": { - "eslint-plugin-es": "^3.0.0", - "eslint-utils": "^2.0.0", - "ignore": "^5.1.1", - "minimatch": "^3.0.4", - "resolve": "^1.10.1", - "semver": "^6.1.0" - }, - "engines": { - "node": ">=8.10.0" - }, - "peerDependencies": { - "eslint": ">=5.16.0" - } - }, - "node_modules/eslint-plugin-node/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/eslint-plugin-promise": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-4.3.1.tgz", - "integrity": "sha512-bY2sGqyptzFBDLh/GMbAxfdJC+b0f23ME63FOE4+Jao0oZ3E1LEwFtWJX/1pGMJLiTtrSSern2CRM/g+dfc0eQ==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=6" - } - }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", - "dev": true, - "license": "MIT", - "dependencies": { - "eslint-visitor-keys": "^1.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } - }, - "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=10" - } - }, - "node_modules/eslint/node_modules/@babel/code-frame": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", - "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.10.4" - } - }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "license": "MIT" - }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/eslint/node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/espree": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", - "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "acorn": "^7.4.0", - "acorn-jsx": "^5.3.1", - "eslint-visitor-keys": "^1.3.0" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/espree/node_modules/eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=4" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true, - "license": "BSD-2-Clause", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esquery/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/event-emitter": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", - "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=", - "dev": true, - "dependencies": { - "d": "1", - "es5-ext": "~0.10.14" - } - }, - "node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "license": "MIT", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/ext": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz", - "integrity": "sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==", - "dev": true, - "license": "ISC", - "dependencies": { - "type": "^2.5.0" - } - }, - "node_modules/ext/node_modules/type": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/type/-/type-2.6.0.tgz", - "integrity": "sha512-eiDBDOmkih5pMbo9OqsqPRGMljLodLcwd5XD5JbtNB0o89xZAwynY9EdCDsJU7LtcVCClu9DvM7/0Ep1hYX3EQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/fantasticon": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/fantasticon/-/fantasticon-1.2.3.tgz", - "integrity": "sha512-VoPXI8+wbLq4qooK2LAFRcqKtOCR20+InF/Io/9I1kLp3IT+LwqJgeFijFvp9a3HRZptfCAxNvazoVHn4kihzQ==", - "dev": true, - "dependencies": { - "change-case": "^4.1.2", - "cli-color": "^2.0.0", - "commander": "^7.2.0", - "glob": "^7.2.0", - "handlebars": "^4.7.7", - "slugify": "^1.6.0", - "svg2ttf": "^6.0.3", - "svgicons2svgfont": "^10.0.3", - "ttf2eot": "^2.0.0", - "ttf2woff": "^3.0.0", - "ttf2woff2": "^4.0.4" - }, - "bin": { - "fantasticon": "bin/fantasticon" - }, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/fantasticon/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true, - "license": "MIT" - }, - "node_modules/fast-glob": { - "version": "3.2.11", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", - "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true, - "license": "MIT" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", - "dev": true, - "license": "MIT" - }, - "node_modules/fastq": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", - "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", - "dev": true, - "license": "ISC", - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/figma-js": { - "version": "1.14.0", - "resolved": "https://registry.npmjs.org/figma-js/-/figma-js-1.14.0.tgz", - "integrity": "sha512-XqUmDmGj8tJkjNEuSoKWke0dzbRedya0jc0Ob3lr/g0pLeQI5TtMmz5zpsFLw4KRRtbDD5V/J2MRJhm9nvRS+A==", - "dev": true, - "dependencies": { - "axios": "^0.21.1" - }, - "engines": { - "node": ">=8.9" - } - }, - "node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dev": true, - "peer": true, - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "license": "MIT", - "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "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, - "license": "MIT" - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-versions": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-4.0.0.tgz", - "integrity": "sha512-wgpWy002tA+wgmO27buH/9KzyEOQnKsG/R0yrcjPT9BOFm0zRBVQbZ95nRGXWMywS8YR5knRbpohio0bcJABxQ==", - "dev": true, - "peer": true, - "dependencies": { - "semver-regex": "^3.1.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", - "dev": true, - "license": "MIT", - "dependencies": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/flatted": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz", - "integrity": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==", - "dev": true, - "license": "ISC" - }, - "node_modules/follow-redirects": { - "version": "1.14.9", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz", - "integrity": "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "license": "MIT", - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", - "dev": true, - "license": "MIT", - "dependencies": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" - } - }, - "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, - "license": "MIT", - "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, - "license": "MIT" - }, - "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, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/fromentries": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz", - "integrity": "sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==", - "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" - } - ], - "peer": true - }, - "node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true, - "license": "ISC" - }, - "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true, - "license": "MIT" - }, - "node_modules/functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", - "dev": true, - "license": "MIT" - }, - "node_modules/gauge": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.2.tgz", - "integrity": "sha512-aSPRm2CvA9R8QyU5eXMFPd+cYkyxLsXHd2l5/FOH2V/eml//M04G6KZOmTap07O1PvEwNcl2NndyLfK8g3QrKA==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1", - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.3", - "console-control-strings": "^1.1.0", - "has-unicode": "^2.0.1", - "signal-exit": "^3.0.7", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.5" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" - } - }, - "node_modules/geometry-interfaces": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/geometry-interfaces/-/geometry-interfaces-1.1.4.tgz", - "integrity": "sha512-qD6OdkT6NcES9l4Xx3auTpwraQruU7dARbQPVO71MKvkGYw5/z/oIiGymuFXrRaEQa5Y67EIojUpaLeGEa5hGA==", - "dev": true, - "license": "MIT" - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true, - "license": "ISC", - "peer": true, - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/git-log-parser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/git-log-parser/-/git-log-parser-1.2.0.tgz", - "integrity": "sha1-LmpMGxP8AAKCB7p5WnrDFme5/Uo=", - "dev": true, - "peer": true, - "dependencies": { - "argv-formatter": "~1.0.0", - "spawn-error-forwarder": "~1.0.0", - "split2": "~1.0.0", - "stream-combiner2": "~1.1.1", - "through2": "~2.0.0", - "traverse": "~0.6.6" - } - }, - "node_modules/git-log-parser/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, - "peer": 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/git-log-parser/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, - "peer": true - }, - "node_modules/git-log-parser/node_modules/split2": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/split2/-/split2-1.0.0.tgz", - "integrity": "sha1-UuLiIdiMdfmnP5BVbiY/+WdysxQ=", - "dev": true, - "peer": true, - "dependencies": { - "through2": "~2.0.0" - } - }, - "node_modules/git-log-parser/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, - "peer": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/git-log-parser/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "peer": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", - "dev": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/globals": { - "version": "13.12.1", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.12.1.tgz", - "integrity": "sha512-317dFlgY2pdJZ9rspXDks7073GpDmXdfbM3vYYp0HAMKGDh1FfWPleI2ljVNLQX5M5lXcAslTcPTrOrMEFOjyw==", - "dev": true, - "license": "MIT", - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globals/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.9", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz", - "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/handlebars": { - "version": "4.7.7", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", - "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", - "dev": true, - "license": "MIT", - "dependencies": { - "minimist": "^1.2.5", - "neo-async": "^2.6.0", - "source-map": "^0.6.1", - "wordwrap": "^1.0.0" - }, - "bin": { - "handlebars": "bin/handlebars" - }, - "engines": { - "node": ">=0.4.7" - }, - "optionalDependencies": { - "uglify-js": "^3.1.4" - } - }, - "node_modules/hard-rejection": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", - "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-bigints": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", - "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/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, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", - "dev": true, - "license": "ISC" - }, - "node_modules/header-case": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", - "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "capital-case": "^1.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/hook-std": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hook-std/-/hook-std-2.0.0.tgz", - "integrity": "sha512-zZ6T5WcuBMIUVh49iPQS9t977t7C0l7OtHrpeMb5uk48JdflRX0NSFvCekfYNmGQETnLq9W/isMyHl69kxGi8g==", - "dev": true, - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true, - "license": "ISC" - }, - "node_modules/http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true - }, - "node_modules/http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", - "dev": true, - "license": "MIT", - "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/https-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", - "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", - "dev": true, - "license": "MIT", - "dependencies": { - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "^2.0.0" - } - }, - "node_modules/husky": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/husky/-/husky-6.0.0.tgz", - "integrity": "sha512-SQS2gDTB7tBN486QSoKPKQItZw97BMOd+Kdb6ghfpBc0yXyzrddI0oDV5MkDAbuB4X2mO3/nj60TRMcYxwzZeQ==", - "dev": true, - "license": "MIT", - "bin": { - "husky": "lib/bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/typicode" - } - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/ignore-by-default": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", - "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", - "dev": true - }, - "node_modules/image-size": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", - "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", - "dev": true, - "license": "MIT", - "optional": true, - "bin": { - "image-size": "bin/image-size.js" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "license": "MIT", - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/import-fresh/node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/import-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-from/-/import-from-4.0.0.tgz", - "integrity": "sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==", - "dev": true, - "engines": { - "node": ">=12.2" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "dev": true, - "license": "ISC" - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, - "license": "ISC", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true, - "license": "ISC" - }, - "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, - "license": "ISC" - }, - "node_modules/internal-slot": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", - "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", - "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.1.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/into-stream": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-6.0.0.tgz", - "integrity": "sha512-XHbaOAvP+uFKUFsOgoNPRjLkwB+I22JFPFe5OjTkQ0nwgj6+pSjb4NmB6VMxaPshLiOf+zcpOCBQuLwC1KHhZA==", - "dev": true, - "license": "MIT", - "dependencies": { - "from2": "^2.3.0", - "p-is-promise": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", - "dev": true - }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "dev": true, - "license": "MIT" - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "license": "MIT", - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-callable": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", - "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-core-module": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", - "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", - "dev": true, - "license": "MIT", - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-lambda": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=", - "dev": true, - "license": "MIT" - }, - "node_modules/is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz", - "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-promise": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", - "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "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", - "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-text-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz", - "integrity": "sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=", - "dev": true, - "license": "MIT", - "dependencies": { - "text-extensions": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-what": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", - "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", - "dev": true, - "license": "MIT" - }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true, - "license": "MIT" - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "dev": true, - "license": "ISC" - }, - "node_modules/issue-parser": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-6.0.0.tgz", - "integrity": "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==", - "dev": true, - "license": "MIT", - "dependencies": { - "lodash.capitalize": "^4.2.1", - "lodash.escaperegexp": "^4.1.2", - "lodash.isplainobject": "^4.0.6", - "lodash.isstring": "^4.0.1", - "lodash.uniqby": "^4.7.0" - }, - "engines": { - "node": ">=10.13" - } - }, - "node_modules/java-properties": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/java-properties/-/java-properties-1.0.2.tgz", - "integrity": "sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==", - "dev": true, - "peer": true, - "engines": { - "node": ">= 0.6.0" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, - "license": "MIT", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "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", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true, - "peer": true - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true, - "license": "MIT" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true, - "license": "MIT" - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", - "dev": true, - "license": "MIT" - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", - "dev": true, - "license": "ISC" - }, - "node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/jsonc-parser": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz", - "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==", - "dev": true, - "license": "MIT" - }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/jsonparse": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", - "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=", - "dev": true, - "engines": [ - "node >= 0.2.0" - ], - "license": "MIT" - }, - "node_modules/JSONStream": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", - "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", - "dev": true, - "license": "(MIT OR Apache-2.0)", - "dependencies": { - "jsonparse": "^1.2.0", - "through": ">=2.2.7 <3" - }, - "bin": { - "JSONStream": "bin.js" - }, - "engines": { - "node": "*" - } - }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/less": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/less/-/less-4.1.2.tgz", - "integrity": "sha512-EoQp/Et7OSOVu0aJknJOtlXZsnr8XE8KwuzTHOLeVSEx8pVWUICc8Q0VYRHgzyjX78nMEyC/oztWFbgyhtNfDA==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "copy-anything": "^2.0.1", - "parse-node-version": "^1.0.1", - "tslib": "^2.3.0" - }, - "bin": { - "lessc": "bin/lessc" - }, - "engines": { - "node": ">=6" - }, - "optionalDependencies": { - "errno": "^0.1.1", - "graceful-fs": "^4.1.2", - "image-size": "~0.5.0", - "make-dir": "^2.1.0", - "mime": "^1.4.1", - "needle": "^2.5.2", - "source-map": "~0.6.0" - } - }, - "node_modules/less/node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true, - "license": "MIT", - "optional": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true, - "license": "MIT" - }, - "node_modules/load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", - "dev": true, - "peer": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/load-json-file/node_modules/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", - "dev": true, - "peer": true, - "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/load-json-file/node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true, - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.capitalize": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", - "integrity": "sha1-+CbJtOKoUR2E46yinbBeGk87cqk=", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.escaperegexp": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz", - "integrity": "sha1-ZHYsSGGAglGKw99Mz11YhtriA0c=", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.ismatch": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz", - "integrity": "sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc=", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.isplainobject": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", - "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.truncate": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.uniqby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz", - "integrity": "sha1-2ZwHpmnp5tJOE2Lf4mbGdhavEwI=", - "dev": true, - "license": "MIT" - }, - "node_modules/lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", - "dev": true, - "license": "MIT", - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/lru-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz", - "integrity": "sha1-Jzi9nw089PhEkMVzbEhpmsYyzaM=", - "dev": true, - "dependencies": { - "es5-ext": "~0.10.2" - } - }, - "node_modules/make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/make-dir/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "license": "ISC", - "optional": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/map-obj": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", - "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/marked": { - "version": "4.0.12", - "resolved": "https://registry.npmjs.org/marked/-/marked-4.0.12.tgz", - "integrity": "sha512-hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ==", - "dev": true, - "peer": true, - "bin": { - "marked": "bin/marked.js" - }, - "engines": { - "node": ">= 12" - } - }, - "node_modules/marked-terminal": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/marked-terminal/-/marked-terminal-5.1.1.tgz", - "integrity": "sha512-+cKTOx9P4l7HwINYhzbrBSyzgxO2HaHKGZGuB1orZsMIgXYaJyfidT81VXRdpelW/PcHEWxywscePVgI/oUF6g==", - "dev": true, - "peer": true, - "dependencies": { - "ansi-escapes": "^5.0.0", - "cardinal": "^2.1.1", - "chalk": "^5.0.0", - "cli-table3": "^0.6.1", - "node-emoji": "^1.11.0", - "supports-hyperlinks": "^2.2.0" - }, - "engines": { - "node": ">=14.13.1 || >=16.0.0" - }, - "peerDependencies": { - "marked": "^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0" - } - }, - "node_modules/marked-terminal/node_modules/chalk": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.0.0.tgz", - "integrity": "sha512-/duVOqst+luxCQRKEo4bNxinsOQtMP80ZYm7mMqzuh5PociNL0PvmHFvREJ9ueYL2TxlHjBcmLCdmocx9Vg+IQ==", - "dev": true, - "peer": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/meow": { - "version": "8.1.2", - "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", - "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/minimist": "^1.2.0", - "camelcase-keys": "^6.2.2", - "decamelize-keys": "^1.1.0", - "hard-rejection": "^2.1.0", - "minimist-options": "4.1.0", - "normalize-package-data": "^3.0.0", - "read-pkg-up": "^7.0.1", - "redent": "^3.0.0", - "trim-newlines": "^3.0.0", - "type-fest": "^0.18.0", - "yargs-parser": "^20.2.3" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/meow/node_modules/hosted-git-info": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", - "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", - "dev": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/meow/node_modules/normalize-package-data": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", - "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", - "semver": "^7.3.4", - "validate-npm-package-license": "^3.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/meow/node_modules/type-fest": { - "version": "0.18.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", - "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true, - "license": "MIT" - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/microbuffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/microbuffer/-/microbuffer-1.0.0.tgz", - "integrity": "sha1-izgy7UDIfVH0e7I0kTppinVtGdI=", - "dev": true, - "license": "MIT" - }, - "node_modules/micromatch": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", - "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", - "dev": true, - "license": "MIT", - "dependencies": { - "braces": "^3.0.1", - "picomatch": "^2.2.3" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", - "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", - "dev": true, - "license": "MIT", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/min-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", - "dev": true - }, - "node_modules/minimist-options": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", - "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", - "dev": true, - "license": "MIT", - "dependencies": { - "arrify": "^1.0.1", - "is-plain-obj": "^1.1.0", - "kind-of": "^6.0.3" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/minipass": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz", - "integrity": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "dev": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minipass-fetch": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz", - "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==", - "dev": true, - "license": "MIT", - "dependencies": { - "minipass": "^3.1.0", - "minipass-sized": "^1.0.3", - "minizlib": "^2.0.0" - }, - "engines": { - "node": ">=8" - }, - "optionalDependencies": { - "encoding": "^0.1.12" - } - }, - "node_modules/minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "dev": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "dev": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", - "dev": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dev": true, - "license": "MIT", - "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "license": "MIT", - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/modify-values": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz", - "integrity": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true, - "license": "MIT" - }, - "node_modules/nan": { - "version": "2.15.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", - "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", - "dev": true, - "license": "MIT" - }, - "node_modules/neatequal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/neatequal/-/neatequal-1.0.0.tgz", - "integrity": "sha1-LuEhG8n6bkxVcV/SELsFYC6xrjs=", - "dev": true, - "dependencies": { - "varstream": "^0.3.2" - } - }, - "node_modules/needle": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz", - "integrity": "sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "debug": "^3.2.6", - "iconv-lite": "^0.4.4", - "sax": "^1.2.4" - }, - "bin": { - "needle": "bin/needle" - }, - "engines": { - "node": ">= 4.4.x" - } - }, - "node_modules/needle/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true, - "license": "MIT" - }, - "node_modules/nerf-dart": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/nerf-dart/-/nerf-dart-1.0.0.tgz", - "integrity": "sha1-5tq3/r9a2Bbqgc9cYpxaDr3nLBo=", - "dev": true, - "license": "MIT" - }, - "node_modules/next-tick": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", - "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=", - "dev": true, - "license": "MIT" - }, - "node_modules/no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", - "dev": true, - "license": "MIT", - "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } - }, - "node_modules/node-emoji": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz", - "integrity": "sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==", - "dev": true, - "peer": true, - "dependencies": { - "lodash": "^4.17.21" - } - }, - "node_modules/node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/node-gyp": { - "version": "8.4.1", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz", - "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==", - "dev": true, - "dependencies": { - "env-paths": "^2.2.0", - "glob": "^7.1.4", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^9.1.0", - "nopt": "^5.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^2.0.2" - }, - "bin": { - "node-gyp": "bin/node-gyp.js" - }, - "engines": { - "node": ">= 10.12.0" - } - }, - "node_modules/node-gyp/node_modules/@tootallnate/once": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/node-gyp/node_modules/cacache": { - "version": "15.3.0", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", - "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", - "dev": true, - "dependencies": { - "@npmcli/fs": "^1.0.0", - "@npmcli/move-file": "^1.0.1", - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "glob": "^7.1.4", - "infer-owner": "^1.0.4", - "lru-cache": "^6.0.0", - "minipass": "^3.1.1", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.2", - "mkdirp": "^1.0.3", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^8.0.1", - "tar": "^6.0.2", - "unique-filename": "^1.1.1" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/node-gyp/node_modules/http-proxy-agent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", - "dev": true, - "dependencies": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/node-gyp/node_modules/make-fetch-happen": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", - "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", - "dev": true, - "dependencies": { - "agentkeepalive": "^4.1.3", - "cacache": "^15.2.0", - "http-cache-semantics": "^4.1.0", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^6.0.0", - "minipass": "^3.1.3", - "minipass-collect": "^1.0.2", - "minipass-fetch": "^1.3.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.2", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^6.0.0", - "ssri": "^8.0.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/node-gyp/node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/node-typescript-compiler": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/node-typescript-compiler/-/node-typescript-compiler-2.3.0.tgz", - "integrity": "sha512-MeyHx2cQtrJKFxxaPnrMs01fvJDMpuxEODOHVBw7/9LKVQMaiciZCW3gShdLuwuLuU/ZSgpqZrJKUbqQ5OKVFA==", - "dev": true, - "license": "Unlicense", - "dependencies": { - "lodash": "^4", - "path-exists": "^4", - "tildify": "^2" - }, - "engines": { - "npm": ">=3" - } - }, - "node_modules/nodemon": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.20.tgz", - "integrity": "sha512-Km2mWHKKY5GzRg6i1j5OxOHQtuvVsgskLfigG25yTtbyfRGn/GNvIbRyOf1PSCKJ2aT/58TiuUsuOU5UToVViw==", - "dev": true, - "dependencies": { - "chokidar": "^3.5.2", - "debug": "^3.2.7", - "ignore-by-default": "^1.0.1", - "minimatch": "^3.1.2", - "pstree.remy": "^1.1.8", - "semver": "^5.7.1", - "simple-update-notifier": "^1.0.7", - "supports-color": "^5.5.0", - "touch": "^3.1.0", - "undefsafe": "^2.0.5" - }, - "bin": { - "nodemon": "bin/nodemon.js" - }, - "engines": { - "node": ">=8.10.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/nodemon" - } - }, - "node_modules/nodemon/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/nodemon/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/nopt": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", - "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "abbrev": "1" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/normalize-package-data/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm": { - "version": "8.19.3", - "resolved": "https://registry.npmjs.org/npm/-/npm-8.19.3.tgz", - "integrity": "sha512-0QjmyPtDxSyMWWD8I91QGbrgx9KzbV6C9FK1liEb/K0zppiZkr5KxXc990G+LzPwBHDfRjUBlO9T1qZ08vl9mA==", - "bundleDependencies": [ - "@isaacs/string-locale-compare", - "@npmcli/arborist", - "@npmcli/ci-detect", - "@npmcli/config", - "@npmcli/fs", - "@npmcli/map-workspaces", - "@npmcli/package-json", - "@npmcli/run-script", - "abbrev", - "archy", - "cacache", - "chalk", - "chownr", - "cli-columns", - "cli-table3", - "columnify", - "fastest-levenshtein", - "fs-minipass", - "glob", - "graceful-fs", - "hosted-git-info", - "ini", - "init-package-json", - "is-cidr", - "json-parse-even-better-errors", - "libnpmaccess", - "libnpmdiff", - "libnpmexec", - "libnpmfund", - "libnpmhook", - "libnpmorg", - "libnpmpack", - "libnpmpublish", - "libnpmsearch", - "libnpmteam", - "libnpmversion", - "make-fetch-happen", - "minimatch", - "minipass", - "minipass-pipeline", - "mkdirp", - "mkdirp-infer-owner", - "ms", - "node-gyp", - "nopt", - "npm-audit-report", - "npm-install-checks", - "npm-package-arg", - "npm-pick-manifest", - "npm-profile", - "npm-registry-fetch", - "npm-user-validate", - "npmlog", - "opener", - "p-map", - "pacote", - "parse-conflict-json", - "proc-log", - "qrcode-terminal", - "read", - "read-package-json", - "read-package-json-fast", - "readdir-scoped-modules", - "rimraf", - "semver", - "ssri", - "tar", - "text-table", - "tiny-relative-date", - "treeverse", - "validate-npm-package-name", - "which", - "write-file-atomic" - ], - "dev": true, - "dependencies": { - "@isaacs/string-locale-compare": "^1.1.0", - "@npmcli/arborist": "^5.6.3", - "@npmcli/ci-detect": "^2.0.0", - "@npmcli/config": "^4.2.1", - "@npmcli/fs": "^2.1.0", - "@npmcli/map-workspaces": "^2.0.3", - "@npmcli/package-json": "^2.0.0", - "@npmcli/run-script": "^4.2.1", - "abbrev": "~1.1.1", - "archy": "~1.0.0", - "cacache": "^16.1.3", - "chalk": "^4.1.2", - "chownr": "^2.0.0", - "cli-columns": "^4.0.0", - "cli-table3": "^0.6.2", - "columnify": "^1.6.0", - "fastest-levenshtein": "^1.0.12", - "fs-minipass": "^2.1.0", - "glob": "^8.0.1", - "graceful-fs": "^4.2.10", - "hosted-git-info": "^5.2.1", - "ini": "^3.0.1", - "init-package-json": "^3.0.2", - "is-cidr": "^4.0.2", - "json-parse-even-better-errors": "^2.3.1", - "libnpmaccess": "^6.0.4", - "libnpmdiff": "^4.0.5", - "libnpmexec": "^4.0.14", - "libnpmfund": "^3.0.5", - "libnpmhook": "^8.0.4", - "libnpmorg": "^4.0.4", - "libnpmpack": "^4.1.3", - "libnpmpublish": "^6.0.5", - "libnpmsearch": "^5.0.4", - "libnpmteam": "^4.0.4", - "libnpmversion": "^3.0.7", - "make-fetch-happen": "^10.2.0", - "minimatch": "^5.1.0", - "minipass": "^3.1.6", - "minipass-pipeline": "^1.2.4", - "mkdirp": "^1.0.4", - "mkdirp-infer-owner": "^2.0.0", - "ms": "^2.1.2", - "node-gyp": "^9.1.0", - "nopt": "^6.0.0", - "npm-audit-report": "^3.0.0", - "npm-install-checks": "^5.0.0", - "npm-package-arg": "^9.1.0", - "npm-pick-manifest": "^7.0.2", - "npm-profile": "^6.2.0", - "npm-registry-fetch": "^13.3.1", - "npm-user-validate": "^1.0.1", - "npmlog": "^6.0.2", - "opener": "^1.5.2", - "p-map": "^4.0.0", - "pacote": "^13.6.2", - "parse-conflict-json": "^2.0.2", - "proc-log": "^2.0.1", - "qrcode-terminal": "^0.12.0", - "read": "~1.0.7", - "read-package-json": "^5.0.2", - "read-package-json-fast": "^2.0.3", - "readdir-scoped-modules": "^1.1.0", - "rimraf": "^3.0.2", - "semver": "^7.3.7", - "ssri": "^9.0.1", - "tar": "^6.1.11", - "text-table": "~0.2.0", - "tiny-relative-date": "^1.3.0", - "treeverse": "^2.0.0", - "validate-npm-package-name": "^4.0.0", - "which": "^2.0.2", - "write-file-atomic": "^4.0.1" - }, - "bin": { - "npm": "bin/npm-cli.js", - "npx": "bin/npx-cli.js" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/@colors/colors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "dev": true, - "inBundle": true, - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/npm/node_modules/@gar/promisify": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/@isaacs/string-locale-compare": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@isaacs/string-locale-compare/-/string-locale-compare-1.1.0.tgz", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/@npmcli/arborist": { - "version": "5.6.3", - "resolved": "https://registry.npmjs.org/@npmcli/arborist/-/arborist-5.6.3.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@isaacs/string-locale-compare": "^1.1.0", - "@npmcli/installed-package-contents": "^1.0.7", - "@npmcli/map-workspaces": "^2.0.3", - "@npmcli/metavuln-calculator": "^3.0.1", - "@npmcli/move-file": "^2.0.0", - "@npmcli/name-from-folder": "^1.0.1", - "@npmcli/node-gyp": "^2.0.0", - "@npmcli/package-json": "^2.0.0", - "@npmcli/query": "^1.2.0", - "@npmcli/run-script": "^4.1.3", - "bin-links": "^3.0.3", - "cacache": "^16.1.3", - "common-ancestor-path": "^1.0.1", - "hosted-git-info": "^5.2.1", - "json-parse-even-better-errors": "^2.3.1", - "json-stringify-nice": "^1.1.4", - "minimatch": "^5.1.0", - "mkdirp": "^1.0.4", - "mkdirp-infer-owner": "^2.0.0", - "nopt": "^6.0.0", - "npm-install-checks": "^5.0.0", - "npm-package-arg": "^9.0.0", - "npm-pick-manifest": "^7.0.2", - "npm-registry-fetch": "^13.0.0", - "npmlog": "^6.0.2", - "pacote": "^13.6.1", - "parse-conflict-json": "^2.0.1", - "proc-log": "^2.0.0", - "promise-all-reject-late": "^1.0.0", - "promise-call-limit": "^1.0.1", - "read-package-json-fast": "^2.0.2", - "readdir-scoped-modules": "^1.1.0", - "rimraf": "^3.0.2", - "semver": "^7.3.7", - "ssri": "^9.0.0", - "treeverse": "^2.0.0", - "walk-up-path": "^1.0.0" - }, - "bin": { - "arborist": "bin/index.js" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/@npmcli/ci-detect": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/ci-detect/-/ci-detect-2.0.0.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" - } - }, - "node_modules/npm/node_modules/@npmcli/config": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@npmcli/config/-/config-4.2.2.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/map-workspaces": "^2.0.2", - "ini": "^3.0.0", - "mkdirp-infer-owner": "^2.0.0", - "nopt": "^6.0.0", - "proc-log": "^2.0.0", - "read-package-json-fast": "^2.0.3", - "semver": "^7.3.5", - "walk-up-path": "^1.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/@npmcli/disparity-colors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/disparity-colors/-/disparity-colors-2.0.0.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "ansi-styles": "^4.3.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/@npmcli/fs": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.2.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@gar/promisify": "^1.1.3", - "semver": "^7.3.5" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/@npmcli/git": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-3.0.2.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/promise-spawn": "^3.0.0", - "lru-cache": "^7.4.4", - "mkdirp": "^1.0.4", - "npm-pick-manifest": "^7.0.0", - "proc-log": "^2.0.0", - "promise-inflight": "^1.0.1", - "promise-retry": "^2.0.1", - "semver": "^7.3.5", - "which": "^2.0.2" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/@npmcli/installed-package-contents": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-1.0.7.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "npm-bundled": "^1.1.1", - "npm-normalize-package-bin": "^1.0.1" - }, - "bin": { - "installed-package-contents": "index.js" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/npm/node_modules/@npmcli/installed-package-contents/node_modules/npm-bundled": { - "version": "1.1.2", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "npm-normalize-package-bin": "^1.0.1" - } - }, - "node_modules/npm/node_modules/@npmcli/map-workspaces": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@npmcli/map-workspaces/-/map-workspaces-2.0.4.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/name-from-folder": "^1.0.1", - "glob": "^8.0.1", - "minimatch": "^5.0.1", - "read-package-json-fast": "^2.0.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/@npmcli/metavuln-calculator": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@npmcli/metavuln-calculator/-/metavuln-calculator-3.1.1.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "cacache": "^16.0.0", - "json-parse-even-better-errors": "^2.3.1", - "pacote": "^13.0.3", - "semver": "^7.3.5" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/@npmcli/move-file": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-2.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "mkdirp": "^1.0.4", - "rimraf": "^3.0.2" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/@npmcli/name-from-folder": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@npmcli/name-from-folder/-/name-from-folder-1.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/@npmcli/node-gyp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-2.0.0.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/@npmcli/package-json": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-2.0.0.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "json-parse-even-better-errors": "^2.3.1" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/@npmcli/promise-spawn": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-3.0.0.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "infer-owner": "^1.0.4" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/@npmcli/query": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@npmcli/query/-/query-1.2.0.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "npm-package-arg": "^9.1.0", - "postcss-selector-parser": "^6.0.10", - "semver": "^7.3.7" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/@npmcli/run-script": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-4.2.1.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/node-gyp": "^2.0.0", - "@npmcli/promise-spawn": "^3.0.0", - "node-gyp": "^9.0.0", - "read-package-json-fast": "^2.0.3", - "which": "^2.0.2" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/npm/node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/npm/node_modules/agentkeepalive": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "debug": "^4.1.0", - "depd": "^1.1.2", - "humanize-ms": "^1.2.1" - }, - "engines": { - "node": ">= 8.0.0" - } - }, - "node_modules/npm/node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/npm/node_modules/aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/archy": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/are-we-there-yet": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/bin-links": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/bin-links/-/bin-links-3.0.3.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "cmd-shim": "^5.0.0", - "mkdirp-infer-owner": "^2.0.0", - "npm-normalize-package-bin": "^2.0.0", - "read-cmd-shim": "^3.0.0", - "rimraf": "^3.0.0", - "write-file-atomic": "^4.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/bin-links/node_modules/npm-normalize-package-bin": { - "version": "2.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/npm/node_modules/builtins": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "semver": "^7.0.0" - } - }, - "node_modules/npm/node_modules/cacache": { - "version": "16.1.3", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-16.1.3.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/fs": "^2.1.0", - "@npmcli/move-file": "^2.0.0", - "chownr": "^2.0.0", - "fs-minipass": "^2.1.0", - "glob": "^8.0.1", - "infer-owner": "^1.0.4", - "lru-cache": "^7.7.1", - "minipass": "^3.1.6", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "mkdirp": "^1.0.4", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^9.0.0", - "tar": "^6.1.11", - "unique-filename": "^2.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/npm/node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": ">=10" - } - }, - "node_modules/npm/node_modules/cidr-regex": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/cidr-regex/-/cidr-regex-3.1.1.tgz", - "dev": true, - "inBundle": true, - "license": "BSD-2-Clause", - "dependencies": { - "ip-regex": "^4.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/npm/node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/npm/node_modules/cli-columns": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cli-columns/-/cli-columns-4.0.0.tgz", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/npm/node_modules/cli-table3": { - "version": "0.6.2", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "string-width": "^4.2.0" - }, - "engines": { - "node": "10.* || >= 12.*" - }, - "optionalDependencies": { - "@colors/colors": "1.5.0" - } - }, - "node_modules/npm/node_modules/clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=0.8" - } - }, - "node_modules/npm/node_modules/cmd-shim": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cmd-shim/-/cmd-shim-5.0.0.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "mkdirp-infer-owner": "^2.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/npm/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true, - "inBundle": true, - "license": "ISC", - "bin": { - "color-support": "bin.js" - } - }, - "node_modules/npm/node_modules/columnify": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/columnify/-/columnify-1.6.0.tgz", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "strip-ansi": "^6.0.1", - "wcwidth": "^1.0.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/npm/node_modules/common-ancestor-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "dev": true, - "inBundle": true, - "license": "MIT", - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/npm/node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/npm/node_modules/debug/node_modules/ms": { - "version": "2.1.2", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/debuglog": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": "*" - } - }, - "node_modules/npm/node_modules/defaults": { - "version": "1.0.3", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "clone": "^1.0.2" - } - }, - "node_modules/npm/node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/npm/node_modules/dezalgo": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.4.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "asap": "^2.0.0", - "wrappy": "1" - } - }, - "node_modules/npm/node_modules/diff": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz", - "dev": true, - "inBundle": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/npm/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "dev": true, - "inBundle": true, - "license": "MIT", - "optional": true, - "dependencies": { - "iconv-lite": "^0.6.2" - } - }, - "node_modules/npm/node_modules/env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/npm/node_modules/err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/fastest-levenshtein": { - "version": "1.0.12", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/npm/node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/gauge": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.3", - "console-control-strings": "^1.1.0", - "has-unicode": "^2.0.1", - "signal-exit": "^3.0.7", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.5" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/glob": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/npm/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/hosted-git-info": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-5.2.1.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^7.5.1" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/http-cache-semantics": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", - "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", - "dev": true, - "inBundle": true, - "license": "BSD-2-Clause" - }, - "node_modules/npm/node_modules/http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/npm/node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/npm/node_modules/humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ms": "^2.0.0" - } - }, - "node_modules/npm/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "inBundle": true, - "license": "MIT", - "optional": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/npm/node_modules/ignore-walk": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-5.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "minimatch": "^5.0.1" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/npm/node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/npm/node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/ini": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ini/-/ini-3.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/init-package-json": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/init-package-json/-/init-package-json-3.0.2.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "npm-package-arg": "^9.0.1", - "promzard": "^0.3.0", - "read": "^1.0.7", - "read-package-json": "^5.0.0", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4", - "validate-npm-package-name": "^4.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/ip-regex": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-4.3.0.tgz", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/is-cidr": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/is-cidr/-/is-cidr-4.0.2.tgz", - "dev": true, - "inBundle": true, - "license": "BSD-2-Clause", - "dependencies": { - "cidr-regex": "^3.1.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/npm/node_modules/is-core-module": { - "version": "2.10.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/npm/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/is-lambda": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/json-stringify-nice": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/jsonparse": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", - "dev": true, - "engines": [ - "node >= 0.2.0" - ], - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/just-diff": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/just-diff/-/just-diff-5.1.1.tgz", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/just-diff-apply": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/just-diff-apply/-/just-diff-apply-5.4.1.tgz", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/libnpmaccess": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/libnpmaccess/-/libnpmaccess-6.0.4.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "aproba": "^2.0.0", - "minipass": "^3.1.1", - "npm-package-arg": "^9.0.1", - "npm-registry-fetch": "^13.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/libnpmdiff": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/libnpmdiff/-/libnpmdiff-4.0.5.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/disparity-colors": "^2.0.0", - "@npmcli/installed-package-contents": "^1.0.7", - "binary-extensions": "^2.2.0", - "diff": "^5.1.0", - "minimatch": "^5.0.1", - "npm-package-arg": "^9.0.1", - "pacote": "^13.6.1", - "tar": "^6.1.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/libnpmexec": { - "version": "4.0.14", - "resolved": "https://registry.npmjs.org/libnpmexec/-/libnpmexec-4.0.14.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/arborist": "^5.6.3", - "@npmcli/ci-detect": "^2.0.0", - "@npmcli/fs": "^2.1.1", - "@npmcli/run-script": "^4.2.0", - "chalk": "^4.1.0", - "mkdirp-infer-owner": "^2.0.0", - "npm-package-arg": "^9.0.1", - "npmlog": "^6.0.2", - "pacote": "^13.6.1", - "proc-log": "^2.0.0", - "read": "^1.0.7", - "read-package-json-fast": "^2.0.2", - "semver": "^7.3.7", - "walk-up-path": "^1.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/libnpmfund": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/libnpmfund/-/libnpmfund-3.0.5.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/arborist": "^5.6.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/libnpmhook": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/libnpmhook/-/libnpmhook-8.0.4.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "aproba": "^2.0.0", - "npm-registry-fetch": "^13.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/libnpmorg": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/libnpmorg/-/libnpmorg-4.0.4.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "aproba": "^2.0.0", - "npm-registry-fetch": "^13.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/libnpmpack": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/libnpmpack/-/libnpmpack-4.1.3.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/run-script": "^4.1.3", - "npm-package-arg": "^9.0.1", - "pacote": "^13.6.1" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/libnpmpublish": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/libnpmpublish/-/libnpmpublish-6.0.5.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "normalize-package-data": "^4.0.0", - "npm-package-arg": "^9.0.1", - "npm-registry-fetch": "^13.0.0", - "semver": "^7.3.7", - "ssri": "^9.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/libnpmsearch": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/libnpmsearch/-/libnpmsearch-5.0.4.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "npm-registry-fetch": "^13.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/libnpmteam": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/libnpmteam/-/libnpmteam-4.0.4.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "aproba": "^2.0.0", - "npm-registry-fetch": "^13.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/libnpmversion": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/libnpmversion/-/libnpmversion-3.0.7.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/git": "^3.0.0", - "@npmcli/run-script": "^4.1.3", - "json-parse-even-better-errors": "^2.3.1", - "proc-log": "^2.0.0", - "semver": "^7.3.7" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/lru-cache": { - "version": "7.13.2", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": ">=12" - } - }, - "node_modules/npm/node_modules/make-fetch-happen": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "agentkeepalive": "^4.2.1", - "cacache": "^16.1.0", - "http-cache-semantics": "^4.1.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^3.1.6", - "minipass-collect": "^1.0.2", - "minipass-fetch": "^2.0.3", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^7.0.0", - "ssri": "^9.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/minimatch": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/npm/node_modules/minipass": { - "version": "3.3.4", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/npm/node_modules/minipass-fetch": { - "version": "2.1.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "minipass": "^3.1.6", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - }, - "optionalDependencies": { - "encoding": "^0.1.13" - } - }, - "node_modules/npm/node_modules/minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/npm/node_modules/minipass-json-stream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "jsonparse": "^1.3.1", - "minipass": "^3.0.0" - } - }, - "node_modules/npm/node_modules/minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/npm/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "inBundle": true, - "license": "MIT", - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/npm/node_modules/mkdirp-infer-owner": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/mkdirp-infer-owner/-/mkdirp-infer-owner-2.0.0.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "chownr": "^2.0.0", - "infer-owner": "^1.0.4", - "mkdirp": "^1.0.3" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/npm/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/npm/node_modules/node-gyp": { - "version": "9.1.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "env-paths": "^2.2.0", - "glob": "^7.1.4", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^10.0.3", - "nopt": "^5.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^2.0.2" - }, - "bin": { - "node-gyp": "bin/node-gyp.js" - }, - "engines": { - "node": "^12.22 || ^14.13 || >=16" - } - }, - "node_modules/npm/node_modules/node-gyp/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/npm/node_modules/node-gyp/node_modules/glob": { - "version": "7.2.3", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/node-gyp/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/npm/node_modules/node-gyp/node_modules/nopt": { - "version": "5.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "abbrev": "1" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/npm/node_modules/nopt": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "abbrev": "^1.0.0" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/normalize-package-data": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-4.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "BSD-2-Clause", - "dependencies": { - "hosted-git-info": "^5.0.0", - "is-core-module": "^2.8.1", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/npm-audit-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/npm-audit-report/-/npm-audit-report-3.0.0.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "chalk": "^4.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/npm-bundled": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-2.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "npm-normalize-package-bin": "^2.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/npm-bundled/node_modules/npm-normalize-package-bin": { - "version": "2.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/npm-install-checks": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-5.0.0.tgz", - "dev": true, - "inBundle": true, - "license": "BSD-2-Clause", - "dependencies": { - "semver": "^7.1.1" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/npm-normalize-package-bin": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/npm-package-arg": { - "version": "9.1.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "hosted-git-info": "^5.0.0", - "proc-log": "^2.0.1", - "semver": "^7.3.5", - "validate-npm-package-name": "^4.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/npm-packlist": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.1.3.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "glob": "^8.0.1", - "ignore-walk": "^5.0.1", - "npm-bundled": "^2.0.0", - "npm-normalize-package-bin": "^2.0.0" - }, - "bin": { - "npm-packlist": "bin/index.js" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/npm-packlist/node_modules/npm-normalize-package-bin": { - "version": "2.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/npm-pick-manifest": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-7.0.2.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "npm-install-checks": "^5.0.0", - "npm-normalize-package-bin": "^2.0.0", - "npm-package-arg": "^9.0.0", - "semver": "^7.3.5" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/npm-pick-manifest/node_modules/npm-normalize-package-bin": { - "version": "2.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/npm-profile": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/npm-profile/-/npm-profile-6.2.1.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "npm-registry-fetch": "^13.0.1", - "proc-log": "^2.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/npm-registry-fetch": { - "version": "13.3.1", - "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-13.3.1.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "make-fetch-happen": "^10.0.6", - "minipass": "^3.1.6", - "minipass-fetch": "^2.0.3", - "minipass-json-stream": "^1.0.1", - "minizlib": "^2.1.2", - "npm-package-arg": "^9.0.1", - "proc-log": "^2.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/npm-user-validate": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/npm-user-validate/-/npm-user-validate-1.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "BSD-2-Clause" - }, - "node_modules/npm/node_modules/npmlog": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "are-we-there-yet": "^3.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^4.0.3", - "set-blocking": "^2.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/npm/node_modules/opener": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", - "dev": true, - "inBundle": true, - "license": "(WTFPL OR MIT)", - "bin": { - "opener": "bin/opener-bin.js" - } - }, - "node_modules/npm/node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm/node_modules/pacote": { - "version": "13.6.2", - "resolved": "https://registry.npmjs.org/pacote/-/pacote-13.6.2.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/git": "^3.0.0", - "@npmcli/installed-package-contents": "^1.0.7", - "@npmcli/promise-spawn": "^3.0.0", - "@npmcli/run-script": "^4.1.0", - "cacache": "^16.0.0", - "chownr": "^2.0.0", - "fs-minipass": "^2.1.0", - "infer-owner": "^1.0.4", - "minipass": "^3.1.6", - "mkdirp": "^1.0.4", - "npm-package-arg": "^9.0.0", - "npm-packlist": "^5.1.0", - "npm-pick-manifest": "^7.0.0", - "npm-registry-fetch": "^13.0.1", - "proc-log": "^2.0.0", - "promise-retry": "^2.0.1", - "read-package-json": "^5.0.0", - "read-package-json-fast": "^2.0.3", - "rimraf": "^3.0.2", - "ssri": "^9.0.0", - "tar": "^6.1.11" - }, - "bin": { - "pacote": "lib/bin.js" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/parse-conflict-json": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/parse-conflict-json/-/parse-conflict-json-2.0.2.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "json-parse-even-better-errors": "^2.3.1", - "just-diff": "^5.0.1", - "just-diff-apply": "^5.2.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/npm/node_modules/postcss-selector-parser": { - "version": "6.0.10", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/npm/node_modules/proc-log": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-2.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/promise-all-reject-late": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-all-reject-late/-/promise-all-reject-late-1.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/promise-call-limit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-call-limit/-/promise-call-limit-1.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/promise-retry": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", - "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "err-code": "^2.0.2", - "retry": "^0.12.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/npm/node_modules/promzard": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/promzard/-/promzard-0.3.0.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "read": "1" - } - }, - "node_modules/npm/node_modules/qrcode-terminal": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz", - "dev": true, - "inBundle": true, - "bin": { - "qrcode-terminal": "bin/qrcode-terminal.js" - } - }, - "node_modules/npm/node_modules/read": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "mute-stream": "~0.0.4" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/npm/node_modules/read-cmd-shim": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/read-package-json": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-5.0.2.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "glob": "^8.0.1", - "json-parse-even-better-errors": "^2.3.1", - "normalize-package-data": "^4.0.0", - "npm-normalize-package-bin": "^2.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/read-package-json-fast": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "json-parse-even-better-errors": "^2.3.0", - "npm-normalize-package-bin": "^1.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/npm/node_modules/read-package-json/node_modules/npm-normalize-package-bin": { - "version": "2.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/npm/node_modules/readdir-scoped-modules": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "debuglog": "^1.0.1", - "dezalgo": "^1.0.0", - "graceful-fs": "^4.1.2", - "once": "^1.3.0" - } - }, - "node_modules/npm/node_modules/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/npm/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/rimraf/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/npm/node_modules/rimraf/node_modules/glob": { - "version": "7.2.3", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/rimraf/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/npm/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "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" - } - ], - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true, - "inBundle": true, - "license": "MIT", - "optional": true - }, - "node_modules/npm/node_modules/semver": { - "version": "7.3.7", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/npm/node_modules/semver/node_modules/lru-cache": { - "version": "6.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/npm/node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/npm/node_modules/socks": { - "version": "2.7.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ip": "^2.0.0", - "smart-buffer": "^4.2.0" - }, - "engines": { - "node": ">= 10.13.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/npm/node_modules/socks-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "agent-base": "^6.0.2", - "debug": "^4.3.3", - "socks": "^2.6.2" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/npm/node_modules/spdx-correct": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", - "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", - "dev": true, - "inBundle": true, - "license": "Apache-2.0", - "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/npm/node_modules/spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", - "dev": true, - "inBundle": true, - "license": "CC-BY-3.0" - }, - "node_modules/npm/node_modules/spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/npm/node_modules/spdx-license-ids": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", - "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", - "dev": true, - "inBundle": true, - "license": "CC0-1.0" - }, - "node_modules/npm/node_modules/ssri": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-9.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.1.1" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/npm/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/tar": { - "version": "6.1.11", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", - "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^3.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/npm/node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/tiny-relative-date": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/tiny-relative-date/-/tiny-relative-date-1.3.0.tgz", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/treeverse": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/treeverse/-/treeverse-2.0.0.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/unique-filename": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-2.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "unique-slug": "^3.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/unique-slug": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-3.0.0.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "imurmurhash": "^0.1.4" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "dev": true, - "inBundle": true, - "license": "Apache-2.0", - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "node_modules/npm/node_modules/validate-npm-package-name": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-4.0.0.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "builtins": "^5.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/walk-up-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/walk-up-path/-/walk-up-path-1.0.0.tgz", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/wcwidth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "defaults": "^1.0.3" - } - }, - "node_modules/npm/node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/npm/node_modules/wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "node_modules/npm/node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npmlog": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.1.tgz", - "integrity": "sha512-BTHDvY6nrRHuRfyjt1MAufLxYdVXZfd099H4+i1f0lPywNQyI4foeNXJRObB/uy+TYqUW0vAD9gbdSOXPst7Eg==", - "dev": true, - "dependencies": { - "are-we-there-yet": "^3.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^4.0.0", - "set-blocking": "^2.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" - } - }, - "node_modules/object-inspect": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", - "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.values": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", - "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/ometa": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/ometa/-/ometa-0.2.2.tgz", - "integrity": "sha1-9TxHNbptVq9aRrBN+3xDNMWW1E4=", - "dev": true, - "engines": { - "node": ">= 0.2.0" - } - }, - "node_modules/omod": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/omod/-/omod-1.2.0.tgz", - "integrity": "sha512-j5WX0CEw+3nbm0dtv0WAa6W0raizsi+B+GOJ1W1i7p7M35bx/yQqEEv8uSuGlvdjCCNzO8+5peHEdU8hC5oi5w==", - "dev": true, - "license": "ISC", - "dependencies": { - "tinycolor2": "^1.4.2" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, - "license": "ISC", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", - "dev": true, - "license": "MIT", - "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/p-each-series": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz", - "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==", - "dev": true, - "peer": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-filter": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-2.1.0.tgz", - "integrity": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-map": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/p-is-promise": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-3.0.0.tgz", - "integrity": "sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/p-map": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", - "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/p-reduce": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz", - "integrity": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/p-retry": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.1.tgz", - "integrity": "sha512-e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/retry": "^0.12.0", - "retry": "^0.13.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", - "dev": true - }, - "node_modules/param-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", - "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", - "dev": true, - "license": "MIT", - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, - "license": "MIT", - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parse-node-version": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", - "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/pascal-case": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", - "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", - "dev": true, - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/path-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", - "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", - "dev": true, - "license": "MIT", - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true, - "license": "MIT" - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "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, - "license": "MIT", - "optional": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/pkg-conf": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", - "integrity": "sha1-ISZRTKbyq/69FoWW3xi6V4Z/AFg=", - "dev": true, - "peer": true, - "dependencies": { - "find-up": "^2.0.0", - "load-json-file": "^4.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-conf/node_modules/find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "peer": true, - "dependencies": { - "locate-path": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-conf/node_modules/locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "peer": true, - "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-conf/node_modules/p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "peer": true, - "dependencies": { - "p-try": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-conf/node_modules/p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "peer": true, - "dependencies": { - "p-limit": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-conf/node_modules/p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", - "dev": true, - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-conf/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true, - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/prettier": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz", - "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==", - "dev": true, - "license": "MIT", - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true, - "license": "MIT" - }, - "node_modules/progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", - "dev": true - }, - "node_modules/promise-retry": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", - "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", - "dev": true, - "dependencies": { - "err-code": "^2.0.2", - "retry": "^0.12.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/promise-retry/node_modules/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", - "dev": true, - "license": "MIT", - "optional": true - }, - "node_modules/pstree.remy": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", - "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", - "dev": true - }, - "node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/q": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.6.0", - "teleport": ">=0.2.0" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "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" - } - ], - "license": "MIT" - }, - "node_modules/quick-lru": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", - "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "dev": true, - "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", - "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "bin": { - "rc": "cli.js" - } - }, - "node_modules/read-pkg": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", - "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^2.5.0", - "parse-json": "^5.0.0", - "type-fest": "^0.6.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", - "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", - "dev": true, - "license": "MIT", - "dependencies": { - "find-up": "^4.1.0", - "read-pkg": "^5.2.0", - "type-fest": "^0.8.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=8" - } - }, - "node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/redent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", - "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", - "dev": true, - "license": "MIT", - "dependencies": { - "indent-string": "^4.0.0", - "strip-indent": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/redeyed": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz", - "integrity": "sha1-iYS1gV2ZyyIEacme7v/jiRPmzAs=", - "dev": true, - "peer": true, - "dependencies": { - "esprima": "~4.0.0" - } - }, - "node_modules/regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } - }, - "node_modules/registry-auth-token": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz", - "integrity": "sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==", - "dev": true, - "license": "MIT", - "dependencies": { - "rc": "^1.2.8" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", - "dev": true, - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/resolve": { - "version": "1.22.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", - "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-core-module": "^2.8.1", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/retry": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", - "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "license": "MIT", - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "license": "ISC", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "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" - } - ], - "license": "MIT", - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "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" - } - ], - "license": "MIT" - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true, - "license": "MIT", - "optional": true - }, - "node_modules/sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", - "dev": true, - "license": "ISC" - }, - "node_modules/scss": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/scss/-/scss-0.2.4.tgz", - "integrity": "sha1-BA2QPtN8XU+krTOuH9OJrBKk4GU=", - "dev": true, - "dependencies": { - "ometa": "0.2.2" - }, - "engines": { - "node": ">= 0.2.0" - } - }, - "node_modules/semantic-release": { - "version": "19.0.3", - "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-19.0.3.tgz", - "integrity": "sha512-HaFbydST1cDKZHuFZxB8DTrBLJVK/AnDExpK0s3EqLIAAUAHUgnd+VSJCUtTYQKkAkauL8G9CucODrVCc7BuAA==", - "dev": true, - "peer": true, - "dependencies": { - "@semantic-release/commit-analyzer": "^9.0.2", - "@semantic-release/error": "^3.0.0", - "@semantic-release/github": "^8.0.0", - "@semantic-release/npm": "^9.0.0", - "@semantic-release/release-notes-generator": "^10.0.0", - "aggregate-error": "^3.0.0", - "cosmiconfig": "^7.0.0", - "debug": "^4.0.0", - "env-ci": "^5.0.0", - "execa": "^5.0.0", - "figures": "^3.0.0", - "find-versions": "^4.0.0", - "get-stream": "^6.0.0", - "git-log-parser": "^1.2.0", - "hook-std": "^2.0.0", - "hosted-git-info": "^4.0.0", - "lodash": "^4.17.21", - "marked": "^4.0.10", - "marked-terminal": "^5.0.0", - "micromatch": "^4.0.2", - "p-each-series": "^2.1.0", - "p-reduce": "^2.0.0", - "read-pkg-up": "^7.0.0", - "resolve-from": "^5.0.0", - "semver": "^7.3.2", - "semver-diff": "^3.1.1", - "signale": "^1.2.1", - "yargs": "^16.2.0" - }, - "bin": { - "semantic-release": "bin/semantic-release.js" - }, - "engines": { - "node": ">=16 || ^14.17" - } - }, - "node_modules/semantic-release/node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "dev": true, - "peer": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "node_modules/semantic-release/node_modules/hosted-git-info": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", - "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", - "dev": true, - "peer": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/semantic-release/node_modules/yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", - "dev": true, - "peer": true, - "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/semver-diff": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", - "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", - "dev": true, - "peer": true, - "dependencies": { - "semver": "^6.3.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/semver-diff/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "peer": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/semver-regex": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-3.1.4.tgz", - "integrity": "sha512-6IiqeZNgq01qGf0TId0t3NvKzSvUsjcpdEO3AQNeIjR6A2+ckTnQlDpl4qu1bjRv0RzN3FP9hzFmws3lKqRWkA==", - "dev": true, - "peer": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/sentence-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", - "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "dev": true - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "license": "MIT", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/signale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/signale/-/signale-1.4.0.tgz", - "integrity": "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==", - "dev": true, - "peer": true, - "dependencies": { - "chalk": "^2.3.2", - "figures": "^2.0.0", - "pkg-conf": "^2.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/signale/node_modules/figures": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", - "dev": true, - "peer": true, - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/simple-update-notifier": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.0.7.tgz", - "integrity": "sha512-BBKgR84BJQJm6WjWFMHgLVuo61FBDSj1z/xSFUIozqO6wO7ii0JxCqlIud7Enr/+LhlbNI0whErq96P2qHNWew==", - "dev": true, - "dependencies": { - "semver": "~7.0.0" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/simple-update-notifier/node_modules/semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/slice-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "license": "MIT" - }, - "node_modules/slugify": { - "version": "1.6.5", - "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.5.tgz", - "integrity": "sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ==", - "dev": true, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true, - "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/snake-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", - "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", - "dev": true, - "license": "MIT", - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", - "dev": true, - "dependencies": { - "ip": "^2.0.0", - "smart-buffer": "^4.2.0" - }, - "engines": { - "node": ">= 10.13.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/socks-proxy-agent": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.1.1.tgz", - "integrity": "sha512-t8J0kG3csjA4g6FTbsMOWws+7R7vuRC8aQ/wy3/1OWmsgwA68zs/+cExQ0koSitUDXqhufF/YJr9wtNMZHw5Ew==", - "dev": true, - "dependencies": { - "agent-base": "^6.0.2", - "debug": "^4.3.1", - "socks": "^2.6.1" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/spawn-error-forwarder": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/spawn-error-forwarder/-/spawn-error-forwarder-1.0.0.tgz", - "integrity": "sha1-Gv2Uc46ZmwNG17n8NzvlXgdXcCk=", - "dev": true, - "peer": true - }, - "node_modules/spdx-correct": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", - "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", - "dev": true, - "license": "CC-BY-3.0" - }, - "node_modules/spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-license-ids": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", - "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", - "dev": true, - "license": "CC0-1.0" - }, - "node_modules/split": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", - "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", - "dev": true, - "license": "MIT", - "dependencies": { - "through": "2" - }, - "engines": { - "node": "*" - } - }, - "node_modules/split2": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", - "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", - "dev": true, - "license": "ISC", - "dependencies": { - "readable-stream": "^3.0.0" - } - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", - "dev": true, - "license": "BSD-3-Clause" - }, - "node_modules/ssri": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", - "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", - "dev": true, - "dependencies": { - "minipass": "^3.1.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/stream-combiner2": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", - "integrity": "sha1-+02KFCDqNidk4hrUeAOXvry0HL4=", - "dev": true, - "peer": true, - "dependencies": { - "duplexer2": "~0.1.0", - "readable-stream": "^2.0.2" - } - }, - "node_modules/stream-combiner2/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, - "peer": 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/stream-combiner2/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, - "peer": true - }, - "node_modules/stream-combiner2/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, - "peer": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", - "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", - "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/strip-indent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", - "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "min-indent": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/style-dictionary": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.1.1.tgz", - "integrity": "sha512-Dpugx2wH3ElMvq1GOaSsfUChr8dwujx2/eBUUd0vaSFkP16LRp5XOJMTHF0f8QuPGkpBfVPXDWCkb3oJ3oJjxg==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "chalk": "^4.0.0", - "change-case": "^4.1.2", - "commander": "^5.1.0", - "fs-extra": "^8.1.0", - "glob": "^7.1.6", - "json5": "^2.1.3", - "jsonc-parser": "^3.0.0", - "lodash": "^4.17.15", - "tinycolor2": "^1.4.1" - }, - "bin": { - "style-dictionary": "bin/style-dictionary" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/style-dictionary/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/style-dictionary/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/style-dictionary/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/style-dictionary/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "license": "MIT" - }, - "node_modules/style-dictionary/node_modules/fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - }, - "engines": { - "node": ">=6 <7 || >=8" - } - }, - "node_modules/style-dictionary/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/style-dictionary/node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/style-dictionary/node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", - "dev": true, - "license": "MIT", - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/style-dictionary/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/style-dictionary/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-hyperlinks": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz", - "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==", - "dev": true, - "peer": true, - "dependencies": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-hyperlinks/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-hyperlinks/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "peer": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/svg-pathdata": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/svg-pathdata/-/svg-pathdata-6.0.3.tgz", - "integrity": "sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw==", - "dev": true, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/svg2ttf": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/svg2ttf/-/svg2ttf-6.0.3.tgz", - "integrity": "sha512-CgqMyZrbOPpc+WqH7aga4JWkDPso23EgypLsbQ6gN3uoPWwwiLjXvzgrwGADBExvCRJrWFzAeK1bSoSpE7ixSQ==", - "dev": true, - "dependencies": { - "@xmldom/xmldom": "^0.7.2", - "argparse": "^2.0.1", - "cubic2quad": "^1.2.1", - "lodash": "^4.17.10", - "microbuffer": "^1.0.0", - "svgpath": "^2.1.5" - }, - "bin": { - "svg2ttf": "svg2ttf.js" - } - }, - "node_modules/svg2ttf/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/svgicons2svgfont": { - "version": "10.0.5", - "resolved": "https://registry.npmjs.org/svgicons2svgfont/-/svgicons2svgfont-10.0.5.tgz", - "integrity": "sha512-mkP/i0SW5jah4bwIOBpZvrTwJY7rOB3QIIMb/1QwIvJSOScmtAagJTrN3FwHnK1Cu4gw6LgemsefS1Oi0lqkkQ==", - "dev": true, - "dependencies": { - "commander": "^7.2.0", - "geometry-interfaces": "^1.1.4", - "glob": "^7.1.6", - "neatequal": "^1.0.0", - "readable-stream": "^3.4.0", - "sax": "^1.2.4", - "svg-pathdata": "^6.0.0" - }, - "bin": { - "svgicons2svgfont": "bin/svgicons2svgfont.js" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/svgicons2svgfont/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "dev": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/svgpath": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/svgpath/-/svgpath-2.5.0.tgz", - "integrity": "sha512-o/vohwqjUO9nDAh4rcjE3KaW/v//At8UJu2LJMybXidf5QLQLVA4bxH0//4YCsr+1H4Gw1Wi/Jc62ynzSBYidw==", - "dev": true - }, - "node_modules/table": { - "version": "6.8.0", - "resolved": "https://registry.npmjs.org/table/-/table-6.8.0.tgz", - "integrity": "sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "ajv": "^8.0.1", - "lodash.truncate": "^4.4.2", - "slice-ansi": "^4.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/table/node_modules/ajv": { - "version": "8.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/table/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true, - "license": "MIT" - }, - "node_modules/tar": { - "version": "6.1.11", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", - "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", - "dev": true, - "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^3.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/temp-dir": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", - "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/tempy": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tempy/-/tempy-1.0.1.tgz", - "integrity": "sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==", - "dev": true, - "license": "MIT", - "dependencies": { - "del": "^6.0.0", - "is-stream": "^2.0.0", - "temp-dir": "^2.0.0", - "type-fest": "^0.16.0", - "unique-string": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/tempy/node_modules/type-fest": { - "version": "0.16.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", - "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/text-extensions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz", - "integrity": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", - "dev": true, - "license": "MIT" - }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", - "dev": true, - "license": "MIT" - }, - "node_modules/through2": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", - "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", - "dev": true, - "license": "MIT", - "dependencies": { - "readable-stream": "3" - } - }, - "node_modules/tildify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/tildify/-/tildify-2.0.0.tgz", - "integrity": "sha512-Cc+OraorugtXNfs50hU9KS369rFXCfgGLpfCfvlc+Ud5u6VWmUQsOAa9HbTvheQdYnrdJqqv1e5oIqXppMYnSw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/timers-ext": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.7.tgz", - "integrity": "sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==", - "dev": true, - "dependencies": { - "es5-ext": "~0.10.46", - "next-tick": "1" - } - }, - "node_modules/tinycolor2": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz", - "integrity": "sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==", - "dev": true, - "license": "MIT", - "engines": { - "node": "*" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/touch": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", - "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", - "dev": true, - "dependencies": { - "nopt": "~1.0.10" - }, - "bin": { - "nodetouch": "bin/nodetouch.js" - } - }, - "node_modules/touch/node_modules/nopt": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", - "integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==", - "dev": true, - "dependencies": { - "abbrev": "1" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "engines": { - "node": "*" - } - }, - "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=", - "dev": true, - "license": "MIT" - }, - "node_modules/traverse": { - "version": "0.6.6", - "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz", - "integrity": "sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=", - "dev": true, - "peer": true - }, - "node_modules/trim-newlines": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", - "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/tsconfig-paths": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.12.0.tgz", - "integrity": "sha512-e5adrnOYT6zqVnWqZu7i/BQ3BnhzvGbjEjejFXO20lKIKpwTaupkCPgEfv4GZK1IBciJUEhYs3J3p75FdaTFVg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.1", - "minimist": "^1.2.0", - "strip-bom": "^3.0.0" - } - }, - "node_modules/tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==", - "dev": true, - "license": "0BSD" - }, - "node_modules/ttf2eot": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ttf2eot/-/ttf2eot-2.0.0.tgz", - "integrity": "sha1-jmM3pYWr0WCKDISVirSDzmn2ZUs=", - "dev": true, - "dependencies": { - "argparse": "^1.0.6", - "microbuffer": "^1.0.0" - }, - "bin": { - "ttf2eot": "ttf2eot.js" - } - }, - "node_modules/ttf2woff": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ttf2woff/-/ttf2woff-3.0.0.tgz", - "integrity": "sha512-OvmFcj70PhmAsVQKfC15XoKH55cRWuaRzvr2fpTNhTNer6JBpG8n6vOhRrIgxMjcikyYt88xqYXMMVapJ4Rjvg==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1", - "pako": "^1.0.0" - }, - "bin": { - "ttf2woff": "ttf2woff.js" - } - }, - "node_modules/ttf2woff/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/ttf2woff2": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/ttf2woff2/-/ttf2woff2-4.0.4.tgz", - "integrity": "sha512-pdt/q89D6VmWToUkiwrUo/OrQtmHGr2iBl3GQriHE6xq0cnteb8gJF8UitOdXmFTX8ajKgb3HMGKpKAsCJM61g==", - "dev": true, - "hasInstallScript": true, - "dependencies": { - "bindings": "^1.5.0", - "bufferstreams": "^3.0.0", - "nan": "^2.14.2", - "node-gyp": "^8.1.0" - }, - "bin": { - "ttf2woff2": "bin/ttf2woff2.js" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/type": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", - "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", - "dev": true - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "license": "MIT", - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-fest": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=8" - } - }, - "node_modules/typescript": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.2.tgz", - "integrity": "sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg==", - "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - } - }, - "node_modules/uglify-js": { - "version": "3.15.0", - "dev": true, - "license": "BSD-2-Clause", - "optional": true, - "bin": { - "uglifyjs": "bin/uglifyjs" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/unbox-primitive": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", - "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", - "dev": true, - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1", - "has-bigints": "^1.0.1", - "has-symbols": "^1.0.2", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/undefsafe": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", - "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", - "dev": true - }, - "node_modules/unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", - "dev": true, - "dependencies": { - "unique-slug": "^2.0.0" - } - }, - "node_modules/unique-slug": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", - "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4" - } - }, - "node_modules/unique-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", - "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", - "dev": true, - "license": "MIT", - "dependencies": { - "crypto-random-string": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/universal-user-agent": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz", - "integrity": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==", - "dev": true, - "license": "ISC" - }, - "node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/upper-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", - "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", - "dev": true, - "license": "MIT", - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/upper-case-first": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", - "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", - "dev": true, - "license": "MIT", - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/url-join": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz", - "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==", - "dev": true, - "license": "MIT" - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", - "dev": true, - "license": "MIT" - }, - "node_modules/v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", - "dev": true, - "license": "MIT" - }, - "node_modules/validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "node_modules/varstream": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/varstream/-/varstream-0.3.2.tgz", - "integrity": "sha1-GKxklHZfP/GjWtmkvgU77BiKXeE=", - "dev": true, - "dependencies": { - "readable-stream": "^1.0.33" - }, - "bin": { - "json2varstream": "cli/json2varstream.js", - "varstream2json": "cli/varstream2json.js" - }, - "engines": { - "node": ">=0.10.*" - } - }, - "node_modules/varstream/node_modules/isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", - "dev": true - }, - "node_modules/varstream/node_modules/readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "node_modules/varstream/node_modules/string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "dev": true - }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=", - "dev": true, - "license": "BSD-2-Clause" - }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=", - "dev": true, - "license": "MIT", - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - "dev": true, - "dependencies": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "node_modules/word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", - "dev": true, - "license": "MIT" - }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "peer": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "peer": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "peer": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "peer": true - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true, - "license": "ISC" - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true, - "peer": true, - "engines": { - "node": ">=0.4" - } - }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true, - "peer": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true, - "license": "ISC" - }, - "node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true, - "peer": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=10" - } - } - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", - "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", - "dev": true, - "requires": { - "@babel/highlight": "^7.16.7" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", - "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", - "dev": true - }, - "@babel/highlight": { - "version": "7.16.10", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz", - "integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@eslint/eslintrc": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", - "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", - "dev": true, - "requires": { - "ajv": "^6.12.4", - "debug": "^4.1.1", - "espree": "^7.3.0", - "globals": "^13.9.0", - "ignore": "^4.0.6", - "import-fresh": "^3.2.1", - "js-yaml": "^3.13.1", - "minimatch": "^3.0.4", - "strip-json-comments": "^3.1.1" - }, - "dependencies": { - "ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", - "dev": true - }, - "strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true - } - } - }, - "@gar/promisify": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", - "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", - "dev": true - }, - "@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - } - }, - "@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true - }, - "@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - } - }, - "@npmcli/fs": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", - "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", - "dev": true, - "requires": { - "@gar/promisify": "^1.0.1", - "semver": "^7.3.5" - } - }, - "@npmcli/move-file": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", - "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", - "dev": true, - "requires": { - "mkdirp": "^1.0.4", - "rimraf": "^3.0.2" - } - }, - "@octokit/auth-token": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.5.0.tgz", - "integrity": "sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==", - "dev": true, - "requires": { - "@octokit/types": "^6.0.3" - } - }, - "@octokit/core": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/@octokit/core/-/core-3.5.1.tgz", - "integrity": "sha512-omncwpLVxMP+GLpLPgeGJBF6IWJFjXDS5flY5VbppePYX9XehevbDykRH9PdCdvqt9TS5AOTiDide7h0qrkHjw==", - "dev": true, - "requires": { - "@octokit/auth-token": "^2.4.4", - "@octokit/graphql": "^4.5.8", - "@octokit/request": "^5.6.0", - "@octokit/request-error": "^2.0.5", - "@octokit/types": "^6.0.3", - "before-after-hook": "^2.2.0", - "universal-user-agent": "^6.0.0" - } - }, - "@octokit/endpoint": { - "version": "6.0.12", - "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.12.tgz", - "integrity": "sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==", - "dev": true, - "requires": { - "@octokit/types": "^6.0.3", - "is-plain-object": "^5.0.0", - "universal-user-agent": "^6.0.0" - } - }, - "@octokit/graphql": { - "version": "4.8.0", - "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.8.0.tgz", - "integrity": "sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==", - "dev": true, - "requires": { - "@octokit/request": "^5.6.0", - "@octokit/types": "^6.0.3", - "universal-user-agent": "^6.0.0" - } - }, - "@octokit/openapi-types": { - "version": "11.2.0", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-11.2.0.tgz", - "integrity": "sha512-PBsVO+15KSlGmiI8QAzaqvsNlZlrDlyAJYcrXBCvVUxCp7VnXjkwPoFHgjEJXx3WF9BAwkA6nfCUA7i9sODzKA==", - "dev": true - }, - "@octokit/plugin-paginate-rest": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.17.0.tgz", - "integrity": "sha512-tzMbrbnam2Mt4AhuyCHvpRkS0oZ5MvwwcQPYGtMv4tUa5kkzG58SVB0fcsLulOZQeRnOgdkZWkRUiyBlh0Bkyw==", - "dev": true, - "requires": { - "@octokit/types": "^6.34.0" - } - }, - "@octokit/plugin-request-log": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz", - "integrity": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==", - "dev": true, - "requires": {} - }, - "@octokit/plugin-rest-endpoint-methods": { - "version": "5.13.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.13.0.tgz", - "integrity": "sha512-uJjMTkN1KaOIgNtUPMtIXDOjx6dGYysdIFhgA52x4xSadQCz3b/zJexvITDVpANnfKPW/+E0xkOvLntqMYpviA==", - "dev": true, - "requires": { - "@octokit/types": "^6.34.0", - "deprecation": "^2.3.1" - } - }, - "@octokit/request": { - "version": "5.6.3", - "resolved": "https://registry.npmjs.org/@octokit/request/-/request-5.6.3.tgz", - "integrity": "sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==", - "dev": true, - "requires": { - "@octokit/endpoint": "^6.0.1", - "@octokit/request-error": "^2.1.0", - "@octokit/types": "^6.16.1", - "is-plain-object": "^5.0.0", - "node-fetch": "^2.6.7", - "universal-user-agent": "^6.0.0" - } - }, - "@octokit/request-error": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.1.0.tgz", - "integrity": "sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==", - "dev": true, - "requires": { - "@octokit/types": "^6.0.3", - "deprecation": "^2.0.0", - "once": "^1.4.0" - } - }, - "@octokit/rest": { - "version": "18.12.0", - "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-18.12.0.tgz", - "integrity": "sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==", - "dev": true, - "requires": { - "@octokit/core": "^3.5.1", - "@octokit/plugin-paginate-rest": "^2.16.8", - "@octokit/plugin-request-log": "^1.0.4", - "@octokit/plugin-rest-endpoint-methods": "^5.12.0" - } - }, - "@octokit/types": { - "version": "6.34.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-6.34.0.tgz", - "integrity": "sha512-s1zLBjWhdEI2zwaoSgyOFoKSl109CUcVBCc7biPJ3aAf6LGLU6szDvi31JPU7bxfla2lqfhjbbg/5DdFNxOwHw==", - "dev": true, - "requires": { - "@octokit/openapi-types": "^11.2.0" - } - }, - "@semantic-release/changelog": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@semantic-release/changelog/-/changelog-6.0.1.tgz", - "integrity": "sha512-FT+tAGdWHr0RCM3EpWegWnvXJ05LQtBkQUaQRIExONoXjVjLuOILNm4DEKNaV+GAQyJjbLRVs57ti//GypH6PA==", - "dev": true, - "requires": { - "@semantic-release/error": "^3.0.0", - "aggregate-error": "^3.0.0", - "fs-extra": "^9.0.0", - "lodash": "^4.17.4" - } - }, - "@semantic-release/commit-analyzer": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-9.0.2.tgz", - "integrity": "sha512-E+dr6L+xIHZkX4zNMe6Rnwg4YQrWNXK+rNsvwOPpdFppvZO1olE2fIgWhv89TkQErygevbjsZFSIxp+u6w2e5g==", - "dev": true, - "requires": { - "conventional-changelog-angular": "^5.0.0", - "conventional-commits-filter": "^2.0.0", - "conventional-commits-parser": "^3.2.3", - "debug": "^4.0.0", - "import-from": "^4.0.0", - "lodash": "^4.17.4", - "micromatch": "^4.0.2" - } - }, - "@semantic-release/error": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-3.0.0.tgz", - "integrity": "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==", - "dev": true - }, - "@semantic-release/git": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/@semantic-release/git/-/git-10.0.1.tgz", - "integrity": "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==", - "dev": true, - "requires": { - "@semantic-release/error": "^3.0.0", - "aggregate-error": "^3.0.0", - "debug": "^4.0.0", - "dir-glob": "^3.0.0", - "execa": "^5.0.0", - "lodash": "^4.17.4", - "micromatch": "^4.0.0", - "p-reduce": "^2.0.0" - } - }, - "@semantic-release/github": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-8.0.2.tgz", - "integrity": "sha512-wIbfhOeuxlYzMTjtSAa2xgr54n7ZuPAS2gadyTWBpUt2PNAPgla7A6XxCXJnaKPgfVF0iFfSk3B+KlVKk6ByVg==", - "dev": true, - "requires": { - "@octokit/rest": "^18.0.0", - "@semantic-release/error": "^2.2.0", - "aggregate-error": "^3.0.0", - "bottleneck": "^2.18.1", - "debug": "^4.0.0", - "dir-glob": "^3.0.0", - "fs-extra": "^10.0.0", - "globby": "^11.0.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "issue-parser": "^6.0.0", - "lodash": "^4.17.4", - "mime": "^3.0.0", - "p-filter": "^2.0.0", - "p-retry": "^4.0.0", - "url-join": "^4.0.0" - }, - "dependencies": { - "@semantic-release/error": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-2.2.0.tgz", - "integrity": "sha512-9Tj/qn+y2j+sjCI3Jd+qseGtHjOAeg7dU2/lVcqIQ9TV3QDaDXDYXcoOHU+7o2Hwh8L8ymL4gfuO7KxDs3q2zg==", - "dev": true - }, - "fs-extra": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.1.tgz", - "integrity": "sha512-NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - } - } - }, - "@semantic-release/npm": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-9.0.1.tgz", - "integrity": "sha512-I5nVZklxBzfMFwemhRNbSrkiN/dsH3c7K9+KSk6jUnq0rdLFUuJt7EBsysq4Ir3moajQgFkfEryEHPqiKJj20g==", - "dev": true, - "requires": { - "@semantic-release/error": "^3.0.0", - "aggregate-error": "^3.0.0", - "execa": "^5.0.0", - "fs-extra": "^10.0.0", - "lodash": "^4.17.15", - "nerf-dart": "^1.0.0", - "normalize-url": "^6.0.0", - "npm": "^8.3.0", - "rc": "^1.2.8", - "read-pkg": "^5.0.0", - "registry-auth-token": "^4.0.0", - "semver": "^7.1.2", - "tempy": "^1.0.0" - }, - "dependencies": { - "fs-extra": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.1.tgz", - "integrity": "sha512-NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - } - } - }, - "@semantic-release/release-notes-generator": { - "version": "10.0.3", - "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-10.0.3.tgz", - "integrity": "sha512-k4x4VhIKneOWoBGHkx0qZogNjCldLPRiAjnIpMnlUh6PtaWXp/T+C9U7/TaNDDtgDa5HMbHl4WlREdxHio6/3w==", - "dev": true, - "requires": { - "conventional-changelog-angular": "^5.0.0", - "conventional-changelog-writer": "^5.0.0", - "conventional-commits-filter": "^2.0.0", - "conventional-commits-parser": "^3.2.3", - "debug": "^4.0.0", - "get-stream": "^6.0.0", - "import-from": "^4.0.0", - "into-stream": "^6.0.0", - "lodash": "^4.17.4", - "read-pkg-up": "^7.0.0" - } - }, - "@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", - "dev": true - }, - "@types/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", - "dev": true, - "requires": { - "@types/minimatch": "*", - "@types/node": "*" - } - }, - "@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=", - "dev": true - }, - "@types/minimatch": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", - "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", - "dev": true - }, - "@types/minimist": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", - "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", - "dev": true - }, - "@types/node": { - "version": "17.0.14", - "dev": true - }, - "@types/normalize-package-data": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", - "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", - "dev": true - }, - "@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", - "dev": true, - "peer": true - }, - "@types/retry": { - "version": "0.12.1", - "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.1.tgz", - "integrity": "sha512-xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g==", - "dev": true - }, - "@xmldom/xmldom": { - "version": "0.7.9", - "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.9.tgz", - "integrity": "sha512-yceMpm/xd4W2a85iqZyO09gTnHvXF6pyiWjD2jcOJs7hRoZtNNOO1eJlhHj1ixA+xip2hOyGn+LgcvLCMo5zXA==", - "dev": true - }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true - }, - "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "requires": {} - }, - "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "requires": { - "debug": "4" - } - }, - "agentkeepalive": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz", - "integrity": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==", - "dev": true, - "requires": { - "debug": "^4.1.0", - "depd": "^1.1.2", - "humanize-ms": "^1.2.1" - } - }, - "aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - } - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ansi-colors": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", - "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", - "dev": true - }, - "ansi-escapes": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-5.0.0.tgz", - "integrity": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==", - "dev": true, - "peer": true, - "requires": { - "type-fest": "^1.0.2" - }, - "dependencies": { - "type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", - "dev": true, - "peer": true - } - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "ansicolors": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz", - "integrity": "sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk=", - "dev": true, - "peer": true - }, - "anymatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", - "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", - "dev": true, - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true - }, - "are-we-there-yet": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.0.tgz", - "integrity": "sha512-0GWpv50YSOcLXaN6/FAKY3vfRbllXWV2xvfA/oKJF8pzFhWXPV+yjhJXDBbjscDYowv7Yw1A3uigpzn5iEGTyw==", - "dev": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - } - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "argv-formatter": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/argv-formatter/-/argv-formatter-1.0.0.tgz", - "integrity": "sha1-oMoMvCmltz6Dbuvhy/bF4OTrgvk=", - "dev": true, - "peer": true - }, - "array-ify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", - "integrity": "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=", - "dev": true - }, - "array-includes": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz", - "integrity": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1", - "get-intrinsic": "^1.1.1", - "is-string": "^1.0.7" - } - }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true - }, - "array.prototype.flat": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz", - "integrity": "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0" - } - }, - "arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", - "dev": true - }, - "astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true - }, - "at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", - "dev": true - }, - "axios": { - "version": "0.21.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", - "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", - "dev": true, - "requires": { - "follow-redirects": "^1.14.0" - } - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "before-after-hook": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.2.tgz", - "integrity": "sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==", - "dev": true - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true - }, - "bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "dev": true, - "requires": { - "file-uri-to-path": "1.0.0" - } - }, - "bottleneck": { - "version": "2.19.5", - "resolved": "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz", - "integrity": "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==", - "dev": true - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "bufferstreams": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bufferstreams/-/bufferstreams-3.0.0.tgz", - "integrity": "sha512-Qg0ggJUWJq90vtg4lDsGN9CDWvzBMQxhiEkSOD/sJfYt6BLect3eV1/S6K7SCSKJ34n60rf6U5eUPmQENVE4UA==", - "dev": true, - "requires": { - "readable-stream": "^3.4.0" - } - }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true - }, - "camel-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", - "dev": true, - "requires": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" - } - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - }, - "camelcase-keys": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", - "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", - "dev": true, - "requires": { - "camelcase": "^5.3.1", - "map-obj": "^4.0.0", - "quick-lru": "^4.0.1" - } - }, - "capital-case": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", - "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", - "dev": true, - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "cardinal": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz", - "integrity": "sha1-fMEFXYItISlU0HsIXeolHMe8VQU=", - "dev": true, - "peer": true, - "requires": { - "ansicolors": "~0.3.2", - "redeyed": "~2.1.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "change-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", - "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", - "dev": true, - "requires": { - "camel-case": "^4.1.2", - "capital-case": "^1.0.4", - "constant-case": "^3.0.4", - "dot-case": "^3.0.4", - "header-case": "^2.0.4", - "no-case": "^3.0.4", - "param-case": "^3.0.4", - "pascal-case": "^3.1.2", - "path-case": "^3.0.4", - "sentence-case": "^3.0.4", - "snake-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - } - }, - "chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true - }, - "clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true - }, - "cli-color": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/cli-color/-/cli-color-2.0.1.tgz", - "integrity": "sha512-eBbxZF6fqPUNnf7CLAFOersUnyYzv83tHFLSlts+OAHsNendaqv2tHCq+/MO+b3Y+9JeoUlIvobyxG/Z8GNeOg==", - "dev": true, - "requires": { - "d": "^1.0.1", - "es5-ext": "^0.10.53", - "es6-iterator": "^2.0.3", - "memoizee": "^0.4.15", - "timers-ext": "^0.1.7" - }, - "dependencies": { - "memoizee": { - "version": "0.4.15", - "resolved": "https://registry.npmjs.org/memoizee/-/memoizee-0.4.15.tgz", - "integrity": "sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==", - "dev": true, - "requires": { - "d": "^1.0.1", - "es5-ext": "^0.10.53", - "es6-weak-map": "^2.0.3", - "event-emitter": "^0.3.5", - "is-promise": "^2.2.2", - "lru-queue": "^0.1.0", - "next-tick": "^1.1.0", - "timers-ext": "^0.1.7" - } - }, - "next-tick": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", - "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", - "dev": true - } - } - }, - "cli-table3": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.1.tgz", - "integrity": "sha512-w0q/enDHhPLq44ovMGdQeeDLvwxwavsJX7oQGYt/LrBlYsyaxyDnp6z3QzFut/6kLLKnlcUVJLrpB7KBfgG/RA==", - "dev": true, - "peer": true, - "requires": { - "colors": "1.4.0", - "string-width": "^4.2.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "dev": true - }, - "color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true - }, - "colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", - "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", - "dev": true, - "optional": true, - "peer": true - }, - "commander": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", - "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", - "dev": true - }, - "compare-func": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", - "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", - "dev": true, - "requires": { - "array-ify": "^1.0.0", - "dot-prop": "^5.1.0" - } - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true - }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", - "dev": true - }, - "constant-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", - "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", - "dev": true, - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case": "^2.0.2" - } - }, - "conventional-changelog-angular": { - "version": "5.0.13", - "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz", - "integrity": "sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==", - "dev": true, - "requires": { - "compare-func": "^2.0.0", - "q": "^1.5.1" - } - }, - "conventional-changelog-writer": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz", - "integrity": "sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==", - "dev": true, - "requires": { - "conventional-commits-filter": "^2.0.7", - "dateformat": "^3.0.0", - "handlebars": "^4.7.7", - "json-stringify-safe": "^5.0.1", - "lodash": "^4.17.15", - "meow": "^8.0.0", - "semver": "^6.0.0", - "split": "^1.0.0", - "through2": "^4.0.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "conventional-commits-filter": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz", - "integrity": "sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==", - "dev": true, - "requires": { - "lodash.ismatch": "^4.4.0", - "modify-values": "^1.0.0" - } - }, - "conventional-commits-parser": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz", - "integrity": "sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==", - "dev": true, - "requires": { - "is-text-path": "^1.0.1", - "JSONStream": "^1.0.4", - "lodash": "^4.17.15", - "meow": "^8.0.0", - "split2": "^3.0.0", - "through2": "^4.0.0" - } - }, - "copy-anything": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", - "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", - "dev": true, - "requires": { - "is-what": "^3.14.1" - } - }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true - }, - "cosmiconfig": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", - "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", - "dev": true, - "peer": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - } - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "crypto-random-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", - "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", - "dev": true - }, - "cubic2quad": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/cubic2quad/-/cubic2quad-1.2.1.tgz", - "integrity": "sha512-wT5Y7mO8abrV16gnssKdmIhIbA9wSkeMzhh27jAguKrV82i24wER0vL5TGhUJ9dbJNDcigoRZ0IAHFEEEI4THQ==", - "dev": true - }, - "d": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", - "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", - "dev": true, - "requires": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" - } - }, - "dateformat": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz", - "integrity": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==", - "dev": true - }, - "debug": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", - "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "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 - } - } - }, - "deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "dev": true - }, - "deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", - "dev": true, - "requires": { - "object-keys": "^1.0.12" - } - }, - "del": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/del/-/del-6.0.0.tgz", - "integrity": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==", - "dev": true, - "requires": { - "globby": "^11.0.1", - "graceful-fs": "^4.2.4", - "is-glob": "^4.0.1", - "is-path-cwd": "^2.2.0", - "is-path-inside": "^3.0.2", - "p-map": "^4.0.0", - "rimraf": "^3.0.2", - "slash": "^3.0.0" - }, - "dependencies": { - "p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "requires": { - "aggregate-error": "^3.0.0" - } - } - } - }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", - "dev": true - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", - "dev": true - }, - "deprecation": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", - "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", - "dev": true - }, - "dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "requires": { - "path-type": "^4.0.0" - } - }, - "doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", - "dev": true, - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "dot-prop": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", - "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", - "dev": true, - "requires": { - "is-obj": "^2.0.0" - } - }, - "dotenv": { - "version": "16.0.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.0.tgz", - "integrity": "sha512-qD9WU0MPM4SWLPJy/r2Be+2WgQj8plChsyrCNQzW/0WjvcJQiKQJ9mH3ZgB3fxbUUxgc/11ZJ0Fi5KiimWGz2Q==", - "dev": true - }, - "duplexer2": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", - "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", - "dev": true, - "peer": true, - "requires": { - "readable-stream": "^2.0.2" - }, - "dependencies": { - "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, - "peer": 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, - "peer": 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, - "peer": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "dev": true, - "optional": true, - "requires": { - "iconv-lite": "^0.6.2" - }, - "dependencies": { - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "optional": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - } - } - }, - "enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", - "dev": true, - "requires": { - "ansi-colors": "^4.1.1" - } - }, - "env-ci": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/env-ci/-/env-ci-5.5.0.tgz", - "integrity": "sha512-o0JdWIbOLP+WJKIUt36hz1ImQQFuN92nhsfTkHHap+J8CiI8WgGpH/a9jEGHh4/TU5BUUGjlnKXNoDb57+ne+A==", - "dev": true, - "peer": true, - "requires": { - "execa": "^5.0.0", - "fromentries": "^1.3.2", - "java-properties": "^1.0.0" - } - }, - "env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "dev": true - }, - "err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", - "dev": true - }, - "errno": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", - "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", - "dev": true, - "optional": true, - "requires": { - "prr": "~1.0.1" - } - }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "requires": { - "is-arrayish": "^0.2.1" - } - }, - "es-abstract": { - "version": "1.19.1", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", - "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "get-symbol-description": "^1.0.0", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "internal-slot": "^1.0.3", - "is-callable": "^1.2.4", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.1", - "is-string": "^1.0.7", - "is-weakref": "^1.0.1", - "object-inspect": "^1.11.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" - } - }, - "es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - } - }, - "es5-ext": { - "version": "0.10.53", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", - "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", - "dev": true, - "requires": { - "es6-iterator": "~2.0.3", - "es6-symbol": "~3.1.3", - "next-tick": "~1.0.0" - } - }, - "es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", - "dev": true, - "requires": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" - } - }, - "es6-symbol": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", - "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", - "dev": true, - "requires": { - "d": "^1.0.1", - "ext": "^1.1.2" - } - }, - "es6-weak-map": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", - "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", - "dev": true, - "requires": { - "d": "1", - "es5-ext": "^0.10.46", - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.1" - } - }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true, - "peer": true - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true - }, - "eslint": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.25.0.tgz", - "integrity": "sha512-TVpSovpvCNpLURIScDRB6g5CYu/ZFq9GfX2hLNIV4dSBKxIWojeDODvYl3t0k0VtMxYeR8OXPCFE5+oHMlGfhw==", - "dev": true, - "requires": { - "@babel/code-frame": "7.12.11", - "@eslint/eslintrc": "^0.4.0", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.0.1", - "doctrine": "^3.0.0", - "enquirer": "^2.3.5", - "eslint-scope": "^5.1.1", - "eslint-utils": "^2.1.0", - "eslint-visitor-keys": "^2.0.0", - "espree": "^7.3.1", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "file-entry-cache": "^6.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^5.0.0", - "globals": "^13.6.0", - "ignore": "^4.0.6", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "js-yaml": "^3.13.1", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash": "^4.17.21", - "minimatch": "^3.0.4", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "progress": "^2.0.0", - "regexpp": "^3.1.0", - "semver": "^7.2.1", - "strip-ansi": "^6.0.0", - "strip-json-comments": "^3.1.0", - "table": "^6.0.4", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", - "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", - "dev": true, - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", - "dev": true - }, - "strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "eslint-config-standard": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-16.0.3.tgz", - "integrity": "sha512-x4fmJL5hGqNJKGHSjnLdgA6U6h1YW/G2dW9fA+cyVur4SK6lyue8+UgNKWlZtUDTXvgKDD/Oa3GQjmB5kjtVvg==", - "dev": true, - "requires": {} - }, - "eslint-import-resolver-node": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", - "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", - "dev": true, - "requires": { - "debug": "^3.2.7", - "resolve": "^1.20.0" - }, - "dependencies": { - "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" - } - } - } - }, - "eslint-module-utils": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz", - "integrity": "sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==", - "dev": true, - "requires": { - "debug": "^3.2.7", - "find-up": "^2.1.0" - }, - "dependencies": { - "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" - } - }, - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "requires": { - "locate-path": "^2.0.0" - } - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "requires": { - "p-try": "^1.0.0" - } - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "requires": { - "p-limit": "^1.1.0" - } - }, - "p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", - "dev": true - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true - } - } - }, - "eslint-plugin-es": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz", - "integrity": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==", - "dev": true, - "requires": { - "eslint-utils": "^2.0.0", - "regexpp": "^3.0.0" - } - }, - "eslint-plugin-header": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-header/-/eslint-plugin-header-3.1.1.tgz", - "integrity": "sha512-9vlKxuJ4qf793CmeeSrZUvVClw6amtpghq3CuWcB5cUNnWHQhgcqy5eF8oVKFk1G3Y/CbchGfEaw3wiIJaNmVg==", - "dev": true, - "requires": {} - }, - "eslint-plugin-import": { - "version": "2.25.4", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.25.4.tgz", - "integrity": "sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==", - "dev": true, - "requires": { - "array-includes": "^3.1.4", - "array.prototype.flat": "^1.2.5", - "debug": "^2.6.9", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-module-utils": "^2.7.2", - "has": "^1.0.3", - "is-core-module": "^2.8.0", - "is-glob": "^4.0.3", - "minimatch": "^3.0.4", - "object.values": "^1.1.5", - "resolve": "^1.20.0", - "tsconfig-paths": "^3.12.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - } - } - }, - "eslint-plugin-node": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz", - "integrity": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==", - "dev": true, - "requires": { - "eslint-plugin-es": "^3.0.0", - "eslint-utils": "^2.0.0", - "ignore": "^5.1.1", - "minimatch": "^3.0.4", - "resolve": "^1.10.1", - "semver": "^6.1.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "eslint-plugin-promise": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-4.3.1.tgz", - "integrity": "sha512-bY2sGqyptzFBDLh/GMbAxfdJC+b0f23ME63FOE4+Jao0oZ3E1LEwFtWJX/1pGMJLiTtrSSern2CRM/g+dfc0eQ==", - "dev": true - }, - "eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - } - }, - "eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", - "dev": true, - "requires": { - "eslint-visitor-keys": "^1.1.0" - }, - "dependencies": { - "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true - } - } - }, - "eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "dev": true - }, - "espree": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", - "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", - "dev": true, - "requires": { - "acorn": "^7.4.0", - "acorn-jsx": "^5.3.1", - "eslint-visitor-keys": "^1.3.0" - }, - "dependencies": { - "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true - } - } - }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true - }, - "esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", - "dev": true, - "requires": { - "estraverse": "^5.1.0" - }, - "dependencies": { - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true - } - } - }, - "esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "requires": { - "estraverse": "^5.2.0" - }, - "dependencies": { - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true - } - } - }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true - }, - "event-emitter": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", - "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=", - "dev": true, - "requires": { - "d": "1", - "es5-ext": "~0.10.14" - } - }, - "execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - } - }, - "ext": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz", - "integrity": "sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==", - "dev": true, - "requires": { - "type": "^2.5.0" - }, - "dependencies": { - "type": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/type/-/type-2.6.0.tgz", - "integrity": "sha512-eiDBDOmkih5pMbo9OqsqPRGMljLodLcwd5XD5JbtNB0o89xZAwynY9EdCDsJU7LtcVCClu9DvM7/0Ep1hYX3EQ==", - "dev": true - } - } - }, - "fantasticon": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/fantasticon/-/fantasticon-1.2.3.tgz", - "integrity": "sha512-VoPXI8+wbLq4qooK2LAFRcqKtOCR20+InF/Io/9I1kLp3IT+LwqJgeFijFvp9a3HRZptfCAxNvazoVHn4kihzQ==", - "dev": true, - "requires": { - "change-case": "^4.1.2", - "cli-color": "^2.0.0", - "commander": "^7.2.0", - "glob": "^7.2.0", - "handlebars": "^4.7.7", - "slugify": "^1.6.0", - "svg2ttf": "^6.0.3", - "svgicons2svgfont": "^10.0.3", - "ttf2eot": "^2.0.0", - "ttf2woff": "^3.0.0", - "ttf2woff2": "^4.0.4" - }, - "dependencies": { - "commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "dev": true - } - } - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "fast-glob": { - "version": "3.2.11", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", - "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - } - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", - "dev": true - }, - "fastq": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", - "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", - "dev": true, - "requires": { - "reusify": "^1.0.4" - } - }, - "figma-js": { - "version": "1.14.0", - "resolved": "https://registry.npmjs.org/figma-js/-/figma-js-1.14.0.tgz", - "integrity": "sha512-XqUmDmGj8tJkjNEuSoKWke0dzbRedya0jc0Ob3lr/g0pLeQI5TtMmz5zpsFLw4KRRtbDD5V/J2MRJhm9nvRS+A==", - "dev": true, - "requires": { - "axios": "^0.21.1" - } - }, - "figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dev": true, - "peer": true, - "requires": { - "escape-string-regexp": "^1.0.5" - } - }, - "file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "requires": { - "flat-cache": "^3.0.4" - } - }, - "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 - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "find-versions": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-4.0.0.tgz", - "integrity": "sha512-wgpWy002tA+wgmO27buH/9KzyEOQnKsG/R0yrcjPT9BOFm0zRBVQbZ95nRGXWMywS8YR5knRbpohio0bcJABxQ==", - "dev": true, - "peer": true, - "requires": { - "semver-regex": "^3.1.2" - } - }, - "flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", - "dev": true, - "requires": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" - } - }, - "flatted": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz", - "integrity": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==", - "dev": true - }, - "follow-redirects": { - "version": "1.14.9", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz", - "integrity": "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==", - "dev": true - }, - "from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" - }, - "dependencies": { - "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" - } - } - } - }, - "fromentries": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz", - "integrity": "sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==", - "dev": true, - "peer": true - }, - "fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, - "requires": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true - }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "optional": true - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", - "dev": true - }, - "gauge": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.2.tgz", - "integrity": "sha512-aSPRm2CvA9R8QyU5eXMFPd+cYkyxLsXHd2l5/FOH2V/eml//M04G6KZOmTap07O1PvEwNcl2NndyLfK8g3QrKA==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1", - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.3", - "console-control-strings": "^1.1.0", - "has-unicode": "^2.0.1", - "signal-exit": "^3.0.7", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.5" - } - }, - "geometry-interfaces": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/geometry-interfaces/-/geometry-interfaces-1.1.4.tgz", - "integrity": "sha512-qD6OdkT6NcES9l4Xx3auTpwraQruU7dARbQPVO71MKvkGYw5/z/oIiGymuFXrRaEQa5Y67EIojUpaLeGEa5hGA==", - "dev": true - }, - "get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true, - "peer": true - }, - "get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true - }, - "get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - } - }, - "git-log-parser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/git-log-parser/-/git-log-parser-1.2.0.tgz", - "integrity": "sha1-LmpMGxP8AAKCB7p5WnrDFme5/Uo=", - "dev": true, - "peer": true, - "requires": { - "argv-formatter": "~1.0.0", - "spawn-error-forwarder": "~1.0.0", - "split2": "~1.0.0", - "stream-combiner2": "~1.1.1", - "through2": "~2.0.0", - "traverse": "~0.6.6" - }, - "dependencies": { - "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, - "peer": 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, - "peer": true - }, - "split2": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/split2/-/split2-1.0.0.tgz", - "integrity": "sha1-UuLiIdiMdfmnP5BVbiY/+WdysxQ=", - "dev": true, - "peer": true, - "requires": { - "through2": "~2.0.0" - } - }, - "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, - "peer": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "peer": true, - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - } - } - }, - "glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "requires": { - "is-glob": "^4.0.1" - } - }, - "globals": { - "version": "13.12.1", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.12.1.tgz", - "integrity": "sha512-317dFlgY2pdJZ9rspXDks7073GpDmXdfbM3vYYp0HAMKGDh1FfWPleI2ljVNLQX5M5lXcAslTcPTrOrMEFOjyw==", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - }, - "dependencies": { - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true - } - } - }, - "globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - } - }, - "graceful-fs": { - "version": "4.2.9", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz", - "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==", - "dev": true - }, - "handlebars": { - "version": "4.7.7", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", - "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", - "dev": true, - "requires": { - "minimist": "^1.2.5", - "neo-async": "^2.6.0", - "source-map": "^0.6.1", - "uglify-js": "^3.1.4", - "wordwrap": "^1.0.0" - } - }, - "hard-rejection": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", - "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", - "dev": true - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-bigints": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", - "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "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-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, - "requires": { - "has-symbols": "^1.0.2" - } - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", - "dev": true - }, - "header-case": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", - "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", - "dev": true, - "requires": { - "capital-case": "^1.0.4", - "tslib": "^2.0.3" - } - }, - "hook-std": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hook-std/-/hook-std-2.0.0.tgz", - "integrity": "sha512-zZ6T5WcuBMIUVh49iPQS9t977t7C0l7OtHrpeMb5uk48JdflRX0NSFvCekfYNmGQETnLq9W/isMyHl69kxGi8g==", - "dev": true, - "peer": true - }, - "hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true - }, - "http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", - "dev": true, - "requires": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - } - }, - "https-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", - "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", - "dev": true, - "requires": { - "agent-base": "6", - "debug": "4" - } - }, - "human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true - }, - "humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=", - "dev": true, - "requires": { - "ms": "^2.0.0" - } - }, - "husky": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/husky/-/husky-6.0.0.tgz", - "integrity": "sha512-SQS2gDTB7tBN486QSoKPKQItZw97BMOd+Kdb6ghfpBc0yXyzrddI0oDV5MkDAbuB4X2mO3/nj60TRMcYxwzZeQ==", - "dev": true - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "optional": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", - "dev": true - }, - "ignore-by-default": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", - "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", - "dev": true - }, - "image-size": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", - "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", - "dev": true, - "optional": true - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "dependencies": { - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true - } - } - }, - "import-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-from/-/import-from-4.0.0.tgz", - "integrity": "sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==", - "dev": true - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true - }, - "indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true - }, - "infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "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", - "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - } - }, - "into-stream": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-6.0.0.tgz", - "integrity": "sha512-XHbaOAvP+uFKUFsOgoNPRjLkwB+I22JFPFe5OjTkQ0nwgj6+pSjb4NmB6VMxaPshLiOf+zcpOCBQuLwC1KHhZA==", - "dev": true, - "requires": { - "from2": "^2.3.0", - "p-is-promise": "^3.0.0" - } - }, - "ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", - "dev": true - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "dev": true - }, - "is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "requires": { - "has-bigints": "^1.0.1" - } - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-callable": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", - "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", - "dev": true - }, - "is-core-module": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", - "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-lambda": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=", - "dev": true - }, - "is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true - }, - "is-number-object": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz", - "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", - "dev": true - }, - "is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", - "dev": true - }, - "is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true - }, - "is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", - "dev": true - }, - "is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true - }, - "is-promise": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", - "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", - "dev": true - }, - "is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "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": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true - }, - "is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, - "requires": { - "has-symbols": "^1.0.2" - } - }, - "is-text-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz", - "integrity": "sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=", - "dev": true, - "requires": { - "text-extensions": "^1.0.0" - } - }, - "is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2" - } - }, - "is-what": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", - "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", - "dev": true - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "dev": true - }, - "issue-parser": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-6.0.0.tgz", - "integrity": "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==", - "dev": true, - "requires": { - "lodash.capitalize": "^4.2.1", - "lodash.escaperegexp": "^4.1.2", - "lodash.isplainobject": "^4.0.6", - "lodash.isstring": "^4.0.1", - "lodash.uniqby": "^4.7.0" - } - }, - "java-properties": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/java-properties/-/java-properties-1.0.2.tgz", - "integrity": "sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==", - "dev": true, - "peer": true - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - }, - "js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "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", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true, - "peer": true - }, - "json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", - "dev": true - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", - "dev": true - }, - "json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "jsonc-parser": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz", - "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==", - "dev": true - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "jsonparse": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", - "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=", - "dev": true - }, - "JSONStream": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", - "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", - "dev": true, - "requires": { - "jsonparse": "^1.2.0", - "through": ">=2.2.7 <3" - } - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - }, - "less": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/less/-/less-4.1.2.tgz", - "integrity": "sha512-EoQp/Et7OSOVu0aJknJOtlXZsnr8XE8KwuzTHOLeVSEx8pVWUICc8Q0VYRHgzyjX78nMEyC/oztWFbgyhtNfDA==", - "dev": true, - "requires": { - "copy-anything": "^2.0.1", - "errno": "^0.1.1", - "graceful-fs": "^4.1.2", - "image-size": "~0.5.0", - "make-dir": "^2.1.0", - "mime": "^1.4.1", - "needle": "^2.5.2", - "parse-node-version": "^1.0.1", - "source-map": "~0.6.0", - "tslib": "^2.3.0" - }, - "dependencies": { - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true, - "optional": true - } - } - }, - "levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "requires": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - } - }, - "lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - }, - "load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", - "dev": true, - "peer": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - }, - "dependencies": { - "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", - "dev": true, - "peer": true, - "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - } - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true, - "peer": true - } - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "lodash.capitalize": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", - "integrity": "sha1-+CbJtOKoUR2E46yinbBeGk87cqk=", - "dev": true - }, - "lodash.escaperegexp": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz", - "integrity": "sha1-ZHYsSGGAglGKw99Mz11YhtriA0c=", - "dev": true - }, - "lodash.ismatch": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz", - "integrity": "sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc=", - "dev": true - }, - "lodash.isplainobject": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", - "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=", - "dev": true - }, - "lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=", - "dev": true - }, - "lodash.truncate": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=", - "dev": true - }, - "lodash.uniqby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz", - "integrity": "sha1-2ZwHpmnp5tJOE2Lf4mbGdhavEwI=", - "dev": true - }, - "lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", - "dev": true, - "requires": { - "tslib": "^2.0.3" - } - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "lru-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz", - "integrity": "sha1-Jzi9nw089PhEkMVzbEhpmsYyzaM=", - "dev": true, - "requires": { - "es5-ext": "~0.10.2" - } - }, - "make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dev": true, - "optional": true, - "requires": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "optional": true - } - } - }, - "map-obj": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", - "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", - "dev": true - }, - "marked": { - "version": "4.0.12", - "resolved": "https://registry.npmjs.org/marked/-/marked-4.0.12.tgz", - "integrity": "sha512-hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ==", - "dev": true, - "peer": true - }, - "marked-terminal": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/marked-terminal/-/marked-terminal-5.1.1.tgz", - "integrity": "sha512-+cKTOx9P4l7HwINYhzbrBSyzgxO2HaHKGZGuB1orZsMIgXYaJyfidT81VXRdpelW/PcHEWxywscePVgI/oUF6g==", - "dev": true, - "peer": true, - "requires": { - "ansi-escapes": "^5.0.0", - "cardinal": "^2.1.1", - "chalk": "^5.0.0", - "cli-table3": "^0.6.1", - "node-emoji": "^1.11.0", - "supports-hyperlinks": "^2.2.0" - }, - "dependencies": { - "chalk": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.0.0.tgz", - "integrity": "sha512-/duVOqst+luxCQRKEo4bNxinsOQtMP80ZYm7mMqzuh5PociNL0PvmHFvREJ9ueYL2TxlHjBcmLCdmocx9Vg+IQ==", - "dev": true, - "peer": true - } - } - }, - "meow": { - "version": "8.1.2", - "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", - "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", - "dev": true, - "requires": { - "@types/minimist": "^1.2.0", - "camelcase-keys": "^6.2.2", - "decamelize-keys": "^1.1.0", - "hard-rejection": "^2.1.0", - "minimist-options": "4.1.0", - "normalize-package-data": "^3.0.0", - "read-pkg-up": "^7.0.1", - "redent": "^3.0.0", - "trim-newlines": "^3.0.0", - "type-fest": "^0.18.0", - "yargs-parser": "^20.2.3" - }, - "dependencies": { - "hosted-git-info": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", - "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "normalize-package-data": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", - "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", - "dev": true, - "requires": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", - "semver": "^7.3.4", - "validate-npm-package-license": "^3.0.1" - } - }, - "type-fest": { - "version": "0.18.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", - "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", - "dev": true - } - } - }, - "merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true - }, - "microbuffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/microbuffer/-/microbuffer-1.0.0.tgz", - "integrity": "sha1-izgy7UDIfVH0e7I0kTppinVtGdI=", - "dev": true - }, - "micromatch": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", - "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", - "dev": true, - "requires": { - "braces": "^3.0.1", - "picomatch": "^2.2.3" - } - }, - "mime": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", - "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", - "dev": true - }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, - "min-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", - "dev": true - }, - "minimist-options": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", - "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", - "dev": true, - "requires": { - "arrify": "^1.0.1", - "is-plain-obj": "^1.1.0", - "kind-of": "^6.0.3" - } - }, - "minipass": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz", - "integrity": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "minipass-fetch": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz", - "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==", - "dev": true, - "requires": { - "encoding": "^0.1.12", - "minipass": "^3.1.0", - "minipass-sized": "^1.0.3", - "minizlib": "^2.0.0" - } - }, - "minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dev": true, - "requires": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - } - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "modify-values": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz", - "integrity": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==", - "dev": true - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "nan": { - "version": "2.15.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", - "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", - "dev": true - }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", - "dev": true - }, - "neatequal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/neatequal/-/neatequal-1.0.0.tgz", - "integrity": "sha1-LuEhG8n6bkxVcV/SELsFYC6xrjs=", - "dev": true, - "requires": { - "varstream": "^0.3.2" - } - }, - "needle": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz", - "integrity": "sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==", - "dev": true, - "optional": true, - "requires": { - "debug": "^3.2.6", - "iconv-lite": "^0.4.4", - "sax": "^1.2.4" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "optional": true, - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "dev": true - }, - "neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true - }, - "nerf-dart": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/nerf-dart/-/nerf-dart-1.0.0.tgz", - "integrity": "sha1-5tq3/r9a2Bbqgc9cYpxaDr3nLBo=", - "dev": true - }, - "next-tick": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", - "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=", - "dev": true - }, - "no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", - "dev": true, - "requires": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } - }, - "node-emoji": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz", - "integrity": "sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==", - "dev": true, - "peer": true, - "requires": { - "lodash": "^4.17.21" - } - }, - "node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", - "dev": true, - "requires": { - "whatwg-url": "^5.0.0" - } - }, - "node-gyp": { - "version": "8.4.1", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz", - "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==", - "dev": true, - "requires": { - "env-paths": "^2.2.0", - "glob": "^7.1.4", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^9.1.0", - "nopt": "^5.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^2.0.2" - }, - "dependencies": { - "@tootallnate/once": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", - "dev": true - }, - "cacache": { - "version": "15.3.0", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", - "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", - "dev": true, - "requires": { - "@npmcli/fs": "^1.0.0", - "@npmcli/move-file": "^1.0.1", - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "glob": "^7.1.4", - "infer-owner": "^1.0.4", - "lru-cache": "^6.0.0", - "minipass": "^3.1.1", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.2", - "mkdirp": "^1.0.3", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^8.0.1", - "tar": "^6.0.2", - "unique-filename": "^1.1.1" - } - }, - "http-proxy-agent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", - "dev": true, - "requires": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" - } - }, - "make-fetch-happen": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", - "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", - "dev": true, - "requires": { - "agentkeepalive": "^4.1.3", - "cacache": "^15.2.0", - "http-cache-semantics": "^4.1.0", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^6.0.0", - "minipass": "^3.1.3", - "minipass-collect": "^1.0.2", - "minipass-fetch": "^1.3.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.2", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^6.0.0", - "ssri": "^8.0.0" - } - }, - "p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "requires": { - "aggregate-error": "^3.0.0" - } - } - } - }, - "node-typescript-compiler": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/node-typescript-compiler/-/node-typescript-compiler-2.3.0.tgz", - "integrity": "sha512-MeyHx2cQtrJKFxxaPnrMs01fvJDMpuxEODOHVBw7/9LKVQMaiciZCW3gShdLuwuLuU/ZSgpqZrJKUbqQ5OKVFA==", - "dev": true, - "requires": { - "lodash": "^4", - "path-exists": "^4", - "tildify": "^2" - } - }, - "nodemon": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.20.tgz", - "integrity": "sha512-Km2mWHKKY5GzRg6i1j5OxOHQtuvVsgskLfigG25yTtbyfRGn/GNvIbRyOf1PSCKJ2aT/58TiuUsuOU5UToVViw==", - "dev": true, - "requires": { - "chokidar": "^3.5.2", - "debug": "^3.2.7", - "ignore-by-default": "^1.0.1", - "minimatch": "^3.1.2", - "pstree.remy": "^1.1.8", - "semver": "^5.7.1", - "simple-update-notifier": "^1.0.7", - "supports-color": "^5.5.0", - "touch": "^3.1.0", - "undefsafe": "^2.0.5" - }, - "dependencies": { - "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" - } - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - } - } - }, - "nopt": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", - "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", - "dev": true, - "requires": { - "abbrev": "1" - } - }, - "normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "requires": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - } - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, - "normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", - "dev": true - }, - "npm": { - "version": "8.19.3", - "resolved": "https://registry.npmjs.org/npm/-/npm-8.19.3.tgz", - "integrity": "sha512-0QjmyPtDxSyMWWD8I91QGbrgx9KzbV6C9FK1liEb/K0zppiZkr5KxXc990G+LzPwBHDfRjUBlO9T1qZ08vl9mA==", - "dev": true, - "requires": { - "@isaacs/string-locale-compare": "^1.1.0", - "@npmcli/arborist": "^5.6.3", - "@npmcli/ci-detect": "^2.0.0", - "@npmcli/config": "^4.2.1", - "@npmcli/fs": "^2.1.0", - "@npmcli/map-workspaces": "^2.0.3", - "@npmcli/package-json": "^2.0.0", - "@npmcli/run-script": "^4.2.1", - "abbrev": "~1.1.1", - "archy": "~1.0.0", - "cacache": "^16.1.3", - "chalk": "^4.1.2", - "chownr": "^2.0.0", - "cli-columns": "^4.0.0", - "cli-table3": "^0.6.2", - "columnify": "^1.6.0", - "fastest-levenshtein": "^1.0.12", - "fs-minipass": "^2.1.0", - "glob": "^8.0.1", - "graceful-fs": "^4.2.10", - "hosted-git-info": "^5.2.1", - "ini": "^3.0.1", - "init-package-json": "^3.0.2", - "is-cidr": "^4.0.2", - "json-parse-even-better-errors": "^2.3.1", - "libnpmaccess": "^6.0.4", - "libnpmdiff": "^4.0.5", - "libnpmexec": "^4.0.14", - "libnpmfund": "^3.0.5", - "libnpmhook": "^8.0.4", - "libnpmorg": "^4.0.4", - "libnpmpack": "^4.1.3", - "libnpmpublish": "^6.0.5", - "libnpmsearch": "^5.0.4", - "libnpmteam": "^4.0.4", - "libnpmversion": "^3.0.7", - "make-fetch-happen": "^10.2.0", - "minimatch": "^5.1.0", - "minipass": "^3.1.6", - "minipass-pipeline": "^1.2.4", - "mkdirp": "^1.0.4", - "mkdirp-infer-owner": "^2.0.0", - "ms": "^2.1.2", - "node-gyp": "^9.1.0", - "nopt": "^6.0.0", - "npm-audit-report": "^3.0.0", - "npm-install-checks": "^5.0.0", - "npm-package-arg": "^9.1.0", - "npm-pick-manifest": "^7.0.2", - "npm-profile": "^6.2.0", - "npm-registry-fetch": "^13.3.1", - "npm-user-validate": "^1.0.1", - "npmlog": "^6.0.2", - "opener": "^1.5.2", - "p-map": "^4.0.0", - "pacote": "^13.6.2", - "parse-conflict-json": "^2.0.2", - "proc-log": "^2.0.1", - "qrcode-terminal": "^0.12.0", - "read": "~1.0.7", - "read-package-json": "^5.0.2", - "read-package-json-fast": "^2.0.3", - "readdir-scoped-modules": "^1.1.0", - "rimraf": "^3.0.2", - "semver": "^7.3.7", - "ssri": "^9.0.1", - "tar": "^6.1.11", - "text-table": "~0.2.0", - "tiny-relative-date": "^1.3.0", - "treeverse": "^2.0.0", - "validate-npm-package-name": "^4.0.0", - "which": "^2.0.2", - "write-file-atomic": "^4.0.1" - }, - "dependencies": { - "@colors/colors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "bundled": true, - "dev": true, - "optional": true - }, - "@gar/promisify": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", - "bundled": true, - "dev": true - }, - "@isaacs/string-locale-compare": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@isaacs/string-locale-compare/-/string-locale-compare-1.1.0.tgz", - "bundled": true, - "dev": true - }, - "@npmcli/arborist": { - "version": "5.6.3", - "resolved": "https://registry.npmjs.org/@npmcli/arborist/-/arborist-5.6.3.tgz", - "bundled": true, - "dev": true, - "requires": { - "@isaacs/string-locale-compare": "^1.1.0", - "@npmcli/installed-package-contents": "^1.0.7", - "@npmcli/map-workspaces": "^2.0.3", - "@npmcli/metavuln-calculator": "^3.0.1", - "@npmcli/move-file": "^2.0.0", - "@npmcli/name-from-folder": "^1.0.1", - "@npmcli/node-gyp": "^2.0.0", - "@npmcli/package-json": "^2.0.0", - "@npmcli/query": "^1.2.0", - "@npmcli/run-script": "^4.1.3", - "bin-links": "^3.0.3", - "cacache": "^16.1.3", - "common-ancestor-path": "^1.0.1", - "hosted-git-info": "^5.2.1", - "json-parse-even-better-errors": "^2.3.1", - "json-stringify-nice": "^1.1.4", - "minimatch": "^5.1.0", - "mkdirp": "^1.0.4", - "mkdirp-infer-owner": "^2.0.0", - "nopt": "^6.0.0", - "npm-install-checks": "^5.0.0", - "npm-package-arg": "^9.0.0", - "npm-pick-manifest": "^7.0.2", - "npm-registry-fetch": "^13.0.0", - "npmlog": "^6.0.2", - "pacote": "^13.6.1", - "parse-conflict-json": "^2.0.1", - "proc-log": "^2.0.0", - "promise-all-reject-late": "^1.0.0", - "promise-call-limit": "^1.0.1", - "read-package-json-fast": "^2.0.2", - "readdir-scoped-modules": "^1.1.0", - "rimraf": "^3.0.2", - "semver": "^7.3.7", - "ssri": "^9.0.0", - "treeverse": "^2.0.0", - "walk-up-path": "^1.0.0" - } - }, - "@npmcli/ci-detect": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/ci-detect/-/ci-detect-2.0.0.tgz", - "bundled": true, - "dev": true - }, - "@npmcli/config": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@npmcli/config/-/config-4.2.2.tgz", - "bundled": true, - "dev": true, - "requires": { - "@npmcli/map-workspaces": "^2.0.2", - "ini": "^3.0.0", - "mkdirp-infer-owner": "^2.0.0", - "nopt": "^6.0.0", - "proc-log": "^2.0.0", - "read-package-json-fast": "^2.0.3", - "semver": "^7.3.5", - "walk-up-path": "^1.0.0" - } - }, - "@npmcli/disparity-colors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/disparity-colors/-/disparity-colors-2.0.0.tgz", - "bundled": true, - "dev": true, - "requires": { - "ansi-styles": "^4.3.0" - } - }, - "@npmcli/fs": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.2.tgz", - "bundled": true, - "dev": true, - "requires": { - "@gar/promisify": "^1.1.3", - "semver": "^7.3.5" - } - }, - "@npmcli/git": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-3.0.2.tgz", - "bundled": true, - "dev": true, - "requires": { - "@npmcli/promise-spawn": "^3.0.0", - "lru-cache": "^7.4.4", - "mkdirp": "^1.0.4", - "npm-pick-manifest": "^7.0.0", - "proc-log": "^2.0.0", - "promise-inflight": "^1.0.1", - "promise-retry": "^2.0.1", - "semver": "^7.3.5", - "which": "^2.0.2" - } - }, - "@npmcli/installed-package-contents": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-1.0.7.tgz", - "bundled": true, - "dev": true, - "requires": { - "npm-bundled": "^1.1.1", - "npm-normalize-package-bin": "^1.0.1" - }, - "dependencies": { - "npm-bundled": { - "version": "1.1.2", - "bundled": true, - "dev": true, - "requires": { - "npm-normalize-package-bin": "^1.0.1" - } - } - } - }, - "@npmcli/map-workspaces": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@npmcli/map-workspaces/-/map-workspaces-2.0.4.tgz", - "bundled": true, - "dev": true, - "requires": { - "@npmcli/name-from-folder": "^1.0.1", - "glob": "^8.0.1", - "minimatch": "^5.0.1", - "read-package-json-fast": "^2.0.3" - } - }, - "@npmcli/metavuln-calculator": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@npmcli/metavuln-calculator/-/metavuln-calculator-3.1.1.tgz", - "bundled": true, - "dev": true, - "requires": { - "cacache": "^16.0.0", - "json-parse-even-better-errors": "^2.3.1", - "pacote": "^13.0.3", - "semver": "^7.3.5" - } - }, - "@npmcli/move-file": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-2.0.1.tgz", - "bundled": true, - "dev": true, - "requires": { - "mkdirp": "^1.0.4", - "rimraf": "^3.0.2" - } - }, - "@npmcli/name-from-folder": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@npmcli/name-from-folder/-/name-from-folder-1.0.1.tgz", - "bundled": true, - "dev": true - }, - "@npmcli/node-gyp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-2.0.0.tgz", - "bundled": true, - "dev": true - }, - "@npmcli/package-json": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-2.0.0.tgz", - "bundled": true, - "dev": true, - "requires": { - "json-parse-even-better-errors": "^2.3.1" - } - }, - "@npmcli/promise-spawn": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-3.0.0.tgz", - "bundled": true, - "dev": true, - "requires": { - "infer-owner": "^1.0.4" - } - }, - "@npmcli/query": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@npmcli/query/-/query-1.2.0.tgz", - "bundled": true, - "dev": true, - "requires": { - "npm-package-arg": "^9.1.0", - "postcss-selector-parser": "^6.0.10", - "semver": "^7.3.7" - } - }, - "@npmcli/run-script": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-4.2.1.tgz", - "bundled": true, - "dev": true, - "requires": { - "@npmcli/node-gyp": "^2.0.0", - "@npmcli/promise-spawn": "^3.0.0", - "node-gyp": "^9.0.0", - "read-package-json-fast": "^2.0.3", - "which": "^2.0.2" - } - }, - "@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", - "bundled": true, - "dev": true - }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "bundled": true, - "dev": true - }, - "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "bundled": true, - "dev": true, - "requires": { - "debug": "4" - } - }, - "agentkeepalive": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz", - "bundled": true, - "dev": true, - "requires": { - "debug": "^4.1.0", - "depd": "^1.1.2", - "humanize-ms": "^1.2.1" - } - }, - "aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "bundled": true, - "dev": true, - "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "bundled": true, - "dev": true - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "bundled": true, - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "bundled": true, - "dev": true - }, - "archy": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", - "bundled": true, - "dev": true - }, - "are-we-there-yet": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", - "bundled": true, - "dev": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - } - }, - "asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "bundled": true, - "dev": true - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "bundled": true, - "dev": true - }, - "bin-links": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/bin-links/-/bin-links-3.0.3.tgz", - "bundled": true, - "dev": true, - "requires": { - "cmd-shim": "^5.0.0", - "mkdirp-infer-owner": "^2.0.0", - "npm-normalize-package-bin": "^2.0.0", - "read-cmd-shim": "^3.0.0", - "rimraf": "^3.0.0", - "write-file-atomic": "^4.0.0" - }, - "dependencies": { - "npm-normalize-package-bin": { - "version": "2.0.0", - "bundled": true, - "dev": true - } - } - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "bundled": true, - "dev": true - }, - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "bundled": true, - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "builtins": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", - "bundled": true, - "dev": true, - "requires": { - "semver": "^7.0.0" - } - }, - "cacache": { - "version": "16.1.3", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-16.1.3.tgz", - "bundled": true, - "dev": true, - "requires": { - "@npmcli/fs": "^2.1.0", - "@npmcli/move-file": "^2.0.0", - "chownr": "^2.0.0", - "fs-minipass": "^2.1.0", - "glob": "^8.0.1", - "infer-owner": "^1.0.4", - "lru-cache": "^7.7.1", - "minipass": "^3.1.6", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "mkdirp": "^1.0.4", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^9.0.0", - "tar": "^6.1.11", - "unique-filename": "^2.0.0" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "bundled": true, - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "bundled": true, - "dev": true - }, - "cidr-regex": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/cidr-regex/-/cidr-regex-3.1.1.tgz", - "bundled": true, - "dev": true, - "requires": { - "ip-regex": "^4.1.0" - } - }, - "clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "bundled": true, - "dev": true - }, - "cli-columns": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cli-columns/-/cli-columns-4.0.0.tgz", - "bundled": true, - "dev": true, - "requires": { - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" - } - }, - "cli-table3": { - "version": "0.6.2", - "bundled": true, - "dev": true, - "requires": { - "@colors/colors": "1.5.0", - "string-width": "^4.2.0" - } - }, - "clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "bundled": true, - "dev": true - }, - "cmd-shim": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cmd-shim/-/cmd-shim-5.0.0.tgz", - "bundled": true, - "dev": true, - "requires": { - "mkdirp-infer-owner": "^2.0.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "bundled": true, - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "bundled": true, - "dev": true - }, - "color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "bundled": true, - "dev": true - }, - "columnify": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/columnify/-/columnify-1.6.0.tgz", - "bundled": true, - "dev": true, - "requires": { - "strip-ansi": "^6.0.1", - "wcwidth": "^1.0.0" - } - }, - "common-ancestor-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz", - "bundled": true, - "dev": true - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "bundled": true, - "dev": true - }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", - "bundled": true, - "dev": true - }, - "cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "bundled": true, - "dev": true - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "bundled": true, - "dev": true, - "requires": { - "ms": "2.1.2" - }, - "dependencies": { - "ms": { - "version": "2.1.2", - "bundled": true, - "dev": true - } - } - }, - "debuglog": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz", - "bundled": true, - "dev": true - }, - "defaults": { - "version": "1.0.3", - "bundled": true, - "dev": true, - "requires": { - "clone": "^1.0.2" - } - }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", - "bundled": true, - "dev": true - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", - "bundled": true, - "dev": true - }, - "dezalgo": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.4.tgz", - "bundled": true, - "dev": true, - "requires": { - "asap": "^2.0.0", - "wrappy": "1" - } - }, - "diff": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz", - "bundled": true, - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "bundled": true, - "dev": true - }, - "encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "iconv-lite": "^0.6.2" - } - }, - "env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "bundled": true, - "dev": true - }, - "err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", - "bundled": true, - "dev": true - }, - "fastest-levenshtein": { - "version": "1.0.12", - "bundled": true, - "dev": true - }, - "fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "bundled": true, - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "bundled": true, - "dev": true - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "bundled": true, - "dev": true - }, - "gauge": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", - "bundled": true, - "dev": true, - "requires": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.3", - "console-control-strings": "^1.1.0", - "has-unicode": "^2.0.1", - "signal-exit": "^3.0.7", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.5" - } - }, - "glob": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz", - "bundled": true, - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - } - }, - "graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "bundled": true, - "dev": true - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "bundled": true, - "dev": true, - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "bundled": true, - "dev": true - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", - "bundled": true, - "dev": true - }, - "hosted-git-info": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-5.2.1.tgz", - "bundled": true, - "dev": true, - "requires": { - "lru-cache": "^7.5.1" - } - }, - "http-cache-semantics": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", - "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", - "bundled": true, - "dev": true - }, - "http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", - "bundled": true, - "dev": true, - "requires": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - } - }, - "https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "bundled": true, - "dev": true, - "requires": { - "agent-base": "6", - "debug": "4" - } - }, - "humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=", - "bundled": true, - "dev": true, - "requires": { - "ms": "^2.0.0" - } - }, - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - }, - "ignore-walk": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-5.0.1.tgz", - "bundled": true, - "dev": true, - "requires": { - "minimatch": "^5.0.1" - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "bundled": true, - "dev": true - }, - "indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "bundled": true, - "dev": true - }, - "infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "bundled": true, - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "bundled": true, - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "bundled": true, - "dev": true - }, - "ini": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ini/-/ini-3.0.1.tgz", - "bundled": true, - "dev": true - }, - "init-package-json": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/init-package-json/-/init-package-json-3.0.2.tgz", - "bundled": true, - "dev": true, - "requires": { - "npm-package-arg": "^9.0.1", - "promzard": "^0.3.0", - "read": "^1.0.7", - "read-package-json": "^5.0.0", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4", - "validate-npm-package-name": "^4.0.0" - } - }, - "ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", - "bundled": true, - "dev": true - }, - "ip-regex": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-4.3.0.tgz", - "bundled": true, - "dev": true - }, - "is-cidr": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/is-cidr/-/is-cidr-4.0.2.tgz", - "bundled": true, - "dev": true, - "requires": { - "cidr-regex": "^3.1.1" - } - }, - "is-core-module": { - "version": "2.10.0", - "bundled": true, - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "bundled": true, - "dev": true - }, - "is-lambda": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=", - "bundled": true, - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "bundled": true, - "dev": true - }, - "json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "bundled": true, - "dev": true - }, - "json-stringify-nice": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz", - "bundled": true, - "dev": true - }, - "jsonparse": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", - "bundled": true, - "dev": true - }, - "just-diff": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/just-diff/-/just-diff-5.1.1.tgz", - "bundled": true, - "dev": true - }, - "just-diff-apply": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/just-diff-apply/-/just-diff-apply-5.4.1.tgz", - "bundled": true, - "dev": true - }, - "libnpmaccess": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/libnpmaccess/-/libnpmaccess-6.0.4.tgz", - "bundled": true, - "dev": true, - "requires": { - "aproba": "^2.0.0", - "minipass": "^3.1.1", - "npm-package-arg": "^9.0.1", - "npm-registry-fetch": "^13.0.0" - } - }, - "libnpmdiff": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/libnpmdiff/-/libnpmdiff-4.0.5.tgz", - "bundled": true, - "dev": true, - "requires": { - "@npmcli/disparity-colors": "^2.0.0", - "@npmcli/installed-package-contents": "^1.0.7", - "binary-extensions": "^2.2.0", - "diff": "^5.1.0", - "minimatch": "^5.0.1", - "npm-package-arg": "^9.0.1", - "pacote": "^13.6.1", - "tar": "^6.1.0" - } - }, - "libnpmexec": { - "version": "4.0.14", - "resolved": "https://registry.npmjs.org/libnpmexec/-/libnpmexec-4.0.14.tgz", - "bundled": true, - "dev": true, - "requires": { - "@npmcli/arborist": "^5.6.3", - "@npmcli/ci-detect": "^2.0.0", - "@npmcli/fs": "^2.1.1", - "@npmcli/run-script": "^4.2.0", - "chalk": "^4.1.0", - "mkdirp-infer-owner": "^2.0.0", - "npm-package-arg": "^9.0.1", - "npmlog": "^6.0.2", - "pacote": "^13.6.1", - "proc-log": "^2.0.0", - "read": "^1.0.7", - "read-package-json-fast": "^2.0.2", - "semver": "^7.3.7", - "walk-up-path": "^1.0.0" - } - }, - "libnpmfund": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/libnpmfund/-/libnpmfund-3.0.5.tgz", - "bundled": true, - "dev": true, - "requires": { - "@npmcli/arborist": "^5.6.3" - } - }, - "libnpmhook": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/libnpmhook/-/libnpmhook-8.0.4.tgz", - "bundled": true, - "dev": true, - "requires": { - "aproba": "^2.0.0", - "npm-registry-fetch": "^13.0.0" - } - }, - "libnpmorg": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/libnpmorg/-/libnpmorg-4.0.4.tgz", - "bundled": true, - "dev": true, - "requires": { - "aproba": "^2.0.0", - "npm-registry-fetch": "^13.0.0" - } - }, - "libnpmpack": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/libnpmpack/-/libnpmpack-4.1.3.tgz", - "bundled": true, - "dev": true, - "requires": { - "@npmcli/run-script": "^4.1.3", - "npm-package-arg": "^9.0.1", - "pacote": "^13.6.1" - } - }, - "libnpmpublish": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/libnpmpublish/-/libnpmpublish-6.0.5.tgz", - "bundled": true, - "dev": true, - "requires": { - "normalize-package-data": "^4.0.0", - "npm-package-arg": "^9.0.1", - "npm-registry-fetch": "^13.0.0", - "semver": "^7.3.7", - "ssri": "^9.0.0" - } - }, - "libnpmsearch": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/libnpmsearch/-/libnpmsearch-5.0.4.tgz", - "bundled": true, - "dev": true, - "requires": { - "npm-registry-fetch": "^13.0.0" - } - }, - "libnpmteam": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/libnpmteam/-/libnpmteam-4.0.4.tgz", - "bundled": true, - "dev": true, - "requires": { - "aproba": "^2.0.0", - "npm-registry-fetch": "^13.0.0" - } - }, - "libnpmversion": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/libnpmversion/-/libnpmversion-3.0.7.tgz", - "bundled": true, - "dev": true, - "requires": { - "@npmcli/git": "^3.0.0", - "@npmcli/run-script": "^4.1.3", - "json-parse-even-better-errors": "^2.3.1", - "proc-log": "^2.0.0", - "semver": "^7.3.7" - } - }, - "lru-cache": { - "version": "7.13.2", - "bundled": true, - "dev": true - }, - "make-fetch-happen": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", - "bundled": true, - "dev": true, - "requires": { - "agentkeepalive": "^4.2.1", - "cacache": "^16.1.0", - "http-cache-semantics": "^4.1.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^3.1.6", - "minipass-collect": "^1.0.2", - "minipass-fetch": "^2.0.3", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^7.0.0", - "ssri": "^9.0.0" - } - }, - "minimatch": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", - "bundled": true, - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - }, - "minipass": { - "version": "3.3.4", - "bundled": true, - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "bundled": true, - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "minipass-fetch": { - "version": "2.1.1", - "bundled": true, - "dev": true, - "requires": { - "encoding": "^0.1.13", - "minipass": "^3.1.6", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" - } - }, - "minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "bundled": true, - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "minipass-json-stream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", - "bundled": true, - "dev": true, - "requires": { - "jsonparse": "^1.3.1", - "minipass": "^3.0.0" - } - }, - "minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "bundled": true, - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", - "bundled": true, - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "bundled": true, - "dev": true, - "requires": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - } - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "bundled": true, - "dev": true - }, - "mkdirp-infer-owner": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/mkdirp-infer-owner/-/mkdirp-infer-owner-2.0.0.tgz", - "bundled": true, - "dev": true, - "requires": { - "chownr": "^2.0.0", - "infer-owner": "^1.0.4", - "mkdirp": "^1.0.3" - } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "bundled": true, - "dev": true - }, - "mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "bundled": true, - "dev": true - }, - "negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "bundled": true, - "dev": true - }, - "node-gyp": { - "version": "9.1.0", - "bundled": true, - "dev": true, - "requires": { - "env-paths": "^2.2.0", - "glob": "^7.1.4", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^10.0.3", - "nopt": "^5.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^2.0.2" - }, - "dependencies": { - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "bundled": true, - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "glob": { - "version": "7.2.3", - "bundled": true, - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "bundled": true, - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "nopt": { - "version": "5.0.0", - "bundled": true, - "dev": true, - "requires": { - "abbrev": "1" - } - } - } - }, - "nopt": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", - "bundled": true, - "dev": true, - "requires": { - "abbrev": "^1.0.0" - } - }, - "normalize-package-data": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-4.0.1.tgz", - "bundled": true, - "dev": true, - "requires": { - "hosted-git-info": "^5.0.0", - "is-core-module": "^2.8.1", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" - } - }, - "npm-audit-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/npm-audit-report/-/npm-audit-report-3.0.0.tgz", - "bundled": true, - "dev": true, - "requires": { - "chalk": "^4.0.0" - } - }, - "npm-bundled": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-2.0.1.tgz", - "bundled": true, - "dev": true, - "requires": { - "npm-normalize-package-bin": "^2.0.0" - }, - "dependencies": { - "npm-normalize-package-bin": { - "version": "2.0.0", - "bundled": true, - "dev": true - } - } - }, - "npm-install-checks": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-5.0.0.tgz", - "bundled": true, - "dev": true, - "requires": { - "semver": "^7.1.1" - } - }, - "npm-normalize-package-bin": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", - "bundled": true, - "dev": true - }, - "npm-package-arg": { - "version": "9.1.0", - "bundled": true, - "dev": true, - "requires": { - "hosted-git-info": "^5.0.0", - "proc-log": "^2.0.1", - "semver": "^7.3.5", - "validate-npm-package-name": "^4.0.0" - } - }, - "npm-packlist": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.1.3.tgz", - "bundled": true, - "dev": true, - "requires": { - "glob": "^8.0.1", - "ignore-walk": "^5.0.1", - "npm-bundled": "^2.0.0", - "npm-normalize-package-bin": "^2.0.0" - }, - "dependencies": { - "npm-normalize-package-bin": { - "version": "2.0.0", - "bundled": true, - "dev": true - } - } - }, - "npm-pick-manifest": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-7.0.2.tgz", - "bundled": true, - "dev": true, - "requires": { - "npm-install-checks": "^5.0.0", - "npm-normalize-package-bin": "^2.0.0", - "npm-package-arg": "^9.0.0", - "semver": "^7.3.5" - }, - "dependencies": { - "npm-normalize-package-bin": { - "version": "2.0.0", - "bundled": true, - "dev": true - } - } - }, - "npm-profile": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/npm-profile/-/npm-profile-6.2.1.tgz", - "bundled": true, - "dev": true, - "requires": { - "npm-registry-fetch": "^13.0.1", - "proc-log": "^2.0.0" - } - }, - "npm-registry-fetch": { - "version": "13.3.1", - "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-13.3.1.tgz", - "bundled": true, - "dev": true, - "requires": { - "make-fetch-happen": "^10.0.6", - "minipass": "^3.1.6", - "minipass-fetch": "^2.0.3", - "minipass-json-stream": "^1.0.1", - "minizlib": "^2.1.2", - "npm-package-arg": "^9.0.1", - "proc-log": "^2.0.0" - } - }, - "npm-user-validate": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/npm-user-validate/-/npm-user-validate-1.0.1.tgz", - "bundled": true, - "dev": true - }, - "npmlog": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", - "bundled": true, - "dev": true, - "requires": { - "are-we-there-yet": "^3.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^4.0.3", - "set-blocking": "^2.0.0" - } - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "bundled": true, - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "opener": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", - "bundled": true, - "dev": true - }, - "p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "bundled": true, - "dev": true, - "requires": { - "aggregate-error": "^3.0.0" - } - }, - "pacote": { - "version": "13.6.2", - "resolved": "https://registry.npmjs.org/pacote/-/pacote-13.6.2.tgz", - "bundled": true, - "dev": true, - "requires": { - "@npmcli/git": "^3.0.0", - "@npmcli/installed-package-contents": "^1.0.7", - "@npmcli/promise-spawn": "^3.0.0", - "@npmcli/run-script": "^4.1.0", - "cacache": "^16.0.0", - "chownr": "^2.0.0", - "fs-minipass": "^2.1.0", - "infer-owner": "^1.0.4", - "minipass": "^3.1.6", - "mkdirp": "^1.0.4", - "npm-package-arg": "^9.0.0", - "npm-packlist": "^5.1.0", - "npm-pick-manifest": "^7.0.0", - "npm-registry-fetch": "^13.0.1", - "proc-log": "^2.0.0", - "promise-retry": "^2.0.1", - "read-package-json": "^5.0.0", - "read-package-json-fast": "^2.0.3", - "rimraf": "^3.0.2", - "ssri": "^9.0.0", - "tar": "^6.1.11" - } - }, - "parse-conflict-json": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/parse-conflict-json/-/parse-conflict-json-2.0.2.tgz", - "bundled": true, - "dev": true, - "requires": { - "json-parse-even-better-errors": "^2.3.1", - "just-diff": "^5.0.1", - "just-diff-apply": "^5.2.0" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "bundled": true, - "dev": true - }, - "postcss-selector-parser": { - "version": "6.0.10", - "bundled": true, - "dev": true, - "requires": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - } - }, - "proc-log": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-2.0.1.tgz", - "bundled": true, - "dev": true - }, - "promise-all-reject-late": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-all-reject-late/-/promise-all-reject-late-1.0.1.tgz", - "bundled": true, - "dev": true - }, - "promise-call-limit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-call-limit/-/promise-call-limit-1.0.1.tgz", - "bundled": true, - "dev": true - }, - "promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", - "bundled": true, - "dev": true - }, - "promise-retry": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", - "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", - "bundled": true, - "dev": true, - "requires": { - "err-code": "^2.0.2", - "retry": "^0.12.0" - } - }, - "promzard": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/promzard/-/promzard-0.3.0.tgz", - "bundled": true, - "dev": true, - "requires": { - "read": "1" - } - }, - "qrcode-terminal": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz", - "bundled": true, - "dev": true - }, - "read": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", - "bundled": true, - "dev": true, - "requires": { - "mute-stream": "~0.0.4" - } - }, - "read-cmd-shim": { - "version": "3.0.0", - "bundled": true, - "dev": true - }, - "read-package-json": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-5.0.2.tgz", - "bundled": true, - "dev": true, - "requires": { - "glob": "^8.0.1", - "json-parse-even-better-errors": "^2.3.1", - "normalize-package-data": "^4.0.0", - "npm-normalize-package-bin": "^2.0.0" - }, - "dependencies": { - "npm-normalize-package-bin": { - "version": "2.0.0", - "bundled": true, - "dev": true - } - } - }, - "read-package-json-fast": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz", - "bundled": true, - "dev": true, - "requires": { - "json-parse-even-better-errors": "^2.3.0", - "npm-normalize-package-bin": "^1.0.1" - } - }, - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "bundled": true, - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "readdir-scoped-modules": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz", - "bundled": true, - "dev": true, - "requires": { - "debuglog": "^1.0.1", - "dezalgo": "^1.0.0", - "graceful-fs": "^4.1.2", - "once": "^1.3.0" - } - }, - "retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", - "bundled": true, - "dev": true - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "bundled": true, - "dev": true, - "requires": { - "glob": "^7.1.3" - }, - "dependencies": { - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "bundled": true, - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "glob": { - "version": "7.2.3", - "bundled": true, - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "bundled": true, - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - } - } - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "bundled": true, - "dev": true - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "bundled": true, - "dev": true, - "optional": true - }, - "semver": { - "version": "7.3.7", - "bundled": true, - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "bundled": true, - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "bundled": true, - "dev": true - }, - "signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "bundled": true, - "dev": true - }, - "smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "bundled": true, - "dev": true - }, - "socks": { - "version": "2.7.0", - "bundled": true, - "dev": true, - "requires": { - "ip": "^2.0.0", - "smart-buffer": "^4.2.0" - } - }, - "socks-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", - "bundled": true, - "dev": true, - "requires": { - "agent-base": "^6.0.2", - "debug": "^4.3.3", - "socks": "^2.6.2" - } - }, - "spdx-correct": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", - "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", - "bundled": true, - "dev": true, - "requires": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", - "bundled": true, - "dev": true - }, - "spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "bundled": true, - "dev": true, - "requires": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-license-ids": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", - "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", - "bundled": true, - "dev": true - }, - "ssri": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-9.0.1.tgz", - "bundled": true, - "dev": true, - "requires": { - "minipass": "^3.1.1" - } - }, - "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "bundled": true, - "dev": true, - "requires": { - "safe-buffer": "~5.2.0" - } - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "bundled": true, - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "bundled": true, - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "bundled": true, - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "tar": { - "version": "6.1.11", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", - "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", - "bundled": true, - "dev": true, - "requires": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^3.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - } - }, - "text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "bundled": true, - "dev": true - }, - "tiny-relative-date": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/tiny-relative-date/-/tiny-relative-date-1.3.0.tgz", - "bundled": true, - "dev": true - }, - "treeverse": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/treeverse/-/treeverse-2.0.0.tgz", - "bundled": true, - "dev": true - }, - "unique-filename": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-2.0.1.tgz", - "bundled": true, - "dev": true, - "requires": { - "unique-slug": "^3.0.0" - } - }, - "unique-slug": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-3.0.0.tgz", - "bundled": true, - "dev": true, - "requires": { - "imurmurhash": "^0.1.4" - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", - "bundled": true, - "dev": true - }, - "validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "bundled": true, - "dev": true, - "requires": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "validate-npm-package-name": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-4.0.0.tgz", - "bundled": true, - "dev": true, - "requires": { - "builtins": "^5.0.0" - } - }, - "walk-up-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/walk-up-path/-/walk-up-path-1.0.0.tgz", - "bundled": true, - "dev": true - }, - "wcwidth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "bundled": true, - "dev": true, - "requires": { - "defaults": "^1.0.3" - } - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "bundled": true, - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - "bundled": true, - "dev": true, - "requires": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "bundled": true, - "dev": true - }, - "write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "bundled": true, - "dev": true, - "requires": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "bundled": true, - "dev": true - } - } - }, - "npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "requires": { - "path-key": "^3.0.0" - } - }, - "npmlog": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.1.tgz", - "integrity": "sha512-BTHDvY6nrRHuRfyjt1MAufLxYdVXZfd099H4+i1f0lPywNQyI4foeNXJRObB/uy+TYqUW0vAD9gbdSOXPst7Eg==", - "dev": true, - "requires": { - "are-we-there-yet": "^3.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^4.0.0", - "set-blocking": "^2.0.0" - } - }, - "object-inspect": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", - "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==", - "dev": true - }, - "object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true - }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - }, - "object.values": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", - "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" - } - }, - "ometa": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/ometa/-/ometa-0.2.2.tgz", - "integrity": "sha1-9TxHNbptVq9aRrBN+3xDNMWW1E4=", - "dev": true - }, - "omod": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/omod/-/omod-1.2.0.tgz", - "integrity": "sha512-j5WX0CEw+3nbm0dtv0WAa6W0raizsi+B+GOJ1W1i7p7M35bx/yQqEEv8uSuGlvdjCCNzO8+5peHEdU8hC5oi5w==", - "dev": true, - "requires": { - "tinycolor2": "^1.4.2" - } - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "requires": { - "mimic-fn": "^2.1.0" - } - }, - "optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", - "dev": true, - "requires": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" - } - }, - "p-each-series": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz", - "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==", - "dev": true, - "peer": true - }, - "p-filter": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-2.1.0.tgz", - "integrity": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==", - "dev": true, - "requires": { - "p-map": "^2.0.0" - } - }, - "p-is-promise": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-3.0.0.tgz", - "integrity": "sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==", - "dev": true - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "p-map": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", - "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", - "dev": true - }, - "p-reduce": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz", - "integrity": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==", - "dev": true - }, - "p-retry": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.1.tgz", - "integrity": "sha512-e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==", - "dev": true, - "requires": { - "@types/retry": "^0.12.0", - "retry": "^0.13.1" - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true - }, - "pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", - "dev": true - }, - "param-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", - "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", - "dev": true, - "requires": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, - "requires": { - "callsites": "^3.0.0" - } - }, - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, - "parse-node-version": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", - "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", - "dev": true - }, - "pascal-case": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", - "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", - "dev": true, - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "path-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", - "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", - "dev": true, - "requires": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true - }, - "path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true - }, - "picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true, - "optional": true - }, - "pkg-conf": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", - "integrity": "sha1-ISZRTKbyq/69FoWW3xi6V4Z/AFg=", - "dev": true, - "peer": true, - "requires": { - "find-up": "^2.0.0", - "load-json-file": "^4.0.0" - }, - "dependencies": { - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "peer": true, - "requires": { - "locate-path": "^2.0.0" - } - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "peer": true, - "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "peer": true, - "requires": { - "p-try": "^1.0.0" - } - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "peer": true, - "requires": { - "p-limit": "^1.1.0" - } - }, - "p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", - "dev": true, - "peer": true - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true, - "peer": true - } - } - }, - "prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true - }, - "prettier": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz", - "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==", - "dev": true - }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "dev": true - }, - "promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", - "dev": true - }, - "promise-retry": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", - "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", - "dev": true, - "requires": { - "err-code": "^2.0.2", - "retry": "^0.12.0" - }, - "dependencies": { - "retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", - "dev": true - } - } - }, - "prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", - "dev": true, - "optional": true - }, - "pstree.remy": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", - "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", - "dev": true - }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "dev": true - }, - "q": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", - "dev": true - }, - "queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true - }, - "quick-lru": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", - "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", - "dev": true - }, - "rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "dev": true, - "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - } - }, - "read-pkg": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", - "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", - "dev": true, - "requires": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^2.5.0", - "parse-json": "^5.0.0", - "type-fest": "^0.6.0" - } - }, - "read-pkg-up": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", - "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", - "dev": true, - "requires": { - "find-up": "^4.1.0", - "read-pkg": "^5.2.0", - "type-fest": "^0.8.1" - }, - "dependencies": { - "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true - } - } - }, - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "requires": { - "picomatch": "^2.2.1" - } - }, - "redent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", - "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", - "dev": true, - "requires": { - "indent-string": "^4.0.0", - "strip-indent": "^3.0.0" - } - }, - "redeyed": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz", - "integrity": "sha1-iYS1gV2ZyyIEacme7v/jiRPmzAs=", - "dev": true, - "peer": true, - "requires": { - "esprima": "~4.0.0" - } - }, - "regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", - "dev": true - }, - "registry-auth-token": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz", - "integrity": "sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==", - "dev": true, - "requires": { - "rc": "^1.2.8" - } - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", - "dev": true, - "peer": true - }, - "require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true - }, - "resolve": { - "version": "1.22.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", - "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", - "dev": true, - "requires": { - "is-core-module": "^2.8.1", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "peer": true - }, - "retry": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", - "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", - "dev": true - }, - "reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "requires": { - "queue-microtask": "^1.2.2" - } - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true, - "optional": true - }, - "sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", - "dev": true - }, - "scss": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/scss/-/scss-0.2.4.tgz", - "integrity": "sha1-BA2QPtN8XU+krTOuH9OJrBKk4GU=", - "dev": true, - "requires": { - "ometa": "0.2.2" - } - }, - "semantic-release": { - "version": "19.0.3", - "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-19.0.3.tgz", - "integrity": "sha512-HaFbydST1cDKZHuFZxB8DTrBLJVK/AnDExpK0s3EqLIAAUAHUgnd+VSJCUtTYQKkAkauL8G9CucODrVCc7BuAA==", - "dev": true, - "peer": true, - "requires": { - "@semantic-release/commit-analyzer": "^9.0.2", - "@semantic-release/error": "^3.0.0", - "@semantic-release/github": "^8.0.0", - "@semantic-release/npm": "^9.0.0", - "@semantic-release/release-notes-generator": "^10.0.0", - "aggregate-error": "^3.0.0", - "cosmiconfig": "^7.0.0", - "debug": "^4.0.0", - "env-ci": "^5.0.0", - "execa": "^5.0.0", - "figures": "^3.0.0", - "find-versions": "^4.0.0", - "get-stream": "^6.0.0", - "git-log-parser": "^1.2.0", - "hook-std": "^2.0.0", - "hosted-git-info": "^4.0.0", - "lodash": "^4.17.21", - "marked": "^4.0.10", - "marked-terminal": "^5.0.0", - "micromatch": "^4.0.2", - "p-each-series": "^2.1.0", - "p-reduce": "^2.0.0", - "read-pkg-up": "^7.0.0", - "resolve-from": "^5.0.0", - "semver": "^7.3.2", - "semver-diff": "^3.1.1", - "signale": "^1.2.1", - "yargs": "^16.2.0" - }, - "dependencies": { - "cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "dev": true, - "peer": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "hosted-git-info": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", - "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", - "dev": true, - "peer": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", - "dev": true, - "peer": true, - "requires": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - } - } - } - }, - "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "semver-diff": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", - "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", - "dev": true, - "peer": true, - "requires": { - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "peer": true - } - } - }, - "semver-regex": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-3.1.4.tgz", - "integrity": "sha512-6IiqeZNgq01qGf0TId0t3NvKzSvUsjcpdEO3AQNeIjR6A2+ckTnQlDpl4qu1bjRv0RzN3FP9hzFmws3lKqRWkA==", - "dev": true, - "peer": true - }, - "sentence-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", - "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", - "dev": true, - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "dev": true - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, - "side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - } - }, - "signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "signale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/signale/-/signale-1.4.0.tgz", - "integrity": "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==", - "dev": true, - "peer": true, - "requires": { - "chalk": "^2.3.2", - "figures": "^2.0.0", - "pkg-conf": "^2.1.0" - }, - "dependencies": { - "figures": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", - "dev": true, - "peer": true, - "requires": { - "escape-string-regexp": "^1.0.5" - } - } - } - }, - "simple-update-notifier": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.0.7.tgz", - "integrity": "sha512-BBKgR84BJQJm6WjWFMHgLVuo61FBDSj1z/xSFUIozqO6wO7ii0JxCqlIud7Enr/+LhlbNI0whErq96P2qHNWew==", - "dev": true, - "requires": { - "semver": "~7.0.0" - }, - "dependencies": { - "semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", - "dev": true - } - } - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true - }, - "slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - } - } - }, - "slugify": { - "version": "1.6.5", - "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.5.tgz", - "integrity": "sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ==", - "dev": true - }, - "smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true - }, - "snake-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", - "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", - "dev": true, - "requires": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", - "dev": true, - "requires": { - "ip": "^2.0.0", - "smart-buffer": "^4.2.0" - } - }, - "socks-proxy-agent": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.1.1.tgz", - "integrity": "sha512-t8J0kG3csjA4g6FTbsMOWws+7R7vuRC8aQ/wy3/1OWmsgwA68zs/+cExQ0koSitUDXqhufF/YJr9wtNMZHw5Ew==", - "dev": true, - "requires": { - "agent-base": "^6.0.2", - "debug": "^4.3.1", - "socks": "^2.6.1" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "spawn-error-forwarder": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/spawn-error-forwarder/-/spawn-error-forwarder-1.0.0.tgz", - "integrity": "sha1-Gv2Uc46ZmwNG17n8NzvlXgdXcCk=", - "dev": true, - "peer": true - }, - "spdx-correct": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", - "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", - "dev": true, - "requires": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", - "dev": true - }, - "spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dev": true, - "requires": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-license-ids": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", - "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", - "dev": true - }, - "split": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", - "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", - "dev": true, - "requires": { - "through": "2" - } - }, - "split2": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", - "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", - "dev": true, - "requires": { - "readable-stream": "^3.0.0" - } - }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", - "dev": true - }, - "ssri": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", - "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", - "dev": true, - "requires": { - "minipass": "^3.1.1" - } - }, - "stream-combiner2": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", - "integrity": "sha1-+02KFCDqNidk4hrUeAOXvry0HL4=", - "dev": true, - "peer": true, - "requires": { - "duplexer2": "~0.1.0", - "readable-stream": "^2.0.2" - }, - "dependencies": { - "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, - "peer": 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, - "peer": 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, - "peer": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "requires": { - "safe-buffer": "~5.2.0" - } - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "string.prototype.trimend": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", - "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "string.prototype.trimstart": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", - "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", - "dev": true - }, - "strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true - }, - "strip-indent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", - "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", - "dev": true, - "requires": { - "min-indent": "^1.0.0" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", - "dev": true - }, - "style-dictionary": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.1.1.tgz", - "integrity": "sha512-Dpugx2wH3ElMvq1GOaSsfUChr8dwujx2/eBUUd0vaSFkP16LRp5XOJMTHF0f8QuPGkpBfVPXDWCkb3oJ3oJjxg==", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "change-case": "^4.1.2", - "commander": "^5.1.0", - "fs-extra": "^8.1.0", - "glob": "^7.1.6", - "json5": "^2.1.3", - "jsonc-parser": "^3.0.0", - "lodash": "^4.17.15", - "tinycolor2": "^1.4.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true - } - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - }, - "supports-hyperlinks": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz", - "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==", - "dev": true, - "peer": true, - "requires": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" - }, - "dependencies": { - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "peer": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "peer": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true - }, - "svg-pathdata": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/svg-pathdata/-/svg-pathdata-6.0.3.tgz", - "integrity": "sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw==", - "dev": true - }, - "svg2ttf": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/svg2ttf/-/svg2ttf-6.0.3.tgz", - "integrity": "sha512-CgqMyZrbOPpc+WqH7aga4JWkDPso23EgypLsbQ6gN3uoPWwwiLjXvzgrwGADBExvCRJrWFzAeK1bSoSpE7ixSQ==", - "dev": true, - "requires": { - "@xmldom/xmldom": "^0.7.2", - "argparse": "^2.0.1", - "cubic2quad": "^1.2.1", - "lodash": "^4.17.10", - "microbuffer": "^1.0.0", - "svgpath": "^2.1.5" - }, - "dependencies": { - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - } - } - }, - "svgicons2svgfont": { - "version": "10.0.5", - "resolved": "https://registry.npmjs.org/svgicons2svgfont/-/svgicons2svgfont-10.0.5.tgz", - "integrity": "sha512-mkP/i0SW5jah4bwIOBpZvrTwJY7rOB3QIIMb/1QwIvJSOScmtAagJTrN3FwHnK1Cu4gw6LgemsefS1Oi0lqkkQ==", - "dev": true, - "requires": { - "commander": "^7.2.0", - "geometry-interfaces": "^1.1.4", - "glob": "^7.1.6", - "neatequal": "^1.0.0", - "readable-stream": "^3.4.0", - "sax": "^1.2.4", - "svg-pathdata": "^6.0.0" - }, - "dependencies": { - "commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "dev": true - } - } - }, - "svgpath": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/svgpath/-/svgpath-2.5.0.tgz", - "integrity": "sha512-o/vohwqjUO9nDAh4rcjE3KaW/v//At8UJu2LJMybXidf5QLQLVA4bxH0//4YCsr+1H4Gw1Wi/Jc62ynzSBYidw==", - "dev": true - }, - "table": { - "version": "6.8.0", - "resolved": "https://registry.npmjs.org/table/-/table-6.8.0.tgz", - "integrity": "sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==", - "dev": true, - "requires": { - "ajv": "^8.0.1", - "lodash.truncate": "^4.4.2", - "slice-ansi": "^4.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" - }, - "dependencies": { - "ajv": { - "version": "8.9.0", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - } - } - }, - "tar": { - "version": "6.1.11", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", - "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", - "dev": true, - "requires": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^3.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - } - }, - "temp-dir": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", - "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", - "dev": true - }, - "tempy": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tempy/-/tempy-1.0.1.tgz", - "integrity": "sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==", - "dev": true, - "requires": { - "del": "^6.0.0", - "is-stream": "^2.0.0", - "temp-dir": "^2.0.0", - "type-fest": "^0.16.0", - "unique-string": "^2.0.0" - }, - "dependencies": { - "type-fest": { - "version": "0.16.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", - "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", - "dev": true - } - } - }, - "text-extensions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz", - "integrity": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==", - "dev": true - }, - "text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", - "dev": true - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", - "dev": true - }, - "through2": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", - "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", - "dev": true, - "requires": { - "readable-stream": "3" - } - }, - "tildify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/tildify/-/tildify-2.0.0.tgz", - "integrity": "sha512-Cc+OraorugtXNfs50hU9KS369rFXCfgGLpfCfvlc+Ud5u6VWmUQsOAa9HbTvheQdYnrdJqqv1e5oIqXppMYnSw==", - "dev": true - }, - "timers-ext": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.7.tgz", - "integrity": "sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==", - "dev": true, - "requires": { - "es5-ext": "~0.10.46", - "next-tick": "1" - } - }, - "tinycolor2": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz", - "integrity": "sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==", - "dev": true - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "requires": { - "is-number": "^7.0.0" - } - }, - "touch": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", - "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", - "dev": true, - "requires": { - "nopt": "~1.0.10" - }, - "dependencies": { - "nopt": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", - "integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==", - "dev": true, - "requires": { - "abbrev": "1" - } - } - } - }, - "tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=", - "dev": true - }, - "traverse": { - "version": "0.6.6", - "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz", - "integrity": "sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=", - "dev": true, - "peer": true - }, - "trim-newlines": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", - "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", - "dev": true - }, - "tsconfig-paths": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.12.0.tgz", - "integrity": "sha512-e5adrnOYT6zqVnWqZu7i/BQ3BnhzvGbjEjejFXO20lKIKpwTaupkCPgEfv4GZK1IBciJUEhYs3J3p75FdaTFVg==", - "dev": true, - "requires": { - "@types/json5": "^0.0.29", - "json5": "^1.0.1", - "minimist": "^1.2.0", - "strip-bom": "^3.0.0" - } - }, - "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==", - "dev": true - }, - "ttf2eot": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ttf2eot/-/ttf2eot-2.0.0.tgz", - "integrity": "sha1-jmM3pYWr0WCKDISVirSDzmn2ZUs=", - "dev": true, - "requires": { - "argparse": "^1.0.6", - "microbuffer": "^1.0.0" - } - }, - "ttf2woff": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ttf2woff/-/ttf2woff-3.0.0.tgz", - "integrity": "sha512-OvmFcj70PhmAsVQKfC15XoKH55cRWuaRzvr2fpTNhTNer6JBpG8n6vOhRrIgxMjcikyYt88xqYXMMVapJ4Rjvg==", - "dev": true, - "requires": { - "argparse": "^2.0.1", - "pako": "^1.0.0" - }, - "dependencies": { - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - } - } - }, - "ttf2woff2": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/ttf2woff2/-/ttf2woff2-4.0.4.tgz", - "integrity": "sha512-pdt/q89D6VmWToUkiwrUo/OrQtmHGr2iBl3GQriHE6xq0cnteb8gJF8UitOdXmFTX8ajKgb3HMGKpKAsCJM61g==", - "dev": true, - "requires": { - "bindings": "^1.5.0", - "bufferstreams": "^3.0.0", - "nan": "^2.14.2", - "node-gyp": "^8.1.0" - } - }, - "type": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", - "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", - "dev": true - }, - "type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "requires": { - "prelude-ls": "^1.2.1" - } - }, - "type-fest": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", - "dev": true - }, - "typescript": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.2.tgz", - "integrity": "sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg==", - "dev": true - }, - "uglify-js": { - "version": "3.15.0", - "dev": true, - "optional": true - }, - "unbox-primitive": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", - "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has-bigints": "^1.0.1", - "has-symbols": "^1.0.2", - "which-boxed-primitive": "^1.0.2" - } - }, - "undefsafe": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", - "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", - "dev": true - }, - "unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", - "dev": true, - "requires": { - "unique-slug": "^2.0.0" - } - }, - "unique-slug": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", - "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4" - } - }, - "unique-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", - "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", - "dev": true, - "requires": { - "crypto-random-string": "^2.0.0" - } - }, - "universal-user-agent": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz", - "integrity": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==", - "dev": true - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - }, - "upper-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", - "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", - "dev": true, - "requires": { - "tslib": "^2.0.3" - } - }, - "upper-case-first": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", - "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", - "dev": true, - "requires": { - "tslib": "^2.0.3" - } - }, - "uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "url-join": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz", - "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==", - "dev": true - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", - "dev": true - }, - "v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", - "dev": true - }, - "validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "requires": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "varstream": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/varstream/-/varstream-0.3.2.tgz", - "integrity": "sha1-GKxklHZfP/GjWtmkvgU77BiKXeE=", - "dev": true, - "requires": { - "readable-stream": "^1.0.33" - }, - "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", - "dev": true - }, - "readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "dev": true - } - } - }, - "webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=", - "dev": true - }, - "whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=", - "dev": true, - "requires": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, - "requires": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - } - }, - "wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - "dev": true, - "requires": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", - "dev": true - }, - "wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", - "dev": true - }, - "wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "peer": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "peer": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "peer": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "peer": true - } - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true - }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true, - "peer": true - }, - "y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true, - "peer": true - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true, - "peer": true - }, - "yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true - } - } -} diff --git a/package.json b/package.json index 2b75cde9..3cabc417 100644 --- a/package.json +++ b/package.json @@ -7,10 +7,10 @@ "license": "SEE LICENSE IN https://github.com/Sage/design-tokens/blob/master/license", "repository": { "type": "git", - "url": "https://github.com/Sage/design-tokens" + "url": "git+https://github.com/Sage/design-tokens.git" }, "engines": { - "node": ">=16" + "node": ">=20" }, "engineStrict": true, "tags": [ @@ -18,47 +18,62 @@ "sage", "design system" ], + "type": "module", "scripts": { - "postinstall": "husky install", - "build": "node ./scripts/build.js", - "prebuild": "node ./scripts/prebuild.js", - "postbuild": "node ./scripts/postbuild.js", - "dev:docs": "nodemon --watch \"./scripts/*\" --watch \"./templates/**/*\" --exec \"node ./scripts/tokens-documentation.js\"", - "prepublishOnly": "node ./scripts/bump-main-package-version.js", - "lint": "eslint .", - "format": "eslint --fix ." + "test": "mocha", + "test:watch": "npm test -- --watch", + "build": "node --loader ts-node/esm --no-warnings=ExperimentalWarning ./scripts/build.ts && npm run post-process-css", + "prebuild": "node --loader ts-node/esm --no-warnings=ExperimentalWarning ./scripts/prebuild.ts", + "postbuild": "node --loader ts-node/esm --no-warnings=ExperimentalWarning ./scripts/postbuild.ts", + "post-process-css": "node --loader ts-node/esm --no-warnings=ExperimentalWarning ./scripts/post-process-css", + "prepublishOnly": "node --loader ts-node/esm --no-warnings=ExperimentalWarning ./scripts/bump-main-package-version.ts", + "stylelint:dist": "npx stylelint 'dist/**/*.{css,scss}' --report-needless-disables --report-descriptionless-disables --report-invalid-scope-disables" }, "devDependencies": { - "@semantic-release/changelog": "^6.0.1", - "@semantic-release/commit-analyzer": "^9.0.2", + "@amanda-mitchell/semantic-release-npm-multiple": "^3.11.1", + "@semantic-release/changelog": "^6.0.3", + "@semantic-release/commit-analyzer": "^13.0.0", "@semantic-release/git": "^10.0.1", - "@semantic-release/github": "^8.0.2", - "@semantic-release/npm": "^9.0.0", - "@semantic-release/release-notes-generator": "^10.0.3", - "@types/glob": "^7.1.4", - "dotenv": "^16.0.0", - "eslint": "^7.25.0", - "eslint-config-standard": "^16.0.2", + "@semantic-release/github": "^11.0.1", + "@semantic-release/npm": "^12.0.1", + "@semantic-release/release-notes-generator": "^14.0.1", + "@tokens-studio/sd-transforms": "^1.2.8", + "@tsconfig/strictest": "^2.0.5", + "@types/chai": "^5.0.1", + "@types/fs-extra": "^11.0.4", + "@types/glob": "^8.1.0", + "@types/lodash": "^4.17.13", + "@types/mocha": "^10.0.10", + "@types/node-fetch": "^2.6.12", + "chai": "^5.1.2", + "dotenv": "^16.4.5", + "eslint": "^9.15.0", + "eslint-config-standard": "^17.1.0", "eslint-plugin-header": "^3.1.1", - "eslint-plugin-import": "^2.22.1", - "eslint-plugin-node": "^11.1.0", - "eslint-plugin-promise": "^4.3.1", - "fantasticon": "^1.2.3", - "figma-js": "^1.14.0", - "fs-extra": "^9.1.0", - "glob": "^7.1.7", - "handlebars": "^4.7.7", - "husky": "6", - "less": "^4.1.1", + "eslint-plugin-import": "^2.31.0", + "eslint-plugin-n": "^17.14.0", + "eslint-plugin-promise": "^7.2.1", + "fantasticon": "^3.0.0", + "figma-js": "^1.16.0", + "fs-extra": "^11.2.0", + "glob": "^11.0.0", + "less": "^4.2.1", "lodash": "^4.17.21", - "node-fetch": "2.6.7", - "node-typescript-compiler": "^2.2.1", - "nodemon": "^2.0.20", - "omod": "1.2.0", - "prettier": "^2.2.1", + "mocha": "^10.8.2", + "node-fetch": "^3.3.2", + "nodemon": "^3.1.7", + "prettier": "^3.4.1", "scss": "^0.2.4", - "style-dictionary": "^3.0.1", - "tinycolor2": "^1.4.2", - "typescript": "^4.6.2" + "style-dictionary": "^4.2.0", + "stylelint": "^16.10.0", + "stylelint-config-standard": "^36.0.1", + "stylelint-config-standard-scss": "^13.1.0", + "tinycolor2": "^1.6.0", + "ts-node": "^10.9.2", + "tsx": "^4.19.2", + "typescript": "^5.7.2" + }, + "resolutions": { + "jackspeak": "2.1.1" } } diff --git a/release.config.js b/release.config.js deleted file mode 100644 index 5854f04f..00000000 --- a/release.config.js +++ /dev/null @@ -1,42 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ -const DIST = 'dist' -const CHANGELOG = 'docs/CHANGELOG.md' -const PACKAGE_JSON = 'package.json' - -module.exports = { - branches: ['master'], - plugins: [ - '@semantic-release/commit-analyzer', - '@semantic-release/release-notes-generator', - [ - '@semantic-release/changelog', - { - changelogFile: CHANGELOG - } - ], - [ - '@semantic-release/npm', - { - changelogFile: CHANGELOG, - pkgRoot: DIST, - tarballDir: DIST - } - ], - [ - '@semantic-release/git', - { - assets: [CHANGELOG, PACKAGE_JSON] - } - ], - [ - '@semantic-release/github', - { - assets: `${DIST}/*.tgz` - } - ] - ], - dryRun: false, - debug: false -} diff --git a/scripts/build.js b/scripts/build.js deleted file mode 100644 index d2320fa7..00000000 --- a/scripts/build.js +++ /dev/null @@ -1,87 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ - -const { readJsonSync } = require('fs-extra') -const { dictionary, groups } = require('./style-dictionary') - -const filterPublic = require('./utils/filter-public') -const filterTheme = require('./utils/filter-theme') - -const tokens = readJsonSync('temp/tokens.json') -const publicTokens = filterPublic(tokens) -const themes = Object.keys(publicTokens) - -console.log(`Found ${themes.length} public themes: ${themes.join(', ')}.`) - -themes.forEach((theme) => { - console.log(`\r\nBuilding all platforms for ${theme} theme:`) - - dictionary.extend({ - tokens, - platforms: { - javascript: { - buildPath: 'dist/js/', - transforms: groups.web, - files: [ - { - filter: filterTheme(theme), - destination: `${theme}/common.js`, - format: 'javascript/module-flat' - }, - { - filter: filterTheme(theme), - destination: `${theme}/es6.js`, - format: 'custom/js/es6-module-flat' - } - ] - }, - css: { - buildPath: 'dist/css/', - transforms: groups.web, - files: [ - { - filter: filterTheme(theme), - destination: `${theme}.css`, - format: 'css/variables' - } - ] - }, - scss: { - buildPath: 'dist/scss/', - transforms: groups.web, - files: [ - { - filter: filterTheme(theme), - destination: `${theme}.scss`, - format: 'scss/variables' - } - ] - }, - android: { - buildPath: 'dist/android/', - transforms: groups.mobile, - files: [ - { - filter: filterTheme(theme), - destination: `${theme}.xml`, - format: 'android/resources' - } - ] - }, - ios: { - buildPath: 'dist/ios/', - transforms: groups.mobile, - files: [ - { - filter: filterTheme(theme), - destination: `${theme}.h`, - format: 'ios/macros' - } - ] - } - } - }).buildAllPlatforms() - - console.log('\r\nDone.\r\n') -}) diff --git a/scripts/build.ts b/scripts/build.ts new file mode 100644 index 00000000..a80bf218 --- /dev/null +++ b/scripts/build.ts @@ -0,0 +1,273 @@ +/* +Copyright © 2024 The Sage Group plc or its licensors. All Rights reserved + */ + +import * as fs from "fs" +import { StyleDictionary, groups } from './style-dictionary.js' +import { DesignToken, File } from 'style-dictionary/types' +import { FilterComponent } from './utils/filter-component.js' + +const components = fs.readdirSync('./data/tokens/components/') +const context = fs.readdirSync('./data/tokens/context/') +const modes = fs.readdirSync('./data/tokens/modes/') +const screensize = fs.readdirSync('./data/tokens/screensize/') + +interface IMode { + modeName?: string + format: string + subType: string + suffix: string +} + +interface IFiles extends IMode { + componentName: string + outputRefs?: boolean +} + +interface IConfig { + contextName: string + modeName: string + sizeName: string +} + +const getMode = ({modeName = '', format, subType, suffix}: IMode): File[] => { + const mode = format.includes('variables') ? '' : modeName + + const componentArray: File[] = [] + + components.forEach((component) => { + const componentName = component.split('.json')[0] + + if (!componentName) { + throw new Error( + `Component name not found for ${component}`) + } + + componentArray.push(...getFiles({componentName, modeName: mode, format, subType, suffix, outputRefs: true})) + }) + + return [ + ...getFiles({componentName: 'modes', modeName, format, subType, suffix}), + ...componentArray + ] +} + +const getFiles = ({componentName, modeName = '', format, subType, suffix, outputRefs = false}: IFiles): File[] => { + const hasRefs = suffix === 'css' || suffix === 'scss' + + const getPath = (componentName: string) => { + let path = "" + + switch(componentName) { + case 'modes': + path = hasRefs ? modeName : `${modeName}/mode`; + break + case 'global': + path = 'global'; + break + default: + path = hasRefs ? `components/${componentName}` : `${modeName}/components/${componentName}`; + } + + return path + } + + const path = getPath(componentName).trim() + + return [ + { + destination: `${subType}/${path}.${suffix}`, + filter: (token: DesignToken) => FilterComponent(token, componentName), + format, + options: { + outputReferences: outputRefs + } + } + ] +} + +const getGlobalConfig = ({contextName, sizeName}: IConfig) => { + const subType = `${contextName}/${sizeName}` + + return { + source: [ + './data/tokens/primitives.json', + './data/tokens/global/*.json', + `./data/tokens/screensize/${sizeName}.json` + ], + preprocessors: ['tokens-studio'], + platforms: { + css: { + buildPath: 'dist/css/', + transforms: groups.css, + files: [ + ...getFiles({componentName: 'global', format: 'css/variables', subType, suffix: 'css'}) + ] + }, + scss: { + buildPath: 'dist/scss/', + transforms: groups.scss, + files: [ + ...getFiles({componentName: 'global', format: 'scss/variables', subType, suffix: 'scss'}) + ] + }, + js: { + buildPath: 'dist/js/', + transforms: groups.js, + files: [ + ...getFiles({componentName: 'global', format: 'javascript/module', subType: `common/${subType}`, suffix: 'js'}), + ...getFiles({componentName: 'global', format: 'typescript/module-declarations', subType: `common/${subType}`, suffix: 'd.ts'}), + ...getFiles({componentName: 'global', format: 'javascript/es6', subType: `es6/${subType}`, suffix: 'js'}), + ...getFiles({componentName: 'global', format: 'typescript/es6-declarations', subType: `es6/${subType}`, suffix: 'd.ts'}), + ...getFiles({componentName: 'global', format: 'javascript/umd', subType: `umd/${subType}`, suffix: 'js'}) + ] + }, + json: { + buildPath: 'dist/json/', + transforms: groups.json, + files: [ + ...getFiles({componentName: 'global', format: 'json/nested', subType: `nested/${subType}`, suffix: 'json'}), + ...getFiles({componentName: 'global', format: 'json/flat', subType: `flat/${subType}`, suffix: 'json'}) + ] + }, + // todo: debug android build + // android: { + // buildPath: 'dist/android/', + // transforms: groups.mobile, + // files: [ + // ...getFiles({componentName: 'global', format: 'android/resources', subType, suffix: 'xml'}) + // ] + // }, + ios: { + buildPath: 'dist/ios/', + transforms: groups.mobile, + files: [ + ...getFiles({componentName: 'global', format: 'ios/macros', subType, suffix: 'h'}) + ] + } + }, + log: { + warnings: 'warn', + verbosity: 'verbose', + errors: { + brokenReferences: 'throw', + }, + }, + } +} + +const getModeConfig = ({contextName, modeName, sizeName}: IConfig) => { + const subType = `${contextName}/${sizeName}` + + return { + source: [ + './data/tokens/primitives.json', + './data/tokens/global/*.json', + `./data/tokens/screensize/${sizeName}.json`, + `./data/tokens/modes/${modeName}.json`, + './data/tokens/components/*.json' + ], + platforms: { + css: { + buildPath: 'dist/css/', + transforms: groups.css, + files: [ + ...getMode({modeName, format: 'css/variables', subType, suffix: 'css'}) + ] + }, + scss: { + buildPath: 'dist/scss/', + transforms: groups.scss, + files: [ + ...getMode({modeName, format: 'scss/variables', subType, suffix: 'scss'}) + ] + }, + js: { + buildPath: 'dist/js/', + transforms: groups.js, + files: [ + ...getMode({modeName, format: 'javascript/module', subType: `common/${subType}`, suffix: 'js'}), + ...getMode({modeName, format: 'typescript/module-declarations', subType: `common/${subType}`, suffix: 'd.ts'}), + ...getMode({modeName, format: 'javascript/es6', subType: `es6/${subType}`, suffix: 'js'}), + ...getMode({modeName, format: 'typescript/es6-declarations', subType: `es6/${subType}`, suffix: 'd.ts'}), + ...getMode({modeName, format: 'javascript/umd', subType: `umd/${subType}`, suffix: 'js'}) + ] + }, + json: { + buildPath: 'dist/json/', + transforms: groups.json, + files: [ + ...getMode({modeName, format: 'json/nested', subType: `nested/${subType}`, suffix: 'json'}), + ...getMode({modeName, format: 'json/flat', subType: `flat/${subType}`, suffix: 'json'}) + ] + }, + // todo: debug android build + // android: { + // buildPath: 'dist/android/', + // transforms: groups.mobile, + // files: [ + // ...getMode({modeName, format: 'android/resources', subType, suffix: 'xml'}) + // ] + // }, + ios: { + buildPath: 'dist/ios/', + transforms: groups.mobile, + files: [ + ...getMode({modeName, format: 'ios/macros', subType, suffix: 'h'}) + ] + } + }, + log: { + warnings: 'warn', + verbosity: 'verbose', + errors: { + brokenReferences: 'throw', + }, + }, + } +} + +context.forEach(async (context) => { + const contextName = context.split('.json')[0] + + if (!contextName) { + throw new Error( + `Context name not found for ${context}`) + } + + screensize.forEach(async (size) => { + const sizeName = size.split('.json')[0] + + if (!sizeName) { + throw new Error( + `Size name not found for ${size}`) + } + + const styleDictionary = new StyleDictionary(getGlobalConfig({contextName, modeName: '', sizeName})) + + await styleDictionary.buildPlatform('css') + await styleDictionary.buildPlatform('scss') + await styleDictionary.buildPlatform('js') + await styleDictionary.buildPlatform('json') + await styleDictionary.buildPlatform('ios') + //await styleDictionary.buildPlatform('android') + + modes.forEach(async (mode) => { + const modeName = mode.split('.json')[0] + + if (!modeName) { + throw new Error( + `Mode name not found for ${mode}`) + } + + const styleDictionary = new StyleDictionary(getModeConfig({contextName, modeName, sizeName})) + + await styleDictionary.buildPlatform('css') + await styleDictionary.buildPlatform('scss') + await styleDictionary.buildPlatform('js') + await styleDictionary.buildPlatform('json') + await styleDictionary.buildPlatform('ios') + //await styleDictionary.buildPlatform('android') + }) + }) +}) diff --git a/scripts/bump-main-package-version.js b/scripts/bump-main-package-version.ts similarity index 76% rename from scripts/bump-main-package-version.js rename to scripts/bump-main-package-version.ts index 4d6ad5a6..62f703dc 100644 --- a/scripts/bump-main-package-version.js +++ b/scripts/bump-main-package-version.ts @@ -1,8 +1,8 @@ /* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved +Copyright © 2024 The Sage Group plc or its licensors. All Rights reserved */ -const { resolve } = require('path') -const { readJsonSync, outputJsonSync } = require('fs-extra') +import { resolve } from 'path' +import { readJsonSync, outputJsonSync } from 'fs-extra' console.log('Bumping version in main package.json file...') try { diff --git a/scripts/formats/docs.format.js b/scripts/formats/docs.format.js deleted file mode 100644 index 98bb95f1..00000000 --- a/scripts/formats/docs.format.js +++ /dev/null @@ -1,63 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ -const fs = require('fs-extra') -const path = require('path') -const groupBy = require('lodash/groupBy') -const omit = require('lodash/omit') -const isObject = require('lodash/isObject') -const isArray = require('lodash/isArray') -const sortBy = require('lodash/sortBy') - -module.exports = { - name: 'docs', - formatter: function ({ dictionary }) { - const templateContents = fs.readFileSync(path.resolve('.', 'templates/layout.hbs'), 'utf8') - const Handlebars = require('handlebars') - Handlebars.registerPartial('body', fs.readFileSync(path.resolve('.', 'templates/tokens/tokens.docs.hbs'), 'utf8')) - Handlebars.registerPartial('table', fs.readFileSync(path.resolve('.', 'templates/tokens/table.hbs'), 'utf8')) - - const flatTokens = [...dictionary.allTokens] - .filter((token) => token.attributes.category !== 'meta') - .map((token) => omit(token, ['filePath', 'isSource'])) - - const tokensByTheme = groupBy(flatTokens, 'attributes.theme') - - const contextEntries = Object.entries(tokensByTheme) - .map(([themeName, themeTokens]) => { - const tokensByCategory = groupBy(themeTokens, 'attributes.category') - const categories = Object.entries(tokensByCategory) - .map(([categoryName, tokens]) => { - const sortedTokens = tokens.slice().sort((a, b) => a.name.localeCompare(b.name, undefined, { numeric: true, sensitivity: 'base' })) - - return { - categoryName, - tokens: sortedTokens - } - }) - const sortedCategoriesByCategoryName = sortBy(categories, 'categoryName', 'asc') - - return { - themeName, - categories: sortedCategoriesByCategoryName - } - }) - - const templateContext = { - themes: contextEntries, - title: 'Sage Design Tokens' - } - - Handlebars.registerHelper('debug', value => { - if (isObject(value) || isArray(value)) { - return JSON.stringify(value, null, 2) - } - - return value - }) - - const compile = Handlebars.compile(templateContents, { preventIndent: true }) - - return compile(templateContext) - } -} diff --git a/scripts/formats/es6-module-flat.format.js b/scripts/formats/es6-module-flat.format.js deleted file mode 100644 index 4008029b..00000000 --- a/scripts/formats/es6-module-flat.format.js +++ /dev/null @@ -1,12 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ - -module.exports = { - name: 'custom/js/es6-module-flat', - formatter: function ({ dictionary }) { - const tokens = Object.fromEntries(dictionary.allTokens.map((token) => [token.name, token.value])) - const output = JSON.stringify(tokens, null, 2) - return `export default ${output}` - } -} diff --git a/scripts/handlebars.js b/scripts/handlebars.js deleted file mode 100644 index ffd79f93..00000000 --- a/scripts/handlebars.js +++ /dev/null @@ -1,71 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ -const { resolve } = require('path') -const Handlebars = require('handlebars') -const isArray = require('lodash/isArray') -const isObject = require('lodash/isObject') -const kebabCase = require('lodash/kebabCase') -const { readFileSync, outputFileSync } = require('fs-extra') - -const glob = require('glob').sync - -Handlebars.registerHelper('debug', value => { - if (isObject(value) || isArray(value)) { - return JSON.stringify(value, null, 2) - } - - return value -}) - -Handlebars.registerHelper('kebabCase', string => kebabCase(string)) - -Handlebars.registerHelper('urlPrefix', (context) => { - const prefixes = { - general: '', - theme: '../', - category: '../../' - } - return prefixes[context.data.root.bodyType] -}) - -Handlebars.registerHelper('prefixedPartial', function (context, prop, prefix, options) { - const partialName = kebabCase(prefix ? `${prefix}-${context[prop]}` : context[prop]) - const partial = Handlebars.partials[partialName] - - if (!partial) { - return `Partial ${partialName} is missing. (${Object.keys(Handlebars.partials)})` - } - const template = Handlebars.compile(partial, options) - - return new Handlebars.SafeString(template(context)) -}) - -Handlebars.registerHelper('json', (context) => { - return JSON.stringify(context) -}) - -function buildFile (template, context, outputFile = []) { - const compile = Handlebars.compile(template, { preventIndent: true }) - const generatedContents = compile(context) - const outputFilePath = resolve(process.cwd(), ...outputFile) - outputFileSync(outputFilePath, generatedContents) - console.log(` - Written file ${outputFilePath}`) - return outputFilePath -} - -module.exports = (pattern) => { - const [prefix, suffix] = pattern.split('**/*') - - glob(pattern) - .forEach(path => { - const name = path.replace(prefix, '') - .replace(suffix, '') - .replace('/', '-') - const contents = readFileSync(resolve(path), 'utf-8') - - Handlebars.registerPartial(name, contents) - }) - - return buildFile -} diff --git a/scripts/icons.js b/scripts/icons.ts similarity index 63% rename from scripts/icons.js rename to scripts/icons.ts index 7b7e7cfe..c911b39e 100644 --- a/scripts/icons.js +++ b/scripts/icons.ts @@ -1,34 +1,76 @@ /* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved +Copyright © 2024 The Sage Group plc or its licensors. All Rights reserved */ -const Figma = require('figma-js') -const fetch = require('node-fetch') -const { - outputFile, - outputJson, - removeSync, - ensureDir, - readFileSync -} = require('fs-extra') -const { generateFonts } = require('fantasticon') -const { +import Figma from 'figma-js' +import fetch from 'node-fetch' +import fs from 'fs-extra' +import { FontAssetType, generateFonts } from 'fantasticon' +import { join, relative, resolve, sep, posix -} = require('path') -const kebabCase = require('lodash/kebabCase') -const pick = require('lodash/pick') +} from 'path' +import kebabCase from 'lodash/kebabCase.js' +import pick from 'lodash/pick.js' + +import { UniqueValues } from './utils/unique-values.js' +import { Collect } from './utils/collect.js' + +interface IConfig { + personalAccessToken: string | undefined + fileId: string | undefined + pages: string[] + multipleSets: boolean + distDir: string + svgDir: string + fontsDir: string + dataDir: string + fontName: string + formats: FontAssetType[] + mainTemplate: string + docsDir: string + docsPartials: string + meta: IMeta +} + +interface IMeta { + description: string + url: string + copyright: string + version: string +} -const uniqueValues = require('./utils/unique-values') -const collect = require('./utils/collect') +export interface IIcon { + url: string | undefined + unicode?: string + description?: string + key?: string + name?: string + id: any + path?: string + set: string | undefined + svg?: string +} -require('dotenv').config() +export interface IGlyphData { + name: string | undefined + path?: string + codepoint?: number + glyph?: string + unicode?: string + url?: string | undefined + description?: string + key?: string + id?: any + set?: string | undefined + svg?: string +} -const getDataFromDescription = (description) => { - const output = {} +const getDataFromDescription = (description: string) => { + const output: { unicode?: string, description?:string } = {} const unicodeMatch = description.match(/code: ?([a-zA-Z0-9]{4})\s?/) if (unicodeMatch && unicodeMatch[1]) { @@ -39,7 +81,14 @@ const getDataFromDescription = (description) => { return output } -async function getIconsArray (config) { +async function getIconsArray (config: IConfig): Promise { + + if (!config.fileId || !config.personalAccessToken) { + throw new Error( + `'FIGMA_ACCESS_TOKEN or FIGMA_FILE_ID not defined.\r\n'` + ); + } + console.log(`Fetching icon components information from Figma file ${config.fileId}...`) const client = Figma.Client({ personalAccessToken: config.personalAccessToken }) @@ -53,23 +102,27 @@ async function getIconsArray (config) { if (config.pages && config.pages.length > 0) { canvases = canvases.filter(node => config.pages.includes(node.name)) } - const verifyFn = (node) => componentIds.includes(node?.id) + const verifyFn = (node: Figma.Node) => componentIds.includes(node?.id) - const groupedComponents = Object.fromEntries(canvases.map(canvas => [canvas.name, collect(canvas, verifyFn).map(node => node.id)])) + const groupedComponents = Object.fromEntries(canvases.map(canvas => [canvas.name, Collect({object: canvas, callback: verifyFn}).map(node => node.id)])) return Object.entries(groupedComponents) .map(([set, ids]) => ids.map(id => { const currentComponent = components[id] + + if (!currentComponent) { + throw new Error( + `Component ${id} is undefined` + ); + } + const output = { id, + set: config.multipleSets ? set : undefined, ...currentComponent, ...getDataFromDescription(currentComponent.description) } - if (config.multipleSets) { - output.set = set - } - return output })) .flat() @@ -85,10 +138,17 @@ async function getIconsArray (config) { }))) } -async function fetchIconData (iconsList) { +async function fetchIconData (iconsList: IIcon[]) { console.log('Fetching icons svg data...') return await Promise.all( iconsList.map(async (icon) => { + + if (!icon.url) { + throw new Error( + `Icon ${icon.name} has undefined url` + ); + } + return { ...icon, svg: await fetch(icon.url).then(response => { @@ -103,7 +163,7 @@ async function fetchIconData (iconsList) { }) } -async function writeIconsToSvg (iconsList, config) { +async function writeIconsToSvg (iconsList: IIcon[], config: IConfig) { console.log('Writing svg icons data to files...') return await Promise.all( iconsList.map(async (icon) => { @@ -111,7 +171,13 @@ async function writeIconsToSvg (iconsList, config) { ? join(config.svgDir, kebabCase(icon.set), `${kebabCase(icon.name)}.svg`) : join(config.svgDir, `${kebabCase(icon.name)}.svg`) - return await outputFile(filePath, icon.svg).then(() => { + if (!icon.svg) { + throw new Error( + `Icon ${icon.name} has undefined svg` + ); + } + + return await fs.outputFile(filePath, icon.svg).then(() => { console.log(` - ${icon.name} written to ${filePath}`) return { ...icon, @@ -125,19 +191,26 @@ async function writeIconsToSvg (iconsList, config) { }) } -async function createWebFonts (iconsList, config) { +async function createWebFonts (iconsList: IIcon[], config: IConfig) { console.log('Writing font files...') console.log(` Using formats: ${config.formats.join(', ')} \r\n`) - const sets = config.multipleSets ? uniqueValues(iconsList, item => item.set) : [''] + const sets = config.multipleSets ? UniqueValues({array: iconsList, mapFn: item => item.set}) : [''] return await Promise.all(sets.map(async (set) => { const icons = config.multipleSets ? iconsList.filter(icon => icon.set === set) : iconsList const name = config.multipleSets ? `${config.fontName}-${set}` : config.fontName const inputDir = config.multipleSets ? resolve('.', config.svgDir, kebabCase(set)) : resolve('.', config.svgDir) const outputDir = resolve('.', config.fontsDir) - const codepoints = Object.fromEntries(icons.filter(icon => !!icon.unicode).map(icon => [kebabCase(icon.name), parseInt(icon.unicode, 16)])) + const codepoints = Object.fromEntries(icons.filter(icon => !!icon.unicode).map(icon => { + if (!icon.unicode) { + throw new Error( + `Unicode is undefined for icon ${icon.name}` + ); + } + return [kebabCase(icon.name), parseInt(icon.unicode, 16)] + })) - ensureDir(outputDir) + await fs.ensureDir(outputDir) return generateFonts({ name, @@ -158,6 +231,18 @@ async function createWebFonts (iconsList, config) { return icons.map(icon => { const codepoint = codepoints[kebabCase(icon.name)] + if (!codepoint) { + throw new Error( + `Codepoint is undefined for icon ${icon.name}` + ); + } + + if (!icon.path) { + throw new Error( + `Path is undefined for icon ${icon.name}` + ); + } + return { ...icon, path: relative(config.distDir, icon.path).split(sep).join(posix.sep), @@ -173,51 +258,22 @@ async function createWebFonts (iconsList, config) { }) } -async function writeGlyphsData (glyphsData, config) { +async function writeGlyphsData (glyphsData: IGlyphData[], config: IConfig) { console.log('Writing glyph data...') const glyphsDataFilePath = resolve(config.dataDir, 'glyphs.json') if (config.multipleSets) { - const sets = uniqueValues(glyphsData, item => item.set) + const sets = UniqueValues({array: glyphsData, mapFn: item => item.set}) console.log(` Writing data for ${glyphsData.length} icons in ${sets.length} sets`) } else { console.log(` Writing data for ${glyphsData.length} icons in 1 set`) } - await outputJson(glyphsDataFilePath, glyphsData, { spaces: 2 }).then(() => { + await fs.outputJson(glyphsDataFilePath, glyphsData, { spaces: 2 }).then(() => { console.log(` - glyphs data in file: ${glyphsDataFilePath}`) console.log('Done.\r\n') }) } -function createDocs (glyphsData, config) { - console.log('Creating documentation for icons...') - - const buildDocsFile = require('./handlebars')(config.docsPartials) - - const mappedGlyphsData = glyphsData.map(icon => { - const fullIconPath = resolve(config.distDir, icon.path) - const relativePath = relative(config.docsDir, fullIconPath) - - return { - ...icon, - srcPath: relativePath - } - }) - - const template = readFileSync(config.mainTemplate, 'utf8') - - const context = { - glyphs: mappedGlyphsData, - title: 'Sage Icons', - bodyType: 'icons' - } - - console.log(resolve(process.cwd(), config.docsDir, 'index.html')) - - buildDocsFile(template, context, [config.docsDir, 'index.html']) - console.log('Done.\r\n') -} - /** * @typedef {Object} IconsConfig * @property {string} personalAccessToken - personal access token for figma @@ -244,16 +300,16 @@ function createDocs (glyphsData, config) { * @param {IconsConfig} config - config for icons generator * @returns {Promise} */ -(async (config) => { +export const Icons = async (config: IConfig) => { if (!config.fileId || !config.personalAccessToken) { console.error('Icons will not be generated, since token and figma file id were not found.') console.error('Please provide FIGMA_ACCESS_TOKEN and FIGMA_FILE_ID env variables or in .env file.\r\n') return } - removeSync(config.svgDir) - removeSync(config.dataDir) - removeSync(config.fontsDir) + fs.removeSync(config.svgDir) + fs.removeSync(config.dataDir) + fs.removeSync(config.fontsDir) const iconsList = await getIconsArray(config) const iconsData = await fetchIconData(iconsList) @@ -264,29 +320,9 @@ function createDocs (glyphsData, config) { .map((icon) => pick(icon, ['name', 'set', 'description', 'documentationLinks', 'path', 'codepoint', 'glyph', 'unicode'])) .map((icon) => ({ ...icon, - name: kebabCase(icon.name) + name: icon.name })) await writeGlyphsData(formattedGlyphsData, config) - createDocs(formattedGlyphsData, config) -})({ - personalAccessToken: process.env.FIGMA_ACCESS_TOKEN, - fileId: process.env.FIGMA_FILE_ID, - pages: ['Icons'], - multipleSets: false, - distDir: './dist', - svgDir: './dist/assets/icons/svg', - fontsDir: './dist/assets/icons/fonts', - dataDir: './dist/assets/icons/data', - fontName: 'sage-icons', - formats: ['svg', 'woff', 'woff2', 'ttf', 'eot'], - mainTemplate: './templates/layout.hbs', - docsDir: './dist/docs/icons/', - docsPartials: './templates/partials/**/*.hbs', - meta: { - description: 'Sage Icon Font', - url: 'http://sage.com', - copyright: 'Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved.', - version: '1.0' - } -}) + +} diff --git a/scripts/post-process-css/context-tokens.spec.ts b/scripts/post-process-css/context-tokens.spec.ts new file mode 100644 index 00000000..db17e93b --- /dev/null +++ b/scripts/post-process-css/context-tokens.spec.ts @@ -0,0 +1,353 @@ +import { expect } from "chai"; +import { ContextTokens } from "./context-tokens.js"; +import { ScreenSizeTokens } from "./screen-size-tokens.js"; + +describe("ContextTokens", () => { + describe("constructor", () => { + it("should throw an error when provided a non-supported context name", () => { + expect( + () => + new ContextTokens("NOT_SUPPORTED", [ + new ScreenSizeTokens([], [], [], {}), + ]) + ).to.throw("NOT_SUPPORTED is not an expected context name"); + }); + + it("should not throw an error when zero min-width screen size is available", () => { + expect( + () => + new ContextTokens("product", [ + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "0" }], + [], + [], + {} + ), + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "1024px" }], + [], + [], + {} + ), + ]) + ).to.not.throw(); + }); + + it("should not throw an error when undefined screen size size is available", () => { + expect( + () => + new ContextTokens("product", [ + new ScreenSizeTokens( + [{ name: "--title-color", value: "#FFFFFF" }], + [], + [], + {} + ), + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "1024px" }], + [], + [], + {} + ), + ]) + ).to.not.throw(); + }); + + it("should throw an error when no screen sizes provided with zero min-width or undefined breakpoint", () => { + expect( + () => + new ContextTokens("product", [ + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "1024px" }], + [], + [], + {} + ), + ]) + ).to.throw( + "Context tokens must have at least one set of screen size tokens with zero min-width breakpoint" + ); + }); + + it("should throw an error when duplicate min-width screen size breakpoints are provided", () => { + expect( + () => + new ContextTokens("product", [ + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "1024px" }], + [], + [], + {} + ), + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "728px" }], + [], + [], + {} + ), + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "1024px" }], + [], + [], + {} + ), + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "728px" }], + [], + [], + {} + ), + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "" }], + [], + [], + {} + ), + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "980px" }], + [], + [], + {} + ), + ]) + ).to.throw("Duplicate min-width breakpoints found: 1024, 728"); + }); + }); + + describe("toString", () => { + const expectedSingleSizeTokenResult = `:root { + /* Global tokens */ + --global-prop1: value1; + --global-prop2: value2; /* Some comment */ + + /* Light mode tokens */ + --prop1-light: value1; /* Some comment */ + --prop2-light: value2; + + /* Dark mode tokens */ + --prop1-dark: value1; + --prop2-dark: value2; + + /* badge component tokens */ + --badge-prop1: badge-value1; + --badge-prop2: badge-value2; + + /* button component tokens */ + --button-prop1: button-value1; + --button-prop2: button-value2; /* Some comment */ +} +`; + + it("should return expected string when provided no tokens", () => { + const tokens = new ContextTokens("product", []); + + const result = tokens.toString(); + expect(result).to.be.empty; + }); + + it("should return expected string when provided no useful tokens", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens( + [ + { + name: "--global-size-breakpoint-min-width", + value: `0`, + }, + ], + [], + [], + {} + ), + new ScreenSizeTokens( + [ + { + name: "--global-size-breakpoint-min-width", + value: `1024px`, + }, + ], + [], + [], + {} + ), + ]); + + const result = tokens.toString(); + expect(result).to.be.empty; + }); + + it("should return expected string when only provided small tokens", () => { + const tokens = new ContextTokens("product", [generateScreenSizeTokens()]); + + const result = tokens.toString(); + expect(result).to.equal(expectedSingleSizeTokenResult); + }); + + it("should return expected string when only provided large tokens", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens([], [], [], {}), + generateScreenSizeTokens(1024), + ]); + + const result = tokens.toString(); + expect(result).to.equal(expectedSingleSizeTokenResult); + }); + + it("should return expected string when provided fully populated object", () => { + const tokens = new ContextTokens("product", [ + generateScreenSizeTokens(1024), + generateScreenSizeTokens(0), + ]); + + const result = tokens.toString(); + expect(result).to.equal( + `${expectedSingleSizeTokenResult} +@media (width >= 1024px) { + :root { + /* Global tokens */ + --global-prop1: value1; + --global-prop2: value2; /* Some comment */ + + /* Light mode tokens */ + --prop1-light: value1; /* Some comment */ + --prop2-light: value2; + + /* Dark mode tokens */ + --prop1-dark: value1; + --prop2-dark: value2; + + /* badge component tokens */ + --badge-prop1: badge-value1; + --badge-prop2: badge-value2; + + /* button component tokens */ + --button-prop1: button-value1; + --button-prop2: button-value2; /* Some comment */ + } +} +` + ); + }); + + it("should return expected string with only light tokens", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens( + [], + [ + { + name: "--prop1-light", + value: "value1", + }, + { + name: "--prop2-light", + value: "value2", + }, + ], + [], + {} + ), + ]); + + const result = tokens.toString(); + expect(result).to.equal( + `:root { + /* Light mode tokens */ + --prop1-light: value1; + --prop2-light: value2; +} +` + ); + }); + + it("should return expected string with only one screen size", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens([], [], [], { + accordion: [], + badge: [ + { + name: "--prop1", + value: "value1", + }, + ], + button: [], + }), + ]); + + const result = tokens.toString(); + expect(result).to.equal( + `:root { + /* badge component tokens */ + --prop1: value1; +} +` + ); + }); + + function generateScreenSizeTokens( + minWidthBreakpoint: number = 0 + ): ScreenSizeTokens { + const sizeTokens = new ScreenSizeTokens( + [ + { + name: "--global-prop1", + value: "value1", + }, + { + name: "--global-prop2", + value: "value2", + comment: "/* Some comment */", + }, + { + name: "--global-size-breakpoint-min-width", + value: `${minWidthBreakpoint}px`, + }, + ], + [ + { + name: "--prop1-light", + value: "value1", + comment: "/* Some comment */", + }, + { + name: "--prop2-light", + value: "value2", + }, + ], + [ + { + name: "--prop1-dark", + value: "value1", + }, + { + name: "--prop2-dark", + value: "value2", + }, + ], + { + badge: [ + { + name: "--badge-prop1", + value: "badge-value1", + }, + { + name: "--badge-prop2", + value: "badge-value2", + }, + ], + button: [ + { + name: "--button-prop1", + value: "button-value1", + }, + { + name: "--button-prop2", + value: "button-value2", + comment: "/* Some comment */", + }, + ], + } + ); + + return sizeTokens; + } + }); +}); diff --git a/scripts/post-process-css/context-tokens.ts b/scripts/post-process-css/context-tokens.ts new file mode 100644 index 00000000..8adfadfc --- /dev/null +++ b/scripts/post-process-css/context-tokens.ts @@ -0,0 +1,119 @@ +import { CssProperty } from "./css-parser/css-parser.types.js"; +import { findDuplicates } from "./helpers.js"; +import { ScreenSizeTokens } from "./screen-size-tokens.js"; + +const VALID_CONTEXT_NAMES = ["frozenproduct", "marketing", "product"] as const; +type ContextName = (typeof VALID_CONTEXT_NAMES)[number]; +export class ContextTokens { + public readonly context: ContextName; + public screenSizes: ScreenSizeTokens[]; + + constructor(contextName: string, screenSizes: ScreenSizeTokens[]) { + if (!this.isValidContextName(contextName)) + throw new Error(`${contextName} is not an expected context name`); + + this.context = contextName; + this.screenSizes = screenSizes; + + // At least one of the provided screen size tokens must have zero min-width breakpoint + if ( + this.screenSizes.length > 0 && + !this.screenSizes.some((size) => !size.minBreakpoint) + ) { + throw new Error( + "Context tokens must have at least one set of screen size tokens with zero min-width breakpoint" + ); + } + + // Throw an error if there are duplicate min-width breakpoints + const duplicateBreakpoints = findDuplicates( + this.screenSizes.map((size) => size.minBreakpoint) + ); + if (duplicateBreakpoints.length > 0) { + throw new Error( + `Duplicate min-width breakpoints found: ${duplicateBreakpoints.join( + ", " + )}` + ); + } + } + + private isValidContextName(value: string): value is ContextName { + return (VALID_CONTEXT_NAMES as readonly string[]).includes(value); + } + + public toString(): string { + const sortedScreenSizes = this.screenSizes.sort( + (a, b) => a.minBreakpoint - b.minBreakpoint + ); + + const sizesWithTokens = sortedScreenSizes.filter((size) => size.hasTokens); + if ( + sizesWithTokens.length === 0 || + sizesWithTokens.every((size) => !size.hasTokens) + ) { + return ""; + } + + const lines: string[] = []; + + sizesWithTokens.forEach((size, i) => { + // First is without a breakpoint or zero min-width so doesn't need a media query + if (i === 0) { + lines.push(...this.getTokenLines(size)); + lines.push(""); + return; + } + + lines.push(`@media (width >= ${size.minBreakpoint}px) {`); + lines.push(...this.getTokenLines(size, 2)); + lines.push("}"); + lines.push(""); + }); + + return lines.join("\n"); + } + + private getTokenLines(tokens: ScreenSizeTokens, level: number = 1): string[] { + const space = " "; + const rootSpace = space.repeat(level - 1); + const tokenSpace = space.repeat(level); + + const lines: string[] = []; + lines.push(`${rootSpace}:root {`); + + const addTokenSection = (title: string, tokenList: CssProperty[]) => { + if (tokenList.length > 0) { + if (lines.length > 1) lines.push(""); + lines.push(`${tokenSpace}/* ${title} */`); + lines.push( + tokenList + .map( + (p) => + `${tokenSpace}${p.name}: ${p.value};${ + p.comment ? ` ${p.comment}` : "" + }` + ) + .join("\n") + ); + } + }; + + addTokenSection("Global tokens", tokens.global); + addTokenSection("Light mode tokens", tokens.light); + addTokenSection("Dark mode tokens", tokens.dark); + + Object.keys(tokens.components).forEach((component) => { + if (tokens.components[component]) { + addTokenSection( + `${component} component tokens`, + tokens.components[component] + ); + } + }); + + lines.push(`${rootSpace}}`); + + return lines; + } +} diff --git a/scripts/post-process-css/css-parser/css-parser.spec.ts b/scripts/post-process-css/css-parser/css-parser.spec.ts new file mode 100644 index 00000000..709d899c --- /dev/null +++ b/scripts/post-process-css/css-parser/css-parser.spec.ts @@ -0,0 +1,80 @@ +import { expect } from "chai"; +import { CssParser } from "./css-parser.js"; +import { CssProperty } from "./css-parser.types.js"; + +describe("CssParser", () => { + const cssParser = new CssParser(); + + it("should parse provided CSS contents", () => { + const cssContent = ` +:root { + --main-bg-color: #ffffff; + --main-text-color: #333333; /* Semi-colons(;) don't go in CSS values */ + --main-border-radius: 5px; /* Colons(:) don't go in CSS values */ + --header-height: 60px; /* Header height */ +}`; + + const result: CssProperty[] = cssParser.parseRootVariables(cssContent); + expect(result).deep.equal([ + { name: "--main-bg-color", value: "#ffffff" }, + { + name: "--main-text-color", + value: "#333333", + comment: "/* Semi-colons(;) don't go in CSS values */", + }, + { + name: "--main-border-radius", + value: "5px", + comment: "/* Colons(:) don't go in CSS values */", + }, + { + name: "--header-height", + value: "60px", + comment: "/* Header height */", + }, + ]); + }); + + it("should error when root selector not found", () => { + const cssContent = ` +body { + --main-bg-color: #ffffff; + --main-text-color: #333333; /* Semi-colons(;) don't go in CSS values */ + /* Random comment in middle indicating an unexpected input */ + --header-height: 60px; /* Header height */ +}`; + + expect(() => cssParser.parseRootVariables(cssContent)).to.throw( + "Root selector not found" + ); + }); + + it("should error when not outputting expected number of items", () => { + const cssContent = ` +:root { + --main-bg-color: #ffffff; + --main-text-color: #333333; /* Semi-colons(;) don't go in CSS values */ + /* Random comment in middle indicating an unexpected input */ + --header-height: 60px; /* Header height */ +}`; + + expect(() => cssParser.parseRootVariables(cssContent)).to.throw( + "Expected 4 items, but got 3" + ); + }); + + it("should error when duplicate tokens are provided", () => { + const cssContent = ` +:root { + --main-bg-color: #ffffff; + --main-text-color: #333333; + --main-text-color: #333333; + --main-bg-color: #000000; + --header-height: 60px; +}`; + + expect(() => cssParser.parseRootVariables(cssContent)).to.throw( + "Duplicate tokens found: --main-text-color, --main-bg-color" + ); + }); +}); diff --git a/scripts/post-process-css/css-parser/css-parser.ts b/scripts/post-process-css/css-parser/css-parser.ts new file mode 100644 index 00000000..2d00468a --- /dev/null +++ b/scripts/post-process-css/css-parser/css-parser.ts @@ -0,0 +1,70 @@ +import { type CssProperty } from "./css-parser.types.js"; +import { findDuplicates } from "../helpers.js"; + +export class CssParser { + public parseRootVariables(cssContent: string): CssProperty[] { + const cssProperties: CssProperty[] = []; + + // Match the :root block + const rootMatch = cssContent.match(/:root\s*{([^}]+)}/); + + if (!rootMatch || !rootMatch[1]) { + throw new Error("Root selector not found"); + } + + // Extract individual property lines including comments + const lines = rootMatch[1] + .split("\n") + .map((line) => line.trim()) + .filter((line) => line); + + for (const fullLine of lines) { + const colonSplit = fullLine.split(":"); + const name = colonSplit[0]; + + if (!name) continue; + + if (!colonSplit[1]) continue; + + const semiColonSplit = colonSplit.slice(1).join(":").split(";"); + const value = semiColonSplit[0]?.trim(); + + if (!value) continue; + + const comment = semiColonSplit.slice(1).join(";").trim(); + + // Sanity check + const expectedLine = `${name}: ${value};${comment ? ` ${comment}` : ""}`; + if (fullLine !== expectedLine) { + throw new Error( + `Expected concatenation to equal "${fullLine}", but found: "${expectedLine}"` + ); + } + + const cssProp: CssProperty = { + name, + value, + }; + + if (comment) { + cssProp.comment = comment; + } + + cssProperties.push(cssProp); + } + + // Sanity check + if (cssProperties.length !== lines.length) { + throw new Error( + `Expected ${lines.length} items, but got ${cssProperties.length}` + ); + } + + const duplicateTokens = findDuplicates(cssProperties.map((p) => p.name)); + if (duplicateTokens.length > 0) { + throw new Error(`Duplicate tokens found: ${duplicateTokens.join(", ")}`); + } + + return cssProperties; + } +} diff --git a/scripts/post-process-css/css-parser/css-parser.types.ts b/scripts/post-process-css/css-parser/css-parser.types.ts new file mode 100644 index 00000000..8db8e6e7 --- /dev/null +++ b/scripts/post-process-css/css-parser/css-parser.types.ts @@ -0,0 +1,5 @@ +export interface CssProperty { + name: string; + value: string; + comment?: string | undefined; +} diff --git a/scripts/post-process-css/formatters/consolidate-screen-sizes/consolidate-screen-sizes.spec.ts b/scripts/post-process-css/formatters/consolidate-screen-sizes/consolidate-screen-sizes.spec.ts new file mode 100644 index 00000000..c9cab8ff --- /dev/null +++ b/scripts/post-process-css/formatters/consolidate-screen-sizes/consolidate-screen-sizes.spec.ts @@ -0,0 +1,440 @@ +import { expect } from "chai"; +import { ConsolidateScreenSizes } from "./consolidate-screen-sizes.js"; +import { ContextTokens } from "../../context-tokens.js"; +import { ScreenSizeTokens } from "../../screen-size-tokens.js"; +import { CssProperty } from "../../css-parser/css-parser.types.js"; + +describe("ConsolidateScreenSizes", () => { + const consolidateScreenSizes = new ConsolidateScreenSizes(); + + const populatedSmallTokens: CssProperty[] = [ + { name: "--global-prop1", value: "value1" }, + { name: "--global-prop2", value: "value2" }, + { name: "--global-prop3", value: "value3" }, + ]; + + const populatedLargeTokens: CssProperty[] = [ + { name: "--global-prop1", value: "value1" }, + { name: "--global-prop2", value: "value2-large" }, + { name: "--global-prop3", value: "value3" }, + ]; + + const expectedFilteredTokens: CssProperty[] = [ + { name: "--global-prop2", value: "value2-large" }, + ]; + + const largeGlobalBreakpointToken: CssProperty = { + name: "--global-size-breakpoint-min-width", + value: "1024px", + }; + + describe("formatTokens", () => { + it("should throw an error if any global tokens are not found in all screen sizes", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens( + [ + { name: "--global-size-breakpoint-min-width", value: "0" }, + { name: "--global-prop1", value: "value1" }, + { name: "--global-prop2", value: "value1" }, + ], + [], + [], + {} + ), + new ScreenSizeTokens( + [ + { name: "--global-size-breakpoint-min-width", value: "768" }, + { name: "--global-prop2", value: "value1" }, + { name: "--global-prop3", value: "value1" }, + ], + [], + [], + {} + ), + new ScreenSizeTokens( + [ + { name: "--global-size-breakpoint-min-width", value: "1024" }, + { name: "--global-prop2", value: "value1" }, + { name: "--global-prop3", value: "value1" }, + ], + [], + [], + {} + ), + ]); + + expect(() => consolidateScreenSizes.formatTokens(tokens)).to.throw( + "Global tokens not present in all screen sizes: --global-prop1 (0px), --global-prop3 (768px, 1024px)" + ); + }); + + it("should throw an error if any light mode tokens are not found in all screen sizes", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "0" }], + [ + { name: "--global-prop1", value: "value1" }, + { name: "--global-prop2", value: "value1" }, + ], + [], + {} + ), + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "768" }], + [ + { name: "--global-prop2", value: "value1" }, + { name: "--global-prop3", value: "value1" }, + ], + [], + {} + ), + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "1024" }], + [ + { name: "--global-prop2", value: "value1" }, + { name: "--global-prop3", value: "value1" }, + ], + [], + {} + ), + ]); + + expect(() => consolidateScreenSizes.formatTokens(tokens)).to.throw( + "Light mode tokens not present in all screen sizes: --global-prop1 (0px), --global-prop3 (768px, 1024px)" + ); + }); + + it("should throw an error if any dark mode tokens are not found in all screen sizes", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "0" }], + [], + [ + { name: "--global-prop1", value: "value1" }, + { name: "--global-prop2", value: "value1" }, + ], + {} + ), + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "768" }], + [], + [ + { name: "--global-prop2", value: "value1" }, + { name: "--global-prop3", value: "value1" }, + ], + {} + ), + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "1024" }], + [], + [ + { name: "--global-prop2", value: "value1" }, + { name: "--global-prop3", value: "value1" }, + ], + {} + ), + ]); + + expect(() => consolidateScreenSizes.formatTokens(tokens)).to.throw( + "Dark mode tokens not present in all screen sizes: --global-prop1 (0px), --global-prop3 (768px, 1024px)" + ); + }); + + it("should throw an error if any component tokens are not found in all screen sizes", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "0" }], + [], + [], + { + badge: [ + { name: "--global-prop1", value: "value1" }, + { name: "--global-prop2", value: "value1" }, + ], + } + ), + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "768" }], + [], + [], + { + badge: [ + { name: "--global-prop2", value: "value1" }, + { name: "--global-prop3", value: "value1" }, + ], + } + ), + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "1024" }], + [], + [], + { + badge: [ + { name: "--global-prop2", value: "value1" }, + { name: "--global-prop3", value: "value1" }, + ], + } + ), + ]); + + expect(() => consolidateScreenSizes.formatTokens(tokens)).to.throw( + "Tokens for badge not present in all screen sizes: --global-prop1 (0px), --global-prop3 (768px, 1024px)" + ); + }); + + it("should filter global large screen tokens when the same value is applied to small screen tokens", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens(populatedSmallTokens, [], [], {}), + new ScreenSizeTokens( + [largeGlobalBreakpointToken, ...populatedLargeTokens], + [], + [], + {} + ), + ]); + + const result = consolidateScreenSizes.formatTokens(tokens); + expect(result).to.deep.equal({ + context: "product", + screenSizes: [ + { + global: populatedSmallTokens, + light: [], + dark: [], + components: {}, + minBreakpoint: 0, + }, + { + global: expectedFilteredTokens, + light: [], + dark: [], + components: {}, + minBreakpoint: 1024, + }, + ], + }); + }); + + it("should filter light large screen tokens when the same value is applied to small screen tokens", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens([], populatedSmallTokens, [], {}), + new ScreenSizeTokens( + [largeGlobalBreakpointToken], + populatedLargeTokens, + [], + {} + ), + ]); + + const result = consolidateScreenSizes.formatTokens(tokens); + expect(result).to.deep.equal({ + context: "product", + screenSizes: [ + { + global: [], + light: populatedSmallTokens, + dark: [], + components: {}, + minBreakpoint: 0, + }, + { + global: [], + light: expectedFilteredTokens, + dark: [], + components: {}, + minBreakpoint: 1024, + }, + ], + }); + }); + + it("should filter dark large screen tokens when the same value is applied to small screen tokens", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens([], [], populatedSmallTokens, {}), + new ScreenSizeTokens( + [largeGlobalBreakpointToken], + [], + populatedLargeTokens, + {} + ), + ]); + + const result = consolidateScreenSizes.formatTokens(tokens); + expect(result).to.deep.equal({ + context: "product", + screenSizes: [ + { + global: [], + light: [], + dark: populatedSmallTokens, + components: {}, + minBreakpoint: 0, + }, + { + global: [], + light: [], + dark: expectedFilteredTokens, + components: {}, + minBreakpoint: 1024, + }, + ], + }); + }); + + it("should filter component large screen tokens when the same value is applied to small screen tokens", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens([], [], [], { + accordion: populatedSmallTokens, + badge: [ + { + name: "--global-prop1", + value: "value1", + }, + ], + button: populatedSmallTokens, + }), + new ScreenSizeTokens([largeGlobalBreakpointToken], [], [], { + accordion: populatedLargeTokens, + badge: [ + { + name: "--global-prop1", + value: "value1", + }, + ], + button: populatedLargeTokens, + }), + ]); + + const result = consolidateScreenSizes.formatTokens(tokens); + expect(result).to.deep.equal({ + context: "product", + screenSizes: [ + { + global: [], + light: [], + dark: [], + components: { + accordion: populatedSmallTokens, + badge: [ + { + name: "--global-prop1", + value: "value1", + }, + ], + button: populatedSmallTokens, + }, + minBreakpoint: 0, + }, + { + global: [], + light: [], + dark: [], + components: { + accordion: expectedFilteredTokens, + badge: [], + button: expectedFilteredTokens, + }, + minBreakpoint: 1024, + }, + ], + }); + }); + + it("should filter global tokens as expected across multiple screen sizes", () => { + // --global-prop1: Same value in all screen sizes. Gets removed in all but the smallest screen size. + // --global-prop2: Overridden in large screen size + extra large with same value. Expected to be displayed in small and large screen sizes. + // --global-prop3: Overridden in medium screen size + extra large with different value. Expected to be displayed in small, medium and extra large screen sizes. + + const smallSize = new ScreenSizeTokens( + [ + { name: "--global-size-breakpoint-min-width", value: "0" }, + { name: "--global-prop1", value: "SMALL" }, + { name: "--global-prop2", value: "SMALL" }, + { name: "--global-prop3", value: "SMALL" }, + ], + [], + [], + {} + ); + const mediumSize = new ScreenSizeTokens( + [ + { name: "--global-size-breakpoint-min-width", value: "768" }, + { name: "--global-prop1", value: "SMALL" }, + { name: "--global-prop2", value: "SMALL" }, + { name: "--global-prop3", value: "MEDIUM" }, + ], + [], + [], + {} + ); + const largeSize = new ScreenSizeTokens( + [ + { name: "--global-size-breakpoint-min-width", value: "992" }, + { name: "--global-prop1", value: "SMALL" }, + { name: "--global-prop2", value: "LARGE" }, + { name: "--global-prop3", value: "MEDIUM" }, + ], + [], + [], + {} + ); + const extraLargeSize = new ScreenSizeTokens( + [ + { name: "--global-size-breakpoint-min-width", value: "1200" }, + { name: "--global-prop1", value: "SMALL" }, + { name: "--global-prop2", value: "LARGE" }, + { name: "--global-prop3", value: "EXTRALARGE" }, + ], + [], + [], + {} + ); + + const tokens = new ContextTokens("product", [ + extraLargeSize, + mediumSize, + smallSize, + largeSize, + ]); + + const result = consolidateScreenSizes.formatTokens(tokens); + expect(result).to.deep.equal({ + context: "product", + screenSizes: [ + { + global: [ + { name: "--global-prop1", value: "SMALL" }, + { name: "--global-prop2", value: "SMALL" }, + { name: "--global-prop3", value: "SMALL" }, + ], + light: [], + dark: [], + components: {}, + minBreakpoint: 0, + }, + { + global: [{ name: "--global-prop3", value: "MEDIUM" }], + light: [], + dark: [], + components: {}, + minBreakpoint: 768, + }, + { + global: [{ name: "--global-prop2", value: "LARGE" }], + light: [], + dark: [], + components: {}, + minBreakpoint: 992, + }, + { + global: [{ name: "--global-prop3", value: "EXTRALARGE" }], + light: [], + dark: [], + components: {}, + minBreakpoint: 1200, + }, + ], + }); + }); + }); +}); diff --git a/scripts/post-process-css/formatters/consolidate-screen-sizes/consolidate-screen-sizes.ts b/scripts/post-process-css/formatters/consolidate-screen-sizes/consolidate-screen-sizes.ts new file mode 100644 index 00000000..1fb02e0e --- /dev/null +++ b/scripts/post-process-css/formatters/consolidate-screen-sizes/consolidate-screen-sizes.ts @@ -0,0 +1,152 @@ +import { ContextTokens } from "../../context-tokens.js"; +import { CssProperty } from "../../css-parser/css-parser.types.js"; +import { Decorator } from "../decorator.js"; + +interface ListObject { + name: string; + list: string[]; +} + +export class ConsolidateScreenSizes extends Decorator { + /** + * Consolidates screen sizes by removing tokens that are the same in descending screen sizes from following a + * mobile first approach. Makes the assumption that tokens are only defined once per screen size. + * @param tokens Tokens to format. + * @returns Consolidated tokens. + */ + public override formatTokens(tokens: ContextTokens) { + this.sanityCheckTokens(tokens); + + const matchesToken = (token: CssProperty, tokensToCompare: CssProperty[]) => + !tokensToCompare.find( + (smallToken) => + smallToken.name === token.name && smallToken.value === token.value + ); + + const sortedScreenSizes = tokens.screenSizes.sort( + (a, b) => b.minBreakpoint - a.minBreakpoint + ); + + sortedScreenSizes.forEach((screenSize) => { + const previousScreenSize = sortedScreenSizes.find( + (size) => size.minBreakpoint < screenSize.minBreakpoint + ); + + if (!previousScreenSize) { + return; + } + + screenSize.global = screenSize.global.filter((largeToken) => + matchesToken(largeToken, previousScreenSize.global) + ); + screenSize.light = screenSize.light.filter((largeToken) => + matchesToken(largeToken, previousScreenSize.light) + ); + screenSize.dark = screenSize.dark.filter((largeToken) => + matchesToken(largeToken, previousScreenSize.dark) + ); + + screenSize.components = Object.keys(screenSize.components).reduce< + Record + >((components, component) => { + if (!screenSize.components[component]) { + return {}; + } + + components[component] = screenSize.components[component].filter( + (largeToken) => + matchesToken( + largeToken, + previousScreenSize.components[component] || [] + ) + ); + return components; + }, {}); + }); + + // Reorder back to mobile first + tokens.screenSizes.sort((a, b) => a.minBreakpoint - b.minBreakpoint); + return super.formatTokens(tokens); + } + + private sanityCheckTokens(tokens: ContextTokens) { + const tokenTypes = ["global", "light", "dark"] as const; + + tokenTypes.forEach((type) => { + const tokensNotInAllSizes = this.getSymmetricalDifference( + tokens.screenSizes.map((x) => ({ + name: `${x.minBreakpoint}px`, + list: x[type].map((y) => y.name), + })) + ); + + if (tokensNotInAllSizes.length > 0) { + throw new Error( + `${type.charAt(0).toUpperCase() + type.slice(1)} ${ + type === "global" ? "" : "mode " + }tokens not present in all screen sizes: ${tokensNotInAllSizes + .map((d) => `${d.token} (${d.contexts.join(", ")})`) + .join(", ")}` + ); + } + }); + + // Check component tokens + const componentNames = new Set(); + tokens.screenSizes.forEach((screenSize) => { + Object.keys(screenSize.components).forEach((componentName) => { + componentNames.add(componentName); + }); + }); + + componentNames.forEach((componentName) => { + const componentTokensNotInAllSizes = this.getSymmetricalDifference( + tokens.screenSizes.map((x) => ({ + name: `${x.minBreakpoint}px`, + list: x.components[componentName]?.map((token) => token.name) || [], + })) + ); + + if (componentTokensNotInAllSizes.length > 0) { + throw new Error( + `Tokens for ${componentName} not present in all screen sizes: ${componentTokensNotInAllSizes + .map((d) => `${d.token} (${d.contexts.join(", ")})`) + .join(", ")}` + ); + } + }); + } + + private getSymmetricalDifference(arrayOfObjects: ListObject[]) { + if (arrayOfObjects.length === 0) { + return []; + } + + const totalLists = arrayOfObjects.length; + const occurrenceMap: { + [key: string]: { count: number; contexts: string[] }; + } = {}; + + // Flatten the lists and count occurrences + arrayOfObjects.forEach((obj) => { + obj.list.forEach((str) => { + if (!occurrenceMap[str]) { + occurrenceMap[str] = { count: 1, contexts: [obj.name] }; + } else { + occurrenceMap[str].count++; + occurrenceMap[str].contexts.push(obj.name); + } + }); + }); + + // Filter objects and their lists to include only strings not present in all lists + const result = Object.entries(occurrenceMap) + .filter(([_, value]) => value.count !== totalLists) + .map(([key, value]) => ({ + token: key, + contexts: value.contexts, + })); + + return result; + } +} diff --git a/scripts/post-process-css/formatters/decorator.ts b/scripts/post-process-css/formatters/decorator.ts new file mode 100644 index 00000000..5e51134a --- /dev/null +++ b/scripts/post-process-css/formatters/decorator.ts @@ -0,0 +1,24 @@ +import { ContextTokens } from "../context-tokens.js"; + +export interface Component { + formatTokens(contents: ContextTokens): ContextTokens; +} + +export class Decorator implements Component { + constructor(protected component?: Component) { + this.component = component; + } + + /** + * + * @param tokens The tokens being modified. + * @returns Formatted tokens. + */ + public formatTokens(tokens: ContextTokens): ContextTokens { + if (this.component === undefined) { + return tokens; + } + + return this.component.formatTokens(tokens); + } +} diff --git a/scripts/post-process-css/formatters/filter-typography-tokens/filter-typography-tokens.spec.ts b/scripts/post-process-css/formatters/filter-typography-tokens/filter-typography-tokens.spec.ts new file mode 100644 index 00000000..0b028009 --- /dev/null +++ b/scripts/post-process-css/formatters/filter-typography-tokens/filter-typography-tokens.spec.ts @@ -0,0 +1,588 @@ +import { expect } from "chai"; +import { ContextTokens } from "../../context-tokens"; +import { ScreenSizeTokens } from "../../screen-size-tokens"; +import { FilterTypographyTokens } from "./filter-typography-tokens"; + +describe("FilterTypographyTokens", () => { + const filterAdaptiveTypography = new FilterTypographyTokens(); + + describe("formatTokens", () => { + it("should throw an error when a mirror adaptive global token is not found", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens( + [ + { + name: "--global-typography-responsive-display-l", + value: "900 40px/1.25 'Sage Headline'", + }, + ], + [], + [], + {} + ), + ]); + expect(() => filterAdaptiveTypography.formatTokens(tokens)).to.throw( + "Missing adaptive global typography token for responsive token: --global-typography-responsive-display-l on min breakpoint: 0, context: product" + ); + }); + + it("should throw an error when a mirror responsive global token is not found", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens( + [ + { + name: "--global-typography-adaptive-display-l", + value: "900 40px/1.25 'Sage Headline'", + }, + ], + [], + [], + {} + ), + ]); + expect(() => filterAdaptiveTypography.formatTokens(tokens)).to.throw( + "Missing responsive global typography token for adaptive token: --global-typography-adaptive-display-l on min breakpoint: 0, context: product" + ); + }); + + it("should throw an error when a mirror adaptive component token is not found", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens( + [ + { + name: "--global-typography-responsive-display-l", + value: "900 40px/1.25 'Sage Headline'", + }, + { + name: "--global-typography-adaptive-display-l", + value: "900 40px/1.25 'Sage Headline'", + }, + ], + [], + [], + { + badge: [ + { + name: "--badge-typography-responsive-l", + value: "var(--global-typography-responsive-display-l)", + }, + ], + } + ), + ]); + expect(() => filterAdaptiveTypography.formatTokens(tokens)).to.throw( + "Missing badge token for --badge-typography-responsive-l on min breakpoint: 0, context: product" + ); + }); + + it("should throw an error when a mirror responsive component token is not found", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens( + [ + { + name: "--global-typography-responsive-display-l", + value: "900 40px/1.25 'Sage Headline'", + }, + { + name: "--global-typography-adaptive-display-l", + value: "900 40px/1.25 'Sage Headline'", + }, + ], + [], + [], + { + badge: [ + { + name: "--badge-typography-adaptive-l", + value: "var(--global-typography-adaptive-display-l)", + }, + ], + } + ), + ]); + expect(() => filterAdaptiveTypography.formatTokens(tokens)).to.throw( + "Missing badge token for --badge-typography-adaptive-l on min breakpoint: 0, context: product" + ); + }); + + it("should throw an error when a mirror adaptive component token has an unexpected value", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens( + [ + { + name: "--global-typography-responsive-display-l", + value: "900 40px/1.25 'Sage Headline'", + }, + { + name: "--global-typography-adaptive-display-l", + value: "900 40px/1.25 'Sage Headline'", + }, + { + name: "--global-typography-responsive-display-s", + value: "900 40px/1.25 'Sage Headline'", + }, + { + name: "--global-typography-adaptive-display-s", + value: "900 40px/1.25 'Sage Headline'", + }, + ], + [], + [], + { + badge: [ + { + name: "--badge-typography-responsive-l", + value: "var(--global-typography-responsive-display-l)", + }, + { + name: "--badge-typography-responsive-l", + value: "var(--global-typography-responsive-display-l)", + }, + { + name: "--badge-typography-adaptive-l", + value: "var(--global-typography-adaptive-display-l)", + }, + { + name: "--badge-typography-adaptive-l", + value: "var(--global-typography-adaptive-display-s)", + }, + ], + } + ), + ]); + expect(() => filterAdaptiveTypography.formatTokens(tokens)).to.throw( + "Value mismatch on badge component for tokens --badge-typography-adaptive-l and --badge-typography-responsive-l on min breakpoint: 0, context: product" + ); + }); + + it("should throw an error when a mirror responsive component token has an unexpected value", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens( + [ + { + name: "--global-typography-responsive-display-l", + value: "900 40px/1.25 'Sage Headline'", + }, + { + name: "--global-typography-adaptive-display-l", + value: "900 40px/1.25 'Sage Headline'", + }, + { + name: "--global-typography-responsive-display-s", + value: "900 40px/1.25 'Sage Headline'", + }, + { + name: "--global-typography-adaptive-display-s", + value: "900 40px/1.25 'Sage Headline'", + }, + ], + [], + [], + { + badge: [ + { + name: "--badge-typography-responsive-l", + value: "var(--global-typography-responsive-display-l)", + }, + { + name: "--badge-typography-responsive-l", + value: "var(--global-typography-responsive-display-s)", + }, + { + name: "--badge-typography-adaptive-l", + value: "var(--global-typography-adaptive-display-l)", + }, + { + name: "--badge-typography-adaptive-l", + value: "var(--global-typography-adaptive-display-l)", + }, + ], + } + ), + ]); + expect(() => filterAdaptiveTypography.formatTokens(tokens)).to.throw( + "Value mismatch on badge component for tokens --badge-typography-responsive-l and --badge-typography-adaptive-l on min breakpoint: 0, context: product" + ); + }); + + it("should filter adaptive tokens when supplied product context tokens", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens( + [ + { name: "--global-size-breakpoint-min-width", value: "0" }, + { + name: "--global-typography-adaptive-display-m", + value: "900 35px/1.25 'Sage Headline'", + }, + { + name: "--global-space-adaptive-macro-scale", + value: "0.8px", + }, + { + name: "--global-typography-adaptive-display-l", + value: "900 40px/1.25 'Sage Headline'", + }, + { + name: "--global-typography-responsive-display-m", + value: + "900 clamp(2.1588rem, 1.7083rem + 2.2525vw, 4.4113rem)/1.25 'Sage Headline'", + }, + { + name: "--global-typography-responsive-display-l", + value: + "900 clamp(2.5187rem, 1.6647rem + 4.2703vi, 5.935rem)/1.25 'Sage Headline'", + }, + ], + [], + [], + { + badge: [ + { + name: "--badge-typography-adaptive-m", + value: "var(--global-typography-adaptive-display-m)", + }, + { + name: "--badge-typography-adaptive-l", + value: "var(--global-typography-adaptive-display-l)", + }, + { + name: "--badge-typography-adaptive-size", + value: "var(--global-space-adaptive-macro-scale)", + }, + { + name: "--badge-typography-responsive-m", + value: "var(--global-typography-responsive-display-m)", + }, + { + name: "--badge-typography-responsive-l", + value: "var(--global-typography-responsive-display-l)", + }, + ], + } + ), + new ScreenSizeTokens( + [ + { name: "--global-size-breakpoint-min-width", value: "1024" }, + { + name: "--global-typography-adaptive-display-m", + value: "900 71px/1.25 'Sage Headline'", + }, + { + name: "--global-space-adaptive-macro-scale", + value: "1px", + }, + { + name: "--global-typography-adaptive-display-l", + value: "900 95px/1.25 'Sage Headline'", + }, + { + name: "--global-typography-responsive-display-m", + value: + "900 clamp(2.1588rem, 1.7083rem + 2.2525vw, 4.4113rem)/1.25 'Sage Headline'", + }, + { + name: "--global-typography-responsive-display-l", + value: + "900 clamp(2.5187rem, 1.6647rem + 4.2703vi, 5.935rem)/1.25 'Sage Headline'", + }, + ], + [], + [], + { + badge: [ + { + name: "--badge-typography-adaptive-m", + value: "var(--global-typography-adaptive-display-m)", + }, + { + name: "--badge-typography-adaptive-l", + value: "var(--global-typography-adaptive-display-l)", + }, + { + name: "--badge-typography-adaptive-size", + value: "var(--global-space-adaptive-macro-scale)", + }, + { + name: "--badge-typography-responsive-m", + value: "var(--global-typography-responsive-display-m)", + }, + { + name: "--badge-typography-responsive-l", + value: "var(--global-typography-responsive-display-l)", + }, + ], + } + ), + ]); + + const result = filterAdaptiveTypography.formatTokens(tokens); + expect(result).to.deep.equal({ + context: "product", + screenSizes: [ + { + global: [ + { + name: "--global-space-adaptive-macro-scale", + value: "0.8px", + }, + { + name: "--global-typography-display-m", + value: + "900 clamp(2.1588rem, 1.7083rem + 2.2525vw, 4.4113rem)/1.25 'Sage Headline'", + }, + { + name: "--global-typography-display-l", + value: + "900 clamp(2.5187rem, 1.6647rem + 4.2703vi, 5.935rem)/1.25 'Sage Headline'", + }, + ], + light: [], + dark: [], + components: { + badge: [ + { + name: "--badge-typography-adaptive-size", + value: "var(--global-space-adaptive-macro-scale)", + }, + { + name: "--badge-typography-m", + value: "var(--global-typography-display-m)", + }, + { + name: "--badge-typography-l", + value: "var(--global-typography-display-l)", + }, + ], + }, + minBreakpoint: 0, + }, + { + global: [ + { + name: "--global-space-adaptive-macro-scale", + value: "1px", + }, + { + name: "--global-typography-display-m", + value: + "900 clamp(2.1588rem, 1.7083rem + 2.2525vw, 4.4113rem)/1.25 'Sage Headline'", + }, + { + name: "--global-typography-display-l", + value: + "900 clamp(2.5187rem, 1.6647rem + 4.2703vi, 5.935rem)/1.25 'Sage Headline'", + }, + ], + light: [], + dark: [], + components: { + badge: [ + { + name: "--badge-typography-adaptive-size", + value: "var(--global-space-adaptive-macro-scale)", + }, + { + name: "--badge-typography-m", + value: "var(--global-typography-display-m)", + }, + { + name: "--badge-typography-l", + value: "var(--global-typography-display-l)", + }, + ], + }, + minBreakpoint: 1024, + }, + ], + }); + }); + + it("should filter responsive tokens when supplied frozenproduct context tokens", () => { + const tokens = new ContextTokens("frozenproduct", [ + new ScreenSizeTokens( + [ + { name: "--global-size-breakpoint-min-width", value: "0" }, + { + name: "--global-typography-adaptive-display-m", + value: "900 35px/1.25 'Sage Headline'", + }, + { + name: "--global-space-adaptive-macro-scale", + value: "0.8px", + }, + { + name: "--global-typography-adaptive-display-l", + value: "900 40px/1.25 'Sage Headline'", + }, + { + name: "--global-typography-responsive-display-m", + value: + "900 clamp(2.1588rem, 1.7083rem + 2.2525vw, 4.4113rem)/1.25 'Sage Headline'", + }, + { + name: "--global-typography-responsive-display-l", + value: + "900 clamp(2.5187rem, 1.6647rem + 4.2703vi, 5.935rem)/1.25 'Sage Headline'", + }, + ], + [], + [], + { + badge: [ + { + name: "--badge-typography-adaptive-m", + value: "var(--global-typography-adaptive-display-m)", + }, + { + name: "--badge-typography-adaptive-l", + value: "var(--global-typography-adaptive-display-l)", + }, + { + name: "--badge-typography-adaptive-size", + value: "var(--global-space-adaptive-macro-scale)", + }, + { + name: "--badge-typography-responsive-m", + value: "var(--global-typography-responsive-display-m)", + }, + { + name: "--badge-typography-responsive-l", + value: "var(--global-typography-responsive-display-l)", + }, + ], + } + ), + new ScreenSizeTokens( + [ + { name: "--global-size-breakpoint-min-width", value: "1024" }, + { + name: "--global-typography-adaptive-display-m", + value: "900 71px/1.25 'Sage Headline'", + }, + { + name: "--global-space-adaptive-macro-scale", + value: "1px", + }, + { + name: "--global-typography-adaptive-display-l", + value: "900 95px/1.25 'Sage Headline'", + }, + { + name: "--global-typography-responsive-display-m", + value: + "900 clamp(2.1588rem, 1.7083rem + 2.2525vw, 4.4113rem)/1.25 'Sage Headline'", + }, + { + name: "--global-typography-responsive-display-l", + value: + "900 clamp(2.5187rem, 1.6647rem + 4.2703vi, 5.935rem)/1.25 'Sage Headline'", + }, + ], + [], + [], + { + badge: [ + { + name: "--badge-typography-adaptive-m", + value: "var(--global-typography-adaptive-display-m)", + }, + { + name: "--badge-typography-adaptive-l", + value: "var(--global-typography-adaptive-display-l)", + }, + { + name: "--badge-typography-adaptive-size", + value: "var(--global-space-adaptive-macro-scale)", + }, + { + name: "--badge-typography-responsive-m", + value: "var(--global-typography-responsive-display-m)", + }, + { + name: "--badge-typography-responsive-l", + value: "var(--global-typography-responsive-display-l)", + }, + ], + } + ), + ]); + + const result = filterAdaptiveTypography.formatTokens(tokens); + expect(result).to.deep.equal({ + context: "frozenproduct", + screenSizes: [ + { + global: [ + { + name: "--global-typography-display-m", + value: "900 35px/1.25 'Sage Headline'", + }, + { + name: "--global-space-adaptive-macro-scale", + value: "0.8px", + }, + { + name: "--global-typography-display-l", + value: "900 40px/1.25 'Sage Headline'", + }, + ], + light: [], + dark: [], + components: { + badge: [ + { + name: "--badge-typography-m", + value: "var(--global-typography-display-m)", + }, + { + name: "--badge-typography-l", + value: "var(--global-typography-display-l)", + }, + { + name: "--badge-typography-adaptive-size", + value: "var(--global-space-adaptive-macro-scale)", + }, + ], + }, + minBreakpoint: 0, + }, + { + global: [ + { + name: "--global-typography-display-m", + value: "900 71px/1.25 'Sage Headline'", + }, + { + name: "--global-space-adaptive-macro-scale", + value: "1px", + }, + { + name: "--global-typography-display-l", + value: "900 95px/1.25 'Sage Headline'", + }, + ], + light: [], + dark: [], + components: { + badge: [ + { + name: "--badge-typography-m", + value: "var(--global-typography-display-m)", + }, + { + name: "--badge-typography-l", + value: "var(--global-typography-display-l)", + }, + { + name: "--badge-typography-adaptive-size", + value: "var(--global-space-adaptive-macro-scale)", + }, + ], + }, + minBreakpoint: 1024, + }, + ], + }); + }); + }); +}); diff --git a/scripts/post-process-css/formatters/filter-typography-tokens/filter-typography-tokens.ts b/scripts/post-process-css/formatters/filter-typography-tokens/filter-typography-tokens.ts new file mode 100644 index 00000000..d1e42983 --- /dev/null +++ b/scripts/post-process-css/formatters/filter-typography-tokens/filter-typography-tokens.ts @@ -0,0 +1,259 @@ +import { ContextTokens } from "../../context-tokens"; +import { CssProperty } from "../../css-parser/css-parser.types"; +import { Decorator } from "../decorator"; + +export class FilterTypographyTokens extends Decorator { + private readonly globalResponsiveRegex = + /^--global-typography-responsive-.*$/; + private readonly globalAdaptiveRegex = /^--global-typography-adaptive-.*$/; + + /** + * Whilst typography tokens are currently specified in Figma, it is the responsive typography tokens that + * are intended for use. Adaptive typography tokens are only present due to Figma not currently allowing + * the clamp function. By stripping out this tokens, it would save ~6% of the total line count from the + * CSS output. + * + * NOTE: For "frozenproduct" context tokens we do the opposite and remove responsive tokens to maintain + * backward compatibility purposes. For other contexts we remove adaptive tokens to be future facing. + * @param tokens Tokens to format. + * @returns Formatted tokens. + */ + public override formatTokens(tokens: ContextTokens) { + this.sanityCheckTokens(tokens); + this.removeTokens(tokens); + this.formatTokenNames(tokens); + + return super.formatTokens(tokens); + } + + private removeTokens(tokens: ContextTokens) { + const removeGlobalTokensRegex = + tokens.context === "frozenproduct" + ? this.globalResponsiveRegex + : this.globalAdaptiveRegex; + + tokens.screenSizes.forEach((screenSize) => { + const filteredGlobalTokens = this.filterTokens( + screenSize.global, + removeGlobalTokensRegex + ); + + screenSize.global = screenSize.global.filter( + (token) => !filteredGlobalTokens.includes(token.name) + ); + + filteredGlobalTokens.forEach((token) => { + screenSize.components = Object.keys(screenSize.components).reduce< + Record + >((components, component) => { + if (!screenSize.components[component]) { + return {}; + } + + components[component] = screenSize.components[component].filter( + (componentToken) => componentToken.value !== this.toVar(token) + ); + + return components; + }, {}); + }); + }); + } + + private formatTokenNames(tokens: ContextTokens) { + const keepGlobalTokensRegex = + tokens.context === "frozenproduct" + ? this.globalAdaptiveRegex + : this.globalResponsiveRegex; + + tokens.screenSizes.forEach((screenSize) => { + const globalTypographyTokensToKeep = this.filterTokens( + screenSize.global, + keepGlobalTokensRegex + ); + + screenSize.global = screenSize.global.map((token) => + globalTypographyTokensToKeep.includes(token.name) + ? this.formatTokenName(token) + : token + ); + + globalTypographyTokensToKeep.forEach((globalToken) => { + screenSize.components = Object.keys(screenSize.components).reduce< + Record + >((components, component) => { + if (!screenSize.components[component]) { + return {}; + } + + components[component] = screenSize.components[component].map( + (token) => + token.value === `var(${globalToken})` + ? this.formatTokenName(token) + : token + ); + + return components; + }, {}); + }); + }); + } + + private formatTokenName(token: CssProperty) { + token.name = this.removeTypographyType(token.name); + token.value = this.removeTypographyType(token.value); + return token; + } + + private removeTypographyType(value: string) { + return value.replace(/(-adaptive-|-responsive-)/, "-"); + } + + private filterTokens(tokens: CssProperty[], regex: RegExp): string[] { + return tokens + .map((token) => token.name) + .filter((token) => regex.test(token)); + } + + private mapToVar(tokens: string[]): string[] { + return tokens.map((x) => this.toVar(x)); + } + + private toVar(value: string): string { + return `var(${value})`; + } + + /** + * Given that this formatter deletes and renames tokens, this checks assumptions made about the typography tokens. Specifically: + * - Each typography token (global & component) should have a mirror adaptive/responsive token + * - The value of the adaptive and responsive tokens should match (excluding the typography type) + */ + private sanityCheckTokens(tokens: ContextTokens) { + // Each typography token should have a mirror adaptive/responsive token + tokens.screenSizes.forEach((screenSize) => { + const responsiveGlobalTypographyTokens = this.filterTokens( + screenSize.global, + this.globalResponsiveRegex + ); + const adaptiveGlobalTypographyTokens = this.filterTokens( + screenSize.global, + this.globalAdaptiveRegex + ); + + this.checkMissingTokens( + responsiveGlobalTypographyTokens, + adaptiveGlobalTypographyTokens, + "adaptive", + screenSize.minBreakpoint, + tokens.context + ); + + this.checkMissingTokens( + adaptiveGlobalTypographyTokens, + responsiveGlobalTypographyTokens, + "responsive", + screenSize.minBreakpoint, + tokens.context + ); + + const responsiveGlobalTypographyTokensAsVar = this.mapToVar( + responsiveGlobalTypographyTokens + ); + const adaptiveGlobalTypographyTokensAsVar = this.mapToVar( + adaptiveGlobalTypographyTokens + ); + + Object.keys(screenSize.components).forEach((component) => { + const componentProps = screenSize.components[component]; + if (!componentProps) return; + + const componentResponsiveTypographyTokens = this.filterComponentTokens( + componentProps, + responsiveGlobalTypographyTokensAsVar + ); + const componentAdaptiveTypographyTokens = this.filterComponentTokens( + componentProps, + adaptiveGlobalTypographyTokensAsVar + ); + + this.checkComponentTokens( + componentResponsiveTypographyTokens, + componentAdaptiveTypographyTokens, + component, + screenSize.minBreakpoint, + tokens.context + ); + + this.checkComponentTokens( + componentAdaptiveTypographyTokens, + componentResponsiveTypographyTokens, + component, + screenSize.minBreakpoint, + tokens.context + ); + }); + }); + } + + private filterComponentTokens( + componentProps: CssProperty[], + globalTokensAsVar: string[] + ): CssProperty[] { + return componentProps.filter((token) => + globalTokensAsVar.includes(token.value) + ); + } + + private checkMissingTokens( + sourceTokens: string[], + targetTokens: string[], + targetType: string, + minBreakpoint: number, + context: string + ) { + sourceTokens.forEach((token) => { + if ( + !targetTokens + .map((x) => this.removeTypographyType(x)) + .includes(this.removeTypographyType(token)) + ) { + throw new Error( + `Missing ${targetType} global typography token for ${ + targetType === "adaptive" ? "responsive" : "adaptive" + } token: ${token} on min breakpoint: ${minBreakpoint}, context: ${context}` + ); + } + }); + } + + private checkComponentTokens( + sourceTokens: CssProperty[], + targetTokens: CssProperty[], + component: string, + minBreakpoint: number, + context: string + ) { + sourceTokens.forEach((token) => { + const foundToken = targetTokens.find( + (x) => + this.removeTypographyType(x.name) === + this.removeTypographyType(token.name) + ); + + if (!foundToken) { + throw new Error( + `Missing ${component} token for ${token.name} on min breakpoint: ${minBreakpoint}, context: ${context}` + ); + } + + if ( + this.removeTypographyType(foundToken.value) !== + this.removeTypographyType(token.value) + ) { + throw new Error( + `Value mismatch on ${component} component for tokens ${token.name} and ${foundToken.name} on min breakpoint: ${minBreakpoint}, context: ${context}` + ); + } + }); + } +} diff --git a/scripts/post-process-css/formatters/index.ts b/scripts/post-process-css/formatters/index.ts new file mode 100644 index 00000000..f623e413 --- /dev/null +++ b/scripts/post-process-css/formatters/index.ts @@ -0,0 +1,4 @@ +export { ConsolidateScreenSizes } from "./consolidate-screen-sizes/consolidate-screen-sizes"; +export { FilterTypographyTokens } from "./filter-typography-tokens/filter-typography-tokens"; +export { LightDarkModeFormatter } from "./light-dark-mode/light-dark-mode-formatter"; +export { MathsCalc } from "./maths-calc/maths-calc"; diff --git a/scripts/post-process-css/formatters/light-dark-mode/light-dark-mode-formatter.spec.ts b/scripts/post-process-css/formatters/light-dark-mode/light-dark-mode-formatter.spec.ts new file mode 100644 index 00000000..6f78264a --- /dev/null +++ b/scripts/post-process-css/formatters/light-dark-mode/light-dark-mode-formatter.spec.ts @@ -0,0 +1,159 @@ +import { expect } from "chai"; +import { ContextTokens } from "../../context-tokens.js"; +import { ScreenSizeTokens } from "../../screen-size-tokens.js"; +import { LightDarkModeFormatter } from "./light-dark-mode-formatter.js"; + +describe("LightDarkModeFormatter", () => { + const lightDarkModeFormatter = new LightDarkModeFormatter(); + + describe("formatTokens", () => { + it("should throw error if small tokens are in both light and dark mode", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens( + [], + [ + { name: "--prop1", value: "" }, + { name: "--prop2", value: "" }, + ], + [ + { name: "--prop2", value: "" }, + { name: "--prop3", value: "" }, + ], + {} + ), + ]); + expect(() => lightDarkModeFormatter.formatTokens(tokens)).to.throw( + "The following tokens are not defined in both light and dark mode for min-width breakpoint 0px: --prop1, --prop3" + ); + }); + + it("should throw error if large tokens are in both light and dark mode", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens([], [], [], {}), + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "1024px" }], + [ + { name: "--prop1", value: "" }, + { name: "--prop2", value: "" }, + ], + [ + { name: "--prop2", value: "" }, + { name: "--prop3", value: "" }, + ], + {} + ), + ]); + expect(() => lightDarkModeFormatter.formatTokens(tokens)).to.throw( + "The following tokens are not defined in both light and dark mode for min-width breakpoint 1024px: --prop1, --prop3" + ); + }); + + it("should format tokens as expected", () => { + const tokens = new ContextTokens("product", [ + new ScreenSizeTokens( + [], + [ + { + name: "--modes-color-text", + value: "#000000", + }, + ], + [ + { + name: "--modes-color-text", + value: "#ffffff", + }, + ], + { + badge: [ + { + name: "--badge-prop1", + value: "var(--modes-color-text)", + }, + ], + } + ), + new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "1024px" }], + [ + { + name: "--modes-color-text", + value: "#000000", + }, + ], + [ + { + name: "--modes-color-text", + value: "#ffffff", + }, + ], + { + badge: [ + { + name: "--badge-prop1", + value: "var(--modes-color-text)", + }, + ], + } + ), + ]); + + const result = lightDarkModeFormatter.formatTokens(tokens); + expect(result).to.deep.equal({ + context: "product", + screenSizes: [ + { + global: [], + light: [ + { + name: "--modes-color-text-light", + value: "#000000", + }, + ], + dark: [ + { + name: "--modes-color-text-dark", + value: "#ffffff", + }, + ], + components: { + badge: [ + { + name: "--badge-prop1", + value: + "light-dark(var(--modes-color-text-light), var(--modes-color-text-dark))", + }, + ], + }, + minBreakpoint: 0, + }, + { + global: [], + light: [ + { + name: "--modes-color-text-light", + value: "#000000", + }, + ], + dark: [ + { + name: "--modes-color-text-dark", + value: "#ffffff", + }, + ], + components: { + badge: [ + { + name: "--badge-prop1", + value: + "light-dark(var(--modes-color-text-light), var(--modes-color-text-dark))", + }, + ], + }, + minBreakpoint: 1024, + }, + ], + }); + }); + }); +}); diff --git a/scripts/post-process-css/formatters/light-dark-mode/light-dark-mode-formatter.ts b/scripts/post-process-css/formatters/light-dark-mode/light-dark-mode-formatter.ts new file mode 100644 index 00000000..e8d7fae3 --- /dev/null +++ b/scripts/post-process-css/formatters/light-dark-mode/light-dark-mode-formatter.ts @@ -0,0 +1,77 @@ +import { ContextTokens } from "../../context-tokens.js"; +import { getSymetricalDifference } from "../../helpers.js"; +import { ScreenSizeTokens } from "../../screen-size-tokens.js"; +import { Decorator } from "../decorator.js"; + +export class LightDarkModeFormatter extends Decorator { + /** + * Applies "light" or "dark" to the suffix of each light/dark mode token name and for each instance where a light/dark mode token is used, + * the light-dark css function is used. This allows consumers to switch between light and dark mode by changing the value of the `color-scheme` + * css property either on a page or section level. An assumption is made that the lists of light and dark token names are the same. + * @param tokens Tokens to format. + * @returns Formatted tokens. + */ + public override formatTokens(tokens: ContextTokens) { + tokens.screenSizes.forEach((screenSize) => { + this.sanityCheckModeTokens(screenSize); + + // Function above ensures that the lists of light and dark token names are the same. We can now use only one of them to loop through. + const smallModeTokenNames = screenSize.light.map((token) => token.name); + + smallModeTokenNames.forEach((tokenName) => + this.formatScreenSizeModes(screenSize, tokenName) + ); + + screenSize.light.forEach((token) => (token.name = `${token.name}-light`)); + screenSize.dark.forEach((token) => (token.name = `${token.name}-dark`)); + }); + + return super.formatTokens(tokens); + } + + private formatScreenSizeModes( + screenSizeTokens: ScreenSizeTokens, + tokenName: string + ) { + const componentKeys = Object.keys(screenSizeTokens.components); + + for (const component of componentKeys) { + const componentProps = screenSizeTokens.components[component]; + + if (!componentProps) continue; + + componentProps.forEach((prop) => { + prop.value = + prop.value === `var(${tokenName})` + ? `light-dark(var(${tokenName}-light), var(${tokenName}-dark))` + : prop.value; + }); + } + } + + /** + * Assumption is made that the lists of light and dark token names are the same. This verifies that. + * @param tokens + */ + private sanityCheckModeTokens(screenSize: ScreenSizeTokens) { + const smallModeDifference = getSymetricalDifference( + screenSize.light.map((token) => token.name), + screenSize.dark.map((token) => token.name) + ); + + this.checkModeDifference( + smallModeDifference, + `${screenSize.minBreakpoint}px` + ); + } + + private checkModeDifference(difference: string[], size: string) { + if (difference.length > 0) { + throw new Error( + `The following tokens are not defined in both light and dark mode for min-width breakpoint ${size}: ${difference.join( + ", " + )}` + ); + } + } +} diff --git a/scripts/post-process-css/formatters/maths-calc/maths-calc.spec.ts b/scripts/post-process-css/formatters/maths-calc/maths-calc.spec.ts new file mode 100644 index 00000000..3adbb43c --- /dev/null +++ b/scripts/post-process-css/formatters/maths-calc/maths-calc.spec.ts @@ -0,0 +1,45 @@ +import { expect } from "chai"; +import { MathsCalc } from "./maths-calc"; + +describe("MathsCalc", () => { + const mathsCalc = new MathsCalc(); + + describe("mathsCalc", () => { + it("should format tokens as expected", () => { + const tokens = [ + { name: "--global-prop1", value: "value1" }, + { name: "--global-prop2", value: "value1 value2" }, + { name: "--global-prop3", value: "value1 * value2" }, + { name: "--global-prop4", value: "value1 / value2" }, + { name: "--global-prop5", value: "value1 + value2" }, + { name: "--global-prop6", value: "value1 - value2" }, + { name: "--global-prop7", value: "value1 * value2 + value3" }, + { name: "--global-prop8", value: "value1 * value2 value3" }, + { name: "--global-prop9", value: "(value1 + value2) * value3" }, + { name: "--global-prop10", value: "(value1 + value2) * (value3 - value4)" }, + { name: "--global-prop11", value: "(value1 + value2) * (value3 - value4) value5 - value6" }, + { name: "--global-typography1", value: "900 clamp(2.1588rem, 1.7083rem + 2.2525vw, 4.4113rem)/1.25 'Sage Headline'"}, + { name: "--global-typography2", value: "400 20px/1 sage-icons"}, + ] + + const result = mathsCalc.formatTokens(tokens); + expect(result).to.deep.equal( + [ + { name: "--global-prop1", value: "value1" }, + { name: "--global-prop2", value: "value1 value2" }, + { name: "--global-prop3", value: "calc(value1 * value2)" }, + { name: "--global-prop4", value: "calc(value1 / value2)" }, + { name: "--global-prop5", value: "calc(value1 + value2)" }, + { name: "--global-prop6", value: "calc(value1 - value2)" }, + { name: "--global-prop7", value: "calc(value1 * value2 + value3)" }, + { name: "--global-prop8", value: "calc(value1 * value2) value3" }, + { name: "--global-prop9", value: "calc((value1 + value2) * value3)" }, + { name: "--global-prop10", value: "calc((value1 + value2) * (value3 - value4))" }, + { name: "--global-prop11", value: "calc((value1 + value2) * (value3 - value4)) calc(value5 - value6)" }, + { name: "--global-typography1", value: "900 clamp(2.1588rem, 1.7083rem + 2.2525vw, 4.4113rem)/1.25 'Sage Headline'"}, + { name: "--global-typography2", value: "400 20px/1 sage-icons"}, + ] + ); + }); + }); +}); \ No newline at end of file diff --git a/scripts/post-process-css/formatters/maths-calc/maths-calc.ts b/scripts/post-process-css/formatters/maths-calc/maths-calc.ts new file mode 100644 index 00000000..b0fa11ae --- /dev/null +++ b/scripts/post-process-css/formatters/maths-calc/maths-calc.ts @@ -0,0 +1,64 @@ +import { CssProperty } from "../../css-parser/css-parser.types"; + +interface IPartConditions { + isLeft: boolean + isMath: boolean + isMiddle: boolean + isRight: boolean + part: string +} + +export class MathsCalc { + private readonly mathChars = ['+', '-', '*', '/']; + /** + * + * @param tokens Tokens to format. + * @returns Formatted tokens. + */ + public formatTokens(tokens: CssProperty[]) { + + tokens.forEach((token) => { + token.value = this.formatTokenValue(token.value); + }) + + return tokens; + } + + private formatTokenValue(value: string): string { + const hasClamp = /clamp\s*\(.*\)/ + + if (hasClamp.test(value)) return value + + const valueParts = value.split(' '); + + const valueConditions = this.checkConditions(valueParts) + + valueConditions.forEach((item, i) => { + if (item.isLeft && !item.isMiddle) valueParts[i] = `calc(${item.part}` + if (item.isRight && !item.isMiddle) valueParts[i] = `${item.part})` + }) + + return valueParts.join(' ') + } + + private checkConditions(valueParts: string[]): IPartConditions[] { + const partConditions: IPartConditions[] = [] + + valueParts.forEach((part, i) => { + const left: string = i > 0 ? valueParts[i - 1] ?? '' : ''; + const right: string = valueParts[i + 1] ?? ''; + + const conditions = { + part, + isMath: this.mathChars.includes(part), + isLeft: this.mathChars.includes(right), + isRight: this.mathChars.includes(left), + isMiddle: this.mathChars.includes(right) && this.mathChars.includes(left), + } + + partConditions.push(conditions) + }); + + return partConditions + } +} \ No newline at end of file diff --git a/scripts/post-process-css/helpers.spec.ts b/scripts/post-process-css/helpers.spec.ts new file mode 100644 index 00000000..b4f2c575 --- /dev/null +++ b/scripts/post-process-css/helpers.spec.ts @@ -0,0 +1,28 @@ +import { expect } from "chai"; +import { findDuplicates, getSymetricalDifference } from "./helpers.js"; + +describe("helpers", () => { + describe("findDuplicates", () => { + it("should return expected duplicates from string array", () => { + const result = findDuplicates(["one", "two", "one", "three", "two"]); + expect(result).to.deep.equal(["one", "two"]); + }); + + it("should return expected duplicates from number array", () => { + const result = findDuplicates([1, 2, 1, 3, 2]); + expect(result).to.deep.equal([1, 2]); + }); + }); + + describe("getSymetricalDifference", () => { + it("should return expected symetrical different from number array", () => { + const result = getSymetricalDifference([1, 2, 1, 3, 2], [1]); + expect(result).to.deep.equal([2, 3]); + }); + + it("should return expected symetrical different from inverted number array", () => { + const result = getSymetricalDifference([1], [1, 2, 1, 3, 2]); + expect(result).to.deep.equal([2, 3]); + }); + }); +}); diff --git a/scripts/post-process-css/helpers.ts b/scripts/post-process-css/helpers.ts new file mode 100644 index 00000000..1a10418f --- /dev/null +++ b/scripts/post-process-css/helpers.ts @@ -0,0 +1,22 @@ +export function findDuplicates(arr: T[]): T[] { + const seen = new Set(); + const duplicates: T[] = []; + + for (const item of arr) { + if (seen.has(item)) { + duplicates.push(item); + } else { + seen.add(item); + } + } + + return duplicates; +} + +export function getSymetricalDifference(array1: T[], array2: T[]) { + let difference = array1 + .filter((x) => !array2.includes(x)) + .concat(array2.filter((x) => !array1.includes(x))); + + return Array.from(new Set(difference)); +} diff --git a/scripts/post-process-css/index.ts b/scripts/post-process-css/index.ts new file mode 100644 index 00000000..56a26dc0 --- /dev/null +++ b/scripts/post-process-css/index.ts @@ -0,0 +1,121 @@ +import * as fs from "fs"; +import * as path from "path"; +import { fileURLToPath } from 'url'; + +import { CssProperty } from "./css-parser/css-parser.types.js"; +import { CssParser } from "./css-parser/css-parser.js"; +import { ScreenSizeTokens } from "./screen-size-tokens.js"; +import { ContextTokens } from "./context-tokens.js"; +import { + ConsolidateScreenSizes, + FilterTypographyTokens, + LightDarkModeFormatter, + MathsCalc +} from "./formatters/"; + +const __filename = fileURLToPath(import.meta.url); +const __dirname = path.dirname(__filename); + +const cssParser = new CssParser(); + +// Loop through token contexts +const cssDistPath = path.join(__dirname, "../../dist/css"); + +fs.readdirSync(cssDistPath, { recursive: true, withFileTypes: true }).filter((file) => { + return /^(?!all\.css$)[\w,\s-]+\.css$/.test(file.name) +}).forEach((file) => { + const space = " "; + const maths = new MathsCalc() + + const contents = fs.readFileSync(path.join(file.path, file.name), "utf8") + const tokens = maths.formatTokens(cssParser.parseRootVariables(contents)) + + const lines: string[] = []; + lines.push(`:root {`); + + if (tokens.length > 0) { + lines.push( + tokens + .map( + (p) => + `${space}${p.name}: ${p.value};${ + p.comment ? ` ${p.comment}` : "" + }` + ) + .join("\n") + ); + } + + lines.push(`}`); + lines.push(""); + + fs.writeFileSync(path.join(file.path, file.name), lines.join("\n")); +}) + + +fs.readdirSync(cssDistPath).forEach((contextName) => { + const screenSizeTokens: ScreenSizeTokens[] = []; + + fs.readdirSync(path.join(cssDistPath, contextName)).forEach((screenSize) => { + if ( + !fs + .statSync(path.join(cssDistPath, contextName, screenSize)) + .isDirectory() + ) + return; + + screenSizeTokens.push( + getScreenSizeTokens(path.join(cssDistPath, contextName), screenSize) + ); + }); + + const tokens = new ContextTokens(contextName, screenSizeTokens); + + const consolidateScreenSizes = new ConsolidateScreenSizes(); + const lightDarkModeFormatter = new LightDarkModeFormatter( + consolidateScreenSizes + ); + const filterAdaptiveTypography = new FilterTypographyTokens( + lightDarkModeFormatter + ); + const formattedTokens = filterAdaptiveTypography.formatTokens(tokens); + + writeCombinedCssFile(contextName, formattedTokens); + + fs.copyFileSync( + path.join(__dirname, "../../docs/usage/index.html"), + path.join(cssDistPath, contextName, "index.html") + ); +}); + +function writeCombinedCssFile(file: string, tokens: ContextTokens) { + fs.writeFileSync(path.join(cssDistPath, file, "all.css"), tokens.toString()); +} + +function getScreenSizeTokens( + basePath: string, + screenSize: string +): ScreenSizeTokens { + const getFileContents = (file: string) => + fs.readFileSync(path.join(basePath, screenSize, file), "utf8"); + + const globalContents = getFileContents("global.css"); + const darkContents = getFileContents("dark.css"); + const lightContents = getFileContents("light.css"); + + const components: Record = {}; + fs.readdirSync(path.join(basePath, screenSize, "components")).forEach( + (file) => { + const fileName = path.basename(file, path.extname(file)); + const componentContents = getFileContents(`components/${file}`); + components[fileName] = cssParser.parseRootVariables(componentContents); + } + ); + + return new ScreenSizeTokens( + cssParser.parseRootVariables(globalContents), + cssParser.parseRootVariables(lightContents), + cssParser.parseRootVariables(darkContents), + components + ); +} diff --git a/scripts/post-process-css/screen-size-tokens.spec.ts b/scripts/post-process-css/screen-size-tokens.spec.ts new file mode 100644 index 00000000..4b5e2e17 --- /dev/null +++ b/scripts/post-process-css/screen-size-tokens.spec.ts @@ -0,0 +1,143 @@ +import { expect } from "chai"; +import { ScreenSizeTokens } from "./screen-size-tokens.js"; +import { CssProperty } from "./css-parser/css-parser.types.js"; + +describe("ScreenSizeTokens", () => { + describe("constructor", () => { + it("should set minBreakpoint when --global-size-breakpoint-min-width is present", () => { + const tokens = new ScreenSizeTokens( + [ + { + name: "--global-size-breakpoint-min-width", + value: "1024px", + }, + ], + [], + [], + {} + ); + + expect(tokens.minBreakpoint).to.equal(1024); + }); + + it("should set minBreakpoint to zero when --global-size-breakpoint-min-width is not present", () => { + const tokens = new ScreenSizeTokens( + [ + { + name: "--global-size-breakpoint-min-width", + value: "", + }, + ], + [], + [], + {} + ); + + expect(tokens.minBreakpoint).to.be.equal(0); + }); + + it("should set minBreakpoint to zero when --global-size-breakpoint-min-width is blank", () => { + const tokens = new ScreenSizeTokens([], [], [], {}); + + expect(tokens.minBreakpoint).to.be.equal(0); + }); + + it("should throw an error when --global-size-breakpoint-min-width is not a number or a pixel value", () => { + expect( + () => + new ScreenSizeTokens( + [ + { + name: "--global-size-breakpoint-min-width", + value: "ERROR", + }, + ], + [], + [], + {} + ) + ).to.throw( + 'Breakpoint min width "ERROR" is not a number or a pixel value' + ); + }); + }); + + describe("hasTokens", () => { + const globalTokens: CssProperty[] = [ + { + name: "--global-prop1", + value: "value1", + }, + ]; + const lightTokens: CssProperty[] = [ + { + name: "--prop1-light", + value: "value1", + }, + ]; + const darkTokens: CssProperty[] = [ + { + name: "--prop1-dark", + value: "value1", + }, + ]; + const componentTokens: Record = { + badge: [ + { + name: "--badge-prop1", + value: "badge-value1", + }, + ], + }; + + it("should return false when there are no tokens are available", () => { + const tokens: ScreenSizeTokens = new ScreenSizeTokens([], [], [], {}); + expect(tokens.hasTokens).to.be.false; + }); + + it("should return false when there is only breakpoint token available", () => { + const tokens: ScreenSizeTokens = new ScreenSizeTokens( + [{ name: "--global-size-breakpoint-min-width", value: "0" }], + [], + [], + {} + ); + expect(tokens.hasTokens).to.be.false; + }); + + it("should return true when there are all tokens available", () => { + const tokens = new ScreenSizeTokens( + globalTokens, + lightTokens, + darkTokens, + componentTokens + ); + + expect(tokens.hasTokens).to.be.true; + }); + + it("should return true when there are only global tokens available", () => { + const tokens = new ScreenSizeTokens(globalTokens, [], [], {}); + + expect(tokens.hasTokens).to.be.true; + }); + + it("should return true when there are only light tokens available", () => { + const tokens = new ScreenSizeTokens([], lightTokens, [], {}); + + expect(tokens.hasTokens).to.be.true; + }); + + it("should return true when there are only light tokens available", () => { + const tokens = new ScreenSizeTokens([], [], darkTokens, {}); + + expect(tokens.hasTokens).to.be.true; + }); + + it("should return true when there are only component tokens available", () => { + const tokens = new ScreenSizeTokens([], [], [], componentTokens); + + expect(tokens.hasTokens).to.be.true; + }); + }); +}); diff --git a/scripts/post-process-css/screen-size-tokens.ts b/scripts/post-process-css/screen-size-tokens.ts new file mode 100644 index 00000000..fbae22b1 --- /dev/null +++ b/scripts/post-process-css/screen-size-tokens.ts @@ -0,0 +1,46 @@ +import { CssProperty } from "./css-parser/css-parser.types.js"; + +export class ScreenSizeTokens { + public static readonly breakpointToken = "--global-size-breakpoint-min-width"; + public readonly minBreakpoint: number = 0; + + constructor( + public global: CssProperty[], + public light: CssProperty[], + public dark: CssProperty[], + public components: Record + ) { + this.global = global.filter( + (token) => token.name !== ScreenSizeTokens.breakpointToken + ); + this.light = light; + this.dark = dark; + this.components = components; + + const minBreakpointValue = global.find( + (p) => p.name === ScreenSizeTokens.breakpointToken + )?.value; + + if (minBreakpointValue) { + let minBreakpoint = parseInt(minBreakpointValue.replace("px", "")); + if (Number.isNaN(minBreakpoint)) { + throw new Error( + `Breakpoint min width "${minBreakpointValue}" is not a number or a pixel value` + ); + } + + this.minBreakpoint = minBreakpoint; + } + } + + public get hasTokens(): boolean { + return ( + this.global.filter( + (token) => token.name !== ScreenSizeTokens.breakpointToken + ).length > 0 || + this.light.length > 0 || + this.dark.length > 0 || + Object.keys(this.components).length > 0 + ); + } +} diff --git a/scripts/postbuild.js b/scripts/postbuild.js deleted file mode 100644 index 73f661ba..00000000 --- a/scripts/postbuild.js +++ /dev/null @@ -1,142 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ -const { resolve } = require('path') -const { - readJsonSync, - outputJsonSync, - copySync, - outputFileSync, - readFileSync -} = require('fs-extra') -const pick = require('lodash/pick') -const camelCase = require('lodash/camelCase') -const glob = require('glob').sync -const tsc = require('node-typescript-compiler') - -const filename = require('./utils/filename') -const headerContents = require('./utils/file-header') - -function copyPackageJSON () { - try { - const packageDef = readJsonSync(resolve(__dirname, '../package.json')) - const filteredPackageDef = pick( - packageDef, - ['name', 'dependencies', 'repository', 'description', 'author', 'version', 'peerDependencies', 'license', 'tags'] - ) - - filteredPackageDef.private = false - - // Writes to package.json in dist - outputJsonSync( - resolve(__dirname, '../dist/package.json'), - filteredPackageDef, - { - spaces: 2 - } - ) - } catch (err) { - console.log('Error copying package.json') - console.log(err) - } -} - -function copyReadme () { - try { - copySync( - resolve(__dirname, '../README.md'), - resolve(__dirname, '../dist/README.md') - ) - } catch (err) { - console.log('Error copying readme to dist') - console.log(err) - } -} - -function copyData () { - try { - copySync( - resolve(__dirname, '../temp/tokens.json'), - resolve(__dirname, '../dist/data/tokens.json') - ) - } catch (err) { - console.log('Error copying data to dist') - console.log(err) - } -} - -async function generateTSDefinitions () { - if (process.platform === 'win32') { - console.log('Typescript compiler was not executed, since current platform is win32.') - return - } - - try { - await tsc.compile({ - project: resolve(__dirname, '../tsconfig.json') - }) - } catch (err) { - console.log('Error compiling typescript') - console.log(err) - } -} - -function addEntryFile () { - const jsFilePaths = glob('./dist/js/**/*.js') - const entryFilePath = resolve(__dirname, '../dist/index.js') - - const fileExports = jsFilePaths - .map((filePath) => { - const [theme, fullName] = filePath.split('/').slice(-2) - const name = filename(fullName) - return { - theme, - name - } - }) - .map((file) => { - const exportName = camelCase(`${file.theme} ${file.name}`) - return `export * as ${exportName} from './js/${file.theme}/${file.name}'` - }).join('\n') - outputFileSync(entryFilePath, '\n' + fileExports + '\n') -} - -function addFileHeader () { - const files = glob('dist/**/*.@(js|css|ts|d.ts|scss|less)') - files.forEach((file) => { - try { - const filePath = resolve(__dirname, '../', file) - const outputData = headerContents + '\r\n\r\n' + readFileSync(filePath) - - outputFileSync(filePath, outputData) - } catch (er) { - console.error(`Error adding header to ${file}`, er) - } - }) -} - -function copyAssets () { - try { - copySync( - resolve(__dirname, '../assets'), - resolve(__dirname, '../dist/assets/') - ) - } catch (err) { - console.log('Error copying assets to dist') - console.log(err) - } -} - -async function main () { - copyPackageJSON() - copyReadme() - copyData() - copyAssets() - addEntryFile() - addFileHeader() - require('./tokens-documentation') - await require('./icons') - await generateTSDefinitions() -} - -main() diff --git a/scripts/postbuild.ts b/scripts/postbuild.ts new file mode 100644 index 00000000..b1b5250b --- /dev/null +++ b/scripts/postbuild.ts @@ -0,0 +1,151 @@ +/* +Copyright © 2024 The Sage Group plc or its licensors. All Rights reserved + */ +import { dirname, resolve } from 'path' +import { fileURLToPath } from 'url' +import fs from 'fs-extra' +import camelCase from 'lodash/camelCase.js' +import pick from 'lodash/pick.js' +import { FontAssetType } from 'fantasticon' +import { sync } from 'glob' +import dotenv from 'dotenv' + +const __filename = fileURLToPath(import.meta.url); +const __dirname = dirname(__filename); + +import { FileName } from './utils/filename.js' +import { HeaderContents } from './utils/file-header.js' + +import { Icons } from './icons.js' + +dotenv.config() + +function copyPackageJSON () { + try { + const packageDef = fs.readJsonSync(resolve(__dirname, '../package.json')) + const filteredPackageDef = pick( + packageDef, + ['name', 'dependencies', 'repository', 'description', 'author', 'version', 'peerDependencies', 'license', 'tags'] + ) + + //filteredPackageDef.private = false + + // Writes to package.json in dist + fs.outputJsonSync( + resolve(__dirname, '../dist/package.json'), + filteredPackageDef, + { + spaces: 2 + } + ) + } catch (err) { + console.log('Error copying package.json') + console.log(err) + } +} + +function copyReadme () { + try { + fs.copySync( + resolve(__dirname, '../README.md'), + resolve(__dirname, '../dist/README.md') + ) + } catch (err) { + console.log('Error copying readme to dist') + console.log(err) + } +} + +function addEntryFile () { + const jsFilePaths = sync('./dist/js/*/*/{large.small}/*.js') + const jsComponentPaths = sync('./dist/js/*/*/components/*/*.js') + const entryFilePath = resolve(__dirname, '../dist/index.js') + + const fileExports = jsFilePaths + .map((filePath: string): {mode?: string, name?: string, theme?: string, type?: string} | {} => { + const [mode, theme, type, fullName] = filePath.split('/').slice(-4) + const name = FileName(fullName) + return { + mode, + theme, + type, + name + } + }) + .map((file: {mode?: string, name?: string, theme?: string, type?: string}) => { + const exportName = camelCase(`${file.mode} ${file.theme} ${file.type} ${file.name}`) + return `export * as ${exportName} from './js/${file.mode}/${file.theme}/${file.type}/${file.name}'` + }).join('\n') + const componentExports = jsComponentPaths + .map((filePath: string): {component?: string, components?: string, mode?: string, name?: string, theme?: string} | {} => { + const [mode, theme, components, component, fullName] = filePath.split('/').slice(-5) + const name = FileName(fullName) + return { + mode, + theme, + components, + component, + name + } + }) + .map((file: {component?: string, components?: string, mode?: string, name?: string, theme?: string}) => { + const exportName = camelCase(`${file.mode} ${file.theme} ${file.component} ${file.name}`) + return `export * as ${exportName} from './js/${file.mode}/${file.theme}/${file.component}/${file.name}'` + }).join('\n') + fs.outputFileSync(entryFilePath, '\n' + fileExports + '\r\n\r\n' + componentExports + '\n') +} + +function addFileHeader () { + const files = sync('dist/**/*.@(css|js|ts|d.ts|scss|less)') + files.forEach((file: string) => { + try { + const filePath = resolve(__dirname, '../', file) + const outputData = HeaderContents() + '\r\n\r\n' + fs.readFileSync(filePath) + + fs.outputFileSync(filePath, outputData) + } catch (er) { + console.error(`Error adding header to ${file}`, er) + } + }) +} + +function copyAssets () { + try { + fs.copySync( + resolve(__dirname, '../assets'), + resolve(__dirname, '../dist/assets/') + ) + } catch (err) { + console.log('Error copying assets to dist') + console.log(err) + } +} + +(async () => { + copyPackageJSON() + copyReadme() + copyAssets() + addEntryFile() + addFileHeader() + await Icons({ + personalAccessToken: process.env['FIGMA_ACCESS_TOKEN'], + fileId: process.env['FIGMA_FILE_ID'], + pages: ['Icons'], + multipleSets: false, + distDir: './dist', + svgDir: './dist/assets/icons/svg', + fontsDir: './dist/assets/icons/fonts', + dataDir: './dist/assets/icons/data', + fontName: 'sage-icons', + formats: [FontAssetType.SVG, FontAssetType.WOFF, FontAssetType.WOFF2, FontAssetType.TTF, FontAssetType.EOT], + mainTemplate: './templates/layout.hbs', + docsDir: './dist/docs/icons/', + docsPartials: './templates/partials/**/*.hbs', + meta: { + description: 'Sage Icon Font', + url: 'http://sage.com', + copyright: 'Copyright © 2024 The Sage Group plc or its licensors. All Rights reserved.', + version: '1.0' + } + }) +})() diff --git a/scripts/prebuild.js b/scripts/prebuild.js deleted file mode 100644 index a3e096db..00000000 --- a/scripts/prebuild.js +++ /dev/null @@ -1,38 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ -const { - omod, - figmaTokensToStyleDictionary -} = require('omod') -const { resolve } = require('path') -const { - removeSync, - readJsonSync, - outputJsonSync -} = require('fs-extra') - -const filterPublic = require('./utils/filter-public') - -const distFolder = resolve(__dirname, '../dist') -const inputFile = resolve(__dirname, '../data/tokens.json') -const outputFile = resolve(__dirname, '../temp/tokens.json') - -;(() => { - console.log('Clearing /dist folder...') - removeSync(distFolder) - console.log('Done.\r\n') - - console.log(`Transforming ${inputFile}`) - - const tokens = readJsonSync(inputFile) - const filteredTokens = filterPublic(tokens) - const outputTokens = omod(filteredTokens, figmaTokensToStyleDictionary) - - // Below temporary /temp/tokens.json file is created. - // It contains all pre-transformed data. - outputJsonSync(outputFile, outputTokens, { spaces: 2 }) - - console.log(` - Writing output to ${outputFile}`) - console.log('Done.\r\n') -})() diff --git a/scripts/prebuild.ts b/scripts/prebuild.ts new file mode 100644 index 00000000..8f670423 --- /dev/null +++ b/scripts/prebuild.ts @@ -0,0 +1,17 @@ +/* +Copyright © 2024 The Sage Group plc or its licensors. All Rights reserved + */ + +import { dirname, resolve } from 'path' +import { fileURLToPath } from 'url' +import fs from 'fs-extra' + +const __filename = fileURLToPath(import.meta.url); +const __dirname = dirname(__filename); + +(() => { + console.log('Clearing /dist folder...') + fs.removeSync(resolve(__dirname, '../dist')) + console.log('Done.\r\n') +})() + diff --git a/scripts/style-dictionary.js b/scripts/style-dictionary.js deleted file mode 100644 index f2a217af..00000000 --- a/scripts/style-dictionary.js +++ /dev/null @@ -1,38 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ -const styleDictionary = require('style-dictionary') -const { resolve } = require('path') -const glob = require('glob').sync - -const transforms = glob('./scripts/transforms/*.transform.js').map(path => require(resolve(path))) -const formats = glob('./scripts/formats/*.format.js').map(path => require(resolve(path))) -const groups = { - web: [ - 'custom/attributes/default', - 'custom/name/camel', - 'custom/value/css-box-shadow', - 'custom/value/css-typography', - 'custom/value/css-font-weight' - ], - name: [ - 'custom/attributes/default', - 'custom/name/camel' - ], - mobile: [ - 'custom/attributes/default', - 'custom/name/camel', - 'custom/value/css-box-shadow', - 'custom/value/css-typography' - ] -} - -transforms.forEach(transform => styleDictionary.registerTransform(transform)) -formats.forEach(format => styleDictionary.registerFormat(format)) - -module.exports = { - dictionary: styleDictionary, - transforms, - formats, - groups -} diff --git a/scripts/style-dictionary.ts b/scripts/style-dictionary.ts new file mode 100644 index 00000000..09a59826 --- /dev/null +++ b/scripts/style-dictionary.ts @@ -0,0 +1,88 @@ +/* +Copyright © 2024 The Sage Group plc or its licensors. All Rights reserved + */ + +import StyleDictionary from 'style-dictionary' +import { register } from '@tokens-studio/sd-transforms' +import { mapDescriptionToComment } from './transforms/mapDescriptionToComment.js' + +StyleDictionary.registerTransform({ + name: 'custom/descriptionToComment', + type: 'attribute', + filter: token => token['description'], + transform: token => mapDescriptionToComment(token), +}); + +const groups = { + css: [ + 'border/css/shorthand', + 'shadow/css/shorthand', + 'transition/css/shorthand', + 'typography/css/shorthand', + 'name/kebab', + 'custom/descriptionToComment', + 'ts/size/px', + 'ts/opacity', + 'ts/size/lineheight', + 'ts/typography/fontWeight', + 'ts/resolveMath', + 'ts/size/css/letterspacing', + 'ts/color/modifiers' + ], + scss: [ + 'custom/descriptionToComment', + 'name/kebab', + 'ts/size/px', + 'ts/opacity', + 'ts/size/lineheight', + 'ts/typography/fontWeight', + 'ts/resolveMath', + 'ts/size/css/letterspacing', + 'ts/color/modifiers' + ], + js: [ + 'custom/descriptionToComment', + 'name/camel', + 'ts/size/px', + 'ts/opacity', + 'ts/size/lineheight', + 'ts/typography/fontWeight', + 'ts/resolveMath', + 'ts/size/css/letterspacing', + 'ts/color/modifiers' + ], + json: [ + 'custom/descriptionToComment', + 'name/camel', + 'ts/size/px', + 'ts/opacity', + 'ts/size/lineheight', + 'ts/typography/fontWeight', + 'ts/resolveMath', + 'ts/size/css/letterspacing', + 'ts/color/modifiers' + ], + mobile: [ + 'custom/descriptionToComment', + 'name/camel', + 'ts/size/px', + 'ts/opacity', + 'ts/size/lineheight', + 'ts/typography/fontWeight', + 'ts/resolveMath', + 'ts/size/css/letterspacing', + 'ts/color/modifiers' + ] +} + +register(StyleDictionary, { + 'ts/color/modifiers': { + format: 'hex' + } +}) + +export { + StyleDictionary, + groups +} + diff --git a/scripts/tokens-documentation.js b/scripts/tokens-documentation.js deleted file mode 100644 index 663d9635..00000000 --- a/scripts/tokens-documentation.js +++ /dev/null @@ -1,97 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ - -const { resolve } = require('path') -const omod = require('omod').omod - -const groupBy = require('lodash/groupBy') -const kebabCase = require('lodash/kebabCase') -const mapValues = require('lodash/mapValues') - -const { - readJsonSync, - readFileSync -} = require('fs-extra') - -const { - dictionary, - groups -} = require('./style-dictionary') -const collect = require('./utils/collect') - -const transformTokens = (tokens) => { - return dictionary.extend({ - tokens, - platforms: { - docs: { transforms: groups.web } - } - }).exportPlatform('docs') -} - -const groupTokens = (flattenedTokens) => { - const tokensByTheme = groupBy(flattenedTokens, 'attributes.theme') - return mapValues(tokensByTheme, app => groupBy(app, 'attributes.category')) -} - -/** - * @typedef TokensDocumentationConfig - * @property {string} mainTemplate - Path to main template for documentation - * @property {string} docsPartials - Glob to partials for tokens documentation - * @property {string} docsDir - Output dir for generated documentation - */ - -/** - * @param {TokensDocumentationConfig} config - config for Tokens documentation generator - */ -((config) => { - console.log('Building Documentation for design tokens...') - - const buildDocsFile = require('./handlebars')(config.docsPartials) - const mainTemplateContents = readFileSync(resolve(process.cwd(), config.mainTemplate), 'utf8') - const tokens = readJsonSync('temp/tokens.json') - - const transformedTokens = transformTokens(tokens) - const flattenedTokens = collect(transformedTokens, (node) => node.value && node.original) - const filteredTokens = flattenedTokens.filter((token) => token.attributes.category !== 'meta') - const groupedTokens = groupTokens(filteredTokens) - - const navigation = omod(groupedTokens, undefined, node => node?.name ? undefined : node) - - const generalContext = { - title: 'Sage Design Tokens', - bodyType: 'general', - themes: groupedTokens, - navigation - } - buildDocsFile(mainTemplateContents, generalContext, [config.docsDir, 'index.html']) - - Object.entries(groupedTokens).forEach(([theme, categories]) => { - const themeContext = { - title: `Sage Design Tokens / ${theme}`, - bodyType: 'theme', - themeName: theme, - categories, - navigation - } - buildDocsFile(mainTemplateContents, themeContext, [config.docsDir, kebabCase(theme), 'index.html']) - - Object.entries(categories).forEach(([category, tokens]) => { - const categoryContext = { - title: `Sage Design Tokens / ${theme} / ${category}`, - bodyType: 'category', - themeName: theme, - categoryName: category, - tokens, - navigation - } - buildDocsFile(mainTemplateContents, categoryContext, [config.docsDir, kebabCase(theme), kebabCase(category), 'index.html']) - }) - }) - - console.log('Done.\r\n') -})({ - mainTemplate: 'templates/layout.hbs', - docsPartials: 'templates/partials/**/*.hbs', - docsDir: 'dist/docs/tokens' -}) diff --git a/scripts/transforms/custom-attributes-default.transform.js b/scripts/transforms/custom-attributes-default.transform.js deleted file mode 100644 index 64d4939c..00000000 --- a/scripts/transforms/custom-attributes-default.transform.js +++ /dev/null @@ -1,42 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ - -/** - * Sets namespace, category, name and variant attributes for token. - */ - -module.exports = { - name: 'custom/attributes/default', - type: 'attribute', - transformer (token) { - const elements = [...token.path] - - if (elements.length === 3) { - const [theme, category, variant] = elements - return { theme, category, variant } - } - - if (elements.length === 4) { - const [theme, category, name, variant] = elements - return { theme, category, name, variant } - } - - if (elements.length === 5) { - const [theme, category, group, name, variant] = elements - return { theme, category, group, name, variant } - } - - if (elements.length === 6) { - const [theme, category, group, name, subgroup, variant] = elements - return { theme, category, group, name, subgroup, variant } - } - - if (elements.length === 7) { - const [theme, category, group, name, subgroup, element, variant] = elements - return { theme, category, group, name, subgroup, element, variant } - } - - return { } - } -} diff --git a/scripts/transforms/custom-name-camel.transform.js b/scripts/transforms/custom-name-camel.transform.js deleted file mode 100644 index 88d43a14..00000000 --- a/scripts/transforms/custom-name-camel.transform.js +++ /dev/null @@ -1,17 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ - -const camelCase = require('lodash/camelCase') - -/** - * Generates token name in camelCase - */ - -module.exports = { - name: 'custom/name/camel', - type: 'name', - transformer (token) { - return camelCase(Object.values(token.attributes).slice(1).join(' ')) - } -} diff --git a/scripts/transforms/custom-value-css-box-shadow.transform.js b/scripts/transforms/custom-value-css-box-shadow.transform.js deleted file mode 100644 index bd90a4b6..00000000 --- a/scripts/transforms/custom-value-css-box-shadow.transform.js +++ /dev/null @@ -1,32 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ -const ensureArray = require('../utils/ensure-array') -const ensurePxUnits = require('../utils/ensure-px-units') - -/** - * Handles boxShadow tokens - */ - -module.exports = { - name: 'custom/value/css-box-shadow', - type: 'value', - matcher: token => token.attributes.category === 'boxShadow', - transformer (token) { - const shadowDefinitions = ensureArray(token.value) - - return shadowDefinitions.map((definition) => { - if (definition.color === 'none') { - return undefined - } - - const boxShadow = `${ensurePxUnits(definition.x)} ${ensurePxUnits(definition.y)} ${ensurePxUnits(definition.blur)} ${ensurePxUnits(definition.spread)} ${definition.color}` - - if (definition.type === 'innerShadow') { - return `inset ${boxShadow}` - } - - return boxShadow - }).join(', ') - } -} diff --git a/scripts/transforms/custom-value-css-font-weight.transform.js b/scripts/transforms/custom-value-css-font-weight.transform.js deleted file mode 100644 index b7cefa49..00000000 --- a/scripts/transforms/custom-value-css-font-weight.transform.js +++ /dev/null @@ -1,21 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ - -/** - * Handles typography and fontWeights tokens - */ - -module.exports = { - name: 'custom/value/css-font-weight', - type: 'value', - matcher: (token) => - token.attributes.category === 'typography' || - token.attributes.category === 'fontWeights', - transformer: (token) => { - return token.value - .replace('Regular', '400') - .replace('Medium', '500') - .replace('Bold', '700') - } -} diff --git a/scripts/transforms/custom-value-css-typography.transform.js b/scripts/transforms/custom-value-css-typography.transform.js deleted file mode 100644 index 501b0724..00000000 --- a/scripts/transforms/custom-value-css-typography.transform.js +++ /dev/null @@ -1,22 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ - -/** - * Handles typography tokens - */ - -module.exports = { - name: 'custom/value/css-typography', - type: 'value', - matcher: token => token.attributes.category === 'typography', - transformer: token => { - const { fontFamily, fontWeight, lineHeight, fontSize } = token.value - - if (fontFamily && fontSize) { - return `${fontWeight} ${fontSize}/${lineHeight} ${fontFamily}` - } - - return '0 none' - } -} diff --git a/scripts/transforms/mapDescriptionToComment.ts b/scripts/transforms/mapDescriptionToComment.ts new file mode 100644 index 00000000..e77a7f18 --- /dev/null +++ b/scripts/transforms/mapDescriptionToComment.ts @@ -0,0 +1,13 @@ +import type { DesignToken } from 'style-dictionary/types'; + +/** + * Helper: Maps the token description to a style dictionary comment attribute - this will be picked up by some Style Dictionary + * formats and automatically output as code comments + */ +export function mapDescriptionToComment(token: DesignToken): DesignToken { + // intentional mutation of the original object + const _t = token; + // Replace carriage returns with just newlines + _t.comment = _t['description'].replace(/\r?\n|\r/g, ' '); + return _t; +} \ No newline at end of file diff --git a/scripts/update-data.js b/scripts/update-data.js deleted file mode 100644 index 21033a9b..00000000 --- a/scripts/update-data.js +++ /dev/null @@ -1,36 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ - -const path = require('path') -const fs = require('fs-extra') -const kebabCase = require('lodash/kebabCase') - -const normalize = require('./utils/normalize') -const filterPublic = require('./utils/filter-public') - -const tokensJSON = JSON.parse(process.argv[2]) -const tokens = tokensJSON?.record.values - -function wipeData () { - const dataFolder = path.resolve(__dirname, '../data') - fs.removeSync(dataFolder) - fs.ensureDirSync(dataFolder) -} - -function writeDataToFile (filename, data) { - const filePath = path.resolve(__dirname, `../data/${filename}.json`) - fs.writeJsonSync(filePath, normalize(data), { spaces: 2 }) -} - -function main () { - const publicTokens = filterPublic(tokens) - wipeData() - writeDataToFile('all', publicTokens) - Object.entries(publicTokens).forEach(([setName, tokenSet]) => { - const setFilename = kebabCase(setName) - writeDataToFile(setFilename, tokenSet) - }) -} - -main() diff --git a/scripts/utils/collect.js b/scripts/utils/collect.js deleted file mode 100644 index c8792410..00000000 --- a/scripts/utils/collect.js +++ /dev/null @@ -1,39 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ - -/** - * Callback function for collect util. - * @callback CollectCallback - * @param {Object} node - node to check - * @return {boolean} - */ - -/** - * Recursively selects nodes of object. It preserves node if callback returns true and rejects if callback returns false. - * @param {object} object - Object with children prop for children nodes. - * @param {CollectCallback} callback - Callback function - * @returns {*|*[]} - */ -module.exports = (object, callback = () => true) => { - const output = [] - - const walk = (walkObject) => { - if (callback(walkObject)) { - output.push(walkObject) - return - } - - if (walkObject instanceof Object) { - Object.values(walkObject).forEach((childObj) => walk(childObj)) - return - } - - if (Array.isArray(walkObject)) { - walkObject.forEach(childObj => walk(childObj)) - } - } - - walk(object) - return output -} diff --git a/scripts/utils/collect.ts b/scripts/utils/collect.ts new file mode 100644 index 00000000..81c8e70b --- /dev/null +++ b/scripts/utils/collect.ts @@ -0,0 +1,41 @@ +/* +Copyright © 2024 The Sage Group plc or its licensors. All Rights reserved + */ + +import Figma from 'figma-js' + +/** + * Callback function for collect util. + */ + +/** + * Recursively selects nodes of object. It preserves node if callback returns true and rejects if callback returns false. + */ + +interface ICollect { + object: Figma.Node + callback: (node: Figma.Node) => boolean +} + +export const Collect = ({object, callback}: ICollect): Figma.Node[] => { + const output: Figma.Node[] = [] + + const walk = (walkObject: Figma.Node) => { + if (callback(walkObject)) { + output.push(walkObject) + return + } + + if (Array.isArray(walkObject)) { + walkObject.forEach((childObj: Figma.Node) => walk(childObj)) + return + } + + if (walkObject instanceof Object) { + Object.values(walkObject).forEach((childObj) => walk(childObj)) + } + } + + walk(object) + return output +} diff --git a/scripts/utils/ensure-array.js b/scripts/utils/ensure-array.js deleted file mode 100644 index dbd759c4..00000000 --- a/scripts/utils/ensure-array.js +++ /dev/null @@ -1,9 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ -/** - * Ensures that given input is array. - * @param input - * @returns {*|*[]} - */ -module.exports = (input) => Array.isArray(input) ? input : [input] diff --git a/scripts/utils/ensure-px-units.js b/scripts/utils/ensure-px-units.js deleted file mode 100644 index b76f02c1..00000000 --- a/scripts/utils/ensure-px-units.js +++ /dev/null @@ -1,26 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ -const isNumber = require('lodash/isNumber') -const isString = require('lodash/isString') - -/** - * Ensures that input has pixel units if needed - * @param input - * @returns {string|*} - */ -module.exports = (input) => { - if (isString(input) && input.includes('px')) { - return input - } - - if (isString(input) && input === '0') { - return input - } - - if (isNumber(input) && input === 0) { - return input.toString() - } - - return `${input.toString()}px` -} diff --git a/scripts/utils/file-header.js b/scripts/utils/file-header.js deleted file mode 100644 index e350116a..00000000 --- a/scripts/utils/file-header.js +++ /dev/null @@ -1,7 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ - -module.exports = `/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */` diff --git a/scripts/utils/file-header.ts b/scripts/utils/file-header.ts new file mode 100644 index 00000000..7117f790 --- /dev/null +++ b/scripts/utils/file-header.ts @@ -0,0 +1,14 @@ +/* +Copyright © 2024 The Sage Group plc or its licensors. All Rights reserved + */ + +/** + * Gets the filename for a file + */ + +export const HeaderContents = (): string => { + const year = new Date().getFullYear() + return `/** + * Copyright © ${year} The Sage Group plc or its licensors. All Rights reserved + */` +} diff --git a/scripts/utils/filename.js b/scripts/utils/filename.js deleted file mode 100644 index 5da4acf2..00000000 --- a/scripts/utils/filename.js +++ /dev/null @@ -1,17 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ - -/** - * Gets the filename for a file - * - * @param {string} path - the path to the file - * - * @returns {string} - */ -const { extname, basename } = require('path') - -module.exports = (filePath) => { - const extension = extname(filePath) - return basename(filePath, extension) -} diff --git a/scripts/utils/filename.ts b/scripts/utils/filename.ts new file mode 100644 index 00000000..0e53828a --- /dev/null +++ b/scripts/utils/filename.ts @@ -0,0 +1,14 @@ +/* +Copyright © 2024 The Sage Group plc or its licensors. All Rights reserved + */ + +/** + * Gets the filename for a file + */ + +import { extname, basename } from 'path' + +export const FileName = (filePath?: string): string | undefined => { + const extension = filePath ? extname(filePath) : undefined + return filePath ? basename(filePath, extension) : undefined +} diff --git a/scripts/utils/filter-component.ts b/scripts/utils/filter-component.ts new file mode 100644 index 00000000..78c9a075 --- /dev/null +++ b/scripts/utils/filter-component.ts @@ -0,0 +1,7 @@ +/* +Copyright © 2024 The Sage Group plc or its licensors. All Rights reserved + */ + +import type { DesignToken } from 'style-dictionary/types'; + +export const FilterComponent = (token: DesignToken, componentName: string): boolean => token.path.indexOf('origin') === -1 && (componentName ? token.path[0] === componentName : false) diff --git a/scripts/utils/filter-public.js b/scripts/utils/filter-public.js deleted file mode 100644 index f7ba6496..00000000 --- a/scripts/utils/filter-public.js +++ /dev/null @@ -1,16 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ - -/** - * Filter only publicly available themes - * - * @param {Object} tokens - Tokens object with all themes - * - * @returns {Object} - */ -module.exports = function (tokens) { - const tokensEntries = Object.entries(tokens) - const filteredTokens = tokensEntries.filter(([, tokenSet]) => tokenSet?.meta?.public?.value === 'true') - return Object.fromEntries(filteredTokens) -} diff --git a/scripts/utils/filter-theme.js b/scripts/utils/filter-theme.js deleted file mode 100644 index eaf3b84f..00000000 --- a/scripts/utils/filter-theme.js +++ /dev/null @@ -1,7 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ - -const filterTheme = (theme) => (token) => token.attributes.theme === theme - -module.exports = filterTheme diff --git a/scripts/utils/normalize.js b/scripts/utils/normalize.js deleted file mode 100644 index 31e24d80..00000000 --- a/scripts/utils/normalize.js +++ /dev/null @@ -1,35 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ - -/** - * normalizes output of JSON. Makes sure, that every record has `value` - * property with proper value. - * - * @param {Object} tokensData - JSON data to normalize - * - * @returns {Object} - */ - -module.exports = function (tokensData) { - const walk = (item) => { - switch (typeof item) { - case 'string': - case 'number': - return { value: item } - case 'object': { - if ('value' in item) { - return item - } - - const output = Object - .keys(item) - .map((key) => [key, walk(item[key])]) - - return Object.fromEntries(output) - } - } - } - - return walk(tokensData) -} diff --git a/scripts/utils/unique-values.js b/scripts/utils/unique-values.js deleted file mode 100644 index 7c57dd82..00000000 --- a/scripts/utils/unique-values.js +++ /dev/null @@ -1,12 +0,0 @@ -/* -Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved - */ - -/** - * Function that selectsunique values of a given fild in whole collection. - * @param {object[]} array - Array of objects - * @param {string} key - Property name - * @returns {string[]} - */ -// module.exports = (array, key) => array.map(item => item[key]).filter((value, index, self) => self.indexOf(value) === index) -module.exports = (array, mapFn) => array.map(mapFn).filter((value, index, self) => self.indexOf(value) === index) diff --git a/scripts/utils/unique-values.ts b/scripts/utils/unique-values.ts new file mode 100644 index 00000000..eaf37de3 --- /dev/null +++ b/scripts/utils/unique-values.ts @@ -0,0 +1,16 @@ +/* +Copyright © 2024 The Sage Group plc or its licensors. All Rights reserved + */ + +import { IGlyphData, IIcon } from "../icons.js" + +/** + * Function that selectsunique values of a given fild in whole collection. + */ + +interface IUniqueValues { + array: IIcon[] | IGlyphData[] + mapFn: (item: IIcon | IGlyphData) => string | undefined +} + +export const UniqueValues = ({array, mapFn}: IUniqueValues): (string | undefined)[] => array.map(mapFn).filter((value, index, self) => self.indexOf(value) === index) diff --git a/templates/layout.hbs b/templates/layout.hbs deleted file mode 100644 index 3af208b0..00000000 --- a/templates/layout.hbs +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - - {{title}} - - - - - - - - -
- {{prefixedPartial this 'bodyType' 'body'}} -
- - - - diff --git a/templates/partials/body/category.hbs b/templates/partials/body/category.hbs deleted file mode 100644 index a07b1286..00000000 --- a/templates/partials/body/category.hbs +++ /dev/null @@ -1,23 +0,0 @@ -
- -
-

- - Sage Design Tokens - - / - - {{themeName}} - - / - {{categoryName}} -

- -
- {{>list tokens=tokens category=categoryName theme=themeName}} -
-
-
- diff --git a/templates/partials/body/general.hbs b/templates/partials/body/general.hbs deleted file mode 100644 index 4ac90c77..00000000 --- a/templates/partials/body/general.hbs +++ /dev/null @@ -1,29 +0,0 @@ -
- -
-

- Sage Design Tokens -

- - {{#each themes as |categories themeName|}} -

- {{themeName}} - -

- {{#each categories as |tokens categoryName|}} -
-

- {{ categoryName }} - -

- {{>list tokens=tokens category=categoryName theme=themeName}} -
- {{/each}} - {{/each}} - -
-
diff --git a/templates/partials/body/icons.hbs b/templates/partials/body/icons.hbs deleted file mode 100644 index 6204a42b..00000000 --- a/templates/partials/body/icons.hbs +++ /dev/null @@ -1,55 +0,0 @@ - - - -
-

Sage icons

-
- -
-
-
-
- - - diff --git a/templates/partials/body/theme.hbs b/templates/partials/body/theme.hbs deleted file mode 100644 index 6747b89b..00000000 --- a/templates/partials/body/theme.hbs +++ /dev/null @@ -1,20 +0,0 @@ -
- -
-

- - Sage Design Tokens - - / - {{themeName}} -

- {{#each categories as |tokens categoryName|}} -
-

{{categoryName}}

- {{>list tokens=tokens category=categoryName theme=themeName}} -
- {{/each}} -
-
diff --git a/templates/partials/list-item.hbs b/templates/partials/list-item.hbs deleted file mode 100644 index 48844607..00000000 --- a/templates/partials/list-item.hbs +++ /dev/null @@ -1,18 +0,0 @@ - - - {{name}} - - - -
{{debug value}}
- - - {{ prefixedPartial this 'type' 'token-preview' }} - - diff --git a/templates/partials/list.hbs b/templates/partials/list.hbs deleted file mode 100644 index 6a1083de..00000000 --- a/templates/partials/list.hbs +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - {{#each tokens as |token|}} - {{> list-item token=token category=category theme=theme}} - {{/each}} -
NameValuePreview
diff --git a/templates/partials/token-preview/border-radius.hbs b/templates/partials/token-preview/border-radius.hbs deleted file mode 100644 index 109ca9a5..00000000 --- a/templates/partials/token-preview/border-radius.hbs +++ /dev/null @@ -1,3 +0,0 @@ -
-
diff --git a/templates/partials/token-preview/border-width.hbs b/templates/partials/token-preview/border-width.hbs deleted file mode 100644 index 191342cb..00000000 --- a/templates/partials/token-preview/border-width.hbs +++ /dev/null @@ -1,3 +0,0 @@ -
-
diff --git a/templates/partials/token-preview/box-shadow.hbs b/templates/partials/token-preview/box-shadow.hbs deleted file mode 100644 index 343c4ecc..00000000 --- a/templates/partials/token-preview/box-shadow.hbs +++ /dev/null @@ -1,3 +0,0 @@ -
-
diff --git a/templates/partials/token-preview/color.hbs b/templates/partials/token-preview/color.hbs deleted file mode 100644 index 86a03d1b..00000000 --- a/templates/partials/token-preview/color.hbs +++ /dev/null @@ -1,3 +0,0 @@ -
-
diff --git a/templates/partials/token-preview/font-families.hbs b/templates/partials/token-preview/font-families.hbs deleted file mode 100644 index c8642ee3..00000000 --- a/templates/partials/token-preview/font-families.hbs +++ /dev/null @@ -1,3 +0,0 @@ -
- n/a -
diff --git a/templates/partials/token-preview/font-sizes.hbs b/templates/partials/token-preview/font-sizes.hbs deleted file mode 100644 index 563cd911..00000000 --- a/templates/partials/token-preview/font-sizes.hbs +++ /dev/null @@ -1,4 +0,0 @@ -
- Aa -
diff --git a/templates/partials/token-preview/font-weights.hbs b/templates/partials/token-preview/font-weights.hbs deleted file mode 100644 index 284ea136..00000000 --- a/templates/partials/token-preview/font-weights.hbs +++ /dev/null @@ -1,3 +0,0 @@ -
- Aa -
diff --git a/templates/partials/token-preview/line-heights.hbs b/templates/partials/token-preview/line-heights.hbs deleted file mode 100644 index 73b2f288..00000000 --- a/templates/partials/token-preview/line-heights.hbs +++ /dev/null @@ -1,3 +0,0 @@ -
- Aa -
diff --git a/templates/partials/token-preview/opacity.hbs b/templates/partials/token-preview/opacity.hbs deleted file mode 100644 index adaf1be9..00000000 --- a/templates/partials/token-preview/opacity.hbs +++ /dev/null @@ -1,3 +0,0 @@ -
-
-
diff --git a/templates/partials/token-preview/other.hbs b/templates/partials/token-preview/other.hbs deleted file mode 100644 index 1ce0dbc5..00000000 --- a/templates/partials/token-preview/other.hbs +++ /dev/null @@ -1 +0,0 @@ -n/a diff --git a/templates/partials/token-preview/sizing.hbs b/templates/partials/token-preview/sizing.hbs deleted file mode 100644 index e4b78607..00000000 --- a/templates/partials/token-preview/sizing.hbs +++ /dev/null @@ -1,3 +0,0 @@ -
-
diff --git a/templates/partials/token-preview/spacing.hbs b/templates/partials/token-preview/spacing.hbs deleted file mode 100644 index 445feccf..00000000 --- a/templates/partials/token-preview/spacing.hbs +++ /dev/null @@ -1,3 +0,0 @@ -
-
diff --git a/templates/partials/token-preview/typography.hbs b/templates/partials/token-preview/typography.hbs deleted file mode 100644 index 0068a0b3..00000000 --- a/templates/partials/token-preview/typography.hbs +++ /dev/null @@ -1,3 +0,0 @@ -
- n/a -
diff --git a/templates/partials/tokens-navigation.hbs b/templates/partials/tokens-navigation.hbs deleted file mode 100644 index ca00c0af..00000000 --- a/templates/partials/tokens-navigation.hbs +++ /dev/null @@ -1,18 +0,0 @@ -
- {{#each navigation as |categories themeName|}} - - - {{/each}} -
diff --git a/tsconfig.json b/tsconfig.json index 406769fe..8566c66d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,8 +1,22 @@ { - "include": ["dist/**/*.js"], + "extends": "@tsconfig/strictest/tsconfig.json", + "include": ["dist/**/*.js", "**/*.ts"], + "exclude": ["node_modules"], "compilerOptions": { "allowJs": true, "declaration": true, - "emitDeclarationOnly": true - } -} \ No newline at end of file + "emitDeclarationOnly": true, + "esModuleInterop": true, + "noUnusedLocals": false, + "noUnusedParameters": false, + "allowUnreachableCode": true, + "moduleResolution": "NodeNext", + "module": "NodeNext", + "target": "ESNext" + }, + "ts-node": { + "experimentalSpecifierResolution": "node", + "transpileOnly": true, + "esm": true, + }, +} diff --git a/yarn.lock b/yarn.lock index 12e5d938..22b22425 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,5096 +2,6424 @@ # yarn lockfile v1 -"@babel/code-frame@^7.0.0": - "integrity" "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==" - "resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz" - "version" "7.16.7" - dependencies: - "@babel/highlight" "^7.16.7" - -"@babel/code-frame@7.12.11": - "integrity" "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==" - "resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz" - "version" "7.12.11" - dependencies: - "@babel/highlight" "^7.10.4" - -"@babel/helper-validator-identifier@^7.16.7": - "integrity" "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==" - "resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz" - "version" "7.16.7" - -"@babel/highlight@^7.10.4", "@babel/highlight@^7.16.7": - "integrity" "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==" - "resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz" - "version" "7.16.10" - dependencies: - "@babel/helper-validator-identifier" "^7.16.7" - "chalk" "^2.0.0" - "js-tokens" "^4.0.0" - -"@colors/colors@1.5.0": - "resolved" "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz" - "version" "1.5.0" - -"@eslint/eslintrc@^0.4.0": - "integrity" "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==" - "resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz" - "version" "0.4.3" - dependencies: - "ajv" "^6.12.4" - "debug" "^4.1.1" - "espree" "^7.3.0" - "globals" "^13.9.0" - "ignore" "^4.0.6" - "import-fresh" "^3.2.1" - "js-yaml" "^3.13.1" - "minimatch" "^3.0.4" - "strip-json-comments" "^3.1.1" - -"@gar/promisify@^1.0.1": - "integrity" "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" - "resolved" "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz" - "version" "1.1.3" +"@amanda-mitchell/semantic-release-npm-multiple@^3.11.1": + version "3.11.1" + resolved "https://registry.yarnpkg.com/@amanda-mitchell/semantic-release-npm-multiple/-/semantic-release-npm-multiple-3.11.1.tgz#3808c21fcada2eec797ef6bda2013f888108c8a4" + integrity sha512-HQc2QEY4mYP4jU63bqoslsR4vmjj8OlbzdRYv2ZqEoyGYi8hWOcGIiJuilzFfTjLsWgVhukdLW8hCzMNdEduZA== + dependencies: + "@semantic-release/npm" "^12.0.1" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.22.13": + version "7.26.2" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85" + integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ== + dependencies: + "@babel/helper-validator-identifier" "^7.25.9" + js-tokens "^4.0.0" + picocolors "^1.0.0" + +"@babel/helper-validator-identifier@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7" + integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ== + +"@bundled-es-modules/deepmerge@^4.3.1": + version "4.3.1" + resolved "https://registry.yarnpkg.com/@bundled-es-modules/deepmerge/-/deepmerge-4.3.1.tgz#e0ef866494125f64f6fb75adeffacedc25f2f31b" + integrity sha512-Rk453EklPUPC3NRWc3VUNI/SSUjdBaFoaQvFRmNBNtMHVtOFD5AntiWg5kEE1hqcPqedYFDzxE3ZcMYPcA195w== + dependencies: + deepmerge "^4.3.1" + +"@bundled-es-modules/glob@^10.4.2": + version "10.4.2" + resolved "https://registry.yarnpkg.com/@bundled-es-modules/glob/-/glob-10.4.2.tgz#ef8f58b5d33ec8a1d4ca739bb49c09e5d0874bb5" + integrity sha512-740y5ofkzydsFao5EXJrGilcIL6EFEw/cmPf2uhTw9J6G1YOhiIFjNFCHdpgEiiH5VlU3G0SARSjlFlimRRSMA== + dependencies: + buffer "^6.0.3" + events "^3.3.0" + glob "^10.4.2" + patch-package "^8.0.0" + path "^0.12.7" + stream "^0.0.3" + string_decoder "^1.3.0" + url "^0.11.3" + +"@bundled-es-modules/memfs@^4.9.4": + version "4.9.4" + resolved "https://registry.yarnpkg.com/@bundled-es-modules/memfs/-/memfs-4.9.4.tgz#9c68d1ff10f485d59d45778c930aa8d60d0095a2" + integrity sha512-1XyYPUaIHwEOdF19wYVLBtHJRr42Do+3ctht17cZOHwHf67vkmRNPlYDGY2kJps4RgE5+c7nEZmEzxxvb1NZWA== + dependencies: + assert "^2.0.0" + buffer "^6.0.3" + events "^3.3.0" + memfs "^4.9.3" + path "^0.12.7" + stream "^0.0.3" + util "^0.12.5" + +"@bundled-es-modules/postcss-calc-ast-parser@^0.1.6": + version "0.1.6" + resolved "https://registry.yarnpkg.com/@bundled-es-modules/postcss-calc-ast-parser/-/postcss-calc-ast-parser-0.1.6.tgz#c15f422c0300b2daba9cff6a9d07ef6c5e7cc673" + integrity sha512-y65TM5zF+uaxo9OeekJ3rxwTINlQvrkbZLogYvQYVoLtxm4xEiHfZ7e/MyiWbStYyWZVZkVqsaVU6F4SUK5XUA== + dependencies: + postcss-calc-ast-parser "^0.1.4" + +"@cspotcode/source-map-support@^0.8.0": + version "0.8.1" + resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" + integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== + dependencies: + "@jridgewell/trace-mapping" "0.3.9" + +"@csstools/css-parser-algorithms@^3.0.4": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.4.tgz#74426e93bd1c4dcab3e441f5cc7ba4fb35d94356" + integrity sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A== + +"@csstools/css-tokenizer@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@csstools/css-tokenizer/-/css-tokenizer-3.0.3.tgz#a5502c8539265fecbd873c1e395a890339f119c2" + integrity sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw== + +"@csstools/media-query-list-parser@^4.0.2": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@csstools/media-query-list-parser/-/media-query-list-parser-4.0.2.tgz#e80e17eba1693fceafb8d6f2cfc68c0e7a9ab78a" + integrity sha512-EUos465uvVvMJehckATTlNqGj4UJWkTmdWuDMjqvSUkjGpmOyFZBVwb4knxCm/k2GMTXY+c/5RkdndzFYWeX5A== + +"@csstools/selector-specificity@^5.0.0": + version "5.0.0" + resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz#037817b574262134cabd68fc4ec1a454f168407b" + integrity sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw== + +"@dual-bundle/import-meta-resolve@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@dual-bundle/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz#519c1549b0e147759e7825701ecffd25e5819f7b" + integrity sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg== + +"@esbuild/aix-ppc64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.23.1.tgz#51299374de171dbd80bb7d838e1cfce9af36f353" + integrity sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ== + +"@esbuild/android-arm64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.23.1.tgz#58565291a1fe548638adb9c584237449e5e14018" + integrity sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw== + +"@esbuild/android-arm@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.23.1.tgz#5eb8c652d4c82a2421e3395b808e6d9c42c862ee" + integrity sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ== + +"@esbuild/android-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.23.1.tgz#ae19d665d2f06f0f48a6ac9a224b3f672e65d517" + integrity sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg== + +"@esbuild/darwin-arm64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.23.1.tgz#05b17f91a87e557b468a9c75e9d85ab10c121b16" + integrity sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q== + +"@esbuild/darwin-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.23.1.tgz#c58353b982f4e04f0d022284b8ba2733f5ff0931" + integrity sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw== + +"@esbuild/freebsd-arm64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.23.1.tgz#f9220dc65f80f03635e1ef96cfad5da1f446f3bc" + integrity sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA== + +"@esbuild/freebsd-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.23.1.tgz#69bd8511fa013b59f0226d1609ac43f7ce489730" + integrity sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g== + +"@esbuild/linux-arm64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.23.1.tgz#8050af6d51ddb388c75653ef9871f5ccd8f12383" + integrity sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g== + +"@esbuild/linux-arm@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.23.1.tgz#ecaabd1c23b701070484990db9a82f382f99e771" + integrity sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ== + +"@esbuild/linux-ia32@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.23.1.tgz#3ed2273214178109741c09bd0687098a0243b333" + integrity sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ== + +"@esbuild/linux-loong64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.23.1.tgz#a0fdf440b5485c81b0fbb316b08933d217f5d3ac" + integrity sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw== + +"@esbuild/linux-mips64el@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.23.1.tgz#e11a2806346db8375b18f5e104c5a9d4e81807f6" + integrity sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q== + +"@esbuild/linux-ppc64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.23.1.tgz#06a2744c5eaf562b1a90937855b4d6cf7c75ec96" + integrity sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw== + +"@esbuild/linux-riscv64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.23.1.tgz#65b46a2892fc0d1af4ba342af3fe0fa4a8fe08e7" + integrity sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA== + +"@esbuild/linux-s390x@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.23.1.tgz#e71ea18c70c3f604e241d16e4e5ab193a9785d6f" + integrity sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw== + +"@esbuild/linux-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.23.1.tgz#d47f97391e80690d4dfe811a2e7d6927ad9eed24" + integrity sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ== + +"@esbuild/netbsd-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.23.1.tgz#44e743c9778d57a8ace4b72f3c6b839a3b74a653" + integrity sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA== + +"@esbuild/openbsd-arm64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.23.1.tgz#05c5a1faf67b9881834758c69f3e51b7dee015d7" + integrity sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q== + +"@esbuild/openbsd-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.23.1.tgz#2e58ae511bacf67d19f9f2dcd9e8c5a93f00c273" + integrity sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA== + +"@esbuild/sunos-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.23.1.tgz#adb022b959d18d3389ac70769cef5a03d3abd403" + integrity sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA== + +"@esbuild/win32-arm64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.23.1.tgz#84906f50c212b72ec360f48461d43202f4c8b9a2" + integrity sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A== + +"@esbuild/win32-ia32@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.23.1.tgz#5e3eacc515820ff729e90d0cb463183128e82fac" + integrity sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ== + +"@esbuild/win32-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.23.1.tgz#81fd50d11e2c32b2d6241470e3185b70c7b30699" + integrity sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg== + +"@eslint-community/eslint-utils@^4.1.2", "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0", "@eslint-community/eslint-utils@^4.4.1": + version "4.4.1" + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz#d1145bf2c20132d6400495d6df4bf59362fd9d56" + integrity sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA== + dependencies: + eslint-visitor-keys "^3.4.3" + +"@eslint-community/regexpp@^4.11.0", "@eslint-community/regexpp@^4.12.1": + version "4.12.1" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz#cfc6cffe39df390a3841cde2abccf92eaa7ae0e0" + integrity sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ== + +"@eslint/config-array@^0.19.0": + version "0.19.0" + resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.19.0.tgz#3251a528998de914d59bb21ba4c11767cf1b3519" + integrity sha512-zdHg2FPIFNKPdcHWtiNT+jEFCHYVplAXRDlQDyqy0zGx/q2parwh7brGJSiTxRk/TSMkbM//zt/f5CHgyTyaSQ== + dependencies: + "@eslint/object-schema" "^2.1.4" + debug "^4.3.1" + minimatch "^3.1.2" + +"@eslint/core@^0.9.0": + version "0.9.0" + resolved "https://registry.yarnpkg.com/@eslint/core/-/core-0.9.0.tgz#168ee076f94b152c01ca416c3e5cf82290ab4fcd" + integrity sha512-7ATR9F0e4W85D/0w7cU0SNj7qkAexMG+bAHEZOjo9akvGuhHE2m7umzWzfnpa0XAg5Kxc1BWmtPMV67jJ+9VUg== + +"@eslint/eslintrc@^3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-3.2.0.tgz#57470ac4e2e283a6bf76044d63281196e370542c" + integrity sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w== + dependencies: + ajv "^6.12.4" + debug "^4.3.2" + espree "^10.0.1" + globals "^14.0.0" + ignore "^5.2.0" + import-fresh "^3.2.1" + js-yaml "^4.1.0" + minimatch "^3.1.2" + strip-json-comments "^3.1.1" + +"@eslint/js@9.16.0": + version "9.16.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.16.0.tgz#3df2b2dd3b9163056616886c86e4082f45dbf3f4" + integrity sha512-tw2HxzQkrbeuvyj1tG2Yqq+0H9wGoI2IMk4EOsQeX+vmd75FtJAzf+gTA69WF+baUKRYQ3x2kbLE08js5OsTVg== + +"@eslint/object-schema@^2.1.4": + version "2.1.4" + resolved "https://registry.yarnpkg.com/@eslint/object-schema/-/object-schema-2.1.4.tgz#9e69f8bb4031e11df79e03db09f9dbbae1740843" + integrity sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ== + +"@eslint/plugin-kit@^0.2.3": + version "0.2.3" + resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.2.3.tgz#812980a6a41ecf3a8341719f92a6d1e784a2e0e8" + integrity sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA== + dependencies: + levn "^0.4.1" "@gar/promisify@^1.1.3": - "resolved" "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz" - "version" "1.1.3" + version "1.1.3" + resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6" + integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== + +"@humanfs/core@^0.19.1": + version "0.19.1" + resolved "https://registry.yarnpkg.com/@humanfs/core/-/core-0.19.1.tgz#17c55ca7d426733fe3c561906b8173c336b40a77" + integrity sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA== + +"@humanfs/node@^0.16.6": + version "0.16.6" + resolved "https://registry.yarnpkg.com/@humanfs/node/-/node-0.16.6.tgz#ee2a10eaabd1131987bf0488fd9b820174cd765e" + integrity sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw== + dependencies: + "@humanfs/core" "^0.19.1" + "@humanwhocodes/retry" "^0.3.0" + +"@humanwhocodes/module-importer@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" + integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== + +"@humanwhocodes/retry@^0.3.0": + version "0.3.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.3.1.tgz#c72a5c76a9fbaf3488e231b13dc52c0da7bab42a" + integrity sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA== + +"@humanwhocodes/retry@^0.4.1": + version "0.4.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.4.1.tgz#9a96ce501bc62df46c4031fbd970e3cc6b10f07b" + integrity sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA== + +"@isaacs/fs-minipass@^4.0.0": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz#2d59ae3ab4b38fb4270bfa23d30f8e2e86c7fe32" + integrity sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w== + dependencies: + minipass "^7.0.4" "@isaacs/string-locale-compare@^1.1.0": - "resolved" "https://registry.npmjs.org/@isaacs/string-locale-compare/-/string-locale-compare-1.1.0.tgz" - "version" "1.1.0" + version "1.1.0" + resolved "https://registry.yarnpkg.com/@isaacs/string-locale-compare/-/string-locale-compare-1.1.0.tgz#291c227e93fd407a96ecd59879a35809120e432b" + integrity sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ== + +"@jridgewell/resolve-uri@^3.0.3": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" + integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a" + integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== + +"@jridgewell/trace-mapping@0.3.9": + version "0.3.9" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" + integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== + dependencies: + "@jridgewell/resolve-uri" "^3.0.3" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@jsonjoy.com/base64@^1.1.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/base64/-/base64-1.1.2.tgz#cf8ea9dcb849b81c95f14fc0aaa151c6b54d2578" + integrity sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA== + +"@jsonjoy.com/json-pack@^1.0.3": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/json-pack/-/json-pack-1.1.0.tgz#33ca57ee29d12feef540f2139225597469dec894" + integrity sha512-zlQONA+msXPPwHWZMKFVS78ewFczIll5lXiVPwFPCZUsrOKdxc2AvxU1HoNBmMRhqDZUR9HkC3UOm+6pME6Xsg== + dependencies: + "@jsonjoy.com/base64" "^1.1.1" + "@jsonjoy.com/util" "^1.1.2" + hyperdyperid "^1.2.0" + thingies "^1.20.0" + +"@jsonjoy.com/util@^1.1.2", "@jsonjoy.com/util@^1.3.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/util/-/util-1.5.0.tgz#6008e35b9d9d8ee27bc4bfaa70c8cbf33a537b4c" + integrity sha512-ojoNsrIuPI9g6o8UxhraZQSyF2ByJanAY4cTFbc8Mf2AXEF4aQRGY1dJxyJpuyav8r9FGflEt/Ff3u5Nt6YMPA== "@nodelib/fs.scandir@2.1.5": - "integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" - "resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" - "version" "2.1.5" + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== dependencies: "@nodelib/fs.stat" "2.0.5" - "run-parallel" "^1.1.9" + run-parallel "^1.1.9" -"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5": - "integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" - "resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" - "version" "2.0.5" +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== "@nodelib/fs.walk@^1.2.3": - "integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" - "resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" - "version" "1.2.8" + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== dependencies: "@nodelib/fs.scandir" "2.1.5" - "fastq" "^1.6.0" - -"@npmcli/arborist@^5.6.3": - "resolved" "https://registry.npmjs.org/@npmcli/arborist/-/arborist-5.6.3.tgz" - "version" "5.6.3" + fastq "^1.6.0" + +"@npmcli/agent@^2.0.0": + version "2.2.2" + resolved "https://registry.yarnpkg.com/@npmcli/agent/-/agent-2.2.2.tgz#967604918e62f620a648c7975461c9c9e74fc5d5" + integrity sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og== + dependencies: + agent-base "^7.1.0" + http-proxy-agent "^7.0.0" + https-proxy-agent "^7.0.1" + lru-cache "^10.0.1" + socks-proxy-agent "^8.0.3" + +"@npmcli/agent@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/agent/-/agent-3.0.0.tgz#1685b1fbd4a1b7bb4f930cbb68ce801edfe7aa44" + integrity sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q== + dependencies: + agent-base "^7.1.0" + http-proxy-agent "^7.0.0" + https-proxy-agent "^7.0.1" + lru-cache "^10.0.1" + socks-proxy-agent "^8.0.3" + +"@npmcli/arborist@^8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/arborist/-/arborist-8.0.0.tgz#681af823ac8ca067404dee57e0f91a3d27d6ef0a" + integrity sha512-APDXxtXGSftyXibl0dZ3CuZYmmVnkiN3+gkqwXshY4GKC2rof2+Lg0sGuj6H1p2YfBAKd7PRwuMVhu6Pf/nQ/A== dependencies: "@isaacs/string-locale-compare" "^1.1.0" - "@npmcli/installed-package-contents" "^1.0.7" - "@npmcli/map-workspaces" "^2.0.3" - "@npmcli/metavuln-calculator" "^3.0.1" - "@npmcli/move-file" "^2.0.0" - "@npmcli/name-from-folder" "^1.0.1" - "@npmcli/node-gyp" "^2.0.0" - "@npmcli/package-json" "^2.0.0" - "@npmcli/query" "^1.2.0" - "@npmcli/run-script" "^4.1.3" - "bin-links" "^3.0.3" - "cacache" "^16.1.3" - "common-ancestor-path" "^1.0.1" - "hosted-git-info" "^5.2.1" - "json-parse-even-better-errors" "^2.3.1" - "json-stringify-nice" "^1.1.4" - "minimatch" "^5.1.0" - "mkdirp" "^1.0.4" - "mkdirp-infer-owner" "^2.0.0" - "nopt" "^6.0.0" - "npm-install-checks" "^5.0.0" - "npm-package-arg" "^9.0.0" - "npm-pick-manifest" "^7.0.2" - "npm-registry-fetch" "^13.0.0" - "npmlog" "^6.0.2" - "pacote" "^13.6.1" - "parse-conflict-json" "^2.0.1" - "proc-log" "^2.0.0" - "promise-all-reject-late" "^1.0.0" - "promise-call-limit" "^1.0.1" - "read-package-json-fast" "^2.0.2" - "readdir-scoped-modules" "^1.1.0" - "rimraf" "^3.0.2" - "semver" "^7.3.7" - "ssri" "^9.0.0" - "treeverse" "^2.0.0" - "walk-up-path" "^1.0.0" - -"@npmcli/ci-detect@^2.0.0": - "resolved" "https://registry.npmjs.org/@npmcli/ci-detect/-/ci-detect-2.0.0.tgz" - "version" "2.0.0" - -"@npmcli/config@^4.2.1": - "resolved" "https://registry.npmjs.org/@npmcli/config/-/config-4.2.2.tgz" - "version" "4.2.2" - dependencies: - "@npmcli/map-workspaces" "^2.0.2" - "ini" "^3.0.0" - "mkdirp-infer-owner" "^2.0.0" - "nopt" "^6.0.0" - "proc-log" "^2.0.0" - "read-package-json-fast" "^2.0.3" - "semver" "^7.3.5" - "walk-up-path" "^1.0.0" - -"@npmcli/disparity-colors@^2.0.0": - "resolved" "https://registry.npmjs.org/@npmcli/disparity-colors/-/disparity-colors-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "ansi-styles" "^4.3.0" - -"@npmcli/fs@^1.0.0": - "integrity" "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==" - "resolved" "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz" - "version" "1.1.1" - dependencies: - "@gar/promisify" "^1.0.1" - "semver" "^7.3.5" - -"@npmcli/fs@^2.1.0", "@npmcli/fs@^2.1.1": - "resolved" "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.2.tgz" - "version" "2.1.2" + "@npmcli/fs" "^4.0.0" + "@npmcli/installed-package-contents" "^3.0.0" + "@npmcli/map-workspaces" "^4.0.1" + "@npmcli/metavuln-calculator" "^8.0.0" + "@npmcli/name-from-folder" "^3.0.0" + "@npmcli/node-gyp" "^4.0.0" + "@npmcli/package-json" "^6.0.1" + "@npmcli/query" "^4.0.0" + "@npmcli/redact" "^3.0.0" + "@npmcli/run-script" "^9.0.1" + bin-links "^5.0.0" + cacache "^19.0.1" + common-ancestor-path "^1.0.1" + hosted-git-info "^8.0.0" + json-parse-even-better-errors "^4.0.0" + json-stringify-nice "^1.1.4" + lru-cache "^10.2.2" + minimatch "^9.0.4" + nopt "^8.0.0" + npm-install-checks "^7.1.0" + npm-package-arg "^12.0.0" + npm-pick-manifest "^10.0.0" + npm-registry-fetch "^18.0.1" + pacote "^19.0.0" + parse-conflict-json "^4.0.0" + proc-log "^5.0.0" + proggy "^3.0.0" + promise-all-reject-late "^1.0.0" + promise-call-limit "^3.0.1" + read-package-json-fast "^4.0.0" + semver "^7.3.7" + ssri "^12.0.0" + treeverse "^3.0.0" + walk-up-path "^3.0.1" + +"@npmcli/config@^9.0.0": + version "9.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/config/-/config-9.0.0.tgz#bd810a1e9e23fcfad800e40d6c2c8b8f4f4318e1" + integrity sha512-P5Vi16Y+c8E0prGIzX112ug7XxqfaPFUVW/oXAV+2VsxplKZEnJozqZ0xnK8V8w/SEsBf+TXhUihrEIAU4CA5Q== + dependencies: + "@npmcli/map-workspaces" "^4.0.1" + "@npmcli/package-json" "^6.0.1" + ci-info "^4.0.0" + ini "^5.0.0" + nopt "^8.0.0" + proc-log "^5.0.0" + semver "^7.3.5" + walk-up-path "^3.0.1" + +"@npmcli/fs@^2.1.0": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-2.1.2.tgz#a9e2541a4a2fec2e69c29b35e6060973da79b865" + integrity sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ== dependencies: "@gar/promisify" "^1.1.3" - "semver" "^7.3.5" - -"@npmcli/git@^3.0.0": - "resolved" "https://registry.npmjs.org/@npmcli/git/-/git-3.0.2.tgz" - "version" "3.0.2" - dependencies: - "@npmcli/promise-spawn" "^3.0.0" - "lru-cache" "^7.4.4" - "mkdirp" "^1.0.4" - "npm-pick-manifest" "^7.0.0" - "proc-log" "^2.0.0" - "promise-inflight" "^1.0.1" - "promise-retry" "^2.0.1" - "semver" "^7.3.5" - "which" "^2.0.2" - -"@npmcli/installed-package-contents@^1.0.7": - "resolved" "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-1.0.7.tgz" - "version" "1.0.7" - dependencies: - "npm-bundled" "^1.1.1" - "npm-normalize-package-bin" "^1.0.1" - -"@npmcli/map-workspaces@^2.0.2", "@npmcli/map-workspaces@^2.0.3": - "resolved" "https://registry.npmjs.org/@npmcli/map-workspaces/-/map-workspaces-2.0.4.tgz" - "version" "2.0.4" - dependencies: - "@npmcli/name-from-folder" "^1.0.1" - "glob" "^8.0.1" - "minimatch" "^5.0.1" - "read-package-json-fast" "^2.0.3" - -"@npmcli/metavuln-calculator@^3.0.1": - "resolved" "https://registry.npmjs.org/@npmcli/metavuln-calculator/-/metavuln-calculator-3.1.1.tgz" - "version" "3.1.1" - dependencies: - "cacache" "^16.0.0" - "json-parse-even-better-errors" "^2.3.1" - "pacote" "^13.0.3" - "semver" "^7.3.5" - -"@npmcli/move-file@^1.0.1": - "integrity" "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==" - "resolved" "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz" - "version" "1.1.2" - dependencies: - "mkdirp" "^1.0.4" - "rimraf" "^3.0.2" + semver "^7.3.5" + +"@npmcli/fs@^3.1.0": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-3.1.1.tgz#59cdaa5adca95d135fc00f2bb53f5771575ce726" + integrity sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg== + dependencies: + semver "^7.3.5" + +"@npmcli/fs@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-4.0.0.tgz#a1eb1aeddefd2a4a347eca0fab30bc62c0e1c0f2" + integrity sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q== + dependencies: + semver "^7.3.5" + +"@npmcli/git@^6.0.0", "@npmcli/git@^6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-6.0.1.tgz#9ee894a35c2082d0b41883e267ff140aece457d5" + integrity sha512-BBWMMxeQzalmKadyimwb2/VVQyJB01PH0HhVSNLHNBDZN/M/h/02P6f8fxedIiFhpMj11SO9Ep5tKTBE7zL2nw== + dependencies: + "@npmcli/promise-spawn" "^8.0.0" + ini "^5.0.0" + lru-cache "^10.0.1" + npm-pick-manifest "^10.0.0" + proc-log "^5.0.0" + promise-inflight "^1.0.1" + promise-retry "^2.0.1" + semver "^7.3.5" + which "^5.0.0" + +"@npmcli/installed-package-contents@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-3.0.0.tgz#2c1170ff4f70f68af125e2842e1853a93223e4d1" + integrity sha512-fkxoPuFGvxyrH+OQzyTkX2LUEamrF4jZSmxjAtPPHHGO0dqsQ8tTKjnIS8SAnPHdk2I03BDtSMR5K/4loKg79Q== + dependencies: + npm-bundled "^4.0.0" + npm-normalize-package-bin "^4.0.0" + +"@npmcli/map-workspaces@^4.0.1": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@npmcli/map-workspaces/-/map-workspaces-4.0.2.tgz#d02c5508bf55624f60aaa58fe413748a5c773802" + integrity sha512-mnuMuibEbkaBTYj9HQ3dMe6L0ylYW+s/gfz7tBDMFY/la0w9Kf44P9aLn4/+/t3aTR3YUHKoT6XQL9rlicIe3Q== + dependencies: + "@npmcli/name-from-folder" "^3.0.0" + "@npmcli/package-json" "^6.0.0" + glob "^10.2.2" + minimatch "^9.0.0" + +"@npmcli/metavuln-calculator@^8.0.0": + version "8.0.1" + resolved "https://registry.yarnpkg.com/@npmcli/metavuln-calculator/-/metavuln-calculator-8.0.1.tgz#c14307a1f0e43524e7ae833d1787c2e0425a9f44" + integrity sha512-WXlJx9cz3CfHSt9W9Opi1PTFc4WZLFomm5O8wekxQZmkyljrBRwATwDxfC9iOXJwYVmfiW1C1dUe0W2aN0UrSg== + dependencies: + cacache "^19.0.0" + json-parse-even-better-errors "^4.0.0" + pacote "^20.0.0" + proc-log "^5.0.0" + semver "^7.3.5" "@npmcli/move-file@^2.0.0": - "resolved" "https://registry.npmjs.org/@npmcli/move-file/-/move-file-2.0.1.tgz" - "version" "2.0.1" - dependencies: - "mkdirp" "^1.0.4" - "rimraf" "^3.0.2" - -"@npmcli/name-from-folder@^1.0.1": - "resolved" "https://registry.npmjs.org/@npmcli/name-from-folder/-/name-from-folder-1.0.1.tgz" - "version" "1.0.1" - -"@npmcli/node-gyp@^2.0.0": - "resolved" "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-2.0.0.tgz" - "version" "2.0.0" - -"@npmcli/package-json@^2.0.0": - "resolved" "https://registry.npmjs.org/@npmcli/package-json/-/package-json-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "json-parse-even-better-errors" "^2.3.1" - -"@npmcli/promise-spawn@^3.0.0": - "resolved" "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "infer-owner" "^1.0.4" - -"@npmcli/query@^1.2.0": - "resolved" "https://registry.npmjs.org/@npmcli/query/-/query-1.2.0.tgz" - "version" "1.2.0" - dependencies: - "npm-package-arg" "^9.1.0" - "postcss-selector-parser" "^6.0.10" - "semver" "^7.3.7" - -"@npmcli/run-script@^4.1.0", "@npmcli/run-script@^4.1.3", "@npmcli/run-script@^4.2.0", "@npmcli/run-script@^4.2.1": - "resolved" "https://registry.npmjs.org/@npmcli/run-script/-/run-script-4.2.1.tgz" - "version" "4.2.1" - dependencies: - "@npmcli/node-gyp" "^2.0.0" - "@npmcli/promise-spawn" "^3.0.0" - "node-gyp" "^9.0.0" - "read-package-json-fast" "^2.0.3" - "which" "^2.0.2" - -"@octokit/auth-token@^2.4.4": - "integrity" "sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==" - "resolved" "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.5.0.tgz" - "version" "2.5.0" - dependencies: - "@octokit/types" "^6.0.3" - -"@octokit/core@^3.5.1", "@octokit/core@>=2", "@octokit/core@>=3": - "integrity" "sha512-omncwpLVxMP+GLpLPgeGJBF6IWJFjXDS5flY5VbppePYX9XehevbDykRH9PdCdvqt9TS5AOTiDide7h0qrkHjw==" - "resolved" "https://registry.npmjs.org/@octokit/core/-/core-3.5.1.tgz" - "version" "3.5.1" - dependencies: - "@octokit/auth-token" "^2.4.4" - "@octokit/graphql" "^4.5.8" - "@octokit/request" "^5.6.0" - "@octokit/request-error" "^2.0.5" - "@octokit/types" "^6.0.3" - "before-after-hook" "^2.2.0" - "universal-user-agent" "^6.0.0" - -"@octokit/endpoint@^6.0.1": - "integrity" "sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==" - "resolved" "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.12.tgz" - "version" "6.0.12" - dependencies: - "@octokit/types" "^6.0.3" - "is-plain-object" "^5.0.0" - "universal-user-agent" "^6.0.0" - -"@octokit/graphql@^4.5.8": - "integrity" "sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==" - "resolved" "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.8.0.tgz" - "version" "4.8.0" - dependencies: - "@octokit/request" "^5.6.0" - "@octokit/types" "^6.0.3" - "universal-user-agent" "^6.0.0" - -"@octokit/openapi-types@^11.2.0": - "integrity" "sha512-PBsVO+15KSlGmiI8QAzaqvsNlZlrDlyAJYcrXBCvVUxCp7VnXjkwPoFHgjEJXx3WF9BAwkA6nfCUA7i9sODzKA==" - "resolved" "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-11.2.0.tgz" - "version" "11.2.0" - -"@octokit/plugin-paginate-rest@^2.16.8": - "integrity" "sha512-tzMbrbnam2Mt4AhuyCHvpRkS0oZ5MvwwcQPYGtMv4tUa5kkzG58SVB0fcsLulOZQeRnOgdkZWkRUiyBlh0Bkyw==" - "resolved" "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.17.0.tgz" - "version" "2.17.0" - dependencies: - "@octokit/types" "^6.34.0" - -"@octokit/plugin-request-log@^1.0.4": - "integrity" "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==" - "resolved" "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz" - "version" "1.0.4" - -"@octokit/plugin-rest-endpoint-methods@^5.12.0": - "integrity" "sha512-uJjMTkN1KaOIgNtUPMtIXDOjx6dGYysdIFhgA52x4xSadQCz3b/zJexvITDVpANnfKPW/+E0xkOvLntqMYpviA==" - "resolved" "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.13.0.tgz" - "version" "5.13.0" - dependencies: - "@octokit/types" "^6.34.0" - "deprecation" "^2.3.1" - -"@octokit/request-error@^2.0.5", "@octokit/request-error@^2.1.0": - "integrity" "sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==" - "resolved" "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.1.0.tgz" - "version" "2.1.0" - dependencies: - "@octokit/types" "^6.0.3" - "deprecation" "^2.0.0" - "once" "^1.4.0" - -"@octokit/request@^5.6.0": - "integrity" "sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==" - "resolved" "https://registry.npmjs.org/@octokit/request/-/request-5.6.3.tgz" - "version" "5.6.3" - dependencies: - "@octokit/endpoint" "^6.0.1" - "@octokit/request-error" "^2.1.0" - "@octokit/types" "^6.16.1" - "is-plain-object" "^5.0.0" - "node-fetch" "^2.6.7" - "universal-user-agent" "^6.0.0" - -"@octokit/rest@^18.0.0": - "integrity" "sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==" - "resolved" "https://registry.npmjs.org/@octokit/rest/-/rest-18.12.0.tgz" - "version" "18.12.0" - dependencies: - "@octokit/core" "^3.5.1" - "@octokit/plugin-paginate-rest" "^2.16.8" - "@octokit/plugin-request-log" "^1.0.4" - "@octokit/plugin-rest-endpoint-methods" "^5.12.0" - -"@octokit/types@^6.0.3", "@octokit/types@^6.16.1", "@octokit/types@^6.34.0": - "integrity" "sha512-s1zLBjWhdEI2zwaoSgyOFoKSl109CUcVBCc7biPJ3aAf6LGLU6szDvi31JPU7bxfla2lqfhjbbg/5DdFNxOwHw==" - "resolved" "https://registry.npmjs.org/@octokit/types/-/types-6.34.0.tgz" - "version" "6.34.0" - dependencies: - "@octokit/openapi-types" "^11.2.0" - -"@semantic-release/changelog@^6.0.1": - "integrity" "sha512-FT+tAGdWHr0RCM3EpWegWnvXJ05LQtBkQUaQRIExONoXjVjLuOILNm4DEKNaV+GAQyJjbLRVs57ti//GypH6PA==" - "resolved" "https://registry.npmjs.org/@semantic-release/changelog/-/changelog-6.0.1.tgz" - "version" "6.0.1" + version "2.0.1" + resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-2.0.1.tgz#26f6bdc379d87f75e55739bab89db525b06100e4" + integrity sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ== + dependencies: + mkdirp "^1.0.4" + rimraf "^3.0.2" + +"@npmcli/name-from-folder@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/name-from-folder/-/name-from-folder-3.0.0.tgz#ed49b18d16b954149f31240e16630cfec511cd57" + integrity sha512-61cDL8LUc9y80fXn+lir+iVt8IS0xHqEKwPu/5jCjxQTVoSCmkXvw4vbMrzAMtmghz3/AkiBjhHkDKUH+kf7kA== + +"@npmcli/node-gyp@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-4.0.0.tgz#01f900bae62f0f27f9a5a127b40d443ddfb9d4c6" + integrity sha512-+t5DZ6mO/QFh78PByMq1fGSAub/agLJZDRfJRMeOSNCt8s9YVlTjmGpIPwPhvXTGUIJk+WszlT0rQa1W33yzNA== + +"@npmcli/package-json@^6.0.0", "@npmcli/package-json@^6.0.1": + version "6.1.0" + resolved "https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-6.1.0.tgz#34f0875da178b04df1a7746c02bdc26479819afb" + integrity sha512-t6G+6ZInT4X+tqj2i+wlLIeCKnKOTuz9/VFYDtj+TGTur5q7sp/OYrQA19LdBbWfXDOi0Y4jtedV6xtB8zQ9ug== + dependencies: + "@npmcli/git" "^6.0.0" + glob "^10.2.2" + hosted-git-info "^8.0.0" + json-parse-even-better-errors "^4.0.0" + normalize-package-data "^7.0.0" + proc-log "^5.0.0" + semver "^7.5.3" + +"@npmcli/promise-spawn@^8.0.0", "@npmcli/promise-spawn@^8.0.2": + version "8.0.2" + resolved "https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-8.0.2.tgz#053688f8bc2b4ecc036d2d52c691fd82af58ea5e" + integrity sha512-/bNJhjc+o6qL+Dwz/bqfTQClkEO5nTQ1ZEcdCkAQjhkZMHIh22LPG7fNh1enJP1NKWDqYiiABnjFCY7E0zHYtQ== + dependencies: + which "^5.0.0" + +"@npmcli/query@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/query/-/query-4.0.0.tgz#7a2470254f5a12a1499d2296a7343043c7847568" + integrity sha512-3pPbese0fbCiFJ/7/X1GBgxAKYFE8sxBddA7GtuRmOgNseH4YbGsXJ807Ig3AEwNITjDUISHglvy89cyDJnAwA== + dependencies: + postcss-selector-parser "^6.1.2" + +"@npmcli/redact@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/redact/-/redact-3.0.0.tgz#ab3b6413355be7f3c02e87c36c2b0c2f9773fce4" + integrity sha512-/1uFzjVcfzqrgCeGW7+SZ4hv0qLWmKXVzFahZGJ6QuJBj6Myt9s17+JL86i76NV9YSnJRcGXJYQbAU0rn1YTCQ== + +"@npmcli/run-script@^9.0.0", "@npmcli/run-script@^9.0.1": + version "9.0.1" + resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-9.0.1.tgz#f90a0cf4f4e8f42d66669d3af568c5036859b654" + integrity sha512-q9C0uHrb6B6cm3qXVM32UmpqTKuFGbtP23O2K5sLvPMz2hilKd0ptqGXSpuunOuOmPQb/aT5F/kCXFc1P2gO/A== + dependencies: + "@npmcli/node-gyp" "^4.0.0" + "@npmcli/package-json" "^6.0.0" + "@npmcli/promise-spawn" "^8.0.0" + node-gyp "^10.0.0" + proc-log "^5.0.0" + which "^5.0.0" + +"@octokit/auth-token@^5.0.0": + version "5.1.1" + resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-5.1.1.tgz#3bbfe905111332a17f72d80bd0b51a3e2fa2cf07" + integrity sha512-rh3G3wDO8J9wSjfI436JUKzHIxq8NaiL0tVeB2aXmG6p/9859aUOAjA9pmSPNGGZxfwmaJ9ozOJImuNVJdpvbA== + +"@octokit/core@^6.0.0": + version "6.1.2" + resolved "https://registry.yarnpkg.com/@octokit/core/-/core-6.1.2.tgz#20442d0a97c411612da206411e356014d1d1bd17" + integrity sha512-hEb7Ma4cGJGEUNOAVmyfdB/3WirWMg5hDuNFVejGEDFqupeOysLc2sG6HJxY2etBp5YQu5Wtxwi020jS9xlUwg== + dependencies: + "@octokit/auth-token" "^5.0.0" + "@octokit/graphql" "^8.0.0" + "@octokit/request" "^9.0.0" + "@octokit/request-error" "^6.0.1" + "@octokit/types" "^13.0.0" + before-after-hook "^3.0.2" + universal-user-agent "^7.0.0" + +"@octokit/endpoint@^10.0.0": + version "10.1.1" + resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-10.1.1.tgz#1a9694e7aef6aa9d854dc78dd062945945869bcc" + integrity sha512-JYjh5rMOwXMJyUpj028cu0Gbp7qe/ihxfJMLc8VZBMMqSwLgOxDI1911gV4Enl1QSavAQNJcwmwBF9M0VvLh6Q== + dependencies: + "@octokit/types" "^13.0.0" + universal-user-agent "^7.0.2" + +"@octokit/graphql@^8.0.0": + version "8.1.1" + resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-8.1.1.tgz#3cacab5f2e55d91c733e3bf481d3a3f8a5f639c4" + integrity sha512-ukiRmuHTi6ebQx/HFRCXKbDlOh/7xEV6QUXaE7MJEKGNAncGI/STSbOkl12qVXZrfZdpXctx5O9X1AIaebiDBg== + dependencies: + "@octokit/request" "^9.0.0" + "@octokit/types" "^13.0.0" + universal-user-agent "^7.0.0" + +"@octokit/openapi-types@^22.2.0": + version "22.2.0" + resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-22.2.0.tgz#75aa7dcd440821d99def6a60b5f014207ae4968e" + integrity sha512-QBhVjcUa9W7Wwhm6DBFu6ZZ+1/t/oYxqc2tp81Pi41YNuJinbFRx8B133qVOrAaBbF7D/m0Et6f9/pZt9Rc+tg== + +"@octokit/plugin-paginate-rest@^11.0.0": + version "11.3.6" + resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-11.3.6.tgz#82f33c87464202423c2a89d5cc8c38761f4aa86b" + integrity sha512-zcvqqf/+TicbTCa/Z+3w4eBJcAxCFymtc0UAIsR3dEVoNilWld4oXdscQ3laXamTszUZdusw97K8+DrbFiOwjw== + dependencies: + "@octokit/types" "^13.6.2" + +"@octokit/plugin-retry@^7.0.0": + version "7.1.2" + resolved "https://registry.yarnpkg.com/@octokit/plugin-retry/-/plugin-retry-7.1.2.tgz#242e2d19a72a50b5113bb25d7d2c622ce0373fa0" + integrity sha512-XOWnPpH2kJ5VTwozsxGurw+svB2e61aWlmk5EVIYZPwFK5F9h4cyPyj9CIKRyMXMHSwpIsI3mPOdpMmrRhe7UQ== + dependencies: + "@octokit/request-error" "^6.0.0" + "@octokit/types" "^13.0.0" + bottleneck "^2.15.3" + +"@octokit/plugin-throttling@^9.0.0": + version "9.3.2" + resolved "https://registry.yarnpkg.com/@octokit/plugin-throttling/-/plugin-throttling-9.3.2.tgz#cc05180e45e769d6726c5faed157e9ad3b6ab8c0" + integrity sha512-FqpvcTpIWFpMMwIeSoypoJXysSAQ3R+ALJhXXSG1HTP3YZOIeLmcNcimKaXxTcws+Sh6yoRl13SJ5r8sXc1Fhw== + dependencies: + "@octokit/types" "^13.0.0" + bottleneck "^2.15.3" + +"@octokit/request-error@^6.0.0", "@octokit/request-error@^6.0.1": + version "6.1.5" + resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-6.1.5.tgz#907099e341c4e6179db623a0328d678024f54653" + integrity sha512-IlBTfGX8Yn/oFPMwSfvugfncK2EwRLjzbrpifNaMY8o/HTEAFqCA1FZxjD9cWvSKBHgrIhc4CSBIzMxiLsbzFQ== + dependencies: + "@octokit/types" "^13.0.0" + +"@octokit/request@^9.0.0": + version "9.1.3" + resolved "https://registry.yarnpkg.com/@octokit/request/-/request-9.1.3.tgz#42b693bc06238f43af3c037ebfd35621c6457838" + integrity sha512-V+TFhu5fdF3K58rs1pGUJIDH5RZLbZm5BI+MNF+6o/ssFNT4vWlCh/tVpF3NxGtP15HUxTTMUbsG5llAuU2CZA== + dependencies: + "@octokit/endpoint" "^10.0.0" + "@octokit/request-error" "^6.0.1" + "@octokit/types" "^13.1.0" + universal-user-agent "^7.0.2" + +"@octokit/types@^13.0.0", "@octokit/types@^13.1.0", "@octokit/types@^13.6.2": + version "13.6.2" + resolved "https://registry.yarnpkg.com/@octokit/types/-/types-13.6.2.tgz#e10fc4d2bdd65d836d1ced223b03ad4cfdb525bd" + integrity sha512-WpbZfZUcZU77DrSW4wbsSgTPfKcp286q3ItaIgvSbBpZJlu6mnYXAkjZz6LVZPXkEvLIM8McanyZejKTYUHipA== + dependencies: + "@octokit/openapi-types" "^22.2.0" + +"@pkgjs/parseargs@^0.11.0": + version "0.11.0" + resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" + integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== + +"@pnpm/config.env-replace@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz#ab29da53df41e8948a00f2433f085f54de8b3a4c" + integrity sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w== + +"@pnpm/network.ca-file@^1.0.1": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz#2ab05e09c1af0cdf2fcf5035bea1484e222f7983" + integrity sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA== + dependencies: + graceful-fs "4.2.10" + +"@pnpm/npm-conf@^2.1.0": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@pnpm/npm-conf/-/npm-conf-2.3.1.tgz#bb375a571a0bd63ab0a23bece33033c683e9b6b0" + integrity sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw== + dependencies: + "@pnpm/config.env-replace" "^1.1.0" + "@pnpm/network.ca-file" "^1.0.1" + config-chain "^1.1.11" + +"@rtsao/scc@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@rtsao/scc/-/scc-1.1.0.tgz#927dd2fae9bc3361403ac2c7a00c32ddce9ad7e8" + integrity sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g== + +"@sec-ant/readable-stream@^0.4.1": + version "0.4.1" + resolved "https://registry.yarnpkg.com/@sec-ant/readable-stream/-/readable-stream-0.4.1.tgz#60de891bb126abfdc5410fdc6166aca065f10a0c" + integrity sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg== + +"@semantic-release/changelog@^6.0.3": + version "6.0.3" + resolved "https://registry.yarnpkg.com/@semantic-release/changelog/-/changelog-6.0.3.tgz#6195630ecbeccad174461de727d5f975abc23eeb" + integrity sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag== dependencies: "@semantic-release/error" "^3.0.0" - "aggregate-error" "^3.0.0" - "fs-extra" "^9.0.0" - "lodash" "^4.17.4" - -"@semantic-release/commit-analyzer@^9.0.2": - "integrity" "sha512-E+dr6L+xIHZkX4zNMe6Rnwg4YQrWNXK+rNsvwOPpdFppvZO1olE2fIgWhv89TkQErygevbjsZFSIxp+u6w2e5g==" - "resolved" "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-9.0.2.tgz" - "version" "9.0.2" - dependencies: - "conventional-changelog-angular" "^5.0.0" - "conventional-commits-filter" "^2.0.0" - "conventional-commits-parser" "^3.2.3" - "debug" "^4.0.0" - "import-from" "^4.0.0" - "lodash" "^4.17.4" - "micromatch" "^4.0.2" - -"@semantic-release/error@^2.2.0": - "integrity" "sha512-9Tj/qn+y2j+sjCI3Jd+qseGtHjOAeg7dU2/lVcqIQ9TV3QDaDXDYXcoOHU+7o2Hwh8L8ymL4gfuO7KxDs3q2zg==" - "resolved" "https://registry.npmjs.org/@semantic-release/error/-/error-2.2.0.tgz" - "version" "2.2.0" + aggregate-error "^3.0.0" + fs-extra "^11.0.0" + lodash "^4.17.4" + +"@semantic-release/commit-analyzer@^13.0.0": + version "13.0.0" + resolved "https://registry.yarnpkg.com/@semantic-release/commit-analyzer/-/commit-analyzer-13.0.0.tgz#98e28e2b2cb3d8e3a19effb82d5f493a0147e7a2" + integrity sha512-KtXWczvTAB1ZFZ6B4O+w8HkfYm/OgQb1dUGNFZtDgQ0csggrmkq8sTxhd+lwGF8kMb59/RnG9o4Tn7M/I8dQ9Q== + dependencies: + conventional-changelog-angular "^8.0.0" + conventional-changelog-writer "^8.0.0" + conventional-commits-filter "^5.0.0" + conventional-commits-parser "^6.0.0" + debug "^4.0.0" + import-from-esm "^1.0.3" + lodash-es "^4.17.21" + micromatch "^4.0.2" "@semantic-release/error@^3.0.0": - "integrity" "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==" - "resolved" "https://registry.npmjs.org/@semantic-release/error/-/error-3.0.0.tgz" - "version" "3.0.0" + version "3.0.0" + resolved "https://registry.yarnpkg.com/@semantic-release/error/-/error-3.0.0.tgz#30a3b97bbb5844d695eb22f9d3aa40f6a92770c2" + integrity sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw== + +"@semantic-release/error@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@semantic-release/error/-/error-4.0.0.tgz#692810288239637f74396976a9340fbc0aa9f6f9" + integrity sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ== "@semantic-release/git@^10.0.1": - "integrity" "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==" - "resolved" "https://registry.npmjs.org/@semantic-release/git/-/git-10.0.1.tgz" - "version" "10.0.1" - dependencies: - "@semantic-release/error" "^3.0.0" - "aggregate-error" "^3.0.0" - "debug" "^4.0.0" - "dir-glob" "^3.0.0" - "execa" "^5.0.0" - "lodash" "^4.17.4" - "micromatch" "^4.0.0" - "p-reduce" "^2.0.0" - -"@semantic-release/github@^8.0.0", "@semantic-release/github@^8.0.2": - "integrity" "sha512-wIbfhOeuxlYzMTjtSAa2xgr54n7ZuPAS2gadyTWBpUt2PNAPgla7A6XxCXJnaKPgfVF0iFfSk3B+KlVKk6ByVg==" - "resolved" "https://registry.npmjs.org/@semantic-release/github/-/github-8.0.2.tgz" - "version" "8.0.2" - dependencies: - "@octokit/rest" "^18.0.0" - "@semantic-release/error" "^2.2.0" - "aggregate-error" "^3.0.0" - "bottleneck" "^2.18.1" - "debug" "^4.0.0" - "dir-glob" "^3.0.0" - "fs-extra" "^10.0.0" - "globby" "^11.0.0" - "http-proxy-agent" "^5.0.0" - "https-proxy-agent" "^5.0.0" - "issue-parser" "^6.0.0" - "lodash" "^4.17.4" - "mime" "^3.0.0" - "p-filter" "^2.0.0" - "p-retry" "^4.0.0" - "url-join" "^4.0.0" - -"@semantic-release/npm@^9.0.0": - "integrity" "sha512-I5nVZklxBzfMFwemhRNbSrkiN/dsH3c7K9+KSk6jUnq0rdLFUuJt7EBsysq4Ir3moajQgFkfEryEHPqiKJj20g==" - "resolved" "https://registry.npmjs.org/@semantic-release/npm/-/npm-9.0.1.tgz" - "version" "9.0.1" + version "10.0.1" + resolved "https://registry.yarnpkg.com/@semantic-release/git/-/git-10.0.1.tgz#c646e55d67fae623875bf3a06a634dd434904498" + integrity sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w== dependencies: "@semantic-release/error" "^3.0.0" - "aggregate-error" "^3.0.0" - "execa" "^5.0.0" - "fs-extra" "^10.0.0" - "lodash" "^4.17.15" - "nerf-dart" "^1.0.0" - "normalize-url" "^6.0.0" - "npm" "^8.3.0" - "rc" "^1.2.8" - "read-pkg" "^5.0.0" - "registry-auth-token" "^4.0.0" - "semver" "^7.1.2" - "tempy" "^1.0.0" - -"@semantic-release/release-notes-generator@^10.0.0", "@semantic-release/release-notes-generator@^10.0.3": - "integrity" "sha512-k4x4VhIKneOWoBGHkx0qZogNjCldLPRiAjnIpMnlUh6PtaWXp/T+C9U7/TaNDDtgDa5HMbHl4WlREdxHio6/3w==" - "resolved" "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-10.0.3.tgz" - "version" "10.0.3" - dependencies: - "conventional-changelog-angular" "^5.0.0" - "conventional-changelog-writer" "^5.0.0" - "conventional-commits-filter" "^2.0.0" - "conventional-commits-parser" "^3.2.3" - "debug" "^4.0.0" - "get-stream" "^6.0.0" - "import-from" "^4.0.0" - "into-stream" "^6.0.0" - "lodash" "^4.17.4" - "read-pkg-up" "^7.0.0" - -"@tootallnate/once@1": - "integrity" "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" - "resolved" "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz" - "version" "1.1.2" + aggregate-error "^3.0.0" + debug "^4.0.0" + dir-glob "^3.0.0" + execa "^5.0.0" + lodash "^4.17.4" + micromatch "^4.0.0" + p-reduce "^2.0.0" + +"@semantic-release/github@^11.0.1": + version "11.0.1" + resolved "https://registry.yarnpkg.com/@semantic-release/github/-/github-11.0.1.tgz#127579aa77ddd8586de6f4f57d0e66db3453a876" + integrity sha512-Z9cr0LgU/zgucbT9cksH0/pX9zmVda9hkDPcgIE0uvjMQ8w/mElDivGjx1w1pEQ+MuQJ5CBq3VCF16S6G4VH3A== + dependencies: + "@octokit/core" "^6.0.0" + "@octokit/plugin-paginate-rest" "^11.0.0" + "@octokit/plugin-retry" "^7.0.0" + "@octokit/plugin-throttling" "^9.0.0" + "@semantic-release/error" "^4.0.0" + aggregate-error "^5.0.0" + debug "^4.3.4" + dir-glob "^3.0.1" + globby "^14.0.0" + http-proxy-agent "^7.0.0" + https-proxy-agent "^7.0.0" + issue-parser "^7.0.0" + lodash-es "^4.17.21" + mime "^4.0.0" + p-filter "^4.0.0" + url-join "^5.0.0" + +"@semantic-release/npm@^12.0.1": + version "12.0.1" + resolved "https://registry.yarnpkg.com/@semantic-release/npm/-/npm-12.0.1.tgz#ffb47906de95f8dade8fe0480df0a08dbe1b80c9" + integrity sha512-/6nntGSUGK2aTOI0rHPwY3ZjgY9FkXmEHbW9Kr+62NVOsyqpKKeP0lrCH+tphv+EsNdJNmqqwijTEnVWUMQ2Nw== + dependencies: + "@semantic-release/error" "^4.0.0" + aggregate-error "^5.0.0" + execa "^9.0.0" + fs-extra "^11.0.0" + lodash-es "^4.17.21" + nerf-dart "^1.0.0" + normalize-url "^8.0.0" + npm "^10.5.0" + rc "^1.2.8" + read-pkg "^9.0.0" + registry-auth-token "^5.0.0" + semver "^7.1.2" + tempy "^3.0.0" + +"@semantic-release/release-notes-generator@^14.0.1": + version "14.0.1" + resolved "https://registry.yarnpkg.com/@semantic-release/release-notes-generator/-/release-notes-generator-14.0.1.tgz#0c091af7857a4dfbfc464b8256a289676f7eddd3" + integrity sha512-K0w+5220TM4HZTthE5dDpIuFrnkN1NfTGPidJFm04ULT1DEZ9WG89VNXN7F0c+6nMEpWgqmPvb7vY7JkB2jyyA== + dependencies: + conventional-changelog-angular "^8.0.0" + conventional-changelog-writer "^8.0.0" + conventional-commits-filter "^5.0.0" + conventional-commits-parser "^6.0.0" + debug "^4.0.0" + get-stream "^7.0.0" + import-from-esm "^1.0.3" + into-stream "^7.0.0" + lodash-es "^4.17.21" + read-package-up "^11.0.0" + +"@sigstore/bundle@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-3.0.0.tgz#ffffc750436c6eb8330ead1ca65bc892f893a7c5" + integrity sha512-XDUYX56iMPAn/cdgh/DTJxz5RWmqKV4pwvUAEKEWJl+HzKdCd/24wUa9JYNMlDSCb7SUHAdtksxYX779Nne/Zg== + dependencies: + "@sigstore/protobuf-specs" "^0.3.2" + +"@sigstore/core@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@sigstore/core/-/core-2.0.0.tgz#f888a8e4c8fdaa27848514a281920b6fd8eca955" + integrity sha512-nYxaSb/MtlSI+JWcwTHQxyNmWeWrUXJJ/G4liLrGG7+tS4vAz6LF3xRXqLH6wPIVUoZQel2Fs4ddLx4NCpiIYg== + +"@sigstore/protobuf-specs@^0.3.2": + version "0.3.2" + resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.3.2.tgz#5becf88e494a920f548d0163e2978f81b44b7d6f" + integrity sha512-c6B0ehIWxMI8wiS/bj6rHMPqeFvngFV7cDU/MY+B16P9Z3Mp9k8L93eYZ7BYzSickzuqAQqAq0V956b3Ju6mLw== + +"@sigstore/sign@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@sigstore/sign/-/sign-3.0.0.tgz#70752aaa54dfeafa0b0fbe1f58ebe9fe3d621f8f" + integrity sha512-UjhDMQOkyDoktpXoc5YPJpJK6IooF2gayAr5LvXI4EL7O0vd58okgfRcxuaH+YTdhvb5aa1Q9f+WJ0c2sVuYIw== + dependencies: + "@sigstore/bundle" "^3.0.0" + "@sigstore/core" "^2.0.0" + "@sigstore/protobuf-specs" "^0.3.2" + make-fetch-happen "^14.0.1" + proc-log "^5.0.0" + promise-retry "^2.0.1" + +"@sigstore/tuf@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-3.0.0.tgz#5f657e3052e93cb09e1735ee7f52b7938351278d" + integrity sha512-9Xxy/8U5OFJu7s+OsHzI96IX/OzjF/zj0BSSaWhgJgTqtlBhQIV2xdrQI5qxLD7+CWWDepadnXAxzaZ3u9cvRw== + dependencies: + "@sigstore/protobuf-specs" "^0.3.2" + tuf-js "^3.0.1" + +"@sigstore/verify@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@sigstore/verify/-/verify-2.0.0.tgz#4ad96e9234b71b57622c3c446b63bad805351030" + integrity sha512-Ggtq2GsJuxFNUvQzLoXqRwS4ceRfLAJnrIHUDrzAD0GgnOhwujJkKkxM/s5Bako07c3WtAs/sZo5PJq7VHjeDg== + dependencies: + "@sigstore/bundle" "^3.0.0" + "@sigstore/core" "^2.0.0" + "@sigstore/protobuf-specs" "^0.3.2" + +"@sindresorhus/merge-streams@^2.1.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz#719df7fb41766bc143369eaa0dd56d8dc87c9958" + integrity sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg== + +"@sindresorhus/merge-streams@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz#abb11d99aeb6d27f1b563c38147a72d50058e339" + integrity sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ== + +"@tokens-studio/sd-transforms@^1.2.8": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@tokens-studio/sd-transforms/-/sd-transforms-1.2.8.tgz#d03f80cf8a6301eb292cebcb6a4136b995e7b113" + integrity sha512-fEWiTjldXbWzkjZEE5uYqKZ35X2bOGRWBcOBrD9kUftNYfM3KNau+JEIyXZhaDIdJa/u/TKyrAqHH0b9r4iegA== + dependencies: + "@bundled-es-modules/deepmerge" "^4.3.1" + "@bundled-es-modules/postcss-calc-ast-parser" "^0.1.6" + "@tokens-studio/types" "^0.5.1" + colorjs.io "^0.4.3" + expr-eval-fork "^2.0.2" + is-mergeable-object "^1.1.1" + +"@tokens-studio/types@^0.5.1": + version "0.5.1" + resolved "https://registry.yarnpkg.com/@tokens-studio/types/-/types-0.5.1.tgz#5037e58c4b2c306762f12e8d9685e9aeebb21685" + integrity sha512-LdCF9ZH5ej4Gb6n58x5fTkhstxjXDZc1SWteMWY6EiddLQJVONMIgYOrWrf1extlkSLjagX8WS0B63bAqeltnA== "@tootallnate/once@2": - "integrity" "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" - "resolved" "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz" - "version" "2.0.0" + version "2.0.0" + resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" + integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== + +"@tsconfig/node10@^1.0.7": + version "1.0.11" + resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.11.tgz#6ee46400685f130e278128c7b38b7e031ff5b2f2" + integrity sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw== + +"@tsconfig/node12@^1.0.7": + version "1.0.11" + resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" + integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== + +"@tsconfig/node14@^1.0.0": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" + integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== + +"@tsconfig/node16@^1.0.2": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" + integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== + +"@tsconfig/strictest@^2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@tsconfig/strictest/-/strictest-2.0.5.tgz#2cbc67f207ba87fdec2a84ad79b1708cf4edd93b" + integrity sha512-ec4tjL2Rr0pkZ5hww65c+EEPYwxOi4Ryv+0MtjeaSQRJyq322Q27eOQiFbuNgw2hpL4hB1/W/HBGk3VKS43osg== + +"@tufjs/canonical-json@2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz#a52f61a3d7374833fca945b2549bc30a2dd40d0a" + integrity sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA== + +"@tufjs/models@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@tufjs/models/-/models-3.0.1.tgz#5aebb782ebb9e06f071ae7831c1f35b462b0319c" + integrity sha512-UUYHISyhCU3ZgN8yaear3cGATHb3SMuKHsQ/nVbHXcmnBf+LzQ/cQfhNG+rfaSHgqGKNEm2cOCLVLELStUQ1JA== + dependencies: + "@tufjs/canonical-json" "2.0.0" + minimatch "^9.0.5" + +"@types/chai@^5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@types/chai/-/chai-5.0.1.tgz#2c3705555cf11f5f59c836a84c44afcfe4e5689d" + integrity sha512-5T8ajsg3M/FOncpLYW7sdOcD6yf4+722sze/tc4KQV0P8Z2rAr3SAuHCIkYmYpt8VbcQlnz8SxlOlPQYefe4cA== + dependencies: + "@types/deep-eql" "*" + +"@types/deep-eql@*": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@types/deep-eql/-/deep-eql-4.0.2.tgz#334311971d3a07121e7eb91b684a605e7eea9cbd" + integrity sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw== + +"@types/estree@^1.0.6": + version "1.0.6" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.6.tgz#628effeeae2064a1b4e79f78e81d87b7e5fc7b50" + integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw== + +"@types/fs-extra@^11.0.4": + version "11.0.4" + resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-11.0.4.tgz#e16a863bb8843fba8c5004362b5a73e17becca45" + integrity sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ== + dependencies: + "@types/jsonfile" "*" + "@types/node" "*" -"@types/glob@^7.1.4": - "integrity" "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==" - "resolved" "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz" - "version" "7.2.0" +"@types/glob@^8.1.0": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@types/glob/-/glob-8.1.0.tgz#b63e70155391b0584dce44e7ea25190bbc38f2fc" + integrity sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w== dependencies: - "@types/minimatch" "*" + "@types/minimatch" "^5.1.2" "@types/node" "*" -"@types/json5@^0.0.29": - "integrity" "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=" - "resolved" "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz" - "version" "0.0.29" - -"@types/minimatch@*": - "integrity" "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==" - "resolved" "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz" - "version" "3.0.5" +"@types/json-schema@^7.0.15": + version "7.0.15" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" + integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== -"@types/minimist@^1.2.0": - "integrity" "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==" - "resolved" "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz" - "version" "1.2.2" +"@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== -"@types/node@*": - "version" "17.0.14" +"@types/jsonfile@*": + version "6.1.4" + resolved "https://registry.yarnpkg.com/@types/jsonfile/-/jsonfile-6.1.4.tgz#614afec1a1164e7d670b4a7ad64df3e7beb7b702" + integrity sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ== + dependencies: + "@types/node" "*" -"@types/normalize-package-data@^2.4.0": - "integrity" "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==" - "resolved" "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz" - "version" "2.4.1" +"@types/lodash@^4.17.13": + version "4.17.13" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.13.tgz#786e2d67cfd95e32862143abe7463a7f90c300eb" + integrity sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg== -"@types/parse-json@^4.0.0": - "integrity" "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" - "resolved" "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz" - "version" "4.0.0" +"@types/minimatch@^5.1.2": + version "5.1.2" + resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca" + integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA== -"@types/retry@^0.12.0": - "integrity" "sha512-xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g==" - "resolved" "https://registry.npmjs.org/@types/retry/-/retry-0.12.1.tgz" - "version" "0.12.1" +"@types/mocha@^10.0.10": + version "10.0.10" + resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-10.0.10.tgz#91f62905e8d23cbd66225312f239454a23bebfa0" + integrity sha512-xPyYSz1cMPnJQhl0CLMH68j3gprKZaTjG3s5Vi+fDgx+uhG9NOXwbVt52eFS8ECyXhyKcjDLCBEqBExKuiZb7Q== -"@xmldom/xmldom@^0.7.2": - "integrity" "sha512-yceMpm/xd4W2a85iqZyO09gTnHvXF6pyiWjD2jcOJs7hRoZtNNOO1eJlhHj1ixA+xip2hOyGn+LgcvLCMo5zXA==" - "resolved" "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.9.tgz" - "version" "0.7.9" - -"abbrev@^1.0.0", "abbrev@~1.1.1", "abbrev@1": - "integrity" "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" - "resolved" "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz" - "version" "1.1.1" - -"acorn-jsx@^5.3.1": - "integrity" "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" - "resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" - "version" "5.3.2" - -"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", "acorn@^7.4.0": - "integrity" "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" - "resolved" "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz" - "version" "7.4.1" - -"agent-base@^6.0.2", "agent-base@6": - "integrity" "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" - "resolved" "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz" - "version" "6.0.2" - dependencies: - "debug" "4" - -"agentkeepalive@^4.1.3": - "integrity" "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==" - "resolved" "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz" - "version" "4.2.1" - dependencies: - "debug" "^4.1.0" - "depd" "^1.1.2" - "humanize-ms" "^1.2.1" - -"agentkeepalive@^4.2.1": - "resolved" "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz" - "version" "4.2.1" - dependencies: - "debug" "^4.1.0" - "depd" "^1.1.2" - "humanize-ms" "^1.2.1" - -"aggregate-error@^3.0.0": - "integrity" "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" - "resolved" "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz" - "version" "3.1.0" - dependencies: - "clean-stack" "^2.0.0" - "indent-string" "^4.0.0" - -"ajv@^6.10.0", "ajv@^6.12.4": - "integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" - "resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" - "version" "6.12.6" - dependencies: - "fast-deep-equal" "^3.1.1" - "fast-json-stable-stringify" "^2.0.0" - "json-schema-traverse" "^0.4.1" - "uri-js" "^4.2.2" - -"ajv@^8.0.1": - "version" "8.9.0" - dependencies: - "fast-deep-equal" "^3.1.1" - "json-schema-traverse" "^1.0.0" - "require-from-string" "^2.0.2" - "uri-js" "^4.2.2" - -"ansi-colors@^4.1.1": - "integrity" "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==" - "resolved" "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz" - "version" "4.1.1" - -"ansi-escapes@^5.0.0": - "integrity" "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==" - "resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-5.0.0.tgz" - "version" "5.0.0" - dependencies: - "type-fest" "^1.0.2" - -"ansi-regex@^5.0.1": - "integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" - "version" "5.0.1" - -"ansi-styles@^3.2.1": - "integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" - "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" - "version" "3.2.1" - dependencies: - "color-convert" "^1.9.0" - -"ansi-styles@^4.0.0": - "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" - "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" - "version" "4.3.0" - dependencies: - "color-convert" "^2.0.1" - -"ansi-styles@^4.1.0", "ansi-styles@^4.3.0": - "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" - "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" - "version" "4.3.0" - dependencies: - "color-convert" "^2.0.1" - -"ansicolors@~0.3.2": - "integrity" "sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk=" - "resolved" "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz" - "version" "0.3.2" - -"anymatch@~3.1.2": - "integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==" - "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz" - "version" "3.1.2" - dependencies: - "normalize-path" "^3.0.0" - "picomatch" "^2.0.4" - -"aproba@^1.0.3 || ^2.0.0", "aproba@^2.0.0": - "integrity" "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" - "resolved" "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz" - "version" "2.0.0" - -"archy@~1.0.0": - "resolved" "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz" - "version" "1.0.0" - -"are-we-there-yet@^3.0.0": - "integrity" "sha512-0GWpv50YSOcLXaN6/FAKY3vfRbllXWV2xvfA/oKJF8pzFhWXPV+yjhJXDBbjscDYowv7Yw1A3uigpzn5iEGTyw==" - "resolved" "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "delegates" "^1.0.0" - "readable-stream" "^3.6.0" - -"argparse@^1.0.6", "argparse@^1.0.7": - "integrity" "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" - "resolved" "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" - "version" "1.0.10" - dependencies: - "sprintf-js" "~1.0.2" - -"argparse@^2.0.1": - "integrity" "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - "resolved" "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" - "version" "2.0.1" - -"argv-formatter@~1.0.0": - "integrity" "sha1-oMoMvCmltz6Dbuvhy/bF4OTrgvk=" - "resolved" "https://registry.npmjs.org/argv-formatter/-/argv-formatter-1.0.0.tgz" - "version" "1.0.0" - -"array-ify@^1.0.0": - "integrity" "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=" - "resolved" "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz" - "version" "1.0.0" - -"array-includes@^3.1.4": - "integrity" "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==" - "resolved" "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz" - "version" "3.1.4" - dependencies: - "call-bind" "^1.0.2" - "define-properties" "^1.1.3" - "es-abstract" "^1.19.1" - "get-intrinsic" "^1.1.1" - "is-string" "^1.0.7" - -"array-union@^2.1.0": - "integrity" "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" - "resolved" "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" - "version" "2.1.0" - -"array.prototype.flat@^1.2.5": - "integrity" "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==" - "resolved" "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz" - "version" "1.2.5" - dependencies: - "call-bind" "^1.0.2" - "define-properties" "^1.1.3" - "es-abstract" "^1.19.0" - -"arrify@^1.0.1": - "integrity" "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" - "resolved" "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz" - "version" "1.0.1" - -"asap@^2.0.0": - "resolved" "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz" - "version" "2.0.6" - -"astral-regex@^2.0.0": - "integrity" "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" - "resolved" "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz" - "version" "2.0.0" - -"at-least-node@^1.0.0": - "integrity" "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" - "resolved" "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz" - "version" "1.0.0" - -"axios@^0.21.1": - "integrity" "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==" - "resolved" "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz" - "version" "0.21.4" - dependencies: - "follow-redirects" "^1.14.0" - -"balanced-match@^1.0.0": - "integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - "resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" - "version" "1.0.2" - -"before-after-hook@^2.2.0": - "integrity" "sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==" - "resolved" "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.2.tgz" - "version" "2.2.2" - -"bin-links@^3.0.3": - "resolved" "https://registry.npmjs.org/bin-links/-/bin-links-3.0.3.tgz" - "version" "3.0.3" - dependencies: - "cmd-shim" "^5.0.0" - "mkdirp-infer-owner" "^2.0.0" - "npm-normalize-package-bin" "^2.0.0" - "read-cmd-shim" "^3.0.0" - "rimraf" "^3.0.0" - "write-file-atomic" "^4.0.0" - -"binary-extensions@^2.0.0": - "integrity" "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" - "resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" - "version" "2.2.0" - -"binary-extensions@^2.2.0": - "resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" - "version" "2.2.0" - -"bindings@^1.5.0": - "integrity" "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==" - "resolved" "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz" - "version" "1.5.0" - dependencies: - "file-uri-to-path" "1.0.0" - -"bottleneck@^2.18.1": - "integrity" "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==" - "resolved" "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz" - "version" "2.19.5" - -"brace-expansion@^1.1.7": - "integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" - "resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" - "version" "1.1.11" - dependencies: - "balanced-match" "^1.0.0" - "concat-map" "0.0.1" - -"brace-expansion@^2.0.1": - "resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz" - "version" "2.0.1" - dependencies: - "balanced-match" "^1.0.0" - -"braces@^3.0.1", "braces@~3.0.2": - "integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" - "resolved" "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" - "version" "3.0.2" - dependencies: - "fill-range" "^7.0.1" - -"bufferstreams@^3.0.0": - "integrity" "sha512-Qg0ggJUWJq90vtg4lDsGN9CDWvzBMQxhiEkSOD/sJfYt6BLect3eV1/S6K7SCSKJ34n60rf6U5eUPmQENVE4UA==" - "resolved" "https://registry.npmjs.org/bufferstreams/-/bufferstreams-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "readable-stream" "^3.4.0" - -"builtins@^5.0.0": - "resolved" "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz" - "version" "5.0.1" - dependencies: - "semver" "^7.0.0" - -"cacache@^15.2.0": - "integrity" "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==" - "resolved" "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz" - "version" "15.3.0" - dependencies: - "@npmcli/fs" "^1.0.0" - "@npmcli/move-file" "^1.0.1" - "chownr" "^2.0.0" - "fs-minipass" "^2.0.0" - "glob" "^7.1.4" - "infer-owner" "^1.0.4" - "lru-cache" "^6.0.0" - "minipass" "^3.1.1" - "minipass-collect" "^1.0.2" - "minipass-flush" "^1.0.5" - "minipass-pipeline" "^1.2.2" - "mkdirp" "^1.0.3" - "p-map" "^4.0.0" - "promise-inflight" "^1.0.1" - "rimraf" "^3.0.2" - "ssri" "^8.0.1" - "tar" "^6.0.2" - "unique-filename" "^1.1.1" - -"cacache@^16.0.0", "cacache@^16.1.0", "cacache@^16.1.3": - "resolved" "https://registry.npmjs.org/cacache/-/cacache-16.1.3.tgz" - "version" "16.1.3" +"@types/node-fetch@^2.6.12": + version "2.6.12" + resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.12.tgz#8ab5c3ef8330f13100a7479e2cd56d3386830a03" + integrity sha512-8nneRWKCg3rMtF69nLQJnOYUcbafYeFSjqkw3jCRLsqkWFlHaoQrr5mXmofFGOx3DKn7UfmBMyov8ySvLRVldA== dependencies: - "@npmcli/fs" "^2.1.0" - "@npmcli/move-file" "^2.0.0" - "chownr" "^2.0.0" - "fs-minipass" "^2.1.0" - "glob" "^8.0.1" - "infer-owner" "^1.0.4" - "lru-cache" "^7.7.1" - "minipass" "^3.1.6" - "minipass-collect" "^1.0.2" - "minipass-flush" "^1.0.5" - "minipass-pipeline" "^1.2.4" - "mkdirp" "^1.0.4" - "p-map" "^4.0.0" - "promise-inflight" "^1.0.1" - "rimraf" "^3.0.2" - "ssri" "^9.0.0" - "tar" "^6.1.11" - "unique-filename" "^2.0.0" - -"call-bind@^1.0.0", "call-bind@^1.0.2": - "integrity" "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==" - "resolved" "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" - "version" "1.0.2" - dependencies: - "function-bind" "^1.1.1" - "get-intrinsic" "^1.0.2" - -"callsites@^3.0.0": - "integrity" "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - "resolved" "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" - "version" "3.1.0" - -"camel-case@^4.1.2": - "integrity" "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==" - "resolved" "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz" - "version" "4.1.2" - dependencies: - "pascal-case" "^3.1.2" - "tslib" "^2.0.3" - -"camelcase-keys@^6.2.2": - "integrity" "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==" - "resolved" "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz" - "version" "6.2.2" - dependencies: - "camelcase" "^5.3.1" - "map-obj" "^4.0.0" - "quick-lru" "^4.0.1" - -"camelcase@^5.3.1": - "integrity" "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - "resolved" "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" - "version" "5.3.1" - -"capital-case@^1.0.4": - "integrity" "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==" - "resolved" "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz" - "version" "1.0.4" - dependencies: - "no-case" "^3.0.4" - "tslib" "^2.0.3" - "upper-case-first" "^2.0.2" - -"cardinal@^2.1.1": - "integrity" "sha1-fMEFXYItISlU0HsIXeolHMe8VQU=" - "resolved" "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz" - "version" "2.1.1" - dependencies: - "ansicolors" "~0.3.2" - "redeyed" "~2.1.0" - -"chalk@^2.0.0", "chalk@^2.3.2": - "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" - "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" - "version" "2.4.2" - dependencies: - "ansi-styles" "^3.2.1" - "escape-string-regexp" "^1.0.5" - "supports-color" "^5.3.0" - -"chalk@^4.0.0", "chalk@^4.1.0", "chalk@^4.1.2": - "integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" - "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" - "version" "4.1.2" - dependencies: - "ansi-styles" "^4.1.0" - "supports-color" "^7.1.0" - -"chalk@^5.0.0": - "integrity" "sha512-/duVOqst+luxCQRKEo4bNxinsOQtMP80ZYm7mMqzuh5PociNL0PvmHFvREJ9ueYL2TxlHjBcmLCdmocx9Vg+IQ==" - "resolved" "https://registry.npmjs.org/chalk/-/chalk-5.0.0.tgz" - "version" "5.0.0" - -"change-case@^4.1.2": - "integrity" "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==" - "resolved" "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz" - "version" "4.1.2" - dependencies: - "camel-case" "^4.1.2" - "capital-case" "^1.0.4" - "constant-case" "^3.0.4" - "dot-case" "^3.0.4" - "header-case" "^2.0.4" - "no-case" "^3.0.4" - "param-case" "^3.0.4" - "pascal-case" "^3.1.2" - "path-case" "^3.0.4" - "sentence-case" "^3.0.4" - "snake-case" "^3.0.4" - "tslib" "^2.0.3" - -"chokidar@^3.5.2": - "integrity" "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" - "resolved" "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz" - "version" "3.5.3" - dependencies: - "anymatch" "~3.1.2" - "braces" "~3.0.2" - "glob-parent" "~5.1.2" - "is-binary-path" "~2.1.0" - "is-glob" "~4.0.1" - "normalize-path" "~3.0.0" - "readdirp" "~3.6.0" - optionalDependencies: - "fsevents" "~2.3.2" - -"chownr@^2.0.0": - "integrity" "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" - "resolved" "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz" - "version" "2.0.0" + "@types/node" "*" + form-data "^4.0.0" -"cidr-regex@^3.1.1": - "resolved" "https://registry.npmjs.org/cidr-regex/-/cidr-regex-3.1.1.tgz" - "version" "3.1.1" +"@types/node@*": + version "22.10.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.10.1.tgz#41ffeee127b8975a05f8c4f83fb89bcb2987d766" + integrity sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ== dependencies: - "ip-regex" "^4.1.0" + undici-types "~6.20.0" -"clean-stack@^2.0.0": - "integrity" "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" - "resolved" "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz" - "version" "2.2.0" +"@types/normalize-package-data@^2.4.3": + version "2.4.4" + resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz#56e2cc26c397c038fab0e3a917a12d5c5909e901" + integrity sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA== -"cli-color@^2.0.0": - "integrity" "sha512-eBbxZF6fqPUNnf7CLAFOersUnyYzv83tHFLSlts+OAHsNendaqv2tHCq+/MO+b3Y+9JeoUlIvobyxG/Z8GNeOg==" - "resolved" "https://registry.npmjs.org/cli-color/-/cli-color-2.0.1.tgz" - "version" "2.0.1" - dependencies: - "d" "^1.0.1" - "es5-ext" "^0.10.53" - "es6-iterator" "^2.0.3" - "memoizee" "^0.4.15" - "timers-ext" "^0.1.7" +"@types/semver@^7.5.5": + version "7.5.8" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.8.tgz#8268a8c57a3e4abd25c165ecd36237db7948a55e" + integrity sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ== -"cli-columns@^4.0.0": - "resolved" "https://registry.npmjs.org/cli-columns/-/cli-columns-4.0.0.tgz" - "version" "4.0.0" - dependencies: - "string-width" "^4.2.3" - "strip-ansi" "^6.0.1" +"@xmldom/xmldom@^0.7.2": + version "0.7.13" + resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.7.13.tgz#ff34942667a4e19a9f4a0996a76814daac364cf3" + integrity sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g== + +"@yarnpkg/lockfile@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" + integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== + +"@zip.js/zip.js@^2.7.44": + version "2.7.53" + resolved "https://registry.yarnpkg.com/@zip.js/zip.js/-/zip.js-2.7.53.tgz#bf88e90d8eed562182c01339643bc405446b0578" + integrity sha512-G6Bl5wN9EXXVaTUIox71vIX5Z454zEBe+akKpV4m1tUboIctT5h7ID3QXCJd/Lfy2rSvmkTmZIucf1jGRR4f5A== + +abbrev@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + +abbrev@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-2.0.0.tgz#cf59829b8b4f03f89dda2771cb7f3653828c89bf" + integrity sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ== + +abbrev@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-3.0.0.tgz#c29a6337e167ac61a84b41b80461b29c5c271a27" + integrity sha512-+/kfrslGQ7TNV2ecmQwMJj/B65g5KVq1/L3SGVZ3tCYGqlzFuFCGBZJtMP99wH3NpEUyAjn0zPdPUg0D+DwrOA== + +acorn-jsx@^5.3.2: + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn-walk@^8.1.1: + version "8.3.4" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.4.tgz#794dd169c3977edf4ba4ea47583587c5866236b7" + integrity sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g== + dependencies: + acorn "^8.11.0" + +acorn@^8.11.0, acorn@^8.14.0, acorn@^8.4.1: + version "8.14.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0" + integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA== + +agent-base@6, agent-base@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" + integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== + dependencies: + debug "4" + +agent-base@^7.0.2, agent-base@^7.1.0, agent-base@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.1.tgz#bdbded7dfb096b751a2a087eeeb9664725b2e317" + integrity sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA== + dependencies: + debug "^4.3.4" + +agentkeepalive@^4.2.1: + version "4.5.0" + resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.5.0.tgz#2673ad1389b3c418c5a20c5d7364f93ca04be923" + integrity sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew== + dependencies: + humanize-ms "^1.2.1" + +aggregate-error@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" + integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== + dependencies: + clean-stack "^2.0.0" + indent-string "^4.0.0" + +aggregate-error@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-5.0.0.tgz#ffe15045d7521c51c9d618e3d7f37c13f29b3fd3" + integrity sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw== + dependencies: + clean-stack "^5.2.0" + indent-string "^5.0.0" + +ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ajv@^8.0.1: + version "8.17.1" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6" + integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g== + dependencies: + fast-deep-equal "^3.1.3" + fast-uri "^3.0.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + +ansi-colors@^4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" + integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +"aproba@^1.0.3 || ^2.0.0", aproba@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" + integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== + +archy@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" + integrity sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw== + +are-we-there-yet@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz#679df222b278c64f2cdba1175cdc00b0d96164bd" + integrity sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg== + dependencies: + delegates "^1.0.0" + readable-stream "^3.6.0" + +arg@^4.1.0: + version "4.1.3" + resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +array-buffer-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz#1e5583ec16763540a27ae52eed99ff899223568f" + integrity sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg== + dependencies: + call-bind "^1.0.5" + is-array-buffer "^3.0.4" + +array-ify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" + integrity sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng== + +array-includes@^3.1.8: + version "3.1.8" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.8.tgz#5e370cbe172fdd5dd6530c1d4aadda25281ba97d" + integrity sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-object-atoms "^1.0.0" + get-intrinsic "^1.2.4" + is-string "^1.0.7" + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +array.prototype.findlastindex@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz#8c35a755c72908719453f87145ca011e39334d0d" + integrity sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + es-shim-unscopables "^1.0.2" + +array.prototype.flat@^1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz#1476217df8cff17d72ee8f3ba06738db5b387d18" + integrity sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + es-shim-unscopables "^1.0.0" + +array.prototype.flatmap@^1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz#c9a7c6831db8e719d6ce639190146c24bbd3e527" + integrity sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + es-shim-unscopables "^1.0.0" + +arraybuffer.prototype.slice@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz#097972f4255e41bc3425e37dc3f6421cf9aefde6" + integrity sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A== + dependencies: + array-buffer-byte-length "^1.0.1" + call-bind "^1.0.5" + define-properties "^1.2.1" + es-abstract "^1.22.3" + es-errors "^1.2.1" + get-intrinsic "^1.2.3" + is-array-buffer "^3.0.4" + is-shared-array-buffer "^1.0.2" + +assert@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/assert/-/assert-2.1.0.tgz#6d92a238d05dc02e7427c881fb8be81c8448b2dd" + integrity sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw== + dependencies: + call-bind "^1.0.2" + is-nan "^1.3.2" + object-is "^1.1.5" + object.assign "^4.1.4" + util "^0.12.5" + +assertion-error@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-2.0.1.tgz#f641a196b335690b1070bf00b6e7593fec190bf7" + integrity sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA== + +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== + +at-least-node@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" + integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== + +available-typed-arrays@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#a5cc375d6a03c2efc87a553f3e0b1522def14846" + integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ== + dependencies: + possible-typed-array-names "^1.0.0" + +axios@^0.21.1: + version "0.21.4" + resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" + integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== + dependencies: + follow-redirects "^1.14.0" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +balanced-match@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-2.0.0.tgz#dc70f920d78db8b858535795867bf48f820633d9" + integrity sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA== + +base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +before-after-hook@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-3.0.2.tgz#d5665a5fa8b62294a5aa0a499f933f4a1016195d" + integrity sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A== + +bin-links@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/bin-links/-/bin-links-5.0.0.tgz#2b0605b62dd5e1ddab3b92a3c4e24221cae06cca" + integrity sha512-sdleLVfCjBtgO5cNjA2HVRvWBJAHs4zwenaCPMNJAJU0yNxpzj80IpjOIimkpkr+mhlA+how5poQtt53PygbHA== + dependencies: + cmd-shim "^7.0.0" + npm-normalize-package-bin "^4.0.0" + proc-log "^5.0.0" + read-cmd-shim "^5.0.0" + write-file-atomic "^6.0.0" + +binary-extensions@^2.0.0, binary-extensions@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522" + integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw== + +bindings@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + +bottleneck@^2.15.3: + version "2.19.5" + resolved "https://registry.yarnpkg.com/bottleneck/-/bottleneck-2.19.5.tgz#5df0b90f59fd47656ebe63c78a98419205cadd91" + integrity sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@^3.0.3, braces@~3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" + integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== + dependencies: + fill-range "^7.1.1" + +browser-stdout@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" + integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== + +buffer@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" + integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +bufferstreams@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bufferstreams/-/bufferstreams-3.0.0.tgz#d2cb186cffeb527668341891e523c19539bc4a14" + integrity sha512-Qg0ggJUWJq90vtg4lDsGN9CDWvzBMQxhiEkSOD/sJfYt6BLect3eV1/S6K7SCSKJ34n60rf6U5eUPmQENVE4UA== + dependencies: + readable-stream "^3.4.0" -"cli-table3@^0.6.1": - "integrity" "sha512-w0q/enDHhPLq44ovMGdQeeDLvwxwavsJX7oQGYt/LrBlYsyaxyDnp6z3QzFut/6kLLKnlcUVJLrpB7KBfgG/RA==" - "resolved" "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.1.tgz" - "version" "0.6.1" +cacache@^16.1.0: + version "16.1.3" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-16.1.3.tgz#a02b9f34ecfaf9a78c9f4bc16fceb94d5d67a38e" + integrity sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ== dependencies: - "string-width" "^4.2.0" + "@npmcli/fs" "^2.1.0" + "@npmcli/move-file" "^2.0.0" + chownr "^2.0.0" + fs-minipass "^2.1.0" + glob "^8.0.1" + infer-owner "^1.0.4" + lru-cache "^7.7.1" + minipass "^3.1.6" + minipass-collect "^1.0.2" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.4" + mkdirp "^1.0.4" + p-map "^4.0.0" + promise-inflight "^1.0.1" + rimraf "^3.0.2" + ssri "^9.0.0" + tar "^6.1.11" + unique-filename "^2.0.0" + +cacache@^18.0.0: + version "18.0.4" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-18.0.4.tgz#4601d7578dadb59c66044e157d02a3314682d6a5" + integrity sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ== + dependencies: + "@npmcli/fs" "^3.1.0" + fs-minipass "^3.0.0" + glob "^10.2.2" + lru-cache "^10.0.1" + minipass "^7.0.3" + minipass-collect "^2.0.1" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.4" + p-map "^4.0.0" + ssri "^10.0.0" + tar "^6.1.11" + unique-filename "^3.0.0" + +cacache@^19.0.0, cacache@^19.0.1: + version "19.0.1" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-19.0.1.tgz#3370cc28a758434c85c2585008bd5bdcff17d6cd" + integrity sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ== + dependencies: + "@npmcli/fs" "^4.0.0" + fs-minipass "^3.0.0" + glob "^10.2.2" + lru-cache "^10.0.1" + minipass "^7.0.3" + minipass-collect "^2.0.1" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.4" + p-map "^7.0.2" + ssri "^12.0.0" + tar "^7.4.3" + unique-filename "^4.0.0" + +call-bind@^1.0.0, call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" + integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + set-function-length "^1.2.1" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase@^6.0.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +case@^1.6.3: + version "1.6.3" + resolved "https://registry.yarnpkg.com/case/-/case-1.6.3.tgz#0a4386e3e9825351ca2e6216c60467ff5f1ea1c9" + integrity sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ== + +chai@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/chai/-/chai-5.1.2.tgz#3afbc340b994ae3610ca519a6c70ace77ad4378d" + integrity sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw== + dependencies: + assertion-error "^2.0.1" + check-error "^2.1.1" + deep-eql "^5.0.1" + loupe "^3.1.0" + pathval "^2.0.0" + +chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.3.0.tgz#67c20a7ebef70e7f3970a01f90fa210cb6860385" + integrity sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w== + +change-case@^5.3.0: + version "5.4.4" + resolved "https://registry.yarnpkg.com/change-case/-/change-case-5.4.4.tgz#0d52b507d8fb8f204343432381d1a6d7bff97a02" + integrity sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w== + +check-error@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/check-error/-/check-error-2.1.1.tgz#87eb876ae71ee388fa0471fe423f494be1d96ccc" + integrity sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw== + +chokidar@^3.5.2, chokidar@^3.5.3: + version "3.6.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b" + integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" optionalDependencies: - "colors" "1.4.0" - -"cli-table3@^0.6.2": - "version" "0.6.2" - dependencies: - "string-width" "^4.2.0" + fsevents "~2.3.2" + +chownr@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" + integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== + +chownr@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-3.0.0.tgz#9855e64ecd240a9cc4267ce8a4aa5d24a1da15e4" + integrity sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g== + +ci-info@^3.7.0: + version "3.9.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" + integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== + +ci-info@^4.0.0, ci-info@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-4.1.0.tgz#92319d2fa29d2620180ea5afed31f589bc98cf83" + integrity sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A== + +cidr-regex@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/cidr-regex/-/cidr-regex-4.1.1.tgz#acbe7ba9f10d658710bddd25baa900509e90125a" + integrity sha512-ekKcVp+iRB9zlKFXyx7io7nINgb0oRjgRdXNEodp1OuxRui8FXr/CA40Tz1voWUp9DPPrMyQKy01vJhDo4N1lw== + dependencies: + ip-regex "^5.0.0" + +clean-stack@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== + +clean-stack@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-5.2.0.tgz#c7a0c91939c7caace30a3bf254e8a8ac276d1189" + integrity sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ== + dependencies: + escape-string-regexp "5.0.0" + +cli-color@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/cli-color/-/cli-color-2.0.4.tgz#d658080290968816b322248b7306fad2346fb2c8" + integrity sha512-zlnpg0jNcibNrO7GG9IeHH7maWFeCz+Ja1wx/7tZNU5ASSSSZ+/qZciM0/LHCYxSdqv5h2sdbQ/PXYdOuetXvA== + dependencies: + d "^1.0.1" + es5-ext "^0.10.64" + es6-iterator "^2.0.3" + memoizee "^0.4.15" + timers-ext "^0.1.7" + +cli-columns@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/cli-columns/-/cli-columns-4.0.0.tgz#9fe4d65975238d55218c41bd2ed296a7fa555646" + integrity sha512-XW2Vg+w+L9on9wtwKpyzluIPCWXjaBahI7mTcYjx+BVIYD9c3yqcv/yKC7CmdCZat4rq2yiE1UMSJC5ivKfMtQ== + dependencies: + string-width "^4.2.3" + strip-ansi "^6.0.1" + +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +cliui@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" + integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.1" + wrap-ansi "^7.0.0" + +cmd-shim@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/cmd-shim/-/cmd-shim-7.0.0.tgz#23bcbf69fff52172f7e7c02374e18fb215826d95" + integrity sha512-rtpaCbr164TPPh+zFdkWpCyZuKkjpAzODfaZCf/SVJZzJN+4bHQb/LP3Jzq5/+84um3XXY8r548XiWKSborwVw== + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +color-support@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" + integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== + +colord@^2.9.3: + version "2.9.3" + resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43" + integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== + +colorjs.io@^0.4.3: + version "0.4.5" + resolved "https://registry.yarnpkg.com/colorjs.io/-/colorjs.io-0.4.5.tgz#7775f787ff90aca7a38f6edb7b7c0f8cce1e6418" + integrity sha512-yCtUNCmge7llyfd/Wou19PMAcf5yC3XXhgFoAh6zsO2pGswhUPBaaUh8jzgHnXtXuZyFKzXZNAnyF5i+apICow== + +combined-stream@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +commander@^12.0.0: + version "12.1.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-12.1.0.tgz#01423b36f501259fdaac4d0e4d60c96c991585d3" + integrity sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA== + +commander@^8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" + integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== + +commander@^9.3.0: + version "9.5.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz#bc08d1eb5cedf7ccb797a96199d41c7bc3e60d30" + integrity sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ== + +common-ancestor-path@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz#4f7d2d1394d91b7abdf51871c62f71eadb0182a7" + integrity sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w== + +compare-func@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3" + integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA== + dependencies: + array-ify "^1.0.0" + dot-prop "^5.1.0" + +component-emitter@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-2.0.0.tgz#3a137dfe66fcf2efe3eab7cb7d5f51741b3620c6" + integrity sha512-4m5s3Me2xxlVKG9PkZpQqHQR7bgpnN7joDMJ4yvVkVXngjoITG76IaZmzmywSeRTeTpc6N6r3H3+KyUurV8OYw== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +config-chain@^1.1.11: + version "1.1.13" + resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.13.tgz#fad0795aa6a6cdaff9ed1b68e9dff94372c232f4" + integrity sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ== + dependencies: + ini "^1.3.4" + proto-list "~1.2.1" + +console-control-strings@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== + +conventional-changelog-angular@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-8.0.0.tgz#5701386850f0e0c2e630b43ee7821d322d87e7a6" + integrity sha512-CLf+zr6St0wIxos4bmaKHRXWAcsCXrJU6F4VdNDrGRK3B8LDLKoX3zuMV5GhtbGkVR/LohZ6MT6im43vZLSjmA== + dependencies: + compare-func "^2.0.0" + +conventional-changelog-writer@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-8.0.0.tgz#81522ed40400a4ca8ab78a42794aae9667c745ae" + integrity sha512-TQcoYGRatlAnT2qEWDON/XSfnVG38JzA7E0wcGScu7RElQBkg9WWgZd1peCWFcWDh1xfb2CfsrcvOn1bbSzztA== + dependencies: + "@types/semver" "^7.5.5" + conventional-commits-filter "^5.0.0" + handlebars "^4.7.7" + meow "^13.0.0" + semver "^7.5.2" + +conventional-commits-filter@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-5.0.0.tgz#72811f95d379e79d2d39d5c0c53c9351ef284e86" + integrity sha512-tQMagCOC59EVgNZcC5zl7XqO30Wki9i9J3acbUvkaosCT6JX3EeFwJD7Qqp4MCikRnzS18WXV3BLIQ66ytu6+Q== + +conventional-commits-parser@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-6.0.0.tgz#74e3be5344d8cd99f7c3353da2efa1d1dd618061" + integrity sha512-TbsINLp48XeMXR8EvGjTnKGsZqBemisPoyWESlpRyR8lif0lcwzqz+NMtYSj1ooF/WYjSuu7wX0CtdeeMEQAmA== + dependencies: + meow "^13.0.0" + +copy-anything@^2.0.1: + version "2.0.6" + resolved "https://registry.yarnpkg.com/copy-anything/-/copy-anything-2.0.6.tgz#092454ea9584a7b7ad5573062b2a87f5900fc480" + integrity sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw== + dependencies: + is-what "^3.14.1" + +core-util-is@~1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + +cosmiconfig@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-9.0.0.tgz#34c3fc58287b915f3ae905ab6dc3de258b55ad9d" + integrity sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg== + dependencies: + env-paths "^2.2.1" + import-fresh "^3.3.0" + js-yaml "^4.1.0" + parse-json "^5.2.0" + +create-require@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" + integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== + +cross-spawn@^7.0.0, cross-spawn@^7.0.3, cross-spawn@^7.0.5: + version "7.0.6" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" + integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypto-random-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-4.0.0.tgz#5a3cc53d7dd86183df5da0312816ceeeb5bb1fc2" + integrity sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA== + dependencies: + type-fest "^1.0.1" + +css-functions-list@^3.2.3: + version "3.2.3" + resolved "https://registry.yarnpkg.com/css-functions-list/-/css-functions-list-3.2.3.tgz#95652b0c24f0f59b291a9fc386041a19d4f40dbe" + integrity sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA== + +css-tree@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-3.0.1.tgz#bea6deaea60bb5bcf416adfb1ecf607a8d9471f6" + integrity sha512-8Fxxv+tGhORlshCdCwnNJytvlvq46sOLSYEx2ZIGurahWvMucSRnyjPA3AmrMq4VPRYbHVpWj5VkiVasrM2H4Q== + dependencies: + mdn-data "2.12.1" + source-map-js "^1.0.1" + +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + +cubic2quad@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/cubic2quad/-/cubic2quad-1.2.1.tgz#2442260b72c02ee4b6a2fe998fcc1c4073622286" + integrity sha512-wT5Y7mO8abrV16gnssKdmIhIbA9wSkeMzhh27jAguKrV82i24wER0vL5TGhUJ9dbJNDcigoRZ0IAHFEEEI4THQ== + +d@1, d@^1.0.1, d@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/d/-/d-1.0.2.tgz#2aefd554b81981e7dccf72d6842ae725cb17e5de" + integrity sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw== + dependencies: + es5-ext "^0.10.64" + type "^2.7.2" + +data-uri-to-buffer@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz#d8feb2b2881e6a4f58c2e08acfd0e2834e26222e" + integrity sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A== + +data-view-buffer@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.1.tgz#8ea6326efec17a2e42620696e671d7d5a8bc66b2" + integrity sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-data-view "^1.0.1" + +data-view-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz#90721ca95ff280677eb793749fce1011347669e2" + integrity sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + is-data-view "^1.0.1" + +data-view-byte-offset@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz#5e0bbfb4828ed2d1b9b400cd8a7d119bca0ff18a" + integrity sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-data-view "^1.0.1" + +debug@4, debug@^4, debug@^4.0.0, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4, debug@^4.3.5, debug@^4.3.6, debug@^4.3.7: + version "4.3.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52" + integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== + dependencies: + ms "^2.1.3" + +debug@^3.2.7: + version "3.2.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + dependencies: + ms "^2.1.1" + +decamelize@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" + integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== + +deep-eql@^5.0.1: + version "5.0.2" + resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-5.0.2.tgz#4b756d8d770a9257300825d52a2c2cff99c3a341" + integrity sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q== + +deep-extend@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== + +deep-is@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +deepmerge@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" + integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== + +define-data-property@^1.0.1, define-data-property@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" + integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + gopd "^1.0.1" + +define-properties@^1.1.3, define-properties@^1.2.0, define-properties@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" + integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== + dependencies: + define-data-property "^1.0.1" + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== + +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + +diff@^5.1.0, diff@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/diff/-/diff-5.2.0.tgz#26ded047cd1179b78b9537d5ef725503ce1ae531" + integrity sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A== + +dir-glob@^3.0.0, dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +doctrine@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" + integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== + dependencies: + esutils "^2.0.2" + +dot-prop@^5.1.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" + integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== + dependencies: + is-obj "^2.0.0" + +dotenv@^16.4.5: + version "16.4.5" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f" + integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg== + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +encoding@^0.1.13: + version "0.1.13" + resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" + integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== + dependencies: + iconv-lite "^0.6.2" + +enhanced-resolve@^5.17.1: + version "5.17.1" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz#67bfbbcc2f81d511be77d686a90267ef7f898a15" + integrity sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg== + dependencies: + graceful-fs "^4.2.4" + tapable "^2.2.0" + +env-paths@^2.2.0, env-paths@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" + integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== + +err-code@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" + integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== + +errno@^0.1.1: + version "0.1.8" + resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f" + integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A== + dependencies: + prr "~1.0.1" + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23.2, es-abstract@^1.23.5: + version "1.23.5" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.5.tgz#f4599a4946d57ed467515ed10e4f157289cd52fb" + integrity sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ== + dependencies: + array-buffer-byte-length "^1.0.1" + arraybuffer.prototype.slice "^1.0.3" + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" + data-view-buffer "^1.0.1" + data-view-byte-length "^1.0.1" + data-view-byte-offset "^1.0.0" + es-define-property "^1.0.0" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + es-set-tostringtag "^2.0.3" + es-to-primitive "^1.2.1" + function.prototype.name "^1.1.6" + get-intrinsic "^1.2.4" + get-symbol-description "^1.0.2" + globalthis "^1.0.4" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + has-proto "^1.0.3" + has-symbols "^1.0.3" + hasown "^2.0.2" + internal-slot "^1.0.7" + is-array-buffer "^3.0.4" + is-callable "^1.2.7" + is-data-view "^1.0.1" + is-negative-zero "^2.0.3" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.3" + is-string "^1.0.7" + is-typed-array "^1.1.13" + is-weakref "^1.0.2" + object-inspect "^1.13.3" + object-keys "^1.1.1" + object.assign "^4.1.5" + regexp.prototype.flags "^1.5.3" + safe-array-concat "^1.1.2" + safe-regex-test "^1.0.3" + string.prototype.trim "^1.2.9" + string.prototype.trimend "^1.0.8" + string.prototype.trimstart "^1.0.8" + typed-array-buffer "^1.0.2" + typed-array-byte-length "^1.0.1" + typed-array-byte-offset "^1.0.2" + typed-array-length "^1.0.6" + unbox-primitive "^1.0.2" + which-typed-array "^1.1.15" + +es-define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" + integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== + dependencies: + get-intrinsic "^1.2.4" + +es-errors@^1.2.1, es-errors@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== + +es-object-atoms@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.0.0.tgz#ddb55cd47ac2e240701260bc2a8e31ecb643d941" + integrity sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw== + dependencies: + es-errors "^1.3.0" + +es-set-tostringtag@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz#8bb60f0a440c2e4281962428438d58545af39777" + integrity sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ== + dependencies: + get-intrinsic "^1.2.4" + has-tostringtag "^1.0.2" + hasown "^2.0.1" + +es-shim-unscopables@^1.0.0, es-shim-unscopables@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz#1f6942e71ecc7835ed1c8a83006d8771a63a3763" + integrity sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw== + dependencies: + hasown "^2.0.0" + +es-to-primitive@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.3.0.tgz#96c89c82cc49fd8794a24835ba3e1ff87f214e18" + integrity sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g== + dependencies: + is-callable "^1.2.7" + is-date-object "^1.0.5" + is-symbol "^1.0.4" + +es5-ext@^0.10.35, es5-ext@^0.10.46, es5-ext@^0.10.62, es5-ext@^0.10.64, es5-ext@~0.10.14, es5-ext@~0.10.2: + version "0.10.64" + resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.64.tgz#12e4ffb48f1ba2ea777f1fcdd1918ef73ea21714" + integrity sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg== + dependencies: + es6-iterator "^2.0.3" + es6-symbol "^3.1.3" + esniff "^2.0.1" + next-tick "^1.1.0" + +es6-iterator@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" + integrity sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g== + dependencies: + d "1" + es5-ext "^0.10.35" + es6-symbol "^3.1.1" + +es6-symbol@^3.1.1, es6-symbol@^3.1.3: + version "3.1.4" + resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.4.tgz#f4e7d28013770b4208ecbf3e0bf14d3bcb557b8c" + integrity sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg== + dependencies: + d "^1.0.2" + ext "^1.7.0" + +es6-weak-map@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.3.tgz#b6da1f16cc2cc0d9be43e6bdbfc5e7dfcdf31d53" + integrity sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA== + dependencies: + d "1" + es5-ext "^0.10.46" + es6-iterator "^2.0.3" + es6-symbol "^3.1.1" + +esbuild@~0.23.0: + version "0.23.1" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.23.1.tgz#40fdc3f9265ec0beae6f59824ade1bd3d3d2dab8" + integrity sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg== optionalDependencies: - "@colors/colors" "1.5.0" - -"cliui@^7.0.2": - "integrity" "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==" - "resolved" "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz" - "version" "7.0.4" - dependencies: - "string-width" "^4.2.0" - "strip-ansi" "^6.0.0" - "wrap-ansi" "^7.0.0" - -"clone@^1.0.2": - "resolved" "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz" - "version" "1.0.4" - -"cmd-shim@^5.0.0": - "resolved" "https://registry.npmjs.org/cmd-shim/-/cmd-shim-5.0.0.tgz" - "version" "5.0.0" - dependencies: - "mkdirp-infer-owner" "^2.0.0" - -"color-convert@^1.9.0": - "integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" - "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" - "version" "1.9.3" - dependencies: - "color-name" "1.1.3" - -"color-convert@^2.0.1": - "integrity" "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" - "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" - "version" "2.0.1" - dependencies: - "color-name" "~1.1.4" - -"color-name@~1.1.4": - "integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" - "version" "1.1.4" - -"color-name@1.1.3": - "integrity" "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" - "version" "1.1.3" - -"color-support@^1.1.3": - "integrity" "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==" - "resolved" "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz" - "version" "1.1.3" - -"colors@1.4.0": - "integrity" "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==" - "resolved" "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz" - "version" "1.4.0" - -"columnify@^1.6.0": - "resolved" "https://registry.npmjs.org/columnify/-/columnify-1.6.0.tgz" - "version" "1.6.0" - dependencies: - "strip-ansi" "^6.0.1" - "wcwidth" "^1.0.0" - -"commander@^5.1.0": - "integrity" "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" - "resolved" "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz" - "version" "5.1.0" - -"commander@^7.2.0": - "integrity" "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" - "resolved" "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz" - "version" "7.2.0" - -"common-ancestor-path@^1.0.1": - "resolved" "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz" - "version" "1.0.1" - -"compare-func@^2.0.0": - "integrity" "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==" - "resolved" "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "array-ify" "^1.0.0" - "dot-prop" "^5.1.0" - -"concat-map@0.0.1": - "integrity" "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - "resolved" "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" - "version" "0.0.1" - -"console-control-strings@^1.1.0": - "integrity" "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=" - "resolved" "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz" - "version" "1.1.0" - -"constant-case@^3.0.4": - "integrity" "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==" - "resolved" "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz" - "version" "3.0.4" - dependencies: - "no-case" "^3.0.4" - "tslib" "^2.0.3" - "upper-case" "^2.0.2" - -"conventional-changelog-angular@^5.0.0": - "integrity" "sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==" - "resolved" "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz" - "version" "5.0.13" - dependencies: - "compare-func" "^2.0.0" - "q" "^1.5.1" - -"conventional-changelog-writer@^5.0.0": - "integrity" "sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==" - "resolved" "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz" - "version" "5.0.1" - dependencies: - "conventional-commits-filter" "^2.0.7" - "dateformat" "^3.0.0" - "handlebars" "^4.7.7" - "json-stringify-safe" "^5.0.1" - "lodash" "^4.17.15" - "meow" "^8.0.0" - "semver" "^6.0.0" - "split" "^1.0.0" - "through2" "^4.0.0" - -"conventional-commits-filter@^2.0.0", "conventional-commits-filter@^2.0.7": - "integrity" "sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==" - "resolved" "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz" - "version" "2.0.7" - dependencies: - "lodash.ismatch" "^4.4.0" - "modify-values" "^1.0.0" - -"conventional-commits-parser@^3.2.3": - "integrity" "sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==" - "resolved" "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz" - "version" "3.2.4" - dependencies: - "is-text-path" "^1.0.1" - "JSONStream" "^1.0.4" - "lodash" "^4.17.15" - "meow" "^8.0.0" - "split2" "^3.0.0" - "through2" "^4.0.0" - -"copy-anything@^2.0.1": - "integrity" "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==" - "resolved" "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz" - "version" "2.0.6" - dependencies: - "is-what" "^3.14.1" - -"core-util-is@~1.0.0": - "integrity" "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - "resolved" "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz" - "version" "1.0.3" - -"cosmiconfig@^7.0.0": - "integrity" "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==" - "resolved" "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz" - "version" "7.0.1" - dependencies: - "@types/parse-json" "^4.0.0" - "import-fresh" "^3.2.1" - "parse-json" "^5.0.0" - "path-type" "^4.0.0" - "yaml" "^1.10.0" - -"cross-spawn@^7.0.2", "cross-spawn@^7.0.3": - "integrity" "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" - "resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" - "version" "7.0.3" - dependencies: - "path-key" "^3.1.0" - "shebang-command" "^2.0.0" - "which" "^2.0.1" - -"crypto-random-string@^2.0.0": - "integrity" "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" - "resolved" "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz" - "version" "2.0.0" - -"cssesc@^3.0.0": - "resolved" "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" - "version" "3.0.0" - -"cubic2quad@^1.2.1": - "integrity" "sha512-wT5Y7mO8abrV16gnssKdmIhIbA9wSkeMzhh27jAguKrV82i24wER0vL5TGhUJ9dbJNDcigoRZ0IAHFEEEI4THQ==" - "resolved" "https://registry.npmjs.org/cubic2quad/-/cubic2quad-1.2.1.tgz" - "version" "1.2.1" - -"d@^1.0.1", "d@1": - "integrity" "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==" - "resolved" "https://registry.npmjs.org/d/-/d-1.0.1.tgz" - "version" "1.0.1" - dependencies: - "es5-ext" "^0.10.50" - "type" "^1.0.1" - -"dateformat@^3.0.0": - "integrity" "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==" - "resolved" "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz" - "version" "3.0.3" - -"debug@^2.6.9": - "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" - "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" - "version" "2.6.9" - dependencies: - "ms" "2.0.0" - -"debug@^3.2.6": - "integrity" "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" - "resolved" "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" - "version" "3.2.7" - dependencies: - "ms" "^2.1.1" - -"debug@^3.2.7": - "integrity" "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" - "resolved" "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" - "version" "3.2.7" - dependencies: - "ms" "^2.1.1" - -"debug@^4.0.0", "debug@^4.0.1", "debug@^4.1.0", "debug@^4.1.1", "debug@^4.3.1", "debug@4": - "integrity" "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==" - "resolved" "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz" - "version" "4.3.3" - dependencies: - "ms" "2.1.2" - -"debug@^4.3.3": - "resolved" "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" - "version" "4.3.4" - dependencies: - "ms" "2.1.2" - -"debuglog@^1.0.1": - "resolved" "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz" - "version" "1.0.1" - -"decamelize-keys@^1.1.0": - "integrity" "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=" - "resolved" "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz" - "version" "1.1.0" - dependencies: - "decamelize" "^1.1.0" - "map-obj" "^1.0.0" - -"decamelize@^1.1.0": - "integrity" "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" - "resolved" "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" - "version" "1.2.0" - -"deep-extend@^0.6.0": - "integrity" "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" - "resolved" "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz" - "version" "0.6.0" - -"deep-is@^0.1.3": - "integrity" "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" - "resolved" "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz" - "version" "0.1.4" - -"defaults@^1.0.3": - "version" "1.0.3" - dependencies: - "clone" "^1.0.2" - -"define-properties@^1.1.3": - "integrity" "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==" - "resolved" "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz" - "version" "1.1.3" - dependencies: - "object-keys" "^1.0.12" - -"del@^6.0.0": - "integrity" "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==" - "resolved" "https://registry.npmjs.org/del/-/del-6.0.0.tgz" - "version" "6.0.0" - dependencies: - "globby" "^11.0.1" - "graceful-fs" "^4.2.4" - "is-glob" "^4.0.1" - "is-path-cwd" "^2.2.0" - "is-path-inside" "^3.0.2" - "p-map" "^4.0.0" - "rimraf" "^3.0.2" - "slash" "^3.0.0" - -"delegates@^1.0.0": - "integrity" "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" - "resolved" "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz" - "version" "1.0.0" - -"depd@^1.1.2": - "integrity" "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" - "resolved" "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz" - "version" "1.1.2" - -"deprecation@^2.0.0", "deprecation@^2.3.1": - "integrity" "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" - "resolved" "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz" - "version" "2.3.1" - -"dezalgo@^1.0.0": - "resolved" "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.4.tgz" - "version" "1.0.4" - dependencies: - "asap" "^2.0.0" - "wrappy" "1" - -"diff@^5.1.0": - "resolved" "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz" - "version" "5.1.0" - -"dir-glob@^3.0.0", "dir-glob@^3.0.1": - "integrity" "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" - "resolved" "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" - "version" "3.0.1" - dependencies: - "path-type" "^4.0.0" - -"doctrine@^2.1.0": - "integrity" "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" - "resolved" "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz" - "version" "2.1.0" - dependencies: - "esutils" "^2.0.2" - -"doctrine@^3.0.0": - "integrity" "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" - "resolved" "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "esutils" "^2.0.2" - -"dot-case@^3.0.4": - "integrity" "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==" - "resolved" "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz" - "version" "3.0.4" - dependencies: - "no-case" "^3.0.4" - "tslib" "^2.0.3" - -"dot-prop@^5.1.0": - "integrity" "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==" - "resolved" "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz" - "version" "5.3.0" - dependencies: - "is-obj" "^2.0.0" - -"dotenv@^16.0.0": - "integrity" "sha512-qD9WU0MPM4SWLPJy/r2Be+2WgQj8plChsyrCNQzW/0WjvcJQiKQJ9mH3ZgB3fxbUUxgc/11ZJ0Fi5KiimWGz2Q==" - "resolved" "https://registry.npmjs.org/dotenv/-/dotenv-16.0.0.tgz" - "version" "16.0.0" - -"duplexer2@~0.1.0": - "integrity" "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=" - "resolved" "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz" - "version" "0.1.4" - dependencies: - "readable-stream" "^2.0.2" - -"emoji-regex@^8.0.0": - "integrity" "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - "resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" - "version" "8.0.0" - -"encoding@^0.1.0", "encoding@^0.1.12": - "integrity" "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==" - "resolved" "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz" - "version" "0.1.13" - dependencies: - "iconv-lite" "^0.6.2" - -"encoding@^0.1.13": - "resolved" "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz" - "version" "0.1.13" - dependencies: - "iconv-lite" "^0.6.2" - -"enquirer@^2.3.5": - "integrity" "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" - "resolved" "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz" - "version" "2.3.6" - dependencies: - "ansi-colors" "^4.1.1" - -"env-ci@^5.0.0": - "integrity" "sha512-o0JdWIbOLP+WJKIUt36hz1ImQQFuN92nhsfTkHHap+J8CiI8WgGpH/a9jEGHh4/TU5BUUGjlnKXNoDb57+ne+A==" - "resolved" "https://registry.npmjs.org/env-ci/-/env-ci-5.5.0.tgz" - "version" "5.5.0" - dependencies: - "execa" "^5.0.0" - "fromentries" "^1.3.2" - "java-properties" "^1.0.0" - -"env-paths@^2.2.0": - "integrity" "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" - "resolved" "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz" - "version" "2.2.1" - -"err-code@^2.0.2": - "integrity" "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" - "resolved" "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz" - "version" "2.0.3" - -"errno@^0.1.1": - "integrity" "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==" - "resolved" "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz" - "version" "0.1.8" - dependencies: - "prr" "~1.0.1" - -"error-ex@^1.3.1": - "integrity" "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" - "resolved" "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" - "version" "1.3.2" - dependencies: - "is-arrayish" "^0.2.1" - -"es-abstract@^1.19.0", "es-abstract@^1.19.1": - "integrity" "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==" - "resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz" - "version" "1.19.1" - dependencies: - "call-bind" "^1.0.2" - "es-to-primitive" "^1.2.1" - "function-bind" "^1.1.1" - "get-intrinsic" "^1.1.1" - "get-symbol-description" "^1.0.0" - "has" "^1.0.3" - "has-symbols" "^1.0.2" - "internal-slot" "^1.0.3" - "is-callable" "^1.2.4" - "is-negative-zero" "^2.0.1" - "is-regex" "^1.1.4" - "is-shared-array-buffer" "^1.0.1" - "is-string" "^1.0.7" - "is-weakref" "^1.0.1" - "object-inspect" "^1.11.0" - "object-keys" "^1.1.1" - "object.assign" "^4.1.2" - "string.prototype.trimend" "^1.0.4" - "string.prototype.trimstart" "^1.0.4" - "unbox-primitive" "^1.0.1" - -"es-to-primitive@^1.2.1": - "integrity" "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" - "resolved" "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz" - "version" "1.2.1" - dependencies: - "is-callable" "^1.1.4" - "is-date-object" "^1.0.1" - "is-symbol" "^1.0.2" - -"es5-ext@^0.10.35", "es5-ext@^0.10.46", "es5-ext@^0.10.50", "es5-ext@^0.10.53", "es5-ext@~0.10.14", "es5-ext@~0.10.2", "es5-ext@~0.10.46": - "integrity" "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==" - "resolved" "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz" - "version" "0.10.53" - dependencies: - "es6-iterator" "~2.0.3" - "es6-symbol" "~3.1.3" - "next-tick" "~1.0.0" - -"es6-iterator@^2.0.3", "es6-iterator@~2.0.3": - "integrity" "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=" - "resolved" "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz" - "version" "2.0.3" - dependencies: - "d" "1" - "es5-ext" "^0.10.35" - "es6-symbol" "^3.1.1" - -"es6-symbol@^3.1.1", "es6-symbol@~3.1.3": - "integrity" "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==" - "resolved" "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz" - "version" "3.1.3" - dependencies: - "d" "^1.0.1" - "ext" "^1.1.2" - -"es6-weak-map@^2.0.3": - "integrity" "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==" - "resolved" "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz" - "version" "2.0.3" - dependencies: - "d" "1" - "es5-ext" "^0.10.46" - "es6-iterator" "^2.0.3" - "es6-symbol" "^3.1.1" - -"escalade@^3.1.1": - "integrity" "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" - "resolved" "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" - "version" "3.1.1" - -"escape-string-regexp@^1.0.5": - "integrity" "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" - "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" - "version" "1.0.5" - -"eslint-config-standard@^16.0.2": - "integrity" "sha512-x4fmJL5hGqNJKGHSjnLdgA6U6h1YW/G2dW9fA+cyVur4SK6lyue8+UgNKWlZtUDTXvgKDD/Oa3GQjmB5kjtVvg==" - "resolved" "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-16.0.3.tgz" - "version" "16.0.3" - -"eslint-import-resolver-node@^0.3.6": - "integrity" "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==" - "resolved" "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz" - "version" "0.3.6" - dependencies: - "debug" "^3.2.7" - "resolve" "^1.20.0" - -"eslint-module-utils@^2.7.2": - "integrity" "sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==" - "resolved" "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz" - "version" "2.7.3" - dependencies: - "debug" "^3.2.7" - "find-up" "^2.1.0" - -"eslint-plugin-es@^3.0.0": - "integrity" "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==" - "resolved" "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz" - "version" "3.0.1" - dependencies: - "eslint-utils" "^2.0.0" - "regexpp" "^3.0.0" - -"eslint-plugin-header@^3.1.1": - "integrity" "sha512-9vlKxuJ4qf793CmeeSrZUvVClw6amtpghq3CuWcB5cUNnWHQhgcqy5eF8oVKFk1G3Y/CbchGfEaw3wiIJaNmVg==" - "resolved" "https://registry.npmjs.org/eslint-plugin-header/-/eslint-plugin-header-3.1.1.tgz" - "version" "3.1.1" - -"eslint-plugin-import@^2.22.1": - "integrity" "sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==" - "resolved" "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.25.4.tgz" - "version" "2.25.4" - dependencies: - "array-includes" "^3.1.4" - "array.prototype.flat" "^1.2.5" - "debug" "^2.6.9" - "doctrine" "^2.1.0" - "eslint-import-resolver-node" "^0.3.6" - "eslint-module-utils" "^2.7.2" - "has" "^1.0.3" - "is-core-module" "^2.8.0" - "is-glob" "^4.0.3" - "minimatch" "^3.0.4" - "object.values" "^1.1.5" - "resolve" "^1.20.0" - "tsconfig-paths" "^3.12.0" - -"eslint-plugin-node@^11.1.0": - "integrity" "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==" - "resolved" "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz" - "version" "11.1.0" - dependencies: - "eslint-plugin-es" "^3.0.0" - "eslint-utils" "^2.0.0" - "ignore" "^5.1.1" - "minimatch" "^3.0.4" - "resolve" "^1.10.1" - "semver" "^6.1.0" - -"eslint-plugin-promise@^4.2.1 || ^5.0.0", "eslint-plugin-promise@^4.3.1": - "integrity" "sha512-bY2sGqyptzFBDLh/GMbAxfdJC+b0f23ME63FOE4+Jao0oZ3E1LEwFtWJX/1pGMJLiTtrSSern2CRM/g+dfc0eQ==" - "resolved" "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-4.3.1.tgz" - "version" "4.3.1" - -"eslint-scope@^5.1.1": - "integrity" "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" - "resolved" "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz" - "version" "5.1.1" - dependencies: - "esrecurse" "^4.3.0" - "estraverse" "^4.1.1" - -"eslint-utils@^2.0.0", "eslint-utils@^2.1.0": - "integrity" "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==" - "resolved" "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz" - "version" "2.1.0" - dependencies: - "eslint-visitor-keys" "^1.1.0" - -"eslint-visitor-keys@^1.1.0": - "integrity" "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" - "resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz" - "version" "1.3.0" - -"eslint-visitor-keys@^1.3.0": - "integrity" "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" - "resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz" - "version" "1.3.0" - -"eslint-visitor-keys@^2.0.0": - "integrity" "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==" - "resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz" - "version" "2.1.0" - -"eslint@^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8", "eslint@^7.12.1", "eslint@^7.25.0", "eslint@>=4.19.1", "eslint@>=5.16.0", "eslint@>=7.7.0": - "integrity" "sha512-TVpSovpvCNpLURIScDRB6g5CYu/ZFq9GfX2hLNIV4dSBKxIWojeDODvYl3t0k0VtMxYeR8OXPCFE5+oHMlGfhw==" - "resolved" "https://registry.npmjs.org/eslint/-/eslint-7.25.0.tgz" - "version" "7.25.0" - dependencies: - "@babel/code-frame" "7.12.11" - "@eslint/eslintrc" "^0.4.0" - "ajv" "^6.10.0" - "chalk" "^4.0.0" - "cross-spawn" "^7.0.2" - "debug" "^4.0.1" - "doctrine" "^3.0.0" - "enquirer" "^2.3.5" - "eslint-scope" "^5.1.1" - "eslint-utils" "^2.1.0" - "eslint-visitor-keys" "^2.0.0" - "espree" "^7.3.1" - "esquery" "^1.4.0" - "esutils" "^2.0.2" - "file-entry-cache" "^6.0.1" - "functional-red-black-tree" "^1.0.1" - "glob-parent" "^5.0.0" - "globals" "^13.6.0" - "ignore" "^4.0.6" - "import-fresh" "^3.0.0" - "imurmurhash" "^0.1.4" - "is-glob" "^4.0.0" - "js-yaml" "^3.13.1" - "json-stable-stringify-without-jsonify" "^1.0.1" - "levn" "^0.4.1" - "lodash" "^4.17.21" - "minimatch" "^3.0.4" - "natural-compare" "^1.4.0" - "optionator" "^0.9.1" - "progress" "^2.0.0" - "regexpp" "^3.1.0" - "semver" "^7.2.1" - "strip-ansi" "^6.0.0" - "strip-json-comments" "^3.1.0" - "table" "^6.0.4" - "text-table" "^0.2.0" - "v8-compile-cache" "^2.0.3" - -"espree@^7.3.0", "espree@^7.3.1": - "integrity" "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==" - "resolved" "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz" - "version" "7.3.1" - dependencies: - "acorn" "^7.4.0" - "acorn-jsx" "^5.3.1" - "eslint-visitor-keys" "^1.3.0" - -"esprima@^4.0.0", "esprima@~4.0.0": - "integrity" "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - "resolved" "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" - "version" "4.0.1" - -"esquery@^1.4.0": - "integrity" "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==" - "resolved" "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz" - "version" "1.4.0" - dependencies: - "estraverse" "^5.1.0" - -"esrecurse@^4.3.0": - "integrity" "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" - "resolved" "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" - "version" "4.3.0" - dependencies: - "estraverse" "^5.2.0" - -"estraverse@^4.1.1": - "integrity" "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" - "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz" - "version" "4.3.0" - -"estraverse@^5.1.0": - "integrity" "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" - "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" - "version" "5.3.0" - -"estraverse@^5.2.0": - "integrity" "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" - "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" - "version" "5.3.0" - -"esutils@^2.0.2": - "integrity" "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - "resolved" "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" - "version" "2.0.3" - -"event-emitter@^0.3.5": - "integrity" "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=" - "resolved" "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz" - "version" "0.3.5" - dependencies: - "d" "1" - "es5-ext" "~0.10.14" - -"execa@^5.0.0": - "integrity" "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" - "resolved" "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz" - "version" "5.1.1" - dependencies: - "cross-spawn" "^7.0.3" - "get-stream" "^6.0.0" - "human-signals" "^2.1.0" - "is-stream" "^2.0.0" - "merge-stream" "^2.0.0" - "npm-run-path" "^4.0.1" - "onetime" "^5.1.2" - "signal-exit" "^3.0.3" - "strip-final-newline" "^2.0.0" - -"ext@^1.1.2": - "integrity" "sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==" - "resolved" "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz" - "version" "1.6.0" - dependencies: - "type" "^2.5.0" - -"fantasticon@^1.2.3": - "integrity" "sha512-VoPXI8+wbLq4qooK2LAFRcqKtOCR20+InF/Io/9I1kLp3IT+LwqJgeFijFvp9a3HRZptfCAxNvazoVHn4kihzQ==" - "resolved" "https://registry.npmjs.org/fantasticon/-/fantasticon-1.2.3.tgz" - "version" "1.2.3" - dependencies: - "change-case" "^4.1.2" - "cli-color" "^2.0.0" - "commander" "^7.2.0" - "glob" "^7.2.0" - "handlebars" "^4.7.7" - "slugify" "^1.6.0" - "svg2ttf" "^6.0.3" - "svgicons2svgfont" "^10.0.3" - "ttf2eot" "^2.0.0" - "ttf2woff" "^3.0.0" - "ttf2woff2" "^4.0.4" - -"fast-deep-equal@^3.1.1": - "integrity" "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - "resolved" "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" - "version" "3.1.3" - -"fast-glob@^3.2.9": - "integrity" "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==" - "resolved" "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz" - "version" "3.2.11" + "@esbuild/aix-ppc64" "0.23.1" + "@esbuild/android-arm" "0.23.1" + "@esbuild/android-arm64" "0.23.1" + "@esbuild/android-x64" "0.23.1" + "@esbuild/darwin-arm64" "0.23.1" + "@esbuild/darwin-x64" "0.23.1" + "@esbuild/freebsd-arm64" "0.23.1" + "@esbuild/freebsd-x64" "0.23.1" + "@esbuild/linux-arm" "0.23.1" + "@esbuild/linux-arm64" "0.23.1" + "@esbuild/linux-ia32" "0.23.1" + "@esbuild/linux-loong64" "0.23.1" + "@esbuild/linux-mips64el" "0.23.1" + "@esbuild/linux-ppc64" "0.23.1" + "@esbuild/linux-riscv64" "0.23.1" + "@esbuild/linux-s390x" "0.23.1" + "@esbuild/linux-x64" "0.23.1" + "@esbuild/netbsd-x64" "0.23.1" + "@esbuild/openbsd-arm64" "0.23.1" + "@esbuild/openbsd-x64" "0.23.1" + "@esbuild/sunos-x64" "0.23.1" + "@esbuild/win32-arm64" "0.23.1" + "@esbuild/win32-ia32" "0.23.1" + "@esbuild/win32-x64" "0.23.1" + +escalade@^3.1.1: + version "3.2.0" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" + integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== + +escape-string-regexp@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz#4683126b500b61762f2dbebace1806e8be31b1c8" + integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw== + +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +eslint-compat-utils@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/eslint-compat-utils/-/eslint-compat-utils-0.5.1.tgz#7fc92b776d185a70c4070d03fd26fde3d59652e4" + integrity sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q== + dependencies: + semver "^7.5.4" + +eslint-config-standard@^17.1.0: + version "17.1.0" + resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-17.1.0.tgz#40ffb8595d47a6b242e07cbfd49dc211ed128975" + integrity sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q== + +eslint-import-resolver-node@^0.3.9: + version "0.3.9" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz#d4eaac52b8a2e7c3cd1903eb00f7e053356118ac" + integrity sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g== + dependencies: + debug "^3.2.7" + is-core-module "^2.13.0" + resolve "^1.22.4" + +eslint-module-utils@^2.12.0: + version "2.12.0" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz#fe4cfb948d61f49203d7b08871982b65b9af0b0b" + integrity sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg== + dependencies: + debug "^3.2.7" + +eslint-plugin-es-x@^7.8.0: + version "7.8.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-es-x/-/eslint-plugin-es-x-7.8.0.tgz#a207aa08da37a7923f2a9599e6d3eb73f3f92b74" + integrity sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ== + dependencies: + "@eslint-community/eslint-utils" "^4.1.2" + "@eslint-community/regexpp" "^4.11.0" + eslint-compat-utils "^0.5.1" + +eslint-plugin-header@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-header/-/eslint-plugin-header-3.1.1.tgz#6ce512432d57675265fac47292b50d1eff11acd6" + integrity sha512-9vlKxuJ4qf793CmeeSrZUvVClw6amtpghq3CuWcB5cUNnWHQhgcqy5eF8oVKFk1G3Y/CbchGfEaw3wiIJaNmVg== + +eslint-plugin-import@^2.31.0: + version "2.31.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.31.0.tgz#310ce7e720ca1d9c0bb3f69adfd1c6bdd7d9e0e7" + integrity sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A== + dependencies: + "@rtsao/scc" "^1.1.0" + array-includes "^3.1.8" + array.prototype.findlastindex "^1.2.5" + array.prototype.flat "^1.3.2" + array.prototype.flatmap "^1.3.2" + debug "^3.2.7" + doctrine "^2.1.0" + eslint-import-resolver-node "^0.3.9" + eslint-module-utils "^2.12.0" + hasown "^2.0.2" + is-core-module "^2.15.1" + is-glob "^4.0.3" + minimatch "^3.1.2" + object.fromentries "^2.0.8" + object.groupby "^1.0.3" + object.values "^1.2.0" + semver "^6.3.1" + string.prototype.trimend "^1.0.8" + tsconfig-paths "^3.15.0" + +eslint-plugin-n@^17.14.0: + version "17.14.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-n/-/eslint-plugin-n-17.14.0.tgz#162a7c17a7ce7e3834af537bca68ab8b6aa26edc" + integrity sha512-maxPLMEA0rPmRpoOlxEclKng4UpDe+N5BJS4t24I3UKnN109Qcivnfs37KMy84G0af3bxjog5lKctP5ObsvcTA== + dependencies: + "@eslint-community/eslint-utils" "^4.4.1" + enhanced-resolve "^5.17.1" + eslint-plugin-es-x "^7.8.0" + get-tsconfig "^4.8.1" + globals "^15.11.0" + ignore "^5.3.2" + minimatch "^9.0.5" + semver "^7.6.3" + +eslint-plugin-promise@^7.2.1: + version "7.2.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-7.2.1.tgz#a0652195700aea40b926dc3c74b38e373377bfb0" + integrity sha512-SWKjd+EuvWkYaS+uN2csvj0KoP43YTu7+phKQ5v+xw6+A0gutVX2yqCeCkC3uLCJFiPfR2dD8Es5L7yUsmvEaA== + dependencies: + "@eslint-community/eslint-utils" "^4.4.0" + +eslint-scope@^8.2.0: + version "8.2.0" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-8.2.0.tgz#377aa6f1cb5dc7592cfd0b7f892fd0cf352ce442" + integrity sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A== + dependencies: + esrecurse "^4.3.0" + estraverse "^5.2.0" + +eslint-visitor-keys@^3.4.3: + version "3.4.3" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" + integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== + +eslint-visitor-keys@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz#687bacb2af884fcdda8a6e7d65c606f46a14cd45" + integrity sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw== + +eslint@^9.15.0: + version "9.16.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.16.0.tgz#66832e66258922ac0a626f803a9273e37747f2a6" + integrity sha512-whp8mSQI4C8VXd+fLgSM0lh3UlmcFtVwUQjyKCFfsp+2ItAIYhlq/hqGahGqHE6cv9unM41VlqKk2VtKYR2TaA== + dependencies: + "@eslint-community/eslint-utils" "^4.2.0" + "@eslint-community/regexpp" "^4.12.1" + "@eslint/config-array" "^0.19.0" + "@eslint/core" "^0.9.0" + "@eslint/eslintrc" "^3.2.0" + "@eslint/js" "9.16.0" + "@eslint/plugin-kit" "^0.2.3" + "@humanfs/node" "^0.16.6" + "@humanwhocodes/module-importer" "^1.0.1" + "@humanwhocodes/retry" "^0.4.1" + "@types/estree" "^1.0.6" + "@types/json-schema" "^7.0.15" + ajv "^6.12.4" + chalk "^4.0.0" + cross-spawn "^7.0.5" + debug "^4.3.2" + escape-string-regexp "^4.0.0" + eslint-scope "^8.2.0" + eslint-visitor-keys "^4.2.0" + espree "^10.3.0" + esquery "^1.5.0" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^8.0.0" + find-up "^5.0.0" + glob-parent "^6.0.2" + ignore "^5.2.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + json-stable-stringify-without-jsonify "^1.0.1" + lodash.merge "^4.6.2" + minimatch "^3.1.2" + natural-compare "^1.4.0" + optionator "^0.9.3" + +esniff@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/esniff/-/esniff-2.0.1.tgz#a4d4b43a5c71c7ec51c51098c1d8a29081f9b308" + integrity sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg== + dependencies: + d "^1.0.1" + es5-ext "^0.10.62" + event-emitter "^0.3.5" + type "^2.7.2" + +espree@^10.0.1, espree@^10.3.0: + version "10.3.0" + resolved "https://registry.yarnpkg.com/espree/-/espree-10.3.0.tgz#29267cf5b0cb98735b65e64ba07e0ed49d1eed8a" + integrity sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg== + dependencies: + acorn "^8.14.0" + acorn-jsx "^5.3.2" + eslint-visitor-keys "^4.2.0" + +esquery@^1.5.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz#91419234f804d852a82dceec3e16cdc22cf9dae7" + integrity sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^5.1.0, estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +event-emitter@^0.3.5: + version "0.3.5" + resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" + integrity sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA== + dependencies: + d "1" + es5-ext "~0.10.14" + +events@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" + integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== + +execa@^5.0.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.0" + human-signals "^2.1.0" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.1" + onetime "^5.1.2" + signal-exit "^3.0.3" + strip-final-newline "^2.0.0" + +execa@^9.0.0: + version "9.5.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-9.5.1.tgz#ab9b68073245e1111bba359962a34fcdb28deef2" + integrity sha512-QY5PPtSonnGwhhHDNI7+3RvY285c7iuJFFB+lU+oEzMY/gEGJ808owqJsrr8Otd1E/x07po1LkUBmdAc5duPAg== + dependencies: + "@sindresorhus/merge-streams" "^4.0.0" + cross-spawn "^7.0.3" + figures "^6.1.0" + get-stream "^9.0.0" + human-signals "^8.0.0" + is-plain-obj "^4.1.0" + is-stream "^4.0.1" + npm-run-path "^6.0.0" + pretty-ms "^9.0.0" + signal-exit "^4.1.0" + strip-final-newline "^4.0.0" + yoctocolors "^2.0.0" + +exponential-backoff@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.1.tgz#64ac7526fe341ab18a39016cd22c787d01e00bf6" + integrity sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw== + +expr-eval-fork@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/expr-eval-fork/-/expr-eval-fork-2.0.2.tgz#97136ac0a8178522055500f55d3d3c5ad54f400d" + integrity sha512-NaAnObPVwHEYrODd7Jzp3zzT9pgTAlUUL4MZiZu9XAYPDpx89cPsfyEImFb2XY0vQNbrqg2CG7CLiI+Rs3seaQ== + +ext@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/ext/-/ext-1.7.0.tgz#0ea4383c0103d60e70be99e9a7f11027a33c4f5f" + integrity sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw== + dependencies: + type "^2.7.2" + +fantasticon@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/fantasticon/-/fantasticon-3.0.0.tgz#8a875b1c76f5a8467b51134611c1b526a0f134d3" + integrity sha512-PylulixZA8I0SeiUKtuyOhwrz/ojZTSA1KXddipvEyQXCVrpPMTnSXzaE9nXXK7nCjJWFkqoBAQ1aBdaxMltrg== + dependencies: + case "^1.6.3" + cli-color "^2.0.4" + commander "^12.0.0" + glob "^10.3.12" + handlebars "^4.7.8" + slugify "^1.6.6" + svg2ttf "^6.0.3" + svgicons2svgfont "^12.0.0" + ttf2eot "^3.1.0" + ttf2woff "^3.0.0" + ttf2woff2 "^5.0.0" + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-glob@^3.2.9, fast-glob@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== dependencies: "@nodelib/fs.stat" "^2.0.2" "@nodelib/fs.walk" "^1.2.3" - "glob-parent" "^5.1.2" - "merge2" "^1.3.0" - "micromatch" "^4.0.4" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" -"fast-json-stable-stringify@^2.0.0": - "integrity" "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - "resolved" "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" - "version" "2.1.0" +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== -"fast-levenshtein@^2.0.6": - "integrity" "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" - "resolved" "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" - "version" "2.0.6" +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== -"fastest-levenshtein@^1.0.12": - "version" "1.0.12" +fast-uri@^3.0.1: + version "3.0.3" + resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.3.tgz#892a1c91802d5d7860de728f18608a0573142241" + integrity sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw== -"fastq@^1.6.0": - "integrity" "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==" - "resolved" "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz" - "version" "1.13.0" - dependencies: - "reusify" "^1.0.4" +fastest-levenshtein@^1.0.16: + version "1.0.16" + resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" + integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== + +fastq@^1.6.0: + version "1.17.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" + integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== + dependencies: + reusify "^1.0.4" -"figma-js@^1.14.0": - "integrity" "sha512-XqUmDmGj8tJkjNEuSoKWke0dzbRedya0jc0Ob3lr/g0pLeQI5TtMmz5zpsFLw4KRRtbDD5V/J2MRJhm9nvRS+A==" - "resolved" "https://registry.npmjs.org/figma-js/-/figma-js-1.14.0.tgz" - "version" "1.14.0" - dependencies: - "axios" "^0.21.1" +fetch-blob@^3.1.2, fetch-blob@^3.1.4: + version "3.2.0" + resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" + integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== + dependencies: + node-domexception "^1.0.0" + web-streams-polyfill "^3.0.3" -"figures@^2.0.0": - "integrity" "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=" - "resolved" "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "escape-string-regexp" "^1.0.5" +figma-js@^1.16.0: + version "1.16.0" + resolved "https://registry.yarnpkg.com/figma-js/-/figma-js-1.16.0.tgz#84bfa6bf8dad25ba106b8b4ffa0d595bd6277e11" + integrity sha512-cImQT9DAJp1J0xr6FMUAswXKEnjwrDz4QKAgIBpUyydKAgDS/lm862stjweHp99uco5qLoNv+GbwQWBHyDvDQw== + dependencies: + axios "^0.21.1" -"figures@^3.0.0": - "integrity" "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" - "resolved" "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz" - "version" "3.2.0" +figures@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-6.1.0.tgz#935479f51865fa7479f6fa94fc6fc7ac14e62c4a" + integrity sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg== dependencies: - "escape-string-regexp" "^1.0.5" + is-unicode-supported "^2.0.0" + +file-entry-cache@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-8.0.0.tgz#7787bddcf1131bffb92636c69457bbc0edd6d81f" + integrity sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ== + dependencies: + flat-cache "^4.0.0" + +file-entry-cache@^9.1.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-9.1.0.tgz#2e66ad98ce93f49aed1b178c57b0b5741591e075" + integrity sha512-/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg== + dependencies: + flat-cache "^5.0.0" -"file-entry-cache@^6.0.1": - "integrity" "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" - "resolved" "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz" - "version" "6.0.1" - dependencies: - "flat-cache" "^3.0.4" +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + +fill-range@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" + integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== + dependencies: + to-regex-range "^5.0.1" -"file-uri-to-path@1.0.0": - "integrity" "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==" - "resolved" "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz" - "version" "1.0.0" - -"fill-range@^7.0.1": - "integrity" "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" - "resolved" "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" - "version" "7.0.1" +find-up-simple@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/find-up-simple/-/find-up-simple-1.0.0.tgz#21d035fde9fdbd56c8f4d2f63f32fd93a1cfc368" + integrity sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw== + +find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +find-yarn-workspace-root@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz#f47fb8d239c900eb78179aa81b66673eac88f7bd" + integrity sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ== + dependencies: + micromatch "^4.0.2" + +flat-cache@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-4.0.1.tgz#0ece39fcb14ee012f4b0410bd33dd9c1f011127c" + integrity sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw== dependencies: - "to-regex-range" "^5.0.1" + flatted "^3.2.9" + keyv "^4.5.4" -"find-up@^2.0.0": - "integrity" "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=" - "resolved" "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz" - "version" "2.1.0" +flat-cache@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-5.0.0.tgz#26c4da7b0f288b408bb2b506b2cb66c240ddf062" + integrity sha512-JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ== dependencies: - "locate-path" "^2.0.0" - -"find-up@^2.1.0": - "integrity" "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=" - "resolved" "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz" - "version" "2.1.0" - dependencies: - "locate-path" "^2.0.0" - -"find-up@^4.1.0": - "integrity" "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" - "resolved" "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" - "version" "4.1.0" - dependencies: - "locate-path" "^5.0.0" - "path-exists" "^4.0.0" - -"find-versions@^4.0.0": - "integrity" "sha512-wgpWy002tA+wgmO27buH/9KzyEOQnKsG/R0yrcjPT9BOFm0zRBVQbZ95nRGXWMywS8YR5knRbpohio0bcJABxQ==" - "resolved" "https://registry.npmjs.org/find-versions/-/find-versions-4.0.0.tgz" - "version" "4.0.0" - dependencies: - "semver-regex" "^3.1.2" - -"flat-cache@^3.0.4": - "integrity" "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==" - "resolved" "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz" - "version" "3.0.4" - dependencies: - "flatted" "^3.1.0" - "rimraf" "^3.0.2" - -"flatted@^3.1.0": - "integrity" "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==" - "resolved" "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz" - "version" "3.2.5" - -"follow-redirects@^1.14.0": - "integrity" "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==" - "resolved" "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz" - "version" "1.14.9" - -"from2@^2.3.0": - "integrity" "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=" - "resolved" "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz" - "version" "2.3.0" - dependencies: - "inherits" "^2.0.1" - "readable-stream" "^2.0.0" - -"fromentries@^1.3.2": - "integrity" "sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==" - "resolved" "https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz" - "version" "1.3.2" - -"fs-extra@^10.0.0": - "integrity" "sha512-NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag==" - "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.1.tgz" - "version" "10.0.1" - dependencies: - "graceful-fs" "^4.2.0" - "jsonfile" "^6.0.1" - "universalify" "^2.0.0" - -"fs-extra@^8.1.0": - "integrity" "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==" - "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz" - "version" "8.1.0" - dependencies: - "graceful-fs" "^4.2.0" - "jsonfile" "^4.0.0" - "universalify" "^0.1.0" - -"fs-extra@^9.0.0", "fs-extra@^9.1.0": - "integrity" "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" - "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz" - "version" "9.1.0" - dependencies: - "at-least-node" "^1.0.0" - "graceful-fs" "^4.2.0" - "jsonfile" "^6.0.1" - "universalify" "^2.0.0" - -"fs-minipass@^2.0.0", "fs-minipass@^2.1.0": - "integrity" "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==" - "resolved" "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz" - "version" "2.1.0" - dependencies: - "minipass" "^3.0.0" - -"fs.realpath@^1.0.0": - "integrity" "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" - "resolved" "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" - "version" "1.0.0" - -"fsevents@~2.3.2": - "integrity" "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==" - "resolved" "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" - "version" "2.3.2" - -"function-bind@^1.1.1": - "integrity" "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - "resolved" "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" - "version" "1.1.1" - -"functional-red-black-tree@^1.0.1": - "integrity" "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" - "resolved" "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz" - "version" "1.0.1" - -"gauge@^4.0.0": - "integrity" "sha512-aSPRm2CvA9R8QyU5eXMFPd+cYkyxLsXHd2l5/FOH2V/eml//M04G6KZOmTap07O1PvEwNcl2NndyLfK8g3QrKA==" - "resolved" "https://registry.npmjs.org/gauge/-/gauge-4.0.2.tgz" - "version" "4.0.2" - dependencies: - "ansi-regex" "^5.0.1" - "aproba" "^1.0.3 || ^2.0.0" - "color-support" "^1.1.3" - "console-control-strings" "^1.1.0" - "has-unicode" "^2.0.1" - "signal-exit" "^3.0.7" - "string-width" "^4.2.3" - "strip-ansi" "^6.0.1" - "wide-align" "^1.1.5" - -"gauge@^4.0.3": - "resolved" "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz" - "version" "4.0.4" - dependencies: - "aproba" "^1.0.3 || ^2.0.0" - "color-support" "^1.1.3" - "console-control-strings" "^1.1.0" - "has-unicode" "^2.0.1" - "signal-exit" "^3.0.7" - "string-width" "^4.2.3" - "strip-ansi" "^6.0.1" - "wide-align" "^1.1.5" - -"geometry-interfaces@^1.1.4": - "integrity" "sha512-qD6OdkT6NcES9l4Xx3auTpwraQruU7dARbQPVO71MKvkGYw5/z/oIiGymuFXrRaEQa5Y67EIojUpaLeGEa5hGA==" - "resolved" "https://registry.npmjs.org/geometry-interfaces/-/geometry-interfaces-1.1.4.tgz" - "version" "1.1.4" - -"get-caller-file@^2.0.5": - "integrity" "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" - "resolved" "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" - "version" "2.0.5" - -"get-intrinsic@^1.0.2", "get-intrinsic@^1.1.0", "get-intrinsic@^1.1.1": - "integrity" "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==" - "resolved" "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz" - "version" "1.1.1" - dependencies: - "function-bind" "^1.1.1" - "has" "^1.0.3" - "has-symbols" "^1.0.1" - -"get-stream@^6.0.0": - "integrity" "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" - "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz" - "version" "6.0.1" - -"get-symbol-description@^1.0.0": - "integrity" "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==" - "resolved" "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz" - "version" "1.0.0" - dependencies: - "call-bind" "^1.0.2" - "get-intrinsic" "^1.1.1" - -"git-log-parser@^1.2.0": - "integrity" "sha1-LmpMGxP8AAKCB7p5WnrDFme5/Uo=" - "resolved" "https://registry.npmjs.org/git-log-parser/-/git-log-parser-1.2.0.tgz" - "version" "1.2.0" - dependencies: - "argv-formatter" "~1.0.0" - "spawn-error-forwarder" "~1.0.0" - "split2" "~1.0.0" - "stream-combiner2" "~1.1.1" - "through2" "~2.0.0" - "traverse" "~0.6.6" - -"glob-parent@^5.0.0", "glob-parent@^5.1.2", "glob-parent@~5.1.2": - "integrity" "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" - "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" - "version" "5.1.2" - dependencies: - "is-glob" "^4.0.1" - -"glob@^7.1.3", "glob@^7.1.4", "glob@^7.1.6", "glob@^7.1.7", "glob@^7.2.0": - "integrity" "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==" - "resolved" "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz" - "version" "7.2.0" - dependencies: - "fs.realpath" "^1.0.0" - "inflight" "^1.0.4" - "inherits" "2" - "minimatch" "^3.0.4" - "once" "^1.3.0" - "path-is-absolute" "^1.0.0" - -"glob@^8.0.1": - "resolved" "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz" - "version" "8.0.3" - dependencies: - "fs.realpath" "^1.0.0" - "inflight" "^1.0.4" - "inherits" "2" - "minimatch" "^5.0.1" - "once" "^1.3.0" - -"globals@^13.6.0", "globals@^13.9.0": - "integrity" "sha512-317dFlgY2pdJZ9rspXDks7073GpDmXdfbM3vYYp0HAMKGDh1FfWPleI2ljVNLQX5M5lXcAslTcPTrOrMEFOjyw==" - "resolved" "https://registry.npmjs.org/globals/-/globals-13.12.1.tgz" - "version" "13.12.1" - dependencies: - "type-fest" "^0.20.2" - -"globby@^11.0.0", "globby@^11.0.1": - "integrity" "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" - "resolved" "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz" - "version" "11.1.0" - dependencies: - "array-union" "^2.1.0" - "dir-glob" "^3.0.1" - "fast-glob" "^3.2.9" - "ignore" "^5.2.0" - "merge2" "^1.4.1" - "slash" "^3.0.0" - -"graceful-fs@^4.1.2", "graceful-fs@^4.1.6", "graceful-fs@^4.2.0", "graceful-fs@^4.2.4", "graceful-fs@^4.2.6": - "integrity" "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==" - "resolved" "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz" - "version" "4.2.9" - -"graceful-fs@^4.2.10": - "resolved" "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz" - "version" "4.2.10" - -"handlebars@^4.7.7": - "integrity" "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==" - "resolved" "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz" - "version" "4.7.7" - dependencies: - "minimist" "^1.2.5" - "neo-async" "^2.6.0" - "source-map" "^0.6.1" - "wordwrap" "^1.0.0" + flatted "^3.3.1" + keyv "^4.5.4" + +flat@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" + integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== + +flatted@^3.2.9, flatted@^3.3.1: + version "3.3.2" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.2.tgz#adba1448a9841bec72b42c532ea23dbbedef1a27" + integrity sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA== + +follow-redirects@^1.14.0: + version "1.15.9" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.9.tgz#a604fa10e443bf98ca94228d9eebcc2e8a2c8ee1" + integrity sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +foreground-child@^3.1.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.0.tgz#0ac8644c06e431439f8561db8ecf29a7b5519c77" + integrity sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg== + dependencies: + cross-spawn "^7.0.0" + signal-exit "^4.0.1" + +form-data@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.1.tgz#ba1076daaaa5bfd7e99c1a6cb02aa0a5cff90d48" + integrity sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +formdata-polyfill@^4.0.10: + version "4.0.10" + resolved "https://registry.yarnpkg.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" + integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== + dependencies: + fetch-blob "^3.1.2" + +from2@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" + integrity sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g== + dependencies: + inherits "^2.0.1" + readable-stream "^2.0.0" + +fs-extra@^11.0.0, fs-extra@^11.2.0: + version "11.2.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.2.0.tgz#e70e17dfad64232287d01929399e0ea7c86b0e5b" + integrity sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-extra@^9.0.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" + integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== + dependencies: + at-least-node "^1.0.0" + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-minipass@^2.0.0, fs-minipass@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" + integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== + dependencies: + minipass "^3.0.0" + +fs-minipass@^3.0.0, fs-minipass@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz#79a85981c4dc120065e96f62086bf6f9dc26cc54" + integrity sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw== + dependencies: + minipass "^7.0.3" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.2, fsevents@~2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== + +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + +function.prototype.name@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd" + integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + functions-have-names "^1.2.3" + +functions-have-names@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +gauge@^4.0.3: + version "4.0.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-4.0.4.tgz#52ff0652f2bbf607a989793d53b751bef2328dce" + integrity sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg== + dependencies: + aproba "^1.0.3 || ^2.0.0" + color-support "^1.1.3" + console-control-strings "^1.1.0" + has-unicode "^2.0.1" + signal-exit "^3.0.7" + string-width "^4.2.3" + strip-ansi "^6.0.1" + wide-align "^1.1.5" + +get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" + integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + has-proto "^1.0.1" + has-symbols "^1.0.3" + hasown "^2.0.0" + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +get-stream@^7.0.0: + version "7.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-7.0.1.tgz#1664dfe7d1678540ea6a4da3ae7cd59bf4e4a91e" + integrity sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ== + +get-stream@^9.0.0: + version "9.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-9.0.1.tgz#95157d21df8eb90d1647102b63039b1df60ebd27" + integrity sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA== + dependencies: + "@sec-ant/readable-stream" "^0.4.1" + is-stream "^4.0.1" + +get-symbol-description@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.2.tgz#533744d5aa20aca4e079c8e5daf7fd44202821f5" + integrity sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg== + dependencies: + call-bind "^1.0.5" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + +get-tsconfig@^4.7.5, get-tsconfig@^4.8.1: + version "4.8.1" + resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.8.1.tgz#8995eb391ae6e1638d251118c7b56de7eb425471" + integrity sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg== + dependencies: + resolve-pkg-maps "^1.0.0" + +glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-parent@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +glob@^10.2.2, glob@^10.3.10, glob@^10.3.12, glob@^10.3.7, glob@^10.4.2, glob@^10.4.5: + version "10.4.5" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz#f4d9f0b90ffdbab09c9d77f5f29b4262517b0956" + integrity sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg== + dependencies: + foreground-child "^3.1.0" + jackspeak "^3.1.2" + minimatch "^9.0.4" + minipass "^7.1.2" + package-json-from-dist "^1.0.0" + path-scurry "^1.11.1" + +glob@^11.0.0: + version "11.0.0" + resolved "https://registry.yarnpkg.com/glob/-/glob-11.0.0.tgz#6031df0d7b65eaa1ccb9b29b5ced16cea658e77e" + integrity sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g== + dependencies: + foreground-child "^3.1.0" + jackspeak "^4.0.1" + minimatch "^10.0.0" + minipass "^7.1.2" + package-json-from-dist "^1.0.0" + path-scurry "^2.0.0" + +glob@^7.1.3, glob@^7.1.4: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^8.0.1, glob@^8.0.3, glob@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" + integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^5.0.1" + once "^1.3.0" + +global-modules@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" + integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== + dependencies: + global-prefix "^3.0.0" + +global-prefix@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" + integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== + dependencies: + ini "^1.3.5" + kind-of "^6.0.2" + which "^1.3.1" + +globals@^14.0.0: + version "14.0.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-14.0.0.tgz#898d7413c29babcf6bafe56fcadded858ada724e" + integrity sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ== + +globals@^15.11.0: + version "15.13.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-15.13.0.tgz#bbec719d69aafef188ecd67954aae76a696010fc" + integrity sha512-49TewVEz0UxZjr1WYYsWpPrhyC/B/pA8Bq0fUmet2n+eR7yn0IvNzNaoBwnK6mdkzcN+se7Ez9zUgULTz2QH4g== + +globalthis@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz#7430ed3a975d97bfb59bcce41f5cabbafa651236" + integrity sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ== + dependencies: + define-properties "^1.2.1" + gopd "^1.0.1" + +globby@^11.1.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.2.9" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^3.0.0" + +globby@^14.0.0: + version "14.0.2" + resolved "https://registry.yarnpkg.com/globby/-/globby-14.0.2.tgz#06554a54ccfe9264e5a9ff8eded46aa1e306482f" + integrity sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw== + dependencies: + "@sindresorhus/merge-streams" "^2.1.0" + fast-glob "^3.3.2" + ignore "^5.2.4" + path-type "^5.0.0" + slash "^5.1.0" + unicorn-magic "^0.1.0" + +globjoin@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/globjoin/-/globjoin-0.1.4.tgz#2f4494ac8919e3767c5cbb691e9f463324285d43" + integrity sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg== + +gopd@^1.0.1, gopd@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.1.0.tgz#df8f0839c2d48caefc32a025a49294d39606c912" + integrity sha512-FQoVQnqcdk4hVM4JN1eromaun4iuS34oStkdlLENLdpULsuQcTyXj8w7ayhuUfPwEYZ1ZOooOTT6fdA9Vmx/RA== + dependencies: + get-intrinsic "^1.2.4" + +graceful-fs@4.2.10: + version "4.2.10" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" + integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== + +graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.6: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + +handlebars@^4.7.7, handlebars@^4.7.8: + version "4.7.8" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.8.tgz#41c42c18b1be2365439188c77c6afae71c0cd9e9" + integrity sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ== + dependencies: + minimist "^1.2.5" + neo-async "^2.6.2" + source-map "^0.6.1" + wordwrap "^1.0.0" optionalDependencies: - "uglify-js" "^3.1.4" - -"hard-rejection@^2.1.0": - "integrity" "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==" - "resolved" "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz" - "version" "2.1.0" + uglify-js "^3.1.4" -"has-bigints@^1.0.1": - "integrity" "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==" - "resolved" "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz" - "version" "1.0.1" +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== -"has-flag@^3.0.0": - "integrity" "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" - "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" - "version" "3.0.0" +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== -"has-flag@^4.0.0": - "integrity" "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" - "version" "4.0.0" +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== -"has-symbols@^1.0.1", "has-symbols@^1.0.2": - "integrity" "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" - "resolved" "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz" - "version" "1.0.2" - -"has-tostringtag@^1.0.0": - "integrity" "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==" - "resolved" "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz" - "version" "1.0.0" +has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" + integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== dependencies: - "has-symbols" "^1.0.2" - -"has-unicode@^2.0.1": - "integrity" "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" - "resolved" "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz" - "version" "2.0.1" + es-define-property "^1.0.0" -"has@^1.0.3": - "integrity" "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==" - "resolved" "https://registry.npmjs.org/has/-/has-1.0.3.tgz" - "version" "1.0.3" +has-proto@^1.0.1, has-proto@^1.0.3: + version "1.1.0" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.1.0.tgz#deb10494cbbe8809bce168a3b961f42969f5ed43" + integrity sha512-QLdzI9IIO1Jg7f9GT1gXpPpXArAn6cS31R1eEZqz08Gc+uQ8/XiqHWt17Fiw+2p6oTTIq5GXEpQkAlA88YRl/Q== dependencies: - "function-bind" "^1.1.1" + call-bind "^1.0.7" -"header-case@^2.0.4": - "integrity" "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==" - "resolved" "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz" - "version" "2.0.4" - dependencies: - "capital-case" "^1.0.4" - "tslib" "^2.0.3" +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== -"hook-std@^2.0.0": - "integrity" "sha512-zZ6T5WcuBMIUVh49iPQS9t977t7C0l7OtHrpeMb5uk48JdflRX0NSFvCekfYNmGQETnLq9W/isMyHl69kxGi8g==" - "resolved" "https://registry.npmjs.org/hook-std/-/hook-std-2.0.0.tgz" - "version" "2.0.0" +has-tostringtag@^1.0.0, has-tostringtag@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" + integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== + dependencies: + has-symbols "^1.0.3" -"hosted-git-info@^2.1.4": - "integrity" "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" - "resolved" "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz" - "version" "2.8.9" +has-unicode@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== -"hosted-git-info@^4.0.0": - "integrity" "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==" - "resolved" "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz" - "version" "4.1.0" +hasown@^2.0.0, hasown@^2.0.1, hasown@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== dependencies: - "lru-cache" "^6.0.0" + function-bind "^1.1.2" -"hosted-git-info@^4.0.1": - "integrity" "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==" - "resolved" "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz" - "version" "4.1.0" +he@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +hosted-git-info@^7.0.0: + version "7.0.2" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-7.0.2.tgz#9b751acac097757667f30114607ef7b661ff4f17" + integrity sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w== dependencies: - "lru-cache" "^6.0.0" + lru-cache "^10.0.1" -"hosted-git-info@^5.0.0", "hosted-git-info@^5.2.1": - "resolved" "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-5.2.1.tgz" - "version" "5.2.1" +hosted-git-info@^8.0.0, hosted-git-info@^8.0.2: + version "8.0.2" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-8.0.2.tgz#5bd7d8b5395616e41cc0d6578381a32f669b14b2" + integrity sha512-sYKnA7eGln5ov8T8gnYlkSOxFJvywzEx9BueN6xo/GKO8PGiI6uK6xx+DIGe45T3bdVjLAQDQW1aicT8z8JwQg== dependencies: - "lru-cache" "^7.5.1" + lru-cache "^10.0.1" -"http-cache-semantics@^4.1.0": - "integrity" "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" - "resolved" "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz" - "version" "4.1.1" +html-tags@^3.3.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.3.1.tgz#a04026a18c882e4bba8a01a3d39cfe465d40b5ce" + integrity sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ== -"http-proxy-agent@^4.0.1": - "integrity" "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==" - "resolved" "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz" - "version" "4.0.1" - dependencies: - "@tootallnate/once" "1" - "agent-base" "6" - "debug" "4" +http-cache-semantics@^4.1.0, http-cache-semantics@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" + integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== -"http-proxy-agent@^5.0.0": - "integrity" "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" - "resolved" "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz" - "version" "5.0.0" +http-proxy-agent@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43" + integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== dependencies: "@tootallnate/once" "2" - "agent-base" "6" - "debug" "4" - -"https-proxy-agent@^5.0.0": - "integrity" "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==" - "resolved" "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz" - "version" "5.0.0" - dependencies: - "agent-base" "6" - "debug" "4" - -"human-signals@^2.1.0": - "integrity" "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" - "resolved" "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz" - "version" "2.1.0" - -"humanize-ms@^1.2.1": - "integrity" "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=" - "resolved" "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz" - "version" "1.2.1" - dependencies: - "ms" "^2.0.0" - -"husky@6": - "integrity" "sha512-SQS2gDTB7tBN486QSoKPKQItZw97BMOd+Kdb6ghfpBc0yXyzrddI0oDV5MkDAbuB4X2mO3/nj60TRMcYxwzZeQ==" - "resolved" "https://registry.npmjs.org/husky/-/husky-6.0.0.tgz" - "version" "6.0.0" - -"iconv-lite@^0.4.4": - "integrity" "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" - "resolved" "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" - "version" "0.4.24" - dependencies: - "safer-buffer" ">= 2.1.2 < 3" - -"iconv-lite@^0.6.2": - "integrity" "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" - "resolved" "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz" - "version" "0.6.3" - dependencies: - "safer-buffer" ">= 2.1.2 < 3.0.0" - -"ignore-by-default@^1.0.1": - "integrity" "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==" - "resolved" "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz" - "version" "1.0.1" - -"ignore-walk@^5.0.1": - "resolved" "https://registry.npmjs.org/ignore-walk/-/ignore-walk-5.0.1.tgz" - "version" "5.0.1" - dependencies: - "minimatch" "^5.0.1" - -"ignore@^4.0.6": - "integrity" "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" - "resolved" "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz" - "version" "4.0.6" - -"ignore@^5.1.1", "ignore@^5.2.0": - "integrity" "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==" - "resolved" "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz" - "version" "5.2.0" - -"image-size@~0.5.0": - "integrity" "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=" - "resolved" "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz" - "version" "0.5.5" - -"import-fresh@^3.0.0", "import-fresh@^3.2.1": - "integrity" "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" - "resolved" "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz" - "version" "3.3.0" - dependencies: - "parent-module" "^1.0.0" - "resolve-from" "^4.0.0" - -"import-from@^4.0.0": - "integrity" "sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==" - "resolved" "https://registry.npmjs.org/import-from/-/import-from-4.0.0.tgz" - "version" "4.0.0" - -"imurmurhash@^0.1.4": - "integrity" "sha1-khi5srkoojixPcT7a21XbyMUU+o=" - "resolved" "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" - "version" "0.1.4" - -"indent-string@^4.0.0": - "integrity" "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" - "resolved" "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz" - "version" "4.0.0" - -"infer-owner@^1.0.4": - "integrity" "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" - "resolved" "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz" - "version" "1.0.4" - -"inflight@^1.0.4": - "integrity" "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=" - "resolved" "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" - "version" "1.0.6" - dependencies: - "once" "^1.3.0" - "wrappy" "1" - -"inherits@^2.0.1", "inherits@^2.0.3", "inherits@~2.0.1", "inherits@~2.0.3", "inherits@2": - "integrity" "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" - "version" "2.0.4" - -"ini@^3.0.0", "ini@^3.0.1": - "resolved" "https://registry.npmjs.org/ini/-/ini-3.0.1.tgz" - "version" "3.0.1" - -"ini@~1.3.0": - "integrity" "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - "resolved" "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz" - "version" "1.3.8" - -"init-package-json@^3.0.2": - "resolved" "https://registry.npmjs.org/init-package-json/-/init-package-json-3.0.2.tgz" - "version" "3.0.2" - dependencies: - "npm-package-arg" "^9.0.1" - "promzard" "^0.3.0" - "read" "^1.0.7" - "read-package-json" "^5.0.0" - "semver" "^7.3.5" - "validate-npm-package-license" "^3.0.4" - "validate-npm-package-name" "^4.0.0" - -"internal-slot@^1.0.3": - "integrity" "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==" - "resolved" "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz" - "version" "1.0.3" - dependencies: - "get-intrinsic" "^1.1.0" - "has" "^1.0.3" - "side-channel" "^1.0.4" - -"into-stream@^6.0.0": - "integrity" "sha512-XHbaOAvP+uFKUFsOgoNPRjLkwB+I22JFPFe5OjTkQ0nwgj6+pSjb4NmB6VMxaPshLiOf+zcpOCBQuLwC1KHhZA==" - "resolved" "https://registry.npmjs.org/into-stream/-/into-stream-6.0.0.tgz" - "version" "6.0.0" - dependencies: - "from2" "^2.3.0" - "p-is-promise" "^3.0.0" - -"ip-regex@^4.1.0": - "resolved" "https://registry.npmjs.org/ip-regex/-/ip-regex-4.3.0.tgz" - "version" "4.3.0" - -"ip@^2.0.0": - "integrity" "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" - "resolved" "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz" - "version" "2.0.0" - -"is-arrayish@^0.2.1": - "integrity" "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" - "resolved" "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" - "version" "0.2.1" - -"is-bigint@^1.0.1": - "integrity" "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==" - "resolved" "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz" - "version" "1.0.4" - dependencies: - "has-bigints" "^1.0.1" - -"is-binary-path@~2.1.0": - "integrity" "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" - "resolved" "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" - "version" "2.1.0" - dependencies: - "binary-extensions" "^2.0.0" - -"is-boolean-object@^1.1.0": - "integrity" "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==" - "resolved" "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz" - "version" "1.1.2" - dependencies: - "call-bind" "^1.0.2" - "has-tostringtag" "^1.0.0" - -"is-callable@^1.1.4", "is-callable@^1.2.4": - "integrity" "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==" - "resolved" "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz" - "version" "1.2.4" - -"is-cidr@^4.0.2": - "resolved" "https://registry.npmjs.org/is-cidr/-/is-cidr-4.0.2.tgz" - "version" "4.0.2" - dependencies: - "cidr-regex" "^3.1.1" - -"is-core-module@^2.5.0", "is-core-module@^2.8.0", "is-core-module@^2.8.1": - "integrity" "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==" - "resolved" "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz" - "version" "2.8.1" - dependencies: - "has" "^1.0.3" - -"is-date-object@^1.0.1": - "integrity" "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==" - "resolved" "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz" - "version" "1.0.5" - dependencies: - "has-tostringtag" "^1.0.0" - -"is-extglob@^2.1.1": - "integrity" "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" - "resolved" "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" - "version" "2.1.1" - -"is-fullwidth-code-point@^3.0.0": - "integrity" "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" - "resolved" "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" - "version" "3.0.0" - -"is-glob@^4.0.0", "is-glob@^4.0.1", "is-glob@^4.0.3", "is-glob@~4.0.1": - "integrity" "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" - "resolved" "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" - "version" "4.0.3" - dependencies: - "is-extglob" "^2.1.1" - -"is-lambda@^1.0.1": - "integrity" "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=" - "resolved" "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz" - "version" "1.0.1" - -"is-negative-zero@^2.0.1": - "integrity" "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" - "resolved" "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz" - "version" "2.0.2" - -"is-number-object@^1.0.4": - "integrity" "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==" - "resolved" "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz" - "version" "1.0.6" - dependencies: - "has-tostringtag" "^1.0.0" - -"is-number@^7.0.0": - "integrity" "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - "resolved" "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" - "version" "7.0.0" - -"is-obj@^2.0.0": - "integrity" "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" - "resolved" "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz" - "version" "2.0.0" - -"is-path-cwd@^2.2.0": - "integrity" "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" - "resolved" "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz" - "version" "2.2.0" - -"is-path-inside@^3.0.2": - "integrity" "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" - "resolved" "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz" - "version" "3.0.3" - -"is-plain-obj@^1.1.0": - "integrity" "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" - "resolved" "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz" - "version" "1.1.0" - -"is-plain-object@^5.0.0": - "integrity" "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==" - "resolved" "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz" - "version" "5.0.0" - -"is-promise@^2.2.2": - "integrity" "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==" - "resolved" "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz" - "version" "2.2.2" - -"is-regex@^1.1.4": - "integrity" "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==" - "resolved" "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz" - "version" "1.1.4" - dependencies: - "call-bind" "^1.0.2" - "has-tostringtag" "^1.0.0" - -"is-shared-array-buffer@^1.0.1": - "integrity" "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==" - "resolved" "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz" - "version" "1.0.1" - -"is-stream@^2.0.0": - "integrity" "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" - "resolved" "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz" - "version" "2.0.1" - -"is-string@^1.0.5", "is-string@^1.0.7": - "integrity" "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" - "resolved" "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz" - "version" "1.0.7" - dependencies: - "has-tostringtag" "^1.0.0" - -"is-symbol@^1.0.2", "is-symbol@^1.0.3": - "integrity" "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==" - "resolved" "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz" - "version" "1.0.4" - dependencies: - "has-symbols" "^1.0.2" - -"is-text-path@^1.0.1": - "integrity" "sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=" - "resolved" "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz" - "version" "1.0.1" - dependencies: - "text-extensions" "^1.0.0" - -"is-weakref@^1.0.1": - "integrity" "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==" - "resolved" "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz" - "version" "1.0.2" - dependencies: - "call-bind" "^1.0.2" - -"is-what@^3.14.1": - "integrity" "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==" - "resolved" "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz" - "version" "3.14.1" - -"isarray@~1.0.0": - "integrity" "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - "resolved" "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" - "version" "1.0.0" - -"isarray@0.0.1": - "integrity" "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" - "resolved" "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" - "version" "0.0.1" - -"isexe@^2.0.0": - "integrity" "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" - "resolved" "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" - "version" "2.0.0" - -"issue-parser@^6.0.0": - "integrity" "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==" - "resolved" "https://registry.npmjs.org/issue-parser/-/issue-parser-6.0.0.tgz" - "version" "6.0.0" - dependencies: - "lodash.capitalize" "^4.2.1" - "lodash.escaperegexp" "^4.1.2" - "lodash.isplainobject" "^4.0.6" - "lodash.isstring" "^4.0.1" - "lodash.uniqby" "^4.7.0" - -"java-properties@^1.0.0": - "integrity" "sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==" - "resolved" "https://registry.npmjs.org/java-properties/-/java-properties-1.0.2.tgz" - "version" "1.0.2" - -"js-tokens@^4.0.0": - "integrity" "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - "resolved" "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" - "version" "4.0.0" - -"js-yaml@^3.13.1": - "integrity" "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==" - "resolved" "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" - "version" "3.14.1" - dependencies: - "argparse" "^1.0.7" - "esprima" "^4.0.0" - -"json-parse-better-errors@^1.0.1": - "integrity" "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" - "resolved" "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz" - "version" "1.0.2" - -"json-parse-even-better-errors@^2.3.0", "json-parse-even-better-errors@^2.3.1": - "integrity" "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - "resolved" "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" - "version" "2.3.1" - -"json-schema-traverse@^0.4.1": - "integrity" "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - "resolved" "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" - "version" "0.4.1" - -"json-schema-traverse@^1.0.0": - "integrity" "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - "resolved" "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz" - "version" "1.0.0" - -"json-stable-stringify-without-jsonify@^1.0.1": - "integrity" "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" - "resolved" "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz" - "version" "1.0.1" - -"json-stringify-nice@^1.1.4": - "resolved" "https://registry.npmjs.org/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz" - "version" "1.1.4" - -"json-stringify-safe@^5.0.1": - "integrity" "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - "resolved" "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" - "version" "5.0.1" - -"json5@^1.0.1": - "integrity" "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==" - "resolved" "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz" - "version" "1.0.2" - dependencies: - "minimist" "^1.2.0" - -"json5@^2.1.3": - "integrity" "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" - "resolved" "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz" - "version" "2.2.3" - -"jsonc-parser@^3.0.0": - "integrity" "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==" - "resolved" "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz" - "version" "3.0.0" - -"jsonfile@^4.0.0": - "integrity" "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=" - "resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz" - "version" "4.0.0" + agent-base "6" + debug "4" + +http-proxy-agent@^7.0.0: + version "7.0.2" + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz#9a8b1f246866c028509486585f62b8f2c18c270e" + integrity sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig== + dependencies: + agent-base "^7.1.0" + debug "^4.3.4" + +https-proxy-agent@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" + integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== + dependencies: + agent-base "6" + debug "4" + +https-proxy-agent@^7.0.0, https-proxy-agent@^7.0.1: + version "7.0.5" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz#9e8b5013873299e11fab6fd548405da2d6c602b2" + integrity sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw== + dependencies: + agent-base "^7.0.2" + debug "4" + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +human-signals@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-8.0.0.tgz#2d3d63481c7c2319f0373428b01ffe30da6df852" + integrity sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA== + +humanize-ms@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" + integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== + dependencies: + ms "^2.0.0" + +hyperdyperid@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/hyperdyperid/-/hyperdyperid-1.2.0.tgz#59668d323ada92228d2a869d3e474d5a33b69e6b" + integrity sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A== + +iconv-lite@^0.6.2, iconv-lite@^0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + +ieee754@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +ignore-by-default@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" + integrity sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA== + +ignore-walk@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-7.0.0.tgz#8350e475cf4375969c12eb49618b3fd9cca6704f" + integrity sha512-T4gbf83A4NH95zvhVYZc+qWocBBGlpzUXLPGurJggw/WIOwicfXJChLDP/iBZnN5WqROSu5Bm3hhle4z8a8YGQ== + dependencies: + minimatch "^9.0.0" + +ignore@^5.2.0, ignore@^5.2.4, ignore@^5.3.2: + version "5.3.2" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" + integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== + +ignore@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-6.0.2.tgz#77cccb72a55796af1b6d2f9eb14fa326d24f4283" + integrity sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A== + +image-size@~0.5.0: + version "0.5.5" + resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.5.5.tgz#09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c" + integrity sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ== + +import-fresh@^3.2.1, import-fresh@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +import-from-esm@^1.0.3: + version "1.3.4" + resolved "https://registry.yarnpkg.com/import-from-esm/-/import-from-esm-1.3.4.tgz#39e97c84085e308fe66cf872a667046b45449df0" + integrity sha512-7EyUlPFC0HOlBDpUFGfYstsU7XHxZJKAAMzCT8wZ0hMW7b+hG51LIKTDcsgtz8Pu6YC0HqRVbX+rVUtsGMUKvg== + dependencies: + debug "^4.3.4" + import-meta-resolve "^4.0.0" + +import-meta-resolve@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz#f9db8bead9fafa61adb811db77a2bf22c5399706" + integrity sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw== + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + +indent-string@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-5.0.0.tgz#4fd2980fccaf8622d14c64d694f4cf33c81951a5" + integrity sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg== + +index-to-position@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/index-to-position/-/index-to-position-0.1.2.tgz#e11bfe995ca4d8eddb1ec43274488f3c201a7f09" + integrity sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g== + +infer-owner@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" + integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +inherits@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== + +ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: + version "1.3.8" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" + integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== + +ini@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/ini/-/ini-5.0.0.tgz#a7a4615339843d9a8ccc2d85c9d81cf93ffbc638" + integrity sha512-+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw== + +init-package-json@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/init-package-json/-/init-package-json-7.0.1.tgz#8f4580bbf427f015348727f215a39f42547ee208" + integrity sha512-8KZtk/53ReI2T2f6z2hl5ql6xKLjDexNw7DUqTdR8f+Mo8WZmBjjkH6DrTfBjmW0j3Tqx+j3t8creN0O890+0A== + dependencies: + "@npmcli/package-json" "^6.0.0" + npm-package-arg "^12.0.0" + promzard "^2.0.0" + read "^4.0.0" + semver "^7.3.5" + validate-npm-package-license "^3.0.4" + validate-npm-package-name "^6.0.0" + +internal-slot@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.7.tgz#c06dcca3ed874249881007b0a5523b172a190802" + integrity sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g== + dependencies: + es-errors "^1.3.0" + hasown "^2.0.0" + side-channel "^1.0.4" + +into-stream@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-7.0.0.tgz#d1a211e146be8acfdb84dabcbf00fe8205e72936" + integrity sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw== + dependencies: + from2 "^2.3.0" + p-is-promise "^3.0.0" + +ip-address@^9.0.5: + version "9.0.5" + resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-9.0.5.tgz#117a960819b08780c3bd1f14ef3c1cc1d3f3ea5a" + integrity sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g== + dependencies: + jsbn "1.1.0" + sprintf-js "^1.1.3" + +ip-regex@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-5.0.0.tgz#cd313b2ae9c80c07bd3851e12bf4fa4dc5480632" + integrity sha512-fOCG6lhoKKakwv+C6KdsOnGvgXnmgfmp0myi3bcNwj3qfwPAxRKWEuFhvEFF7ceYIz6+1jRZ+yguLFAmUNPEfw== + +is-arguments@^1.0.4: + version "1.1.1" + resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-array-buffer@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.4.tgz#7a1f92b3d61edd2bc65d24f130530ea93d7fae98" + integrity sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.1" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-async-function@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.0.0.tgz#8e4418efd3e5d3a6ebb0164c05ef5afb69aa9646" + integrity sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA== + dependencies: + has-tostringtag "^1.0.0" + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.2.0.tgz#9743641e80a62c094b5941c5bb791d66a88e497a" + integrity sha512-kR5g0+dXf/+kXnqI+lu0URKYPKgICtHGGNCDSB10AaUFj3o/HkB3u7WfpRBJGFopxxY0oH3ux7ZsDjLtK7xqvw== + dependencies: + call-bind "^1.0.7" + has-tostringtag "^1.0.2" + +is-callable@^1.1.3, is-callable@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + +is-cidr@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/is-cidr/-/is-cidr-5.1.0.tgz#36f2d059f43f9b14f132745a2eec18c996df2f35" + integrity sha512-OkVS+Ht2ssF27d48gZdB+ho1yND1VbkJRKKS6Pc1/Cw7uqkd9IOJg8/bTwBDQL6tfBhSdguPRnlGiE8pU/X5NQ== + dependencies: + cidr-regex "^4.1.1" + +is-core-module@^2.13.0, is-core-module@^2.15.1: + version "2.15.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.15.1.tgz#a7363a25bee942fefab0de13bf6aa372c82dcc37" + integrity sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ== + dependencies: + hasown "^2.0.2" + +is-data-view@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.1.tgz#4b4d3a511b70f3dc26d42c03ca9ca515d847759f" + integrity sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w== + dependencies: + is-typed-array "^1.1.13" + +is-date-object@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-docker@^2.0.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-finalizationregistry@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.1.0.tgz#d74a7d0c5f3578e34a20729e69202e578d495dc2" + integrity sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA== + dependencies: + call-bind "^1.0.7" + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-generator-function@^1.0.10, is-generator-function@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-lambda@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" + integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== + +is-map@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz#ede96b7fe1e270b3c4465e3a465658764926d62e" + integrity sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw== + +is-mergeable-object@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/is-mergeable-object/-/is-mergeable-object-1.1.1.tgz#faaa3ed1cfce87d6f7d2f5885e92cc30af3e2ebf" + integrity sha512-CPduJfuGg8h8vW74WOxHtHmtQutyQBzR+3MjQ6iDHIYdbOnm1YC7jv43SqCoU8OPGTJD4nibmiryA4kmogbGrA== + +is-nan@^1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" + integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + +is-negative-zero@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747" + integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== + +is-number-object@^1.0.4: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.1.0.tgz#5a867e9ecc3d294dda740d9f127835857af7eb05" + integrity sha512-KVSZV0Dunv9DTPkhXwcZ3Q+tUc9TsaE1ZwX5J2WMvsSGS6Md8TFPun5uwh0yRdrNerI6vf/tbJxqSx4c1ZI1Lw== + dependencies: + call-bind "^1.0.7" + has-tostringtag "^1.0.2" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-obj@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" + integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== + +is-plain-obj@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" + integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== + +is-plain-obj@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-4.1.0.tgz#d65025edec3657ce032fd7db63c97883eaed71f0" + integrity sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg== + +is-plain-object@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" + integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== + +is-promise@^2.2.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" + integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== + +is-regex@^1.1.4: + version "1.2.0" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.2.0.tgz#41b9d266e7eb7451312c64efc37e8a7d453077cf" + integrity sha512-B6ohK4ZmoftlUe+uvenXSbPJFo6U37BH7oO1B3nQH8f/7h27N56s85MhUtbFJAziz5dcmuR3i8ovUl35zp8pFA== + dependencies: + call-bind "^1.0.7" + gopd "^1.1.0" + has-tostringtag "^1.0.2" + hasown "^2.0.2" + +is-set@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz#8ab209ea424608141372ded6e0cb200ef1d9d01d" + integrity sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg== + +is-shared-array-buffer@^1.0.2, is-shared-array-buffer@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz#1237f1cba059cdb62431d378dcc37d9680181688" + integrity sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg== + dependencies: + call-bind "^1.0.7" + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" + integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== + +is-stream@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-4.0.1.tgz#375cf891e16d2e4baec250b85926cffc14720d9b" + integrity sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A== + +is-string@^1.0.5, is-string@^1.0.7: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.1.0.tgz#8cb83c5d57311bf8058bc6c8db294711641da45d" + integrity sha512-PlfzajuF9vSo5wErv3MJAKD/nqf9ngAs1NFQYm16nUYFO2IzxJ2hcm+IOCg+EEopdykNNUhVq5cz35cAUxU8+g== + dependencies: + call-bind "^1.0.7" + has-tostringtag "^1.0.2" + +is-symbol@^1.0.3, is-symbol@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typed-array@^1.1.13, is-typed-array@^1.1.3: + version "1.1.13" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.13.tgz#d6c5ca56df62334959322d7d7dd1cca50debe229" + integrity sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw== + dependencies: + which-typed-array "^1.1.14" + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +is-unicode-supported@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz#09f0ab0de6d3744d48d265ebb98f65d11f2a9b3a" + integrity sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ== + +is-weakmap@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz#bf72615d649dfe5f699079c54b83e47d1ae19cfd" + integrity sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w== + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +is-weakset@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.3.tgz#e801519df8c0c43e12ff2834eead84ec9e624007" + integrity sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ== + dependencies: + call-bind "^1.0.7" + get-intrinsic "^1.2.4" + +is-what@^3.14.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/is-what/-/is-what-3.14.1.tgz#e1222f46ddda85dead0fd1c9df131760e77755c1" + integrity sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA== + +is-wsl@^2.1.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== + dependencies: + is-docker "^2.0.0" + +isarray@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + +isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isexe@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-3.1.1.tgz#4a407e2bd78ddfb14bea0c27c6f7072dde775f0d" + integrity sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ== + +issue-parser@^7.0.0: + version "7.0.1" + resolved "https://registry.yarnpkg.com/issue-parser/-/issue-parser-7.0.1.tgz#8a053e5a4952c75bb216204e454b4fc7d4cc9637" + integrity sha512-3YZcUUR2Wt1WsapF+S/WiA2WmlW0cWAoPccMqne7AxEBhCdFeTPjfv/Axb8V2gyCgY3nRw+ksZ3xSUX+R47iAg== + dependencies: + lodash.capitalize "^4.2.1" + lodash.escaperegexp "^4.1.2" + lodash.isplainobject "^4.0.6" + lodash.isstring "^4.0.1" + lodash.uniqby "^4.7.0" + +jackspeak@2.1.1, jackspeak@^3.1.2, jackspeak@^4.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.1.1.tgz#2a42db4cfbb7e55433c28b6f75d8b796af9669cd" + integrity sha512-juf9stUEwUaILepraGOWIJTLwg48bUnBmRqd2ln2Os1sW987zeoj/hzhbvRB95oMuS2ZTpjULmdwHNX4rzZIZw== + dependencies: + cliui "^8.0.1" optionalDependencies: - "graceful-fs" "^4.1.6" - -"jsonfile@^6.0.1": - "integrity" "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" - "resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz" - "version" "6.1.0" - dependencies: - "universalify" "^2.0.0" + "@pkgjs/parseargs" "^0.11.0" + +js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +jsbn@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-1.1.0.tgz#b01307cb29b618a1ed26ec79e911f803c4da0040" + integrity sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A== + +json-buffer@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" + integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== + +json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json-parse-even-better-errors@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-4.0.0.tgz#d3f67bd5925e81d3e31aa466acc821c8375cec43" + integrity sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +json-stable-stringify@^1.0.2: + version "1.1.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.1.1.tgz#52d4361b47d49168bcc4e564189a42e5a7439454" + integrity sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg== + dependencies: + call-bind "^1.0.5" + isarray "^2.0.5" + jsonify "^0.0.1" + object-keys "^1.1.1" + +json-stringify-nice@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz#2c937962b80181d3f317dd39aa323e14f5a60a67" + integrity sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw== + +json5@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" + integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== + dependencies: + minimist "^1.2.0" + +json5@^2.2.2: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + +jsonfile@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + dependencies: + universalify "^2.0.0" optionalDependencies: - "graceful-fs" "^4.1.6" - -"jsonparse@^1.2.0": - "integrity" "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=" - "resolved" "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz" - "version" "1.3.1" - -"jsonparse@^1.3.1": - "resolved" "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz" - "version" "1.3.1" - -"JSONStream@^1.0.4": - "integrity" "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==" - "resolved" "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz" - "version" "1.3.5" - dependencies: - "jsonparse" "^1.2.0" - "through" ">=2.2.7 <3" - -"just-diff-apply@^5.2.0": - "resolved" "https://registry.npmjs.org/just-diff-apply/-/just-diff-apply-5.4.1.tgz" - "version" "5.4.1" - -"just-diff@^5.0.1": - "resolved" "https://registry.npmjs.org/just-diff/-/just-diff-5.1.1.tgz" - "version" "5.1.1" - -"kind-of@^6.0.3": - "integrity" "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" - "version" "6.0.3" - -"less@^4.1.1": - "integrity" "sha512-EoQp/Et7OSOVu0aJknJOtlXZsnr8XE8KwuzTHOLeVSEx8pVWUICc8Q0VYRHgzyjX78nMEyC/oztWFbgyhtNfDA==" - "resolved" "https://registry.npmjs.org/less/-/less-4.1.2.tgz" - "version" "4.1.2" - dependencies: - "copy-anything" "^2.0.1" - "parse-node-version" "^1.0.1" - "tslib" "^2.3.0" + graceful-fs "^4.1.6" + +jsonify@^0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz#2aa3111dae3d34a0f151c63f3a45d995d9420978" + integrity sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg== + +jsonparse@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== + +just-diff-apply@^5.2.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/just-diff-apply/-/just-diff-apply-5.5.0.tgz#771c2ca9fa69f3d2b54e7c3f5c1dfcbcc47f9f0f" + integrity sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw== + +just-diff@^6.0.0: + version "6.0.2" + resolved "https://registry.yarnpkg.com/just-diff/-/just-diff-6.0.2.tgz#03b65908543ac0521caf6d8eb85035f7d27ea285" + integrity sha512-S59eriX5u3/QhMNq3v/gm8Kd0w8OS6Tz2FS1NG4blv+z0MuQcBRJyFWjdovM0Rad4/P4aUPFtnkNjMjyMlMSYA== + +keyv@^4.5.4: + version "4.5.4" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" + integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== + dependencies: + json-buffer "3.0.1" + +kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +klaw-sync@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-6.0.0.tgz#1fd2cfd56ebb6250181114f0a581167099c2b28c" + integrity sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ== + dependencies: + graceful-fs "^4.1.11" + +known-css-properties@^0.35.0: + version "0.35.0" + resolved "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.35.0.tgz#f6f8e40ab4e5700fa32f5b2ef5218a56bc853bd6" + integrity sha512-a/RAk2BfKk+WFGhhOCAYqSiFLc34k8Mt/6NWRI4joER0EYUzXIcFivjjnoD3+XU1DggLn/tZc3DOAgke7l8a4A== + +less@^4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/less/-/less-4.2.1.tgz#fe4c9848525ab44614c0cf2c00abd8d031bb619a" + integrity sha512-CasaJidTIhWmjcqv0Uj5vccMI7pJgfD9lMkKtlnTHAdJdYK/7l8pM9tumLyJ0zhbD4KJLo/YvTj+xznQd5NBhg== + dependencies: + copy-anything "^2.0.1" + parse-node-version "^1.0.1" + tslib "^2.3.0" optionalDependencies: - "errno" "^0.1.1" - "graceful-fs" "^4.1.2" - "image-size" "~0.5.0" - "make-dir" "^2.1.0" - "mime" "^1.4.1" - "needle" "^2.5.2" - "source-map" "~0.6.0" - -"levn@^0.4.1": - "integrity" "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" - "resolved" "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz" - "version" "0.4.1" - dependencies: - "prelude-ls" "^1.2.1" - "type-check" "~0.4.0" - -"libnpmaccess@^6.0.4": - "resolved" "https://registry.npmjs.org/libnpmaccess/-/libnpmaccess-6.0.4.tgz" - "version" "6.0.4" - dependencies: - "aproba" "^2.0.0" - "minipass" "^3.1.1" - "npm-package-arg" "^9.0.1" - "npm-registry-fetch" "^13.0.0" - -"libnpmdiff@^4.0.5": - "resolved" "https://registry.npmjs.org/libnpmdiff/-/libnpmdiff-4.0.5.tgz" - "version" "4.0.5" - dependencies: - "@npmcli/disparity-colors" "^2.0.0" - "@npmcli/installed-package-contents" "^1.0.7" - "binary-extensions" "^2.2.0" - "diff" "^5.1.0" - "minimatch" "^5.0.1" - "npm-package-arg" "^9.0.1" - "pacote" "^13.6.1" - "tar" "^6.1.0" - -"libnpmexec@^4.0.14": - "resolved" "https://registry.npmjs.org/libnpmexec/-/libnpmexec-4.0.14.tgz" - "version" "4.0.14" - dependencies: - "@npmcli/arborist" "^5.6.3" - "@npmcli/ci-detect" "^2.0.0" - "@npmcli/fs" "^2.1.1" - "@npmcli/run-script" "^4.2.0" - "chalk" "^4.1.0" - "mkdirp-infer-owner" "^2.0.0" - "npm-package-arg" "^9.0.1" - "npmlog" "^6.0.2" - "pacote" "^13.6.1" - "proc-log" "^2.0.0" - "read" "^1.0.7" - "read-package-json-fast" "^2.0.2" - "semver" "^7.3.7" - "walk-up-path" "^1.0.0" - -"libnpmfund@^3.0.5": - "resolved" "https://registry.npmjs.org/libnpmfund/-/libnpmfund-3.0.5.tgz" - "version" "3.0.5" - dependencies: - "@npmcli/arborist" "^5.6.3" - -"libnpmhook@^8.0.4": - "resolved" "https://registry.npmjs.org/libnpmhook/-/libnpmhook-8.0.4.tgz" - "version" "8.0.4" - dependencies: - "aproba" "^2.0.0" - "npm-registry-fetch" "^13.0.0" - -"libnpmorg@^4.0.4": - "resolved" "https://registry.npmjs.org/libnpmorg/-/libnpmorg-4.0.4.tgz" - "version" "4.0.4" - dependencies: - "aproba" "^2.0.0" - "npm-registry-fetch" "^13.0.0" - -"libnpmpack@^4.1.3": - "resolved" "https://registry.npmjs.org/libnpmpack/-/libnpmpack-4.1.3.tgz" - "version" "4.1.3" - dependencies: - "@npmcli/run-script" "^4.1.3" - "npm-package-arg" "^9.0.1" - "pacote" "^13.6.1" - -"libnpmpublish@^6.0.5": - "resolved" "https://registry.npmjs.org/libnpmpublish/-/libnpmpublish-6.0.5.tgz" - "version" "6.0.5" - dependencies: - "normalize-package-data" "^4.0.0" - "npm-package-arg" "^9.0.1" - "npm-registry-fetch" "^13.0.0" - "semver" "^7.3.7" - "ssri" "^9.0.0" - -"libnpmsearch@^5.0.4": - "resolved" "https://registry.npmjs.org/libnpmsearch/-/libnpmsearch-5.0.4.tgz" - "version" "5.0.4" - dependencies: - "npm-registry-fetch" "^13.0.0" - -"libnpmteam@^4.0.4": - "resolved" "https://registry.npmjs.org/libnpmteam/-/libnpmteam-4.0.4.tgz" - "version" "4.0.4" - dependencies: - "aproba" "^2.0.0" - "npm-registry-fetch" "^13.0.0" - -"libnpmversion@^3.0.7": - "resolved" "https://registry.npmjs.org/libnpmversion/-/libnpmversion-3.0.7.tgz" - "version" "3.0.7" - dependencies: - "@npmcli/git" "^3.0.0" - "@npmcli/run-script" "^4.1.3" - "json-parse-even-better-errors" "^2.3.1" - "proc-log" "^2.0.0" - "semver" "^7.3.7" - -"lines-and-columns@^1.1.6": - "integrity" "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - "resolved" "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz" - "version" "1.2.4" - -"load-json-file@^4.0.0": - "integrity" "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=" - "resolved" "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz" - "version" "4.0.0" - dependencies: - "graceful-fs" "^4.1.2" - "parse-json" "^4.0.0" - "pify" "^3.0.0" - "strip-bom" "^3.0.0" - -"locate-path@^2.0.0": - "integrity" "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=" - "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "p-locate" "^2.0.0" - "path-exists" "^3.0.0" - -"locate-path@^5.0.0": - "integrity" "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" - "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" - "version" "5.0.0" - dependencies: - "p-locate" "^4.1.0" - -"lodash.capitalize@^4.2.1": - "integrity" "sha1-+CbJtOKoUR2E46yinbBeGk87cqk=" - "resolved" "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz" - "version" "4.2.1" - -"lodash.escaperegexp@^4.1.2": - "integrity" "sha1-ZHYsSGGAglGKw99Mz11YhtriA0c=" - "resolved" "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz" - "version" "4.1.2" - -"lodash.ismatch@^4.4.0": - "integrity" "sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc=" - "resolved" "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz" - "version" "4.4.0" - -"lodash.isplainobject@^4.0.6": - "integrity" "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=" - "resolved" "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz" - "version" "4.0.6" - -"lodash.isstring@^4.0.1": - "integrity" "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" - "resolved" "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz" - "version" "4.0.1" - -"lodash.truncate@^4.4.2": - "integrity" "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=" - "resolved" "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz" - "version" "4.4.2" - -"lodash.uniqby@^4.7.0": - "integrity" "sha1-2ZwHpmnp5tJOE2Lf4mbGdhavEwI=" - "resolved" "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz" - "version" "4.7.0" - -"lodash@^4", "lodash@^4.17.10", "lodash@^4.17.15", "lodash@^4.17.21", "lodash@^4.17.4": - "integrity" "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - "resolved" "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" - "version" "4.17.21" - -"lower-case@^2.0.2": - "integrity" "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==" - "resolved" "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz" - "version" "2.0.2" - dependencies: - "tslib" "^2.0.3" - -"lru-cache@^6.0.0": - "integrity" "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" - "resolved" "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" - "version" "6.0.0" - dependencies: - "yallist" "^4.0.0" - -"lru-cache@^7.4.4", "lru-cache@^7.5.1", "lru-cache@^7.7.1": - "version" "7.13.2" - -"lru-queue@^0.1.0": - "integrity" "sha1-Jzi9nw089PhEkMVzbEhpmsYyzaM=" - "resolved" "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz" - "version" "0.1.0" - dependencies: - "es5-ext" "~0.10.2" - -"make-dir@^2.1.0": - "integrity" "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" - "resolved" "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz" - "version" "2.1.0" - dependencies: - "pify" "^4.0.1" - "semver" "^5.6.0" - -"make-fetch-happen@^10.0.3", "make-fetch-happen@^10.0.6", "make-fetch-happen@^10.2.0": - "resolved" "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz" - "version" "10.2.1" - dependencies: - "agentkeepalive" "^4.2.1" - "cacache" "^16.1.0" - "http-cache-semantics" "^4.1.0" - "http-proxy-agent" "^5.0.0" - "https-proxy-agent" "^5.0.0" - "is-lambda" "^1.0.1" - "lru-cache" "^7.7.1" - "minipass" "^3.1.6" - "minipass-collect" "^1.0.2" - "minipass-fetch" "^2.0.3" - "minipass-flush" "^1.0.5" - "minipass-pipeline" "^1.2.4" - "negotiator" "^0.6.3" - "promise-retry" "^2.0.1" - "socks-proxy-agent" "^7.0.0" - "ssri" "^9.0.0" - -"make-fetch-happen@^9.1.0": - "integrity" "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==" - "resolved" "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz" - "version" "9.1.0" - dependencies: - "agentkeepalive" "^4.1.3" - "cacache" "^15.2.0" - "http-cache-semantics" "^4.1.0" - "http-proxy-agent" "^4.0.1" - "https-proxy-agent" "^5.0.0" - "is-lambda" "^1.0.1" - "lru-cache" "^6.0.0" - "minipass" "^3.1.3" - "minipass-collect" "^1.0.2" - "minipass-fetch" "^1.3.2" - "minipass-flush" "^1.0.5" - "minipass-pipeline" "^1.2.4" - "negotiator" "^0.6.2" - "promise-retry" "^2.0.1" - "socks-proxy-agent" "^6.0.0" - "ssri" "^8.0.0" - -"map-obj@^1.0.0": - "integrity" "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=" - "resolved" "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz" - "version" "1.0.1" - -"map-obj@^4.0.0": - "integrity" "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==" - "resolved" "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz" - "version" "4.3.0" - -"marked-terminal@^5.0.0": - "integrity" "sha512-+cKTOx9P4l7HwINYhzbrBSyzgxO2HaHKGZGuB1orZsMIgXYaJyfidT81VXRdpelW/PcHEWxywscePVgI/oUF6g==" - "resolved" "https://registry.npmjs.org/marked-terminal/-/marked-terminal-5.1.1.tgz" - "version" "5.1.1" - dependencies: - "ansi-escapes" "^5.0.0" - "cardinal" "^2.1.1" - "chalk" "^5.0.0" - "cli-table3" "^0.6.1" - "node-emoji" "^1.11.0" - "supports-hyperlinks" "^2.2.0" - -"marked@^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0", "marked@^4.0.10": - "integrity" "sha512-hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ==" - "resolved" "https://registry.npmjs.org/marked/-/marked-4.0.12.tgz" - "version" "4.0.12" - -"memoizee@^0.4.15": - "integrity" "sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==" - "resolved" "https://registry.npmjs.org/memoizee/-/memoizee-0.4.15.tgz" - "version" "0.4.15" - dependencies: - "d" "^1.0.1" - "es5-ext" "^0.10.53" - "es6-weak-map" "^2.0.3" - "event-emitter" "^0.3.5" - "is-promise" "^2.2.2" - "lru-queue" "^0.1.0" - "next-tick" "^1.1.0" - "timers-ext" "^0.1.7" - -"meow@^8.0.0": - "integrity" "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==" - "resolved" "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz" - "version" "8.1.2" - dependencies: - "@types/minimist" "^1.2.0" - "camelcase-keys" "^6.2.2" - "decamelize-keys" "^1.1.0" - "hard-rejection" "^2.1.0" - "minimist-options" "4.1.0" - "normalize-package-data" "^3.0.0" - "read-pkg-up" "^7.0.1" - "redent" "^3.0.0" - "trim-newlines" "^3.0.0" - "type-fest" "^0.18.0" - "yargs-parser" "^20.2.3" - -"merge-stream@^2.0.0": - "integrity" "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - "resolved" "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" - "version" "2.0.0" - -"merge2@^1.3.0", "merge2@^1.4.1": - "integrity" "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" - "resolved" "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" - "version" "1.4.1" - -"microbuffer@^1.0.0": - "integrity" "sha1-izgy7UDIfVH0e7I0kTppinVtGdI=" - "resolved" "https://registry.npmjs.org/microbuffer/-/microbuffer-1.0.0.tgz" - "version" "1.0.0" - -"micromatch@^4.0.0", "micromatch@^4.0.2", "micromatch@^4.0.4": - "integrity" "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==" - "resolved" "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz" - "version" "4.0.4" - dependencies: - "braces" "^3.0.1" - "picomatch" "^2.2.3" - -"mime@^1.4.1": - "integrity" "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - "resolved" "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz" - "version" "1.6.0" - -"mime@^3.0.0": - "integrity" "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" - "resolved" "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz" - "version" "3.0.0" - -"mimic-fn@^2.1.0": - "integrity" "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" - "resolved" "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" - "version" "2.1.0" - -"min-indent@^1.0.0": - "integrity" "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==" - "resolved" "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz" - "version" "1.0.1" - -"minimatch@^3.0.4", "minimatch@^3.1.2": - "integrity" "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" - "resolved" "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" - "version" "3.1.2" - dependencies: - "brace-expansion" "^1.1.7" - -"minimatch@^3.1.1": - "resolved" "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" - "version" "3.1.2" - dependencies: - "brace-expansion" "^1.1.7" - -"minimatch@^5.0.1", "minimatch@^5.1.0": - "resolved" "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz" - "version" "5.1.0" - dependencies: - "brace-expansion" "^2.0.1" - -"minimist-options@4.1.0": - "integrity" "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==" - "resolved" "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz" - "version" "4.1.0" - dependencies: - "arrify" "^1.0.1" - "is-plain-obj" "^1.1.0" - "kind-of" "^6.0.3" - -"minimist@^1.2.0", "minimist@^1.2.5": - "integrity" "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" - "resolved" "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz" - "version" "1.2.6" - -"minipass-collect@^1.0.2": - "integrity" "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==" - "resolved" "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz" - "version" "1.0.2" - dependencies: - "minipass" "^3.0.0" - -"minipass-fetch@^1.3.2": - "integrity" "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==" - "resolved" "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz" - "version" "1.4.1" - dependencies: - "minipass" "^3.1.0" - "minipass-sized" "^1.0.3" - "minizlib" "^2.0.0" - optionalDependencies: - "encoding" "^0.1.12" - -"minipass-fetch@^2.0.3": - "version" "2.1.1" + errno "^0.1.1" + graceful-fs "^4.1.2" + image-size "~0.5.0" + make-dir "^2.1.0" + mime "^1.4.1" + needle "^3.1.0" + source-map "~0.6.0" + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +libnpmaccess@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/libnpmaccess/-/libnpmaccess-9.0.0.tgz#47ac12dcd358c2c2f2c9ecb0f081a65ef2cc68bc" + integrity sha512-mTCFoxyevNgXRrvgdOhghKJnCWByBc9yp7zX4u9RBsmZjwOYdUDEBfL5DdgD1/8gahsYnauqIWFbq0iK6tO6CQ== + dependencies: + npm-package-arg "^12.0.0" + npm-registry-fetch "^18.0.1" + +libnpmdiff@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/libnpmdiff/-/libnpmdiff-7.0.0.tgz#808893a36d673e46c927e4a0a836b3742191d307" + integrity sha512-MjvsBJL1AT4ofsSsBRse5clxv7gfPbdgzT0VE+xmVTxE8M92T22laeX9vqFhaQKInSeKiZ2L9w/FVhoCCGPdUg== + dependencies: + "@npmcli/arborist" "^8.0.0" + "@npmcli/installed-package-contents" "^3.0.0" + binary-extensions "^2.3.0" + diff "^5.1.0" + minimatch "^9.0.4" + npm-package-arg "^12.0.0" + pacote "^19.0.0" + tar "^6.2.1" + +libnpmexec@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/libnpmexec/-/libnpmexec-9.0.0.tgz#4bb43ec4ba88bd33750480fcf73935837af061bf" + integrity sha512-5dOwgvt0srgrOkwsjNWokx23BvQXEaUo87HWIY+9lymvAto2VSunNS+Ih7WXVwvkJk7cZ0jhS2H3rNK8G9Anxw== + dependencies: + "@npmcli/arborist" "^8.0.0" + "@npmcli/run-script" "^9.0.1" + ci-info "^4.0.0" + npm-package-arg "^12.0.0" + pacote "^19.0.0" + proc-log "^5.0.0" + read "^4.0.0" + read-package-json-fast "^4.0.0" + semver "^7.3.7" + walk-up-path "^3.0.1" + +libnpmfund@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/libnpmfund/-/libnpmfund-6.0.0.tgz#5f324e9b9fb440af9c197f3f147943362758b49b" + integrity sha512-+7ZTxPyJ0O/Y0xKoEd1CxPCUQ4ldn6EZ2qUMI/E1gJkfzcwb3AdFlSWk1WEXaGBu2+EqMrPf4Xu5lXFWw2Jd3w== + dependencies: + "@npmcli/arborist" "^8.0.0" + +libnpmhook@^11.0.0: + version "11.0.0" + resolved "https://registry.yarnpkg.com/libnpmhook/-/libnpmhook-11.0.0.tgz#b8caf6fe31666d7b18cbf61ce8b722dca1600943" + integrity sha512-Xc18rD9NFbRwZbYCQ+UCF5imPsiHSyuQA8RaCA2KmOUo8q4kmBX4JjGWzmZnxZCT8s6vwzmY1BvHNqBGdg9oBQ== + dependencies: + aproba "^2.0.0" + npm-registry-fetch "^18.0.1" + +libnpmorg@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/libnpmorg/-/libnpmorg-7.0.0.tgz#055dfdba32ac5e8757dd4b264f805b64cbd6980b" + integrity sha512-DcTodX31gDEiFrlIHurBQiBlBO6Var2KCqMVCk+HqZhfQXqUfhKGmFOp0UHr6HR1lkTVM0MzXOOYtUObk0r6Dg== + dependencies: + aproba "^2.0.0" + npm-registry-fetch "^18.0.1" + +libnpmpack@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/libnpmpack/-/libnpmpack-8.0.0.tgz#83cb6333861f8a0fe991420feaf0aa48a67d94bf" + integrity sha512-Z5zqR+j8PNOki97D4XnKlekLQjqJYkqCFZeac07XCJYA3aq6O7wYIpn7RqLcNfFm+u3ZsdblY2VQENMoiHA+FQ== + dependencies: + "@npmcli/arborist" "^8.0.0" + "@npmcli/run-script" "^9.0.1" + npm-package-arg "^12.0.0" + pacote "^19.0.0" + +libnpmpublish@^10.0.1: + version "10.0.1" + resolved "https://registry.yarnpkg.com/libnpmpublish/-/libnpmpublish-10.0.1.tgz#7a284565be164c2f8605225213316a0c1d0a9827" + integrity sha512-xNa1DQs9a8dZetNRV0ky686MNzv1MTqB3szgOlRR3Fr24x1gWRu7aB9OpLZsml0YekmtppgHBkyZ+8QZlzmEyw== + dependencies: + ci-info "^4.0.0" + normalize-package-data "^7.0.0" + npm-package-arg "^12.0.0" + npm-registry-fetch "^18.0.1" + proc-log "^5.0.0" + semver "^7.3.7" + sigstore "^3.0.0" + ssri "^12.0.0" + +libnpmsearch@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/libnpmsearch/-/libnpmsearch-8.0.0.tgz#ce2e28ad05a152c736d5ae86356aedd5a52406a5" + integrity sha512-W8FWB78RS3Nkl1gPSHOlF024qQvcoU/e3m9BGDuBfVZGfL4MJ91GXXb04w3zJCGOW9dRQUyWVEqupFjCrgltDg== + dependencies: + npm-registry-fetch "^18.0.1" + +libnpmteam@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/libnpmteam/-/libnpmteam-7.0.0.tgz#e8f40c4bc543b720da2cdd4385e2fafcd06c92c0" + integrity sha512-PKLOoVukN34qyJjgEm5DEOnDwZkeVMUHRx8NhcKDiCNJGPl7G/pF1cfBw8yicMwRlHaHkld1FdujOzKzy4AlwA== + dependencies: + aproba "^2.0.0" + npm-registry-fetch "^18.0.1" + +libnpmversion@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/libnpmversion/-/libnpmversion-7.0.0.tgz#b264a07662b31b78822ba870171088eca6466f38" + integrity sha512-0xle91R6F8r/Q/4tHOnyKko+ZSquEXNdxwRdKCPv4kC1cOVBMFXRsKKrVtRKtXcFn362U8ZlJefk4Apu00424g== + dependencies: + "@npmcli/git" "^6.0.1" + "@npmcli/run-script" "^9.0.1" + json-parse-even-better-errors "^4.0.0" + proc-log "^5.0.0" + semver "^7.3.7" + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash-es@^4.17.21: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee" + integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== + +lodash.capitalize@^4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz#f826c9b4e2a8511d84e3aca29db05e1a4f3b72a9" + integrity sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw== + +lodash.escaperegexp@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz#64762c48618082518ac3df4ccf5d5886dae20347" + integrity sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw== + +lodash.isplainobject@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" + integrity sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA== + +lodash.isstring@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" + integrity sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw== + +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +lodash.truncate@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" + integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== + +lodash.uniqby@^4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz#d99c07a669e9e6d24e1362dfe266c67616af1302" + integrity sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww== + +lodash@^4.17.10, lodash@^4.17.21, lodash@^4.17.4: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-symbols@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +loupe@^3.1.0: + version "3.1.2" + resolved "https://registry.yarnpkg.com/loupe/-/loupe-3.1.2.tgz#c86e0696804a02218f2206124c45d8b15291a240" + integrity sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg== + +lru-cache@^10.0.1, lru-cache@^10.2.0, lru-cache@^10.2.2: + version "10.4.3" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119" + integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== + +lru-cache@^11.0.0: + version "11.0.2" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-11.0.2.tgz#fbd8e7cf8211f5e7e5d91905c415a3f55755ca39" + integrity sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA== + +lru-cache@^7.7.1: + version "7.18.3" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89" + integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== + +lru-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/lru-queue/-/lru-queue-0.1.0.tgz#2738bd9f0d3cf4f84490c5736c48699ac632cda3" + integrity sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ== + dependencies: + es5-ext "~0.10.2" + +make-dir@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" + integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== + dependencies: + pify "^4.0.1" + semver "^5.6.0" + +make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +make-fetch-happen@^10.0.3: + version "10.2.1" + resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz#f5e3835c5e9817b617f2770870d9492d28678164" + integrity sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w== + dependencies: + agentkeepalive "^4.2.1" + cacache "^16.1.0" + http-cache-semantics "^4.1.0" + http-proxy-agent "^5.0.0" + https-proxy-agent "^5.0.0" + is-lambda "^1.0.1" + lru-cache "^7.7.1" + minipass "^3.1.6" + minipass-collect "^1.0.2" + minipass-fetch "^2.0.3" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.4" + negotiator "^0.6.3" + promise-retry "^2.0.1" + socks-proxy-agent "^7.0.0" + ssri "^9.0.0" + +make-fetch-happen@^13.0.0: + version "13.0.1" + resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-13.0.1.tgz#273ba2f78f45e1f3a6dca91cede87d9fa4821e36" + integrity sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA== + dependencies: + "@npmcli/agent" "^2.0.0" + cacache "^18.0.0" + http-cache-semantics "^4.1.1" + is-lambda "^1.0.1" + minipass "^7.0.2" + minipass-fetch "^3.0.0" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.4" + negotiator "^0.6.3" + proc-log "^4.2.0" + promise-retry "^2.0.1" + ssri "^10.0.0" + +make-fetch-happen@^14.0.0, make-fetch-happen@^14.0.1, make-fetch-happen@^14.0.3: + version "14.0.3" + resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-14.0.3.tgz#d74c3ecb0028f08ab604011e0bc6baed483fcdcd" + integrity sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ== + dependencies: + "@npmcli/agent" "^3.0.0" + cacache "^19.0.1" + http-cache-semantics "^4.1.1" + minipass "^7.0.2" + minipass-fetch "^4.0.0" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.4" + negotiator "^1.0.0" + proc-log "^5.0.0" + promise-retry "^2.0.1" + ssri "^12.0.0" + +mathml-tag-names@^2.1.3: + version "2.1.3" + resolved "https://registry.yarnpkg.com/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz#4ddadd67308e780cf16a47685878ee27b736a0a3" + integrity sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg== + +mdn-data@2.12.1: + version "2.12.1" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.12.1.tgz#10cb462215c13d95c92ff60d0fb3becac1bbb924" + integrity sha512-rsfnCbOHjqrhWxwt5/wtSLzpoKTzW7OXdT5lLOIH1OTYhWu9rRJveGq0sKvDZODABH7RX+uoR+DYcpFnq4Tf6Q== + +mdn-data@^2.12.2: + version "2.12.2" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.12.2.tgz#9ae6c41a9e65adf61318b32bff7b64fbfb13f8cf" + integrity sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA== + +memfs@^4.9.3: + version "4.14.1" + resolved "https://registry.yarnpkg.com/memfs/-/memfs-4.14.1.tgz#3e2dcba9b5a8dd559e41e4603b7b1eff7a75cfb3" + integrity sha512-Fq5CMEth+2iprLJ5mNizRcWuiwRZYjNkUD0zKk224jZunE9CRacTRDK8QLALbMBlNX2y3nY6lKZbesCwDwacig== + dependencies: + "@jsonjoy.com/json-pack" "^1.0.3" + "@jsonjoy.com/util" "^1.3.0" + tree-dump "^1.0.1" + tslib "^2.0.0" + +memoizee@^0.4.15: + version "0.4.17" + resolved "https://registry.yarnpkg.com/memoizee/-/memoizee-0.4.17.tgz#942a5f8acee281fa6fb9c620bddc57e3b7382949" + integrity sha512-DGqD7Hjpi/1or4F/aYAspXKNm5Yili0QDAFAY4QYvpqpgiY6+1jOfqpmByzjxbWd/T9mChbCArXAbDAsTm5oXA== + dependencies: + d "^1.0.2" + es5-ext "^0.10.64" + es6-weak-map "^2.0.3" + event-emitter "^0.3.5" + is-promise "^2.2.2" + lru-queue "^0.1.0" + next-tick "^1.1.0" + timers-ext "^0.1.7" + +meow@^13.0.0, meow@^13.2.0: + version "13.2.0" + resolved "https://registry.yarnpkg.com/meow/-/meow-13.2.0.tgz#6b7d63f913f984063b3cc261b6e8800c4cd3474f" + integrity sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA== + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +microbuffer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/microbuffer/-/microbuffer-1.0.0.tgz#8b3832ed40c87d51f47bb234913a698a756d19d2" + integrity sha512-O/SUXauVN4x6RaEJFqSPcXNtLFL+QzJHKZlyDVYFwcDDRVca3Fa/37QXXC+4zAGGa4YhHrHxKXuuHvLDIQECtA== + +micromatch@^4.0.0, micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" + integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== + dependencies: + braces "^3.0.3" + picomatch "^2.3.1" + +mime-db@1.52.0: + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@^2.1.12: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mime@^1.4.1: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +mime@^4.0.0: + version "4.0.4" + resolved "https://registry.yarnpkg.com/mime/-/mime-4.0.4.tgz#9f851b0fc3c289d063b20a7a8055b3014b25664b" + integrity sha512-v8yqInVjhXyqP6+Kw4fV3ZzeMRqEW6FotRsKXjRS5VMTNIuXsdRoAvklpoRgSqXm6o9VNH4/C0mgedko9DdLsQ== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +minimatch@^10.0.0: + version "10.0.1" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-10.0.1.tgz#ce0521856b453c86e25f2c4c0d03e6ff7ddc440b" + integrity sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ== + dependencies: + brace-expansion "^2.0.1" + +minimatch@^3.1.1, minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^5.0.1, minimatch@^5.1.6: + version "5.1.6" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" + integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== + dependencies: + brace-expansion "^2.0.1" + +minimatch@^9.0.0, minimatch@^9.0.4, minimatch@^9.0.5: + version "9.0.5" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5" + integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== + dependencies: + brace-expansion "^2.0.1" + +minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + +minipass-collect@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" + integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== + dependencies: + minipass "^3.0.0" + +minipass-collect@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz#1621bc77e12258a12c60d34e2276ec5c20680863" + integrity sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw== dependencies: - "minipass" "^3.1.6" - "minipass-sized" "^1.0.3" - "minizlib" "^2.1.2" + minipass "^7.0.3" + +minipass-fetch@^2.0.3: + version "2.1.2" + resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-2.1.2.tgz#95560b50c472d81a3bc76f20ede80eaed76d8add" + integrity sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA== + dependencies: + minipass "^3.1.6" + minipass-sized "^1.0.3" + minizlib "^2.1.2" optionalDependencies: - "encoding" "^0.1.13" + encoding "^0.1.13" -"minipass-flush@^1.0.5": - "integrity" "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" - "resolved" "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz" - "version" "1.0.5" +minipass-fetch@^3.0.0: + version "3.0.5" + resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-3.0.5.tgz#f0f97e40580affc4a35cc4a1349f05ae36cb1e4c" + integrity sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg== dependencies: - "minipass" "^3.0.0" - -"minipass-json-stream@^1.0.1": - "resolved" "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz" - "version" "1.0.1" - dependencies: - "jsonparse" "^1.3.1" - "minipass" "^3.0.0" - -"minipass-pipeline@^1.2.2", "minipass-pipeline@^1.2.4": - "integrity" "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" - "resolved" "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz" - "version" "1.2.4" - dependencies: - "minipass" "^3.0.0" - -"minipass-sized@^1.0.3": - "integrity" "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==" - "resolved" "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz" - "version" "1.0.3" - dependencies: - "minipass" "^3.0.0" - -"minipass@^3.0.0", "minipass@^3.1.0", "minipass@^3.1.1", "minipass@^3.1.3": - "integrity" "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==" - "resolved" "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz" - "version" "3.1.6" - dependencies: - "yallist" "^4.0.0" - -"minipass@^3.1.6": - "version" "3.3.4" - dependencies: - "yallist" "^4.0.0" - -"minizlib@^2.0.0", "minizlib@^2.1.1", "minizlib@^2.1.2": - "integrity" "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" - "resolved" "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz" - "version" "2.1.2" - dependencies: - "minipass" "^3.0.0" - "yallist" "^4.0.0" - -"mkdirp-infer-owner@^2.0.0": - "resolved" "https://registry.npmjs.org/mkdirp-infer-owner/-/mkdirp-infer-owner-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "chownr" "^2.0.0" - "infer-owner" "^1.0.4" - "mkdirp" "^1.0.3" - -"mkdirp@^1.0.3", "mkdirp@^1.0.4": - "integrity" "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" - "resolved" "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz" - "version" "1.0.4" - -"modify-values@^1.0.0": - "integrity" "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==" - "resolved" "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz" - "version" "1.0.1" - -"ms@^2.0.0", "ms@^2.1.1", "ms@2.1.2": - "integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" - "version" "2.1.2" - -"ms@^2.1.2": - "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" - "version" "2.1.3" - -"ms@2.0.0": - "integrity" "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - "resolved" "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" - "version" "2.0.0" - -"mute-stream@~0.0.4": - "resolved" "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz" - "version" "0.0.8" - -"nan@^2.14.2": - "integrity" "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==" - "resolved" "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz" - "version" "2.15.0" - -"natural-compare@^1.4.0": - "integrity" "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" - "resolved" "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" - "version" "1.4.0" - -"neatequal@^1.0.0": - "integrity" "sha1-LuEhG8n6bkxVcV/SELsFYC6xrjs=" - "resolved" "https://registry.npmjs.org/neatequal/-/neatequal-1.0.0.tgz" - "version" "1.0.0" - dependencies: - "varstream" "^0.3.2" - -"needle@^2.5.2": - "integrity" "sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==" - "resolved" "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz" - "version" "2.9.1" - dependencies: - "debug" "^3.2.6" - "iconv-lite" "^0.4.4" - "sax" "^1.2.4" - -"negotiator@^0.6.2": - "integrity" "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" - "resolved" "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz" - "version" "0.6.3" - -"negotiator@^0.6.3": - "resolved" "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz" - "version" "0.6.3" - -"neo-async@^2.6.0": - "integrity" "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" - "resolved" "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz" - "version" "2.6.2" - -"nerf-dart@^1.0.0": - "integrity" "sha1-5tq3/r9a2Bbqgc9cYpxaDr3nLBo=" - "resolved" "https://registry.npmjs.org/nerf-dart/-/nerf-dart-1.0.0.tgz" - "version" "1.0.0" - -"next-tick@^1.1.0": - "integrity" "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" - "resolved" "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz" - "version" "1.1.0" - -"next-tick@~1.0.0", "next-tick@1": - "integrity" "sha1-yobR/ogoFpsBICCOPchCS524NCw=" - "resolved" "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz" - "version" "1.0.0" - -"no-case@^3.0.4": - "integrity" "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==" - "resolved" "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz" - "version" "3.0.4" - dependencies: - "lower-case" "^2.0.2" - "tslib" "^2.0.3" - -"node-emoji@^1.11.0": - "integrity" "sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==" - "resolved" "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz" - "version" "1.11.0" - dependencies: - "lodash" "^4.17.21" - -"node-fetch@^2.6.7", "node-fetch@2.6.7": - "integrity" "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==" - "resolved" "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz" - "version" "2.6.7" - dependencies: - "whatwg-url" "^5.0.0" - -"node-gyp@^8.1.0": - "integrity" "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==" - "resolved" "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz" - "version" "8.4.1" - dependencies: - "env-paths" "^2.2.0" - "glob" "^7.1.4" - "graceful-fs" "^4.2.6" - "make-fetch-happen" "^9.1.0" - "nopt" "^5.0.0" - "npmlog" "^6.0.0" - "rimraf" "^3.0.2" - "semver" "^7.3.5" - "tar" "^6.1.2" - "which" "^2.0.2" - -"node-gyp@^9.0.0", "node-gyp@^9.1.0": - "version" "9.1.0" - dependencies: - "env-paths" "^2.2.0" - "glob" "^7.1.4" - "graceful-fs" "^4.2.6" - "make-fetch-happen" "^10.0.3" - "nopt" "^5.0.0" - "npmlog" "^6.0.0" - "rimraf" "^3.0.2" - "semver" "^7.3.5" - "tar" "^6.1.2" - "which" "^2.0.2" - -"node-typescript-compiler@^2.2.1": - "integrity" "sha512-MeyHx2cQtrJKFxxaPnrMs01fvJDMpuxEODOHVBw7/9LKVQMaiciZCW3gShdLuwuLuU/ZSgpqZrJKUbqQ5OKVFA==" - "resolved" "https://registry.npmjs.org/node-typescript-compiler/-/node-typescript-compiler-2.3.0.tgz" - "version" "2.3.0" - dependencies: - "lodash" "^4" - "path-exists" "^4" - "tildify" "^2" - -"nodemon@^2.0.20": - "integrity" "sha512-Km2mWHKKY5GzRg6i1j5OxOHQtuvVsgskLfigG25yTtbyfRGn/GNvIbRyOf1PSCKJ2aT/58TiuUsuOU5UToVViw==" - "resolved" "https://registry.npmjs.org/nodemon/-/nodemon-2.0.20.tgz" - "version" "2.0.20" - dependencies: - "chokidar" "^3.5.2" - "debug" "^3.2.7" - "ignore-by-default" "^1.0.1" - "minimatch" "^3.1.2" - "pstree.remy" "^1.1.8" - "semver" "^5.7.1" - "simple-update-notifier" "^1.0.7" - "supports-color" "^5.5.0" - "touch" "^3.1.0" - "undefsafe" "^2.0.5" - -"nopt@^5.0.0": - "integrity" "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==" - "resolved" "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz" - "version" "5.0.0" - dependencies: - "abbrev" "1" - -"nopt@^6.0.0": - "resolved" "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz" - "version" "6.0.0" - dependencies: - "abbrev" "^1.0.0" - -"nopt@~1.0.10": - "integrity" "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==" - "resolved" "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz" - "version" "1.0.10" - dependencies: - "abbrev" "1" - -"normalize-package-data@^2.5.0": - "integrity" "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==" - "resolved" "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz" - "version" "2.5.0" - dependencies: - "hosted-git-info" "^2.1.4" - "resolve" "^1.10.0" - "semver" "2 || 3 || 4 || 5" - "validate-npm-package-license" "^3.0.1" - -"normalize-package-data@^3.0.0": - "integrity" "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==" - "resolved" "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz" - "version" "3.0.3" - dependencies: - "hosted-git-info" "^4.0.1" - "is-core-module" "^2.5.0" - "semver" "^7.3.4" - "validate-npm-package-license" "^3.0.1" - -"normalize-package-data@^4.0.0": - "resolved" "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-4.0.1.tgz" - "version" "4.0.1" - dependencies: - "hosted-git-info" "^5.0.0" - "is-core-module" "^2.8.1" - "semver" "^7.3.5" - "validate-npm-package-license" "^3.0.4" - -"normalize-path@^3.0.0", "normalize-path@~3.0.0": - "integrity" "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - "resolved" "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" - "version" "3.0.0" - -"normalize-url@^6.0.0": - "integrity" "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" - "resolved" "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz" - "version" "6.1.0" - -"npm-audit-report@^3.0.0": - "resolved" "https://registry.npmjs.org/npm-audit-report/-/npm-audit-report-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "chalk" "^4.0.0" - -"npm-bundled@^1.1.1": - "version" "1.1.2" - dependencies: - "npm-normalize-package-bin" "^1.0.1" - -"npm-bundled@^2.0.0": - "resolved" "https://registry.npmjs.org/npm-bundled/-/npm-bundled-2.0.1.tgz" - "version" "2.0.1" - dependencies: - "npm-normalize-package-bin" "^2.0.0" - -"npm-install-checks@^5.0.0": - "resolved" "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-5.0.0.tgz" - "version" "5.0.0" - dependencies: - "semver" "^7.1.1" - -"npm-normalize-package-bin@^1.0.1": - "resolved" "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz" - "version" "1.0.1" - -"npm-normalize-package-bin@^2.0.0": - "version" "2.0.0" - -"npm-package-arg@^9.0.0", "npm-package-arg@^9.0.1", "npm-package-arg@^9.1.0": - "version" "9.1.0" - dependencies: - "hosted-git-info" "^5.0.0" - "proc-log" "^2.0.1" - "semver" "^7.3.5" - "validate-npm-package-name" "^4.0.0" - -"npm-packlist@^5.1.0": - "resolved" "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.1.3.tgz" - "version" "5.1.3" - dependencies: - "glob" "^8.0.1" - "ignore-walk" "^5.0.1" - "npm-bundled" "^2.0.0" - "npm-normalize-package-bin" "^2.0.0" - -"npm-pick-manifest@^7.0.0", "npm-pick-manifest@^7.0.2": - "resolved" "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-7.0.2.tgz" - "version" "7.0.2" - dependencies: - "npm-install-checks" "^5.0.0" - "npm-normalize-package-bin" "^2.0.0" - "npm-package-arg" "^9.0.0" - "semver" "^7.3.5" - -"npm-profile@^6.2.0": - "resolved" "https://registry.npmjs.org/npm-profile/-/npm-profile-6.2.1.tgz" - "version" "6.2.1" - dependencies: - "npm-registry-fetch" "^13.0.1" - "proc-log" "^2.0.0" - -"npm-registry-fetch@^13.0.0", "npm-registry-fetch@^13.0.1", "npm-registry-fetch@^13.3.1": - "resolved" "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-13.3.1.tgz" - "version" "13.3.1" - dependencies: - "make-fetch-happen" "^10.0.6" - "minipass" "^3.1.6" - "minipass-fetch" "^2.0.3" - "minipass-json-stream" "^1.0.1" - "minizlib" "^2.1.2" - "npm-package-arg" "^9.0.1" - "proc-log" "^2.0.0" + minipass "^7.0.3" + minipass-sized "^1.0.3" + minizlib "^2.1.2" + optionalDependencies: + encoding "^0.1.13" -"npm-run-path@^4.0.1": - "integrity" "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" - "resolved" "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz" - "version" "4.0.1" +minipass-fetch@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-4.0.0.tgz#b8ea716464747aeafb7edf2e110114c38089a09c" + integrity sha512-2v6aXUXwLP1Epd/gc32HAMIWoczx+fZwEPRHm/VwtrJzRGwR1qGZXEYV3Zp8ZjjbwaZhMrM6uHV4KVkk+XCc2w== dependencies: - "path-key" "^3.0.0" - -"npm-user-validate@^1.0.1": - "resolved" "https://registry.npmjs.org/npm-user-validate/-/npm-user-validate-1.0.1.tgz" - "version" "1.0.1" - -"npm@^8.3.0": - "integrity" "sha512-0QjmyPtDxSyMWWD8I91QGbrgx9KzbV6C9FK1liEb/K0zppiZkr5KxXc990G+LzPwBHDfRjUBlO9T1qZ08vl9mA==" - "resolved" "https://registry.npmjs.org/npm/-/npm-8.19.3.tgz" - "version" "8.19.3" + minipass "^7.0.3" + minipass-sized "^1.0.3" + minizlib "^3.0.1" + optionalDependencies: + encoding "^0.1.13" + +minipass-flush@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" + integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== + dependencies: + minipass "^3.0.0" + +minipass-pipeline@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" + integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== + dependencies: + minipass "^3.0.0" + +minipass-sized@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70" + integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g== + dependencies: + minipass "^3.0.0" + +minipass@^3.0.0, minipass@^3.1.1, minipass@^3.1.6: + version "3.3.6" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" + integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== + dependencies: + yallist "^4.0.0" + +minipass@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" + integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== + +"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.2, minipass@^7.0.3, minipass@^7.0.4, minipass@^7.1.1, minipass@^7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707" + integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== + +minizlib@^2.1.1, minizlib@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" + integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== + dependencies: + minipass "^3.0.0" + yallist "^4.0.0" + +minizlib@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-3.0.1.tgz#46d5329d1eb3c83924eff1d3b858ca0a31581012" + integrity sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg== + dependencies: + minipass "^7.0.4" + rimraf "^5.0.5" + +mkdirp@^1.0.3, mkdirp@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + +mkdirp@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-3.0.1.tgz#e44e4c5607fb279c168241713cc6e0fea9adcb50" + integrity sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg== + +mocha@^10.8.2: + version "10.8.2" + resolved "https://registry.yarnpkg.com/mocha/-/mocha-10.8.2.tgz#8d8342d016ed411b12a429eb731b825f961afb96" + integrity sha512-VZlYo/WE8t1tstuRmqgeyBgCbJc/lEdopaa+axcKzTBJ+UIdlAB9XnmvTCAH4pwR4ElNInaedhEBmZD8iCSVEg== + dependencies: + ansi-colors "^4.1.3" + browser-stdout "^1.3.1" + chokidar "^3.5.3" + debug "^4.3.5" + diff "^5.2.0" + escape-string-regexp "^4.0.0" + find-up "^5.0.0" + glob "^8.1.0" + he "^1.2.0" + js-yaml "^4.1.0" + log-symbols "^4.1.0" + minimatch "^5.1.6" + ms "^2.1.3" + serialize-javascript "^6.0.2" + strip-json-comments "^3.1.1" + supports-color "^8.1.1" + workerpool "^6.5.1" + yargs "^16.2.0" + yargs-parser "^20.2.9" + yargs-unparser "^2.0.0" + +ms@^2.0.0, ms@^2.1.1, ms@^2.1.2, ms@^2.1.3: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +mute-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-2.0.0.tgz#a5446fc0c512b71c83c44d908d5c7b7b4c493b2b" + integrity sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA== + +nan@^2.14.2: + version "2.22.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.22.0.tgz#31bc433fc33213c97bad36404bb68063de604de3" + integrity sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw== + +nanoid@^3.3.7: + version "3.3.8" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.8.tgz#b1be3030bee36aaff18bacb375e5cce521684baf" + integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +needle@^3.1.0: + version "3.3.1" + resolved "https://registry.yarnpkg.com/needle/-/needle-3.3.1.tgz#63f75aec580c2e77e209f3f324e2cdf3d29bd049" + integrity sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q== + dependencies: + iconv-lite "^0.6.3" + sax "^1.2.4" + +negotiator@^0.6.3: + version "0.6.4" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.4.tgz#777948e2452651c570b712dd01c23e262713fff7" + integrity sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w== + +negotiator@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-1.0.0.tgz#b6c91bb47172d69f93cfd7c357bbb529019b5f6a" + integrity sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg== + +neo-async@^2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== + +nerf-dart@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/nerf-dart/-/nerf-dart-1.0.0.tgz#e6dab7febf5ad816ea81cf5c629c5a0ebde72c1a" + integrity sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g== + +next-tick@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.1.0.tgz#1836ee30ad56d67ef281b22bd199f709449b35eb" + integrity sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ== + +node-domexception@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + +node-fetch@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.3.2.tgz#d1e889bacdf733b4ff3b2b243eb7a12866a0b78b" + integrity sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA== + dependencies: + data-uri-to-buffer "^4.0.0" + fetch-blob "^3.1.4" + formdata-polyfill "^4.0.10" + +node-gyp@^10.0.0, node-gyp@^10.2.0: + version "10.2.0" + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-10.2.0.tgz#80101c4aa4f7ab225f13fcc8daaaac4eb1a8dd86" + integrity sha512-sp3FonBAaFe4aYTcFdZUn2NYkbP7xroPGYvQmP4Nl5PxamznItBnNCgjrVTKrEfQynInMsJvZrdmqUnysCJ8rw== + dependencies: + env-paths "^2.2.0" + exponential-backoff "^3.1.1" + glob "^10.3.10" + graceful-fs "^4.2.6" + make-fetch-happen "^13.0.0" + nopt "^7.0.0" + proc-log "^4.1.0" + semver "^7.3.5" + tar "^6.2.1" + which "^4.0.0" + +node-gyp@^9.0.0: + version "9.4.1" + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-9.4.1.tgz#8a1023e0d6766ecb52764cc3a734b36ff275e185" + integrity sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ== + dependencies: + env-paths "^2.2.0" + exponential-backoff "^3.1.1" + glob "^7.1.4" + graceful-fs "^4.2.6" + make-fetch-happen "^10.0.3" + nopt "^6.0.0" + npmlog "^6.0.0" + rimraf "^3.0.2" + semver "^7.3.5" + tar "^6.1.2" + which "^2.0.2" + +nodemon@^3.1.7: + version "3.1.7" + resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-3.1.7.tgz#07cb1f455f8bece6a499e0d72b5e029485521a54" + integrity sha512-hLj7fuMow6f0lbB0cD14Lz2xNjwsyruH251Pk4t/yIitCFJbmY1myuLlHm/q06aST4jg6EgAh74PIBBrRqpVAQ== + dependencies: + chokidar "^3.5.2" + debug "^4" + ignore-by-default "^1.0.1" + minimatch "^3.1.2" + pstree.remy "^1.1.8" + semver "^7.5.3" + simple-update-notifier "^2.0.0" + supports-color "^5.5.0" + touch "^3.1.0" + undefsafe "^2.0.5" + +nopt@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-6.0.0.tgz#245801d8ebf409c6df22ab9d95b65e1309cdb16d" + integrity sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g== + dependencies: + abbrev "^1.0.0" + +nopt@^7.0.0: + version "7.2.1" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-7.2.1.tgz#1cac0eab9b8e97c9093338446eddd40b2c8ca1e7" + integrity sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w== + dependencies: + abbrev "^2.0.0" + +nopt@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-8.0.0.tgz#644f1e78da564b70e3606ab8db4836b0e32e198a" + integrity sha512-1L/fTJ4UmV/lUxT2Uf006pfZKTvAgCF+chz+0OgBHO8u2Z67pE7AaAUUj7CJy0lXqHmymUvGFt6NE9R3HER0yw== + dependencies: + abbrev "^2.0.0" + +normalize-package-data@^6.0.0: + version "6.0.2" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-6.0.2.tgz#a7bc22167fe24025412bcff0a9651eb768b03506" + integrity sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g== + dependencies: + hosted-git-info "^7.0.0" + semver "^7.3.5" + validate-npm-package-license "^3.0.4" + +normalize-package-data@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-7.0.0.tgz#ab4f49d02f2e25108d3f4326f3c13f0de6fa6a0a" + integrity sha512-k6U0gKRIuNCTkwHGZqblCfLfBRh+w1vI6tBo+IeJwq2M8FUiOqhX7GH+GArQGScA7azd1WfyRCvxoXDO3hQDIA== + dependencies: + hosted-git-info "^8.0.0" + semver "^7.3.5" + validate-npm-package-license "^3.0.4" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-url@^8.0.0: + version "8.0.1" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-8.0.1.tgz#9b7d96af9836577c58f5883e939365fa15623a4a" + integrity sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w== + +npm-audit-report@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/npm-audit-report/-/npm-audit-report-6.0.0.tgz#0262e5e2b674fabf0ea47e900fc7384b83de0fbb" + integrity sha512-Ag6Y1irw/+CdSLqEEAn69T8JBgBThj5mw0vuFIKeP7hATYuQuS5jkMjK6xmVB8pr7U4g5Audbun0lHhBDMIBRA== + +npm-bundled@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-4.0.0.tgz#f5b983f053fe7c61566cf07241fab2d4e9d513d3" + integrity sha512-IxaQZDMsqfQ2Lz37VvyyEtKLe8FsRZuysmedy/N06TU1RyVppYKXrO4xIhR0F+7ubIBox6Q7nir6fQI3ej39iA== + dependencies: + npm-normalize-package-bin "^4.0.0" + +npm-install-checks@^7.1.0, npm-install-checks@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-7.1.1.tgz#e9d679fc8a1944c75cdcc96478a22f9d0f763632" + integrity sha512-u6DCwbow5ynAX5BdiHQ9qvexme4U3qHW3MWe5NqH+NeBm0LbiH6zvGjNNew1fY+AZZUtVHbOPF3j7mJxbUzpXg== + dependencies: + semver "^7.1.1" + +npm-normalize-package-bin@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-4.0.0.tgz#df79e70cd0a113b77c02d1fe243c96b8e618acb1" + integrity sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w== + +npm-package-arg@^12.0.0: + version "12.0.0" + resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-12.0.0.tgz#c2a6631c09d244c6bc35a46c38cbd94d53e9829a" + integrity sha512-ZTE0hbwSdTNL+Stx2zxSqdu2KZfNDcrtrLdIk7XGnQFYBWYDho/ORvXtn5XEePcL3tFpGjHCV3X3xrtDh7eZ+A== + dependencies: + hosted-git-info "^8.0.0" + proc-log "^5.0.0" + semver "^7.3.5" + validate-npm-package-name "^6.0.0" + +npm-packlist@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-9.0.0.tgz#8e9b061bab940de639dd93d65adc95c34412c7d0" + integrity sha512-8qSayfmHJQTx3nJWYbbUmflpyarbLMBc6LCAjYsiGtXxDB68HaZpb8re6zeaLGxZzDuMdhsg70jryJe+RrItVQ== + dependencies: + ignore-walk "^7.0.0" + +npm-pick-manifest@^10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-10.0.0.tgz#6cc120c6473ceea56dfead500f00735b2b892851" + integrity sha512-r4fFa4FqYY8xaM7fHecQ9Z2nE9hgNfJR+EmoKv0+chvzWkBcORX3r0FpTByP+CbOVJDladMXnPQGVN8PBLGuTQ== + dependencies: + npm-install-checks "^7.1.0" + npm-normalize-package-bin "^4.0.0" + npm-package-arg "^12.0.0" + semver "^7.3.5" + +npm-profile@^11.0.1: + version "11.0.1" + resolved "https://registry.yarnpkg.com/npm-profile/-/npm-profile-11.0.1.tgz#6ffac43f3d186316d37e80986d84aef2470269a2" + integrity sha512-HP5Cw9WHwFS9vb4fxVlkNAQBUhVL5BmW6rAR+/JWkpwqcFJid7TihKUdYDWqHl0NDfLd0mpucheGySqo8ysyfw== + dependencies: + npm-registry-fetch "^18.0.0" + proc-log "^5.0.0" + +npm-registry-fetch@^18.0.0, npm-registry-fetch@^18.0.1, npm-registry-fetch@^18.0.2: + version "18.0.2" + resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-18.0.2.tgz#340432f56b5a8b1af068df91aae0435d2de646b5" + integrity sha512-LeVMZBBVy+oQb5R6FDV9OlJCcWDU+al10oKpe+nsvcHnG24Z3uM3SvJYKfGJlfGjVU8v9liejCrUR/M5HO5NEQ== + dependencies: + "@npmcli/redact" "^3.0.0" + jsonparse "^1.3.1" + make-fetch-happen "^14.0.0" + minipass "^7.0.2" + minipass-fetch "^4.0.0" + minizlib "^3.0.1" + npm-package-arg "^12.0.0" + proc-log "^5.0.0" + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +npm-run-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-6.0.0.tgz#25cfdc4eae04976f3349c0b1afc089052c362537" + integrity sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA== + dependencies: + path-key "^4.0.0" + unicorn-magic "^0.3.0" + +npm-user-validate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/npm-user-validate/-/npm-user-validate-3.0.0.tgz#9b1410796bf1f1d78297a8096328c55d3083f233" + integrity sha512-9xi0RdSmJ4mPYTC393VJPz1Sp8LyCx9cUnm/L9Qcb3cFO8gjT4mN20P9FAsea8qDHdQ7LtcN8VLh2UT47SdKCw== + +npm@^10.5.0: + version "10.9.1" + resolved "https://registry.yarnpkg.com/npm/-/npm-10.9.1.tgz#ab141c1229765c11c8c59060fc9cf450a2207bd6" + integrity sha512-yJUw03xLqjiv1D52oHeoS5qmOEC5hkJlhP1cWlSrCgshuxWVyFEEK3M3hLC0NwbTaklLTYrhoIanYsuNP5WUKg== dependencies: "@isaacs/string-locale-compare" "^1.1.0" - "@npmcli/arborist" "^5.6.3" - "@npmcli/ci-detect" "^2.0.0" - "@npmcli/config" "^4.2.1" - "@npmcli/fs" "^2.1.0" - "@npmcli/map-workspaces" "^2.0.3" - "@npmcli/package-json" "^2.0.0" - "@npmcli/run-script" "^4.2.1" - "abbrev" "~1.1.1" - "archy" "~1.0.0" - "cacache" "^16.1.3" - "chalk" "^4.1.2" - "chownr" "^2.0.0" - "cli-columns" "^4.0.0" - "cli-table3" "^0.6.2" - "columnify" "^1.6.0" - "fastest-levenshtein" "^1.0.12" - "fs-minipass" "^2.1.0" - "glob" "^8.0.1" - "graceful-fs" "^4.2.10" - "hosted-git-info" "^5.2.1" - "ini" "^3.0.1" - "init-package-json" "^3.0.2" - "is-cidr" "^4.0.2" - "json-parse-even-better-errors" "^2.3.1" - "libnpmaccess" "^6.0.4" - "libnpmdiff" "^4.0.5" - "libnpmexec" "^4.0.14" - "libnpmfund" "^3.0.5" - "libnpmhook" "^8.0.4" - "libnpmorg" "^4.0.4" - "libnpmpack" "^4.1.3" - "libnpmpublish" "^6.0.5" - "libnpmsearch" "^5.0.4" - "libnpmteam" "^4.0.4" - "libnpmversion" "^3.0.7" - "make-fetch-happen" "^10.2.0" - "minimatch" "^5.1.0" - "minipass" "^3.1.6" - "minipass-pipeline" "^1.2.4" - "mkdirp" "^1.0.4" - "mkdirp-infer-owner" "^2.0.0" - "ms" "^2.1.2" - "node-gyp" "^9.1.0" - "nopt" "^6.0.0" - "npm-audit-report" "^3.0.0" - "npm-install-checks" "^5.0.0" - "npm-package-arg" "^9.1.0" - "npm-pick-manifest" "^7.0.2" - "npm-profile" "^6.2.0" - "npm-registry-fetch" "^13.3.1" - "npm-user-validate" "^1.0.1" - "npmlog" "^6.0.2" - "opener" "^1.5.2" - "p-map" "^4.0.0" - "pacote" "^13.6.2" - "parse-conflict-json" "^2.0.2" - "proc-log" "^2.0.1" - "qrcode-terminal" "^0.12.0" - "read" "~1.0.7" - "read-package-json" "^5.0.2" - "read-package-json-fast" "^2.0.3" - "readdir-scoped-modules" "^1.1.0" - "rimraf" "^3.0.2" - "semver" "^7.3.7" - "ssri" "^9.0.1" - "tar" "^6.1.11" - "text-table" "~0.2.0" - "tiny-relative-date" "^1.3.0" - "treeverse" "^2.0.0" - "validate-npm-package-name" "^4.0.0" - "which" "^2.0.2" - "write-file-atomic" "^4.0.1" - -"npmlog@^6.0.0": - "integrity" "sha512-BTHDvY6nrRHuRfyjt1MAufLxYdVXZfd099H4+i1f0lPywNQyI4foeNXJRObB/uy+TYqUW0vAD9gbdSOXPst7Eg==" - "resolved" "https://registry.npmjs.org/npmlog/-/npmlog-6.0.1.tgz" - "version" "6.0.1" - dependencies: - "are-we-there-yet" "^3.0.0" - "console-control-strings" "^1.1.0" - "gauge" "^4.0.0" - "set-blocking" "^2.0.0" - -"npmlog@^6.0.2": - "resolved" "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz" - "version" "6.0.2" - dependencies: - "are-we-there-yet" "^3.0.0" - "console-control-strings" "^1.1.0" - "gauge" "^4.0.3" - "set-blocking" "^2.0.0" - -"object-inspect@^1.11.0", "object-inspect@^1.9.0": - "integrity" "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==" - "resolved" "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz" - "version" "1.12.0" - -"object-keys@^1.0.12", "object-keys@^1.1.1": - "integrity" "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" - "resolved" "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" - "version" "1.1.1" - -"object.assign@^4.1.2": - "integrity" "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==" - "resolved" "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz" - "version" "4.1.2" - dependencies: - "call-bind" "^1.0.0" - "define-properties" "^1.1.3" - "has-symbols" "^1.0.1" - "object-keys" "^1.1.1" - -"object.values@^1.1.5": - "integrity" "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==" - "resolved" "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz" - "version" "1.1.5" - dependencies: - "call-bind" "^1.0.2" - "define-properties" "^1.1.3" - "es-abstract" "^1.19.1" - -"ometa@0.2.2": - "integrity" "sha1-9TxHNbptVq9aRrBN+3xDNMWW1E4=" - "resolved" "https://registry.npmjs.org/ometa/-/ometa-0.2.2.tgz" - "version" "0.2.2" - -"omod@1.2.0": - "integrity" "sha512-j5WX0CEw+3nbm0dtv0WAa6W0raizsi+B+GOJ1W1i7p7M35bx/yQqEEv8uSuGlvdjCCNzO8+5peHEdU8hC5oi5w==" - "resolved" "https://registry.npmjs.org/omod/-/omod-1.2.0.tgz" - "version" "1.2.0" - dependencies: - "tinycolor2" "^1.4.2" - -"once@^1.3.0", "once@^1.4.0": - "integrity" "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=" - "resolved" "https://registry.npmjs.org/once/-/once-1.4.0.tgz" - "version" "1.4.0" - dependencies: - "wrappy" "1" - -"onetime@^5.1.2": - "integrity" "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" - "resolved" "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" - "version" "5.1.2" - dependencies: - "mimic-fn" "^2.1.0" - -"opener@^1.5.2": - "resolved" "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz" - "version" "1.5.2" - -"optionator@^0.9.1": - "integrity" "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==" - "resolved" "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz" - "version" "0.9.1" - dependencies: - "deep-is" "^0.1.3" - "fast-levenshtein" "^2.0.6" - "levn" "^0.4.1" - "prelude-ls" "^1.2.1" - "type-check" "^0.4.0" - "word-wrap" "^1.2.3" - -"p-each-series@^2.1.0": - "integrity" "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==" - "resolved" "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz" - "version" "2.2.0" - -"p-filter@^2.0.0": - "integrity" "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==" - "resolved" "https://registry.npmjs.org/p-filter/-/p-filter-2.1.0.tgz" - "version" "2.1.0" - dependencies: - "p-map" "^2.0.0" - -"p-is-promise@^3.0.0": - "integrity" "sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==" - "resolved" "https://registry.npmjs.org/p-is-promise/-/p-is-promise-3.0.0.tgz" - "version" "3.0.0" - -"p-limit@^1.1.0": - "integrity" "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==" - "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz" - "version" "1.3.0" - dependencies: - "p-try" "^1.0.0" - -"p-limit@^2.2.0": - "integrity" "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" - "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" - "version" "2.3.0" - dependencies: - "p-try" "^2.0.0" - -"p-locate@^2.0.0": - "integrity" "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=" - "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "p-limit" "^1.1.0" - -"p-locate@^4.1.0": - "integrity" "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" - "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" - "version" "4.1.0" - dependencies: - "p-limit" "^2.2.0" - -"p-map@^2.0.0": - "integrity" "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" - "resolved" "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz" - "version" "2.1.0" - -"p-map@^4.0.0": - "integrity" "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" - "resolved" "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz" - "version" "4.0.0" - dependencies: - "aggregate-error" "^3.0.0" - -"p-reduce@^2.0.0": - "integrity" "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==" - "resolved" "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz" - "version" "2.1.0" - -"p-retry@^4.0.0": - "integrity" "sha512-e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==" - "resolved" "https://registry.npmjs.org/p-retry/-/p-retry-4.6.1.tgz" - "version" "4.6.1" - dependencies: - "@types/retry" "^0.12.0" - "retry" "^0.13.1" - -"p-try@^1.0.0": - "integrity" "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" - "resolved" "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz" - "version" "1.0.0" - -"p-try@^2.0.0": - "integrity" "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - "resolved" "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" - "version" "2.2.0" - -"pacote@^13.0.3", "pacote@^13.6.1", "pacote@^13.6.2": - "resolved" "https://registry.npmjs.org/pacote/-/pacote-13.6.2.tgz" - "version" "13.6.2" - dependencies: - "@npmcli/git" "^3.0.0" - "@npmcli/installed-package-contents" "^1.0.7" - "@npmcli/promise-spawn" "^3.0.0" - "@npmcli/run-script" "^4.1.0" - "cacache" "^16.0.0" - "chownr" "^2.0.0" - "fs-minipass" "^2.1.0" - "infer-owner" "^1.0.4" - "minipass" "^3.1.6" - "mkdirp" "^1.0.4" - "npm-package-arg" "^9.0.0" - "npm-packlist" "^5.1.0" - "npm-pick-manifest" "^7.0.0" - "npm-registry-fetch" "^13.0.1" - "proc-log" "^2.0.0" - "promise-retry" "^2.0.1" - "read-package-json" "^5.0.0" - "read-package-json-fast" "^2.0.3" - "rimraf" "^3.0.2" - "ssri" "^9.0.0" - "tar" "^6.1.11" - -"pako@^1.0.0": - "integrity" "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" - "resolved" "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz" - "version" "1.0.11" - -"param-case@^3.0.4": - "integrity" "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==" - "resolved" "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz" - "version" "3.0.4" - dependencies: - "dot-case" "^3.0.4" - "tslib" "^2.0.3" - -"parent-module@^1.0.0": - "integrity" "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" - "resolved" "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" - "version" "1.0.1" - dependencies: - "callsites" "^3.0.0" - -"parse-conflict-json@^2.0.1", "parse-conflict-json@^2.0.2": - "resolved" "https://registry.npmjs.org/parse-conflict-json/-/parse-conflict-json-2.0.2.tgz" - "version" "2.0.2" - dependencies: - "json-parse-even-better-errors" "^2.3.1" - "just-diff" "^5.0.1" - "just-diff-apply" "^5.2.0" - -"parse-json@^4.0.0": - "integrity" "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=" - "resolved" "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz" - "version" "4.0.0" - dependencies: - "error-ex" "^1.3.1" - "json-parse-better-errors" "^1.0.1" - -"parse-json@^5.0.0": - "integrity" "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" - "resolved" "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" - "version" "5.2.0" + "@npmcli/arborist" "^8.0.0" + "@npmcli/config" "^9.0.0" + "@npmcli/fs" "^4.0.0" + "@npmcli/map-workspaces" "^4.0.1" + "@npmcli/package-json" "^6.0.1" + "@npmcli/promise-spawn" "^8.0.2" + "@npmcli/redact" "^3.0.0" + "@npmcli/run-script" "^9.0.1" + "@sigstore/tuf" "^3.0.0" + abbrev "^3.0.0" + archy "~1.0.0" + cacache "^19.0.1" + chalk "^5.3.0" + ci-info "^4.1.0" + cli-columns "^4.0.0" + fastest-levenshtein "^1.0.16" + fs-minipass "^3.0.3" + glob "^10.4.5" + graceful-fs "^4.2.11" + hosted-git-info "^8.0.2" + ini "^5.0.0" + init-package-json "^7.0.1" + is-cidr "^5.1.0" + json-parse-even-better-errors "^4.0.0" + libnpmaccess "^9.0.0" + libnpmdiff "^7.0.0" + libnpmexec "^9.0.0" + libnpmfund "^6.0.0" + libnpmhook "^11.0.0" + libnpmorg "^7.0.0" + libnpmpack "^8.0.0" + libnpmpublish "^10.0.1" + libnpmsearch "^8.0.0" + libnpmteam "^7.0.0" + libnpmversion "^7.0.0" + make-fetch-happen "^14.0.3" + minimatch "^9.0.5" + minipass "^7.1.1" + minipass-pipeline "^1.2.4" + ms "^2.1.2" + node-gyp "^10.2.0" + nopt "^8.0.0" + normalize-package-data "^7.0.0" + npm-audit-report "^6.0.0" + npm-install-checks "^7.1.1" + npm-package-arg "^12.0.0" + npm-pick-manifest "^10.0.0" + npm-profile "^11.0.1" + npm-registry-fetch "^18.0.2" + npm-user-validate "^3.0.0" + p-map "^4.0.0" + pacote "^19.0.1" + parse-conflict-json "^4.0.0" + proc-log "^5.0.0" + qrcode-terminal "^0.12.0" + read "^4.0.0" + semver "^7.6.3" + spdx-expression-parse "^4.0.0" + ssri "^12.0.0" + supports-color "^9.4.0" + tar "^6.2.1" + text-table "~0.2.0" + tiny-relative-date "^1.3.0" + treeverse "^3.0.0" + validate-npm-package-name "^6.0.0" + which "^5.0.0" + write-file-atomic "^6.0.0" + +npmlog@^6.0.0: + version "6.0.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-6.0.2.tgz#c8166017a42f2dea92d6453168dd865186a70830" + integrity sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg== + dependencies: + are-we-there-yet "^3.0.0" + console-control-strings "^1.1.0" + gauge "^4.0.3" + set-blocking "^2.0.0" + +object-inspect@^1.13.1, object-inspect@^1.13.3: + version "1.13.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.3.tgz#f14c183de51130243d6d18ae149375ff50ea488a" + integrity sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA== + +object-is@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.6.tgz#1a6a53aed2dd8f7e6775ff870bea58545956ab07" + integrity sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.4, object.assign@^4.1.5: + version "4.1.5" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0" + integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ== + dependencies: + call-bind "^1.0.5" + define-properties "^1.2.1" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +object.fromentries@^2.0.8: + version "2.0.8" + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.8.tgz#f7195d8a9b97bd95cbc1999ea939ecd1a2b00c65" + integrity sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-object-atoms "^1.0.0" + +object.groupby@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.3.tgz#9b125c36238129f6f7b61954a1e7176148d5002e" + integrity sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + +object.values@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.2.0.tgz#65405a9d92cee68ac2d303002e0b8470a4d9ab1b" + integrity sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + +ometa@0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/ometa/-/ometa-0.2.2.tgz#f53c4735ba6d56af5a46b04dfb7c4334c596d44e" + integrity sha512-LZuoK/yjU3FvrxPjUXUlZ1bavCfBPqauA7fsNdwi+AVhRdyk2IzgP3JRnevvjzQ6fKHdUw8YISshf53FmpHrng== + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +open@^7.4.2: + version "7.4.2" + resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321" + integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q== + dependencies: + is-docker "^2.0.0" + is-wsl "^2.1.1" + +optionator@^0.9.3: + version "0.9.4" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz#7ea1c1a5d91d764fb282139c88fe11e182a3a734" + integrity sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g== + dependencies: + deep-is "^0.1.3" + fast-levenshtein "^2.0.6" + levn "^0.4.1" + prelude-ls "^1.2.1" + type-check "^0.4.0" + word-wrap "^1.2.5" + +os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== + +p-filter@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-filter/-/p-filter-4.1.0.tgz#fe0aa794e2dfad8ecf595a39a245484fcd09c6e4" + integrity sha512-37/tPdZ3oJwHaS3gNJdenCDB3Tz26i9sjhnguBtvN0vYlRIiDNnvTWkuh+0hETV9rLPdJ3rlL3yVOYPIAnM8rw== + dependencies: + p-map "^7.0.1" + +p-is-promise@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-3.0.0.tgz#58e78c7dfe2e163cf2a04ff869e7c1dba64a5971" + integrity sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ== + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +p-map@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" + integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== + dependencies: + aggregate-error "^3.0.0" + +p-map@^7.0.1, p-map@^7.0.2: + version "7.0.2" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-7.0.2.tgz#7c5119fada4755660f70199a66aa3fe2f85a1fe8" + integrity sha512-z4cYYMMdKHzw4O5UkWJImbZynVIo0lSGTXc7bzB1e/rrDqkgGUNysK/o4bTr+0+xKvvLoTyGqYC4Fgljy9qe1Q== + +p-reduce@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-2.1.0.tgz#09408da49507c6c274faa31f28df334bc712b64a" + integrity sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw== + +package-json-from-dist@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505" + integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== + +pacote@^19.0.0, pacote@^19.0.1: + version "19.0.1" + resolved "https://registry.yarnpkg.com/pacote/-/pacote-19.0.1.tgz#66d22dbd274ed8a7c30029d70eb8030f5151e6fc" + integrity sha512-zIpxWAsr/BvhrkSruspG8aqCQUUrWtpwx0GjiRZQhEM/pZXrigA32ElN3vTcCPUDOFmHr6SFxwYrvVUs5NTEUg== + dependencies: + "@npmcli/git" "^6.0.0" + "@npmcli/installed-package-contents" "^3.0.0" + "@npmcli/package-json" "^6.0.0" + "@npmcli/promise-spawn" "^8.0.0" + "@npmcli/run-script" "^9.0.0" + cacache "^19.0.0" + fs-minipass "^3.0.0" + minipass "^7.0.2" + npm-package-arg "^12.0.0" + npm-packlist "^9.0.0" + npm-pick-manifest "^10.0.0" + npm-registry-fetch "^18.0.0" + proc-log "^5.0.0" + promise-retry "^2.0.1" + sigstore "^3.0.0" + ssri "^12.0.0" + tar "^6.1.11" + +pacote@^20.0.0: + version "20.0.0" + resolved "https://registry.yarnpkg.com/pacote/-/pacote-20.0.0.tgz#c974373d8e0859d00e8f9158574350f8c1b168e5" + integrity sha512-pRjC5UFwZCgx9kUFDVM9YEahv4guZ1nSLqwmWiLUnDbGsjs+U5w7z6Uc8HNR1a6x8qnu5y9xtGE6D1uAuYz+0A== + dependencies: + "@npmcli/git" "^6.0.0" + "@npmcli/installed-package-contents" "^3.0.0" + "@npmcli/package-json" "^6.0.0" + "@npmcli/promise-spawn" "^8.0.0" + "@npmcli/run-script" "^9.0.0" + cacache "^19.0.0" + fs-minipass "^3.0.0" + minipass "^7.0.2" + npm-package-arg "^12.0.0" + npm-packlist "^9.0.0" + npm-pick-manifest "^10.0.0" + npm-registry-fetch "^18.0.0" + proc-log "^5.0.0" + promise-retry "^2.0.1" + sigstore "^3.0.0" + ssri "^12.0.0" + tar "^6.1.11" + +pako@^1.0.0: + version "1.0.11" + resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" + integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-conflict-json@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-conflict-json/-/parse-conflict-json-4.0.0.tgz#996b1edfc0c727583b56c7644dbb3258fc9e9e4b" + integrity sha512-37CN2VtcuvKgHUs8+0b1uJeEsbGn61GRHz469C94P5xiOoqpDYJYwjg4RY9Vmz39WyZAVkR5++nbJwLMIgOCnQ== + dependencies: + json-parse-even-better-errors "^4.0.0" + just-diff "^6.0.0" + just-diff-apply "^5.2.0" + +parse-json@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== dependencies: "@babel/code-frame" "^7.0.0" - "error-ex" "^1.3.1" - "json-parse-even-better-errors" "^2.3.0" - "lines-and-columns" "^1.1.6" - -"parse-node-version@^1.0.1": - "integrity" "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==" - "resolved" "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz" - "version" "1.0.1" - -"pascal-case@^3.1.2": - "integrity" "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==" - "resolved" "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz" - "version" "3.1.2" - dependencies: - "no-case" "^3.0.4" - "tslib" "^2.0.3" - -"path-case@^3.0.4": - "integrity" "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==" - "resolved" "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz" - "version" "3.0.4" - dependencies: - "dot-case" "^3.0.4" - "tslib" "^2.0.3" - -"path-exists@^3.0.0": - "integrity" "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" - "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz" - "version" "3.0.0" - -"path-exists@^4", "path-exists@^4.0.0": - "integrity" "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" - "version" "4.0.0" - -"path-is-absolute@^1.0.0": - "integrity" "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" - "resolved" "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" - "version" "1.0.1" - -"path-key@^3.0.0", "path-key@^3.1.0": - "integrity" "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" - "resolved" "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" - "version" "3.1.1" - -"path-parse@^1.0.7": - "integrity" "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - "resolved" "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" - "version" "1.0.7" - -"path-type@^4.0.0": - "integrity" "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - "resolved" "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" - "version" "4.0.0" - -"picomatch@^2.0.4", "picomatch@^2.2.1", "picomatch@^2.2.3": - "integrity" "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" - "resolved" "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" - "version" "2.3.1" - -"pify@^3.0.0": - "integrity" "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" - "resolved" "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz" - "version" "3.0.0" - -"pify@^4.0.1": - "integrity" "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - "resolved" "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz" - "version" "4.0.1" - -"pkg-conf@^2.1.0": - "integrity" "sha1-ISZRTKbyq/69FoWW3xi6V4Z/AFg=" - "resolved" "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz" - "version" "2.1.0" - dependencies: - "find-up" "^2.0.0" - "load-json-file" "^4.0.0" - -"postcss-selector-parser@^6.0.10": - "version" "6.0.10" - dependencies: - "cssesc" "^3.0.0" - "util-deprecate" "^1.0.2" - -"prelude-ls@^1.2.1": - "integrity" "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" - "resolved" "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz" - "version" "1.2.1" - -"prettier@^2.2.1": - "integrity" "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==" - "resolved" "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz" - "version" "2.5.1" - -"proc-log@^2.0.0", "proc-log@^2.0.1": - "resolved" "https://registry.npmjs.org/proc-log/-/proc-log-2.0.1.tgz" - "version" "2.0.1" - -"process-nextick-args@~2.0.0": - "integrity" "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - "resolved" "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz" - "version" "2.0.1" - -"progress@^2.0.0": - "integrity" "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" - "resolved" "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz" - "version" "2.0.3" - -"promise-all-reject-late@^1.0.0": - "resolved" "https://registry.npmjs.org/promise-all-reject-late/-/promise-all-reject-late-1.0.1.tgz" - "version" "1.0.1" - -"promise-call-limit@^1.0.1": - "resolved" "https://registry.npmjs.org/promise-call-limit/-/promise-call-limit-1.0.1.tgz" - "version" "1.0.1" - -"promise-inflight@^1.0.1": - "integrity" "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" - "resolved" "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz" - "version" "1.0.1" - -"promise-retry@^2.0.1": - "integrity" "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==" - "resolved" "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz" - "version" "2.0.1" - dependencies: - "err-code" "^2.0.2" - "retry" "^0.12.0" - -"promzard@^0.3.0": - "resolved" "https://registry.npmjs.org/promzard/-/promzard-0.3.0.tgz" - "version" "0.3.0" - dependencies: - "read" "1" - -"prr@~1.0.1": - "integrity" "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" - "resolved" "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz" - "version" "1.0.1" - -"pstree.remy@^1.1.8": - "integrity" "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==" - "resolved" "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz" - "version" "1.1.8" - -"punycode@^2.1.0": - "integrity" "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" - "resolved" "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz" - "version" "2.1.1" - -"q@^1.5.1": - "integrity" "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=" - "resolved" "https://registry.npmjs.org/q/-/q-1.5.1.tgz" - "version" "1.5.1" - -"qrcode-terminal@^0.12.0": - "resolved" "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz" - "version" "0.12.0" - -"queue-microtask@^1.2.2": - "integrity" "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" - "resolved" "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" - "version" "1.2.3" - -"quick-lru@^4.0.1": - "integrity" "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==" - "resolved" "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz" - "version" "4.0.1" - -"rc@^1.2.8": - "integrity" "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" - "resolved" "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz" - "version" "1.2.8" - dependencies: - "deep-extend" "^0.6.0" - "ini" "~1.3.0" - "minimist" "^1.2.0" - "strip-json-comments" "~2.0.1" - -"read-cmd-shim@^3.0.0": - "version" "3.0.0" - -"read-package-json-fast@^2.0.2", "read-package-json-fast@^2.0.3": - "resolved" "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz" - "version" "2.0.3" - dependencies: - "json-parse-even-better-errors" "^2.3.0" - "npm-normalize-package-bin" "^1.0.1" - -"read-package-json@^5.0.0", "read-package-json@^5.0.2": - "resolved" "https://registry.npmjs.org/read-package-json/-/read-package-json-5.0.2.tgz" - "version" "5.0.2" - dependencies: - "glob" "^8.0.1" - "json-parse-even-better-errors" "^2.3.1" - "normalize-package-data" "^4.0.0" - "npm-normalize-package-bin" "^2.0.0" - -"read-pkg-up@^7.0.0", "read-pkg-up@^7.0.1": - "integrity" "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==" - "resolved" "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz" - "version" "7.0.1" - dependencies: - "find-up" "^4.1.0" - "read-pkg" "^5.2.0" - "type-fest" "^0.8.1" - -"read-pkg@^5.0.0", "read-pkg@^5.2.0": - "integrity" "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==" - "resolved" "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz" - "version" "5.2.0" - dependencies: - "@types/normalize-package-data" "^2.4.0" - "normalize-package-data" "^2.5.0" - "parse-json" "^5.0.0" - "type-fest" "^0.6.0" - -"read@^1.0.7", "read@~1.0.7", "read@1": - "resolved" "https://registry.npmjs.org/read/-/read-1.0.7.tgz" - "version" "1.0.7" - dependencies: - "mute-stream" "~0.0.4" - -"readable-stream@^1.0.33": - "integrity" "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=" - "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz" - "version" "1.1.14" - dependencies: - "core-util-is" "~1.0.0" - "inherits" "~2.0.1" - "isarray" "0.0.1" - "string_decoder" "~0.10.x" - -"readable-stream@^2.0.0": - "integrity" "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==" - "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz" - "version" "2.3.7" - 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" - -"readable-stream@^2.0.2": - "integrity" "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==" - "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz" - "version" "2.3.7" - 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" - -"readable-stream@^3.0.0", "readable-stream@^3.4.0", "readable-stream@^3.6.0", "readable-stream@3": - "integrity" "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==" - "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz" - "version" "3.6.0" - dependencies: - "inherits" "^2.0.3" - "string_decoder" "^1.1.1" - "util-deprecate" "^1.0.1" - -"readable-stream@~2.3.6": - "integrity" "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==" - "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz" - "version" "2.3.7" - 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" - -"readdir-scoped-modules@^1.1.0": - "resolved" "https://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz" - "version" "1.1.0" - dependencies: - "debuglog" "^1.0.1" - "dezalgo" "^1.0.0" - "graceful-fs" "^4.1.2" - "once" "^1.3.0" - -"readdirp@~3.6.0": - "integrity" "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" - "resolved" "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" - "version" "3.6.0" - dependencies: - "picomatch" "^2.2.1" - -"redent@^3.0.0": - "integrity" "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==" - "resolved" "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "indent-string" "^4.0.0" - "strip-indent" "^3.0.0" - -"redeyed@~2.1.0": - "integrity" "sha1-iYS1gV2ZyyIEacme7v/jiRPmzAs=" - "resolved" "https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz" - "version" "2.1.1" - dependencies: - "esprima" "~4.0.0" - -"regexpp@^3.0.0", "regexpp@^3.1.0": - "integrity" "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" - "resolved" "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz" - "version" "3.2.0" - -"registry-auth-token@^4.0.0": - "integrity" "sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==" - "resolved" "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz" - "version" "4.2.1" - dependencies: - "rc" "^1.2.8" - -"require-directory@^2.1.1": - "integrity" "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" - "resolved" "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" - "version" "2.1.1" - -"require-from-string@^2.0.2": - "integrity" "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" - "resolved" "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz" - "version" "2.0.2" - -"resolve-from@^4.0.0": - "integrity" "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - "resolved" "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" - "version" "4.0.0" - -"resolve-from@^5.0.0": - "integrity" "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" - "resolved" "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz" - "version" "5.0.0" - -"resolve@^1.10.0", "resolve@^1.10.1", "resolve@^1.20.0": - "integrity" "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==" - "resolved" "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz" - "version" "1.22.0" - dependencies: - "is-core-module" "^2.8.1" - "path-parse" "^1.0.7" - "supports-preserve-symlinks-flag" "^1.0.0" - -"retry@^0.12.0": - "integrity" "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=" - "resolved" "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz" - "version" "0.12.0" - -"retry@^0.13.1": - "integrity" "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" - "resolved" "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz" - "version" "0.13.1" - -"reusify@^1.0.4": - "integrity" "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" - "resolved" "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" - "version" "1.0.4" - -"rimraf@^3.0.0", "rimraf@^3.0.2": - "integrity" "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" - "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" - "version" "3.0.2" - dependencies: - "glob" "^7.1.3" - -"run-parallel@^1.1.9": - "integrity" "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" - "resolved" "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" - "version" "1.2.0" - dependencies: - "queue-microtask" "^1.2.2" - -"safe-buffer@~5.1.0", "safe-buffer@~5.1.1": - "integrity" "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" - "version" "5.1.2" - -"safe-buffer@~5.2.0": - "integrity" "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" - "version" "5.2.1" - -"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0": - "integrity" "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - "resolved" "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" - "version" "2.1.2" - -"sax@^1.2.4": - "integrity" "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" - "resolved" "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz" - "version" "1.2.4" - -"scss@^0.2.4": - "integrity" "sha1-BA2QPtN8XU+krTOuH9OJrBKk4GU=" - "resolved" "https://registry.npmjs.org/scss/-/scss-0.2.4.tgz" - "version" "0.2.4" - dependencies: - "ometa" "0.2.2" - -"semantic-release@>=18.0.0", "semantic-release@>=18.0.0-beta.1", "semantic-release@>=19.0.0": - "integrity" "sha512-HaFbydST1cDKZHuFZxB8DTrBLJVK/AnDExpK0s3EqLIAAUAHUgnd+VSJCUtTYQKkAkauL8G9CucODrVCc7BuAA==" - "resolved" "https://registry.npmjs.org/semantic-release/-/semantic-release-19.0.3.tgz" - "version" "19.0.3" - dependencies: - "@semantic-release/commit-analyzer" "^9.0.2" - "@semantic-release/error" "^3.0.0" - "@semantic-release/github" "^8.0.0" - "@semantic-release/npm" "^9.0.0" - "@semantic-release/release-notes-generator" "^10.0.0" - "aggregate-error" "^3.0.0" - "cosmiconfig" "^7.0.0" - "debug" "^4.0.0" - "env-ci" "^5.0.0" - "execa" "^5.0.0" - "figures" "^3.0.0" - "find-versions" "^4.0.0" - "get-stream" "^6.0.0" - "git-log-parser" "^1.2.0" - "hook-std" "^2.0.0" - "hosted-git-info" "^4.0.0" - "lodash" "^4.17.21" - "marked" "^4.0.10" - "marked-terminal" "^5.0.0" - "micromatch" "^4.0.2" - "p-each-series" "^2.1.0" - "p-reduce" "^2.0.0" - "read-pkg-up" "^7.0.0" - "resolve-from" "^5.0.0" - "semver" "^7.3.2" - "semver-diff" "^3.1.1" - "signale" "^1.2.1" - "yargs" "^16.2.0" - -"semver-diff@^3.1.1": - "integrity" "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==" - "resolved" "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz" - "version" "3.1.1" - dependencies: - "semver" "^6.3.0" - -"semver-regex@^3.1.2": - "integrity" "sha512-6IiqeZNgq01qGf0TId0t3NvKzSvUsjcpdEO3AQNeIjR6A2+ckTnQlDpl4qu1bjRv0RzN3FP9hzFmws3lKqRWkA==" - "resolved" "https://registry.npmjs.org/semver-regex/-/semver-regex-3.1.4.tgz" - "version" "3.1.4" - -"semver@^5.6.0": - "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" - "version" "5.7.1" - -"semver@^5.7.1": - "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" - "version" "5.7.1" - -"semver@^6.0.0": - "integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" - "version" "6.3.0" - -"semver@^6.1.0": - "integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" - "version" "6.3.0" - -"semver@^6.3.0": - "integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" - "version" "6.3.0" - -"semver@^7.0.0", "semver@^7.1.1", "semver@^7.3.7": - "version" "7.3.7" - dependencies: - "lru-cache" "^6.0.0" - -"semver@^7.1.2", "semver@^7.2.1", "semver@^7.3.2", "semver@^7.3.4", "semver@^7.3.5": - "integrity" "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==" - "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz" - "version" "7.3.5" - dependencies: - "lru-cache" "^6.0.0" - -"semver@~7.0.0": - "integrity" "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" - "resolved" "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz" - "version" "7.0.0" - -"semver@2 || 3 || 4 || 5": - "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" - "version" "5.7.1" - -"sentence-case@^3.0.4": - "integrity" "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==" - "resolved" "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz" - "version" "3.0.4" - dependencies: - "no-case" "^3.0.4" - "tslib" "^2.0.3" - "upper-case-first" "^2.0.2" - -"set-blocking@^2.0.0": - "integrity" "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" - "resolved" "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz" - "version" "2.0.0" - -"shebang-command@^2.0.0": - "integrity" "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" - "resolved" "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "shebang-regex" "^3.0.0" - -"shebang-regex@^3.0.0": - "integrity" "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" - "resolved" "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" - "version" "3.0.0" - -"side-channel@^1.0.4": - "integrity" "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" - "resolved" "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz" - "version" "1.0.4" - dependencies: - "call-bind" "^1.0.0" - "get-intrinsic" "^1.0.2" - "object-inspect" "^1.9.0" - -"signal-exit@^3.0.3", "signal-exit@^3.0.7": - "integrity" "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" - "resolved" "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz" - "version" "3.0.7" - -"signale@^1.2.1": - "integrity" "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==" - "resolved" "https://registry.npmjs.org/signale/-/signale-1.4.0.tgz" - "version" "1.4.0" - dependencies: - "chalk" "^2.3.2" - "figures" "^2.0.0" - "pkg-conf" "^2.1.0" - -"simple-update-notifier@^1.0.7": - "integrity" "sha512-BBKgR84BJQJm6WjWFMHgLVuo61FBDSj1z/xSFUIozqO6wO7ii0JxCqlIud7Enr/+LhlbNI0whErq96P2qHNWew==" - "resolved" "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.0.7.tgz" - "version" "1.0.7" - dependencies: - "semver" "~7.0.0" - -"slash@^3.0.0": - "integrity" "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - "resolved" "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" - "version" "3.0.0" - -"slice-ansi@^4.0.0": - "integrity" "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==" - "resolved" "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz" - "version" "4.0.0" - dependencies: - "ansi-styles" "^4.0.0" - "astral-regex" "^2.0.0" - "is-fullwidth-code-point" "^3.0.0" - -"slugify@^1.6.0": - "integrity" "sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ==" - "resolved" "https://registry.npmjs.org/slugify/-/slugify-1.6.5.tgz" - "version" "1.6.5" - -"smart-buffer@^4.2.0": - "integrity" "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" - "resolved" "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz" - "version" "4.2.0" - -"snake-case@^3.0.4": - "integrity" "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==" - "resolved" "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz" - "version" "3.0.4" - dependencies: - "dot-case" "^3.0.4" - "tslib" "^2.0.3" - -"socks-proxy-agent@^6.0.0": - "integrity" "sha512-t8J0kG3csjA4g6FTbsMOWws+7R7vuRC8aQ/wy3/1OWmsgwA68zs/+cExQ0koSitUDXqhufF/YJr9wtNMZHw5Ew==" - "resolved" "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.1.1.tgz" - "version" "6.1.1" - dependencies: - "agent-base" "^6.0.2" - "debug" "^4.3.1" - "socks" "^2.6.1" - -"socks-proxy-agent@^7.0.0": - "resolved" "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz" - "version" "7.0.0" - dependencies: - "agent-base" "^6.0.2" - "debug" "^4.3.3" - "socks" "^2.6.2" - -"socks@^2.6.1": - "integrity" "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==" - "resolved" "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz" - "version" "2.7.1" - dependencies: - "ip" "^2.0.0" - "smart-buffer" "^4.2.0" - -"socks@^2.6.2": - "version" "2.7.0" - dependencies: - "ip" "^2.0.0" - "smart-buffer" "^4.2.0" - -"source-map@^0.6.1", "source-map@~0.6.0": - "integrity" "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" - "version" "0.6.1" - -"spawn-error-forwarder@~1.0.0": - "integrity" "sha1-Gv2Uc46ZmwNG17n8NzvlXgdXcCk=" - "resolved" "https://registry.npmjs.org/spawn-error-forwarder/-/spawn-error-forwarder-1.0.0.tgz" - "version" "1.0.0" - -"spdx-correct@^3.0.0": - "integrity" "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==" - "resolved" "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz" - "version" "3.1.1" - dependencies: - "spdx-expression-parse" "^3.0.0" - "spdx-license-ids" "^3.0.0" - -"spdx-exceptions@^2.1.0": - "integrity" "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" - "resolved" "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz" - "version" "2.3.0" - -"spdx-expression-parse@^3.0.0": - "integrity" "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==" - "resolved" "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz" - "version" "3.0.1" - dependencies: - "spdx-exceptions" "^2.1.0" - "spdx-license-ids" "^3.0.0" - -"spdx-license-ids@^3.0.0": - "integrity" "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==" - "resolved" "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz" - "version" "3.0.11" - -"split@^1.0.0": - "integrity" "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==" - "resolved" "https://registry.npmjs.org/split/-/split-1.0.1.tgz" - "version" "1.0.1" - dependencies: - "through" "2" - -"split2@^3.0.0": - "integrity" "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==" - "resolved" "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz" - "version" "3.2.2" - dependencies: - "readable-stream" "^3.0.0" - -"split2@~1.0.0": - "integrity" "sha1-UuLiIdiMdfmnP5BVbiY/+WdysxQ=" - "resolved" "https://registry.npmjs.org/split2/-/split2-1.0.0.tgz" - "version" "1.0.0" - dependencies: - "through2" "~2.0.0" - -"sprintf-js@~1.0.2": - "integrity" "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" - "resolved" "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" - "version" "1.0.3" - -"ssri@^8.0.0", "ssri@^8.0.1": - "integrity" "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==" - "resolved" "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz" - "version" "8.0.1" - dependencies: - "minipass" "^3.1.1" - -"ssri@^9.0.0", "ssri@^9.0.1": - "resolved" "https://registry.npmjs.org/ssri/-/ssri-9.0.1.tgz" - "version" "9.0.1" - dependencies: - "minipass" "^3.1.1" - -"stream-combiner2@~1.1.1": - "integrity" "sha1-+02KFCDqNidk4hrUeAOXvry0HL4=" - "resolved" "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz" - "version" "1.1.1" - dependencies: - "duplexer2" "~0.1.0" - "readable-stream" "^2.0.2" - -"string_decoder@^1.1.1": - "integrity" "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" - "resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" - "version" "1.3.0" - dependencies: - "safe-buffer" "~5.2.0" - -"string_decoder@~0.10.x": - "integrity" "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" - "resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" - "version" "0.10.31" - -"string_decoder@~1.1.1": - "integrity" "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - "resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" - "version" "1.1.1" - dependencies: - "safe-buffer" "~5.1.0" - -"string-width@^1.0.2 || 2 || 3 || 4", "string-width@^4.1.0", "string-width@^4.2.0", "string-width@^4.2.3": - "integrity" "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - "resolved" "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" - "version" "4.2.3" - dependencies: - "emoji-regex" "^8.0.0" - "is-fullwidth-code-point" "^3.0.0" - "strip-ansi" "^6.0.1" - -"string.prototype.trimend@^1.0.4": - "integrity" "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==" - "resolved" "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz" - "version" "1.0.4" - dependencies: - "call-bind" "^1.0.2" - "define-properties" "^1.1.3" - -"string.prototype.trimstart@^1.0.4": - "integrity" "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==" - "resolved" "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz" - "version" "1.0.4" - dependencies: - "call-bind" "^1.0.2" - "define-properties" "^1.1.3" - -"strip-ansi@^6.0.0", "strip-ansi@^6.0.1": - "integrity" "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" - "version" "6.0.1" - dependencies: - "ansi-regex" "^5.0.1" - -"strip-bom@^3.0.0": - "integrity" "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" - "resolved" "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz" - "version" "3.0.0" - -"strip-final-newline@^2.0.0": - "integrity" "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" - "resolved" "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz" - "version" "2.0.0" - -"strip-indent@^3.0.0": - "integrity" "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==" - "resolved" "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "min-indent" "^1.0.0" - -"strip-json-comments@^3.1.0": - "integrity" "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" - "resolved" "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" - "version" "3.1.1" - -"strip-json-comments@^3.1.1": - "integrity" "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" - "resolved" "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" - "version" "3.1.1" - -"strip-json-comments@~2.0.1": - "integrity" "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" - "resolved" "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz" - "version" "2.0.1" - -"style-dictionary@^3.0.1": - "integrity" "sha512-Dpugx2wH3ElMvq1GOaSsfUChr8dwujx2/eBUUd0vaSFkP16LRp5XOJMTHF0f8QuPGkpBfVPXDWCkb3oJ3oJjxg==" - "resolved" "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.1.1.tgz" - "version" "3.1.1" - dependencies: - "chalk" "^4.0.0" - "change-case" "^4.1.2" - "commander" "^5.1.0" - "fs-extra" "^8.1.0" - "glob" "^7.1.6" - "json5" "^2.1.3" - "jsonc-parser" "^3.0.0" - "lodash" "^4.17.15" - "tinycolor2" "^1.4.1" - -"supports-color@^5.3.0", "supports-color@^5.5.0": - "integrity" "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" - "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" - "version" "5.5.0" - dependencies: - "has-flag" "^3.0.0" - -"supports-color@^7.0.0": - "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" - "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" - "version" "7.2.0" - dependencies: - "has-flag" "^4.0.0" - -"supports-color@^7.1.0": - "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" - "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" - "version" "7.2.0" - dependencies: - "has-flag" "^4.0.0" - -"supports-hyperlinks@^2.2.0": - "integrity" "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==" - "resolved" "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz" - "version" "2.2.0" - dependencies: - "has-flag" "^4.0.0" - "supports-color" "^7.0.0" - -"supports-preserve-symlinks-flag@^1.0.0": - "integrity" "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" - "resolved" "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" - "version" "1.0.0" - -"svg-pathdata@^6.0.0": - "integrity" "sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw==" - "resolved" "https://registry.npmjs.org/svg-pathdata/-/svg-pathdata-6.0.3.tgz" - "version" "6.0.3" - -"svg2ttf@^6.0.3": - "integrity" "sha512-CgqMyZrbOPpc+WqH7aga4JWkDPso23EgypLsbQ6gN3uoPWwwiLjXvzgrwGADBExvCRJrWFzAeK1bSoSpE7ixSQ==" - "resolved" "https://registry.npmjs.org/svg2ttf/-/svg2ttf-6.0.3.tgz" - "version" "6.0.3" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + +parse-json@^8.0.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-8.1.0.tgz#91cdc7728004e955af9cb734de5684733b24a717" + integrity sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA== + dependencies: + "@babel/code-frame" "^7.22.13" + index-to-position "^0.1.2" + type-fest "^4.7.1" + +parse-ms@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-4.0.0.tgz#c0c058edd47c2a590151a718990533fd62803df4" + integrity sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw== + +parse-node-version@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parse-node-version/-/parse-node-version-1.0.1.tgz#e2b5dbede00e7fa9bc363607f53327e8b073189b" + integrity sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA== + +patch-package@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/patch-package/-/patch-package-8.0.0.tgz#d191e2f1b6e06a4624a0116bcb88edd6714ede61" + integrity sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA== + dependencies: + "@yarnpkg/lockfile" "^1.1.0" + chalk "^4.1.2" + ci-info "^3.7.0" + cross-spawn "^7.0.3" + find-yarn-workspace-root "^2.0.0" + fs-extra "^9.0.0" + json-stable-stringify "^1.0.2" + klaw-sync "^6.0.0" + minimist "^1.2.6" + open "^7.4.2" + rimraf "^2.6.3" + semver "^7.5.3" + slash "^2.0.0" + tmp "^0.0.33" + yaml "^2.2.2" + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-key@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" + integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-scurry@^1.11.1: + version "1.11.1" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2" + integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== + dependencies: + lru-cache "^10.2.0" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + +path-scurry@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-2.0.0.tgz#9f052289f23ad8bf9397a2a0425e7b8615c58580" + integrity sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg== + dependencies: + lru-cache "^11.0.0" + minipass "^7.1.2" + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +path-type@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-5.0.0.tgz#14b01ed7aea7ddf9c7c3f46181d4d04f9c785bb8" + integrity sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg== + +path-unified@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/path-unified/-/path-unified-0.1.0.tgz#fd751e787ab019a88cdf5cecbd7e5e4711c66c7d" + integrity sha512-/Oaz9ZJforrkmFrwkR/AcvjVsCAwGSJHO0X6O6ISj8YeFbATjIEBXLDcZfnK3MO4uvCBrJTdVIxdOc79PMqSdg== + +path@^0.12.7: + version "0.12.7" + resolved "https://registry.yarnpkg.com/path/-/path-0.12.7.tgz#d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f" + integrity sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q== + dependencies: + process "^0.11.1" + util "^0.10.3" + +pathval@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pathval/-/pathval-2.0.0.tgz#7e2550b422601d4f6b8e26f1301bc8f15a741a25" + integrity sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA== + +picocolors@^1.0.0, picocolors@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" + integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pify@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" + integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== + +possible-typed-array-names@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz#89bb63c6fada2c3e90adc4a647beeeb39cc7bf8f" + integrity sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q== + +postcss-calc-ast-parser@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/postcss-calc-ast-parser/-/postcss-calc-ast-parser-0.1.4.tgz#9aeee3650a91c0b2902789689bc044c9f83bc447" + integrity sha512-CebpbHc96zgFjGgdQ6BqBy6XIUgRx1xXWCAAk6oke02RZ5nxwo9KQejTg8y7uYEeI9kv8jKQPYjoe6REsY23vw== + dependencies: + postcss-value-parser "^3.3.1" + +postcss-media-query-parser@^0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244" + integrity sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig== + +postcss-resolve-nested-selector@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.6.tgz#3d84dec809f34de020372c41b039956966896686" + integrity sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw== + +postcss-safe-parser@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-7.0.1.tgz#36e4f7e608111a0ca940fd9712ce034718c40ec0" + integrity sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A== + +postcss-scss@^4.0.9: + version "4.0.9" + resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-4.0.9.tgz#a03c773cd4c9623cb04ce142a52afcec74806685" + integrity sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A== + +postcss-selector-parser@^6.1.2: + version "6.1.2" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz#27ecb41fb0e3b6ba7a1ec84fff347f734c7929de" + integrity sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss-selector-parser@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz#41bd8b56f177c093ca49435f65731befe25d6b9c" + integrity sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss-value-parser@^3.3.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" + integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== + +postcss-value-parser@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + +postcss@^8.4.49: + version "8.4.49" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.49.tgz#4ea479048ab059ab3ae61d082190fabfd994fe19" + integrity sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA== + dependencies: + nanoid "^3.3.7" + picocolors "^1.1.1" + source-map-js "^1.2.1" + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +prettier@^3.4.1: + version "3.4.1" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.4.1.tgz#e211d451d6452db0a291672ca9154bc8c2579f7b" + integrity sha512-G+YdqtITVZmOJje6QkXQWzl3fSfMxFwm1tjTyo9exhkmWSqC4Yhd1+lug++IlR2mvRVAxEDDWYkQdeSztajqgg== + +pretty-ms@^9.0.0: + version "9.2.0" + resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-9.2.0.tgz#e14c0aad6493b69ed63114442a84133d7e560ef0" + integrity sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg== + dependencies: + parse-ms "^4.0.0" + +proc-log@^4.1.0, proc-log@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-4.2.0.tgz#b6f461e4026e75fdfe228b265e9f7a00779d7034" + integrity sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA== + +proc-log@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-5.0.0.tgz#e6c93cf37aef33f835c53485f314f50ea906a9d8" + integrity sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ== + +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + +process@^0.11.1: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== + +proggy@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/proggy/-/proggy-3.0.0.tgz#874e91fed27fe00a511758e83216a6b65148bd6c" + integrity sha512-QE8RApCM3IaRRxVzxrjbgNMpQEX6Wu0p0KBeoSiSEw5/bsGwZHsshF4LCxH2jp/r6BU+bqA3LrMDEYNfJnpD8Q== + +promise-all-reject-late@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/promise-all-reject-late/-/promise-all-reject-late-1.0.1.tgz#f8ebf13483e5ca91ad809ccc2fcf25f26f8643c2" + integrity sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw== + +promise-call-limit@^3.0.1: + version "3.0.2" + resolved "https://registry.yarnpkg.com/promise-call-limit/-/promise-call-limit-3.0.2.tgz#524b7f4b97729ff70417d93d24f46f0265efa4f9" + integrity sha512-mRPQO2T1QQVw11E7+UdCJu7S61eJVWknzml9sC1heAdj1jxl0fWMBypIt9ZOcLFf8FkG995ZD7RnVk7HH72fZw== + +promise-inflight@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" + integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g== + +promise-retry@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" + integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== + dependencies: + err-code "^2.0.2" + retry "^0.12.0" + +promzard@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/promzard/-/promzard-2.0.0.tgz#03ad0e4db706544dfdd4f459281f13484fc10c49" + integrity sha512-Ncd0vyS2eXGOjchIRg6PVCYKetJYrW1BSbbIo+bKdig61TB6nH2RQNF2uP+qMpsI73L/jURLWojcw8JNIKZ3gg== + dependencies: + read "^4.0.0" + +proto-list@~1.2.1: + version "1.2.4" + resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" + integrity sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA== + +prr@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" + integrity sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw== + +pstree.remy@^1.1.8: + version "1.1.8" + resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.8.tgz#c242224f4a67c21f686839bbdb4ac282b8373d3a" + integrity sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w== + +punycode@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== + +punycode@^2.1.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" + integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== + +qrcode-terminal@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz#bb5b699ef7f9f0505092a3748be4464fe71b5819" + integrity sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ== + +qs@^6.12.3: + version "6.13.1" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.13.1.tgz#3ce5fc72bd3a8171b85c99b93c65dd20b7d1b16e" + integrity sha512-EJPeIn0CYrGu+hli1xilKAPXODtJ12T0sP63Ijx2/khC2JtuaN3JyNIpvmnkmaEtha9ocbG4A4cMcr+TvqvwQg== + dependencies: + side-channel "^1.0.6" + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +rc@^1.2.8: + version "1.2.8" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== + dependencies: + deep-extend "^0.6.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +read-cmd-shim@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/read-cmd-shim/-/read-cmd-shim-5.0.0.tgz#6e5450492187a0749f6c80dcbef0debc1117acca" + integrity sha512-SEbJV7tohp3DAAILbEMPXavBjAnMN0tVnh4+9G8ihV4Pq3HYF9h8QNez9zkJ1ILkv9G2BjdzwctznGZXgu/HGw== + +read-package-json-fast@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/read-package-json-fast/-/read-package-json-fast-4.0.0.tgz#8ccbc05740bb9f58264f400acc0b4b4eee8d1b39" + integrity sha512-qpt8EwugBWDw2cgE2W+/3oxC+KTez2uSVR8JU9Q36TXPAGCaozfQUs59v4j4GFpWTaw0i6hAZSvOmu1J0uOEUg== + dependencies: + json-parse-even-better-errors "^4.0.0" + npm-normalize-package-bin "^4.0.0" + +read-package-up@^11.0.0: + version "11.0.0" + resolved "https://registry.yarnpkg.com/read-package-up/-/read-package-up-11.0.0.tgz#71fb879fdaac0e16891e6e666df22de24a48d5ba" + integrity sha512-MbgfoNPANMdb4oRBNg5eqLbB2t2r+o5Ua1pNt8BqGp4I0FJZhuVSOj3PaBPni4azWuSzEdNn2evevzVmEk1ohQ== + dependencies: + find-up-simple "^1.0.0" + read-pkg "^9.0.0" + type-fest "^4.6.0" + +read-pkg@^9.0.0: + version "9.0.1" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-9.0.1.tgz#b1b81fb15104f5dbb121b6bbdee9bbc9739f569b" + integrity sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA== + dependencies: + "@types/normalize-package-data" "^2.4.3" + normalize-package-data "^6.0.0" + parse-json "^8.0.0" + type-fest "^4.6.0" + unicorn-magic "^0.1.0" + +read@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/read/-/read-4.0.0.tgz#46a989a22dfefe4eab2327e40e40b05eca727370" + integrity sha512-nbYGT3cec3J5NPUeJia7l72I3oIzMIB6yeNyDqi8CVHr3WftwjrCUqR0j13daoHEMVaZ/rxCpmHKrbods3hI2g== + dependencies: + mute-stream "^2.0.0" + +readable-stream@^2.0.0: + version "2.3.8" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" + integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== + 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" + +readable-stream@^3.4.0, readable-stream@^3.6.0: + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +reflect.getprototypeof@^1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.7.tgz#04311b33a1b713ca5eb7b5aed9950a86481858e5" + integrity sha512-bMvFGIUKlc/eSfXNX+aZ+EL95/EgZzuwA0OBPTbZZDEJw/0AkentjMuM1oiRfwHrshqk4RzdgiTg5CcDalXN5g== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.5" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + gopd "^1.0.1" + which-builtin-type "^1.1.4" + +regexp.prototype.flags@^1.5.3: + version "1.5.3" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz#b3ae40b1d2499b8350ab2c3fe6ef3845d3a96f42" + integrity sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-errors "^1.3.0" + set-function-name "^2.0.2" + +registry-auth-token@^5.0.0: + version "5.0.3" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-5.0.3.tgz#417d758c8164569de8cf5cabff16cc937902dcc6" + integrity sha512-1bpc9IyC+e+CNFRaWyn77tk4xGG4PPUyfakSmA6F6cvUDjrm58dfyJ3II+9yb10EDkHoy1LaPSmHaWLOH3m6HA== + dependencies: + "@pnpm/npm-conf" "^2.1.0" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + +resolve-pkg-maps@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f" + integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw== + +resolve@^1.22.4: + version "1.22.8" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== + dependencies: + is-core-module "^2.13.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +retry@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" + integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rimraf@^2.6.3: + version "2.7.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== + dependencies: + glob "^7.1.3" + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +rimraf@^5.0.5: + version "5.0.10" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-5.0.10.tgz#23b9843d3dc92db71f96e1a2ce92e39fd2a8221c" + integrity sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ== + dependencies: + glob "^10.3.7" + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +safe-array-concat@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.2.tgz#81d77ee0c4e8b863635227c721278dd524c20edb" + integrity sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q== + dependencies: + call-bind "^1.0.7" + get-intrinsic "^1.2.4" + has-symbols "^1.0.3" + isarray "^2.0.5" + +safe-buffer@^5.1.0, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-regex-test@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.3.tgz#a5b4c0f06e0ab50ea2c395c14d8371232924c377" + integrity sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-regex "^1.1.4" + +"safer-buffer@>= 2.1.2 < 3.0.0": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +sax@^1.2.4: + version "1.4.1" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.4.1.tgz#44cc8988377f126304d3b3fc1010c733b929ef0f" + integrity sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg== + +scss@^0.2.4: + version "0.2.4" + resolved "https://registry.yarnpkg.com/scss/-/scss-0.2.4.tgz#040d903ed37c5d4fa4ad33ae1fd389ac12a4e065" + integrity sha512-4u8V87F+Q/upVhUmhPnB4C1R11xojkRkWjExL2v0CX2EXTg18VrKd+9JWoeyCp2VEMdSpJsyAvVU+rVjogh51A== + dependencies: + ometa "0.2.2" + +semver@^5.6.0: + version "5.7.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== + +semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + +semver@^7.1.1, semver@^7.1.2, semver@^7.3.5, semver@^7.3.7, semver@^7.5.2, semver@^7.5.3, semver@^7.5.4, semver@^7.6.3: + version "7.6.3" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" + integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== + +serialize-javascript@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.2.tgz#defa1e055c83bf6d59ea805d8da862254eb6a6c2" + integrity sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g== + dependencies: + randombytes "^2.1.0" + +set-blocking@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== + +set-function-length@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" + integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + +set-function-name@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985" + integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + functions-have-names "^1.2.3" + has-property-descriptors "^1.0.2" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +side-channel@^1.0.4, side-channel@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" + integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + object-inspect "^1.13.1" + +signal-exit@^3.0.3, signal-exit@^3.0.7: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +signal-exit@^4.0.1, signal-exit@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" + integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== + +sigstore@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-3.0.0.tgz#d6eadcc6590185a7f1c16184078ce8a9ef6db937" + integrity sha512-PHMifhh3EN4loMcHCz6l3v/luzgT3za+9f8subGgeMNjbJjzH4Ij/YoX3Gvu+kaouJRIlVdTHHCREADYf+ZteA== + dependencies: + "@sigstore/bundle" "^3.0.0" + "@sigstore/core" "^2.0.0" + "@sigstore/protobuf-specs" "^0.3.2" + "@sigstore/sign" "^3.0.0" + "@sigstore/tuf" "^3.0.0" + "@sigstore/verify" "^2.0.0" + +simple-update-notifier@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz#d70b92bdab7d6d90dfd73931195a30b6e3d7cebb" + integrity sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w== + dependencies: + semver "^7.5.3" + +slash@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" + integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +slash@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-5.1.0.tgz#be3adddcdf09ac38eebe8dcdc7b1a57a75b095ce" + integrity sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg== + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +slugify@^1.6.6: + version "1.6.6" + resolved "https://registry.yarnpkg.com/slugify/-/slugify-1.6.6.tgz#2d4ac0eacb47add6af9e04d3be79319cbcc7924b" + integrity sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw== + +smart-buffer@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" + integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== + +socks-proxy-agent@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz#dc069ecf34436621acb41e3efa66ca1b5fed15b6" + integrity sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww== + dependencies: + agent-base "^6.0.2" + debug "^4.3.3" + socks "^2.6.2" + +socks-proxy-agent@^8.0.3: + version "8.0.4" + resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.4.tgz#9071dca17af95f483300316f4b063578fa0db08c" + integrity sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw== + dependencies: + agent-base "^7.1.1" + debug "^4.3.4" + socks "^2.8.3" + +socks@^2.6.2, socks@^2.8.3: + version "2.8.3" + resolved "https://registry.yarnpkg.com/socks/-/socks-2.8.3.tgz#1ebd0f09c52ba95a09750afe3f3f9f724a800cb5" + integrity sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw== + dependencies: + ip-address "^9.0.5" + smart-buffer "^4.2.0" + +source-map-js@^1.0.1, source-map-js@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" + integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== + +source-map@^0.6.1, source-map@~0.6.0: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +spdx-correct@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" + integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz#5d607d27fc806f66d7b64a766650fa890f04ed66" + integrity sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-expression-parse@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-4.0.0.tgz#a23af9f3132115465dac215c099303e4ceac5794" + integrity sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.20" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz#e44ed19ed318dd1e5888f93325cee800f0f51b89" + integrity sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw== + +sprintf-js@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a" + integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA== + +ssri@^10.0.0: + version "10.0.6" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-10.0.6.tgz#a8aade2de60ba2bce8688e3fa349bad05c7dc1e5" + integrity sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ== + dependencies: + minipass "^7.0.3" + +ssri@^12.0.0: + version "12.0.0" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-12.0.0.tgz#bcb4258417c702472f8191981d3c8a771fee6832" + integrity sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ== + dependencies: + minipass "^7.0.3" + +ssri@^9.0.0: + version "9.0.1" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-9.0.1.tgz#544d4c357a8d7b71a19700074b6883fcb4eae057" + integrity sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q== + dependencies: + minipass "^3.1.1" + +stream@^0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/stream/-/stream-0.0.3.tgz#3f3934a900a561ce3e2b9ffbd2819cead32699d9" + integrity sha512-aMsbn7VKrl4A2T7QAQQbzgN7NVc70vgF5INQrBXqn4dCXN1zy3L9HGgLO5s7PExmdrzTJ8uR/27aviW8or8/+A== + dependencies: + component-emitter "^2.0.0" + +"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string.prototype.trim@^1.2.9: + version "1.2.9" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz#b6fa326d72d2c78b6df02f7759c73f8f6274faa4" + integrity sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.0" + es-object-atoms "^1.0.0" + +string.prototype.trimend@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz#3651b8513719e8a9f48de7f2f77640b26652b229" + integrity sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + +string.prototype.trimstart@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz#7ee834dda8c7c17eff3118472bb35bfedaa34dde" + integrity sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + +string_decoder@^1.1.1, string_decoder@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-final-newline@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-4.0.0.tgz#35a369ec2ac43df356e3edd5dcebb6429aa1fa5c" + integrity sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw== + +strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== + +style-dictionary@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/style-dictionary/-/style-dictionary-4.2.0.tgz#3e149025a88178c98b6bcfff1ed4edff0fa8829e" + integrity sha512-bjynavc9g80Zl9GpR3cw+ibqtbMbak9YXpuZteTsRTzoacUTjh7GLu1nlT1ukf264Nw5Vhu/ICQpY5xxOquvtA== + dependencies: + "@bundled-es-modules/deepmerge" "^4.3.1" + "@bundled-es-modules/glob" "^10.4.2" + "@bundled-es-modules/memfs" "^4.9.4" + "@zip.js/zip.js" "^2.7.44" + chalk "^5.3.0" + change-case "^5.3.0" + commander "^8.3.0" + is-plain-obj "^4.1.0" + json5 "^2.2.2" + patch-package "^8.0.0" + path-unified "^0.1.0" + tinycolor2 "^1.6.0" + +stylelint-config-recommended-scss@^14.0.0: + version "14.1.0" + resolved "https://registry.yarnpkg.com/stylelint-config-recommended-scss/-/stylelint-config-recommended-scss-14.1.0.tgz#1a5855655cddcb5f77c10f38c76567adf2bb9aa3" + integrity sha512-bhaMhh1u5dQqSsf6ri2GVWWQW5iUjBYgcHkh7SgDDn92ijoItC/cfO/W+fpXshgTQWhwFkP1rVcewcv4jaftRg== + dependencies: + postcss-scss "^4.0.9" + stylelint-config-recommended "^14.0.1" + stylelint-scss "^6.4.0" + +stylelint-config-recommended@^14.0.1: + version "14.0.1" + resolved "https://registry.yarnpkg.com/stylelint-config-recommended/-/stylelint-config-recommended-14.0.1.tgz#d25e86409aaf79ee6c6085c2c14b33c7e23c90c6" + integrity sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg== + +stylelint-config-standard-scss@^13.1.0: + version "13.1.0" + resolved "https://registry.yarnpkg.com/stylelint-config-standard-scss/-/stylelint-config-standard-scss-13.1.0.tgz#2be36ca13087325a42c1f26df8267808667cc886" + integrity sha512-Eo5w7/XvwGHWkeGLtdm2FZLOMYoZl1omP2/jgFCXyl2x5yNz7/8vv4Tj6slHvMSSUNTaGoam/GAZ0ZhukvalfA== + dependencies: + stylelint-config-recommended-scss "^14.0.0" + stylelint-config-standard "^36.0.0" + +stylelint-config-standard@^36.0.0, stylelint-config-standard@^36.0.1: + version "36.0.1" + resolved "https://registry.yarnpkg.com/stylelint-config-standard/-/stylelint-config-standard-36.0.1.tgz#727cbb2a1ef3e210f5ce8329cde531129f156609" + integrity sha512-8aX8mTzJ6cuO8mmD5yon61CWuIM4UD8Q5aBcWKGSf6kg+EC3uhB+iOywpTK4ca6ZL7B49en8yanOFtUW0qNzyw== + dependencies: + stylelint-config-recommended "^14.0.1" + +stylelint-scss@^6.4.0: + version "6.10.0" + resolved "https://registry.yarnpkg.com/stylelint-scss/-/stylelint-scss-6.10.0.tgz#ba5b807793e145421e9879dd15ae672af6820a45" + integrity sha512-y03if6Qw9xBMoVaf7tzp5BbnYhYvudIKzURkhSHzcHG0bW0fAYvQpTUVJOe7DyhHaxeThBil4ObEMvGbV7+M+w== + dependencies: + css-tree "^3.0.1" + is-plain-object "^5.0.0" + known-css-properties "^0.35.0" + mdn-data "^2.12.2" + postcss-media-query-parser "^0.2.3" + postcss-resolve-nested-selector "^0.1.6" + postcss-selector-parser "^7.0.0" + postcss-value-parser "^4.2.0" + +stylelint@^16.10.0: + version "16.11.0" + resolved "https://registry.yarnpkg.com/stylelint/-/stylelint-16.11.0.tgz#7eb653b007dc0b4366dc3aa7bfa94ced0c52f087" + integrity sha512-zrl4IrKmjJQ+h9FoMp69UMCq5SxeHk0URhxUBj4d3ISzo/DplOFBJZc7t7Dr6otB+1bfbbKNLOmCDpzKSlW+Nw== + dependencies: + "@csstools/css-parser-algorithms" "^3.0.4" + "@csstools/css-tokenizer" "^3.0.3" + "@csstools/media-query-list-parser" "^4.0.2" + "@csstools/selector-specificity" "^5.0.0" + "@dual-bundle/import-meta-resolve" "^4.1.0" + balanced-match "^2.0.0" + colord "^2.9.3" + cosmiconfig "^9.0.0" + css-functions-list "^3.2.3" + css-tree "^3.0.1" + debug "^4.3.7" + fast-glob "^3.3.2" + fastest-levenshtein "^1.0.16" + file-entry-cache "^9.1.0" + global-modules "^2.0.0" + globby "^11.1.0" + globjoin "^0.1.4" + html-tags "^3.3.1" + ignore "^6.0.2" + imurmurhash "^0.1.4" + is-plain-object "^5.0.0" + known-css-properties "^0.35.0" + mathml-tag-names "^2.1.3" + meow "^13.2.0" + micromatch "^4.0.8" + normalize-path "^3.0.0" + picocolors "^1.1.1" + postcss "^8.4.49" + postcss-resolve-nested-selector "^0.1.6" + postcss-safe-parser "^7.0.1" + postcss-selector-parser "^7.0.0" + postcss-value-parser "^4.2.0" + resolve-from "^5.0.0" + string-width "^4.2.3" + supports-hyperlinks "^3.1.0" + svg-tags "^1.0.0" + table "^6.8.2" + write-file-atomic "^5.0.1" + +supports-color@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.0.0, supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-color@^8.1.1: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-color@^9.4.0: + version "9.4.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-9.4.0.tgz#17bfcf686288f531db3dea3215510621ccb55954" + integrity sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw== + +supports-hyperlinks@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-3.1.0.tgz#b56150ff0173baacc15f21956450b61f2b18d3ac" + integrity sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A== + dependencies: + has-flag "^4.0.0" + supports-color "^7.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +svg-pathdata@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/svg-pathdata/-/svg-pathdata-6.0.3.tgz#80b0e0283b652ccbafb69ad4f8f73e8d3fbf2cac" + integrity sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw== + +svg-tags@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764" + integrity sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA== + +svg2ttf@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/svg2ttf/-/svg2ttf-6.0.3.tgz#7b92978ff124b2a583d21e1208b9675e245e56d1" + integrity sha512-CgqMyZrbOPpc+WqH7aga4JWkDPso23EgypLsbQ6gN3uoPWwwiLjXvzgrwGADBExvCRJrWFzAeK1bSoSpE7ixSQ== dependencies: "@xmldom/xmldom" "^0.7.2" - "argparse" "^2.0.1" - "cubic2quad" "^1.2.1" - "lodash" "^4.17.10" - "microbuffer" "^1.0.0" - "svgpath" "^2.1.5" - -"svgicons2svgfont@^10.0.3": - "integrity" "sha512-mkP/i0SW5jah4bwIOBpZvrTwJY7rOB3QIIMb/1QwIvJSOScmtAagJTrN3FwHnK1Cu4gw6LgemsefS1Oi0lqkkQ==" - "resolved" "https://registry.npmjs.org/svgicons2svgfont/-/svgicons2svgfont-10.0.5.tgz" - "version" "10.0.5" - dependencies: - "commander" "^7.2.0" - "geometry-interfaces" "^1.1.4" - "glob" "^7.1.6" - "neatequal" "^1.0.0" - "readable-stream" "^3.4.0" - "sax" "^1.2.4" - "svg-pathdata" "^6.0.0" - -"svgpath@^2.1.5": - "integrity" "sha512-o/vohwqjUO9nDAh4rcjE3KaW/v//At8UJu2LJMybXidf5QLQLVA4bxH0//4YCsr+1H4Gw1Wi/Jc62ynzSBYidw==" - "resolved" "https://registry.npmjs.org/svgpath/-/svgpath-2.5.0.tgz" - "version" "2.5.0" - -"table@^6.0.4": - "integrity" "sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==" - "resolved" "https://registry.npmjs.org/table/-/table-6.8.0.tgz" - "version" "6.8.0" - dependencies: - "ajv" "^8.0.1" - "lodash.truncate" "^4.4.2" - "slice-ansi" "^4.0.0" - "string-width" "^4.2.3" - "strip-ansi" "^6.0.1" - -"tar@^6.0.2", "tar@^6.1.0", "tar@^6.1.11", "tar@^6.1.2": - "integrity" "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==" - "resolved" "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz" - "version" "6.1.11" - dependencies: - "chownr" "^2.0.0" - "fs-minipass" "^2.0.0" - "minipass" "^3.0.0" - "minizlib" "^2.1.1" - "mkdirp" "^1.0.3" - "yallist" "^4.0.0" - -"temp-dir@^2.0.0": - "integrity" "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==" - "resolved" "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz" - "version" "2.0.0" - -"tempy@^1.0.0": - "integrity" "sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==" - "resolved" "https://registry.npmjs.org/tempy/-/tempy-1.0.1.tgz" - "version" "1.0.1" - dependencies: - "del" "^6.0.0" - "is-stream" "^2.0.0" - "temp-dir" "^2.0.0" - "type-fest" "^0.16.0" - "unique-string" "^2.0.0" - -"text-extensions@^1.0.0": - "integrity" "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==" - "resolved" "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz" - "version" "1.9.0" - -"text-table@^0.2.0": - "integrity" "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" - "resolved" "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" - "version" "0.2.0" - -"text-table@~0.2.0": - "resolved" "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" - "version" "0.2.0" - -"through@>=2.2.7 <3", "through@2": - "integrity" "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" - "resolved" "https://registry.npmjs.org/through/-/through-2.3.8.tgz" - "version" "2.3.8" - -"through2@^4.0.0": - "integrity" "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==" - "resolved" "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz" - "version" "4.0.2" - dependencies: - "readable-stream" "3" - -"through2@~2.0.0": - "integrity" "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" - "resolved" "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz" - "version" "2.0.5" - dependencies: - "readable-stream" "~2.3.6" - "xtend" "~4.0.1" - -"tildify@^2": - "integrity" "sha512-Cc+OraorugtXNfs50hU9KS369rFXCfgGLpfCfvlc+Ud5u6VWmUQsOAa9HbTvheQdYnrdJqqv1e5oIqXppMYnSw==" - "resolved" "https://registry.npmjs.org/tildify/-/tildify-2.0.0.tgz" - "version" "2.0.0" - -"timers-ext@^0.1.7": - "integrity" "sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==" - "resolved" "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.7.tgz" - "version" "0.1.7" - dependencies: - "es5-ext" "~0.10.46" - "next-tick" "1" - -"tiny-relative-date@^1.3.0": - "resolved" "https://registry.npmjs.org/tiny-relative-date/-/tiny-relative-date-1.3.0.tgz" - "version" "1.3.0" - -"tinycolor2@^1.4.1", "tinycolor2@^1.4.2": - "integrity" "sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==" - "resolved" "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz" - "version" "1.4.2" - -"to-regex-range@^5.0.1": - "integrity" "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" - "resolved" "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" - "version" "5.0.1" - dependencies: - "is-number" "^7.0.0" - -"touch@^3.1.0": - "integrity" "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==" - "resolved" "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz" - "version" "3.1.0" - dependencies: - "nopt" "~1.0.10" - -"tr46@~0.0.3": - "integrity" "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" - "resolved" "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz" - "version" "0.0.3" - -"traverse@~0.6.6": - "integrity" "sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=" - "resolved" "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz" - "version" "0.6.6" - -"treeverse@^2.0.0": - "resolved" "https://registry.npmjs.org/treeverse/-/treeverse-2.0.0.tgz" - "version" "2.0.0" - -"trim-newlines@^3.0.0": - "integrity" "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==" - "resolved" "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz" - "version" "3.0.1" - -"tsconfig-paths@^3.12.0": - "integrity" "sha512-e5adrnOYT6zqVnWqZu7i/BQ3BnhzvGbjEjejFXO20lKIKpwTaupkCPgEfv4GZK1IBciJUEhYs3J3p75FdaTFVg==" - "resolved" "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.12.0.tgz" - "version" "3.12.0" + argparse "^2.0.1" + cubic2quad "^1.2.1" + lodash "^4.17.10" + microbuffer "^1.0.0" + svgpath "^2.1.5" + +svgicons2svgfont@^12.0.0: + version "12.0.0" + resolved "https://registry.yarnpkg.com/svgicons2svgfont/-/svgicons2svgfont-12.0.0.tgz#80dfb5f20a4e83403f893a30320194dc380690b3" + integrity sha512-fjyDkhiG0M1TPBtZzD12QV3yDcG2fUgiqHPOCYzf7hHE40Hl3GhnE6P1njsJCCByhwM7MiufyDW3L7IOR5dg9w== + dependencies: + commander "^9.3.0" + glob "^8.0.3" + sax "^1.2.4" + svg-pathdata "^6.0.3" + +svgpath@^2.1.5: + version "2.6.0" + resolved "https://registry.yarnpkg.com/svgpath/-/svgpath-2.6.0.tgz#5b160ef3d742b7dfd2d721bf90588d3450d7a90d" + integrity sha512-OIWR6bKzXvdXYyO4DK/UWa1VA1JeKq8E+0ug2DG98Y/vOmMpfZNj+TIG988HjfYSqtcy/hFOtZq/n/j5GSESNg== + +table@^6.8.2: + version "6.8.2" + resolved "https://registry.yarnpkg.com/table/-/table-6.8.2.tgz#c5504ccf201213fa227248bdc8c5569716ac6c58" + integrity sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA== + dependencies: + ajv "^8.0.1" + lodash.truncate "^4.4.2" + slice-ansi "^4.0.0" + string-width "^4.2.3" + strip-ansi "^6.0.1" + +tapable@^2.2.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" + integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== + +tar@^6.1.11, tar@^6.1.2, tar@^6.2.1: + version "6.2.1" + resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz#717549c541bc3c2af15751bea94b1dd068d4b03a" + integrity sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A== + dependencies: + chownr "^2.0.0" + fs-minipass "^2.0.0" + minipass "^5.0.0" + minizlib "^2.1.1" + mkdirp "^1.0.3" + yallist "^4.0.0" + +tar@^7.4.3: + version "7.4.3" + resolved "https://registry.yarnpkg.com/tar/-/tar-7.4.3.tgz#88bbe9286a3fcd900e94592cda7a22b192e80571" + integrity sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw== + dependencies: + "@isaacs/fs-minipass" "^4.0.0" + chownr "^3.0.0" + minipass "^7.1.2" + minizlib "^3.0.1" + mkdirp "^3.0.1" + yallist "^5.0.0" + +temp-dir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-3.0.0.tgz#7f147b42ee41234cc6ba3138cd8e8aa2302acffa" + integrity sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw== + +tempy@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/tempy/-/tempy-3.1.0.tgz#00958b6df85db8589cb595465e691852aac038e9" + integrity sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g== + dependencies: + is-stream "^3.0.0" + temp-dir "^3.0.0" + type-fest "^2.12.2" + unique-string "^3.0.0" + +text-table@~0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +thingies@^1.20.0: + version "1.21.0" + resolved "https://registry.yarnpkg.com/thingies/-/thingies-1.21.0.tgz#e80fbe58fd6fdaaab8fad9b67bd0a5c943c445c1" + integrity sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g== + +timers-ext@^0.1.7: + version "0.1.8" + resolved "https://registry.yarnpkg.com/timers-ext/-/timers-ext-0.1.8.tgz#b4e442f10b7624a29dd2aa42c295e257150cf16c" + integrity sha512-wFH7+SEAcKfJpfLPkrgMPvvwnEtj8W4IurvEyrKsDleXnKLCDw71w8jltvfLa8Rm4qQxxT4jmDBYbJG/z7qoww== + dependencies: + es5-ext "^0.10.64" + next-tick "^1.1.0" + +tiny-relative-date@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/tiny-relative-date/-/tiny-relative-date-1.3.0.tgz#fa08aad501ed730f31cc043181d995c39a935e07" + integrity sha512-MOQHpzllWxDCHHaDno30hhLfbouoYlOI8YlMNtvKe1zXbjEVhbcEovQxvZrPvtiYW630GQDoMMarCnjfyfHA+A== + +tinycolor2@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.6.0.tgz#f98007460169b0263b97072c5ae92484ce02d09e" + integrity sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw== + +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +touch@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.1.tgz#097a23d7b161476435e5c1344a95c0f75b4a5694" + integrity sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA== + +tree-dump@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/tree-dump/-/tree-dump-1.0.2.tgz#c460d5921caeb197bde71d0e9a7b479848c5b8ac" + integrity sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ== + +treeverse@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/treeverse/-/treeverse-3.0.0.tgz#dd82de9eb602115c6ebd77a574aae67003cb48c8" + integrity sha512-gcANaAnd2QDZFmHFEOF4k7uc1J/6a6z3DJMd/QwEyxLoKGiptJRwid582r7QIsFlFMIZ3SnxfS52S4hm2DHkuQ== + +ts-node@^10.9.2: + version "10.9.2" + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.2.tgz#70f021c9e185bccdca820e26dc413805c101c71f" + integrity sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ== + dependencies: + "@cspotcode/source-map-support" "^0.8.0" + "@tsconfig/node10" "^1.0.7" + "@tsconfig/node12" "^1.0.7" + "@tsconfig/node14" "^1.0.0" + "@tsconfig/node16" "^1.0.2" + acorn "^8.4.1" + acorn-walk "^8.1.1" + arg "^4.1.0" + create-require "^1.1.0" + diff "^4.0.1" + make-error "^1.1.1" + v8-compile-cache-lib "^3.0.1" + yn "3.1.1" + +tsconfig-paths@^3.15.0: + version "3.15.0" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz#5299ec605e55b1abb23ec939ef15edaf483070d4" + integrity sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg== dependencies: "@types/json5" "^0.0.29" - "json5" "^1.0.1" - "minimist" "^1.2.0" - "strip-bom" "^3.0.0" - -"tslib@^2.0.3", "tslib@^2.3.0": - "integrity" "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" - "resolved" "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz" - "version" "2.3.1" - -"ttf2eot@^2.0.0": - "integrity" "sha1-jmM3pYWr0WCKDISVirSDzmn2ZUs=" - "resolved" "https://registry.npmjs.org/ttf2eot/-/ttf2eot-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "argparse" "^1.0.6" - "microbuffer" "^1.0.0" - -"ttf2woff@^3.0.0": - "integrity" "sha512-OvmFcj70PhmAsVQKfC15XoKH55cRWuaRzvr2fpTNhTNer6JBpG8n6vOhRrIgxMjcikyYt88xqYXMMVapJ4Rjvg==" - "resolved" "https://registry.npmjs.org/ttf2woff/-/ttf2woff-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "argparse" "^2.0.1" - "pako" "^1.0.0" - -"ttf2woff2@^4.0.4": - "integrity" "sha512-pdt/q89D6VmWToUkiwrUo/OrQtmHGr2iBl3GQriHE6xq0cnteb8gJF8UitOdXmFTX8ajKgb3HMGKpKAsCJM61g==" - "resolved" "https://registry.npmjs.org/ttf2woff2/-/ttf2woff2-4.0.4.tgz" - "version" "4.0.4" - dependencies: - "bindings" "^1.5.0" - "bufferstreams" "^3.0.0" - "nan" "^2.14.2" - "node-gyp" "^8.1.0" - -"type-check@^0.4.0", "type-check@~0.4.0": - "integrity" "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" - "resolved" "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" - "version" "0.4.0" - dependencies: - "prelude-ls" "^1.2.1" - -"type-fest@^0.16.0": - "integrity" "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==" - "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz" - "version" "0.16.0" - -"type-fest@^0.18.0": - "integrity" "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==" - "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz" - "version" "0.18.1" - -"type-fest@^0.20.2": - "integrity" "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" - "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz" - "version" "0.20.2" - -"type-fest@^0.6.0": - "integrity" "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" - "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz" - "version" "0.6.0" - -"type-fest@^0.8.1": - "integrity" "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" - "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz" - "version" "0.8.1" - -"type-fest@^1.0.2": - "integrity" "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==" - "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz" - "version" "1.4.0" - -"type@^1.0.1": - "integrity" "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" - "resolved" "https://registry.npmjs.org/type/-/type-1.2.0.tgz" - "version" "1.2.0" - -"type@^2.5.0": - "integrity" "sha512-eiDBDOmkih5pMbo9OqsqPRGMljLodLcwd5XD5JbtNB0o89xZAwynY9EdCDsJU7LtcVCClu9DvM7/0Ep1hYX3EQ==" - "resolved" "https://registry.npmjs.org/type/-/type-2.6.0.tgz" - "version" "2.6.0" - -"typescript@^4.6.2": - "integrity" "sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg==" - "resolved" "https://registry.npmjs.org/typescript/-/typescript-4.6.2.tgz" - "version" "4.6.2" - -"uglify-js@^3.1.4": - "version" "3.15.0" - -"unbox-primitive@^1.0.1": - "integrity" "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==" - "resolved" "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz" - "version" "1.0.1" - dependencies: - "function-bind" "^1.1.1" - "has-bigints" "^1.0.1" - "has-symbols" "^1.0.2" - "which-boxed-primitive" "^1.0.2" - -"undefsafe@^2.0.5": - "integrity" "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==" - "resolved" "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz" - "version" "2.0.5" - -"unique-filename@^1.1.1": - "integrity" "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==" - "resolved" "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz" - "version" "1.1.1" - dependencies: - "unique-slug" "^2.0.0" - -"unique-filename@^2.0.0": - "resolved" "https://registry.npmjs.org/unique-filename/-/unique-filename-2.0.1.tgz" - "version" "2.0.1" - dependencies: - "unique-slug" "^3.0.0" - -"unique-slug@^2.0.0": - "integrity" "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==" - "resolved" "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz" - "version" "2.0.2" - dependencies: - "imurmurhash" "^0.1.4" - -"unique-slug@^3.0.0": - "resolved" "https://registry.npmjs.org/unique-slug/-/unique-slug-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "imurmurhash" "^0.1.4" - -"unique-string@^2.0.0": - "integrity" "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==" - "resolved" "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "crypto-random-string" "^2.0.0" - -"universal-user-agent@^6.0.0": - "integrity" "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==" - "resolved" "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz" - "version" "6.0.0" - -"universalify@^0.1.0": - "integrity" "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - "resolved" "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz" - "version" "0.1.2" - -"universalify@^2.0.0": - "integrity" "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" - "resolved" "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz" - "version" "2.0.0" - -"upper-case-first@^2.0.2": - "integrity" "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==" - "resolved" "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz" - "version" "2.0.2" - dependencies: - "tslib" "^2.0.3" - -"upper-case@^2.0.2": - "integrity" "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==" - "resolved" "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz" - "version" "2.0.2" - dependencies: - "tslib" "^2.0.3" - -"uri-js@^4.2.2": - "integrity" "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" - "resolved" "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" - "version" "4.4.1" - dependencies: - "punycode" "^2.1.0" - -"url-join@^4.0.0": - "integrity" "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==" - "resolved" "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz" - "version" "4.0.1" - -"util-deprecate@^1.0.1", "util-deprecate@^1.0.2", "util-deprecate@~1.0.1": - "integrity" "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - "resolved" "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" - "version" "1.0.2" - -"v8-compile-cache@^2.0.3": - "integrity" "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" - "resolved" "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz" - "version" "2.3.0" - -"validate-npm-package-license@^3.0.1": - "integrity" "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==" - "resolved" "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz" - "version" "3.0.4" - dependencies: - "spdx-correct" "^3.0.0" - "spdx-expression-parse" "^3.0.0" - -"validate-npm-package-license@^3.0.4": - "resolved" "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz" - "version" "3.0.4" - dependencies: - "spdx-correct" "^3.0.0" - "spdx-expression-parse" "^3.0.0" - -"validate-npm-package-name@^4.0.0": - "resolved" "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-4.0.0.tgz" - "version" "4.0.0" - dependencies: - "builtins" "^5.0.0" - -"varstream@^0.3.2": - "integrity" "sha1-GKxklHZfP/GjWtmkvgU77BiKXeE=" - "resolved" "https://registry.npmjs.org/varstream/-/varstream-0.3.2.tgz" - "version" "0.3.2" - dependencies: - "readable-stream" "^1.0.33" - -"walk-up-path@^1.0.0": - "resolved" "https://registry.npmjs.org/walk-up-path/-/walk-up-path-1.0.0.tgz" - "version" "1.0.0" - -"wcwidth@^1.0.0": - "resolved" "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz" - "version" "1.0.1" - dependencies: - "defaults" "^1.0.3" - -"webidl-conversions@^3.0.0": - "integrity" "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=" - "resolved" "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz" - "version" "3.0.1" - -"whatwg-url@^5.0.0": - "integrity" "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=" - "resolved" "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz" - "version" "5.0.0" - dependencies: - "tr46" "~0.0.3" - "webidl-conversions" "^3.0.0" - -"which-boxed-primitive@^1.0.2": - "integrity" "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==" - "resolved" "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz" - "version" "1.0.2" - dependencies: - "is-bigint" "^1.0.1" - "is-boolean-object" "^1.1.0" - "is-number-object" "^1.0.4" - "is-string" "^1.0.5" - "is-symbol" "^1.0.3" - -"which@^2.0.1", "which@^2.0.2": - "integrity" "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" - "resolved" "https://registry.npmjs.org/which/-/which-2.0.2.tgz" - "version" "2.0.2" - dependencies: - "isexe" "^2.0.0" - -"wide-align@^1.1.5": - "integrity" "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==" - "resolved" "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz" - "version" "1.1.5" - dependencies: - "string-width" "^1.0.2 || 2 || 3 || 4" - -"word-wrap@^1.2.3": - "integrity" "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" - "resolved" "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz" - "version" "1.2.3" - -"wordwrap@^1.0.0": - "integrity" "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" - "resolved" "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz" - "version" "1.0.0" - -"wrap-ansi@^7.0.0": - "integrity" "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - "resolved" "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" - "version" "7.0.0" - dependencies: - "ansi-styles" "^4.0.0" - "string-width" "^4.1.0" - "strip-ansi" "^6.0.0" - -"wrappy@1": - "integrity" "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - "resolved" "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" - "version" "1.0.2" - -"write-file-atomic@^4.0.0", "write-file-atomic@^4.0.1": - "resolved" "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz" - "version" "4.0.2" - dependencies: - "imurmurhash" "^0.1.4" - "signal-exit" "^3.0.7" - -"xtend@~4.0.1": - "integrity" "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" - "resolved" "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz" - "version" "4.0.2" - -"y18n@^5.0.5": - "integrity" "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" - "resolved" "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz" - "version" "5.0.8" - -"yallist@^4.0.0": - "integrity" "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - "resolved" "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" - "version" "4.0.0" - -"yaml@^1.10.0": - "integrity" "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" - "resolved" "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz" - "version" "1.10.2" - -"yargs-parser@^20.2.2", "yargs-parser@^20.2.3": - "integrity" "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" - "resolved" "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz" - "version" "20.2.9" - -"yargs@^16.2.0": - "integrity" "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==" - "resolved" "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz" - "version" "16.2.0" - dependencies: - "cliui" "^7.0.2" - "escalade" "^3.1.1" - "get-caller-file" "^2.0.5" - "require-directory" "^2.1.1" - "string-width" "^4.2.0" - "y18n" "^5.0.5" - "yargs-parser" "^20.2.2" + json5 "^1.0.2" + minimist "^1.2.6" + strip-bom "^3.0.0" + +tslib@^2.0.0, tslib@^2.3.0: + version "2.8.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f" + integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w== + +tsx@^4.19.2: + version "4.19.2" + resolved "https://registry.yarnpkg.com/tsx/-/tsx-4.19.2.tgz#2d7814783440e0ae42354d0417d9c2989a2ae92c" + integrity sha512-pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g== + dependencies: + esbuild "~0.23.0" + get-tsconfig "^4.7.5" + optionalDependencies: + fsevents "~2.3.3" + +ttf2eot@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/ttf2eot/-/ttf2eot-3.1.0.tgz#c8971af7c68c5b996d8cfdb8847cdadfbf195e05" + integrity sha512-aHTbcYosNHVqb2Qtt9Xfta77ae/5y0VfdwNLUS6sGBeGr22cX2JDMo/i5h3uuOf+FAD3akYOr17+fYd5NK8aXw== + dependencies: + argparse "^2.0.1" + +ttf2woff2@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/ttf2woff2/-/ttf2woff2-5.0.0.tgz#c5cf3d588a08663568241e5fb178dc0ec8968ced" + integrity sha512-FplhShJd3rT8JGa8N04YWQuP7xRvwr9AIq+9/z5O/5ubqNiCADshKl8v51zJDFkhDVcYpdUqUpm7T4M53Z2JoQ== + dependencies: + bindings "^1.5.0" + bufferstreams "^3.0.0" + nan "^2.14.2" + node-gyp "^9.0.0" + +ttf2woff@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ttf2woff/-/ttf2woff-3.0.0.tgz#bd0fc0157e428b7a9a30340f78adf72fb741962a" + integrity sha512-OvmFcj70PhmAsVQKfC15XoKH55cRWuaRzvr2fpTNhTNer6JBpG8n6vOhRrIgxMjcikyYt88xqYXMMVapJ4Rjvg== + dependencies: + argparse "^2.0.1" + pako "^1.0.0" + +tuf-js@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/tuf-js/-/tuf-js-3.0.1.tgz#e3f07ed3d8e87afaa70607bd1ef801d5c1f57177" + integrity sha512-+68OP1ZzSF84rTckf3FA95vJ1Zlx/uaXyiiKyPd1pA4rZNkpEvDAKmsu1xUSmbF/chCRYgZ6UZkDwC7PmzmAyA== + dependencies: + "@tufjs/models" "3.0.1" + debug "^4.3.6" + make-fetch-happen "^14.0.1" + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-fest@^1.0.1: + version "1.4.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-1.4.0.tgz#e9fb813fe3bf1744ec359d55d1affefa76f14be1" + integrity sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA== + +type-fest@^2.12.2: + version "2.19.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" + integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== + +type-fest@^4.6.0, type-fest@^4.7.1: + version "4.29.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-4.29.1.tgz#9c125cb7c0cef6695f3c0b9d15d520c5dbadfcba" + integrity sha512-Y1zUveI92UYM/vo1EFlQSsNf74+hfKH+7saZJslF0Fw92FRaiTAnHPIvo9d7SLxXt/gAYqA4RXyDTioMQCCp0A== + +type@^2.7.2: + version "2.7.3" + resolved "https://registry.yarnpkg.com/type/-/type-2.7.3.tgz#436981652129285cc3ba94f392886c2637ea0486" + integrity sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ== + +typed-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz#1867c5d83b20fcb5ccf32649e5e2fc7424474ff3" + integrity sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + is-typed-array "^1.1.13" + +typed-array-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz#d92972d3cff99a3fa2e765a28fcdc0f1d89dec67" + integrity sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw== + dependencies: + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-proto "^1.0.3" + is-typed-array "^1.1.13" + +typed-array-byte-offset@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.3.tgz#3fa9f22567700cc86aaf86a1e7176f74b59600f2" + integrity sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw== + dependencies: + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-proto "^1.0.3" + is-typed-array "^1.1.13" + reflect.getprototypeof "^1.0.6" + +typed-array-length@^1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.7.tgz#ee4deff984b64be1e118b0de8c9c877d5ce73d3d" + integrity sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg== + dependencies: + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + is-typed-array "^1.1.13" + possible-typed-array-names "^1.0.0" + reflect.getprototypeof "^1.0.6" + +typescript@^5.7.2: + version "5.7.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.7.2.tgz#3169cf8c4c8a828cde53ba9ecb3d2b1d5dd67be6" + integrity sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg== + +uglify-js@^3.1.4: + version "3.19.3" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.19.3.tgz#82315e9bbc6f2b25888858acd1fff8441035b77f" + integrity sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ== + +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== + dependencies: + call-bind "^1.0.2" + has-bigints "^1.0.2" + has-symbols "^1.0.3" + which-boxed-primitive "^1.0.2" + +undefsafe@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.5.tgz#38733b9327bdcd226db889fb723a6efd162e6e2c" + integrity sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA== + +undici-types@~6.20.0: + version "6.20.0" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.20.0.tgz#8171bf22c1f588d1554d55bf204bc624af388433" + integrity sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg== + +unicorn-magic@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/unicorn-magic/-/unicorn-magic-0.1.0.tgz#1bb9a51c823aaf9d73a8bfcd3d1a23dde94b0ce4" + integrity sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ== + +unicorn-magic@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/unicorn-magic/-/unicorn-magic-0.3.0.tgz#4efd45c85a69e0dd576d25532fbfa22aa5c8a104" + integrity sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA== + +unique-filename@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-2.0.1.tgz#e785f8675a9a7589e0ac77e0b5c34d2eaeac6da2" + integrity sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A== + dependencies: + unique-slug "^3.0.0" + +unique-filename@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-3.0.0.tgz#48ba7a5a16849f5080d26c760c86cf5cf05770ea" + integrity sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g== + dependencies: + unique-slug "^4.0.0" + +unique-filename@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-4.0.0.tgz#a06534d370e7c977a939cd1d11f7f0ab8f1fed13" + integrity sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ== + dependencies: + unique-slug "^5.0.0" + +unique-slug@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-3.0.0.tgz#6d347cf57c8a7a7a6044aabd0e2d74e4d76dc7c9" + integrity sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w== + dependencies: + imurmurhash "^0.1.4" + +unique-slug@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-4.0.0.tgz#6bae6bb16be91351badd24cdce741f892a6532e3" + integrity sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ== + dependencies: + imurmurhash "^0.1.4" + +unique-slug@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-5.0.0.tgz#ca72af03ad0dbab4dad8aa683f633878b1accda8" + integrity sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg== + dependencies: + imurmurhash "^0.1.4" + +unique-string@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-3.0.0.tgz#84a1c377aff5fd7a8bc6b55d8244b2bd90d75b9a" + integrity sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ== + dependencies: + crypto-random-string "^4.0.0" + +universal-user-agent@^7.0.0, universal-user-agent@^7.0.2: + version "7.0.2" + resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-7.0.2.tgz#52e7d0e9b3dc4df06cc33cb2b9fd79041a54827e" + integrity sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q== + +universalify@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" + integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +url-join@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/url-join/-/url-join-5.0.0.tgz#c2f1e5cbd95fa91082a93b58a1f42fecb4bdbcf1" + integrity sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA== + +url@^0.11.3: + version "0.11.4" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.4.tgz#adca77b3562d56b72746e76b330b7f27b6721f3c" + integrity sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg== + dependencies: + punycode "^1.4.1" + qs "^6.12.3" + +util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +util@^0.10.3: + version "0.10.4" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901" + integrity sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A== + dependencies: + inherits "2.0.3" + +util@^0.12.5: + version "0.12.5" + resolved "https://registry.yarnpkg.com/util/-/util-0.12.5.tgz#5f17a6059b73db61a875668781a1c2b136bd6fbc" + integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA== + dependencies: + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + which-typed-array "^1.1.2" + +v8-compile-cache-lib@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" + integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== + +validate-npm-package-license@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +validate-npm-package-name@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-6.0.0.tgz#3add966c853cfe36e0e8e6a762edd72ae6f1d6ac" + integrity sha512-d7KLgL1LD3U3fgnvWEY1cQXoO/q6EQ1BSz48Sa149V/5zVTAbgmZIpyI8TRi6U9/JNyeYLlTKsEMPtLC27RFUg== + +walk-up-path@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/walk-up-path/-/walk-up-path-3.0.1.tgz#c8d78d5375b4966c717eb17ada73dbd41490e886" + integrity sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA== + +web-streams-polyfill@^3.0.3: + version "3.3.3" + resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz#2073b91a2fdb1fbfbd401e7de0ac9f8214cecb4b" + integrity sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw== + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== + dependencies: + is-bigint "^1.0.1" + is-boolean-object "^1.1.0" + is-number-object "^1.0.4" + is-string "^1.0.5" + is-symbol "^1.0.3" + +which-builtin-type@^1.1.4: + version "1.2.0" + resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.2.0.tgz#58042ac9602d78a6d117c7e811349df1268ba63c" + integrity sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA== + dependencies: + call-bind "^1.0.7" + function.prototype.name "^1.1.6" + has-tostringtag "^1.0.2" + is-async-function "^2.0.0" + is-date-object "^1.0.5" + is-finalizationregistry "^1.1.0" + is-generator-function "^1.0.10" + is-regex "^1.1.4" + is-weakref "^1.0.2" + isarray "^2.0.5" + which-boxed-primitive "^1.0.2" + which-collection "^1.0.2" + which-typed-array "^1.1.15" + +which-collection@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz#627ef76243920a107e7ce8e96191debe4b16c2a0" + integrity sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw== + dependencies: + is-map "^2.0.3" + is-set "^2.0.3" + is-weakmap "^2.0.2" + is-weakset "^2.0.3" + +which-typed-array@^1.1.14, which-typed-array@^1.1.15, which-typed-array@^1.1.2: + version "1.1.16" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.16.tgz#db4db429c4706feca2f01677a144278e4a8c216b" + integrity sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ== + dependencies: + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.2" + +which@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +which@^2.0.1, which@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +which@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/which/-/which-4.0.0.tgz#cd60b5e74503a3fbcfbf6cd6b4138a8bae644c1a" + integrity sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg== + dependencies: + isexe "^3.1.1" + +which@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/which/-/which-5.0.0.tgz#d93f2d93f79834d4363c7d0c23e00d07c466c8d6" + integrity sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ== + dependencies: + isexe "^3.1.1" + +wide-align@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" + integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== + dependencies: + string-width "^1.0.2 || 2 || 3 || 4" + +word-wrap@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" + integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== + +wordwrap@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== + +workerpool@^6.5.1: + version "6.5.1" + resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.5.1.tgz#060f73b39d0caf97c6db64da004cd01b4c099544" + integrity sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA== + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +write-file-atomic@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-5.0.1.tgz#68df4717c55c6fa4281a7860b4c2ba0a6d2b11e7" + integrity sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw== + dependencies: + imurmurhash "^0.1.4" + signal-exit "^4.0.1" + +write-file-atomic@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-6.0.0.tgz#e9c89c8191b3ef0606bc79fb92681aa1aa16fa93" + integrity sha512-GmqrO8WJ1NuzJ2DrziEI2o57jKAVIQNf8a18W3nCYU3H7PNWqCCVTeH6/NQE93CIllIgQS98rrmVkYgTX9fFJQ== + dependencies: + imurmurhash "^0.1.4" + signal-exit "^4.0.1" + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yallist@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-5.0.0.tgz#00e2de443639ed0d78fd87de0d27469fbcffb533" + integrity sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw== + +yaml@^2.2.2: + version "2.6.1" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.6.1.tgz#42f2b1ba89203f374609572d5349fb8686500773" + integrity sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg== + +yargs-parser@^20.2.2, yargs-parser@^20.2.9: + version "20.2.9" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + +yargs-unparser@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb" + integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== + dependencies: + camelcase "^6.0.0" + decamelize "^4.0.0" + flat "^5.0.2" + is-plain-obj "^2.1.0" + +yargs@^16.2.0: + version "16.2.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + +yn@3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +yoctocolors@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/yoctocolors/-/yoctocolors-2.1.1.tgz#e0167474e9fbb9e8b3ecca738deaa61dd12e56fc" + integrity sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==