From 145e92e735e71302291d2c617299cad0301dbff9 Mon Sep 17 00:00:00 2001 From: garthdb Date: Tue, 16 Apr 2024 14:20:36 -0600 Subject: [PATCH] chore: updated deps, added tests, updated changeset changelog --- .changeset/config.json | 5 +- .github/workflows/ci.yml | 2 +- .github/workflows/deploy-docs.yml | 8 +- .github/workflows/release.yml | 2 +- .moon/toolchain.yml | 4 +- .moon/workspace.yml | 2 + docs/site/moon.yml | 1 + docs/visualizer/moon.yml | 2 + moon.yml | 36 + package.json | 4 +- packages/tokens/package.json | 6 +- packages/tokens/tasks/diff.js | 4 +- pnpm-lock.yaml | 145 +- pnpm-workspace.yaml | 1 + test/validateWorkflows.js | 27 + tokenNames.csv | 1374 ++++++++++++++++++ tools/token-csv-generator/moon.yml | 22 + tools/token-csv-generator/package.json | 5 +- tools/token-csv-generator/src/index.js | 5 +- tools/token-csv-generator/test/index.test.js | 1 + tools/transform-tokens-json/package.json | 4 +- 21 files changed, 1610 insertions(+), 50 deletions(-) create mode 100644 moon.yml create mode 100644 test/validateWorkflows.js create mode 100644 tokenNames.csv create mode 100644 tools/token-csv-generator/moon.yml diff --git a/.changeset/config.json b/.changeset/config.json index cee6df89..a0e8146f 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -1,6 +1,9 @@ { "$schema": "https://unpkg.com/@changesets/config@2.3.0/schema.json", - "changelog": "@changesets/cli/changelog", + "changelog": [ + "@changesets/changelog-github", + { "repo": "adobe/spectrum-tokens" } + ], "commit": false, "fixed": [], "linked": [], diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3fd32251..d26a7894 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ jobs: name: CI runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: moonrepo/setup-toolchain@v0 diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 1980a486..26168dc7 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -27,7 +27,7 @@ jobs: url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: moonrepo/setup-toolchain@v0 @@ -37,11 +37,11 @@ jobs: - run: moon run site:export - run: moon run visualizer:build - name: Setup Pages - uses: actions/configure-pages@v3 + uses: actions/configure-pages@v5 - name: Upload artifact - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v3 with: path: "./site" - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c4969583..8da9ac45 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: contents: write id-token: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: moonrepo/setup-toolchain@v0 diff --git a/.moon/toolchain.yml b/.moon/toolchain.yml index 4caede13..97d3f035 100644 --- a/.moon/toolchain.yml +++ b/.moon/toolchain.yml @@ -12,7 +12,7 @@ rust: {} node: # The version to use. Must be a semantic version that includes major, minor, and patch. # We suggest using the latest active LTS version: https://nodejs.org/en/about/releases - version: "20.11" + version: "20.12" # The package manager to use when managing dependencies. # Accepts "npm" (default), "pnpm", or "yarn". @@ -33,7 +33,7 @@ node: # Infer and automatically create moon tasks from `package.json` scripts, per project. # BEWARE: Tasks and scripts are not 1:1 in functionality, so please refer to the documentation. - inferTasksFromScripts: true + inferTasksFromScripts: false # Sync a project's `dependsOn` as dependencies within the project's `package.json`. syncProjectWorkspaceDependencies: true diff --git a/.moon/workspace.yml b/.moon/workspace.yml index d8fc8a7d..df86a896 100644 --- a/.moon/workspace.yml +++ b/.moon/workspace.yml @@ -4,6 +4,8 @@ projects: tokens: "packages/tokens" visualizer: "docs/visualizer" site: "docs/site" + root: "." + csvGenerator: tools/token-csv-generator vcs: manager: "git" defaultBranch: "main" diff --git a/docs/site/moon.yml b/docs/site/moon.yml index 967c7d7b..7622c353 100644 --- a/docs/site/moon.yml +++ b/docs/site/moon.yml @@ -8,6 +8,7 @@ # OF ANY KIND, either express or implied. See the License for the specific language # governing permissions and limitations under the License. $schema: "https://moonrepo.dev/schemas/project.json" +stack: "frontend" tags: - docs - site diff --git a/docs/visualizer/moon.yml b/docs/visualizer/moon.yml index 160c549d..5ad1110a 100644 --- a/docs/visualizer/moon.yml +++ b/docs/visualizer/moon.yml @@ -8,6 +8,8 @@ # OF ANY KIND, either express or implied. See the License for the specific language # governing permissions and limitations under the License. $schema: "https://moonrepo.dev/schemas/project.json" +stack: frontend +type: application tags: - docs - site diff --git a/moon.yml b/moon.yml new file mode 100644 index 00000000..58a445a5 --- /dev/null +++ b/moon.yml @@ -0,0 +1,36 @@ +# Copyright 2024 Adobe. All rights reserved. +# This file is licensed to you under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. You may obtain a copy +# of the License at http://www.apache.org/licenses/LICENSE-2.0 + +# Unless required by applicable law or agreed to in writing, software distributed under +# the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +# OF ANY KIND, either express or implied. See the License for the specific language +# governing permissions and limitations under the License. +$schema: "https://moonrepo.dev/schemas/project.json" +stack: "infrastructure" +tasks: + test: + command: + - pnpm + - ava + - test + platform: node + pre-commit: + command: + - pnpm + - lint-staged + platform: node + local: true + prepare: + command: + - pnpm + - "husky || true" + platform: node + local: true + release: + command: + - pnpm + - changeset publish + platform: node + local: true diff --git a/package.json b/package.json index c13be1aa..43866b5b 100644 --- a/package.json +++ b/package.json @@ -22,17 +22,19 @@ }, "homepage": "https://github.com/adobe/spectrum-tokens#readme", "devDependencies": { + "@action-validator/core": "^0.6.0", "@changesets/cli": "^2.27.1", "@commitlint/cli": "^19.2.2", "@commitlint/config-conventional": "^19.2.2", "@moonrepo/cli": "^1.23.4", "ava": "^6.1.2", + "glob": "^10.3.12", "husky": "^9.0.11", "lint-staged": "^15.2.2", "prettier": "^3.2.5" }, "engines": { - "node": "~20.11" + "node": "~20.12" }, "packageManager": "pnpm@9.0.1" } diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 9277699e..35cac2b4 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -24,13 +24,13 @@ "homepage": "https://github.com/adobe/spectrum-tokens/tree/main/packages/tokens#readme", "devDependencies": { "ajv": "^8.12.0", - "ajv-formats": "^2.1.1", + "ajv-formats": "^3.0.1", "deep-object-diff": "^1.1.9", "find-duplicated-property-keys": "^1.2.9", - "glob": "^10.3.10", + "glob": "^10.3.12", "style-dictionary": "^3.9.2", "style-dictionary-sets": "^2.3.0", - "tar": "^6.2.0", + "tar": "^7.0.1", "tmp-promise": "^3.0.3" } } diff --git a/packages/tokens/tasks/diff.js b/packages/tokens/tasks/diff.js index 4c96e66e..ff421d4a 100644 --- a/packages/tokens/tasks/diff.js +++ b/packages/tokens/tasks/diff.js @@ -16,7 +16,7 @@ import { fileURLToPath } from "url"; import { detailedDiff, diff } from "deep-object-diff"; import { exec } from "node:child_process"; import { promisify } from "util"; -import tar from "tar"; +import { x } from "tar"; import tmp from "tmp-promise"; const execP = promisify(exec); @@ -65,7 +65,7 @@ async function getOldTokens() { const { stdout, stderr } = await execP( `npm pack @adobe/spectrum-tokens@${tag} --pack-destination ${tmpDir.path}`, ); - await tar.x({ + await x({ cwd: tmpDir.path, file: join(tmpDir.path, stdout.trim()), }); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4be6837b..c283a3ba 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,6 +7,9 @@ settings: importers: .: devDependencies: + "@action-validator/core": + specifier: ^0.6.0 + version: 0.6.0 "@changesets/cli": specifier: ^2.27.1 version: 2.27.1 @@ -22,6 +25,9 @@ importers: ava: specifier: ^6.1.2 version: 6.1.2 + glob: + specifier: ^10.3.12 + version: 10.3.12 husky: specifier: ^9.0.11 version: 9.0.11 @@ -138,8 +144,8 @@ importers: specifier: ^8.12.0 version: 8.12.0 ajv-formats: - specifier: ^2.1.1 - version: 2.1.1(ajv@8.12.0) + specifier: ^3.0.1 + version: 3.0.1(ajv@8.12.0) deep-object-diff: specifier: ^1.1.9 version: 1.1.9 @@ -147,7 +153,7 @@ importers: specifier: ^1.2.9 version: 1.2.9 glob: - specifier: ^10.3.10 + specifier: ^10.3.12 version: 10.3.12 style-dictionary: specifier: ^3.9.2 @@ -156,13 +162,36 @@ importers: specifier: ^2.3.0 version: 2.3.0 tar: - specifier: ^6.2.0 - version: 6.2.1 + specifier: ^7.0.1 + version: 7.0.1 tmp-promise: specifier: ^3.0.3 version: 3.0.3 + tools/token-csv-generator: + dependencies: + "@adobe/spectrum-tokens": + specifier: workspace:* + version: link:../../packages/tokens + jsonpath-plus: + specifier: ^8.1.0 + version: 8.1.0 + + tools/token-manifest-builder: {} + + tools/transform-tokens-json: + dependencies: + jsonpath-plus: + specifier: ^8.1.0 + version: 8.1.0 + packages: + "@action-validator/core@0.6.0": + resolution: + { + integrity: sha512-tPglwCr8Mm8SWzwnVewwFmqRx91F0WvMsM0BRAqH4CLalyGndm53Xvp+UcUSzswpk1wkjIDYI7RyEhWMLyPkig==, + } + "@babel/code-frame@7.24.2": resolution: { @@ -652,6 +681,13 @@ packages: } engines: { node: ">=12" } + "@isaacs/fs-minipass@4.0.0": + resolution: + { + integrity: sha512-S00nN1Qt3z3dSP6Db45fj/mksrAq5XWNIJ/SWXGP8XPT2jrzEuYRCSEx08JpJwBcG2F1xgiOtBMGDU0AZHmxew==, + } + engines: { node: ">=18.0.0" } + "@lit-labs/observers@2.0.2": resolution: { @@ -1381,17 +1417,6 @@ packages: } engines: { node: ">= 6.0.0" } - ajv-formats@2.1.1: - resolution: - { - integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==, - } - peerDependencies: - ajv: ^8.0.0 - peerDependenciesMeta: - ajv: - optional: true - ajv-formats@3.0.1: resolution: { @@ -1742,6 +1767,13 @@ packages: } engines: { node: ">=10" } + chownr@3.0.0: + resolution: + { + integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==, + } + engines: { node: ">=18" } + chunkd@2.0.1: resolution: { @@ -3133,6 +3165,14 @@ packages: } engines: { "0": node >= 0.2.0 } + jsonpath-plus@8.1.0: + resolution: + { + integrity: sha512-qVTiuKztFGw0dGhYi3WNqvddx3/SHtyDT0xJaeyz4uP0d1tkpG+0y5uYQ4OcIo1TLAz3PE/qDOW9F0uDt3+CTw==, + } + engines: { node: ">=14.0.0" } + hasBin: true + kind-of@6.0.3: resolution: { @@ -3504,6 +3544,13 @@ packages: } engines: { node: ">= 8" } + minizlib@3.0.1: + resolution: + { + integrity: sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==, + } + engines: { node: ">= 18" } + mixme@0.5.10: resolution: { @@ -3519,6 +3566,14 @@ packages: engines: { node: ">=10" } hasBin: true + mkdirp@3.0.1: + resolution: + { + integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==, + } + engines: { node: ">=10" } + hasBin: true + ms@2.1.2: resolution: { @@ -4558,6 +4613,13 @@ packages: } engines: { node: ">=10" } + tar@7.0.1: + resolution: + { + integrity: sha512-IjMhdQMZFpKsHEQT3woZVxBtCQY+0wk3CVxdRkGXEgyGa0dNS/ehPvOMr2nmfC7x5Zj2N+l6yZUpmICjLGS35w==, + } + engines: { node: ">=18" } + temp-dir@3.0.0: resolution: { @@ -4611,12 +4673,12 @@ packages: } engines: { node: ">=0.6.0" } - tmp@0.2.1: + tmp@0.2.3: resolution: { - integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==, + integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==, } - engines: { node: ">=8.17.0" } + engines: { node: ">=14.14" } to-regex-range@5.0.1: resolution: @@ -4962,6 +5024,13 @@ packages: integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, } + yallist@5.0.0: + resolution: + { + integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==, + } + engines: { node: ">=18" } + yaml@2.3.4: resolution: { @@ -5012,6 +5081,8 @@ packages: engines: { node: ">=12.20" } snapshots: + "@action-validator/core@0.6.0": {} + "@babel/code-frame@7.24.2": dependencies: "@babel/highlight": 7.24.2 @@ -5382,6 +5453,10 @@ snapshots: wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 + "@isaacs/fs-minipass@4.0.0": + dependencies: + minipass: 7.0.4 + "@lit-labs/observers@2.0.2": dependencies: "@lit/reactive-element": 2.0.4 @@ -5847,10 +5922,6 @@ snapshots: transitivePeerDependencies: - supports-color - ajv-formats@2.1.1(ajv@8.12.0): - optionalDependencies: - ajv: 8.12.0 - ajv-formats@3.0.1(ajv@8.12.0): optionalDependencies: ajv: 8.12.0 @@ -6086,6 +6157,8 @@ snapshots: chownr@2.0.0: {} + chownr@3.0.0: {} + chunkd@2.0.1: {} ci-info@3.9.0: {} @@ -6910,6 +6983,8 @@ snapshots: jsonparse@1.3.1: {} + jsonpath-plus@8.1.0: {} + kind-of@6.0.3: {} kleur@4.1.5: {} @@ -7124,10 +7199,17 @@ snapshots: minipass: 3.3.6 yallist: 4.0.0 + minizlib@3.0.1: + dependencies: + minipass: 7.0.4 + rimraf: 5.0.5 + mixme@0.5.10: {} mkdirp@1.0.4: {} + mkdirp@3.0.1: {} + ms@2.1.2: {} ms@2.1.3: {} @@ -7737,6 +7819,15 @@ snapshots: mkdirp: 1.0.4 yallist: 4.0.0 + tar@7.0.1: + dependencies: + "@isaacs/fs-minipass": 4.0.0 + chownr: 3.0.0 + minipass: 5.0.0 + minizlib: 3.0.1 + mkdirp: 3.0.1 + yallist: 5.0.0 + temp-dir@3.0.0: {} term-size@2.2.1: {} @@ -7751,15 +7842,13 @@ snapshots: tmp-promise@3.0.3: dependencies: - tmp: 0.2.1 + tmp: 0.2.3 tmp@0.0.33: dependencies: os-tmpdir: 1.0.2 - tmp@0.2.1: - dependencies: - rimraf: 3.0.2 + tmp@0.2.3: {} to-regex-range@5.0.1: dependencies: @@ -7960,6 +8049,8 @@ snapshots: yallist@4.0.0: {} + yallist@5.0.0: {} + yaml@2.3.4: {} yargs-parser@18.1.3: diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index df82970c..8c58d966 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,3 +1,4 @@ packages: - "packages/*" - "docs/*" + - "tools/*" diff --git a/test/validateWorkflows.js b/test/validateWorkflows.js new file mode 100644 index 00000000..705a35b4 --- /dev/null +++ b/test/validateWorkflows.js @@ -0,0 +1,27 @@ +import test from "ava"; +import { glob } from "glob"; +import { readFile } from "fs/promises"; +import { validateWorkflow } from "@action-validator/core"; + +test("validate github workflow config files", async (t) => { + const fileNames = await glob(".github/workflows/**/*.yml"); + const result = Promise.all( + fileNames.map(async (fileName) => { + const workflowSource = await readFile(fileName, "utf8"); + const state = validateWorkflow(workflowSource); + return state.errors; + }), + ).then((results) => { + return results.reduce((acc, curr) => [...acc, ...curr], []); + }); + // const fileNames = await glob("src/**/*.json"); + t.deepEqual(await result, []); + // const workflowSource = readFileSync("workflow.yml", "utf8"); + // const state = validator.validateWorkflow(workflowSource); + // const isValid = state.errors.length === 0; + // const manifest = JSON.parse(await readFile("manifest.json", "utf8")); + // const fileNames = await glob("src/**/*.json"); + // t.deepEqual(manifest, fileNames); +}); + +// Validate Workflow diff --git a/tokenNames.csv b/tokenNames.csv new file mode 100644 index 00000000..d8f46302 --- /dev/null +++ b/tokenNames.csv @@ -0,0 +1,1374 @@ +tokenName,fileName,uuid,component +accent-color-100,semantic-color-palette,, +accent-color-200,semantic-color-palette,, +accent-color-300,semantic-color-palette,, +accent-color-400,semantic-color-palette,, +accent-color-500,semantic-color-palette,, +accent-color-600,semantic-color-palette,, +accent-color-700,semantic-color-palette,, +accent-color-800,semantic-color-palette,, +accent-color-900,semantic-color-palette,, +accent-color-1000,semantic-color-palette,, +accent-color-1100,semantic-color-palette,, +accent-color-1200,semantic-color-palette,, +accent-color-1300,semantic-color-palette,, +accent-color-1400,semantic-color-palette,, +informative-color-100,semantic-color-palette,b9fc8b82-275a-49fe-98d7-95f136b48772, +informative-color-200,semantic-color-palette,df4ceb7f-aa84-4d71-ab3f-a56146ef146c, +informative-color-300,semantic-color-palette,0caae9f7-cad1-4cd6-b4a3-d47ac090d40a, +informative-color-400,semantic-color-palette,46f3f214-5211-452b-8dc0-ffb7e9f9712b, +informative-color-500,semantic-color-palette,546f860f-4e17-455a-a6eb-f7a6a3b37128, +informative-color-600,semantic-color-palette,79a0fe09-63fb-4c96-a3bf-a8e126e7838c, +informative-color-700,semantic-color-palette,04a018bd-229c-47da-99e9-d338d05f0fb6, +informative-color-800,semantic-color-palette,b4efe4b2-3787-47df-a7a0-5d89c3641f9f, +informative-color-900,semantic-color-palette,41b73196-0bc1-493e-9b5d-49f608914f5a, +informative-color-1000,semantic-color-palette,6b609325-2bcf-491a-ad38-1409025caae0, +informative-color-1100,semantic-color-palette,7bf54313-58b6-4581-b5ac-a2e51df4a9ed, +informative-color-1200,semantic-color-palette,4504d6a9-87f7-48ea-94a0-d075f28bbcff, +informative-color-1300,semantic-color-palette,f7a736c2-db44-4668-90a8-c27778ae9892, +informative-color-1400,semantic-color-palette,b178b13b-93ee-422c-af98-3bf89105754b, +negative-color-100,semantic-color-palette,c37f795e-e338-4220-b0ab-5cf899f114c0, +negative-color-200,semantic-color-palette,14919f0c-a40f-48d1-adfd-55826de8e600, +negative-color-300,semantic-color-palette,53486ec0-79f7-4853-ad5b-dacc5a904f8a, +negative-color-400,semantic-color-palette,de87c624-7f43-406e-8cdf-584343a55edc, +negative-color-500,semantic-color-palette,67d09223-03a0-444a-95b6-645a2d66f8c7, +negative-color-600,semantic-color-palette,4a0c11a4-4e77-43e0-a2cd-9931ac51d87d, +negative-color-700,semantic-color-palette,b7d5d2db-0282-436b-8cb0-873e891b22a6, +negative-color-800,semantic-color-palette,d858b481-8970-4547-aed1-b6388c36aba4, +negative-color-900,semantic-color-palette,0b469d2e-7c66-4188-b6bf-bbc379f75538, +negative-color-1000,semantic-color-palette,2ea616aa-e08f-47cb-a3b0-3d7a06bd6ec2, +negative-color-1100,semantic-color-palette,8a3dacc3-93f7-4e22-8bd7-c338da1a2489, +negative-color-1200,semantic-color-palette,1b24f4e8-224c-41f9-b0eb-6a01e9261598, +negative-color-1300,semantic-color-palette,fa641bdd-0714-4ae4-9a8f-8d829a9977e5, +negative-color-1400,semantic-color-palette,58824d04-e2c0-4f0c-a3d7-9b88a01bf28d, +notice-color-100,semantic-color-palette,d0382c45-0cf7-4c3b-89fb-3536459cbc31, +notice-color-200,semantic-color-palette,b9218264-6bd0-4fee-8ab7-346428c9bbaa, +notice-color-300,semantic-color-palette,f1e8d13d-d9d2-46ea-befe-ebf1927e08dd, +notice-color-400,semantic-color-palette,77535709-6e67-4d7c-aaeb-d2dea1918430, +notice-color-500,semantic-color-palette,ab679012-b7cb-4f24-b401-b02e523d7c99, +notice-color-600,semantic-color-palette,716af828-c64d-465d-8476-d142892ca59c, +notice-color-700,semantic-color-palette,adb5159c-654f-4b9a-a101-3afa90328c42, +notice-color-800,semantic-color-palette,a83cdd4d-b8a9-42af-98c4-459f721abbff, +notice-color-900,semantic-color-palette,df87ca09-ff38-485e-90f7-6d9cbfbb6714, +notice-color-1000,semantic-color-palette,d6fdcf63-c135-48a0-a767-e8f1e93e8190, +notice-color-1100,semantic-color-palette,c30c4ce0-ed40-44eb-ae0b-3549523d5bc9, +notice-color-1200,semantic-color-palette,7e22e4fe-bd28-4dac-b518-e35ec6900da3, +notice-color-1300,semantic-color-palette,197c8ecc-3d6a-46e5-82f2-c315a52169fb, +notice-color-1400,semantic-color-palette,4eccc44a-1cd5-4d9e-8627-18f7a363d3c8, +positive-color-100,semantic-color-palette,09503086-ccd2-4dfb-9bc1-6b86cf595976, +positive-color-200,semantic-color-palette,00a2adcc-7b8a-4e94-97d2-51a647016265, +positive-color-300,semantic-color-palette,2c75e63f-e628-487d-a143-e03de065d5ee, +positive-color-400,semantic-color-palette,906a05ca-0b2f-4ada-9e71-507d9f0653be, +positive-color-500,semantic-color-palette,b2e94182-57ae-479d-ab91-717edc0ec3f6, +positive-color-600,semantic-color-palette,d3a018bf-0abe-4031-8c38-80a94b0d62ae, +positive-color-700,semantic-color-palette,ffdde321-5c1d-489e-8a0f-afc582248594, +positive-color-800,semantic-color-palette,ee02d9d5-b840-44af-be8a-0f10086e8f7e, +positive-color-900,semantic-color-palette,1cd86108-ff79-4ccf-911e-8de9986c9053, +positive-color-1000,semantic-color-palette,82d9fc42-d750-43d2-b227-b8df29abaca4, +positive-color-1100,semantic-color-palette,05f42672-455e-421c-8a7e-cb187355d23d, +positive-color-1200,semantic-color-palette,c4f84a4a-cfc4-42a6-81d4-11f27e1b38eb, +positive-color-1300,semantic-color-palette,7d2d9fe7-5498-4f73-be6a-3a4ac91b6e15, +positive-color-1400,semantic-color-palette,eb2fdab7-ea9e-42a3-a3d1-f9beec0c7b66, +default-font-family,typography,45d43d4e-a4e4-4c5f-94ec-644a81300eb0, +sans-serif-font-family,typography,a552c422-c51c-458a-87b0-c6fe5178bf4b, +serif-font-family,typography,7f83198f-26ec-4156-9573-826dd7feb718, +cjk-font-family,typography,034892ba-eff6-4193-b4c5-61d20c8f22eb, +light-font-weight,typography,fd477873-3767-4883-ab3f-5ee2758b923b, +regular-font-weight,typography,02a94ddf-1007-4c86-8863-905874e40f95, +medium-font-weight,typography,c966c3b6-1bf5-4064-89f9-00d9ec673fd4, +bold-font-weight,typography,ff246e6b-7515-49a2-9dc6-8cdf1ea9b2d8, +extra-bold-font-weight,typography,ccadf44e-5424-4920-979f-ea1ef39687c4, +black-font-weight,typography,e2f23ca1-802b-40a2-a211-33090f9a043e, +italic-font-style,typography,9a58e4ae-dfa1-428b-9d90-11f4275418da, +default-font-style,typography,25668698-bf78-46f4-bc6c-8fea068ddb34, +font-size-50,typography,, +font-size-75,typography,, +font-size-100,typography,, +font-size-200,typography,, +font-size-300,typography,, +font-size-400,typography,, +font-size-500,typography,, +font-size-600,typography,, +font-size-700,typography,, +font-size-800,typography,, +font-size-900,typography,, +font-size-1000,typography,, +font-size-1100,typography,, +font-size-1200,typography,, +font-size-1300,typography,, +line-height-100,typography,dd125d1d-cf4d-45c8-ab21-52331a9a264b, +line-height-200,typography,832f2589-0e75-48dd-bbe3-e3f5b98e6c97, +cjk-line-height-100,typography,8b4ab68d-9060-4e11-9ecc-3b9d3db27fe4, +cjk-line-height-200,typography,c5a5d186-54b3-44a0-b1c6-e9b102871015, +cjk-letter-spacing,typography,12e27721-35f5-4d03-95f3-3fc9e1cf50e4, +heading-sans-serif-font-family,typography,234d7b9d-bddc-4988-8be5-ef5e41e08185,heading +heading-serif-font-family,typography,f2430818-41b5-439a-8347-6b384e78d141,heading +heading-cjk-font-family,typography,b6652ee5-466f-4117-a77c-a93a40f2a791,heading +heading-sans-serif-light-font-weight,typography,ff84a748-5923-451d-967c-a346d2dee46c,heading +heading-sans-serif-light-font-style,typography,c5551fd5-4ee2-4c93-b91f-9ed295fa63a4,heading +heading-serif-light-font-weight,typography,66958795-6459-4750-8c68-dc39ab383837,heading +heading-serif-light-font-style,typography,5f30418a-aa76-434e-bca9-902d5be0d929,heading +heading-cjk-light-font-weight,typography,9da0ba4c-b4e3-4052-8b2e-d2fde714bb9d,heading +heading-cjk-light-font-style,typography,b5704c75-2914-4268-9023-7f7452e826c1,heading +heading-sans-serif-font-weight,typography,,heading +heading-sans-serif-font-style,typography,561d905e-7f44-43da-b2b4-26e12551ef6d,heading +heading-serif-font-weight,typography,,heading +heading-serif-font-style,typography,938f3684-44c6-4ae2-935a-b88921fcd7fe,heading +heading-cjk-font-weight,typography,,heading +heading-cjk-font-style,typography,c93b39df-82e9-4e87-920f-1747e5d48e8e,heading +heading-sans-serif-heavy-font-weight,typography,ef13b8f0-f686-492d-990f-691ec91ebb96,heading +heading-sans-serif-heavy-font-style,typography,0c4cdd06-8180-40b1-9b1f-d7d973a7b772,heading +heading-serif-heavy-font-weight,typography,6b74c5ea-6bf4-46bb-bee1-3841606f1500,heading +heading-serif-heavy-font-style,typography,14532cb8-6c88-46ce-886b-96fac971e7b9,heading +heading-cjk-heavy-font-weight,typography,73c20d2f-1227-46bc-8548-102358405b0b,heading +heading-cjk-heavy-font-style,typography,b2f50ba2-e694-47ba-b81a-ea8fc813247e,heading +heading-sans-serif-light-strong-font-weight,typography,75437f9a-7ee8-4194-b4b3-0746be097396,heading +heading-sans-serif-light-strong-font-style,typography,67271ca0-c9fd-4047-a615-6314d7333f7a,heading +heading-serif-light-strong-font-weight,typography,29ad1c96-62e4-4143-88e8-fc8e08913a52,heading +heading-serif-light-strong-font-style,typography,73906871-24e5-48cc-9140-ec700c08d144,heading +heading-cjk-light-strong-font-weight,typography,5ca91bc2-215b-4cbb-b966-80bfffd569ad,heading +heading-cjk-light-strong-font-style,typography,be854057-43b1-40ce-bdc7-69960cd7638c,heading +heading-sans-serif-strong-font-weight,typography,79275989-91ed-408a-b884-a31d9f8bac26,heading +heading-sans-serif-strong-font-style,typography,2117cb6e-67f7-4509-b4fb-e9e442b6dc0e,heading +heading-serif-strong-font-weight,typography,6df0fb95-4aa0-4c67-896d-fa6aa3d34e95,heading +heading-serif-strong-font-style,typography,2e0ef484-406a-4902-995d-9a3d5177ec12,heading +heading-cjk-strong-font-weight,typography,eaf179aa-4514-4206-b3e2-a99b7d4d2029,heading +heading-cjk-strong-font-style,typography,4f061165-0e86-46b9-83c3-c95eeb8ff956,heading +heading-sans-serif-heavy-strong-font-weight,typography,2104c3c2-d834-436a-a26d-508056f1013d,heading +heading-sans-serif-heavy-strong-font-style,typography,86775b10-5682-49fb-9d38-6bdb857da801,heading +heading-serif-heavy-strong-font-weight,typography,af0010c7-5134-4fe4-bee1-bbb7dd31de3a,heading +heading-serif-heavy-strong-font-style,typography,b2875bbe-b5cb-452f-b7d6-3dcb4fc59921,heading +heading-cjk-heavy-strong-font-weight,typography,b7d2203c-c651-493e-80c2-b71b7c7c2692,heading +heading-cjk-heavy-strong-font-style,typography,26817f91-2742-4170-aa01-1e1e67ef01e8,heading +heading-sans-serif-light-emphasized-font-weight,typography,e882ea46-8f0a-4313-84f5-85bb8d9f1f5e,heading +heading-sans-serif-light-emphasized-font-style,typography,5f88eb81-7052-4c21-9896-f14cb09f0e70,heading +heading-serif-light-emphasized-font-weight,typography,b5f79fde-07f7-4c07-897e-0bfdf27e2839,heading +heading-serif-light-emphasized-font-style,typography,7bd831cd-3fe0-402b-a105-f65b8e8023e2,heading +heading-cjk-light-emphasized-font-weight,typography,aea9787b-ee0b-40cc-9089-5973e52b18bd,heading +heading-cjk-light-emphasized-font-style,typography,dac03eec-6910-4176-bfca-33f8a57cf3d7,heading +heading-sans-serif-emphasized-font-weight,typography,,heading +heading-sans-serif-emphasized-font-style,typography,2f17833a-28a4-4152-8999-12b077557797,heading +heading-serif-emphasized-font-weight,typography,,heading +heading-serif-emphasized-font-style,typography,fe694554-832d-457d-a320-f02629f9c441,heading +heading-cjk-emphasized-font-weight,typography,d854afd2-290a-40ae-a627-c4cdabeb546a,heading +heading-cjk-emphasized-font-style,typography,05c74b28-3051-498c-874a-5dc523bc27e5,heading +heading-sans-serif-heavy-emphasized-font-weight,typography,a7cb3274-e48e-435b-a066-32027ac19e84,heading +heading-sans-serif-heavy-emphasized-font-style,typography,924c338f-7141-490a-a842-ad632c26160c,heading +heading-serif-heavy-emphasized-font-weight,typography,82e9d579-8918-4114-bafa-3a9757556f84,heading +heading-serif-heavy-emphasized-font-style,typography,a18ac621-eade-4224-9660-3e9a080219ec,heading +heading-cjk-heavy-emphasized-font-weight,typography,9315971c-6e83-42c8-9c24-d1bc6fa5e106,heading +heading-cjk-heavy-emphasized-font-style,typography,aef21944-3dac-4b2d-ba7b-0a4df3f406bb,heading +heading-sans-serif-light-strong-emphasized-font-weight,typography,c297a503-fc3c-4939-8c5a-6611b9b04719,heading +heading-sans-serif-light-strong-emphasized-font-style,typography,bc5d65e0-e13a-424c-a260-9268a0dee66c,heading +heading-serif-light-strong-emphasized-font-weight,typography,98c61df3-057d-4345-881e-0c04628757f3,heading +heading-serif-light-strong-emphasized-font-style,typography,71c8e302-6bc1-4f45-b804-c847dd153d1b,heading +heading-cjk-light-strong-emphasized-font-weight,typography,83cc347c-7a1a-4665-9de4-cf19903f1043,heading +heading-cjk-light-strong-emphasized-font-style,typography,9136e25e-563b-4485-bad7-41809d5317de,heading +heading-sans-serif-strong-emphasized-font-weight,typography,9d834e30-53c1-4cea-9e17-2326038cb6cb,heading +heading-sans-serif-strong-emphasized-font-style,typography,f692d35f-1b11-43d1-ad29-967436b90928,heading +heading-serif-strong-emphasized-font-weight,typography,cd32f2b7-3e9f-47ae-ad34-2c7783dd5b2f,heading +heading-serif-strong-emphasized-font-style,typography,da6e1593-9d2a-4fd8-8877-d30d6e1d1c07,heading +heading-cjk-strong-emphasized-font-weight,typography,0080a817-b26f-42f1-84c4-5ed1ac08c12c,heading +heading-cjk-strong-emphasized-font-style,typography,22934d4d-4952-40a7-a5e5-256a7a3c9371,heading +heading-sans-serif-heavy-strong-emphasized-font-weight,typography,8779e773-7b37-4eb0-ae7a-2ba0104ad9d5,heading +heading-sans-serif-heavy-strong-emphasized-font-style,typography,c20ea22a-c34d-4c7c-a816-75b533e28c92,heading +heading-serif-heavy-strong-emphasized-font-weight,typography,2d8e76cd-f123-488d-893d-54a9f48f679e,heading +heading-serif-heavy-strong-emphasized-font-style,typography,adf303e8-1e27-4aec-9bbc-5abe166358ec,heading +heading-cjk-heavy-strong-emphasized-font-weight,typography,a0f680fa-2453-4bcc-b06c-9ff82de50c0c,heading +heading-cjk-heavy-strong-emphasized-font-style,typography,619a15ba-f74e-4ff4-a604-312b810f1a50,heading +heading-size-xxxl,typography,db884bf9-e7b5-420a-b408-bd9a4d6bb0a4,heading +heading-size-xxl,typography,464e34cd-e768-4a38-a72b-cae1a4852ef3,heading +heading-size-xl,typography,94bb5ad9-503a-428a-a8ba-6cf3f70592ac,heading +heading-size-l,typography,336e434c-9026-4bb3-96b1-5bb44376b868,heading +heading-size-m,typography,4cdcefe1-2006-4560-839f-5bdef6db8c1a,heading +heading-size-s,typography,96673fee-b75c-4867-9041-48362af044bc,heading +heading-size-xs,typography,4f179af6-c31f-48f8-927c-a45150668ad3,heading +heading-size-xxs,typography,82a831b4-b624-475b-b2be-4eb949e48626,heading +heading-cjk-size-xxxl,typography,5a44e177-2478-4bb0-9212-ba2df64c8b00,heading +heading-cjk-size-xxl,typography,fbf59302-1ad2-4327-bfde-d638a0ca2429,heading +heading-cjk-size-xl,typography,43535e5f-607e-43f4-bd37-8230b1f7993f,heading +heading-cjk-size-l,typography,f57ffe02-2e41-46f3-a0ac-1feb63bdd748,heading +heading-cjk-size-m,typography,43f45659-314b-45aa-9886-1beb096fc4ce,heading +heading-cjk-size-s,typography,c1242a8c-ca10-40d0-8fc4-67bbbce8fc5f,heading +heading-cjk-size-xs,typography,132688a7-917d-44b9-a34f-a7135599b299,heading +heading-cjk-size-xxs,typography,bddd6a96-c280-47ca-8858-20df055e488d,heading +heading-line-height,typography,64f28fe4-20f7-48cb-baeb-ff1898573727,heading +heading-cjk-line-height,typography,3e038db9-c5f7-4b8b-b1af-31075a31e0cc,heading +heading-margin-top-multiplier,typography,008fa04b-6d74-416b-a6ae-ceec90f08642,heading +heading-margin-bottom-multiplier,typography,dd2035b4-506f-41ab-a656-de3668d44e0f,heading +heading-color,typography,60300cd2-9b30-4ee3-b7a1-b8dae00270d9,heading +body-sans-serif-font-family,typography,32c3d84f-2b0d-4ccd-ba3c-b8475d82550b,body +body-serif-font-family,typography,20df8bd4-5a61-4614-aa86-5b76c5976860,body +body-cjk-font-family,typography,06d5790c-21e9-4135-843d-05007b046677,body +body-sans-serif-font-weight,typography,6813005d-9df4-459b-9fab-b2a054c32c31,body +body-sans-serif-font-style,typography,e1da0eff-7482-46a0-8190-4c54c6b1e1dd,body +body-serif-font-weight,typography,f049ba7a-c52f-4d39-b38e-911b2b91d031,body +body-serif-font-style,typography,d317d387-9bc8-4258-a79a-a0dd4e22d952,body +body-cjk-font-weight,typography,a754c16b-2f0c-485f-813d-d472ee650660,body +body-cjk-font-style,typography,41389b62-c449-485b-bfa8-1659bacc8c42,body +body-sans-serif-strong-font-weight,typography,633953a9-c61b-44cc-9dee-aebece97ccbc,body +body-sans-serif-strong-font-style,typography,b36db31f-eaaa-4310-9f54-f7b509d5f571,body +body-serif-strong-font-weight,typography,be263571-bd6b-4383-bdf9-3cdf80248b6a,body +body-serif-strong-font-style,typography,c8b531d1-949e-4492-9897-450a477983ce,body +body-cjk-strong-font-weight,typography,d79de2c4-ca7c-4316-ac44-fee1a66983d7,body +body-cjk-strong-font-style,typography,11fe09ad-92eb-4d7d-8872-467cdd69659b,body +body-sans-serif-emphasized-font-weight,typography,5640ac73-a482-4787-9ab2-035b57a87833,body +body-sans-serif-emphasized-font-style,typography,717c067c-55d1-4927-ad9c-8784769f581d,body +body-serif-emphasized-font-weight,typography,be2a8ff3-6117-4235-bcb8-72257b75d622,body +body-serif-emphasized-font-style,typography,c817210d-2b1a-4648-bff3-33fa212491f1,body +body-cjk-emphasized-font-weight,typography,0d8ada2f-272d-4f76-bf37-095e0b48cdae,body +body-cjk-emphasized-font-style,typography,3e90be19-62fd-4e53-abf9-4c697baba5da,body +body-sans-serif-strong-emphasized-font-weight,typography,421dc907-5862-4ed5-95f4-41d654b2fdc0,body +body-sans-serif-strong-emphasized-font-style,typography,b87e6738-af38-49be-9945-f3a307ce7b6f,body +body-serif-strong-emphasized-font-weight,typography,a87b77ff-5b27-47e0-a7df-f15092fb783e,body +body-serif-strong-emphasized-font-style,typography,b940bdc8-d373-4bd0-8620-d6c04134698b,body +body-cjk-strong-emphasized-font-weight,typography,54020791-a975-4e5d-a905-8bffcc9d2d93,body +body-cjk-strong-emphasized-font-style,typography,f792aac0-62f2-47e3-b6ac-158ae009d9c3,body +body-size-xxxl,typography,e0b8ceea-3404-4c4b-9145-fe5d445020fe,body +body-size-xxl,typography,4d0d4ed9-af14-4d88-98f1-9237f65e192a,body +body-size-xl,typography,3927604f-eaf3-4605-aa34-80b7bc88ac0f,body +body-size-l,typography,884b74cb-d247-491d-acb9-d3dc84bfd9a6,body +body-size-m,typography,4f7f6878-5304-48d3-8a42-5bb452c2163b,body +body-size-s,typography,1194f7e3-e4c3-4a3a-bd19-50f4b48e1a6e,body +body-size-xs,typography,25e93322-8f0b-45f8-ae9a-18668251f064,body +body-line-height,typography,39accad7-3de1-4850-9773-4e0ff8080049,body +body-cjk-line-height,typography,2106b188-8520-4261-968b-2eb2928857f9,body +body-margin-multiplier,typography,8f2e9283-4cbc-4374-9757-ed8d68542c89,body +body-color,typography,a7218010-91c1-4f20-8072-7b1801593014,body +detail-sans-serif-font-family,typography,34101c26-b4cd-43aa-bddd-0758d21fef01,detail +detail-serif-font-family,typography,365c6166-e17d-40bd-841e-495aa9c6acd7,detail +detail-cjk-font-family,typography,6cc647ab-1474-4094-974d-d079d7ef7565,detail +detail-sans-serif-font-weight,typography,d06a4346-ec24-4922-8985-4b8a05e0bfc6,detail +detail-sans-serif-font-style,typography,21a9500c-f9a4-4ff3-9eb5-6da81bf314f6,detail +detail-serif-font-weight,typography,87ef8843-f44e-4526-80cd-9635f3e0261e,detail +detail-serif-font-style,typography,524c5101-f745-47e6-b233-62cd005850f8,detail +detail-cjk-font-weight,typography,9b11f80a-7600-4a6b-a366-218ba320a5cc,detail +detail-cjk-font-style,typography,4d2a9b37-101b-4025-95d6-aba18b701a58,detail +detail-sans-serif-light-font-weight,typography,cf8f93e2-2b79-4a4c-bb31-313e013148e3,detail +detail-sans-serif-light-font-style,typography,a6b7c26e-3ff5-4241-b9cc-3026604fe30e,detail +detail-serif-light-font-weight,typography,2a15a805-fd08-4f8e-82e6-9264ef8937cb,detail +detail-serif-light-font-style,typography,f6478d1d-5dcf-43eb-a4fc-498479b29aa7,detail +detail-cjk-light-font-weight,typography,3b531775-a1fd-4a40-b169-7c42b8c6de38,detail +detail-cjk-light-font-style,typography,4cc06d86-326e-4b6f-a751-99445bb1d131,detail +detail-sans-serif-strong-font-weight,typography,a150e66c-daf4-4c71-a2e2-577600878988,detail +detail-sans-serif-strong-font-style,typography,c56642f3-043c-4738-bed0-61b324221f4e,detail +detail-serif-strong-font-weight,typography,d737931b-f63c-4874-8fa5-872b95048727,detail +detail-serif-strong-font-style,typography,3b2124e3-e50b-4ab7-8340-f97b1f8fef1e,detail +detail-cjk-strong-font-weight,typography,ef2997f3-276c-4662-8644-9514590114f4,detail +detail-cjk-strong-font-style,typography,653358fc-5ee4-4e97-affc-c56896d370c0,detail +detail-sans-serif-light-strong-font-weight,typography,4f0f95d3-098a-4852-bd21-785f5bf054b5,detail +detail-sans-serif-light-strong-font-style,typography,c1966f09-1c6e-4fe0-89ad-8fb8e847e3ba,detail +detail-serif-light-strong-font-weight,typography,fc5df058-f678-4dc8-953f-e2738798ee2b,detail +detail-serif-light-strong-font-style,typography,7a878a3f-b663-41ee-8357-6e62f2e51d80,detail +detail-cjk-light-strong-font-weight,typography,91231878-73dc-46ce-a277-1d14e0e36842,detail +detail-cjk-light-strong-font-style,typography,ec87fefe-f35f-41a0-9be1-6d076f0db230,detail +detail-sans-serif-emphasized-font-weight,typography,6ca600be-010a-4aaa-a815-e5bfdbe36b21,detail +detail-sans-serif-emphasized-font-style,typography,5c7dcef1-514e-4d43-b2ef-76639e214b8c,detail +detail-serif-emphasized-font-weight,typography,247b2004-e0bc-42b9-ba83-6edbe417c4cb,detail +detail-serif-emphasized-font-style,typography,cfaf6a70-3eb5-4887-bae6-8ae41c094192,detail +detail-cjk-emphasized-font-weight,typography,aa70fa2d-87ee-4e67-b230-85f400ddd7d1,detail +detail-cjk-emphasized-font-style,typography,3dca0579-91c4-4f60-a2a6-25f16eb673b3,detail +detail-sans-serif-light-emphasized-font-weight,typography,64972012-5050-41d0-9c9b-269b533a58b7,detail +detail-sans-serif-light-emphasized-font-style,typography,fc6098a2-3263-433c-8378-ba609629ef53,detail +detail-serif-light-emphasized-font-weight,typography,3d27f76e-b068-4f06-bea8-ee31fcbc49b2,detail +detail-serif-light-emphasized-font-style,typography,320bcd8e-2bb8-4e9e-9b1d-4838b2966857,detail +detail-cjk-light-emphasized-font-weight,typography,279d9a16-279f-4788-b5b0-af825a4b5d40,detail +detail-cjk-light-emphasized-font-style,typography,c7b1b312-cd81-4c65-8a67-017f91aee40b,detail +detail-sans-serif-strong-emphasized-font-weight,typography,c57f8682-52d2-43fa-a306-a588a13ead6b,detail +detail-sans-serif-strong-emphasized-font-style,typography,82d04795-da5f-4868-a90d-980f5376a878,detail +detail-serif-strong-emphasized-font-weight,typography,863cf841-7b83-4f66-a01f-12dccd47fee6,detail +detail-serif-strong-emphasized-font-style,typography,7fdffa4e-4370-45cf-aab0-316561a56a24,detail +detail-cjk-strong-emphasized-font-weight,typography,a7007c07-15a4-4671-bd3b-7406f4b374bb,detail +detail-cjk-strong-emphasized-font-style,typography,75a3a4ec-2b57-4a49-b3bd-84b41a3cd314,detail +detail-sans-serif-light-strong-emphasized-font-weight,typography,53f16a1c-9d44-4384-9a7e-88a2c4319486,detail +detail-sans-serif-light-strong-emphasized-font-style,typography,b7364639-2686-4e12-9ede-d6543d0d0d6d,detail +detail-serif-light-strong-emphasized-font-weight,typography,1c524d85-9fca-433c-b5c4-5eaa456cc3a2,detail +detail-serif-light-strong-emphasized-font-style,typography,42d2049f-cda2-4ae4-8d0a-41f7789f768b,detail +detail-cjk-light-strong-emphasized-font-weight,typography,0bc51146-a3e5-48c4-8324-4490b9d30f4d,detail +detail-cjk-light-strong-emphasized-font-style,typography,1d4235ff-c183-4d6c-8277-9783e3e1ce7a,detail +detail-size-xl,typography,ab476eec-b592-4890-af8f-74de808cb87f,detail +detail-size-l,typography,613da587-5c48-4efa-abb5-36378c1e81f0,detail +detail-size-m,typography,07840554-1ec1-4823-b119-474ec9cc31f0,detail +detail-size-s,typography,585e1bec-ee93-4983-b0bb-3a1f6ec28218,detail +detail-line-height,typography,4ca9965a-24f9-454e-b0a7-dd5a0c5ae170,detail +detail-cjk-line-height,typography,93434006-5ed7-4656-96b7-8f355a1f07b2,detail +detail-margin-top-multiplier,typography,5d34c3b5-fddd-420b-bfe4-0dee4e07701c,detail +detail-margin-bottom-multiplier,typography,35ac24a4-0338-44c6-b780-120a0af0fc51,detail +detail-letter-spacing,typography,c4dbe044-dc8c-4722-b36c-5442cd2bc279,detail +detail-sans-serif-text-transform,typography,8646d403-21f9-4e77-8a21-92289c303715,detail +detail-serif-text-transform,typography,0e161c32-c412-4cda-bacb-7eaa548b5534,detail +detail-color,typography,5f6b9d7a-2433-44fa-8de5-1fb40137e334,detail +code-font-family,typography,79b6c1f9-d1d5-4053-be47-36ecb666d0c1,code +code-cjk-font-family,typography,322cb744-5837-4d0a-94a8-3c885d54568d,code +code-font-weight,typography,bf02dd59-4b3c-435a-b33b-49fff22674a3,code +code-font-style,typography,b98a9c39-7d39-4b6d-ad35-46c8b1725c0c,code +code-cjk-font-weight,typography,8455f34c-0c79-4699-aa7c-c77d28bfa617,code +code-cjk-font-style,typography,b26477bc-8bf1-41aa-b849-cfde54e27780,code +code-strong-font-weight,typography,48d2b9b8-beac-4185-827d-0c552e47663f,code +code-strong-font-style,typography,dac3d8d5-3005-4fa6-b71a-6679470176cf,code +code-cjk-strong-font-weight,typography,ed73f5fc-5b7a-4414-8f1c-325e7944a9e1,code +code-cjk-strong-font-style,typography,a30c9a18-1a49-4b16-87a0-e882c81dd1bd,code +code-emphasized-font-weight,typography,948436ba-23d7-4eec-a3fe-ef5829ccadb0,code +code-emphasized-font-style,typography,9d3151ad-4a37-4eeb-aadd-7389ccb09345,code +code-cjk-emphasized-font-weight,typography,61f8b443-95fa-46fd-8876-b4d7a2244af9,code +code-cjk-emphasized-font-style,typography,f892e676-5218-4dc9-870b-c9d2df6f3152,code +code-strong-emphasized-font-weight,typography,4d5f1937-552d-44a4-be8e-2edafefa46aa,code +code-strong-emphasized-font-style,typography,83d53fe1-372f-46ba-b8e0-f90ca2e59647,code +code-cjk-strong-emphasized-font-weight,typography,8ed5c5e0-ff72-4937-98fd-fd09f1fab288,code +code-cjk-strong-emphasized-font-style,typography,38006d42-4f02-46ff-917f-6c0163525642,code +code-size-xl,typography,7879adbc-6c38-4d29-9a90-a4ad91c75b90,code +code-size-l,typography,b7010f1a-c994-4b19-b273-3f609fe4be2b,code +code-size-m,typography,e5b76091-7cbb-4d1e-8d27-48f00759c9f3,code +code-size-s,typography,efa9311b-27c5-45ea-93a7-bef6f9370179,code +code-size-xs,typography,f0c5e6fb-fb48-45d2-a043-558b3dc28bc7,code +code-line-height,typography,0d33b30d-96d6-4b5a-90d2-2a708bdae623,code +code-cjk-line-height,typography,35580910-cb91-44df-9613-7b2e40a75a7c,code +code-color,typography,851aebc5-5aa2-42ae-9032-59a5c9e8db5f,code +corner-radius-75,layout,, +corner-radius-100,layout,, +corner-radius-200,layout,, +drop-shadow-x,layout,, +drop-shadow-y,layout,, +drop-shadow-blur,layout,, +android-elevation,layout,f9456531-ab61-4c14-b7af-7016ce1c0d3e, +spacing-50,layout,1b06f6e2-d9be-4934-b3da-bed75986d104, +spacing-75,layout,576a60a3-ca80-46c5-a066-ba7b6197decd, +spacing-100,layout,507c0b4a-9dbc-4242-89fd-5efc4d1c35b9, +spacing-200,layout,79fca32b-214b-4760-9d3a-28f4d1bdf86f, +spacing-300,layout,ba632ede-84a7-4e56-91ef-8143b2499452, +spacing-400,layout,ec565065-0820-460f-9a1b-b81911c48cb5, +spacing-500,layout,490b4010-1561-4b12-8cbb-cdb4b650ba74, +spacing-600,layout,b6d0b881-d25e-452c-9069-c18745d21f33, +spacing-700,layout,26639049-ec07-430d-983f-4d036758564a, +spacing-800,layout,eeb099cb-707f-4e5e-97b9-1fdba35b2314, +spacing-900,layout,d04e5d81-0b6e-48e7-9e47-744753dfcff3, +spacing-1000,layout,9d688a67-5ff6-4b72-8398-964c0337dce1, +text-to-visual-50,layout,, +text-to-visual-75,layout,, +text-to-visual-100,layout,, +text-to-visual-200,layout,, +text-to-visual-300,layout,, +text-to-control-75,layout,, +text-to-control-100,layout,, +text-to-control-200,layout,, +text-to-control-300,layout,, +component-height-50,layout,, +component-height-75,layout,, +component-height-100,layout,, +component-height-200,layout,, +component-height-300,layout,, +component-height-400,layout,, +component-height-500,layout,, +focus-indicator-thickness,layout,b6148878-b78d-4fe7-bf78-e01e7cb314c2, +focus-indicator-gap,layout,693651ef-71c7-4096-91a5-1c84cb861021, +border-width-100,layout,, +border-width-200,layout,cc8a43f4-0ba6-46e3-90af-653fbc59a328, +border-width-400,layout,18b0ff0d-494c-4d33-acab-a62528c5ca66, +component-pill-edge-to-visual-75,layout,, +component-pill-edge-to-visual-100,layout,, +component-pill-edge-to-visual-200,layout,, +component-pill-edge-to-visual-300,layout,, +component-pill-edge-to-visual-only-75,layout,, +component-pill-edge-to-visual-only-100,layout,, +component-pill-edge-to-visual-only-200,layout,, +component-pill-edge-to-visual-only-300,layout,, +component-pill-edge-to-text-75,layout,, +component-pill-edge-to-text-100,layout,, +component-pill-edge-to-text-200,layout,, +component-pill-edge-to-text-300,layout,, +component-edge-to-visual-50,layout,, +component-edge-to-visual-75,layout,, +component-edge-to-visual-100,layout,, +component-edge-to-visual-200,layout,, +component-edge-to-visual-300,layout,, +component-edge-to-visual-only-50,layout,, +component-edge-to-visual-only-75,layout,, +component-edge-to-visual-only-100,layout,, +component-edge-to-visual-only-200,layout,, +component-edge-to-visual-only-300,layout,, +component-edge-to-text-50,layout,, +component-edge-to-text-75,layout,, +component-edge-to-text-100,layout,, +component-edge-to-text-200,layout,, +component-edge-to-text-300,layout,, +component-top-to-workflow-icon-50,layout,, +component-top-to-workflow-icon-75,layout,, +component-top-to-workflow-icon-100,layout,, +component-top-to-workflow-icon-200,layout,, +component-top-to-workflow-icon-300,layout,, +component-top-to-text-50,layout,, +component-top-to-text-75,layout,, +component-top-to-text-100,layout,, +component-top-to-text-200,layout,, +component-top-to-text-300,layout,, +component-bottom-to-text-50,layout,, +component-bottom-to-text-75,layout,, +component-bottom-to-text-100,layout,, +component-bottom-to-text-200,layout,, +component-bottom-to-text-300,layout,, +component-to-menu-small,layout,, +component-to-menu-medium,layout,, +component-to-menu-large,layout,, +component-to-menu-extra-large,layout,, +field-edge-to-text-quiet,layout,3f7cee20-c187-4066-be4b-f5a1335736f5, +field-edge-to-visual-quiet,layout,89f16f89-fd7d-41d7-8e5c-464007fd0277, +field-edge-to-border-quiet,layout,7fb81dcf-3329-4353-917d-75de8f43c05d, +field-edge-to-alert-icon-quiet,layout,7858fdf3-e35f-4bc5-997a-0d480ec1cb32, +field-edge-to-validation-icon-quiet,layout,151915e5-f946-474f-9595-18d8a159a6ff, +field-edge-to-disclosure-icon-75,layout,, +field-edge-to-disclosure-icon-100,layout,, +field-edge-to-disclosure-icon-200,layout,, +field-edge-to-disclosure-icon-300,layout,, +field-end-edge-to-disclosure-icon-75,layout,, +field-end-edge-to-disclosure-icon-100,layout,, +field-end-edge-to-disclosure-icon-200,layout,, +field-end-edge-to-disclosure-icon-300,layout,, +field-top-to-disclosure-icon-75,layout,, +field-top-to-disclosure-icon-100,layout,, +field-top-to-disclosure-icon-200,layout,, +field-top-to-disclosure-icon-300,layout,, +field-top-to-alert-icon-small,layout,, +field-top-to-alert-icon-medium,layout,, +field-top-to-alert-icon-large,layout,, +field-top-to-alert-icon-extra-large,layout,, +field-top-to-validation-icon-small,layout,, +field-top-to-validation-icon-medium,layout,, +field-top-to-validation-icon-large,layout,, +field-top-to-validation-icon-extra-large,layout,, +field-top-to-progress-circle-small,layout,, +field-top-to-progress-circle-medium,layout,, +field-top-to-progress-circle-large,layout,, +field-top-to-progress-circle-extra-large,layout,, +field-edge-to-alert-icon-small,layout,, +field-edge-to-alert-icon-medium,layout,, +field-edge-to-alert-icon-large,layout,, +field-edge-to-alert-icon-extra-large,layout,, +field-edge-to-validation-icon-small,layout,, +field-edge-to-validation-icon-medium,layout,, +field-edge-to-validation-icon-large,layout,, +field-edge-to-validation-icon-extra-large,layout,, +field-text-to-alert-icon-small,layout,, +field-text-to-alert-icon-medium,layout,, +field-text-to-alert-icon-large,layout,, +field-text-to-alert-icon-extra-large,layout,, +field-text-to-validation-icon-small,layout,, +field-text-to-validation-icon-medium,layout,, +field-text-to-validation-icon-large,layout,, +field-text-to-validation-icon-extra-large,layout,, +field-width,layout,, +character-count-to-field-quiet-small,layout,, +character-count-to-field-quiet-medium,layout,, +character-count-to-field-quiet-large,layout,, +character-count-to-field-quiet-extra-large,layout,, +side-label-character-count-to-field,layout,, +side-label-character-count-top-margin-small,layout,, +side-label-character-count-top-margin-medium,layout,, +side-label-character-count-top-margin-large,layout,, +side-label-character-count-top-margin-extra-large,layout,, +disclosure-indicator-top-to-disclosure-icon-small,layout,, +disclosure-indicator-top-to-disclosure-icon-medium,layout,, +disclosure-indicator-top-to-disclosure-icon-large,layout,, +disclosure-indicator-top-to-disclosure-icon-extra-large,layout,, +text-underline-thickness,layout,13f36ce1-84bb-41db-bec8-6d6e8f5c6ed3, +text-underline-gap,layout,d9d51235-f3fe-4e2a-bdca-b6a104d9a9e5, +navigational-indicator-top-to-back-icon-small,layout,, +navigational-indicator-top-to-back-icon-medium,layout,, +navigational-indicator-top-to-back-icon-large,layout,, +navigational-indicator-top-to-back-icon-extra-large,layout,, +color-control-track-width,layout,, +icon-color-inverse,icons,9e04025f-b58c-491a-8569-1965ae074f7b,icon +icon-color-primary-default,icons,d143f2f2-e0d8-4eb3-b06c-86233321fb61,icon +icon-color-blue-primary-default,icons,,icon +icon-color-green-primary-default,icons,,icon +icon-color-red-primary-default,icons,,icon +icon-color-yellow-primary-default,icons,,icon +workflow-icon-size-50,icons,,icon +workflow-icon-size-75,icons,,icon +workflow-icon-size-100,icons,,icon +workflow-icon-size-200,icons,,icon +workflow-icon-size-300,icons,,icon +arrow-icon-size-75,icons,,icon +arrow-icon-size-100,icons,,icon +arrow-icon-size-200,icons,,icon +arrow-icon-size-300,icons,,icon +arrow-icon-size-400,icons,,icon +arrow-icon-size-500,icons,,icon +arrow-icon-size-600,icons,,icon +asterisk-icon-size-75,icons,49ea57ee-7b12-4a8b-a9bb-a11cf2c9d72c,icon +asterisk-icon-size-100,icons,,icon +asterisk-icon-size-200,icons,,icon +asterisk-icon-size-300,icons,,icon +checkmark-icon-size-50,icons,,icon +checkmark-icon-size-75,icons,,icon +checkmark-icon-size-100,icons,,icon +checkmark-icon-size-200,icons,,icon +checkmark-icon-size-300,icons,,icon +checkmark-icon-size-400,icons,,icon +checkmark-icon-size-500,icons,,icon +checkmark-icon-size-600,icons,,icon +chevron-icon-size-50,icons,,icon +chevron-icon-size-75,icons,,icon +chevron-icon-size-100,icons,,icon +chevron-icon-size-200,icons,,icon +chevron-icon-size-300,icons,,icon +chevron-icon-size-400,icons,,icon +chevron-icon-size-500,icons,,icon +chevron-icon-size-600,icons,,icon +corner-triangle-icon-size-75,icons,,icon +corner-triangle-icon-size-100,icons,,icon +corner-triangle-icon-size-200,icons,,icon +corner-triangle-icon-size-300,icons,,icon +cross-icon-size-75,icons,,icon +cross-icon-size-100,icons,,icon +cross-icon-size-200,icons,,icon +cross-icon-size-300,icons,,icon +cross-icon-size-400,icons,,icon +cross-icon-size-500,icons,,icon +cross-icon-size-600,icons,,icon +dash-icon-size-50,icons,,icon +dash-icon-size-75,icons,,icon +dash-icon-size-100,icons,,icon +dash-icon-size-200,icons,,icon +dash-icon-size-300,icons,,icon +dash-icon-size-400,icons,,icon +dash-icon-size-500,icons,,icon +dash-icon-size-600,icons,,icon +focus-indicator-color,color-aliases,fe914904-a368-414b-a4ac-21c0b0340d05, +static-white-focus-indicator-color,color-aliases,1dd6dc5b-47a2-41eb-80fc-f06293ae8e13, +static-black-focus-indicator-color,color-aliases,c6b8275b-f44e-43b4-b763-82dda94d963c, +overlay-color,color-aliases,af66daa6-9e52-4e68-a605-86d1de4ee971, +overlay-opacity,color-aliases,, +drop-shadow-color,color-aliases,, +opacity-disabled,color-aliases,fdf6fd5d-55a0-4428-a258-4e8fafc74b74, +background-base-color,color-aliases,, +background-layer-1-color,color-aliases,, +background-layer-2-color,color-aliases,, +neutral-background-color-default,color-aliases,, +neutral-background-color-hover,color-aliases,, +neutral-background-color-down,color-aliases,, +neutral-background-color-key-focus,color-aliases,, +neutral-background-color-selected-default,color-aliases,, +neutral-background-color-selected-hover,color-aliases,, +neutral-background-color-selected-down,color-aliases,, +neutral-background-color-selected-key-focus,color-aliases,, +neutral-subdued-background-color-default,color-aliases,, +neutral-subdued-background-color-hover,color-aliases,, +neutral-subdued-background-color-down,color-aliases,, +neutral-subdued-background-color-key-focus,color-aliases,, +neutral-subdued-content-color-selected,color-aliases,ea46f6d3-4261-4482-a70f-2cddd113aa4a, +accent-background-color-default,color-aliases,, +accent-background-color-hover,color-aliases,, +accent-background-color-down,color-aliases,, +accent-background-color-key-focus,color-aliases,, +accent-content-color-selected,color-aliases,9cfbf8bc-e4f3-4658-922e-9421e2ed126b, +informative-background-color-default,color-aliases,, +informative-background-color-hover,color-aliases,, +informative-background-color-down,color-aliases,, +informative-background-color-key-focus,color-aliases,, +negative-background-color-default,color-aliases,, +negative-background-color-hover,color-aliases,, +negative-background-color-down,color-aliases,, +negative-background-color-key-focus,color-aliases,, +positive-background-color-default,color-aliases,, +positive-background-color-hover,color-aliases,, +positive-background-color-down,color-aliases,, +positive-background-color-key-focus,color-aliases,, +notice-background-color-default,color-aliases,, +disabled-background-color,color-aliases,a46de9d2-5c68-4a1e-97cd-7cbaf4038303, +disabled-static-white-background-color,color-aliases,fbd40c55-bb12-43ff-9fa6-c93884befc89, +disabled-static-black-background-color,color-aliases,579e401c-de49-41af-a8c7-a0a070c31979, +gray-background-color-default,color-aliases,, +red-background-color-default,color-aliases,, +orange-background-color-default,color-aliases,, +yellow-background-color-default,color-aliases,, +chartreuse-background-color-default,color-aliases,, +celery-background-color-default,color-aliases,, +green-background-color-default,color-aliases,, +seafoam-background-color-default,color-aliases,, +cyan-background-color-default,color-aliases,, +blue-background-color-default,color-aliases,, +indigo-background-color-default,color-aliases,, +purple-background-color-default,color-aliases,, +fuchsia-background-color-default,color-aliases,, +magenta-background-color-default,color-aliases,, +background-opacity-default,color-aliases,b7b25005-7188-4936-8dbc-e2dd15213f47, +background-opacity-hover,color-aliases,048c326d-93b1-435f-a9e3-a4cbd3144fdd, +background-opacity-down,color-aliases,0718c9fc-3bb2-4887-97bd-e23b8ad308c5, +background-opacity-key-focus,color-aliases,a35883a9-43fd-4be5-97ee-62fdf3a33f39, +neutral-content-color-default,color-aliases,43ca4c0d-7803-4e8e-b444-26fe70d5304c, +neutral-content-color-hover,color-aliases,d236bdc5-037b-4838-8401-8a0d5136936c, +neutral-content-color-down,color-aliases,cf169d95-e427-4665-a983-c24727dbfa60, +neutral-content-color-focus-hover,color-aliases,a370f375-b3b1-4af8-9628-fa901c0252fb, +neutral-content-color-focus,color-aliases,f218dfd0-23be-4f07-becb-6027cc971c8b, +neutral-content-color-key-focus,color-aliases,c2c538e0-6f8d-4586-953a-b98ef40c9eca, +neutral-subdued-content-color-default,color-aliases,7a058b23-341c-4dd3-83d8-358917277836, +neutral-subdued-content-color-hover,color-aliases,a6d8a177-3e5c-4d28-a675-c21c2695d2f6, +neutral-subdued-content-color-down,color-aliases,8ab4accc-bd95-48e0-ae3a-539740a07cc6, +neutral-subdued-content-color-key-focus,color-aliases,4e79877b-254d-4226-a28f-4c80d2d8b2f3, +accent-content-color-default,color-aliases,b14c876e-2930-413b-8688-1e0cf2358185, +accent-content-color-hover,color-aliases,d6cd141c-d7a4-457f-bed5-9a725ca7a0fe, +accent-content-color-down,color-aliases,25d3b2d2-e7d5-4686-95ff-bfaaddc14ff1, +accent-content-color-key-focus,color-aliases,71dcd137-f767-4d2c-b6ac-942b99ac8621, +negative-content-color-default,color-aliases,2a1b0c71-c3a4-4f4c-a625-346e026853e5, +negative-content-color-hover,color-aliases,ff90152d-86bf-4a34-9a7e-ede61966bda0, +negative-content-color-down,color-aliases,f760cc99-ebec-4d34-931e-5621aef995a0, +negative-content-color-key-focus,color-aliases,03a7aa1f-9493-4054-bb21-eb10e593da73, +disabled-content-color,color-aliases,8bf69fd3-1462-49b9-a78a-cc2f03380823, +disabled-static-white-content-color,color-aliases,fe319bca-0413-4ad8-a783-c64563e05816, +disabled-static-black-content-color,color-aliases,e75dbb08-80eb-4de5-afd4-55a532c69c97, +neutral-visual-color,color-aliases,, +accent-visual-color,color-aliases,, +informative-visual-color,color-aliases,, +negative-visual-color,color-aliases,, +notice-visual-color,color-aliases,, +positive-visual-color,color-aliases,, +gray-visual-color,color-aliases,, +red-visual-color,color-aliases,, +orange-visual-color,color-aliases,, +yellow-visual-color,color-aliases,, +chartreuse-visual-color,color-aliases,, +celery-visual-color,color-aliases,, +green-visual-color,color-aliases,, +seafoam-visual-color,color-aliases,, +cyan-visual-color,color-aliases,, +blue-visual-color,color-aliases,, +indigo-visual-color,color-aliases,, +purple-visual-color,color-aliases,, +fuchsia-visual-color,color-aliases,, +magenta-visual-color,color-aliases,, +disabled-border-color,color-aliases,474ae56c-709a-4f5a-a56b-62d01093f412, +disabled-static-white-border-color,color-aliases,c0dfeb64-983e-4f4c-a13e-24b5fbd2b791, +disabled-static-black-border-color,color-aliases,2df7303f-3c34-47d1-9ec9-b901dfbcf947, +negative-border-color-default,color-aliases,6effed65-3d52-465f-9eb2-7994f1ee90fb, +negative-border-color-hover,color-aliases,496571fc-18ce-44a3-a89e-40ff6397adcd, +negative-border-color-down,color-aliases,0c35da5c-cf37-4349-82e4-8739ea94aa65, +negative-border-color-focus-hover,color-aliases,63abd660-13c4-47b8-be9e-61e270b95212, +negative-border-color-focus,color-aliases,aae2b3a5-1f68-4832-9539-62227179e69e, +negative-border-color-key-focus,color-aliases,393cb93a-3d0a-4118-a2ee-451fdc871b0f, +swatch-border-color,color-component,7da5157d-7f25-405b-8de0-f3669565fb48,swatch +swatch-border-opacity,color-component,0e397a80-cf33-44ed-8b7d-1abaf4426bf5,swatch +swatch-disabled-icon-border-color,color-component,c49cd7ae-7657-458b-871a-6b4f28bca535,swatch +swatch-disabled-icon-border-opacity,color-component,cdbba3b6-cb51-4fec-88f0-273d4bb59a18,swatch +thumbnail-border-color,color-component,5bd226f1-0a6b-42bc-80af-4a9dde99e9e9,thumbnail +thumbnail-border-opacity,color-component,58bd04e9-5b85-44d8-8474-96e157701070,thumbnail +thumbnail-opacity-disabled,color-component,92418bcd-5f0f-4f26-9a96-51f8c9e871bf,thumbnail +opacity-checkerboard-square-light,color-component,c7e50676-3f61-49c3-a35f-2532fdb02360,opacity-checkerboard +opacity-checkerboard-square-dark,color-component,,opacity-checkerboard +avatar-opacity-disabled,color-component,84d25d1b-f9e4-4a9e-8cd0-92367ff00637,avatar +color-area-border-color,color-component,70fc4674-0f09-48f5-8850-48b4b38c2f01,color-area +color-area-border-opacity,color-component,fba1851e-0056-4cdf-938d-6d61550bbe3c,color-area +color-slider-border-color,color-component,0c85e7fa-f950-436c-a68a-dd7fb8dfac9e,color-slider +color-slider-border-opacity,color-component,8271b69e-6542-4b17-b0f0-72567e16c41b,color-slider +color-loupe-drop-shadow-color,color-component,918b8089-d89f-45d2-8c9c-f3f13f81b0b9,color-loupe +color-loupe-inner-border,color-component,d2c4cb48-8a90-461d-95bc-d882ba01472b,color-loupe +color-loupe-outer-border,color-component,4e1d1cc5-736e-4e82-9054-5c1a74ac1aca,color-loupe +card-selection-background-color,color-component,622c6e86-dea6-416d-9f13-bb6ef112d3cb,cards +card-selection-background-color-opacity,color-component,ac039445-0bf8-4821-b02e-e7e06a416576,cards +drop-zone-background-color,color-component,866f3613-c12f-4475-87b1-ad86ef2ce153,drop-zone +drop-zone-background-color-opacity,color-component,ee5ed78b-230c-4b37-9d76-1787a975bb63,drop-zone +drop-zone-background-color-opacity-filled,color-component,ca70550a-b11a-438f-9c70-ff1eeba532cc,drop-zone +coach-mark-pagination-color,color-component,f8cefe70-db2c-489e-bbbe-964050e96ab6,coach-mark +color-handle-inner-border-color,color-component,0c93f310-d7c6-474b-8f07-0e8e76e2756e,color-handle +color-handle-inner-border-opacity,color-component,72b473c6-ec9b-4830-a0f8-48b80070e7b8,color-handle +color-handle-outer-border-color,color-component,e4733356-090e-4bb7-b32d-ab9df30fb785,color-handle +color-handle-outer-border-opacity,color-component,0a0eff89-7e7d-4b7f-bcfa-a85e33e5798a,color-handle +color-handle-drop-shadow-color,color-component,97dfaf7f-ac2d-4517-84cc-6f692f712fc5,color-handle +floating-action-button-drop-shadow-color,color-component,d66d3a56-1ba0-4ce7-a263-eb46a4d17af0,floating-action-button +floating-action-button-shadow-color,color-component,f843b1b7-4b2f-496e-a679-b0372e49d575,floating-action-button +table-row-hover-color,color-component,44aedb76-5483-4ac3-a6f5-8cf71c2bd376,table +table-row-hover-opacity,color-component,e287d553-3712-4d6e-98f0-6075107e85fe,table +table-selected-row-background-color,color-component,b7537f50-bd49-44b6-a171-19943d443d24,table +table-selected-row-background-opacity,color-component,61b3aa04-0e7e-44b8-a4c8-8442a4ebf549,table +table-selected-row-background-color-non-emphasized,color-component,8578067a-6ce0-4059-84ad-4688c71df156,table +table-selected-row-background-opacity-non-emphasized,color-component,1ef41e27-3dea-4589-ad7a-140a03a77384,table +table-row-down-opacity,color-component,75ae742c-e96e-494f-9880-746bb2849575,table +table-selected-row-background-opacity-hover,color-component,ce2851bc-8ae1-4b27-8cd6-f191c9cd7fe9,table +table-selected-row-background-opacity-non-emphasized-hover,color-component,6a093ea1-f07e-4673-b52f-5b28a2e080d0,table +white,color-palette,9b799da8-2130-417e-b7ee-5e1154a89837, +transparent-white-100,color-palette,a1b64a62-7c78-415e-a9be-c86acbf361ca, +transparent-white-200,color-palette,936db837-bc5a-40b0-a0e8-8e39b9fc62cb, +transparent-white-300,color-palette,5ffa0283-ce9c-4f96-9227-f559ec54ee0c, +transparent-white-400,color-palette,12e610d4-e3dc-4e86-9c09-09d86915b6f1, +transparent-white-500,color-palette,89c1380f-3e8e-4895-b025-027cee7ecd5b, +transparent-white-600,color-palette,b24431ee-5c72-4a73-8733-746c6f5d77c0, +transparent-white-700,color-palette,3ecc14ec-a21e-47ba-8225-915509a532af, +transparent-white-800,color-palette,b85836bf-af47-412a-900a-4ec5ad0733b2, +transparent-white-900,color-palette,c5c823c6-1911-4e0e-ba2f-5105f467e108, +black,color-palette,28dea8b0-4e9a-46f9-babb-c8910e6ae783, +transparent-black-100,color-palette,7565eb32-d745-4fc3-8779-a717f8ba910a, +transparent-black-200,color-palette,a84ecad8-8005-4ce4-add6-7f83f7e05ba0, +transparent-black-300,color-palette,16a871e1-d9df-42bb-8889-99059d70e82e, +transparent-black-400,color-palette,b769453b-586c-4dd2-b3a1-ddf5964160bc, +transparent-black-500,color-palette,cebedd9f-9e4b-47cf-addb-45d8ff9c9179, +transparent-black-600,color-palette,199e19a5-bf7d-4933-8425-d7d5881e4cf5, +transparent-black-700,color-palette,56da822f-98ea-4ad1-b993-3f052de45f36, +transparent-black-800,color-palette,3e89f180-b0f0-4de0-904b-c80f0210a361, +transparent-black-900,color-palette,c0a331f9-53e3-4c72-b5e3-139d730a1752, +gray-50,color-palette,, +gray-75,color-palette,, +gray-100,color-palette,, +gray-200,color-palette,, +gray-300,color-palette,, +gray-400,color-palette,, +gray-500,color-palette,, +gray-600,color-palette,, +gray-700,color-palette,, +gray-800,color-palette,, +gray-900,color-palette,, +blue-100,color-palette,, +blue-200,color-palette,, +blue-300,color-palette,, +blue-400,color-palette,, +blue-500,color-palette,, +blue-600,color-palette,, +blue-700,color-palette,, +blue-800,color-palette,, +blue-900,color-palette,, +blue-1000,color-palette,, +blue-1100,color-palette,, +blue-1200,color-palette,, +blue-1300,color-palette,, +blue-1400,color-palette,, +red-100,color-palette,, +red-200,color-palette,, +red-300,color-palette,, +red-400,color-palette,, +red-500,color-palette,, +red-600,color-palette,, +red-700,color-palette,, +red-800,color-palette,, +red-900,color-palette,, +red-1000,color-palette,, +red-1100,color-palette,, +red-1200,color-palette,, +red-1300,color-palette,, +red-1400,color-palette,, +orange-100,color-palette,, +orange-200,color-palette,, +orange-300,color-palette,, +orange-400,color-palette,, +orange-500,color-palette,, +orange-600,color-palette,, +orange-700,color-palette,, +orange-800,color-palette,, +orange-900,color-palette,, +orange-1000,color-palette,, +orange-1100,color-palette,, +orange-1200,color-palette,, +orange-1300,color-palette,, +orange-1400,color-palette,, +yellow-100,color-palette,, +yellow-200,color-palette,, +yellow-300,color-palette,, +yellow-400,color-palette,, +yellow-500,color-palette,, +yellow-600,color-palette,, +yellow-700,color-palette,, +yellow-800,color-palette,, +yellow-900,color-palette,, +yellow-1000,color-palette,, +yellow-1100,color-palette,, +yellow-1200,color-palette,, +yellow-1300,color-palette,, +yellow-1400,color-palette,, +chartreuse-100,color-palette,, +chartreuse-200,color-palette,, +chartreuse-300,color-palette,, +chartreuse-400,color-palette,, +chartreuse-500,color-palette,, +chartreuse-600,color-palette,, +chartreuse-700,color-palette,, +chartreuse-800,color-palette,, +chartreuse-900,color-palette,, +chartreuse-1000,color-palette,, +chartreuse-1100,color-palette,, +chartreuse-1200,color-palette,, +chartreuse-1300,color-palette,, +chartreuse-1400,color-palette,, +celery-100,color-palette,, +celery-200,color-palette,, +celery-300,color-palette,, +celery-400,color-palette,, +celery-500,color-palette,, +celery-600,color-palette,, +celery-700,color-palette,, +celery-800,color-palette,, +celery-900,color-palette,, +celery-1000,color-palette,, +celery-1100,color-palette,, +celery-1200,color-palette,, +celery-1300,color-palette,, +celery-1400,color-palette,, +green-100,color-palette,, +green-200,color-palette,, +green-300,color-palette,, +green-400,color-palette,, +green-500,color-palette,, +green-600,color-palette,, +green-700,color-palette,, +green-800,color-palette,, +green-900,color-palette,, +green-1000,color-palette,, +green-1100,color-palette,, +green-1200,color-palette,, +green-1300,color-palette,, +green-1400,color-palette,, +seafoam-100,color-palette,, +seafoam-200,color-palette,, +seafoam-300,color-palette,, +seafoam-400,color-palette,, +seafoam-500,color-palette,, +seafoam-600,color-palette,, +seafoam-700,color-palette,, +seafoam-800,color-palette,, +seafoam-900,color-palette,, +seafoam-1000,color-palette,, +seafoam-1100,color-palette,, +seafoam-1200,color-palette,, +seafoam-1300,color-palette,, +seafoam-1400,color-palette,, +cyan-100,color-palette,, +cyan-200,color-palette,, +cyan-300,color-palette,, +cyan-400,color-palette,, +cyan-500,color-palette,, +cyan-600,color-palette,, +cyan-700,color-palette,, +cyan-800,color-palette,, +cyan-900,color-palette,, +cyan-1000,color-palette,, +cyan-1100,color-palette,, +cyan-1200,color-palette,, +cyan-1300,color-palette,, +cyan-1400,color-palette,, +indigo-100,color-palette,, +indigo-200,color-palette,, +indigo-300,color-palette,, +indigo-400,color-palette,, +indigo-500,color-palette,, +indigo-600,color-palette,, +indigo-700,color-palette,, +indigo-800,color-palette,, +indigo-900,color-palette,, +indigo-1000,color-palette,, +indigo-1100,color-palette,, +indigo-1200,color-palette,, +indigo-1300,color-palette,, +indigo-1400,color-palette,, +purple-100,color-palette,, +purple-200,color-palette,, +purple-300,color-palette,, +purple-400,color-palette,, +purple-500,color-palette,, +purple-600,color-palette,, +purple-700,color-palette,, +purple-800,color-palette,, +purple-900,color-palette,, +purple-1000,color-palette,, +purple-1100,color-palette,, +purple-1200,color-palette,, +purple-1300,color-palette,, +purple-1400,color-palette,, +fuchsia-100,color-palette,, +fuchsia-200,color-palette,, +fuchsia-300,color-palette,, +fuchsia-400,color-palette,, +fuchsia-500,color-palette,, +fuchsia-600,color-palette,, +fuchsia-700,color-palette,, +fuchsia-800,color-palette,, +fuchsia-900,color-palette,, +fuchsia-1000,color-palette,, +fuchsia-1100,color-palette,, +fuchsia-1200,color-palette,, +fuchsia-1300,color-palette,, +fuchsia-1400,color-palette,, +magenta-100,color-palette,, +magenta-200,color-palette,, +magenta-300,color-palette,, +magenta-400,color-palette,, +magenta-500,color-palette,, +magenta-600,color-palette,, +magenta-700,color-palette,, +magenta-800,color-palette,, +magenta-900,color-palette,, +magenta-1000,color-palette,, +magenta-1100,color-palette,, +magenta-1200,color-palette,, +magenta-1300,color-palette,, +magenta-1400,color-palette,, +checkbox-control-size-small,layout-component,,checkbox +checkbox-control-size-medium,layout-component,,checkbox +checkbox-control-size-large,layout-component,,checkbox +checkbox-control-size-extra-large,layout-component,,checkbox +checkbox-top-to-control-small,layout-component,,checkbox +checkbox-top-to-control-medium,layout-component,,checkbox +checkbox-top-to-control-large,layout-component,,checkbox +checkbox-top-to-control-extra-large,layout-component,,checkbox +switch-control-width-small,layout-component,,switch +switch-control-width-medium,layout-component,,switch +switch-control-width-large,layout-component,,switch +switch-control-width-extra-large,layout-component,,switch +switch-control-height-small,layout-component,,switch +switch-control-height-medium,layout-component,,switch +switch-control-height-large,layout-component,,switch +switch-control-height-extra-large,layout-component,,switch +switch-top-to-control-small,layout-component,,switch +switch-top-to-control-medium,layout-component,,switch +switch-top-to-control-large,layout-component,,switch +switch-top-to-control-extra-large,layout-component,,switch +radio-button-control-size-small,layout-component,,radio-button +radio-button-control-size-medium,layout-component,,radio-button +radio-button-control-size-large,layout-component,,radio-button +radio-button-control-size-extra-large,layout-component,,radio-button +radio-button-top-to-control-small,layout-component,,radio-button +radio-button-top-to-control-medium,layout-component,,radio-button +radio-button-top-to-control-large,layout-component,,radio-button +radio-button-top-to-control-extra-large,layout-component,,radio-button +radio-button-selection-indicator,layout-component,a7fc6bdb-5b9c-42d4-8f78-d34021ac0708,radio-button +field-label-text-to-asterisk-small,layout-component,,field-label +field-label-text-to-asterisk-medium,layout-component,,field-label +field-label-text-to-asterisk-large,layout-component,,field-label +field-label-text-to-asterisk-extra-large,layout-component,,field-label +field-label-top-to-asterisk-small,layout-component,,field-label +field-label-top-to-asterisk-medium,layout-component,,field-label +field-label-top-to-asterisk-large,layout-component,,field-label +field-label-top-to-asterisk-extra-large,layout-component,,field-label +field-label-top-margin-small,layout-component,ab718f97-15c3-4b8b-aee7-b50b09ec0a33,field-label +field-label-top-margin-medium,layout-component,,field-label +field-label-top-margin-large,layout-component,,field-label +field-label-top-margin-extra-large,layout-component,,field-label +field-label-to-component,layout-component,4738ec46-a43c-48f9-aeca-87863275dc4d,field-label +field-label-to-component-quiet-small,layout-component,,field-label +field-label-to-component-quiet-medium,layout-component,,field-label +field-label-to-component-quiet-large,layout-component,,field-label +field-label-to-component-quiet-extra-large,layout-component,,field-label +help-text-top-to-workflow-icon-small,layout-component,,help-text +help-text-top-to-workflow-icon-medium,layout-component,,help-text +help-text-top-to-workflow-icon-large,layout-component,,help-text +help-text-top-to-workflow-icon-extra-large,layout-component,,help-text +help-text-to-component,layout-component,f99eb317-ebe5-43e7-8066-982fe7a9a8aa,help-text +status-light-dot-size-small,layout-component,04485265-2983-4377-9ec5-f2456863a1df,status-light +status-light-dot-size-medium,layout-component,,status-light +status-light-dot-size-large,layout-component,,status-light +status-light-dot-size-extra-large,layout-component,,status-light +status-light-top-to-dot-small,layout-component,,status-light +status-light-top-to-dot-medium,layout-component,,status-light +status-light-top-to-dot-large,layout-component,,status-light +status-light-top-to-dot-extra-large,layout-component,,status-light +action-button-edge-to-hold-icon-extra-small,layout-component,b79597cc-5294-4555-ab78-f4200e480ac3,action-button +action-button-edge-to-hold-icon-small,layout-component,fa106863-0e09-44d4-9465-68cd3254ed2b,action-button +action-button-edge-to-hold-icon-medium,layout-component,,action-button +action-button-edge-to-hold-icon-large,layout-component,,action-button +action-button-edge-to-hold-icon-extra-large,layout-component,,action-button +button-minimum-width-multiplier,layout-component,68b6ac88-d229-460d-8d59-3f5c141db358,button +tooltip-tip-width,layout-component,,tooltip +tooltip-tip-height,layout-component,,tooltip +tooltip-maximum-width,layout-component,,tooltip +divider-thickness-small,layout-component,9dcc27ef-7044-4051-97f3-2fd64a5d0a36,divider +divider-thickness-medium,layout-component,3cf3e962-92f3-4334-8b92-9a1da9396c25,divider +divider-thickness-large,layout-component,913cce2a-c928-4803-9bd6-3fb1e0fcbee5,divider +progress-circle-size-small,layout-component,,progress-circle +progress-circle-size-medium,layout-component,,progress-circle +progress-circle-size-large,layout-component,,progress-circle +progress-circle-thickness-small,layout-component,,progress-circle +progress-circle-thickness-medium,layout-component,,progress-circle +progress-circle-thickness-large,layout-component,,progress-circle +toast-height,layout-component,,toast +toast-maximum-width,layout-component,,toast +toast-top-to-workflow-icon,layout-component,,toast +toast-top-to-text,layout-component,,toast +toast-bottom-to-text,layout-component,,toast +action-bar-height,layout-component,,action-bar +action-bar-top-to-item-counter,layout-component,,action-bar +swatch-size-extra-small,layout-component,,swatch +swatch-size-small,layout-component,,swatch +swatch-size-medium,layout-component,,swatch +swatch-size-large,layout-component,,swatch +swatch-rectangle-width-multiplier,layout-component,b3157e9d-82a0-429e-b987-8c240a669af7,swatch +swatch-slash-thickness-extra-small,layout-component,944c49d7-e189-4daa-aca1-b0b590d78875,swatch +swatch-slash-thickness-small,layout-component,f626d145-7840-4958-86be-d2306b5b2233,swatch +swatch-slash-thickness-medium,layout-component,4e735599-f420-4b51-aa75-607046431c76,swatch +swatch-slash-thickness-large,layout-component,6b1b2709-de8c-450d-9299-49200208599e,swatch +progress-bar-minimum-width,layout-component,8dfd4f94-93cc-47dd-92d2-87d1696f4ab7,progress-bar +progress-bar-maximum-width,layout-component,7ba00389-a6ba-4d18-9d88-8704427ad784,progress-bar +progress-bar-thickness-small,layout-component,,progress-bar +progress-bar-thickness-medium,layout-component,,progress-bar +progress-bar-thickness-large,layout-component,,progress-bar +progress-bar-thickness-extra-large,layout-component,,progress-bar +meter-minimum-width,layout-component,fd4f6ef0-bab2-4405-9eea-8a9b8a7dd295,meter +meter-maximum-width,layout-component,63bfb4da-4aaf-49c6-9328-16c636cf0bf9,meter +meter-width,layout-component,,meter +meter-default-width,layout-component,2633d29d-8a14-48e8-977c-bdb9a53b3bd5,meter +meter-thickness-small,layout-component,,meter +meter-thickness-large,layout-component,,meter +in-line-alert-minimum-width,layout-component,8007ebd8-fd67-4dc2-8444-9e6a50c88675,in-line-alert +tag-top-to-avatar-small,layout-component,,tag +tag-top-to-avatar-medium,layout-component,,tag +tag-top-to-avatar-large,layout-component,,tag +tag-top-to-cross-icon-small,layout-component,,tag +tag-top-to-cross-icon-medium,layout-component,,tag +tag-top-to-cross-icon-large,layout-component,,tag +popover-tip-width,layout-component,c4bc3596-1fbc-4b08-85af-6bd8142e499a,popover +popover-tip-height,layout-component,5960406b-973d-4e1f-9bb4-2c7a22422c5b,popover +popover-top-to-content-area,layout-component,,popover +menu-item-label-to-description,layout-component,628cf42f-eb40-49b0-b110-3340421d4502,menu +menu-item-edge-to-content-not-selected-small,layout-component,,menu +menu-item-edge-to-content-not-selected-medium,layout-component,,menu +menu-item-edge-to-content-not-selected-large,layout-component,,menu +menu-item-edge-to-content-not-selected-extra-large,layout-component,,menu +menu-item-top-to-disclosure-icon-small,layout-component,,menu +menu-item-top-to-disclosure-icon-medium,layout-component,,menu +menu-item-top-to-disclosure-icon-large,layout-component,,menu +menu-item-top-to-disclosure-icon-extra-large,layout-component,,menu +menu-item-top-to-selected-icon-small,layout-component,,menu +menu-item-top-to-selected-icon-medium,layout-component,,menu +menu-item-top-to-selected-icon-large,layout-component,,menu +menu-item-top-to-selected-icon-extra-large,layout-component,,menu +menu-item-section-divider-height,layout-component,dac5c077-b948-434b-91bd-0759c2414007,menu +slider-track-thickness,layout-component,,slider +slider-control-height-small,layout-component,,slider +slider-control-height-medium,layout-component,,slider +slider-control-height-large,layout-component,,slider +slider-control-height-extra-large,layout-component,,slider +slider-handle-size-small,layout-component,,slider +slider-handle-size-medium,layout-component,,slider +slider-handle-size-large,layout-component,,slider +slider-handle-size-extra-large,layout-component,,slider +slider-handle-border-width-down-small,layout-component,,slider +slider-handle-border-width-down-medium,layout-component,,slider +slider-handle-border-width-down-large,layout-component,,slider +slider-handle-border-width-down-extra-large,layout-component,,slider +slider-handle-gap,layout-component,,slider +slider-bottom-to-handle-small,layout-component,,slider +slider-bottom-to-handle-medium,layout-component,,slider +slider-bottom-to-handle-large,layout-component,,slider +slider-bottom-to-handle-extra-large,layout-component,,slider +slider-control-to-field-label-small,layout-component,,slider +slider-control-to-field-label-medium,layout-component,,slider +slider-control-to-field-label-large,layout-component,,slider +slider-control-to-field-label-extra-large,layout-component,,slider +picker-minimum-width-multiplier,layout-component,67b68a30-ae00-4da2-9730-99196a2eaf96,picker +picker-visual-to-disclosure-icon-small,layout-component,,picker +picker-visual-to-disclosure-icon-medium,layout-component,,picker +picker-visual-to-disclosure-icon-large,layout-component,,picker +picker-visual-to-disclosure-icon-extra-large,layout-component,,picker +picker-border-width,layout-component,,picker +picker-end-edge-to-disclousure-icon-quiet,layout-component,c8bd227d-c72b-4f6a-9d93-0b595821dee0,picker +picker-end-edge-to-disclosure-icon-quiet,layout-component,03da68d8-cd87-4e29-9aaf-ab467594ec2b,picker +text-field-minimum-width-multiplier,layout-component,875bbeaf-b4b7-41b9-8e6f-d6a57ec03049,text-field +text-area-minimum-width,layout-component,,text-area +text-area-minimum-height,layout-component,,text-area +combo-box-minimum-width-multiplier,layout-component,eabcc77a-f263-43ed-9944-9daa78a56b66,combo-box +combo-box-quiet-minimum-width-multiplier,layout-component,4798728b-9a97-4ce1-b703-0182b1513e8b,combo-box +combo-box-visual-to-field-button-small,layout-component,,combo-box +combo-box-visual-to-field-button-medium,layout-component,,combo-box +combo-box-visual-to-field-button-large,layout-component,,combo-box +combo-box-visual-to-field-button-extra-large,layout-component,,combo-box +combo-box-visual-to-field-button-quiet,layout-component,292cbbe1-1ba4-4369-9768-2051c07e6406,combo-box +thumbnail-size-50,layout-component,,thumbnail +thumbnail-size-75,layout-component,,thumbnail +thumbnail-size-100,layout-component,,thumbnail +thumbnail-size-200,layout-component,,thumbnail +thumbnail-size-300,layout-component,,thumbnail +thumbnail-size-400,layout-component,,thumbnail +thumbnail-size-500,layout-component,,thumbnail +thumbnail-size-600,layout-component,,thumbnail +thumbnail-size-700,layout-component,,thumbnail +thumbnail-size-800,layout-component,,thumbnail +thumbnail-size-900,layout-component,,thumbnail +thumbnail-size-1000,layout-component,,thumbnail +alert-dialog-minimum-width,layout-component,7d066c2d-ea59-483d-b8a3-6a9b9e35eedd,alert-dialog +alert-dialog-maximum-width,layout-component,45258afa-543b-4fbc-a621-677d8081c2f1,alert-dialog +alert-dialog-title-size,layout-component,,alert-dialog +alert-dialog-description-size,layout-component,,alert-dialog +opacity-checkerboard-square-size,layout-component,,opacity-checkerboard +contextual-help-minimum-width,layout-component,83be73fe-50bc-4be8-969c-0361a816225b,contextual-help +contextual-help-title-size,layout-component,,contextual-help +contextual-help-body-size,layout-component,,contextual-help +breadcrumbs-height,layout-component,2d39863c-6987-413c-90d8-07fcc506a0d4,breadcrumbs +breadcrumbs-height-compact,layout-component,8393f599-37e8-484a-a1c6-0934ce15a507,breadcrumbs +breadcrumbs-height-multiline,layout-component,,breadcrumbs +breadcrumbs-top-to-text,layout-component,,breadcrumbs +breadcrumbs-top-to-text-compact,layout-component,,breadcrumbs +breadcrumbs-top-to-text-multiline,layout-component,,breadcrumbs +breadcrumbs-bottom-to-text,layout-component,,breadcrumbs +breadcrumbs-bottom-to-text-compact,layout-component,,breadcrumbs +breadcrumbs-bottom-to-text-multiline,layout-component,,breadcrumbs +breadcrumbs-start-edge-to-text,layout-component,,breadcrumbs +breadcrumbs-end-edge-to-text,layout-component,99ef1a0d-5fe1-4b62-9609-8929e7a3bf9c,breadcrumbs +breadcrumbs-top-text-to-bottom-text,layout-component,,breadcrumbs +breadcrumbs-top-to-separator-icon,layout-component,,breadcrumbs +breadcrumbs-top-to-separator-icon-compact,layout-component,,breadcrumbs +breadcrumbs-top-to-separator-icon-multiline,layout-component,,breadcrumbs +breadcrumbs-separator-icon-to-bottom-text-multiline,layout-component,,breadcrumbs +breadcrumbs-truncated-menu-to-separator-icon,layout-component,1fe2a3df-3179-4c4a-8d1f-de41297b6d74,breadcrumbs +breadcrumbs-top-to-truncated-menu,layout-component,,breadcrumbs +breadcrumbs-top-to-truncated-menu-compact,layout-component,,breadcrumbs +breadcrumbs-start-edge-to-truncated-menu,layout-component,b1fba444-c281-4be4-bded-4852b551cfee,breadcrumbs +breadcrumbs-truncated-menu-to-bottom-text,layout-component,2285d870-68ec-469f-a034-2fdeb31e33f0,breadcrumbs +avatar-size-50,layout-component,,avatar +avatar-size-75,layout-component,,avatar +avatar-size-100,layout-component,,avatar +avatar-size-200,layout-component,,avatar +avatar-size-300,layout-component,,avatar +avatar-size-400,layout-component,,avatar +avatar-size-500,layout-component,,avatar +avatar-size-600,layout-component,,avatar +avatar-size-700,layout-component,,avatar +alert-banner-minimum-height,layout-component,,alert-banner +alert-banner-width,layout-component,,alert-banner +alert-banner-to-top-workflow-icon,layout-component,42b40d65-eed4-432e-8ede-74d89905d131,alert-banner +alert-banner-top-to-workflow-icon,layout-component,,alert-banner +alert-banner-to-top-text,layout-component,8fefedaf-6e95-4a14-a8ba-08381f57bfeb,alert-banner +alert-banner-top-to-text,layout-component,,alert-banner +alert-banner-to-bottom-text,layout-component,e2bd6435-6fbd-4030-9ff5-b034438b8d8a,alert-banner +alert-banner-bottom-to-text,layout-component,,alert-banner +rating-indicator-width,layout-component,,rating +rating-indicator-to-icon,layout-component,,rating +color-area-width,layout-component,,color-area +color-area-minimum-width,layout-component,,color-area +color-area-height,layout-component,,color-area +color-area-minimum-height,layout-component,,color-area +color-area-border-width,layout-component,78fff16d-d6fe-4a74-98bc-97c56e352250,color-area +color-area-border-rounding,layout-component,ab656bf4-8814-42fa-9036-b1e67159e4e1,color-area +color-wheel-width,layout-component,,color-wheel +color-wheel-minimum-width,layout-component,,color-wheel +color-wheel-color-area-margin,layout-component,4b6bca16-ea29-4d6c-81cf-9005b9a3b5e5,color-wheel +color-slider-length,layout-component,,color-slider +color-slider-minimum-length,layout-component,,color-slider +color-slider-border-width,layout-component,2b907cad-7534-411b-b3bf-ab89a3712ad8,color-slider +color-slider-border-rounding,layout-component,991541a2-df44-4f32-90a5-de698adf5db3,color-slider +floating-action-button-drop-shadow-blur,layout-component,82e8cf04-7eda-4f36-8d2c-fda63241c3de,floating-action-button +floating-action-button-drop-shadow-y,layout-component,a4ddc1a6-1367-4153-bb7c-c217d16d10f4,floating-action-button +illustrated-message-maximum-width,layout-component,0e464925-5524-4fcc-a2f1-54ef42a2990a,illustrated-message +illustrated-message-title-size,layout-component,,illustrated-message +illustrated-message-cjk-title-size,layout-component,,illustrated-message +illustrated-message-body-size,layout-component,,illustrated-message +search-field-minimum-width-multiplier,layout-component,c4b2177d-4468-4180-be27-69d26a51ba0b,search-field +color-loupe-height,layout-component,0f7e8b9e-99e5-4f5a-ae80-99f65f4c4e51,color-loupe +color-loupe-width,layout-component,889e2495-b882-4aa3-8a5b-1a71d44edde4,color-loupe +color-loupe-bottom-to-color-handle,layout-component,92beba60-f61d-426a-a864-203dca7244a0,color-loupe +color-loupe-outer-border-width,layout-component,51cd5039-1319-451a-b13f-bb3a218238a5,color-loupe +color-loupe-inner-border-width,layout-component,b3900f89-0a7a-4c47-a6d9-ca8aa19b9bfb,color-loupe +color-loupe-drop-shadow-y,layout-component,c9af5d60-11b1-4fc3-972e-6a607120657b,color-loupe +color-loupe-drop-shadow-blur,layout-component,86caa027-9e9e-4a5f-aa38-058f0a96bc9d,color-loupe +card-minimum-width,layout-component,55db9f3d-621d-4d23-b3d0-c0f2b0f3f9b0,cards +card-preview-minimum-height,layout-component,58eb5be8-644f-448e-99b9-94d1fbb93240,cards +card-selection-background-size,layout-component,496fd060-70a9-48d0-948f-593b81847199,cards +drop-zone-width,layout-component,2097b13e-94b3-4a06-a0af-c7d8420d1273,drop-zone +drop-zone-content-maximum-width,layout-component,b8d0db71-9a25-46fc-b77a-037fcf86be8e,drop-zone +drop-zone-border-dash-length,layout-component,a596af57-256f-4445-b91f-36e47bfb2d95,drop-zone +drop-zone-border-dash-gap,layout-component,47c15433-53d3-425b-8b87-ea234701f781,drop-zone +drop-zone-title-size,layout-component,edc68bfe-7ad3-4a12-81fa-ded8fb6fc2e3,drop-zone +drop-zone-cjk-title-size,layout-component,013387e8-8925-4bb4-a8ee-94420141fde9,drop-zone +drop-zone-body-size,layout-component,bb3fee51-24cc-4643-9f22-fa1592ab2457,drop-zone +coach-mark-width,layout-component,,coach-mark +coach-mark-minimum-width,layout-component,,coach-mark +coach-mark-maximum-width,layout-component,,coach-mark +coach-mark-edge-to-content,layout-component,,coach-mark +coach-mark-pagination-text-to-bottom-edge,layout-component,,coach-mark +coach-mark-media-height,layout-component,,coach-mark +coach-mark-media-minimum-height,layout-component,,coach-mark +coach-mark-title-size,layout-component,,coach-mark +coach-mark-body-size,layout-component,,coach-mark +coach-mark-pagination-body-size,layout-component,,coach-mark +accordion-top-to-text-compact-small,layout-component,d6cc404c-af92-43be-88e3-407fdcb6e068,accordion +accordion-top-to-text-regular-small,layout-component,,accordion +accordion-small-top-to-text-spacious,layout-component,,accordion +accordion-top-to-text-compact-medium,layout-component,484c9603-07f1-4ba6-b1bf-7cfaec5d1594,accordion +accordion-top-to-text-regular-medium,layout-component,,accordion +accordion-top-to-text-spacious-medium,layout-component,,accordion +accordion-top-to-text-compact-large,layout-component,,accordion +accordion-top-to-text-regular-large,layout-component,,accordion +accordion-top-to-text-spacious-large,layout-component,,accordion +accordion-top-to-text-compact-extra-large,layout-component,,accordion +accordion-top-to-text-regular-extra-large,layout-component,,accordion +accordion-top-to-text-spacious-extra-large,layout-component,,accordion +accordion-bottom-to-text-compact-small,layout-component,,accordion +accordion-bottom-to-text-regular-small,layout-component,,accordion +accordion-bottom-to-text-spacious-small,layout-component,,accordion +accordion-bottom-to-text-compact-medium,layout-component,,accordion +accordion-bottom-to-text-regular-medium,layout-component,,accordion +accordion-bottom-to-text-spacious-medium,layout-component,,accordion +accordion-bottom-to-text-compact-large,layout-component,,accordion +accordion-bottom-to-text-regular-large,layout-component,,accordion +accordion-bottom-to-text-spacious-large,layout-component,,accordion +accordion-bottom-to-text-compact-extra-large,layout-component,,accordion +accordion-bottom-to-text-regular-extra-large,layout-component,,accordion +accordion-bottom-to-text-spacious-extra-large,layout-component,,accordion +accordion-minimum-width,layout-component,,accordion +accordion-disclosure-indicator-to-text,layout-component,27b481a4-0ea9-4e1c-a283-4a799d18d642,accordion +accordion-edge-to-disclosure-indicator,layout-component,614e6448-c0a4-4ad1-b125-f362e3001a86,accordion +accordion-edge-to-text,layout-component,a9641e89-2c2e-49c3-9662-f530ad23a688,accordion +accordion-focus-indicator-gap,layout-component,318c5cda-be1b-416b-b1b7-b962e5f45c0c,accordion +accordion-content-area-top-to-content,layout-component,,accordion +accordion-content-area-bottom-to-content,layout-component,,accordion +color-handle-size,layout-component,,color-handle +color-handle-size-key-focus,layout-component,,color-handle +color-handle-border-width,layout-component,8ec9adae-0093-42f4-bd1b-6f3b2279996b,color-handle +color-handle-inner-border-width,layout-component,945e0167-6893-49dd-ab21-886f93f70b92,color-handle +color-handle-outer-border-width,layout-component,fbf27473-7c97-4d94-968d-c3e68e0cd242,color-handle +color-handle-drop-shadow-x,layout-component,49499527-3fdb-4a91-a832-0ae0631ba3bb,color-handle +color-handle-drop-shadow-y,layout-component,05b11927-d0cd-46a6-ae30-6f268f143d4e,color-handle +color-handle-drop-shadow-blur,layout-component,29e4a8c8-33ba-44b3-952d-26f3fd6ae4f0,color-handle +table-column-header-row-top-to-text-small,layout-component,,table +table-column-header-row-top-to-text-medium,layout-component,,table +table-column-header-row-top-to-text-large,layout-component,,table +table-column-header-row-top-to-text-extra-large,layout-component,,table +table-column-header-row-bottom-to-text-small,layout-component,,table +table-column-header-row-bottom-to-text-medium,layout-component,,table +table-column-header-row-bottom-to-text-large,layout-component,,table +table-column-header-row-bottom-to-text-extra-large,layout-component,,table +table-row-height-small-compact,layout-component,a6dfc911-50fe-46dd-a7a3-cec3b115006a,table +table-row-height-medium-compact,layout-component,b4b86a59-041d-451c-a0be-cc82e997a1d2,table +table-row-height-large-compact,layout-component,d576b4aa-e3df-4aa9-8260-fecfe6517bde,table +table-row-height-extra-large-compact,layout-component,dcc5dd06-bb3d-46d3-adf2-133e5be942b7,table +table-row-height-small-regular,layout-component,,table +table-row-height-medium-regular,layout-component,,table +table-row-height-large-regular,layout-component,,table +table-row-height-extra-large-regular,layout-component,,table +table-row-height-small-spacious,layout-component,,table +table-row-height-medium-spacious,layout-component,,table +table-row-height-large-spacious,layout-component,,table +table-row-height-extra-large-spacious,layout-component,,table +table-row-top-to-text-small-compact,layout-component,b7e7808a-16c6-481a-9257-9c1dc4e13b62,table +table-row-top-to-text-medium-compact,layout-component,02c5faff-dbb4-4633-ae57-413b3666dfca,table +table-row-top-to-text-large-compact,layout-component,14437ed2-c60b-40ba-91e6-bed5353fc544,table +table-row-top-to-text-extra-large-compact,layout-component,2e8eff8c-60fa-4e0f-ae40-7b9f9b3679d6,table +table-row-bottom-to-text-small-compact,layout-component,5eb79adf-f94c-4bf8-9ec9-279f49ce5331,table +table-row-bottom-to-text-medium-compact,layout-component,d9d8fee2-9e0f-4c2b-8059-f9badb3b6482,table +table-row-bottom-to-text-large-compact,layout-component,15e21448-3174-4565-aed7-ab84aa30d7ac,table +table-row-bottom-to-text-extra-large-compact,layout-component,effa3e3c-eb5b-4c0a-aca9-81331e6a08ac,table +table-row-top-to-text-small-regular,layout-component,,table +table-row-top-to-text-medium-regular,layout-component,,table +table-row-top-to-text-large-regular,layout-component,,table +table-row-top-to-text-extra-large-regular,layout-component,,table +table-row-bottom-to-text-small-regular,layout-component,,table +table-row-bottom-to-text-medium-regular,layout-component,,table +table-row-bottom-to-text-large-regular,layout-component,,table +table-row-bottom-to-text-extra-large-regular,layout-component,,table +table-row-top-to-text-small-spacious,layout-component,,table +table-row-top-to-text-medium-spacious,layout-component,,table +table-row-top-to-text-large-spacious,layout-component,,table +table-row-top-to-text-extra-large-spacious,layout-component,,table +table-row-bottom-to-text-small-spacious,layout-component,,table +table-row-bottom-to-text-medium-spacious,layout-component,,table +table-row-bottom-to-text-large-spacious,layout-component,,table +table-row-bottom-to-text-extra-large-spacious,layout-component,,table +table-edge-to-content,layout-component,5e46672f-eab0-4ec3-bd14-68ffa4404ec1,table +table-border-divider-width,layout-component,b6f2536c-deda-409f-8667-a5a99abdfa46,table +table-checkbox-to-text,layout-component,,table +table-header-row-checkbox-to-top-small,layout-component,,table +table-header-row-checkbox-to-top-medium,layout-component,,table +table-header-row-checkbox-to-top-large,layout-component,,table +table-header-row-checkbox-to-top-extra-large,layout-component,,table +table-row-checkbox-to-top-small-compact,layout-component,,table +table-row-checkbox-to-top-small-regular,layout-component,,table +table-row-checkbox-to-top-small-spacious,layout-component,,table +table-row-checkbox-to-top-medium-compact,layout-component,,table +table-row-checkbox-to-top-medium-regular,layout-component,,table +table-row-checkbox-to-top-medium-spacious,layout-component,,table +table-row-checkbox-to-top-large-compact,layout-component,,table +table-row-checkbox-to-top-large-regular,layout-component,,table +table-row-checkbox-to-top-large-spacious,layout-component,,table +table-row-checkbox-to-top-extra-large-compact,layout-component,,table +table-row-checkbox-to-top-extra-large-regular,layout-component,,table +table-row-checkbox-to-top-extra-large-spacious,layout-component,,table +table-section-header-row-height-small,layout-component,,table +table-section-header-row-height-medium,layout-component,,table +table-section-header-row-height-large,layout-component,,table +table-section-header-row-height-extra-large,layout-component,,table +table-thumbnail-to-top-minimum-small-compact,layout-component,,table +table-thumbnail-to-top-minimum-medium-compact,layout-component,,table +table-thumbnail-to-top-minimum-large-compact,layout-component,,table +table-thumbnail-to-top-minimum-extra-large-compact,layout-component,,table +table-thumbnail-to-top-minimum-small-regular,layout-component,,table +table-thumbnail-to-top-minimum-medium-regular,layout-component,,table +table-thumbnail-to-top-minimum-large-regular,layout-component,,table +table-thumbnail-to-top-minimum-extra-large-regular,layout-component,,table +table-thumbnail-to-top-minimum-small-spacious,layout-component,,table +table-thumbnail-to-top-minimum-medium-spacious,layout-component,,table +table-thumbnail-to-top-minimum-large-spacious,layout-component,,table +table-thumbnail-to-top-minimum-extra-large-spacious,layout-component,,table +tab-item-height-small,layout-component,7b31cf38-5bac-4f79-a4f1-172a4ea66e10,tabs +tab-item-height-medium,layout-component,5d2288f4-f383-47fa-baca-0168cb46750a,tabs +tab-item-height-large,layout-component,8abd0b0e-fd6d-4064-9d0e-1ab998fcb0ce,tabs +tab-item-height-extra-large,layout-component,42ed814c-5044-4c70-b82f-b49f8226241e,tabs +tab-item-compact-height-small,layout-component,25f7d9a5-9464-4447-97d9-97839b371f96,tabs +tab-item-compact-height-medium,layout-component,e8c7c826-548d-4037-b064-3cf699675d35,tabs +tab-item-compact-height-large,layout-component,6d781a0e-e03d-4750-ae4f-67a29d731702,tabs +tab-item-compact-height-extra-large,layout-component,49130d66-edfb-48bd-8648-96c47f40a884,tabs +tab-item-to-tab-item-horizontal-small,layout-component,,tabs +tab-item-to-tab-item-horizontal-medium,layout-component,,tabs +tab-item-to-tab-item-horizontal-large,layout-component,,tabs +tab-item-to-tab-item-horizontal-extra-large,layout-component,,tabs +tab-item-to-tab-item-vertical-small,layout-component,,tabs +tab-item-to-tab-item-vertical-medium,layout-component,,tabs +tab-item-to-tab-item-vertical-large,layout-component,,tabs +tab-item-to-tab-item-vertical-extra-large,layout-component,,tabs +tab-item-start-to-edge-quiet,layout-component,f869f703-a850-4c6c-b518-ec8a1b355046,tabs +tab-item-start-to-edge-small,layout-component,,tabs +tab-item-start-to-edge-medium,layout-component,,tabs +tab-item-start-to-edge-large,layout-component,,tabs +tab-item-start-to-edge-extra-large,layout-component,,tabs +tab-item-top-to-text-small,layout-component,,tabs +tab-item-bottom-to-text-small,layout-component,,tabs +tab-item-top-to-text-medium,layout-component,,tabs +tab-item-bottom-to-text-medium,layout-component,,tabs +tab-item-top-to-text-large,layout-component,,tabs +tab-item-bottom-to-text-large,layout-component,,tabs +tab-item-top-to-text-extra-large,layout-component,,tabs +tab-item-bottom-to-text-extra-large,layout-component,,tabs +tab-item-top-to-text-compact-small,layout-component,,tabs +tab-item-bottom-to-text-compact-small,layout-component,,tabs +tab-item-top-to-text-compact-medium,layout-component,,tabs +tab-item-bottom-to-text-compact-medium,layout-component,,tabs +tab-item-top-to-text-compact-large,layout-component,,tabs +tab-item-bottom-to-text-compact-large,layout-component,,tabs +tab-item-top-to-text-compact-extra-large,layout-component,,tabs +tab-item-bottom-to-text-compact-extra-large,layout-component,,tabs +tab-item-top-to-workflow-icon-small,layout-component,,tabs +tab-item-top-to-workflow-icon-medium,layout-component,,tabs +tab-item-top-to-workflow-icon-large,layout-component,,tabs +tab-item-top-to-workflow-icon-extra-large,layout-component,,tabs +tab-item-top-to-workflow-icon-compact-small,layout-component,,tabs +tab-item-top-to-workflow-icon-compact-medium,layout-component,,tabs +tab-item-top-to-workflow-icon-compact-large,layout-component,,tabs +tab-item-top-to-workflow-icon-compact-extra-large,layout-component,,tabs +tab-item-focus-indicator-gap-small,layout-component,,tabs +tab-item-focus-indicator-gap-medium,layout-component,,tabs +tab-item-focus-indicator-gap-large,layout-component,,tabs +tab-item-focus-indicator-gap-extra-large,layout-component,,tabs +side-navigation-width,layout-component,,side-navigation +side-navigation-minimum-width,layout-component,,side-navigation +side-navigation-maximum-width,layout-component,,side-navigation +side-navigation-second-level-edge-to-text,layout-component,,side-navigation +side-navigation-third-level-edge-to-text,layout-component,,side-navigation +side-navigation-with-icon-second-level-edge-to-text,layout-component,,side-navigation +side-navigation-with-icon-third-level-edge-to-text,layout-component,,side-navigation +side-navigation-item-to-item,layout-component,,side-navigation +side-navigation-item-to-header,layout-component,,side-navigation +side-navigation-header-to-item,layout-component,,side-navigation +side-navigation-bottom-to-text,layout-component,,side-navigation +tray-top-to-content-area,layout-component,,tray +in-field-button-width-stacked-small,layout-component,24125066-c8d1-4c4a-85b3-493d112d3ca0,in-field-button +in-field-button-width-stacked-medium,layout-component,bb8c7ce0-1766-47f9-b30e-36b3b57dc2ea,in-field-button +in-field-button-width-stacked-large,layout-component,4e103763-4310-4aff-980f-652ad023084f,in-field-button +in-field-button-width-stacked-extra-large,layout-component,5f844b3f-e0d7-40f0-a754-a14bee6a0fb4,in-field-button +in-field-button-fill-stacked-inner-border-rounding,layout-component,,in-field-button +in-field-button-edge-to-fill,layout-component,,in-field-button +in-field-button-stacked-inner-edge-to-fill,layout-component,,in-field-button +in-field-button-edge-to-disclosure-icon-stacked-small,layout-component,8b6a0ab1-4dba-4da2-9c67-3befca0f110e,in-field-button +in-field-button-edge-to-disclosure-icon-stacked-medium,layout-component,ccb60cfc-86fe-4959-b4a8-1a45835132c8,in-field-button +in-field-button-edge-to-disclosure-icon-stacked-large,layout-component,6a6e5478-b549-4a39-a7f5-5d3c417464ce,in-field-button +in-field-button-edge-to-disclosure-icon-stacked-extra-large,layout-component,d563157b-f0d7-407d-aaaf-ae1790c75503,in-field-button +in-field-button-outer-edge-to-disclosure-icon-stacked-small,layout-component,9890df35-2d45-4767-9cbe-ee745d09d990,in-field-button +in-field-button-outer-edge-to-disclosure-icon-stacked-medium,layout-component,,in-field-button +in-field-button-outer-edge-to-disclosure-icon-stacked-large,layout-component,,in-field-button +in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large,layout-component,,in-field-button +in-field-button-inner-edge-to-disclosure-icon-stacked-small,layout-component,,in-field-button +in-field-button-inner-edge-to-disclosure-icon-stacked-medium,layout-component,,in-field-button +in-field-button-inner-edge-to-disclosure-icon-stacked-large,layout-component,,in-field-button +in-field-button-inner-edge-to-disclosure-icon-stacked-extra-large,layout-component,,in-field-button +accordion-top-to-text-spacious-small,layout-component,, \ No newline at end of file diff --git a/tools/token-csv-generator/moon.yml b/tools/token-csv-generator/moon.yml new file mode 100644 index 00000000..d366c3f3 --- /dev/null +++ b/tools/token-csv-generator/moon.yml @@ -0,0 +1,22 @@ +# Copyright 2024 Adobe. All rights reserved. +# This file is licensed to you under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. You may obtain a copy +# of the License at http://www.apache.org/licenses/LICENSE-2.0 + +# Unless required by applicable law or agreed to in writing, software distributed under +# the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +# OF ANY KIND, either express or implied. See the License for the specific language +# governing permissions and limitations under the License. +$schema: "https://moonrepo.dev/schemas/project.json" +type: tool +tasks: + generateCSV: + command: + - node + - src/index.js + platform: node + test: + command: + - pnpm + - ava + platform: node diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index 438aa916..eb6986a6 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -16,8 +16,7 @@ }, "homepage": "https://github.com/adobe/spectrum-tokens#readme", "dependencies": { - "glob": "^10.3.3", - "jsonpath-plus": "^7.2.0", - "prettier": "^3.0.3" + "@adobe/spectrum-tokens": "workspace:*", + "jsonpath-plus": "^8.1.0" } } diff --git a/tools/token-csv-generator/src/index.js b/tools/token-csv-generator/src/index.js index cc56b8d8..383be512 100644 --- a/tools/token-csv-generator/src/index.js +++ b/tools/token-csv-generator/src/index.js @@ -12,12 +12,12 @@ governing permissions and limitations under the License. import { JSONPath } from "jsonpath-plus"; import { basename } from "path"; import { writeFile } from "fs/promises"; -import { readJson, writeJson, tokenFileNames } from "./lib/shared.js"; +import { readJson, tokenFileNames } from "@adobe/spectrum-tokens"; const tokensData = []; tokenFileNames.forEach(async (fileName) => { const jsonData = await readJson(fileName); - const result = JSONPath({ + JSONPath({ path: "$.*", json: jsonData, callback: (payload, type, obj) => { @@ -43,5 +43,6 @@ tokenFileNames.forEach(async (fileName) => { }); const csv = `tokenName,fileName,uuid,component\n${csvData.join("\n")}`; await writeFile("./tokenNames.csv", csv, "utf8"); + return csv; } }); diff --git a/tools/token-csv-generator/test/index.test.js b/tools/token-csv-generator/test/index.test.js index c128c9d8..abfcf017 100644 --- a/tools/token-csv-generator/test/index.test.js +++ b/tools/token-csv-generator/test/index.test.js @@ -12,6 +12,7 @@ governing permissions and limitations under the License. import test from "ava"; +// TODO: add tests test("basic test", (t) => { t.is(1, 1); }); diff --git a/tools/transform-tokens-json/package.json b/tools/transform-tokens-json/package.json index 2ee675a9..ec7423be 100644 --- a/tools/transform-tokens-json/package.json +++ b/tools/transform-tokens-json/package.json @@ -16,8 +16,6 @@ }, "homepage": "https://github.com/adobe/spectrum-tokens#readme", "dependencies": { - "glob": "^10.3.3", - "jsonpath-plus": "^7.2.0", - "prettier": "^3.0.0" + "jsonpath-plus": "^8.1.0" } }